]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/readelf.c
kvx: New port.
[thirdparty/binutils-gdb.git] / binutils / readelf.c
1 /* readelf.c -- display contents of an ELF format file
2 Copyright (C) 1998-2023 Free Software Foundation, Inc.
3
4 Originally developed by Eric Youngdale <eric@andante.jic.com>
5 Modifications by Nick Clifton <nickc@redhat.com>
6
7 This file is part of GNU Binutils.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
22 02110-1301, USA. */
23 \f
24 /* The difference between readelf and objdump:
25
26 Both programs are capable of displaying the contents of ELF format files,
27 so why does the binutils project have two file dumpers ?
28
29 The reason is that objdump sees an ELF file through a BFD filter of the
30 world; if BFD has a bug where, say, it disagrees about a machine constant
31 in e_flags, then the odds are good that it will remain internally
32 consistent. The linker sees it the BFD way, objdump sees it the BFD way,
33 GAS sees it the BFD way. There was need for a tool to go find out what
34 the file actually says.
35
36 This is why the readelf program does not link against the BFD library - it
37 exists as an independent program to help verify the correct working of BFD.
38
39 There is also the case that readelf can provide more information about an
40 ELF file than is provided by objdump. In particular it can display DWARF
41 debugging information which (at the moment) objdump cannot. */
42 \f
43 #include "sysdep.h"
44 #include <assert.h>
45 #include <time.h>
46 #include <zlib.h>
47 #ifdef HAVE_ZSTD
48 #include <zstd.h>
49 #endif
50 #include <wchar.h>
51
52 #if defined HAVE_MSGPACK
53 #include <msgpack.h>
54 #endif
55
56 /* Define BFD64 here, even if our default architecture is 32 bit ELF
57 as this will allow us to read in and parse 64bit and 32bit ELF files. */
58 #define BFD64
59
60 #include "bfd.h"
61 #include "bucomm.h"
62 #include "elfcomm.h"
63 #include "demanguse.h"
64 #include "dwarf.h"
65 #include "ctf-api.h"
66 #include "sframe-api.h"
67 #include "demangle.h"
68
69 #include "elf/common.h"
70 #include "elf/external.h"
71 #include "elf/internal.h"
72
73
74 /* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
75 we can obtain the H8 reloc numbers. We need these for the
76 get_reloc_size() function. We include h8.h again after defining
77 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
78
79 #include "elf/h8.h"
80 #undef _ELF_H8_H
81
82 /* Undo the effects of #including reloc-macros.h. */
83
84 #undef START_RELOC_NUMBERS
85 #undef RELOC_NUMBER
86 #undef FAKE_RELOC
87 #undef EMPTY_RELOC
88 #undef END_RELOC_NUMBERS
89 #undef _RELOC_MACROS_H
90
91 /* The following headers use the elf/reloc-macros.h file to
92 automatically generate relocation recognition functions
93 such as elf_mips_reloc_type() */
94
95 #define RELOC_MACROS_GEN_FUNC
96
97 #include "elf/aarch64.h"
98 #include "elf/alpha.h"
99 #include "elf/amdgpu.h"
100 #include "elf/arc.h"
101 #include "elf/arm.h"
102 #include "elf/avr.h"
103 #include "elf/bfin.h"
104 #include "elf/cr16.h"
105 #include "elf/cris.h"
106 #include "elf/crx.h"
107 #include "elf/csky.h"
108 #include "elf/d10v.h"
109 #include "elf/d30v.h"
110 #include "elf/dlx.h"
111 #include "elf/bpf.h"
112 #include "elf/epiphany.h"
113 #include "elf/fr30.h"
114 #include "elf/frv.h"
115 #include "elf/ft32.h"
116 #include "elf/h8.h"
117 #include "elf/hppa.h"
118 #include "elf/i386.h"
119 #include "elf/i370.h"
120 #include "elf/i860.h"
121 #include "elf/i960.h"
122 #include "elf/ia64.h"
123 #include "elf/ip2k.h"
124 #include "elf/kvx.h"
125 #include "elf/lm32.h"
126 #include "elf/iq2000.h"
127 #include "elf/m32c.h"
128 #include "elf/m32r.h"
129 #include "elf/m68k.h"
130 #include "elf/m68hc11.h"
131 #include "elf/s12z.h"
132 #include "elf/mcore.h"
133 #include "elf/mep.h"
134 #include "elf/metag.h"
135 #include "elf/microblaze.h"
136 #include "elf/mips.h"
137 #include "elf/mmix.h"
138 #include "elf/mn10200.h"
139 #include "elf/mn10300.h"
140 #include "elf/moxie.h"
141 #include "elf/mt.h"
142 #include "elf/msp430.h"
143 #include "elf/nds32.h"
144 #include "elf/nfp.h"
145 #include "elf/nios2.h"
146 #include "elf/or1k.h"
147 #include "elf/pj.h"
148 #include "elf/ppc.h"
149 #include "elf/ppc64.h"
150 #include "elf/pru.h"
151 #include "elf/riscv.h"
152 #include "elf/rl78.h"
153 #include "elf/rx.h"
154 #include "elf/s390.h"
155 #include "elf/score.h"
156 #include "elf/sh.h"
157 #include "elf/sparc.h"
158 #include "elf/spu.h"
159 #include "elf/tic6x.h"
160 #include "elf/tilegx.h"
161 #include "elf/tilepro.h"
162 #include "elf/v850.h"
163 #include "elf/vax.h"
164 #include "elf/visium.h"
165 #include "elf/wasm32.h"
166 #include "elf/x86-64.h"
167 #include "elf/xgate.h"
168 #include "elf/xstormy16.h"
169 #include "elf/xtensa.h"
170 #include "elf/z80.h"
171 #include "elf/loongarch.h"
172 #include "elf/bpf.h"
173
174 #include "getopt.h"
175 #include "libiberty.h"
176 #include "safe-ctype.h"
177 #include "filenames.h"
178
179 #ifndef offsetof
180 #define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER))
181 #endif
182
183 typedef struct elf_section_list
184 {
185 Elf_Internal_Shdr * hdr;
186 struct elf_section_list * next;
187 } elf_section_list;
188
189 /* Flag bits indicating particular types of dump. */
190 #define HEX_DUMP (1 << 0) /* The -x command line switch. */
191 #define DISASS_DUMP (1 << 1) /* The -i command line switch. */
192 #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
193 #define STRING_DUMP (1 << 3) /* The -p command line switch. */
194 #define RELOC_DUMP (1 << 4) /* The -R command line switch. */
195 #define CTF_DUMP (1 << 5) /* The --ctf command line switch. */
196 #define SFRAME_DUMP (1 << 6) /* The --sframe command line switch. */
197
198 typedef unsigned char dump_type;
199
200 /* A linked list of the section names for which dumps were requested. */
201 struct dump_list_entry
202 {
203 char * name;
204 dump_type type;
205 struct dump_list_entry * next;
206 };
207
208 /* A dynamic array of flags indicating for which sections a dump
209 has been requested via command line switches. */
210 struct dump_data
211 {
212 dump_type * dump_sects;
213 unsigned int num_dump_sects;
214 };
215
216 static struct dump_data cmdline;
217
218 static struct dump_list_entry * dump_sects_byname;
219
220 char * program_name = "readelf";
221
222 static bool show_name = false;
223 static bool do_dynamic = false;
224 static bool do_syms = false;
225 static bool do_dyn_syms = false;
226 static bool do_lto_syms = false;
227 static bool do_reloc = false;
228 static bool do_sections = false;
229 static bool do_section_groups = false;
230 static bool do_section_details = false;
231 static bool do_segments = false;
232 static bool do_unwind = false;
233 static bool do_using_dynamic = false;
234 static bool do_header = false;
235 static bool do_dump = false;
236 static bool do_version = false;
237 static bool do_histogram = false;
238 static bool do_debugging = false;
239 static bool do_ctf = false;
240 static bool do_sframe = false;
241 static bool do_arch = false;
242 static bool do_notes = false;
243 static bool do_archive_index = false;
244 static bool check_all = false;
245 static bool is_32bit_elf = false;
246 static bool decompress_dumps = false;
247 static bool do_not_show_symbol_truncation = false;
248 static bool do_demangle = false; /* Pretty print C++ symbol names. */
249 static bool process_links = false;
250 static bool dump_any_debugging = false;
251 static int demangle_flags = DMGL_ANSI | DMGL_PARAMS;
252 static int sym_base = 0;
253
254 static char *dump_ctf_parent_name;
255 static char *dump_ctf_symtab_name;
256 static char *dump_ctf_strtab_name;
257
258 struct group_list
259 {
260 struct group_list * next;
261 unsigned int section_index;
262 };
263
264 struct group
265 {
266 struct group_list * root;
267 unsigned int group_index;
268 };
269
270 typedef struct filedata
271 {
272 const char * file_name;
273 bool is_separate;
274 FILE * handle;
275 uint64_t file_size;
276 Elf_Internal_Ehdr file_header;
277 uint64_t archive_file_offset;
278 uint64_t archive_file_size;
279 /* Everything below this point is cleared out by free_filedata. */
280 Elf_Internal_Shdr * section_headers;
281 Elf_Internal_Phdr * program_headers;
282 char * string_table;
283 uint64_t string_table_length;
284 uint64_t dynamic_addr;
285 uint64_t dynamic_size;
286 uint64_t dynamic_nent;
287 Elf_Internal_Dyn * dynamic_section;
288 Elf_Internal_Shdr * dynamic_strtab_section;
289 char * dynamic_strings;
290 uint64_t dynamic_strings_length;
291 Elf_Internal_Shdr * dynamic_symtab_section;
292 uint64_t num_dynamic_syms;
293 Elf_Internal_Sym * dynamic_symbols;
294 uint64_t version_info[16];
295 unsigned int dynamic_syminfo_nent;
296 Elf_Internal_Syminfo * dynamic_syminfo;
297 uint64_t dynamic_syminfo_offset;
298 uint64_t nbuckets;
299 uint64_t nchains;
300 uint64_t * buckets;
301 uint64_t * chains;
302 uint64_t ngnubuckets;
303 uint64_t ngnuchains;
304 uint64_t * gnubuckets;
305 uint64_t * gnuchains;
306 uint64_t * mipsxlat;
307 uint64_t gnusymidx;
308 char * program_interpreter;
309 uint64_t dynamic_info[DT_RELRENT + 1];
310 uint64_t dynamic_info_DT_GNU_HASH;
311 uint64_t dynamic_info_DT_MIPS_XHASH;
312 elf_section_list * symtab_shndx_list;
313 size_t group_count;
314 struct group * section_groups;
315 struct group ** section_headers_groups;
316 /* A dynamic array of flags indicating for which sections a dump of
317 some kind has been requested. It is reset on a per-object file
318 basis and then initialised from the cmdline_dump_sects array,
319 the results of interpreting the -w switch, and the
320 dump_sects_byname list. */
321 struct dump_data dump;
322 } Filedata;
323
324 /* How to print a vma value. */
325 typedef enum print_mode
326 {
327 HEX,
328 HEX_5,
329 DEC,
330 DEC_5,
331 UNSIGNED,
332 UNSIGNED_5,
333 PREFIX_HEX,
334 PREFIX_HEX_5,
335 FULL_HEX,
336 LONG_HEX,
337 OCTAL,
338 OCTAL_5
339 }
340 print_mode;
341
342 typedef enum unicode_display_type
343 {
344 unicode_default = 0,
345 unicode_locale,
346 unicode_escape,
347 unicode_hex,
348 unicode_highlight,
349 unicode_invalid
350 } unicode_display_type;
351
352 static unicode_display_type unicode_display = unicode_default;
353
354 typedef enum
355 {
356 reltype_unknown,
357 reltype_rel,
358 reltype_rela,
359 reltype_relr
360 } relocation_type;
361
362 /* Versioned symbol info. */
363 enum versioned_symbol_info
364 {
365 symbol_undefined,
366 symbol_hidden,
367 symbol_public
368 };
369
370 static int
371 fseek64 (FILE *stream, int64_t offset, int whence)
372 {
373 #if defined (HAVE_FSEEKO64)
374 off64_t o = offset;
375 if (o != offset)
376 {
377 errno = EINVAL;
378 return -1;
379 }
380 return fseeko64 (stream, o, whence);
381 #elif defined (HAVE_FSEEKO)
382 off_t o = offset;
383 if (o != offset)
384 {
385 errno = EINVAL;
386 return -1;
387 }
388 return fseeko (stream, o, whence);
389 #else
390 long o = offset;
391 if (o != offset)
392 {
393 errno = EINVAL;
394 return -1;
395 }
396 return fseek (stream, o, whence);
397 #endif
398 }
399
400 static const char * get_symbol_version_string
401 (Filedata *, bool, const char *, size_t, unsigned,
402 Elf_Internal_Sym *, enum versioned_symbol_info *, unsigned short *);
403
404 #define UNKNOWN -1
405
406 static inline const char *
407 section_name (const Filedata *filedata, const Elf_Internal_Shdr *hdr)
408 {
409 return filedata->string_table + hdr->sh_name;
410 }
411
412 static inline bool
413 section_name_valid (const Filedata *filedata, const Elf_Internal_Shdr *hdr)
414 {
415 return (hdr != NULL
416 && filedata->string_table != NULL
417 && hdr->sh_name < filedata->string_table_length);
418 }
419
420 static inline const char *
421 section_name_print (const Filedata *filedata, const Elf_Internal_Shdr *hdr)
422 {
423 if (hdr == NULL)
424 return _("<none>");
425 if (filedata->string_table == NULL)
426 return _("<no-strings>");
427 if (hdr->sh_name >= filedata->string_table_length)
428 return _("<corrupt>");
429 return section_name (filedata, hdr);
430 }
431
432 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
433
434 static inline bool
435 valid_symbol_name (const char *strtab, size_t strtab_size, uint64_t offset)
436 {
437 return strtab != NULL && offset < strtab_size;
438 }
439
440 static inline bool
441 valid_dynamic_name (const Filedata *filedata, uint64_t offset)
442 {
443 return valid_symbol_name (filedata->dynamic_strings,
444 filedata->dynamic_strings_length, offset);
445 }
446
447 /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
448 already been called and verified that the string exists. */
449 static inline const char *
450 get_dynamic_name (const Filedata *filedata, size_t offset)
451 {
452 return filedata->dynamic_strings + offset;
453 }
454
455 #define REMOVE_ARCH_BITS(ADDR) \
456 do \
457 { \
458 if (filedata->file_header.e_machine == EM_ARM) \
459 (ADDR) &= ~1; \
460 } \
461 while (0)
462
463 /* Get the correct GNU hash section name. */
464 #define GNU_HASH_SECTION_NAME(filedata) \
465 filedata->dynamic_info_DT_MIPS_XHASH ? ".MIPS.xhash" : ".gnu.hash"
466 \f
467 /* Retrieve NMEMB structures, each SIZE bytes long from FILEDATA starting at
468 OFFSET + the offset of the current archive member, if we are examining an
469 archive. Put the retrieved data into VAR, if it is not NULL. Otherwise
470 allocate a buffer using malloc and fill that. In either case return the
471 pointer to the start of the retrieved data or NULL if something went wrong.
472 If something does go wrong and REASON is not NULL then emit an error
473 message using REASON as part of the context. */
474
475 static void *
476 get_data (void *var,
477 Filedata *filedata,
478 uint64_t offset,
479 uint64_t size,
480 uint64_t nmemb,
481 const char *reason)
482 {
483 void * mvar;
484 uint64_t amt = size * nmemb;
485
486 if (size == 0 || nmemb == 0)
487 return NULL;
488
489 /* If size_t is smaller than uint64_t, eg because you are building
490 on a 32-bit host, then make sure that when the sizes are cast to
491 size_t no information is lost. */
492 if ((size_t) size != size
493 || (size_t) nmemb != nmemb
494 || (size_t) amt != amt
495 || amt / size != nmemb
496 || (size_t) amt + 1 == 0)
497 {
498 if (reason)
499 error (_("Size overflow prevents reading %" PRIu64
500 " elements of size %" PRIu64 " for %s\n"),
501 nmemb, size, reason);
502 return NULL;
503 }
504
505 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
506 attempting to allocate memory when the read is bound to fail. */
507 if (filedata->archive_file_offset > filedata->file_size
508 || offset > filedata->file_size - filedata->archive_file_offset
509 || amt > filedata->file_size - filedata->archive_file_offset - offset)
510 {
511 if (reason)
512 error (_("Reading %" PRIu64 " bytes extends past end of file for %s\n"),
513 amt, reason);
514 return NULL;
515 }
516
517 if (fseek64 (filedata->handle, filedata->archive_file_offset + offset,
518 SEEK_SET))
519 {
520 if (reason)
521 error (_("Unable to seek to %#" PRIx64 " for %s\n"),
522 filedata->archive_file_offset + offset, reason);
523 return NULL;
524 }
525
526 mvar = var;
527 if (mvar == NULL)
528 {
529 /* + 1 so that we can '\0' terminate invalid string table sections. */
530 mvar = malloc ((size_t) amt + 1);
531
532 if (mvar == NULL)
533 {
534 if (reason)
535 error (_("Out of memory allocating %" PRIu64 " bytes for %s\n"),
536 amt, reason);
537 return NULL;
538 }
539
540 ((char *) mvar)[amt] = '\0';
541 }
542
543 if (fread (mvar, (size_t) size, (size_t) nmemb, filedata->handle) != nmemb)
544 {
545 if (reason)
546 error (_("Unable to read in %" PRIu64 " bytes of %s\n"),
547 amt, reason);
548 if (mvar != var)
549 free (mvar);
550 return NULL;
551 }
552
553 return mvar;
554 }
555
556 /* Print a VMA value in the MODE specified.
557 Returns the number of characters displayed. */
558
559 static unsigned int
560 print_vma (uint64_t vma, print_mode mode)
561 {
562 unsigned int nc = 0;
563
564 switch (mode)
565 {
566 case FULL_HEX:
567 nc = printf ("0x");
568 /* Fall through. */
569 case LONG_HEX:
570 if (!is_32bit_elf)
571 return nc + printf ("%16.16" PRIx64, vma);
572 return nc + printf ("%8.8" PRIx64, vma);
573
574 case DEC_5:
575 if (vma <= 99999)
576 return printf ("%5" PRId64, vma);
577 /* Fall through. */
578 case PREFIX_HEX:
579 nc = printf ("0x");
580 /* Fall through. */
581 case HEX:
582 return nc + printf ("%" PRIx64, vma);
583
584 case PREFIX_HEX_5:
585 nc = printf ("0x");
586 /* Fall through. */
587 case HEX_5:
588 return nc + printf ("%05" PRIx64, vma);
589
590 case DEC:
591 return printf ("%" PRId64, vma);
592
593 case UNSIGNED:
594 return printf ("%" PRIu64, vma);
595
596 case UNSIGNED_5:
597 return printf ("%5" PRIu64, vma);
598
599 case OCTAL:
600 return printf ("%" PRIo64, vma);
601
602 case OCTAL_5:
603 return printf ("%5" PRIo64, vma);
604
605 default:
606 /* FIXME: Report unrecognised mode ? */
607 return 0;
608 }
609 }
610
611
612 /* Display a symbol on stdout. Handles the display of control characters and
613 multibye characters (assuming the host environment supports them).
614
615 Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true.
616
617 If truncation will happen and do_not_show_symbol_truncation is FALSE then display
618 abs(WIDTH) - 5 characters followed by "[...]".
619
620 If WIDTH is negative then ensure that the output is at least (- WIDTH) characters,
621 padding as necessary.
622
623 Returns the number of emitted characters. */
624
625 static unsigned int
626 print_symbol (signed int width, const char * symbol)
627 {
628 bool extra_padding = false;
629 bool do_dots = false;
630 signed int num_printed = 0;
631 #ifdef HAVE_MBSTATE_T
632 mbstate_t state;
633 #endif
634 unsigned int width_remaining;
635 const void * alloced_symbol = NULL;
636
637 if (width < 0)
638 {
639 /* Keep the width positive. This helps the code below. */
640 width = - width;
641 extra_padding = true;
642 }
643 else if (width == 0)
644 return 0;
645
646 if (do_wide)
647 /* Set the remaining width to a very large value.
648 This simplifies the code below. */
649 width_remaining = INT_MAX;
650 else
651 {
652 width_remaining = width;
653 if (! do_not_show_symbol_truncation
654 && (int) strlen (symbol) > width)
655 {
656 width_remaining -= 5;
657 if ((int) width_remaining < 0)
658 width_remaining = 0;
659 do_dots = true;
660 }
661 }
662
663 #ifdef HAVE_MBSTATE_T
664 /* Initialise the multibyte conversion state. */
665 memset (& state, 0, sizeof (state));
666 #endif
667
668 if (do_demangle && *symbol)
669 {
670 const char * res = cplus_demangle (symbol, demangle_flags);
671
672 if (res != NULL)
673 alloced_symbol = symbol = res;
674 }
675
676 while (width_remaining)
677 {
678 size_t n;
679 const char c = *symbol++;
680
681 if (c == 0)
682 break;
683
684 if (ISPRINT (c))
685 {
686 putchar (c);
687 width_remaining --;
688 num_printed ++;
689 }
690 else if (ISCNTRL (c))
691 {
692 /* Do not print control characters directly as they can affect terminal
693 settings. Such characters usually appear in the names generated
694 by the assembler for local labels. */
695
696 if (width_remaining < 2)
697 break;
698
699 printf ("^%c", c + 0x40);
700 width_remaining -= 2;
701 num_printed += 2;
702 }
703 else if (c == 0x7f)
704 {
705 if (width_remaining < 5)
706 break;
707 printf ("<DEL>");
708 width_remaining -= 5;
709 num_printed += 5;
710 }
711 else if (unicode_display != unicode_locale
712 && unicode_display != unicode_default)
713 {
714 /* Display unicode characters as something else. */
715 unsigned char bytes[4];
716 bool is_utf8;
717 unsigned int nbytes;
718
719 bytes[0] = c;
720
721 if (bytes[0] < 0xc0)
722 {
723 nbytes = 1;
724 is_utf8 = false;
725 }
726 else
727 {
728 bytes[1] = *symbol++;
729
730 if ((bytes[1] & 0xc0) != 0x80)
731 {
732 is_utf8 = false;
733 /* Do not consume this character. It may only
734 be the first byte in the sequence that was
735 corrupt. */
736 --symbol;
737 nbytes = 1;
738 }
739 else if ((bytes[0] & 0x20) == 0)
740 {
741 is_utf8 = true;
742 nbytes = 2;
743 }
744 else
745 {
746 bytes[2] = *symbol++;
747
748 if ((bytes[2] & 0xc0) != 0x80)
749 {
750 is_utf8 = false;
751 symbol -= 2;
752 nbytes = 1;
753 }
754 else if ((bytes[0] & 0x10) == 0)
755 {
756 is_utf8 = true;
757 nbytes = 3;
758 }
759 else
760 {
761 bytes[3] = *symbol++;
762
763 nbytes = 4;
764
765 if ((bytes[3] & 0xc0) != 0x80)
766 {
767 is_utf8 = false;
768 symbol -= 3;
769 nbytes = 1;
770 }
771 else
772 is_utf8 = true;
773 }
774 }
775 }
776
777 if (unicode_display == unicode_invalid)
778 is_utf8 = false;
779
780 if (unicode_display == unicode_hex || ! is_utf8)
781 {
782 unsigned int i;
783
784 if (width_remaining < (nbytes * 2) + 2)
785 break;
786
787 putchar (is_utf8 ? '<' : '{');
788 printf ("0x");
789 for (i = 0; i < nbytes; i++)
790 printf ("%02x", bytes[i]);
791 putchar (is_utf8 ? '>' : '}');
792 }
793 else
794 {
795 if (unicode_display == unicode_highlight && isatty (1))
796 printf ("\x1B[31;47m"); /* Red. */
797
798 switch (nbytes)
799 {
800 case 2:
801 if (width_remaining < 6)
802 break;
803 printf ("\\u%02x%02x",
804 (bytes[0] & 0x1c) >> 2,
805 ((bytes[0] & 0x03) << 6) | (bytes[1] & 0x3f));
806 break;
807 case 3:
808 if (width_remaining < 6)
809 break;
810 printf ("\\u%02x%02x",
811 ((bytes[0] & 0x0f) << 4) | ((bytes[1] & 0x3c) >> 2),
812 ((bytes[1] & 0x03) << 6) | (bytes[2] & 0x3f));
813 break;
814 case 4:
815 if (width_remaining < 8)
816 break;
817 printf ("\\u%02x%02x%02x",
818 ((bytes[0] & 0x07) << 6) | ((bytes[1] & 0x3c) >> 2),
819 ((bytes[1] & 0x03) << 6) | ((bytes[2] & 0x3c) >> 2),
820 ((bytes[2] & 0x03) << 6) | (bytes[3] & 0x3f));
821
822 break;
823 default:
824 /* URG. */
825 break;
826 }
827
828 if (unicode_display == unicode_highlight && isatty (1))
829 printf ("\033[0m"); /* Default colour. */
830 }
831
832 if (bytes[nbytes - 1] == 0)
833 break;
834 }
835 else
836 {
837 #ifdef HAVE_MBSTATE_T
838 wchar_t w;
839 #endif
840 /* Let printf do the hard work of displaying multibyte characters. */
841 printf ("%.1s", symbol - 1);
842 width_remaining --;
843 num_printed ++;
844
845 #ifdef HAVE_MBSTATE_T
846 /* Try to find out how many bytes made up the character that was
847 just printed. Advance the symbol pointer past the bytes that
848 were displayed. */
849 n = mbrtowc (& w, symbol - 1, MB_CUR_MAX, & state);
850 #else
851 n = 1;
852 #endif
853 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
854 symbol += (n - 1);
855 }
856 }
857
858 if (do_dots)
859 num_printed += printf ("[...]");
860
861 if (extra_padding && num_printed < width)
862 {
863 /* Fill in the remaining spaces. */
864 printf ("%-*s", width - num_printed, " ");
865 num_printed = width;
866 }
867
868 free ((void *) alloced_symbol);
869 return num_printed;
870 }
871
872 /* Returns a pointer to a static buffer containing a printable version of
873 the given section's name. Like print_symbol, except that it does not try
874 to print multibyte characters, it just interprets them as hex values. */
875
876 static const char *
877 printable_section_name (Filedata * filedata, const Elf_Internal_Shdr * sec)
878 {
879 #define MAX_PRINT_SEC_NAME_LEN 256
880 static char sec_name_buf [MAX_PRINT_SEC_NAME_LEN + 1];
881 const char * name = section_name_print (filedata, sec);
882 char * buf = sec_name_buf;
883 char c;
884 unsigned int remaining = MAX_PRINT_SEC_NAME_LEN;
885
886 while ((c = * name ++) != 0)
887 {
888 if (ISCNTRL (c))
889 {
890 if (remaining < 2)
891 break;
892
893 * buf ++ = '^';
894 * buf ++ = c + 0x40;
895 remaining -= 2;
896 }
897 else if (ISPRINT (c))
898 {
899 * buf ++ = c;
900 remaining -= 1;
901 }
902 else
903 {
904 static char hex[17] = "0123456789ABCDEF";
905
906 if (remaining < 4)
907 break;
908 * buf ++ = '<';
909 * buf ++ = hex[(c & 0xf0) >> 4];
910 * buf ++ = hex[c & 0x0f];
911 * buf ++ = '>';
912 remaining -= 4;
913 }
914
915 if (remaining == 0)
916 break;
917 }
918
919 * buf = 0;
920 return sec_name_buf;
921 }
922
923 static const char *
924 printable_section_name_from_index (Filedata *filedata, size_t ndx)
925 {
926 if (ndx >= filedata->file_header.e_shnum)
927 return _("<corrupt>");
928
929 return printable_section_name (filedata, filedata->section_headers + ndx);
930 }
931
932 /* Return a pointer to section NAME, or NULL if no such section exists. */
933
934 static Elf_Internal_Shdr *
935 find_section (Filedata * filedata, const char * name)
936 {
937 unsigned int i;
938
939 if (filedata->section_headers == NULL)
940 return NULL;
941
942 for (i = 0; i < filedata->file_header.e_shnum; i++)
943 if (section_name_valid (filedata, filedata->section_headers + i)
944 && streq (section_name (filedata, filedata->section_headers + i),
945 name))
946 return filedata->section_headers + i;
947
948 return NULL;
949 }
950
951 /* Return a pointer to a section containing ADDR, or NULL if no such
952 section exists. */
953
954 static Elf_Internal_Shdr *
955 find_section_by_address (Filedata * filedata, uint64_t addr)
956 {
957 unsigned int i;
958
959 if (filedata->section_headers == NULL)
960 return NULL;
961
962 for (i = 0; i < filedata->file_header.e_shnum; i++)
963 {
964 Elf_Internal_Shdr *sec = filedata->section_headers + i;
965
966 if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size)
967 return sec;
968 }
969
970 return NULL;
971 }
972
973 static Elf_Internal_Shdr *
974 find_section_by_type (Filedata * filedata, unsigned int type)
975 {
976 unsigned int i;
977
978 if (filedata->section_headers == NULL)
979 return NULL;
980
981 for (i = 0; i < filedata->file_header.e_shnum; i++)
982 {
983 Elf_Internal_Shdr *sec = filedata->section_headers + i;
984
985 if (sec->sh_type == type)
986 return sec;
987 }
988
989 return NULL;
990 }
991
992 /* Return a pointer to section NAME, or NULL if no such section exists,
993 restricted to the list of sections given in SET. */
994
995 static Elf_Internal_Shdr *
996 find_section_in_set (Filedata * filedata, const char * name, unsigned int * set)
997 {
998 unsigned int i;
999
1000 if (filedata->section_headers == NULL)
1001 return NULL;
1002
1003 if (set != NULL)
1004 {
1005 while ((i = *set++) > 0)
1006 {
1007 /* See PR 21156 for a reproducer. */
1008 if (i >= filedata->file_header.e_shnum)
1009 continue; /* FIXME: Should we issue an error message ? */
1010
1011 if (section_name_valid (filedata, filedata->section_headers + i)
1012 && streq (section_name (filedata, filedata->section_headers + i),
1013 name))
1014 return filedata->section_headers + i;
1015 }
1016 }
1017
1018 return find_section (filedata, name);
1019 }
1020
1021 /* Return TRUE if the current file is for IA-64 machine and OpenVMS ABI.
1022 This OS has so many departures from the ELF standard that we test it at
1023 many places. */
1024
1025 static inline bool
1026 is_ia64_vms (Filedata * filedata)
1027 {
1028 return filedata->file_header.e_machine == EM_IA_64
1029 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS;
1030 }
1031
1032 /* Guess the relocation size commonly used by the specific machines. */
1033
1034 static bool
1035 guess_is_rela (unsigned int e_machine)
1036 {
1037 switch (e_machine)
1038 {
1039 /* Targets that use REL relocations. */
1040 case EM_386:
1041 case EM_IAMCU:
1042 case EM_960:
1043 case EM_ARM:
1044 case EM_D10V:
1045 case EM_CYGNUS_D10V:
1046 case EM_DLX:
1047 case EM_MIPS:
1048 case EM_MIPS_RS3_LE:
1049 case EM_CYGNUS_M32R:
1050 case EM_SCORE:
1051 case EM_XGATE:
1052 case EM_NFP:
1053 case EM_BPF:
1054 return false;
1055
1056 /* Targets that use RELA relocations. */
1057 case EM_68K:
1058 case EM_860:
1059 case EM_AARCH64:
1060 case EM_ADAPTEVA_EPIPHANY:
1061 case EM_ALPHA:
1062 case EM_ALTERA_NIOS2:
1063 case EM_ARC:
1064 case EM_ARC_COMPACT:
1065 case EM_ARC_COMPACT2:
1066 case EM_ARC_COMPACT3:
1067 case EM_ARC_COMPACT3_64:
1068 case EM_AVR:
1069 case EM_AVR_OLD:
1070 case EM_BLACKFIN:
1071 case EM_CR16:
1072 case EM_CRIS:
1073 case EM_CRX:
1074 case EM_CSKY:
1075 case EM_D30V:
1076 case EM_CYGNUS_D30V:
1077 case EM_FR30:
1078 case EM_FT32:
1079 case EM_CYGNUS_FR30:
1080 case EM_CYGNUS_FRV:
1081 case EM_H8S:
1082 case EM_H8_300:
1083 case EM_H8_300H:
1084 case EM_IA_64:
1085 case EM_IP2K:
1086 case EM_IP2K_OLD:
1087 case EM_IQ2000:
1088 case EM_KVX:
1089 case EM_LATTICEMICO32:
1090 case EM_M32C_OLD:
1091 case EM_M32C:
1092 case EM_M32R:
1093 case EM_MCORE:
1094 case EM_CYGNUS_MEP:
1095 case EM_METAG:
1096 case EM_MMIX:
1097 case EM_MN10200:
1098 case EM_CYGNUS_MN10200:
1099 case EM_MN10300:
1100 case EM_CYGNUS_MN10300:
1101 case EM_MOXIE:
1102 case EM_MSP430:
1103 case EM_MSP430_OLD:
1104 case EM_MT:
1105 case EM_NDS32:
1106 case EM_NIOS32:
1107 case EM_OR1K:
1108 case EM_PPC64:
1109 case EM_PPC:
1110 case EM_TI_PRU:
1111 case EM_RISCV:
1112 case EM_RL78:
1113 case EM_RX:
1114 case EM_S390:
1115 case EM_S390_OLD:
1116 case EM_SH:
1117 case EM_SPARC:
1118 case EM_SPARC32PLUS:
1119 case EM_SPARCV9:
1120 case EM_SPU:
1121 case EM_TI_C6000:
1122 case EM_TILEGX:
1123 case EM_TILEPRO:
1124 case EM_V800:
1125 case EM_V850:
1126 case EM_CYGNUS_V850:
1127 case EM_VAX:
1128 case EM_VISIUM:
1129 case EM_X86_64:
1130 case EM_L1OM:
1131 case EM_K1OM:
1132 case EM_XSTORMY16:
1133 case EM_XTENSA:
1134 case EM_XTENSA_OLD:
1135 case EM_MICROBLAZE:
1136 case EM_MICROBLAZE_OLD:
1137 case EM_WEBASSEMBLY:
1138 return true;
1139
1140 case EM_68HC05:
1141 case EM_68HC08:
1142 case EM_68HC11:
1143 case EM_68HC16:
1144 case EM_FX66:
1145 case EM_ME16:
1146 case EM_MMA:
1147 case EM_NCPU:
1148 case EM_NDR1:
1149 case EM_PCP:
1150 case EM_ST100:
1151 case EM_ST19:
1152 case EM_ST7:
1153 case EM_ST9PLUS:
1154 case EM_STARCORE:
1155 case EM_SVX:
1156 case EM_TINYJ:
1157 default:
1158 warn (_("Don't know about relocations on this machine architecture\n"));
1159 return false;
1160 }
1161 }
1162
1163 /* Load RELA type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
1164 Returns TRUE upon success, FALSE otherwise. If successful then a
1165 pointer to a malloc'ed buffer containing the relocs is placed in *RELASP,
1166 and the number of relocs loaded is placed in *NRELASP. It is the caller's
1167 responsibility to free the allocated buffer. */
1168
1169 static bool
1170 slurp_rela_relocs (Filedata *filedata,
1171 uint64_t rel_offset,
1172 uint64_t rel_size,
1173 Elf_Internal_Rela **relasp,
1174 uint64_t *nrelasp)
1175 {
1176 Elf_Internal_Rela * relas;
1177 uint64_t nrelas;
1178 unsigned int i;
1179
1180 if (is_32bit_elf)
1181 {
1182 Elf32_External_Rela * erelas;
1183
1184 erelas = (Elf32_External_Rela *) get_data (NULL, filedata, rel_offset, 1,
1185 rel_size, _("32-bit relocation data"));
1186 if (!erelas)
1187 return false;
1188
1189 nrelas = rel_size / sizeof (Elf32_External_Rela);
1190
1191 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
1192 sizeof (Elf_Internal_Rela));
1193
1194 if (relas == NULL)
1195 {
1196 free (erelas);
1197 error (_("out of memory parsing relocs\n"));
1198 return false;
1199 }
1200
1201 for (i = 0; i < nrelas; i++)
1202 {
1203 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
1204 relas[i].r_info = BYTE_GET (erelas[i].r_info);
1205 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
1206 }
1207
1208 free (erelas);
1209 }
1210 else
1211 {
1212 Elf64_External_Rela * erelas;
1213
1214 erelas = (Elf64_External_Rela *) get_data (NULL, filedata, rel_offset, 1,
1215 rel_size, _("64-bit relocation data"));
1216 if (!erelas)
1217 return false;
1218
1219 nrelas = rel_size / sizeof (Elf64_External_Rela);
1220
1221 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
1222 sizeof (Elf_Internal_Rela));
1223
1224 if (relas == NULL)
1225 {
1226 free (erelas);
1227 error (_("out of memory parsing relocs\n"));
1228 return false;
1229 }
1230
1231 for (i = 0; i < nrelas; i++)
1232 {
1233 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
1234 relas[i].r_info = BYTE_GET (erelas[i].r_info);
1235 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
1236
1237 if (filedata->file_header.e_machine == EM_MIPS
1238 && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB)
1239 {
1240 /* In little-endian objects, r_info isn't really a
1241 64-bit little-endian value: it has a 32-bit
1242 little-endian symbol index followed by four
1243 individual byte fields. Reorder INFO
1244 accordingly. */
1245 uint64_t inf = relas[i].r_info;
1246 inf = (((inf & 0xffffffff) << 32)
1247 | ((inf >> 56) & 0xff)
1248 | ((inf >> 40) & 0xff00)
1249 | ((inf >> 24) & 0xff0000)
1250 | ((inf >> 8) & 0xff000000));
1251 relas[i].r_info = inf;
1252 }
1253 }
1254
1255 free (erelas);
1256 }
1257
1258 *relasp = relas;
1259 *nrelasp = nrelas;
1260 return true;
1261 }
1262
1263 /* Load REL type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
1264 Returns TRUE upon success, FALSE otherwise. If successful then a
1265 pointer to a malloc'ed buffer containing the relocs is placed in *RELSP,
1266 and the number of relocs loaded is placed in *NRELSP. It is the caller's
1267 responsibility to free the allocated buffer. */
1268
1269 static bool
1270 slurp_rel_relocs (Filedata *filedata,
1271 uint64_t rel_offset,
1272 uint64_t rel_size,
1273 Elf_Internal_Rela **relsp,
1274 uint64_t *nrelsp)
1275 {
1276 Elf_Internal_Rela * rels;
1277 uint64_t nrels;
1278 unsigned int i;
1279
1280 if (is_32bit_elf)
1281 {
1282 Elf32_External_Rel * erels;
1283
1284 erels = (Elf32_External_Rel *) get_data (NULL, filedata, rel_offset, 1,
1285 rel_size, _("32-bit relocation data"));
1286 if (!erels)
1287 return false;
1288
1289 nrels = rel_size / sizeof (Elf32_External_Rel);
1290
1291 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
1292
1293 if (rels == NULL)
1294 {
1295 free (erels);
1296 error (_("out of memory parsing relocs\n"));
1297 return false;
1298 }
1299
1300 for (i = 0; i < nrels; i++)
1301 {
1302 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
1303 rels[i].r_info = BYTE_GET (erels[i].r_info);
1304 rels[i].r_addend = 0;
1305 }
1306
1307 free (erels);
1308 }
1309 else
1310 {
1311 Elf64_External_Rel * erels;
1312
1313 erels = (Elf64_External_Rel *) get_data (NULL, filedata, rel_offset, 1,
1314 rel_size, _("64-bit relocation data"));
1315 if (!erels)
1316 return false;
1317
1318 nrels = rel_size / sizeof (Elf64_External_Rel);
1319
1320 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
1321
1322 if (rels == NULL)
1323 {
1324 free (erels);
1325 error (_("out of memory parsing relocs\n"));
1326 return false;
1327 }
1328
1329 for (i = 0; i < nrels; i++)
1330 {
1331 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
1332 rels[i].r_info = BYTE_GET (erels[i].r_info);
1333 rels[i].r_addend = 0;
1334
1335 if (filedata->file_header.e_machine == EM_MIPS
1336 && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB)
1337 {
1338 /* In little-endian objects, r_info isn't really a
1339 64-bit little-endian value: it has a 32-bit
1340 little-endian symbol index followed by four
1341 individual byte fields. Reorder INFO
1342 accordingly. */
1343 uint64_t inf = rels[i].r_info;
1344 inf = (((inf & 0xffffffff) << 32)
1345 | ((inf >> 56) & 0xff)
1346 | ((inf >> 40) & 0xff00)
1347 | ((inf >> 24) & 0xff0000)
1348 | ((inf >> 8) & 0xff000000));
1349 rels[i].r_info = inf;
1350 }
1351 }
1352
1353 free (erels);
1354 }
1355
1356 *relsp = rels;
1357 *nrelsp = nrels;
1358 return true;
1359 }
1360
1361 static bool
1362 slurp_relr_relocs (Filedata *filedata,
1363 uint64_t relr_offset,
1364 uint64_t relr_size,
1365 uint64_t **relrsp,
1366 uint64_t *nrelrsp)
1367 {
1368 void *relrs;
1369 size_t size = 0, nentries, i;
1370 uint64_t base = 0, addr, entry;
1371
1372 relrs = get_data (NULL, filedata, relr_offset, 1, relr_size,
1373 _("RELR relocation data"));
1374 if (!relrs)
1375 return false;
1376
1377 if (is_32bit_elf)
1378 nentries = relr_size / sizeof (Elf32_External_Relr);
1379 else
1380 nentries = relr_size / sizeof (Elf64_External_Relr);
1381 for (i = 0; i < nentries; i++)
1382 {
1383 if (is_32bit_elf)
1384 entry = BYTE_GET (((Elf32_External_Relr *)relrs)[i].r_data);
1385 else
1386 entry = BYTE_GET (((Elf64_External_Relr *)relrs)[i].r_data);
1387 if ((entry & 1) == 0)
1388 size++;
1389 else
1390 while ((entry >>= 1) != 0)
1391 if ((entry & 1) == 1)
1392 size++;
1393 }
1394
1395 *relrsp = malloc (size * sizeof (**relrsp));
1396 if (*relrsp == NULL)
1397 {
1398 free (relrs);
1399 error (_("out of memory parsing relocs\n"));
1400 return false;
1401 }
1402
1403 size = 0;
1404 for (i = 0; i < nentries; i++)
1405 {
1406 const uint64_t entry_bytes = is_32bit_elf ? 4 : 8;
1407
1408 if (is_32bit_elf)
1409 entry = BYTE_GET (((Elf32_External_Relr *)relrs)[i].r_data);
1410 else
1411 entry = BYTE_GET (((Elf64_External_Relr *)relrs)[i].r_data);
1412 if ((entry & 1) == 0)
1413 {
1414 (*relrsp)[size++] = entry;
1415 base = entry + entry_bytes;
1416 }
1417 else
1418 {
1419 for (addr = base; (entry >>= 1) != 0; addr += entry_bytes)
1420 if ((entry & 1) != 0)
1421 (*relrsp)[size++] = addr;
1422 base += entry_bytes * (entry_bytes * CHAR_BIT - 1);
1423 }
1424 }
1425
1426 *nrelrsp = size;
1427 free (relrs);
1428 return true;
1429 }
1430
1431 /* Returns the reloc type extracted from the reloc info field. */
1432
1433 static unsigned int
1434 get_reloc_type (Filedata * filedata, uint64_t reloc_info)
1435 {
1436 if (is_32bit_elf)
1437 return ELF32_R_TYPE (reloc_info);
1438
1439 switch (filedata->file_header.e_machine)
1440 {
1441 case EM_MIPS:
1442 /* Note: We assume that reloc_info has already been adjusted for us. */
1443 return ELF64_MIPS_R_TYPE (reloc_info);
1444
1445 case EM_SPARCV9:
1446 return ELF64_R_TYPE_ID (reloc_info);
1447
1448 default:
1449 return ELF64_R_TYPE (reloc_info);
1450 }
1451 }
1452
1453 /* Return the symbol index extracted from the reloc info field. */
1454
1455 static uint64_t
1456 get_reloc_symindex (uint64_t reloc_info)
1457 {
1458 return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info);
1459 }
1460
1461 static inline bool
1462 uses_msp430x_relocs (Filedata * filedata)
1463 {
1464 return
1465 filedata->file_header.e_machine == EM_MSP430 /* Paranoia. */
1466 /* GCC uses osabi == ELFOSBI_STANDALONE. */
1467 && (((filedata->file_header.e_flags & EF_MSP430_MACH) == E_MSP430_MACH_MSP430X)
1468 /* TI compiler uses ELFOSABI_NONE. */
1469 || (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_NONE));
1470 }
1471
1472 /* Display the contents of the relocation data found at the specified
1473 offset. */
1474
1475 static bool
1476 dump_relocations (Filedata *filedata,
1477 uint64_t rel_offset,
1478 uint64_t rel_size,
1479 Elf_Internal_Sym *symtab,
1480 uint64_t nsyms,
1481 char *strtab,
1482 uint64_t strtablen,
1483 relocation_type rel_type,
1484 bool is_dynsym)
1485 {
1486 size_t i;
1487 Elf_Internal_Rela * rels;
1488 bool res = true;
1489
1490 if (rel_type == reltype_unknown)
1491 rel_type = guess_is_rela (filedata->file_header.e_machine) ? reltype_rela : reltype_rel;
1492
1493 if (rel_type == reltype_rela)
1494 {
1495 if (!slurp_rela_relocs (filedata, rel_offset, rel_size, &rels, &rel_size))
1496 return false;
1497 }
1498 else if (rel_type == reltype_rel)
1499 {
1500 if (!slurp_rel_relocs (filedata, rel_offset, rel_size, &rels, &rel_size))
1501 return false;
1502 }
1503 else if (rel_type == reltype_relr)
1504 {
1505 uint64_t * relrs;
1506 const char *format
1507 = is_32bit_elf ? "%08" PRIx64 "\n" : "%016" PRIx64 "\n";
1508
1509 if (!slurp_relr_relocs (filedata, rel_offset, rel_size, &relrs,
1510 &rel_size))
1511 return false;
1512
1513 printf (ngettext (" %" PRIu64 " offset\n",
1514 " %" PRIu64 " offsets\n", rel_size),
1515 rel_size);
1516 for (i = 0; i < rel_size; i++)
1517 printf (format, relrs[i]);
1518 free (relrs);
1519 return true;
1520 }
1521
1522 if (is_32bit_elf)
1523 {
1524 if (rel_type == reltype_rela)
1525 {
1526 if (do_wide)
1527 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
1528 else
1529 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
1530 }
1531 else
1532 {
1533 if (do_wide)
1534 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
1535 else
1536 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
1537 }
1538 }
1539 else
1540 {
1541 if (rel_type == reltype_rela)
1542 {
1543 if (do_wide)
1544 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
1545 else
1546 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
1547 }
1548 else
1549 {
1550 if (do_wide)
1551 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
1552 else
1553 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
1554 }
1555 }
1556
1557 for (i = 0; i < rel_size; i++)
1558 {
1559 const char * rtype;
1560 uint64_t offset;
1561 uint64_t inf;
1562 uint64_t symtab_index;
1563 uint64_t type;
1564
1565 offset = rels[i].r_offset;
1566 inf = rels[i].r_info;
1567
1568 type = get_reloc_type (filedata, inf);
1569 symtab_index = get_reloc_symindex (inf);
1570
1571 if (is_32bit_elf)
1572 {
1573 printf ("%8.8lx %8.8lx ",
1574 (unsigned long) offset & 0xffffffff,
1575 (unsigned long) inf & 0xffffffff);
1576 }
1577 else
1578 {
1579 printf (do_wide
1580 ? "%16.16" PRIx64 " %16.16" PRIx64 " "
1581 : "%12.12" PRIx64 " %12.12" PRIx64 " ",
1582 offset, inf);
1583 }
1584
1585 switch (filedata->file_header.e_machine)
1586 {
1587 default:
1588 rtype = NULL;
1589 break;
1590
1591 case EM_AARCH64:
1592 rtype = elf_aarch64_reloc_type (type);
1593 break;
1594
1595 case EM_M32R:
1596 case EM_CYGNUS_M32R:
1597 rtype = elf_m32r_reloc_type (type);
1598 break;
1599
1600 case EM_386:
1601 case EM_IAMCU:
1602 rtype = elf_i386_reloc_type (type);
1603 break;
1604
1605 case EM_68HC11:
1606 case EM_68HC12:
1607 rtype = elf_m68hc11_reloc_type (type);
1608 break;
1609
1610 case EM_S12Z:
1611 rtype = elf_s12z_reloc_type (type);
1612 break;
1613
1614 case EM_68K:
1615 rtype = elf_m68k_reloc_type (type);
1616 break;
1617
1618 case EM_960:
1619 rtype = elf_i960_reloc_type (type);
1620 break;
1621
1622 case EM_AVR:
1623 case EM_AVR_OLD:
1624 rtype = elf_avr_reloc_type (type);
1625 break;
1626
1627 case EM_OLD_SPARCV9:
1628 case EM_SPARC32PLUS:
1629 case EM_SPARCV9:
1630 case EM_SPARC:
1631 rtype = elf_sparc_reloc_type (type);
1632 break;
1633
1634 case EM_SPU:
1635 rtype = elf_spu_reloc_type (type);
1636 break;
1637
1638 case EM_V800:
1639 rtype = v800_reloc_type (type);
1640 break;
1641 case EM_V850:
1642 case EM_CYGNUS_V850:
1643 rtype = v850_reloc_type (type);
1644 break;
1645
1646 case EM_D10V:
1647 case EM_CYGNUS_D10V:
1648 rtype = elf_d10v_reloc_type (type);
1649 break;
1650
1651 case EM_D30V:
1652 case EM_CYGNUS_D30V:
1653 rtype = elf_d30v_reloc_type (type);
1654 break;
1655
1656 case EM_DLX:
1657 rtype = elf_dlx_reloc_type (type);
1658 break;
1659
1660 case EM_SH:
1661 rtype = elf_sh_reloc_type (type);
1662 break;
1663
1664 case EM_MN10300:
1665 case EM_CYGNUS_MN10300:
1666 rtype = elf_mn10300_reloc_type (type);
1667 break;
1668
1669 case EM_MN10200:
1670 case EM_CYGNUS_MN10200:
1671 rtype = elf_mn10200_reloc_type (type);
1672 break;
1673
1674 case EM_FR30:
1675 case EM_CYGNUS_FR30:
1676 rtype = elf_fr30_reloc_type (type);
1677 break;
1678
1679 case EM_CYGNUS_FRV:
1680 rtype = elf_frv_reloc_type (type);
1681 break;
1682
1683 case EM_CSKY:
1684 rtype = elf_csky_reloc_type (type);
1685 break;
1686
1687 case EM_FT32:
1688 rtype = elf_ft32_reloc_type (type);
1689 break;
1690
1691 case EM_MCORE:
1692 rtype = elf_mcore_reloc_type (type);
1693 break;
1694
1695 case EM_MMIX:
1696 rtype = elf_mmix_reloc_type (type);
1697 break;
1698
1699 case EM_MOXIE:
1700 rtype = elf_moxie_reloc_type (type);
1701 break;
1702
1703 case EM_MSP430:
1704 if (uses_msp430x_relocs (filedata))
1705 {
1706 rtype = elf_msp430x_reloc_type (type);
1707 break;
1708 }
1709 /* Fall through. */
1710 case EM_MSP430_OLD:
1711 rtype = elf_msp430_reloc_type (type);
1712 break;
1713
1714 case EM_NDS32:
1715 rtype = elf_nds32_reloc_type (type);
1716 break;
1717
1718 case EM_PPC:
1719 rtype = elf_ppc_reloc_type (type);
1720 break;
1721
1722 case EM_PPC64:
1723 rtype = elf_ppc64_reloc_type (type);
1724 break;
1725
1726 case EM_MIPS:
1727 case EM_MIPS_RS3_LE:
1728 rtype = elf_mips_reloc_type (type);
1729 break;
1730
1731 case EM_RISCV:
1732 rtype = elf_riscv_reloc_type (type);
1733 break;
1734
1735 case EM_ALPHA:
1736 rtype = elf_alpha_reloc_type (type);
1737 break;
1738
1739 case EM_ARM:
1740 rtype = elf_arm_reloc_type (type);
1741 break;
1742
1743 case EM_ARC:
1744 case EM_ARC_COMPACT:
1745 case EM_ARC_COMPACT2:
1746 case EM_ARC_COMPACT3:
1747 case EM_ARC_COMPACT3_64:
1748 rtype = elf_arc_reloc_type (type);
1749 break;
1750
1751 case EM_PARISC:
1752 rtype = elf_hppa_reloc_type (type);
1753 break;
1754
1755 case EM_H8_300:
1756 case EM_H8_300H:
1757 case EM_H8S:
1758 rtype = elf_h8_reloc_type (type);
1759 break;
1760
1761 case EM_OR1K:
1762 rtype = elf_or1k_reloc_type (type);
1763 break;
1764
1765 case EM_PJ:
1766 case EM_PJ_OLD:
1767 rtype = elf_pj_reloc_type (type);
1768 break;
1769 case EM_IA_64:
1770 rtype = elf_ia64_reloc_type (type);
1771 break;
1772
1773 case EM_KVX:
1774 rtype = elf_kvx_reloc_type (type);
1775 break;
1776
1777 case EM_CRIS:
1778 rtype = elf_cris_reloc_type (type);
1779 break;
1780
1781 case EM_860:
1782 rtype = elf_i860_reloc_type (type);
1783 break;
1784
1785 case EM_X86_64:
1786 case EM_L1OM:
1787 case EM_K1OM:
1788 rtype = elf_x86_64_reloc_type (type);
1789 break;
1790
1791 case EM_S370:
1792 rtype = i370_reloc_type (type);
1793 break;
1794
1795 case EM_S390_OLD:
1796 case EM_S390:
1797 rtype = elf_s390_reloc_type (type);
1798 break;
1799
1800 case EM_SCORE:
1801 rtype = elf_score_reloc_type (type);
1802 break;
1803
1804 case EM_XSTORMY16:
1805 rtype = elf_xstormy16_reloc_type (type);
1806 break;
1807
1808 case EM_CRX:
1809 rtype = elf_crx_reloc_type (type);
1810 break;
1811
1812 case EM_VAX:
1813 rtype = elf_vax_reloc_type (type);
1814 break;
1815
1816 case EM_VISIUM:
1817 rtype = elf_visium_reloc_type (type);
1818 break;
1819
1820 case EM_BPF:
1821 rtype = elf_bpf_reloc_type (type);
1822 break;
1823
1824 case EM_ADAPTEVA_EPIPHANY:
1825 rtype = elf_epiphany_reloc_type (type);
1826 break;
1827
1828 case EM_IP2K:
1829 case EM_IP2K_OLD:
1830 rtype = elf_ip2k_reloc_type (type);
1831 break;
1832
1833 case EM_IQ2000:
1834 rtype = elf_iq2000_reloc_type (type);
1835 break;
1836
1837 case EM_XTENSA_OLD:
1838 case EM_XTENSA:
1839 rtype = elf_xtensa_reloc_type (type);
1840 break;
1841
1842 case EM_LATTICEMICO32:
1843 rtype = elf_lm32_reloc_type (type);
1844 break;
1845
1846 case EM_M32C_OLD:
1847 case EM_M32C:
1848 rtype = elf_m32c_reloc_type (type);
1849 break;
1850
1851 case EM_MT:
1852 rtype = elf_mt_reloc_type (type);
1853 break;
1854
1855 case EM_BLACKFIN:
1856 rtype = elf_bfin_reloc_type (type);
1857 break;
1858
1859 case EM_CYGNUS_MEP:
1860 rtype = elf_mep_reloc_type (type);
1861 break;
1862
1863 case EM_CR16:
1864 rtype = elf_cr16_reloc_type (type);
1865 break;
1866
1867 case EM_MICROBLAZE:
1868 case EM_MICROBLAZE_OLD:
1869 rtype = elf_microblaze_reloc_type (type);
1870 break;
1871
1872 case EM_RL78:
1873 rtype = elf_rl78_reloc_type (type);
1874 break;
1875
1876 case EM_RX:
1877 rtype = elf_rx_reloc_type (type);
1878 break;
1879
1880 case EM_METAG:
1881 rtype = elf_metag_reloc_type (type);
1882 break;
1883
1884 case EM_TI_C6000:
1885 rtype = elf_tic6x_reloc_type (type);
1886 break;
1887
1888 case EM_TILEGX:
1889 rtype = elf_tilegx_reloc_type (type);
1890 break;
1891
1892 case EM_TILEPRO:
1893 rtype = elf_tilepro_reloc_type (type);
1894 break;
1895
1896 case EM_WEBASSEMBLY:
1897 rtype = elf_wasm32_reloc_type (type);
1898 break;
1899
1900 case EM_XGATE:
1901 rtype = elf_xgate_reloc_type (type);
1902 break;
1903
1904 case EM_ALTERA_NIOS2:
1905 rtype = elf_nios2_reloc_type (type);
1906 break;
1907
1908 case EM_TI_PRU:
1909 rtype = elf_pru_reloc_type (type);
1910 break;
1911
1912 case EM_NFP:
1913 if (EF_NFP_MACH (filedata->file_header.e_flags) == E_NFP_MACH_3200)
1914 rtype = elf_nfp3200_reloc_type (type);
1915 else
1916 rtype = elf_nfp_reloc_type (type);
1917 break;
1918
1919 case EM_Z80:
1920 rtype = elf_z80_reloc_type (type);
1921 break;
1922
1923 case EM_LOONGARCH:
1924 rtype = elf_loongarch_reloc_type (type);
1925 break;
1926
1927 case EM_AMDGPU:
1928 rtype = elf_amdgpu_reloc_type (type);
1929 break;
1930 }
1931
1932 if (rtype == NULL)
1933 printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff);
1934 else
1935 printf (do_wide ? "%-22s" : "%-17.17s", rtype);
1936
1937 if (filedata->file_header.e_machine == EM_ALPHA
1938 && rtype != NULL
1939 && streq (rtype, "R_ALPHA_LITUSE")
1940 && rel_type == reltype_rela)
1941 {
1942 switch (rels[i].r_addend)
1943 {
1944 case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break;
1945 case LITUSE_ALPHA_BASE: rtype = "BASE"; break;
1946 case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break;
1947 case LITUSE_ALPHA_JSR: rtype = "JSR"; break;
1948 case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break;
1949 case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break;
1950 case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break;
1951 default: rtype = NULL;
1952 }
1953
1954 if (rtype)
1955 printf (" (%s)", rtype);
1956 else
1957 {
1958 putchar (' ');
1959 printf (_("<unknown addend: %" PRIx64 ">"),
1960 rels[i].r_addend);
1961 res = false;
1962 }
1963 }
1964 else if (symtab_index)
1965 {
1966 if (symtab == NULL || symtab_index >= nsyms)
1967 {
1968 error (_(" bad symbol index: %08lx in reloc\n"),
1969 (unsigned long) symtab_index);
1970 res = false;
1971 }
1972 else
1973 {
1974 Elf_Internal_Sym * psym;
1975 const char * version_string;
1976 enum versioned_symbol_info sym_info;
1977 unsigned short vna_other;
1978
1979 psym = symtab + symtab_index;
1980
1981 version_string
1982 = get_symbol_version_string (filedata, is_dynsym,
1983 strtab, strtablen,
1984 symtab_index,
1985 psym,
1986 &sym_info,
1987 &vna_other);
1988
1989 printf (" ");
1990
1991 if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC)
1992 {
1993 const char * name;
1994 unsigned int len;
1995 unsigned int width = is_32bit_elf ? 8 : 14;
1996
1997 /* Relocations against GNU_IFUNC symbols do not use the value
1998 of the symbol as the address to relocate against. Instead
1999 they invoke the function named by the symbol and use its
2000 result as the address for relocation.
2001
2002 To indicate this to the user, do not display the value of
2003 the symbol in the "Symbols's Value" field. Instead show
2004 its name followed by () as a hint that the symbol is
2005 invoked. */
2006
2007 if (strtab == NULL
2008 || psym->st_name == 0
2009 || psym->st_name >= strtablen)
2010 name = "??";
2011 else
2012 name = strtab + psym->st_name;
2013
2014 len = print_symbol (width, name);
2015 if (version_string)
2016 printf (sym_info == symbol_public ? "@@%s" : "@%s",
2017 version_string);
2018 printf ("()%-*s", len <= width ? (width + 1) - len : 1, " ");
2019 }
2020 else
2021 {
2022 print_vma (psym->st_value, LONG_HEX);
2023
2024 printf (is_32bit_elf ? " " : " ");
2025 }
2026
2027 if (psym->st_name == 0)
2028 {
2029 const char * sec_name = "<null>";
2030 char name_buf[40];
2031
2032 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION)
2033 {
2034 if (psym->st_shndx < filedata->file_header.e_shnum
2035 && filedata->section_headers != NULL)
2036 sec_name = section_name_print (filedata,
2037 filedata->section_headers
2038 + psym->st_shndx);
2039 else if (psym->st_shndx == SHN_ABS)
2040 sec_name = "ABS";
2041 else if (psym->st_shndx == SHN_COMMON)
2042 sec_name = "COMMON";
2043 else if ((filedata->file_header.e_machine == EM_MIPS
2044 && psym->st_shndx == SHN_MIPS_SCOMMON)
2045 || (filedata->file_header.e_machine == EM_TI_C6000
2046 && psym->st_shndx == SHN_TIC6X_SCOMMON))
2047 sec_name = "SCOMMON";
2048 else if (filedata->file_header.e_machine == EM_MIPS
2049 && psym->st_shndx == SHN_MIPS_SUNDEFINED)
2050 sec_name = "SUNDEF";
2051 else if ((filedata->file_header.e_machine == EM_X86_64
2052 || filedata->file_header.e_machine == EM_L1OM
2053 || filedata->file_header.e_machine == EM_K1OM)
2054 && psym->st_shndx == SHN_X86_64_LCOMMON)
2055 sec_name = "LARGE_COMMON";
2056 else if (filedata->file_header.e_machine == EM_IA_64
2057 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX
2058 && psym->st_shndx == SHN_IA_64_ANSI_COMMON)
2059 sec_name = "ANSI_COM";
2060 else if (is_ia64_vms (filedata)
2061 && psym->st_shndx == SHN_IA_64_VMS_SYMVEC)
2062 sec_name = "VMS_SYMVEC";
2063 else
2064 {
2065 sprintf (name_buf, "<section 0x%x>",
2066 (unsigned int) psym->st_shndx);
2067 sec_name = name_buf;
2068 }
2069 }
2070 print_symbol (22, sec_name);
2071 }
2072 else if (strtab == NULL)
2073 printf (_("<string table index: %3ld>"), psym->st_name);
2074 else if (psym->st_name >= strtablen)
2075 {
2076 error (_("<corrupt string table index: %3ld>\n"),
2077 psym->st_name);
2078 res = false;
2079 }
2080 else
2081 {
2082 print_symbol (22, strtab + psym->st_name);
2083 if (version_string)
2084 printf (sym_info == symbol_public ? "@@%s" : "@%s",
2085 version_string);
2086 }
2087
2088 if (rel_type == reltype_rela)
2089 {
2090 uint64_t off = rels[i].r_addend;
2091
2092 if ((int64_t) off < 0)
2093 printf (" - %" PRIx64, -off);
2094 else
2095 printf (" + %" PRIx64, off);
2096 }
2097 }
2098 }
2099 else if (rel_type == reltype_rela)
2100 {
2101 uint64_t off = rels[i].r_addend;
2102
2103 printf ("%*c", is_32bit_elf ? 12 : 20, ' ');
2104 if ((int64_t) off < 0)
2105 printf ("-%" PRIx64, -off);
2106 else
2107 printf ("%" PRIx64, off);
2108 }
2109
2110 if (filedata->file_header.e_machine == EM_SPARCV9
2111 && rtype != NULL
2112 && streq (rtype, "R_SPARC_OLO10"))
2113 printf (" + %" PRIx64, ELF64_R_TYPE_DATA (inf));
2114
2115 putchar ('\n');
2116
2117 if (! is_32bit_elf && filedata->file_header.e_machine == EM_MIPS)
2118 {
2119 uint64_t type2 = ELF64_MIPS_R_TYPE2 (inf);
2120 uint64_t type3 = ELF64_MIPS_R_TYPE3 (inf);
2121 const char * rtype2 = elf_mips_reloc_type (type2);
2122 const char * rtype3 = elf_mips_reloc_type (type3);
2123
2124 printf (" Type2: ");
2125
2126 if (rtype2 == NULL)
2127 printf (_("unrecognized: %-7lx"),
2128 (unsigned long) type2 & 0xffffffff);
2129 else
2130 printf ("%-17.17s", rtype2);
2131
2132 printf ("\n Type3: ");
2133
2134 if (rtype3 == NULL)
2135 printf (_("unrecognized: %-7lx"),
2136 (unsigned long) type3 & 0xffffffff);
2137 else
2138 printf ("%-17.17s", rtype3);
2139
2140 putchar ('\n');
2141 }
2142 }
2143
2144 free (rels);
2145
2146 return res;
2147 }
2148
2149 static const char *
2150 get_aarch64_dynamic_type (unsigned long type)
2151 {
2152 switch (type)
2153 {
2154 case DT_AARCH64_BTI_PLT: return "AARCH64_BTI_PLT";
2155 case DT_AARCH64_PAC_PLT: return "AARCH64_PAC_PLT";
2156 case DT_AARCH64_VARIANT_PCS: return "AARCH64_VARIANT_PCS";
2157 default:
2158 return NULL;
2159 }
2160 }
2161
2162 static const char *
2163 get_mips_dynamic_type (unsigned long type)
2164 {
2165 switch (type)
2166 {
2167 case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION";
2168 case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP";
2169 case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM";
2170 case DT_MIPS_IVERSION: return "MIPS_IVERSION";
2171 case DT_MIPS_FLAGS: return "MIPS_FLAGS";
2172 case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS";
2173 case DT_MIPS_MSYM: return "MIPS_MSYM";
2174 case DT_MIPS_CONFLICT: return "MIPS_CONFLICT";
2175 case DT_MIPS_LIBLIST: return "MIPS_LIBLIST";
2176 case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO";
2177 case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO";
2178 case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO";
2179 case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO";
2180 case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO";
2181 case DT_MIPS_GOTSYM: return "MIPS_GOTSYM";
2182 case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO";
2183 case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP";
2184 case DT_MIPS_RLD_MAP_REL: return "MIPS_RLD_MAP_REL";
2185 case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS";
2186 case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO";
2187 case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE";
2188 case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO";
2189 case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC";
2190 case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO";
2191 case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM";
2192 case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO";
2193 case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM";
2194 case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO";
2195 case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS";
2196 case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT";
2197 case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
2198 case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX";
2199 case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX";
2200 case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX";
2201 case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX";
2202 case DT_MIPS_OPTIONS: return "MIPS_OPTIONS";
2203 case DT_MIPS_INTERFACE: return "MIPS_INTERFACE";
2204 case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN";
2205 case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE";
2206 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
2207 case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX";
2208 case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE";
2209 case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE";
2210 case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC";
2211 case DT_MIPS_PLTGOT: return "MIPS_PLTGOT";
2212 case DT_MIPS_RWPLT: return "MIPS_RWPLT";
2213 case DT_MIPS_XHASH: return "MIPS_XHASH";
2214 default:
2215 return NULL;
2216 }
2217 }
2218
2219 static const char *
2220 get_sparc64_dynamic_type (unsigned long type)
2221 {
2222 switch (type)
2223 {
2224 case DT_SPARC_REGISTER: return "SPARC_REGISTER";
2225 default:
2226 return NULL;
2227 }
2228 }
2229
2230 static const char *
2231 get_ppc_dynamic_type (unsigned long type)
2232 {
2233 switch (type)
2234 {
2235 case DT_PPC_GOT: return "PPC_GOT";
2236 case DT_PPC_OPT: return "PPC_OPT";
2237 default:
2238 return NULL;
2239 }
2240 }
2241
2242 static const char *
2243 get_ppc64_dynamic_type (unsigned long type)
2244 {
2245 switch (type)
2246 {
2247 case DT_PPC64_GLINK: return "PPC64_GLINK";
2248 case DT_PPC64_OPD: return "PPC64_OPD";
2249 case DT_PPC64_OPDSZ: return "PPC64_OPDSZ";
2250 case DT_PPC64_OPT: return "PPC64_OPT";
2251 default:
2252 return NULL;
2253 }
2254 }
2255
2256 static const char *
2257 get_parisc_dynamic_type (unsigned long type)
2258 {
2259 switch (type)
2260 {
2261 case DT_HP_LOAD_MAP: return "HP_LOAD_MAP";
2262 case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS";
2263 case DT_HP_DLD_HOOK: return "HP_DLD_HOOK";
2264 case DT_HP_UX10_INIT: return "HP_UX10_INIT";
2265 case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ";
2266 case DT_HP_PREINIT: return "HP_PREINIT";
2267 case DT_HP_PREINITSZ: return "HP_PREINITSZ";
2268 case DT_HP_NEEDED: return "HP_NEEDED";
2269 case DT_HP_TIME_STAMP: return "HP_TIME_STAMP";
2270 case DT_HP_CHECKSUM: return "HP_CHECKSUM";
2271 case DT_HP_GST_SIZE: return "HP_GST_SIZE";
2272 case DT_HP_GST_VERSION: return "HP_GST_VERSION";
2273 case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL";
2274 case DT_HP_EPLTREL: return "HP_GST_EPLTREL";
2275 case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ";
2276 case DT_HP_FILTERED: return "HP_FILTERED";
2277 case DT_HP_FILTER_TLS: return "HP_FILTER_TLS";
2278 case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED";
2279 case DT_HP_LAZYLOAD: return "HP_LAZYLOAD";
2280 case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT";
2281 case DT_PLT: return "PLT";
2282 case DT_PLT_SIZE: return "PLT_SIZE";
2283 case DT_DLT: return "DLT";
2284 case DT_DLT_SIZE: return "DLT_SIZE";
2285 default:
2286 return NULL;
2287 }
2288 }
2289
2290 static const char *
2291 get_ia64_dynamic_type (unsigned long type)
2292 {
2293 switch (type)
2294 {
2295 case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE";
2296 case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE";
2297 case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT";
2298 case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS";
2299 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ";
2300 case DT_IA_64_VMS_IDENT: return "VMS_IDENT";
2301 case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT";
2302 case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT";
2303 case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT";
2304 case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT";
2305 case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED";
2306 case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT";
2307 case DT_IA_64_VMS_XLATED: return "VMS_XLATED";
2308 case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE";
2309 case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ";
2310 case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG";
2311 case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG";
2312 case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME";
2313 case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO";
2314 case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET";
2315 case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG";
2316 case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET";
2317 case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG";
2318 case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET";
2319 case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET";
2320 case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF";
2321 case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF";
2322 case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF";
2323 case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET";
2324 case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG";
2325 case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE";
2326 default:
2327 return NULL;
2328 }
2329 }
2330
2331 static const char *
2332 get_solaris_section_type (unsigned long type)
2333 {
2334 switch (type)
2335 {
2336 case 0x6fffffee: return "SUNW_ancillary";
2337 case 0x6fffffef: return "SUNW_capchain";
2338 case 0x6ffffff0: return "SUNW_capinfo";
2339 case 0x6ffffff1: return "SUNW_symsort";
2340 case 0x6ffffff2: return "SUNW_tlssort";
2341 case 0x6ffffff3: return "SUNW_LDYNSYM";
2342 case 0x6ffffff4: return "SUNW_dof";
2343 case 0x6ffffff5: return "SUNW_cap";
2344 case 0x6ffffff6: return "SUNW_SIGNATURE";
2345 case 0x6ffffff7: return "SUNW_ANNOTATE";
2346 case 0x6ffffff8: return "SUNW_DEBUGSTR";
2347 case 0x6ffffff9: return "SUNW_DEBUG";
2348 case 0x6ffffffa: return "SUNW_move";
2349 case 0x6ffffffb: return "SUNW_COMDAT";
2350 case 0x6ffffffc: return "SUNW_syminfo";
2351 case 0x6ffffffd: return "SUNW_verdef";
2352 case 0x6ffffffe: return "SUNW_verneed";
2353 case 0x6fffffff: return "SUNW_versym";
2354 case 0x70000000: return "SPARC_GOTDATA";
2355 default: return NULL;
2356 }
2357 }
2358
2359 static const char *
2360 get_alpha_dynamic_type (unsigned long type)
2361 {
2362 switch (type)
2363 {
2364 case DT_ALPHA_PLTRO: return "ALPHA_PLTRO";
2365 default: return NULL;
2366 }
2367 }
2368
2369 static const char *
2370 get_score_dynamic_type (unsigned long type)
2371 {
2372 switch (type)
2373 {
2374 case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS";
2375 case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO";
2376 case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO";
2377 case DT_SCORE_GOTSYM: return "SCORE_GOTSYM";
2378 case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO";
2379 case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO";
2380 default: return NULL;
2381 }
2382 }
2383
2384 static const char *
2385 get_tic6x_dynamic_type (unsigned long type)
2386 {
2387 switch (type)
2388 {
2389 case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET";
2390 case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET";
2391 case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE";
2392 case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE";
2393 case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
2394 case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX";
2395 default: return NULL;
2396 }
2397 }
2398
2399 static const char *
2400 get_nios2_dynamic_type (unsigned long type)
2401 {
2402 switch (type)
2403 {
2404 case DT_NIOS2_GP: return "NIOS2_GP";
2405 default: return NULL;
2406 }
2407 }
2408
2409 static const char *
2410 get_solaris_dynamic_type (unsigned long type)
2411 {
2412 switch (type)
2413 {
2414 case 0x6000000d: return "SUNW_AUXILIARY";
2415 case 0x6000000e: return "SUNW_RTLDINF";
2416 case 0x6000000f: return "SUNW_FILTER";
2417 case 0x60000010: return "SUNW_CAP";
2418 case 0x60000011: return "SUNW_SYMTAB";
2419 case 0x60000012: return "SUNW_SYMSZ";
2420 case 0x60000013: return "SUNW_SORTENT";
2421 case 0x60000014: return "SUNW_SYMSORT";
2422 case 0x60000015: return "SUNW_SYMSORTSZ";
2423 case 0x60000016: return "SUNW_TLSSORT";
2424 case 0x60000017: return "SUNW_TLSSORTSZ";
2425 case 0x60000018: return "SUNW_CAPINFO";
2426 case 0x60000019: return "SUNW_STRPAD";
2427 case 0x6000001a: return "SUNW_CAPCHAIN";
2428 case 0x6000001b: return "SUNW_LDMACH";
2429 case 0x6000001d: return "SUNW_CAPCHAINENT";
2430 case 0x6000001f: return "SUNW_CAPCHAINSZ";
2431 case 0x60000021: return "SUNW_PARENT";
2432 case 0x60000023: return "SUNW_ASLR";
2433 case 0x60000025: return "SUNW_RELAX";
2434 case 0x60000029: return "SUNW_NXHEAP";
2435 case 0x6000002b: return "SUNW_NXSTACK";
2436
2437 case 0x70000001: return "SPARC_REGISTER";
2438 case 0x7ffffffd: return "AUXILIARY";
2439 case 0x7ffffffe: return "USED";
2440 case 0x7fffffff: return "FILTER";
2441
2442 default: return NULL;
2443 }
2444 }
2445
2446 static const char *
2447 get_riscv_dynamic_type (unsigned long type)
2448 {
2449 switch (type)
2450 {
2451 case DT_RISCV_VARIANT_CC: return "RISCV_VARIANT_CC";
2452 default:
2453 return NULL;
2454 }
2455 }
2456
2457 static const char *
2458 get_dynamic_type (Filedata * filedata, unsigned long type)
2459 {
2460 static char buff[64];
2461
2462 switch (type)
2463 {
2464 case DT_NULL: return "NULL";
2465 case DT_NEEDED: return "NEEDED";
2466 case DT_PLTRELSZ: return "PLTRELSZ";
2467 case DT_PLTGOT: return "PLTGOT";
2468 case DT_HASH: return "HASH";
2469 case DT_STRTAB: return "STRTAB";
2470 case DT_SYMTAB: return "SYMTAB";
2471 case DT_RELA: return "RELA";
2472 case DT_RELASZ: return "RELASZ";
2473 case DT_RELAENT: return "RELAENT";
2474 case DT_STRSZ: return "STRSZ";
2475 case DT_SYMENT: return "SYMENT";
2476 case DT_INIT: return "INIT";
2477 case DT_FINI: return "FINI";
2478 case DT_SONAME: return "SONAME";
2479 case DT_RPATH: return "RPATH";
2480 case DT_SYMBOLIC: return "SYMBOLIC";
2481 case DT_REL: return "REL";
2482 case DT_RELSZ: return "RELSZ";
2483 case DT_RELENT: return "RELENT";
2484 case DT_RELR: return "RELR";
2485 case DT_RELRSZ: return "RELRSZ";
2486 case DT_RELRENT: return "RELRENT";
2487 case DT_PLTREL: return "PLTREL";
2488 case DT_DEBUG: return "DEBUG";
2489 case DT_TEXTREL: return "TEXTREL";
2490 case DT_JMPREL: return "JMPREL";
2491 case DT_BIND_NOW: return "BIND_NOW";
2492 case DT_INIT_ARRAY: return "INIT_ARRAY";
2493 case DT_FINI_ARRAY: return "FINI_ARRAY";
2494 case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ";
2495 case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ";
2496 case DT_RUNPATH: return "RUNPATH";
2497 case DT_FLAGS: return "FLAGS";
2498
2499 case DT_PREINIT_ARRAY: return "PREINIT_ARRAY";
2500 case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ";
2501 case DT_SYMTAB_SHNDX: return "SYMTAB_SHNDX";
2502
2503 case DT_CHECKSUM: return "CHECKSUM";
2504 case DT_PLTPADSZ: return "PLTPADSZ";
2505 case DT_MOVEENT: return "MOVEENT";
2506 case DT_MOVESZ: return "MOVESZ";
2507 case DT_FEATURE: return "FEATURE";
2508 case DT_POSFLAG_1: return "POSFLAG_1";
2509 case DT_SYMINSZ: return "SYMINSZ";
2510 case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */
2511
2512 case DT_ADDRRNGLO: return "ADDRRNGLO";
2513 case DT_CONFIG: return "CONFIG";
2514 case DT_DEPAUDIT: return "DEPAUDIT";
2515 case DT_AUDIT: return "AUDIT";
2516 case DT_PLTPAD: return "PLTPAD";
2517 case DT_MOVETAB: return "MOVETAB";
2518 case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */
2519
2520 case DT_VERSYM: return "VERSYM";
2521
2522 case DT_TLSDESC_GOT: return "TLSDESC_GOT";
2523 case DT_TLSDESC_PLT: return "TLSDESC_PLT";
2524 case DT_RELACOUNT: return "RELACOUNT";
2525 case DT_RELCOUNT: return "RELCOUNT";
2526 case DT_FLAGS_1: return "FLAGS_1";
2527 case DT_VERDEF: return "VERDEF";
2528 case DT_VERDEFNUM: return "VERDEFNUM";
2529 case DT_VERNEED: return "VERNEED";
2530 case DT_VERNEEDNUM: return "VERNEEDNUM";
2531
2532 case DT_AUXILIARY: return "AUXILIARY";
2533 case DT_USED: return "USED";
2534 case DT_FILTER: return "FILTER";
2535
2536 case DT_GNU_PRELINKED: return "GNU_PRELINKED";
2537 case DT_GNU_CONFLICT: return "GNU_CONFLICT";
2538 case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ";
2539 case DT_GNU_LIBLIST: return "GNU_LIBLIST";
2540 case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ";
2541 case DT_GNU_HASH: return "GNU_HASH";
2542 case DT_GNU_FLAGS_1: return "GNU_FLAGS_1";
2543
2544 default:
2545 if ((type >= DT_LOPROC) && (type <= DT_HIPROC))
2546 {
2547 const char * result;
2548
2549 switch (filedata->file_header.e_machine)
2550 {
2551 case EM_AARCH64:
2552 result = get_aarch64_dynamic_type (type);
2553 break;
2554 case EM_MIPS:
2555 case EM_MIPS_RS3_LE:
2556 result = get_mips_dynamic_type (type);
2557 break;
2558 case EM_SPARCV9:
2559 result = get_sparc64_dynamic_type (type);
2560 break;
2561 case EM_PPC:
2562 result = get_ppc_dynamic_type (type);
2563 break;
2564 case EM_PPC64:
2565 result = get_ppc64_dynamic_type (type);
2566 break;
2567 case EM_IA_64:
2568 result = get_ia64_dynamic_type (type);
2569 break;
2570 case EM_ALPHA:
2571 result = get_alpha_dynamic_type (type);
2572 break;
2573 case EM_SCORE:
2574 result = get_score_dynamic_type (type);
2575 break;
2576 case EM_TI_C6000:
2577 result = get_tic6x_dynamic_type (type);
2578 break;
2579 case EM_ALTERA_NIOS2:
2580 result = get_nios2_dynamic_type (type);
2581 break;
2582 case EM_RISCV:
2583 result = get_riscv_dynamic_type (type);
2584 break;
2585 default:
2586 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
2587 result = get_solaris_dynamic_type (type);
2588 else
2589 result = NULL;
2590 break;
2591 }
2592
2593 if (result != NULL)
2594 return result;
2595
2596 snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type);
2597 }
2598 else if (((type >= DT_LOOS) && (type <= DT_HIOS))
2599 || (filedata->file_header.e_machine == EM_PARISC
2600 && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS)))
2601 {
2602 const char * result;
2603
2604 switch (filedata->file_header.e_machine)
2605 {
2606 case EM_PARISC:
2607 result = get_parisc_dynamic_type (type);
2608 break;
2609 case EM_IA_64:
2610 result = get_ia64_dynamic_type (type);
2611 break;
2612 default:
2613 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
2614 result = get_solaris_dynamic_type (type);
2615 else
2616 result = NULL;
2617 break;
2618 }
2619
2620 if (result != NULL)
2621 return result;
2622
2623 snprintf (buff, sizeof (buff), _("Operating System specific: %lx"),
2624 type);
2625 }
2626 else
2627 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type);
2628
2629 return buff;
2630 }
2631 }
2632
2633 static bool get_program_headers (Filedata *);
2634 static bool get_dynamic_section (Filedata *);
2635
2636 static void
2637 locate_dynamic_section (Filedata *filedata)
2638 {
2639 uint64_t dynamic_addr = 0;
2640 uint64_t dynamic_size = 0;
2641
2642 if (filedata->file_header.e_phnum != 0
2643 && get_program_headers (filedata))
2644 {
2645 Elf_Internal_Phdr *segment;
2646 unsigned int i;
2647
2648 for (i = 0, segment = filedata->program_headers;
2649 i < filedata->file_header.e_phnum;
2650 i++, segment++)
2651 {
2652 if (segment->p_type == PT_DYNAMIC)
2653 {
2654 dynamic_addr = segment->p_offset;
2655 dynamic_size = segment->p_filesz;
2656
2657 if (filedata->section_headers != NULL)
2658 {
2659 Elf_Internal_Shdr *sec;
2660
2661 sec = find_section (filedata, ".dynamic");
2662 if (sec != NULL)
2663 {
2664 if (sec->sh_size == 0
2665 || sec->sh_type == SHT_NOBITS)
2666 {
2667 dynamic_addr = 0;
2668 dynamic_size = 0;
2669 }
2670 else
2671 {
2672 dynamic_addr = sec->sh_offset;
2673 dynamic_size = sec->sh_size;
2674 }
2675 }
2676 }
2677
2678 if (dynamic_addr > filedata->file_size
2679 || (dynamic_size > filedata->file_size - dynamic_addr))
2680 {
2681 dynamic_addr = 0;
2682 dynamic_size = 0;
2683 }
2684 break;
2685 }
2686 }
2687 }
2688 filedata->dynamic_addr = dynamic_addr;
2689 filedata->dynamic_size = dynamic_size ? dynamic_size : 1;
2690 }
2691
2692 static bool
2693 is_pie (Filedata *filedata)
2694 {
2695 Elf_Internal_Dyn *entry;
2696
2697 if (filedata->dynamic_size == 0)
2698 locate_dynamic_section (filedata);
2699 if (filedata->dynamic_size <= 1)
2700 return false;
2701
2702 if (!get_dynamic_section (filedata))
2703 return false;
2704
2705 for (entry = filedata->dynamic_section;
2706 entry < filedata->dynamic_section + filedata->dynamic_nent;
2707 entry++)
2708 {
2709 if (entry->d_tag == DT_FLAGS_1)
2710 {
2711 if ((entry->d_un.d_val & DF_1_PIE) != 0)
2712 return true;
2713 break;
2714 }
2715 }
2716 return false;
2717 }
2718
2719 static char *
2720 get_file_type (Filedata *filedata)
2721 {
2722 unsigned e_type = filedata->file_header.e_type;
2723 static char buff[64];
2724
2725 switch (e_type)
2726 {
2727 case ET_NONE: return _("NONE (None)");
2728 case ET_REL: return _("REL (Relocatable file)");
2729 case ET_EXEC: return _("EXEC (Executable file)");
2730 case ET_DYN:
2731 if (is_pie (filedata))
2732 return _("DYN (Position-Independent Executable file)");
2733 else
2734 return _("DYN (Shared object file)");
2735 case ET_CORE: return _("CORE (Core file)");
2736
2737 default:
2738 if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC))
2739 snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type);
2740 else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS))
2741 snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type);
2742 else
2743 snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type);
2744 return buff;
2745 }
2746 }
2747
2748 static char *
2749 get_machine_name (unsigned e_machine)
2750 {
2751 static char buff[64]; /* XXX */
2752
2753 switch (e_machine)
2754 {
2755 /* Please keep this switch table sorted by increasing EM_ value. */
2756 /* 0 */
2757 case EM_NONE: return _("None");
2758 case EM_M32: return "WE32100";
2759 case EM_SPARC: return "Sparc";
2760 case EM_386: return "Intel 80386";
2761 case EM_68K: return "MC68000";
2762 case EM_88K: return "MC88000";
2763 case EM_IAMCU: return "Intel MCU";
2764 case EM_860: return "Intel 80860";
2765 case EM_MIPS: return "MIPS R3000";
2766 case EM_S370: return "IBM System/370";
2767 /* 10 */
2768 case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian";
2769 case EM_OLD_SPARCV9: return "Sparc v9 (old)";
2770 case EM_PARISC: return "HPPA";
2771 case EM_VPP550: return "Fujitsu VPP500";
2772 case EM_SPARC32PLUS: return "Sparc v8+" ;
2773 case EM_960: return "Intel 80960";
2774 case EM_PPC: return "PowerPC";
2775 /* 20 */
2776 case EM_PPC64: return "PowerPC64";
2777 case EM_S390_OLD:
2778 case EM_S390: return "IBM S/390";
2779 case EM_SPU: return "SPU";
2780 /* 30 */
2781 case EM_V800: return "Renesas V850 (using RH850 ABI)";
2782 case EM_FR20: return "Fujitsu FR20";
2783 case EM_RH32: return "TRW RH32";
2784 case EM_MCORE: return "MCORE";
2785 /* 40 */
2786 case EM_ARM: return "ARM";
2787 case EM_OLD_ALPHA: return "Digital Alpha (old)";
2788 case EM_SH: return "Renesas / SuperH SH";
2789 case EM_SPARCV9: return "Sparc v9";
2790 case EM_TRICORE: return "Siemens Tricore";
2791 case EM_ARC: return "ARC";
2792 case EM_H8_300: return "Renesas H8/300";
2793 case EM_H8_300H: return "Renesas H8/300H";
2794 case EM_H8S: return "Renesas H8S";
2795 case EM_H8_500: return "Renesas H8/500";
2796 /* 50 */
2797 case EM_IA_64: return "Intel IA-64";
2798 case EM_MIPS_X: return "Stanford MIPS-X";
2799 case EM_COLDFIRE: return "Motorola Coldfire";
2800 case EM_68HC12: return "Motorola MC68HC12 Microcontroller";
2801 case EM_MMA: return "Fujitsu Multimedia Accelerator";
2802 case EM_PCP: return "Siemens PCP";
2803 case EM_NCPU: return "Sony nCPU embedded RISC processor";
2804 case EM_NDR1: return "Denso NDR1 microprocesspr";
2805 case EM_STARCORE: return "Motorola Star*Core processor";
2806 case EM_ME16: return "Toyota ME16 processor";
2807 /* 60 */
2808 case EM_ST100: return "STMicroelectronics ST100 processor";
2809 case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor";
2810 case EM_X86_64: return "Advanced Micro Devices X86-64";
2811 case EM_PDSP: return "Sony DSP processor";
2812 case EM_PDP10: return "Digital Equipment Corp. PDP-10";
2813 case EM_PDP11: return "Digital Equipment Corp. PDP-11";
2814 case EM_FX66: return "Siemens FX66 microcontroller";
2815 case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
2816 case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller";
2817 case EM_68HC16: return "Motorola MC68HC16 Microcontroller";
2818 /* 70 */
2819 case EM_68HC11: return "Motorola MC68HC11 Microcontroller";
2820 case EM_68HC08: return "Motorola MC68HC08 Microcontroller";
2821 case EM_68HC05: return "Motorola MC68HC05 Microcontroller";
2822 case EM_SVX: return "Silicon Graphics SVx";
2823 case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller";
2824 case EM_VAX: return "Digital VAX";
2825 case EM_CRIS: return "Axis Communications 32-bit embedded processor";
2826 case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu";
2827 case EM_FIREPATH: return "Element 14 64-bit DSP processor";
2828 case EM_ZSP: return "LSI Logic's 16-bit DSP processor";
2829 /* 80 */
2830 case EM_MMIX: return "Donald Knuth's educational 64-bit processor";
2831 case EM_HUANY: return "Harvard Universitys's machine-independent object format";
2832 case EM_PRISM: return "Vitesse Prism";
2833 case EM_AVR_OLD:
2834 case EM_AVR: return "Atmel AVR 8-bit microcontroller";
2835 case EM_CYGNUS_FR30:
2836 case EM_FR30: return "Fujitsu FR30";
2837 case EM_CYGNUS_D10V:
2838 case EM_D10V: return "d10v";
2839 case EM_CYGNUS_D30V:
2840 case EM_D30V: return "d30v";
2841 case EM_CYGNUS_V850:
2842 case EM_V850: return "Renesas V850";
2843 case EM_CYGNUS_M32R:
2844 case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)";
2845 case EM_CYGNUS_MN10300:
2846 case EM_MN10300: return "mn10300";
2847 /* 90 */
2848 case EM_CYGNUS_MN10200:
2849 case EM_MN10200: return "mn10200";
2850 case EM_PJ: return "picoJava";
2851 case EM_OR1K: return "OpenRISC 1000";
2852 case EM_ARC_COMPACT: return "ARCompact";
2853 case EM_XTENSA_OLD:
2854 case EM_XTENSA: return "Tensilica Xtensa Processor";
2855 case EM_VIDEOCORE: return "Alphamosaic VideoCore processor";
2856 case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor";
2857 case EM_NS32K: return "National Semiconductor 32000 series";
2858 case EM_TPC: return "Tenor Network TPC processor";
2859 case EM_SNP1K: return "Trebia SNP 1000 processor";
2860 /* 100 */
2861 case EM_ST200: return "STMicroelectronics ST200 microcontroller";
2862 case EM_IP2K_OLD:
2863 case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers";
2864 case EM_MAX: return "MAX Processor";
2865 case EM_CR: return "National Semiconductor CompactRISC";
2866 case EM_F2MC16: return "Fujitsu F2MC16";
2867 case EM_MSP430: return "Texas Instruments msp430 microcontroller";
2868 case EM_BLACKFIN: return "Analog Devices Blackfin";
2869 case EM_SE_C33: return "S1C33 Family of Seiko Epson processors";
2870 case EM_SEP: return "Sharp embedded microprocessor";
2871 case EM_ARCA: return "Arca RISC microprocessor";
2872 /* 110 */
2873 case EM_UNICORE: return "Unicore";
2874 case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU";
2875 case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor";
2876 case EM_ALTERA_NIOS2: return "Altera Nios II";
2877 case EM_CRX: return "National Semiconductor CRX microprocessor";
2878 case EM_XGATE: return "Motorola XGATE embedded processor";
2879 case EM_C166:
2880 case EM_XC16X: return "Infineon Technologies xc16x";
2881 case EM_M16C: return "Renesas M16C series microprocessors";
2882 case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller";
2883 case EM_CE: return "Freescale Communication Engine RISC core";
2884 /* 120 */
2885 case EM_M32C: return "Renesas M32c";
2886 /* 130 */
2887 case EM_TSK3000: return "Altium TSK3000 core";
2888 case EM_RS08: return "Freescale RS08 embedded processor";
2889 case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor";
2890 case EM_SCORE: return "SUNPLUS S+Core";
2891 case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor";
2892 case EM_VIDEOCORE3: return "Broadcom VideoCore III processor";
2893 case EM_LATTICEMICO32: return "Lattice Mico32";
2894 case EM_SE_C17: return "Seiko Epson C17 family";
2895 /* 140 */
2896 case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family";
2897 case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family";
2898 case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family";
2899 case EM_TI_PRU: return "TI PRU I/O processor";
2900 /* 160 */
2901 case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor";
2902 case EM_CYPRESS_M8C: return "Cypress M8C microprocessor";
2903 case EM_R32C: return "Renesas R32C series microprocessors";
2904 case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family";
2905 case EM_QDSP6: return "QUALCOMM DSP6 Processor";
2906 case EM_8051: return "Intel 8051 and variants";
2907 case EM_STXP7X: return "STMicroelectronics STxP7x family";
2908 case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family";
2909 case EM_ECOG1X: return "Cyan Technology eCOG1X family";
2910 case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
2911 /* 170 */
2912 case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor";
2913 case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor";
2914 case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture";
2915 case EM_RX: return "Renesas RX";
2916 case EM_METAG: return "Imagination Technologies Meta processor architecture";
2917 case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture";
2918 case EM_ECOG16: return "Cyan Technology eCOG16 family";
2919 case EM_CR16:
2920 case EM_MICROBLAZE:
2921 case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze";
2922 case EM_ETPU: return "Freescale Extended Time Processing Unit";
2923 case EM_SLE9X: return "Infineon Technologies SLE9X core";
2924 /* 180 */
2925 case EM_L1OM: return "Intel L1OM";
2926 case EM_K1OM: return "Intel K1OM";
2927 case EM_INTEL182: return "Intel (reserved)";
2928 case EM_AARCH64: return "AArch64";
2929 case EM_ARM184: return "ARM (reserved)";
2930 case EM_AVR32: return "Atmel Corporation 32-bit microprocessor";
2931 case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller";
2932 case EM_TILE64: return "Tilera TILE64 multicore architecture family";
2933 case EM_TILEPRO: return "Tilera TILEPro multicore architecture family";
2934 /* 190 */
2935 case EM_CUDA: return "NVIDIA CUDA architecture";
2936 case EM_TILEGX: return "Tilera TILE-Gx multicore architecture family";
2937 case EM_CLOUDSHIELD: return "CloudShield architecture family";
2938 case EM_COREA_1ST: return "KIPO-KAIST Core-A 1st generation processor family";
2939 case EM_COREA_2ND: return "KIPO-KAIST Core-A 2nd generation processor family";
2940 case EM_ARC_COMPACT2: return "ARCv2";
2941 case EM_OPEN8: return "Open8 8-bit RISC soft processor core";
2942 case EM_RL78: return "Renesas RL78";
2943 case EM_VIDEOCORE5: return "Broadcom VideoCore V processor";
2944 case EM_78K0R: return "Renesas 78K0R";
2945 /* 200 */
2946 case EM_56800EX: return "Freescale 56800EX Digital Signal Controller (DSC)";
2947 case EM_BA1: return "Beyond BA1 CPU architecture";
2948 case EM_BA2: return "Beyond BA2 CPU architecture";
2949 case EM_XCORE: return "XMOS xCORE processor family";
2950 case EM_MCHP_PIC: return "Microchip 8-bit PIC(r) family";
2951 case EM_INTELGT: return "Intel Graphics Technology";
2952 /* 210 */
2953 case EM_KM32: return "KM211 KM32 32-bit processor";
2954 case EM_KMX32: return "KM211 KMX32 32-bit processor";
2955 case EM_KMX16: return "KM211 KMX16 16-bit processor";
2956 case EM_KMX8: return "KM211 KMX8 8-bit processor";
2957 case EM_KVARC: return "KM211 KVARC processor";
2958 case EM_CDP: return "Paneve CDP architecture family";
2959 case EM_COGE: return "Cognitive Smart Memory Processor";
2960 case EM_COOL: return "Bluechip Systems CoolEngine";
2961 case EM_NORC: return "Nanoradio Optimized RISC";
2962 case EM_CSR_KALIMBA: return "CSR Kalimba architecture family";
2963 /* 220 */
2964 case EM_Z80: return "Zilog Z80";
2965 case EM_VISIUM: return "CDS VISIUMcore processor";
2966 case EM_FT32: return "FTDI Chip FT32";
2967 case EM_MOXIE: return "Moxie";
2968 case EM_AMDGPU: return "AMD GPU";
2969 /* 230 (all reserved) */
2970 /* 240 */
2971 case EM_RISCV: return "RISC-V";
2972 case EM_LANAI: return "Lanai 32-bit processor";
2973 case EM_CEVA: return "CEVA Processor Architecture Family";
2974 case EM_CEVA_X2: return "CEVA X2 Processor Family";
2975 case EM_BPF: return "Linux BPF";
2976 case EM_GRAPHCORE_IPU: return "Graphcore Intelligent Processing Unit";
2977 case EM_IMG1: return "Imagination Technologies";
2978 /* 250 */
2979 case EM_NFP: return "Netronome Flow Processor";
2980 case EM_VE: return "NEC Vector Engine";
2981 case EM_CSKY: return "C-SKY";
2982 case EM_ARC_COMPACT3_64: return "Synopsys ARCv3 64-bit processor";
2983 case EM_MCS6502: return "MOS Technology MCS 6502 processor";
2984 case EM_ARC_COMPACT3: return "Synopsys ARCv3 32-bit processor";
2985 case EM_KVX: return "Kalray VLIW core of the MPPA processor family";
2986 case EM_65816: return "WDC 65816/65C816";
2987 case EM_LOONGARCH: return "LoongArch";
2988 case EM_KF32: return "ChipON KungFu32";
2989
2990 /* Large numbers... */
2991 case EM_MT: return "Morpho Techologies MT processor";
2992 case EM_ALPHA: return "Alpha";
2993 case EM_WEBASSEMBLY: return "Web Assembly";
2994 case EM_DLX: return "OpenDLX";
2995 case EM_XSTORMY16: return "Sanyo XStormy16 CPU core";
2996 case EM_IQ2000: return "Vitesse IQ2000";
2997 case EM_M32C_OLD:
2998 case EM_NIOS32: return "Altera Nios";
2999 case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
3000 case EM_ADAPTEVA_EPIPHANY: return "Adapteva EPIPHANY";
3001 case EM_CYGNUS_FRV: return "Fujitsu FR-V";
3002 case EM_S12Z: return "Freescale S12Z";
3003
3004 default:
3005 snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine);
3006 return buff;
3007 }
3008 }
3009
3010 static char *
3011 decode_ARC_machine_flags (char *out, unsigned e_flags, unsigned e_machine)
3012 {
3013 /* ARC has two machine types EM_ARC_COMPACT and EM_ARC_COMPACT2. Some
3014 other compilers don't specify an architecture type in the e_flags, and
3015 instead use EM_ARC_COMPACT for old ARC600, ARC601, and ARC700
3016 architectures, and switch to EM_ARC_COMPACT2 for newer ARCEM and ARCHS
3017 architectures.
3018
3019 Th GNU tools follows this use of EM_ARC_COMPACT and EM_ARC_COMPACT2,
3020 but also sets a specific architecture type in the e_flags field.
3021
3022 However, when decoding the flags we don't worry if we see an
3023 unexpected pairing, for example EM_ARC_COMPACT machine type, with
3024 ARCEM architecture type. */
3025
3026 switch (e_flags & EF_ARC_MACH_MSK)
3027 {
3028 /* We only expect these to occur for EM_ARC_COMPACT2. */
3029 case EF_ARC_CPU_ARCV2EM:
3030 out = stpcpy (out, ", ARC EM");
3031 break;
3032 case EF_ARC_CPU_ARCV2HS:
3033 out = stpcpy (out, ", ARC HS");
3034 break;
3035
3036 /* We only expect these to occur for EM_ARC_COMPACT. */
3037 case E_ARC_MACH_ARC600:
3038 out = stpcpy (out, ", ARC600");
3039 break;
3040 case E_ARC_MACH_ARC601:
3041 out = stpcpy (out, ", ARC601");
3042 break;
3043 case E_ARC_MACH_ARC700:
3044 out = stpcpy (out, ", ARC700");
3045 break;
3046
3047 /* The only times we should end up here are (a) A corrupt ELF, (b) A
3048 new ELF with new architecture being read by an old version of
3049 readelf, or (c) An ELF built with non-GNU compiler that does not
3050 set the architecture in the e_flags. */
3051 default:
3052 if (e_machine == EM_ARC_COMPACT)
3053 out = stpcpy (out, ", Unknown ARCompact");
3054 else
3055 out = stpcpy (out, ", Unknown ARC");
3056 break;
3057 }
3058
3059 switch (e_flags & EF_ARC_OSABI_MSK)
3060 {
3061 case E_ARC_OSABI_ORIG:
3062 out = stpcpy (out, ", (ABI:legacy)");
3063 break;
3064 case E_ARC_OSABI_V2:
3065 out = stpcpy (out, ", (ABI:v2)");
3066 break;
3067 /* Only upstream 3.9+ kernels will support ARCv2 ISA. */
3068 case E_ARC_OSABI_V3:
3069 out = stpcpy (out, ", v3 no-legacy-syscalls ABI");
3070 break;
3071 case E_ARC_OSABI_V4:
3072 out = stpcpy (out, ", v4 ABI");
3073 break;
3074 default:
3075 out = stpcpy (out, ", unrecognised ARC OSABI flag");
3076 break;
3077 }
3078 return out;
3079 }
3080
3081 static char *
3082 decode_ARM_machine_flags (char *out, unsigned e_flags)
3083 {
3084 unsigned eabi;
3085 bool unknown = false;
3086
3087 eabi = EF_ARM_EABI_VERSION (e_flags);
3088 e_flags &= ~ EF_ARM_EABIMASK;
3089
3090 /* Handle "generic" ARM flags. */
3091 if (e_flags & EF_ARM_RELEXEC)
3092 {
3093 out = stpcpy (out, ", relocatable executable");
3094 e_flags &= ~ EF_ARM_RELEXEC;
3095 }
3096
3097 if (e_flags & EF_ARM_PIC)
3098 {
3099 out = stpcpy (out, ", position independent");
3100 e_flags &= ~ EF_ARM_PIC;
3101 }
3102
3103 /* Now handle EABI specific flags. */
3104 switch (eabi)
3105 {
3106 default:
3107 out = stpcpy (out, ", <unrecognized EABI>");
3108 if (e_flags)
3109 unknown = true;
3110 break;
3111
3112 case EF_ARM_EABI_VER1:
3113 out = stpcpy (out, ", Version1 EABI");
3114 while (e_flags)
3115 {
3116 unsigned flag;
3117
3118 /* Process flags one bit at a time. */
3119 flag = e_flags & - e_flags;
3120 e_flags &= ~ flag;
3121
3122 switch (flag)
3123 {
3124 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
3125 out = stpcpy (out, ", sorted symbol tables");
3126 break;
3127
3128 default:
3129 unknown = true;
3130 break;
3131 }
3132 }
3133 break;
3134
3135 case EF_ARM_EABI_VER2:
3136 out = stpcpy (out, ", Version2 EABI");
3137 while (e_flags)
3138 {
3139 unsigned flag;
3140
3141 /* Process flags one bit at a time. */
3142 flag = e_flags & - e_flags;
3143 e_flags &= ~ flag;
3144
3145 switch (flag)
3146 {
3147 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
3148 out = stpcpy (out, ", sorted symbol tables");
3149 break;
3150
3151 case EF_ARM_DYNSYMSUSESEGIDX:
3152 out = stpcpy (out, ", dynamic symbols use segment index");
3153 break;
3154
3155 case EF_ARM_MAPSYMSFIRST:
3156 out = stpcpy (out, ", mapping symbols precede others");
3157 break;
3158
3159 default:
3160 unknown = true;
3161 break;
3162 }
3163 }
3164 break;
3165
3166 case EF_ARM_EABI_VER3:
3167 out = stpcpy (out, ", Version3 EABI");
3168 break;
3169
3170 case EF_ARM_EABI_VER4:
3171 out = stpcpy (out, ", Version4 EABI");
3172 while (e_flags)
3173 {
3174 unsigned flag;
3175
3176 /* Process flags one bit at a time. */
3177 flag = e_flags & - e_flags;
3178 e_flags &= ~ flag;
3179
3180 switch (flag)
3181 {
3182 case EF_ARM_BE8:
3183 out = stpcpy (out, ", BE8");
3184 break;
3185
3186 case EF_ARM_LE8:
3187 out = stpcpy (out, ", LE8");
3188 break;
3189
3190 default:
3191 unknown = true;
3192 break;
3193 }
3194 }
3195 break;
3196
3197 case EF_ARM_EABI_VER5:
3198 out = stpcpy (out, ", Version5 EABI");
3199 while (e_flags)
3200 {
3201 unsigned flag;
3202
3203 /* Process flags one bit at a time. */
3204 flag = e_flags & - e_flags;
3205 e_flags &= ~ flag;
3206
3207 switch (flag)
3208 {
3209 case EF_ARM_BE8:
3210 out = stpcpy (out, ", BE8");
3211 break;
3212
3213 case EF_ARM_LE8:
3214 out = stpcpy (out, ", LE8");
3215 break;
3216
3217 case EF_ARM_ABI_FLOAT_SOFT: /* Conflicts with EF_ARM_SOFT_FLOAT. */
3218 out = stpcpy (out, ", soft-float ABI");
3219 break;
3220
3221 case EF_ARM_ABI_FLOAT_HARD: /* Conflicts with EF_ARM_VFP_FLOAT. */
3222 out = stpcpy (out, ", hard-float ABI");
3223 break;
3224
3225 default:
3226 unknown = true;
3227 break;
3228 }
3229 }
3230 break;
3231
3232 case EF_ARM_EABI_UNKNOWN:
3233 out = stpcpy (out, ", GNU EABI");
3234 while (e_flags)
3235 {
3236 unsigned flag;
3237
3238 /* Process flags one bit at a time. */
3239 flag = e_flags & - e_flags;
3240 e_flags &= ~ flag;
3241
3242 switch (flag)
3243 {
3244 case EF_ARM_INTERWORK:
3245 out = stpcpy (out, ", interworking enabled");
3246 break;
3247
3248 case EF_ARM_APCS_26:
3249 out = stpcpy (out, ", uses APCS/26");
3250 break;
3251
3252 case EF_ARM_APCS_FLOAT:
3253 out = stpcpy (out, ", uses APCS/float");
3254 break;
3255
3256 case EF_ARM_PIC:
3257 out = stpcpy (out, ", position independent");
3258 break;
3259
3260 case EF_ARM_ALIGN8:
3261 out = stpcpy (out, ", 8 bit structure alignment");
3262 break;
3263
3264 case EF_ARM_NEW_ABI:
3265 out = stpcpy (out, ", uses new ABI");
3266 break;
3267
3268 case EF_ARM_OLD_ABI:
3269 out = stpcpy (out, ", uses old ABI");
3270 break;
3271
3272 case EF_ARM_SOFT_FLOAT:
3273 out = stpcpy (out, ", software FP");
3274 break;
3275
3276 case EF_ARM_VFP_FLOAT:
3277 out = stpcpy (out, ", VFP");
3278 break;
3279
3280 case EF_ARM_MAVERICK_FLOAT:
3281 out = stpcpy (out, ", Maverick FP");
3282 break;
3283
3284 default:
3285 unknown = true;
3286 break;
3287 }
3288 }
3289 }
3290
3291 if (unknown)
3292 out = stpcpy (out,_(", <unknown>"));
3293 return out;
3294 }
3295
3296 static char *
3297 decode_AVR_machine_flags (char *out, unsigned e_flags)
3298 {
3299 switch (e_flags & EF_AVR_MACH)
3300 {
3301 case E_AVR_MACH_AVR1:
3302 out = stpcpy (out, ", avr:1");
3303 break;
3304 case E_AVR_MACH_AVR2:
3305 out = stpcpy (out, ", avr:2");
3306 break;
3307 case E_AVR_MACH_AVR25:
3308 out = stpcpy (out, ", avr:25");
3309 break;
3310 case E_AVR_MACH_AVR3:
3311 out = stpcpy (out, ", avr:3");
3312 break;
3313 case E_AVR_MACH_AVR31:
3314 out = stpcpy (out, ", avr:31");
3315 break;
3316 case E_AVR_MACH_AVR35:
3317 out = stpcpy (out, ", avr:35");
3318 break;
3319 case E_AVR_MACH_AVR4:
3320 out = stpcpy (out, ", avr:4");
3321 break;
3322 case E_AVR_MACH_AVR5:
3323 out = stpcpy (out, ", avr:5");
3324 break;
3325 case E_AVR_MACH_AVR51:
3326 out = stpcpy (out, ", avr:51");
3327 break;
3328 case E_AVR_MACH_AVR6:
3329 out = stpcpy (out, ", avr:6");
3330 break;
3331 case E_AVR_MACH_AVRTINY:
3332 out = stpcpy (out, ", avr:100");
3333 break;
3334 case E_AVR_MACH_XMEGA1:
3335 out = stpcpy (out, ", avr:101");
3336 break;
3337 case E_AVR_MACH_XMEGA2:
3338 out = stpcpy (out, ", avr:102");
3339 break;
3340 case E_AVR_MACH_XMEGA3:
3341 out = stpcpy (out, ", avr:103");
3342 break;
3343 case E_AVR_MACH_XMEGA4:
3344 out = stpcpy (out, ", avr:104");
3345 break;
3346 case E_AVR_MACH_XMEGA5:
3347 out = stpcpy (out, ", avr:105");
3348 break;
3349 case E_AVR_MACH_XMEGA6:
3350 out = stpcpy (out, ", avr:106");
3351 break;
3352 case E_AVR_MACH_XMEGA7:
3353 out = stpcpy (out, ", avr:107");
3354 break;
3355 default:
3356 out = stpcpy (out, ", avr:<unknown>");
3357 break;
3358 }
3359
3360 if (e_flags & EF_AVR_LINKRELAX_PREPARED)
3361 out = stpcpy (out, ", link-relax");
3362 return out;
3363 }
3364
3365 static char *
3366 decode_BLACKFIN_machine_flags (char *out, unsigned e_flags)
3367 {
3368 if (e_flags & EF_BFIN_PIC)
3369 out = stpcpy (out, ", PIC");
3370
3371 if (e_flags & EF_BFIN_FDPIC)
3372 out = stpcpy (out, ", FDPIC");
3373
3374 if (e_flags & EF_BFIN_CODE_IN_L1)
3375 out = stpcpy (out, ", code in L1");
3376
3377 if (e_flags & EF_BFIN_DATA_IN_L1)
3378 out = stpcpy (out, ", data in L1");
3379 return out;
3380 }
3381
3382 static char *
3383 decode_FRV_machine_flags (char *out, unsigned e_flags)
3384 {
3385 switch (e_flags & EF_FRV_CPU_MASK)
3386 {
3387 case EF_FRV_CPU_GENERIC:
3388 break;
3389
3390 default:
3391 out = stpcpy (out, ", fr???");
3392 break;
3393
3394 case EF_FRV_CPU_FR300:
3395 out = stpcpy (out, ", fr300");
3396 break;
3397
3398 case EF_FRV_CPU_FR400:
3399 out = stpcpy (out, ", fr400");
3400 break;
3401 case EF_FRV_CPU_FR405:
3402 out = stpcpy (out, ", fr405");
3403 break;
3404
3405 case EF_FRV_CPU_FR450:
3406 out = stpcpy (out, ", fr450");
3407 break;
3408
3409 case EF_FRV_CPU_FR500:
3410 out = stpcpy (out, ", fr500");
3411 break;
3412 case EF_FRV_CPU_FR550:
3413 out = stpcpy (out, ", fr550");
3414 break;
3415
3416 case EF_FRV_CPU_SIMPLE:
3417 out = stpcpy (out, ", simple");
3418 break;
3419 case EF_FRV_CPU_TOMCAT:
3420 out = stpcpy (out, ", tomcat");
3421 break;
3422 }
3423 return out;
3424 }
3425
3426 static char *
3427 decode_IA64_machine_flags (char *out, unsigned e_flags, Filedata *filedata)
3428 {
3429 if ((e_flags & EF_IA_64_ABI64))
3430 out = stpcpy (out, ", 64-bit");
3431 else
3432 out = stpcpy (out, ", 32-bit");
3433 if ((e_flags & EF_IA_64_REDUCEDFP))
3434 out = stpcpy (out, ", reduced fp model");
3435 if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
3436 out = stpcpy (out, ", no function descriptors, constant gp");
3437 else if ((e_flags & EF_IA_64_CONS_GP))
3438 out = stpcpy (out, ", constant gp");
3439 if ((e_flags & EF_IA_64_ABSOLUTE))
3440 out = stpcpy (out, ", absolute");
3441 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
3442 {
3443 if ((e_flags & EF_IA_64_VMS_LINKAGES))
3444 out = stpcpy (out, ", vms_linkages");
3445 switch ((e_flags & EF_IA_64_VMS_COMCOD))
3446 {
3447 case EF_IA_64_VMS_COMCOD_SUCCESS:
3448 break;
3449 case EF_IA_64_VMS_COMCOD_WARNING:
3450 out = stpcpy (out, ", warning");
3451 break;
3452 case EF_IA_64_VMS_COMCOD_ERROR:
3453 out = stpcpy (out, ", error");
3454 break;
3455 case EF_IA_64_VMS_COMCOD_ABORT:
3456 out = stpcpy (out, ", abort");
3457 break;
3458 default:
3459 warn (_("Unrecognised IA64 VMS Command Code: %x\n"),
3460 e_flags & EF_IA_64_VMS_COMCOD);
3461 out = stpcpy (out, ", <unknown>");
3462 }
3463 }
3464 return out;
3465 }
3466
3467 static char *
3468 decode_LOONGARCH_machine_flags (char *out, unsigned int e_flags)
3469 {
3470 if (EF_LOONGARCH_IS_SOFT_FLOAT (e_flags))
3471 out = stpcpy (out, ", SOFT-FLOAT");
3472 else if (EF_LOONGARCH_IS_SINGLE_FLOAT (e_flags))
3473 out = stpcpy (out, ", SINGLE-FLOAT");
3474 else if (EF_LOONGARCH_IS_DOUBLE_FLOAT (e_flags))
3475 out = stpcpy (out, ", DOUBLE-FLOAT");
3476
3477 if (EF_LOONGARCH_IS_OBJ_V0 (e_flags))
3478 out = stpcpy (out, ", OBJ-v0");
3479 else if (EF_LOONGARCH_IS_OBJ_V1 (e_flags))
3480 out = stpcpy (out, ", OBJ-v1");
3481 return out;
3482 }
3483
3484 static char *
3485 decode_M68K_machine_flags (char *out, unsigned int e_flags)
3486 {
3487 if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000)
3488 out = stpcpy (out, ", m68000");
3489 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32)
3490 out = stpcpy (out, ", cpu32");
3491 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO)
3492 out = stpcpy (out, ", fido_a");
3493 else
3494 {
3495 char const *isa = _("unknown");
3496 char const *mac = _("unknown mac");
3497 char const *additional = NULL;
3498
3499 switch (e_flags & EF_M68K_CF_ISA_MASK)
3500 {
3501 case EF_M68K_CF_ISA_A_NODIV:
3502 isa = "A";
3503 additional = ", nodiv";
3504 break;
3505 case EF_M68K_CF_ISA_A:
3506 isa = "A";
3507 break;
3508 case EF_M68K_CF_ISA_A_PLUS:
3509 isa = "A+";
3510 break;
3511 case EF_M68K_CF_ISA_B_NOUSP:
3512 isa = "B";
3513 additional = ", nousp";
3514 break;
3515 case EF_M68K_CF_ISA_B:
3516 isa = "B";
3517 break;
3518 case EF_M68K_CF_ISA_C:
3519 isa = "C";
3520 break;
3521 case EF_M68K_CF_ISA_C_NODIV:
3522 isa = "C";
3523 additional = ", nodiv";
3524 break;
3525 }
3526 out = stpcpy (out, ", cf, isa ");
3527 out = stpcpy (out, isa);
3528 if (additional)
3529 out = stpcpy (out, additional);
3530 if (e_flags & EF_M68K_CF_FLOAT)
3531 out = stpcpy (out, ", float");
3532 switch (e_flags & EF_M68K_CF_MAC_MASK)
3533 {
3534 case 0:
3535 mac = NULL;
3536 break;
3537 case EF_M68K_CF_MAC:
3538 mac = "mac";
3539 break;
3540 case EF_M68K_CF_EMAC:
3541 mac = "emac";
3542 break;
3543 case EF_M68K_CF_EMAC_B:
3544 mac = "emac_b";
3545 break;
3546 }
3547 if (mac)
3548 {
3549 out = stpcpy (out, ", ");
3550 out = stpcpy (out, mac);
3551 }
3552 }
3553 return out;
3554 }
3555
3556 static char *
3557 decode_MeP_machine_flags (char *out, unsigned int e_flags)
3558 {
3559 switch (e_flags & EF_MEP_CPU_MASK)
3560 {
3561 case EF_MEP_CPU_MEP:
3562 out = stpcpy (out, ", generic MeP");
3563 break;
3564 case EF_MEP_CPU_C2:
3565 out = stpcpy (out, ", MeP C2");
3566 break;
3567 case EF_MEP_CPU_C3:
3568 out = stpcpy (out, ", MeP C3");
3569 break;
3570 case EF_MEP_CPU_C4:
3571 out = stpcpy (out, ", MeP C4");
3572 break;
3573 case EF_MEP_CPU_C5:
3574 out = stpcpy (out, ", MeP C5");
3575 break;
3576 case EF_MEP_CPU_H1:
3577 out = stpcpy (out, ", MeP H1");
3578 break;
3579 default:
3580 out = stpcpy (out, _(", <unknown MeP cpu type>"));
3581 break;
3582 }
3583
3584 switch (e_flags & EF_MEP_COP_MASK)
3585 {
3586 case EF_MEP_COP_NONE:
3587 break;
3588 case EF_MEP_COP_AVC:
3589 out = stpcpy (out, ", AVC coprocessor");
3590 break;
3591 case EF_MEP_COP_AVC2:
3592 out = stpcpy (out, ", AVC2 coprocessor");
3593 break;
3594 case EF_MEP_COP_FMAX:
3595 out = stpcpy (out, ", FMAX coprocessor");
3596 break;
3597 case EF_MEP_COP_IVC2:
3598 out = stpcpy (out, ", IVC2 coprocessor");
3599 break;
3600 default:
3601 out = stpcpy (out, _("<unknown MeP copro type>"));
3602 break;
3603 }
3604
3605 if (e_flags & EF_MEP_LIBRARY)
3606 out = stpcpy (out, ", Built for Library");
3607
3608 if (e_flags & EF_MEP_INDEX_MASK)
3609 out += sprintf (out, ", Configuration Index: %#x",
3610 e_flags & EF_MEP_INDEX_MASK);
3611
3612 if (e_flags & ~ EF_MEP_ALL_FLAGS)
3613 out += sprintf (out, _(", unknown flags bits: %#x"),
3614 e_flags & ~ EF_MEP_ALL_FLAGS);
3615 return out;
3616 }
3617
3618 static char *
3619 decode_MIPS_machine_flags (char *out, unsigned int e_flags)
3620 {
3621 if (e_flags & EF_MIPS_NOREORDER)
3622 out = stpcpy (out, ", noreorder");
3623
3624 if (e_flags & EF_MIPS_PIC)
3625 out = stpcpy (out, ", pic");
3626
3627 if (e_flags & EF_MIPS_CPIC)
3628 out = stpcpy (out, ", cpic");
3629
3630 if (e_flags & EF_MIPS_UCODE)
3631 out = stpcpy (out, ", ugen_reserved");
3632
3633 if (e_flags & EF_MIPS_ABI2)
3634 out = stpcpy (out, ", abi2");
3635
3636 if (e_flags & EF_MIPS_OPTIONS_FIRST)
3637 out = stpcpy (out, ", odk first");
3638
3639 if (e_flags & EF_MIPS_32BITMODE)
3640 out = stpcpy (out, ", 32bitmode");
3641
3642 if (e_flags & EF_MIPS_NAN2008)
3643 out = stpcpy (out, ", nan2008");
3644
3645 if (e_flags & EF_MIPS_FP64)
3646 out = stpcpy (out, ", fp64");
3647
3648 switch ((e_flags & EF_MIPS_MACH))
3649 {
3650 case E_MIPS_MACH_3900:
3651 out = stpcpy (out, ", 3900");
3652 break;
3653 case E_MIPS_MACH_4010:
3654 out = stpcpy (out, ", 4010");
3655 break;
3656 case E_MIPS_MACH_4100:
3657 out = stpcpy (out, ", 4100");
3658 break;
3659 case E_MIPS_MACH_4111:
3660 out = stpcpy (out, ", 4111");
3661 break;
3662 case E_MIPS_MACH_4120:
3663 out = stpcpy (out, ", 4120");
3664 break;
3665 case E_MIPS_MACH_4650:
3666 out = stpcpy (out, ", 4650");
3667 break;
3668 case E_MIPS_MACH_5400:
3669 out = stpcpy (out, ", 5400");
3670 break;
3671 case E_MIPS_MACH_5500:
3672 out = stpcpy (out, ", 5500");
3673 break;
3674 case E_MIPS_MACH_5900:
3675 out = stpcpy (out, ", 5900");
3676 break;
3677 case E_MIPS_MACH_SB1:
3678 out = stpcpy (out, ", sb1");
3679 break;
3680 case E_MIPS_MACH_9000:
3681 out = stpcpy (out, ", 9000");
3682 break;
3683 case E_MIPS_MACH_LS2E:
3684 out = stpcpy (out, ", loongson-2e");
3685 break;
3686 case E_MIPS_MACH_LS2F:
3687 out = stpcpy (out, ", loongson-2f");
3688 break;
3689 case E_MIPS_MACH_GS464:
3690 out = stpcpy (out, ", gs464");
3691 break;
3692 case E_MIPS_MACH_GS464E:
3693 out = stpcpy (out, ", gs464e");
3694 break;
3695 case E_MIPS_MACH_GS264E:
3696 out = stpcpy (out, ", gs264e");
3697 break;
3698 case E_MIPS_MACH_OCTEON:
3699 out = stpcpy (out, ", octeon");
3700 break;
3701 case E_MIPS_MACH_OCTEON2:
3702 out = stpcpy (out, ", octeon2");
3703 break;
3704 case E_MIPS_MACH_OCTEON3:
3705 out = stpcpy (out, ", octeon3");
3706 break;
3707 case E_MIPS_MACH_XLR:
3708 out = stpcpy (out, ", xlr");
3709 break;
3710 case E_MIPS_MACH_IAMR2:
3711 out = stpcpy (out, ", interaptiv-mr2");
3712 break;
3713 case E_MIPS_MACH_ALLEGREX:
3714 out = stpcpy (out, ", allegrex");
3715 break;
3716 case 0:
3717 /* We simply ignore the field in this case to avoid confusion:
3718 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
3719 extension. */
3720 break;
3721 default:
3722 out = stpcpy (out, _(", unknown CPU"));
3723 break;
3724 }
3725
3726 switch ((e_flags & EF_MIPS_ABI))
3727 {
3728 case E_MIPS_ABI_O32:
3729 out = stpcpy (out, ", o32");
3730 break;
3731 case E_MIPS_ABI_O64:
3732 out = stpcpy (out, ", o64");
3733 break;
3734 case E_MIPS_ABI_EABI32:
3735 out = stpcpy (out, ", eabi32");
3736 break;
3737 case E_MIPS_ABI_EABI64:
3738 out = stpcpy (out, ", eabi64");
3739 break;
3740 case 0:
3741 /* We simply ignore the field in this case to avoid confusion:
3742 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
3743 This means it is likely to be an o32 file, but not for
3744 sure. */
3745 break;
3746 default:
3747 out = stpcpy (out, _(", unknown ABI"));
3748 break;
3749 }
3750
3751 if (e_flags & EF_MIPS_ARCH_ASE_MDMX)
3752 out = stpcpy (out, ", mdmx");
3753
3754 if (e_flags & EF_MIPS_ARCH_ASE_M16)
3755 out = stpcpy (out, ", mips16");
3756
3757 if (e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
3758 out = stpcpy (out, ", micromips");
3759
3760 switch ((e_flags & EF_MIPS_ARCH))
3761 {
3762 case E_MIPS_ARCH_1:
3763 out = stpcpy (out, ", mips1");
3764 break;
3765 case E_MIPS_ARCH_2:
3766 out = stpcpy (out, ", mips2");
3767 break;
3768 case E_MIPS_ARCH_3:
3769 out = stpcpy (out, ", mips3");
3770 break;
3771 case E_MIPS_ARCH_4:
3772 out = stpcpy (out, ", mips4");
3773 break;
3774 case E_MIPS_ARCH_5:
3775 out = stpcpy (out, ", mips5");
3776 break;
3777 case E_MIPS_ARCH_32:
3778 out = stpcpy (out, ", mips32");
3779 break;
3780 case E_MIPS_ARCH_32R2:
3781 out = stpcpy (out, ", mips32r2");
3782 break;
3783 case E_MIPS_ARCH_32R6:
3784 out = stpcpy (out, ", mips32r6");
3785 break;
3786 case E_MIPS_ARCH_64:
3787 out = stpcpy (out, ", mips64");
3788 break;
3789 case E_MIPS_ARCH_64R2:
3790 out = stpcpy (out, ", mips64r2");
3791 break;
3792 case E_MIPS_ARCH_64R6:
3793 out = stpcpy (out, ", mips64r6");
3794 break;
3795 default:
3796 out = stpcpy (out, _(", unknown ISA"));
3797 break;
3798 }
3799 return out;
3800 }
3801
3802 static char *
3803 decode_MSP430_machine_flags (char *out, unsigned e_flags)
3804 {
3805 out = stpcpy (out, _(": architecture variant: "));
3806 switch (e_flags & EF_MSP430_MACH)
3807 {
3808 case E_MSP430_MACH_MSP430x11:
3809 out = stpcpy (out, "MSP430x11");
3810 break;
3811 case E_MSP430_MACH_MSP430x11x1:
3812 out = stpcpy (out, "MSP430x11x1 ");
3813 break;
3814 case E_MSP430_MACH_MSP430x12:
3815 out = stpcpy (out, "MSP430x12");
3816 break;
3817 case E_MSP430_MACH_MSP430x13:
3818 out = stpcpy (out, "MSP430x13");
3819 break;
3820 case E_MSP430_MACH_MSP430x14:
3821 out = stpcpy (out, "MSP430x14");
3822 break;
3823 case E_MSP430_MACH_MSP430x15:
3824 out = stpcpy (out, "MSP430x15");
3825 break;
3826 case E_MSP430_MACH_MSP430x16:
3827 out = stpcpy (out, "MSP430x16");
3828 break;
3829 case E_MSP430_MACH_MSP430x31:
3830 out = stpcpy (out, "MSP430x31");
3831 break;
3832 case E_MSP430_MACH_MSP430x32:
3833 out = stpcpy (out, "MSP430x32");
3834 break;
3835 case E_MSP430_MACH_MSP430x33:
3836 out = stpcpy (out, "MSP430x33");
3837 break;
3838 case E_MSP430_MACH_MSP430x41:
3839 out = stpcpy (out, "MSP430x41");
3840 break;
3841 case E_MSP430_MACH_MSP430x42:
3842 out = stpcpy (out, "MSP430x42");
3843 break;
3844 case E_MSP430_MACH_MSP430x43:
3845 out = stpcpy (out, "MSP430x43");
3846 break;
3847 case E_MSP430_MACH_MSP430x44:
3848 out = stpcpy (out, "MSP430x44");
3849 break;
3850 case E_MSP430_MACH_MSP430X :
3851 out = stpcpy (out, "MSP430X");
3852 break;
3853 default:
3854 out = stpcpy (out, _(": unknown"));
3855 break;
3856 }
3857
3858 if (e_flags & ~ EF_MSP430_MACH)
3859 out = stpcpy (out, _(": unknown extra flag bits also present"));
3860 return out;
3861 }
3862
3863 static char *
3864 decode_NDS32_machine_flags (char *out, unsigned e_flags)
3865 {
3866 unsigned abi;
3867 unsigned arch;
3868 unsigned config;
3869 unsigned version;
3870 bool has_fpu = false;
3871
3872 static const char *ABI_STRINGS[] =
3873 {
3874 "ABI v0", /* use r5 as return register; only used in N1213HC */
3875 "ABI v1", /* use r0 as return register */
3876 "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */
3877 "ABI v2fp", /* for FPU */
3878 "AABI",
3879 "ABI2 FP+"
3880 };
3881 static const char *VER_STRINGS[] =
3882 {
3883 "Andes ELF V1.3 or older",
3884 "Andes ELF V1.3.1",
3885 "Andes ELF V1.4"
3886 };
3887 static const char *ARCH_STRINGS[] =
3888 {
3889 "",
3890 "Andes Star v1.0",
3891 "Andes Star v2.0",
3892 "Andes Star v3.0",
3893 "Andes Star v3.0m"
3894 };
3895
3896 abi = EF_NDS_ABI & e_flags;
3897 arch = EF_NDS_ARCH & e_flags;
3898 config = EF_NDS_INST & e_flags;
3899 version = EF_NDS32_ELF_VERSION & e_flags;
3900
3901 switch (abi)
3902 {
3903 case E_NDS_ABI_V0:
3904 case E_NDS_ABI_V1:
3905 case E_NDS_ABI_V2:
3906 case E_NDS_ABI_V2FP:
3907 case E_NDS_ABI_AABI:
3908 case E_NDS_ABI_V2FP_PLUS:
3909 /* In case there are holes in the array. */
3910 out += sprintf (out, ", %s", ABI_STRINGS[abi >> EF_NDS_ABI_SHIFT]);
3911 break;
3912
3913 default:
3914 out = stpcpy (out, ", <unrecognized ABI>");
3915 break;
3916 }
3917
3918 switch (version)
3919 {
3920 case E_NDS32_ELF_VER_1_2:
3921 case E_NDS32_ELF_VER_1_3:
3922 case E_NDS32_ELF_VER_1_4:
3923 out += sprintf (out, ", %s", VER_STRINGS[version >> EF_NDS32_ELF_VERSION_SHIFT]);
3924 break;
3925
3926 default:
3927 out = stpcpy (out, ", <unrecognized ELF version number>");
3928 break;
3929 }
3930
3931 if (E_NDS_ABI_V0 == abi)
3932 {
3933 /* OLD ABI; only used in N1213HC, has performance extension 1. */
3934 out = stpcpy (out, ", Andes Star v1.0, N1213HC, MAC, PERF1");
3935 if (arch == E_NDS_ARCH_STAR_V1_0)
3936 out = stpcpy (out, ", 16b"); /* has 16-bit instructions */
3937 return out;
3938 }
3939
3940 switch (arch)
3941 {
3942 case E_NDS_ARCH_STAR_V1_0:
3943 case E_NDS_ARCH_STAR_V2_0:
3944 case E_NDS_ARCH_STAR_V3_0:
3945 case E_NDS_ARCH_STAR_V3_M:
3946 out += sprintf (out, ", %s", ARCH_STRINGS[arch >> EF_NDS_ARCH_SHIFT]);
3947 break;
3948
3949 default:
3950 out = stpcpy (out, ", <unrecognized architecture>");
3951 /* ARCH version determines how the e_flags are interpreted.
3952 If it is unknown, we cannot proceed. */
3953 return out;
3954 }
3955
3956 /* Newer ABI; Now handle architecture specific flags. */
3957 if (arch == E_NDS_ARCH_STAR_V1_0)
3958 {
3959 if (config & E_NDS32_HAS_MFUSR_PC_INST)
3960 out = stpcpy (out, ", MFUSR_PC");
3961
3962 if (!(config & E_NDS32_HAS_NO_MAC_INST))
3963 out = stpcpy (out, ", MAC");
3964
3965 if (config & E_NDS32_HAS_DIV_INST)
3966 out = stpcpy (out, ", DIV");
3967
3968 if (config & E_NDS32_HAS_16BIT_INST)
3969 out = stpcpy (out, ", 16b");
3970 }
3971 else
3972 {
3973 if (config & E_NDS32_HAS_MFUSR_PC_INST)
3974 {
3975 if (version <= E_NDS32_ELF_VER_1_3)
3976 out = stpcpy (out, ", [B8]");
3977 else
3978 out = stpcpy (out, ", EX9");
3979 }
3980
3981 if (config & E_NDS32_HAS_MAC_DX_INST)
3982 out = stpcpy (out, ", MAC_DX");
3983
3984 if (config & E_NDS32_HAS_DIV_DX_INST)
3985 out = stpcpy (out, ", DIV_DX");
3986
3987 if (config & E_NDS32_HAS_16BIT_INST)
3988 {
3989 if (version <= E_NDS32_ELF_VER_1_3)
3990 out = stpcpy (out, ", 16b");
3991 else
3992 out = stpcpy (out, ", IFC");
3993 }
3994 }
3995
3996 if (config & E_NDS32_HAS_EXT_INST)
3997 out = stpcpy (out, ", PERF1");
3998
3999 if (config & E_NDS32_HAS_EXT2_INST)
4000 out = stpcpy (out, ", PERF2");
4001
4002 if (config & E_NDS32_HAS_FPU_INST)
4003 {
4004 has_fpu = true;
4005 out = stpcpy (out, ", FPU_SP");
4006 }
4007
4008 if (config & E_NDS32_HAS_FPU_DP_INST)
4009 {
4010 has_fpu = true;
4011 out = stpcpy (out, ", FPU_DP");
4012 }
4013
4014 if (config & E_NDS32_HAS_FPU_MAC_INST)
4015 {
4016 has_fpu = true;
4017 out = stpcpy (out, ", FPU_MAC");
4018 }
4019
4020 if (has_fpu)
4021 {
4022 switch ((config & E_NDS32_FPU_REG_CONF) >> E_NDS32_FPU_REG_CONF_SHIFT)
4023 {
4024 case E_NDS32_FPU_REG_8SP_4DP:
4025 out = stpcpy (out, ", FPU_REG:8/4");
4026 break;
4027 case E_NDS32_FPU_REG_16SP_8DP:
4028 out = stpcpy (out, ", FPU_REG:16/8");
4029 break;
4030 case E_NDS32_FPU_REG_32SP_16DP:
4031 out = stpcpy (out, ", FPU_REG:32/16");
4032 break;
4033 case E_NDS32_FPU_REG_32SP_32DP:
4034 out = stpcpy (out, ", FPU_REG:32/32");
4035 break;
4036 }
4037 }
4038
4039 if (config & E_NDS32_HAS_AUDIO_INST)
4040 out = stpcpy (out, ", AUDIO");
4041
4042 if (config & E_NDS32_HAS_STRING_INST)
4043 out = stpcpy (out, ", STR");
4044
4045 if (config & E_NDS32_HAS_REDUCED_REGS)
4046 out = stpcpy (out, ", 16REG");
4047
4048 if (config & E_NDS32_HAS_VIDEO_INST)
4049 {
4050 if (version <= E_NDS32_ELF_VER_1_3)
4051 out = stpcpy (out, ", VIDEO");
4052 else
4053 out = stpcpy (out, ", SATURATION");
4054 }
4055
4056 if (config & E_NDS32_HAS_ENCRIPT_INST)
4057 out = stpcpy (out, ", ENCRP");
4058
4059 if (config & E_NDS32_HAS_L2C_INST)
4060 out = stpcpy (out, ", L2C");
4061
4062 return out;
4063 }
4064
4065 static char *
4066 decode_PARISC_machine_flags (char *out, unsigned e_flags)
4067 {
4068 switch (e_flags & EF_PARISC_ARCH)
4069 {
4070 case EFA_PARISC_1_0:
4071 out = stpcpy (out, ", PA-RISC 1.0");
4072 break;
4073 case EFA_PARISC_1_1:
4074 out = stpcpy (out, ", PA-RISC 1.1");
4075 break;
4076 case EFA_PARISC_2_0:
4077 out = stpcpy (out, ", PA-RISC 2.0");
4078 break;
4079 default:
4080 break;
4081 }
4082 if (e_flags & EF_PARISC_TRAPNIL)
4083 out = stpcpy (out, ", trapnil");
4084 if (e_flags & EF_PARISC_EXT)
4085 out = stpcpy (out, ", ext");
4086 if (e_flags & EF_PARISC_LSB)
4087 out = stpcpy (out, ", lsb");
4088 if (e_flags & EF_PARISC_WIDE)
4089 out = stpcpy (out, ", wide");
4090 if (e_flags & EF_PARISC_NO_KABP)
4091 out = stpcpy (out, ", no kabp");
4092 if (e_flags & EF_PARISC_LAZYSWAP)
4093 out = stpcpy (out, ", lazyswap");
4094 return out;
4095 }
4096
4097 static char *
4098 decode_RISCV_machine_flags (char *out, unsigned e_flags)
4099 {
4100 if (e_flags & EF_RISCV_RVC)
4101 out = stpcpy (out, ", RVC");
4102
4103 if (e_flags & EF_RISCV_RVE)
4104 out = stpcpy (out, ", RVE");
4105
4106 if (e_flags & EF_RISCV_TSO)
4107 out = stpcpy (out, ", TSO");
4108
4109 switch (e_flags & EF_RISCV_FLOAT_ABI)
4110 {
4111 case EF_RISCV_FLOAT_ABI_SOFT:
4112 out = stpcpy (out, ", soft-float ABI");
4113 break;
4114
4115 case EF_RISCV_FLOAT_ABI_SINGLE:
4116 out = stpcpy (out, ", single-float ABI");
4117 break;
4118
4119 case EF_RISCV_FLOAT_ABI_DOUBLE:
4120 out = stpcpy (out, ", double-float ABI");
4121 break;
4122
4123 case EF_RISCV_FLOAT_ABI_QUAD:
4124 out = stpcpy (out, ", quad-float ABI");
4125 break;
4126 }
4127 return out;
4128 }
4129
4130 static char *
4131 decode_RL78_machine_flags (char *out, unsigned e_flags)
4132 {
4133 switch (e_flags & E_FLAG_RL78_CPU_MASK)
4134 {
4135 case E_FLAG_RL78_ANY_CPU:
4136 break;
4137 case E_FLAG_RL78_G10:
4138 out = stpcpy (out, ", G10");
4139 break;
4140 case E_FLAG_RL78_G13:
4141 out = stpcpy (out, ", G13");
4142 break;
4143 case E_FLAG_RL78_G14:
4144 out = stpcpy (out, ", G14");
4145 break;
4146 }
4147 if (e_flags & E_FLAG_RL78_64BIT_DOUBLES)
4148 out = stpcpy (out, ", 64-bit doubles");
4149 return out;
4150 }
4151
4152 static char *
4153 decode_RX_machine_flags (char *out, unsigned e_flags)
4154 {
4155 if (e_flags & E_FLAG_RX_64BIT_DOUBLES)
4156 out = stpcpy (out, ", 64-bit doubles");
4157 if (e_flags & E_FLAG_RX_DSP)
4158 out = stpcpy (out, ", dsp");
4159 if (e_flags & E_FLAG_RX_PID)
4160 out = stpcpy (out, ", pid");
4161 if (e_flags & E_FLAG_RX_ABI)
4162 out = stpcpy (out, ", RX ABI");
4163 if (e_flags & E_FLAG_RX_SINSNS_SET)
4164 out = stpcpy (out, (e_flags & E_FLAG_RX_SINSNS_YES
4165 ? ", uses String instructions"
4166 : ", bans String instructions"));
4167 if (e_flags & E_FLAG_RX_V2)
4168 out = stpcpy (out, ", V2");
4169 if (e_flags & E_FLAG_RX_V3)
4170 out = stpcpy (out, ", V3");
4171 return out;
4172 }
4173
4174 static char *
4175 decode_SH_machine_flags (char *out, unsigned e_flags)
4176 {
4177 switch ((e_flags & EF_SH_MACH_MASK))
4178 {
4179 case EF_SH1:
4180 out = stpcpy (out, ", sh1");
4181 break;
4182 case EF_SH2:
4183 out = stpcpy (out, ", sh2");
4184 break;
4185 case EF_SH3:
4186 out = stpcpy (out, ", sh3");
4187 break;
4188 case EF_SH_DSP:
4189 out = stpcpy (out, ", sh-dsp");
4190 break;
4191 case EF_SH3_DSP:
4192 out = stpcpy (out, ", sh3-dsp");
4193 break;
4194 case EF_SH4AL_DSP:
4195 out = stpcpy (out, ", sh4al-dsp");
4196 break;
4197 case EF_SH3E:
4198 out = stpcpy (out, ", sh3e");
4199 break;
4200 case EF_SH4:
4201 out = stpcpy (out, ", sh4");
4202 break;
4203 case EF_SH5:
4204 out = stpcpy (out, ", sh5");
4205 break;
4206 case EF_SH2E:
4207 out = stpcpy (out, ", sh2e");
4208 break;
4209 case EF_SH4A:
4210 out = stpcpy (out, ", sh4a");
4211 break;
4212 case EF_SH2A:
4213 out = stpcpy (out, ", sh2a");
4214 break;
4215 case EF_SH4_NOFPU:
4216 out = stpcpy (out, ", sh4-nofpu");
4217 break;
4218 case EF_SH4A_NOFPU:
4219 out = stpcpy (out, ", sh4a-nofpu");
4220 break;
4221 case EF_SH2A_NOFPU:
4222 out = stpcpy (out, ", sh2a-nofpu");
4223 break;
4224 case EF_SH3_NOMMU:
4225 out = stpcpy (out, ", sh3-nommu");
4226 break;
4227 case EF_SH4_NOMMU_NOFPU:
4228 out = stpcpy (out, ", sh4-nommu-nofpu");
4229 break;
4230 case EF_SH2A_SH4_NOFPU:
4231 out = stpcpy (out, ", sh2a-nofpu-or-sh4-nommu-nofpu");
4232 break;
4233 case EF_SH2A_SH3_NOFPU:
4234 out = stpcpy (out, ", sh2a-nofpu-or-sh3-nommu");
4235 break;
4236 case EF_SH2A_SH4:
4237 out = stpcpy (out, ", sh2a-or-sh4");
4238 break;
4239 case EF_SH2A_SH3E:
4240 out = stpcpy (out, ", sh2a-or-sh3e");
4241 break;
4242 default:
4243 out = stpcpy (out, _(", unknown ISA"));
4244 break;
4245 }
4246
4247 if (e_flags & EF_SH_PIC)
4248 out = stpcpy (out, ", pic");
4249
4250 if (e_flags & EF_SH_FDPIC)
4251 out = stpcpy (out, ", fdpic");
4252 return out;
4253 }
4254
4255 static char *
4256 decode_SPARC_machine_flags (char *out, unsigned e_flags)
4257 {
4258 if (e_flags & EF_SPARC_32PLUS)
4259 out = stpcpy (out, ", v8+");
4260
4261 if (e_flags & EF_SPARC_SUN_US1)
4262 out = stpcpy (out, ", ultrasparcI");
4263
4264 if (e_flags & EF_SPARC_SUN_US3)
4265 out = stpcpy (out, ", ultrasparcIII");
4266
4267 if (e_flags & EF_SPARC_HAL_R1)
4268 out = stpcpy (out, ", halr1");
4269
4270 if (e_flags & EF_SPARC_LEDATA)
4271 out = stpcpy (out, ", ledata");
4272
4273 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO)
4274 out = stpcpy (out, ", tso");
4275
4276 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO)
4277 out = stpcpy (out, ", pso");
4278
4279 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO)
4280 out = stpcpy (out, ", rmo");
4281 return out;
4282 }
4283
4284 static char *
4285 decode_V800_machine_flags (char *out, unsigned int e_flags)
4286 {
4287 if ((e_flags & EF_RH850_ABI) == EF_RH850_ABI)
4288 out = stpcpy (out, ", RH850 ABI");
4289
4290 if (e_flags & EF_V800_850E3)
4291 out = stpcpy (out, ", V3 architecture");
4292
4293 if ((e_flags & (EF_RH850_FPU_DOUBLE | EF_RH850_FPU_SINGLE)) == 0)
4294 out = stpcpy (out, ", FPU not used");
4295
4296 if ((e_flags & (EF_RH850_REGMODE22 | EF_RH850_REGMODE32)) == 0)
4297 out = stpcpy (out, ", regmode: COMMON");
4298
4299 if ((e_flags & (EF_RH850_GP_FIX | EF_RH850_GP_NOFIX)) == 0)
4300 out = stpcpy (out, ", r4 not used");
4301
4302 if ((e_flags & (EF_RH850_EP_FIX | EF_RH850_EP_NOFIX)) == 0)
4303 out = stpcpy (out, ", r30 not used");
4304
4305 if ((e_flags & (EF_RH850_TP_FIX | EF_RH850_TP_NOFIX)) == 0)
4306 out = stpcpy (out, ", r5 not used");
4307
4308 if ((e_flags & (EF_RH850_REG2_RESERVE | EF_RH850_REG2_NORESERVE)) == 0)
4309 out = stpcpy (out, ", r2 not used");
4310
4311 for (e_flags &= 0xFFFF; e_flags; e_flags &= ~ (e_flags & - e_flags))
4312 {
4313 switch (e_flags & - e_flags)
4314 {
4315 case EF_RH850_FPU_DOUBLE:
4316 out = stpcpy (out, ", double precision FPU");
4317 break;
4318 case EF_RH850_FPU_SINGLE:
4319 out = stpcpy (out, ", single precision FPU");
4320 break;
4321 case EF_RH850_REGMODE22:
4322 out = stpcpy (out, ", regmode:22");
4323 break;
4324 case EF_RH850_REGMODE32:
4325 out = stpcpy (out, ", regmode:23");
4326 break;
4327 case EF_RH850_GP_FIX:
4328 out = stpcpy (out, ", r4 fixed");
4329 break;
4330 case EF_RH850_GP_NOFIX:
4331 out = stpcpy (out, ", r4 free");
4332 break;
4333 case EF_RH850_EP_FIX:
4334 out = stpcpy (out, ", r30 fixed");
4335 break;
4336 case EF_RH850_EP_NOFIX:
4337 out = stpcpy (out, ", r30 free");
4338 break;
4339 case EF_RH850_TP_FIX:
4340 out = stpcpy (out, ", r5 fixed");
4341 break;
4342 case EF_RH850_TP_NOFIX:
4343 out = stpcpy (out, ", r5 free");
4344 break;
4345 case EF_RH850_REG2_RESERVE:
4346 out = stpcpy (out, ", r2 fixed");
4347 break;
4348 case EF_RH850_REG2_NORESERVE:
4349 out = stpcpy (out, ", r2 free");
4350 break;
4351 default:
4352 break;
4353 }
4354 }
4355 return out;
4356 }
4357
4358 static char *
4359 decode_V850_machine_flags (char *out, unsigned int e_flags)
4360 {
4361 switch (e_flags & EF_V850_ARCH)
4362 {
4363 case E_V850E3V5_ARCH:
4364 out = stpcpy (out, ", v850e3v5");
4365 break;
4366 case E_V850E2V3_ARCH:
4367 out = stpcpy (out, ", v850e2v3");
4368 break;
4369 case E_V850E2_ARCH:
4370 out = stpcpy (out, ", v850e2");
4371 break;
4372 case E_V850E1_ARCH:
4373 out = stpcpy (out, ", v850e1");
4374 break;
4375 case E_V850E_ARCH:
4376 out = stpcpy (out, ", v850e");
4377 break;
4378 case E_V850_ARCH:
4379 out = stpcpy (out, ", v850");
4380 break;
4381 default:
4382 out = stpcpy (out, _(", unknown v850 architecture variant"));
4383 break;
4384 }
4385 return out;
4386 }
4387
4388 static char *
4389 decode_Z80_machine_flags (char *out, unsigned int e_flags)
4390 {
4391 switch (e_flags & EF_Z80_MACH_MSK)
4392 {
4393 case EF_Z80_MACH_Z80:
4394 out = stpcpy (out, ", Z80");
4395 break;
4396 case EF_Z80_MACH_Z180:
4397 out = stpcpy (out, ", Z180");
4398 break;
4399 case EF_Z80_MACH_R800:
4400 out = stpcpy (out, ", R800");
4401 break;
4402 case EF_Z80_MACH_EZ80_Z80:
4403 out = stpcpy (out, ", EZ80");
4404 break;
4405 case EF_Z80_MACH_EZ80_ADL:
4406 out = stpcpy (out, ", EZ80, ADL");
4407 break;
4408 case EF_Z80_MACH_GBZ80:
4409 out = stpcpy (out, ", GBZ80");
4410 break;
4411 case EF_Z80_MACH_Z80N:
4412 out = stpcpy (out, ", Z80N");
4413 break;
4414 default:
4415 out = stpcpy (out, _(", unknown"));
4416 break;
4417 }
4418 return out;
4419 }
4420
4421 static char *
4422 decode_AMDGPU_machine_flags (char *out, unsigned int e_flags, Filedata *filedata)
4423 {
4424 unsigned char *e_ident = filedata->file_header.e_ident;
4425 unsigned char osabi = e_ident[EI_OSABI];
4426 unsigned char abiversion = e_ident[EI_ABIVERSION];
4427 unsigned int mach;
4428
4429 /* HSA OS ABI v2 used a different encoding, but we don't need to support it,
4430 it has been deprecated for a while.
4431
4432 The PAL, MESA3D and NONE OS ABIs are not properly versioned, at the time
4433 of writing, they use the same flags as HSA v3, so the code below uses that
4434 assumption. */
4435 if (osabi == ELFOSABI_AMDGPU_HSA && abiversion < ELFABIVERSION_AMDGPU_HSA_V3)
4436 return out;
4437
4438 mach = e_flags & EF_AMDGPU_MACH;
4439 switch (mach)
4440 {
4441 #define AMDGPU_CASE(code, string) \
4442 case code: out = stpcpy (out, ", " string); break;
4443 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX600, "gfx600")
4444 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX601, "gfx601")
4445 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX700, "gfx700")
4446 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX701, "gfx701")
4447 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX702, "gfx702")
4448 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX703, "gfx703")
4449 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX704, "gfx704")
4450 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX801, "gfx801")
4451 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX802, "gfx802")
4452 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX803, "gfx803")
4453 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX810, "gfx810")
4454 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX900, "gfx900")
4455 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX902, "gfx902")
4456 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX904, "gfx904")
4457 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX906, "gfx906")
4458 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX908, "gfx908")
4459 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX909, "gfx909")
4460 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX90C, "gfx90c")
4461 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1010, "gfx1010")
4462 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1011, "gfx1011")
4463 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1012, "gfx1012")
4464 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1030, "gfx1030")
4465 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1031, "gfx1031")
4466 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1032, "gfx1032")
4467 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1033, "gfx1033")
4468 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX602, "gfx602")
4469 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX705, "gfx705")
4470 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX805, "gfx805")
4471 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1035, "gfx1035")
4472 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1034, "gfx1034")
4473 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX90A, "gfx90a")
4474 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX940, "gfx940")
4475 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1013, "gfx1013")
4476 AMDGPU_CASE (EF_AMDGPU_MACH_AMDGCN_GFX1036, "gfx1036")
4477 default:
4478 out += sprintf (out, _(", <unknown AMDGPU GPU type: %#x>"), mach);
4479 break;
4480 #undef AMDGPU_CASE
4481 }
4482
4483 e_flags &= ~EF_AMDGPU_MACH;
4484
4485 if ((osabi == ELFOSABI_AMDGPU_HSA
4486 && abiversion == ELFABIVERSION_AMDGPU_HSA_V3)
4487 || osabi != ELFOSABI_AMDGPU_HSA)
4488 {
4489 /* For HSA v3 and other OS ABIs. */
4490 if (e_flags & EF_AMDGPU_FEATURE_XNACK_V3)
4491 {
4492 out = stpcpy (out, ", xnack on");
4493 e_flags &= ~EF_AMDGPU_FEATURE_XNACK_V3;
4494 }
4495
4496 if (e_flags & EF_AMDGPU_FEATURE_SRAMECC_V3)
4497 {
4498 out = stpcpy (out, ", sramecc on");
4499 e_flags &= ~EF_AMDGPU_FEATURE_SRAMECC_V3;
4500 }
4501 }
4502 else
4503 {
4504 /* For HSA v4+. */
4505 int xnack, sramecc;
4506
4507 xnack = e_flags & EF_AMDGPU_FEATURE_XNACK_V4;
4508 switch (xnack)
4509 {
4510 case EF_AMDGPU_FEATURE_XNACK_UNSUPPORTED_V4:
4511 break;
4512
4513 case EF_AMDGPU_FEATURE_XNACK_ANY_V4:
4514 out = stpcpy (out, ", xnack any");
4515 break;
4516
4517 case EF_AMDGPU_FEATURE_XNACK_OFF_V4:
4518 out = stpcpy (out, ", xnack off");
4519 break;
4520
4521 case EF_AMDGPU_FEATURE_XNACK_ON_V4:
4522 out = stpcpy (out, ", xnack on");
4523 break;
4524
4525 default:
4526 out += sprintf (out, _(", <unknown xnack value: %#x>"), xnack);
4527 break;
4528 }
4529
4530 e_flags &= ~EF_AMDGPU_FEATURE_XNACK_V4;
4531
4532 sramecc = e_flags & EF_AMDGPU_FEATURE_SRAMECC_V4;
4533 switch (sramecc)
4534 {
4535 case EF_AMDGPU_FEATURE_SRAMECC_UNSUPPORTED_V4:
4536 break;
4537
4538 case EF_AMDGPU_FEATURE_SRAMECC_ANY_V4:
4539 out = stpcpy (out, ", sramecc any");
4540 break;
4541
4542 case EF_AMDGPU_FEATURE_SRAMECC_OFF_V4:
4543 out = stpcpy (out, ", sramecc off");
4544 break;
4545
4546 case EF_AMDGPU_FEATURE_SRAMECC_ON_V4:
4547 out = stpcpy (out, ", sramecc on");
4548 break;
4549
4550 default:
4551 out += sprintf (out, _(", <unknown sramecc value: %#x>"), sramecc);
4552 break;
4553 }
4554
4555 e_flags &= ~EF_AMDGPU_FEATURE_SRAMECC_V4;
4556 }
4557
4558 if (e_flags != 0)
4559 out += sprintf (out, _(", unknown flags bits: %#x"), e_flags);
4560 return out;
4561 }
4562
4563 static char *
4564 get_machine_flags (Filedata * filedata, unsigned e_flags, unsigned e_machine)
4565 {
4566 static char buf[1024];
4567 char *out = buf;
4568
4569 buf[0] = '\0';
4570
4571 if (e_flags)
4572 {
4573 switch (e_machine)
4574 {
4575 default:
4576 break;
4577
4578 case EM_ARC_COMPACT3:
4579 out = stpcpy (out, ", HS5x");
4580 break;
4581
4582 case EM_ARC_COMPACT3_64:
4583 out = stpcpy (out, ", HS6x");
4584 break;
4585
4586 case EM_ARC_COMPACT2:
4587 case EM_ARC_COMPACT:
4588 out = decode_ARC_machine_flags (out, e_flags, e_machine);
4589 break;
4590
4591 case EM_ARM:
4592 out = decode_ARM_machine_flags (out, e_flags);
4593 break;
4594
4595 case EM_AVR:
4596 out = decode_AVR_machine_flags (out, e_flags);
4597 break;
4598
4599 case EM_BLACKFIN:
4600 out = decode_BLACKFIN_machine_flags (out, e_flags);
4601 break;
4602
4603 case EM_CYGNUS_FRV:
4604 out = decode_FRV_machine_flags (out, e_flags);
4605 break;
4606
4607 case EM_68K:
4608 out = decode_M68K_machine_flags (out, e_flags);
4609 break;
4610
4611 case EM_AMDGPU:
4612 out = decode_AMDGPU_machine_flags (out, e_flags, filedata);
4613 break;
4614
4615 case EM_CYGNUS_MEP:
4616 out = decode_MeP_machine_flags (out, e_flags);
4617 break;
4618
4619 case EM_PPC:
4620 if (e_flags & EF_PPC_EMB)
4621 out = stpcpy (out, ", emb");
4622
4623 if (e_flags & EF_PPC_RELOCATABLE)
4624 out = stpcpy (out, _(", relocatable"));
4625
4626 if (e_flags & EF_PPC_RELOCATABLE_LIB)
4627 out = stpcpy (out, _(", relocatable-lib"));
4628 break;
4629
4630 case EM_PPC64:
4631 if (e_flags & EF_PPC64_ABI)
4632 out += sprintf (out, ", abiv%d", e_flags & EF_PPC64_ABI);
4633 break;
4634
4635 case EM_V800:
4636 out = decode_V800_machine_flags (out, e_flags);
4637 break;
4638
4639 case EM_V850:
4640 case EM_CYGNUS_V850:
4641 out = decode_V850_machine_flags (out, e_flags);
4642 break;
4643
4644 case EM_M32R:
4645 case EM_CYGNUS_M32R:
4646 if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
4647 out = stpcpy (out, ", m32r");
4648 break;
4649
4650 case EM_MIPS:
4651 case EM_MIPS_RS3_LE:
4652 out = decode_MIPS_machine_flags (out, e_flags);
4653 break;
4654
4655 case EM_NDS32:
4656 out = decode_NDS32_machine_flags (out, e_flags);
4657 break;
4658
4659 case EM_NFP:
4660 switch (EF_NFP_MACH (e_flags))
4661 {
4662 case E_NFP_MACH_3200:
4663 out = stpcpy (out, ", NFP-32xx");
4664 break;
4665 case E_NFP_MACH_6000:
4666 out = stpcpy (out, ", NFP-6xxx");
4667 break;
4668 }
4669 break;
4670
4671 case EM_RISCV:
4672 out = decode_RISCV_machine_flags (out, e_flags);
4673 break;
4674
4675 case EM_SH:
4676 out = decode_SH_machine_flags (out, e_flags);
4677 break;
4678
4679 case EM_OR1K:
4680 if (e_flags & EF_OR1K_NODELAY)
4681 out = stpcpy (out, ", no delay");
4682 break;
4683
4684 case EM_BPF:
4685 out += sprintf (out, ", CPU Version: %u", e_flags & EF_BPF_CPUVER);
4686 break;
4687
4688 case EM_SPARCV9:
4689 out = decode_SPARC_machine_flags (out, e_flags);
4690 break;
4691
4692 case EM_PARISC:
4693 out = decode_PARISC_machine_flags (out, e_flags);
4694 break;
4695
4696 case EM_PJ:
4697 case EM_PJ_OLD:
4698 if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS)
4699 out = stpcpy (out, ", new calling convention");
4700
4701 if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS)
4702 out = stpcpy (out, ", gnu calling convention");
4703 break;
4704
4705 case EM_IA_64:
4706 out = decode_IA64_machine_flags (out, e_flags, filedata);
4707 break;
4708
4709 case EM_VAX:
4710 if ((e_flags & EF_VAX_NONPIC))
4711 out = stpcpy (out, ", non-PIC");
4712 if ((e_flags & EF_VAX_DFLOAT))
4713 out = stpcpy (out, ", D-Float");
4714 if ((e_flags & EF_VAX_GFLOAT))
4715 out = stpcpy (out, ", G-Float");
4716 break;
4717
4718 case EM_VISIUM:
4719 if (e_flags & EF_VISIUM_ARCH_MCM)
4720 out = stpcpy (out, ", mcm");
4721 else if (e_flags & EF_VISIUM_ARCH_MCM24)
4722 out = stpcpy (out, ", mcm24");
4723 if (e_flags & EF_VISIUM_ARCH_GR6)
4724 out = stpcpy (out, ", gr6");
4725 break;
4726
4727 case EM_RL78:
4728 out = decode_RL78_machine_flags (out, e_flags);
4729 break;
4730
4731 case EM_RX:
4732 out = decode_RX_machine_flags (out, e_flags);
4733 break;
4734
4735 case EM_S390:
4736 if (e_flags & EF_S390_HIGH_GPRS)
4737 out = stpcpy (out, ", highgprs");
4738 break;
4739
4740 case EM_TI_C6000:
4741 if ((e_flags & EF_C6000_REL))
4742 out = stpcpy (out, ", relocatable module");
4743 break;
4744
4745 case EM_KVX:
4746 if ((e_flags & (ELF_KVX_CORE_MAJOR_MASK | ELF_KVX_CORE_MINOR_MASK)) == ELF_KVX_CORE_KV3_1)
4747 strcat (buf, ", Kalray VLIW kv3-1");
4748 else if ((e_flags & (ELF_KVX_CORE_MAJOR_MASK | ELF_KVX_CORE_MINOR_MASK)) == ELF_KVX_CORE_KV3_2)
4749 strcat (buf, ", Kalray VLIW kv3-2");
4750 else if ((e_flags & (ELF_KVX_CORE_MAJOR_MASK | ELF_KVX_CORE_MINOR_MASK)) == ELF_KVX_CORE_KV4_1)
4751 strcat (buf, ", Kalray VLIW kv4-1");
4752 else
4753 strcat (buf, ", unknown KVX MPPA");
4754 break;
4755
4756 case EM_MSP430:
4757 out = decode_MSP430_machine_flags (out, e_flags);
4758 break;
4759
4760 case EM_Z80:
4761 out = decode_Z80_machine_flags (out, e_flags);
4762 break;
4763
4764 case EM_LOONGARCH:
4765 out = decode_LOONGARCH_machine_flags (out, e_flags);
4766 break;
4767 }
4768 }
4769
4770 return buf;
4771 }
4772
4773 static const char *
4774 get_osabi_name (Filedata * filedata, unsigned int osabi)
4775 {
4776 static char buff[32];
4777
4778 switch (osabi)
4779 {
4780 case ELFOSABI_NONE: return "UNIX - System V";
4781 case ELFOSABI_HPUX: return "UNIX - HP-UX";
4782 case ELFOSABI_NETBSD: return "UNIX - NetBSD";
4783 case ELFOSABI_GNU: return "UNIX - GNU";
4784 case ELFOSABI_SOLARIS: return "UNIX - Solaris";
4785 case ELFOSABI_AIX: return "UNIX - AIX";
4786 case ELFOSABI_IRIX: return "UNIX - IRIX";
4787 case ELFOSABI_FREEBSD: return "UNIX - FreeBSD";
4788 case ELFOSABI_TRU64: return "UNIX - TRU64";
4789 case ELFOSABI_MODESTO: return "Novell - Modesto";
4790 case ELFOSABI_OPENBSD: return "UNIX - OpenBSD";
4791 case ELFOSABI_OPENVMS: return "VMS - OpenVMS";
4792 case ELFOSABI_NSK: return "HP - Non-Stop Kernel";
4793 case ELFOSABI_AROS: return "AROS";
4794 case ELFOSABI_FENIXOS: return "FenixOS";
4795 case ELFOSABI_CLOUDABI: return "Nuxi CloudABI";
4796 case ELFOSABI_OPENVOS: return "Stratus Technologies OpenVOS";
4797 default:
4798 if (osabi >= 64)
4799 switch (filedata->file_header.e_machine)
4800 {
4801 case EM_AMDGPU:
4802 switch (osabi)
4803 {
4804 case ELFOSABI_AMDGPU_HSA: return "AMD HSA";
4805 case ELFOSABI_AMDGPU_PAL: return "AMD PAL";
4806 case ELFOSABI_AMDGPU_MESA3D: return "AMD Mesa3D";
4807 default:
4808 break;
4809 }
4810 break;
4811
4812 case EM_ARM:
4813 switch (osabi)
4814 {
4815 case ELFOSABI_ARM: return "ARM";
4816 case ELFOSABI_ARM_FDPIC: return "ARM FDPIC";
4817 default:
4818 break;
4819 }
4820 break;
4821
4822 case EM_MSP430:
4823 case EM_MSP430_OLD:
4824 case EM_VISIUM:
4825 switch (osabi)
4826 {
4827 case ELFOSABI_STANDALONE: return _("Standalone App");
4828 default:
4829 break;
4830 }
4831 break;
4832
4833 case EM_TI_C6000:
4834 switch (osabi)
4835 {
4836 case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000");
4837 case ELFOSABI_C6000_LINUX: return "Linux C6000";
4838 default:
4839 break;
4840 }
4841 break;
4842
4843 default:
4844 break;
4845 }
4846 snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi);
4847 return buff;
4848 }
4849 }
4850
4851 static const char *
4852 get_aarch64_segment_type (unsigned long type)
4853 {
4854 switch (type)
4855 {
4856 case PT_AARCH64_ARCHEXT: return "AARCH64_ARCHEXT";
4857 case PT_AARCH64_MEMTAG_MTE: return "AARCH64_MEMTAG_MTE";
4858 default: return NULL;
4859 }
4860 }
4861
4862 static const char *
4863 get_arm_segment_type (unsigned long type)
4864 {
4865 switch (type)
4866 {
4867 case PT_ARM_EXIDX: return "EXIDX";
4868 default: return NULL;
4869 }
4870 }
4871
4872 static const char *
4873 get_s390_segment_type (unsigned long type)
4874 {
4875 switch (type)
4876 {
4877 case PT_S390_PGSTE: return "S390_PGSTE";
4878 default: return NULL;
4879 }
4880 }
4881
4882 static const char *
4883 get_mips_segment_type (unsigned long type)
4884 {
4885 switch (type)
4886 {
4887 case PT_MIPS_REGINFO: return "REGINFO";
4888 case PT_MIPS_RTPROC: return "RTPROC";
4889 case PT_MIPS_OPTIONS: return "OPTIONS";
4890 case PT_MIPS_ABIFLAGS: return "ABIFLAGS";
4891 default: return NULL;
4892 }
4893 }
4894
4895 static const char *
4896 get_parisc_segment_type (unsigned long type)
4897 {
4898 switch (type)
4899 {
4900 case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
4901 case PT_PARISC_UNWIND: return "PARISC_UNWIND";
4902 case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
4903 default: return NULL;
4904 }
4905 }
4906
4907 static const char *
4908 get_ia64_segment_type (unsigned long type)
4909 {
4910 switch (type)
4911 {
4912 case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT";
4913 case PT_IA_64_UNWIND: return "IA_64_UNWIND";
4914 default: return NULL;
4915 }
4916 }
4917
4918 static const char *
4919 get_tic6x_segment_type (unsigned long type)
4920 {
4921 switch (type)
4922 {
4923 case PT_C6000_PHATTR: return "C6000_PHATTR";
4924 default: return NULL;
4925 }
4926 }
4927
4928 static const char *
4929 get_riscv_segment_type (unsigned long type)
4930 {
4931 switch (type)
4932 {
4933 case PT_RISCV_ATTRIBUTES: return "RISCV_ATTRIBUTES";
4934 default: return NULL;
4935 }
4936 }
4937
4938 static const char *
4939 get_hpux_segment_type (unsigned long type, unsigned e_machine)
4940 {
4941 if (e_machine == EM_PARISC)
4942 switch (type)
4943 {
4944 case PT_HP_TLS: return "HP_TLS";
4945 case PT_HP_CORE_NONE: return "HP_CORE_NONE";
4946 case PT_HP_CORE_VERSION: return "HP_CORE_VERSION";
4947 case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL";
4948 case PT_HP_CORE_COMM: return "HP_CORE_COMM";
4949 case PT_HP_CORE_PROC: return "HP_CORE_PROC";
4950 case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE";
4951 case PT_HP_CORE_STACK: return "HP_CORE_STACK";
4952 case PT_HP_CORE_SHM: return "HP_CORE_SHM";
4953 case PT_HP_CORE_MMF: return "HP_CORE_MMF";
4954 case PT_HP_PARALLEL: return "HP_PARALLEL";
4955 case PT_HP_FASTBIND: return "HP_FASTBIND";
4956 case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT";
4957 case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT";
4958 case PT_HP_STACK: return "HP_STACK";
4959 case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
4960 default: return NULL;
4961 }
4962
4963 if (e_machine == EM_IA_64)
4964 switch (type)
4965 {
4966 case PT_HP_TLS: return "HP_TLS";
4967 case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT";
4968 case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT";
4969 case PT_IA_64_HP_STACK: return "HP_STACK";
4970 default: return NULL;
4971 }
4972
4973 return NULL;
4974 }
4975
4976 static const char *
4977 get_solaris_segment_type (unsigned long type)
4978 {
4979 switch (type)
4980 {
4981 case 0x6464e550: return "PT_SUNW_UNWIND";
4982 case 0x6474e550: return "PT_SUNW_EH_FRAME";
4983 case 0x6ffffff7: return "PT_LOSUNW";
4984 case 0x6ffffffa: return "PT_SUNWBSS";
4985 case 0x6ffffffb: return "PT_SUNWSTACK";
4986 case 0x6ffffffc: return "PT_SUNWDTRACE";
4987 case 0x6ffffffd: return "PT_SUNWCAP";
4988 case 0x6fffffff: return "PT_HISUNW";
4989 default: return NULL;
4990 }
4991 }
4992
4993 static const char *
4994 get_segment_type (Filedata * filedata, unsigned long p_type)
4995 {
4996 static char buff[32];
4997
4998 switch (p_type)
4999 {
5000 case PT_NULL: return "NULL";
5001 case PT_LOAD: return "LOAD";
5002 case PT_DYNAMIC: return "DYNAMIC";
5003 case PT_INTERP: return "INTERP";
5004 case PT_NOTE: return "NOTE";
5005 case PT_SHLIB: return "SHLIB";
5006 case PT_PHDR: return "PHDR";
5007 case PT_TLS: return "TLS";
5008 case PT_GNU_EH_FRAME: return "GNU_EH_FRAME";
5009 case PT_GNU_STACK: return "GNU_STACK";
5010 case PT_GNU_RELRO: return "GNU_RELRO";
5011 case PT_GNU_PROPERTY: return "GNU_PROPERTY";
5012 case PT_GNU_SFRAME: return "GNU_SFRAME";
5013
5014 case PT_OPENBSD_MUTABLE: return "OPENBSD_MUTABLE";
5015 case PT_OPENBSD_RANDOMIZE: return "OPENBSD_RANDOMIZE";
5016 case PT_OPENBSD_WXNEEDED: return "OPENBSD_WXNEEDED";
5017 case PT_OPENBSD_BOOTDATA: return "OPENBSD_BOOTDATA";
5018
5019 default:
5020 if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
5021 {
5022 const char * result;
5023
5024 switch (filedata->file_header.e_machine)
5025 {
5026 case EM_AARCH64:
5027 result = get_aarch64_segment_type (p_type);
5028 break;
5029 case EM_ARM:
5030 result = get_arm_segment_type (p_type);
5031 break;
5032 case EM_MIPS:
5033 case EM_MIPS_RS3_LE:
5034 result = get_mips_segment_type (p_type);
5035 break;
5036 case EM_PARISC:
5037 result = get_parisc_segment_type (p_type);
5038 break;
5039 case EM_IA_64:
5040 result = get_ia64_segment_type (p_type);
5041 break;
5042 case EM_TI_C6000:
5043 result = get_tic6x_segment_type (p_type);
5044 break;
5045 case EM_S390:
5046 case EM_S390_OLD:
5047 result = get_s390_segment_type (p_type);
5048 break;
5049 case EM_RISCV:
5050 result = get_riscv_segment_type (p_type);
5051 break;
5052 default:
5053 result = NULL;
5054 break;
5055 }
5056
5057 if (result != NULL)
5058 return result;
5059
5060 sprintf (buff, "LOPROC+%#lx", p_type - PT_LOPROC);
5061 }
5062 else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS))
5063 {
5064 const char * result = NULL;
5065
5066 switch (filedata->file_header.e_ident[EI_OSABI])
5067 {
5068 case ELFOSABI_GNU:
5069 case ELFOSABI_FREEBSD:
5070 if (p_type >= PT_GNU_MBIND_LO && p_type <= PT_GNU_MBIND_HI)
5071 {
5072 sprintf (buff, "GNU_MBIND+%#lx", p_type - PT_GNU_MBIND_LO);
5073 result = buff;
5074 }
5075 break;
5076 case ELFOSABI_HPUX:
5077 result = get_hpux_segment_type (p_type,
5078 filedata->file_header.e_machine);
5079 break;
5080 case ELFOSABI_SOLARIS:
5081 result = get_solaris_segment_type (p_type);
5082 break;
5083 default:
5084 break;
5085 }
5086 if (result != NULL)
5087 return result;
5088
5089 sprintf (buff, "LOOS+%#lx", p_type - PT_LOOS);
5090 }
5091 else
5092 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type);
5093
5094 return buff;
5095 }
5096 }
5097
5098 static const char *
5099 get_arc_section_type_name (unsigned int sh_type)
5100 {
5101 switch (sh_type)
5102 {
5103 case SHT_ARC_ATTRIBUTES: return "ARC_ATTRIBUTES";
5104 default:
5105 break;
5106 }
5107 return NULL;
5108 }
5109
5110 static const char *
5111 get_mips_section_type_name (unsigned int sh_type)
5112 {
5113 switch (sh_type)
5114 {
5115 case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST";
5116 case SHT_MIPS_MSYM: return "MIPS_MSYM";
5117 case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT";
5118 case SHT_MIPS_GPTAB: return "MIPS_GPTAB";
5119 case SHT_MIPS_UCODE: return "MIPS_UCODE";
5120 case SHT_MIPS_DEBUG: return "MIPS_DEBUG";
5121 case SHT_MIPS_REGINFO: return "MIPS_REGINFO";
5122 case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE";
5123 case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM";
5124 case SHT_MIPS_RELD: return "MIPS_RELD";
5125 case SHT_MIPS_IFACE: return "MIPS_IFACE";
5126 case SHT_MIPS_CONTENT: return "MIPS_CONTENT";
5127 case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS";
5128 case SHT_MIPS_SHDR: return "MIPS_SHDR";
5129 case SHT_MIPS_FDESC: return "MIPS_FDESC";
5130 case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM";
5131 case SHT_MIPS_DENSE: return "MIPS_DENSE";
5132 case SHT_MIPS_PDESC: return "MIPS_PDESC";
5133 case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM";
5134 case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM";
5135 case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM";
5136 case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR";
5137 case SHT_MIPS_LINE: return "MIPS_LINE";
5138 case SHT_MIPS_RFDESC: return "MIPS_RFDESC";
5139 case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM";
5140 case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST";
5141 case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS";
5142 case SHT_MIPS_DWARF: return "MIPS_DWARF";
5143 case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL";
5144 case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
5145 case SHT_MIPS_EVENTS: return "MIPS_EVENTS";
5146 case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE";
5147 case SHT_MIPS_PIXIE: return "MIPS_PIXIE";
5148 case SHT_MIPS_XLATE: return "MIPS_XLATE";
5149 case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG";
5150 case SHT_MIPS_WHIRL: return "MIPS_WHIRL";
5151 case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION";
5152 case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD";
5153 case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION";
5154 case SHT_MIPS_ABIFLAGS: return "MIPS_ABIFLAGS";
5155 case SHT_MIPS_XHASH: return "MIPS_XHASH";
5156 default:
5157 break;
5158 }
5159 return NULL;
5160 }
5161
5162 static const char *
5163 get_parisc_section_type_name (unsigned int sh_type)
5164 {
5165 switch (sh_type)
5166 {
5167 case SHT_PARISC_EXT: return "PARISC_EXT";
5168 case SHT_PARISC_UNWIND: return "PARISC_UNWIND";
5169 case SHT_PARISC_DOC: return "PARISC_DOC";
5170 case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
5171 case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
5172 case SHT_PARISC_STUBS: return "PARISC_STUBS";
5173 case SHT_PARISC_DLKM: return "PARISC_DLKM";
5174 default: return NULL;
5175 }
5176 }
5177
5178 static const char *
5179 get_ia64_section_type_name (Filedata * filedata, unsigned int sh_type)
5180 {
5181 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
5182 if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG)
5183 return get_osabi_name (filedata, (sh_type & 0x00FF0000) >> 16);
5184
5185 switch (sh_type)
5186 {
5187 case SHT_IA_64_EXT: return "IA_64_EXT";
5188 case SHT_IA_64_UNWIND: return "IA_64_UNWIND";
5189 case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT";
5190 case SHT_IA_64_VMS_TRACE: return "VMS_TRACE";
5191 case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES";
5192 case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG";
5193 case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR";
5194 case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES";
5195 case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR";
5196 case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP";
5197 default:
5198 break;
5199 }
5200 return NULL;
5201 }
5202
5203 static const char *
5204 get_x86_64_section_type_name (unsigned int sh_type)
5205 {
5206 switch (sh_type)
5207 {
5208 case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
5209 default: return NULL;
5210 }
5211 }
5212
5213 static const char *
5214 get_aarch64_section_type_name (unsigned int sh_type)
5215 {
5216 switch (sh_type)
5217 {
5218 case SHT_AARCH64_ATTRIBUTES: return "AARCH64_ATTRIBUTES";
5219 default: return NULL;
5220 }
5221 }
5222
5223 static const char *
5224 get_arm_section_type_name (unsigned int sh_type)
5225 {
5226 switch (sh_type)
5227 {
5228 case SHT_ARM_EXIDX: return "ARM_EXIDX";
5229 case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP";
5230 case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES";
5231 case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY";
5232 case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION";
5233 default: return NULL;
5234 }
5235 }
5236
5237 static const char *
5238 get_tic6x_section_type_name (unsigned int sh_type)
5239 {
5240 switch (sh_type)
5241 {
5242 case SHT_C6000_UNWIND: return "C6000_UNWIND";
5243 case SHT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
5244 case SHT_C6000_ATTRIBUTES: return "C6000_ATTRIBUTES";
5245 case SHT_TI_ICODE: return "TI_ICODE";
5246 case SHT_TI_XREF: return "TI_XREF";
5247 case SHT_TI_HANDLER: return "TI_HANDLER";
5248 case SHT_TI_INITINFO: return "TI_INITINFO";
5249 case SHT_TI_PHATTRS: return "TI_PHATTRS";
5250 default: return NULL;
5251 }
5252 }
5253
5254 static const char *
5255 get_msp430_section_type_name (unsigned int sh_type)
5256 {
5257 switch (sh_type)
5258 {
5259 case SHT_MSP430_SEC_FLAGS: return "MSP430_SEC_FLAGS";
5260 case SHT_MSP430_SYM_ALIASES: return "MSP430_SYM_ALIASES";
5261 case SHT_MSP430_ATTRIBUTES: return "MSP430_ATTRIBUTES";
5262 default: return NULL;
5263 }
5264 }
5265
5266 static const char *
5267 get_nfp_section_type_name (unsigned int sh_type)
5268 {
5269 switch (sh_type)
5270 {
5271 case SHT_NFP_MECONFIG: return "NFP_MECONFIG";
5272 case SHT_NFP_INITREG: return "NFP_INITREG";
5273 case SHT_NFP_UDEBUG: return "NFP_UDEBUG";
5274 default: return NULL;
5275 }
5276 }
5277
5278 static const char *
5279 get_v850_section_type_name (unsigned int sh_type)
5280 {
5281 switch (sh_type)
5282 {
5283 case SHT_V850_SCOMMON: return "V850 Small Common";
5284 case SHT_V850_TCOMMON: return "V850 Tiny Common";
5285 case SHT_V850_ZCOMMON: return "V850 Zero Common";
5286 case SHT_RENESAS_IOP: return "RENESAS IOP";
5287 case SHT_RENESAS_INFO: return "RENESAS INFO";
5288 default: return NULL;
5289 }
5290 }
5291
5292 static const char *
5293 get_riscv_section_type_name (unsigned int sh_type)
5294 {
5295 switch (sh_type)
5296 {
5297 case SHT_RISCV_ATTRIBUTES: return "RISCV_ATTRIBUTES";
5298 default: return NULL;
5299 }
5300 }
5301
5302 static const char *
5303 get_csky_section_type_name (unsigned int sh_type)
5304 {
5305 switch (sh_type)
5306 {
5307 case SHT_CSKY_ATTRIBUTES: return "CSKY_ATTRIBUTES";
5308 default: return NULL;
5309 }
5310 }
5311
5312 static const char *
5313 get_section_type_name (Filedata * filedata, unsigned int sh_type)
5314 {
5315 static char buff[32];
5316 const char * result;
5317
5318 switch (sh_type)
5319 {
5320 case SHT_NULL: return "NULL";
5321 case SHT_PROGBITS: return "PROGBITS";
5322 case SHT_SYMTAB: return "SYMTAB";
5323 case SHT_STRTAB: return "STRTAB";
5324 case SHT_RELA: return "RELA";
5325 case SHT_RELR: return "RELR";
5326 case SHT_HASH: return "HASH";
5327 case SHT_DYNAMIC: return "DYNAMIC";
5328 case SHT_NOTE: return "NOTE";
5329 case SHT_NOBITS: return "NOBITS";
5330 case SHT_REL: return "REL";
5331 case SHT_SHLIB: return "SHLIB";
5332 case SHT_DYNSYM: return "DYNSYM";
5333 case SHT_INIT_ARRAY: return "INIT_ARRAY";
5334 case SHT_FINI_ARRAY: return "FINI_ARRAY";
5335 case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY";
5336 case SHT_GNU_HASH: return "GNU_HASH";
5337 case SHT_GROUP: return "GROUP";
5338 case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICES";
5339 case SHT_GNU_verdef: return "VERDEF";
5340 case SHT_GNU_verneed: return "VERNEED";
5341 case SHT_GNU_versym: return "VERSYM";
5342 case 0x6ffffff0: return "VERSYM";
5343 case 0x6ffffffc: return "VERDEF";
5344 case 0x7ffffffd: return "AUXILIARY";
5345 case 0x7fffffff: return "FILTER";
5346 case SHT_GNU_LIBLIST: return "GNU_LIBLIST";
5347
5348 default:
5349 if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC))
5350 {
5351 switch (filedata->file_header.e_machine)
5352 {
5353 case EM_ARC:
5354 case EM_ARC_COMPACT:
5355 case EM_ARC_COMPACT2:
5356 case EM_ARC_COMPACT3:
5357 case EM_ARC_COMPACT3_64:
5358 result = get_arc_section_type_name (sh_type);
5359 break;
5360 case EM_MIPS:
5361 case EM_MIPS_RS3_LE:
5362 result = get_mips_section_type_name (sh_type);
5363 break;
5364 case EM_PARISC:
5365 result = get_parisc_section_type_name (sh_type);
5366 break;
5367 case EM_IA_64:
5368 result = get_ia64_section_type_name (filedata, sh_type);
5369 break;
5370 case EM_X86_64:
5371 case EM_L1OM:
5372 case EM_K1OM:
5373 result = get_x86_64_section_type_name (sh_type);
5374 break;
5375 case EM_AARCH64:
5376 result = get_aarch64_section_type_name (sh_type);
5377 break;
5378 case EM_ARM:
5379 result = get_arm_section_type_name (sh_type);
5380 break;
5381 case EM_TI_C6000:
5382 result = get_tic6x_section_type_name (sh_type);
5383 break;
5384 case EM_MSP430:
5385 result = get_msp430_section_type_name (sh_type);
5386 break;
5387 case EM_NFP:
5388 result = get_nfp_section_type_name (sh_type);
5389 break;
5390 case EM_V800:
5391 case EM_V850:
5392 case EM_CYGNUS_V850:
5393 result = get_v850_section_type_name (sh_type);
5394 break;
5395 case EM_RISCV:
5396 result = get_riscv_section_type_name (sh_type);
5397 break;
5398 case EM_CSKY:
5399 result = get_csky_section_type_name (sh_type);
5400 break;
5401 default:
5402 result = NULL;
5403 break;
5404 }
5405
5406 if (result != NULL)
5407 return result;
5408
5409 sprintf (buff, "LOPROC+%#x", sh_type - SHT_LOPROC);
5410 }
5411 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS))
5412 {
5413 switch (filedata->file_header.e_machine)
5414 {
5415 case EM_IA_64:
5416 result = get_ia64_section_type_name (filedata, sh_type);
5417 break;
5418 default:
5419 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
5420 result = get_solaris_section_type (sh_type);
5421 else
5422 {
5423 switch (sh_type)
5424 {
5425 case SHT_GNU_INCREMENTAL_INPUTS: result = "GNU_INCREMENTAL_INPUTS"; break;
5426 case SHT_GNU_ATTRIBUTES: result = "GNU_ATTRIBUTES"; break;
5427 case SHT_GNU_HASH: result = "GNU_HASH"; break;
5428 case SHT_GNU_LIBLIST: result = "GNU_LIBLIST"; break;
5429 default:
5430 result = NULL;
5431 break;
5432 }
5433 }
5434 break;
5435 }
5436
5437 if (result != NULL)
5438 return result;
5439
5440 sprintf (buff, "LOOS+%#x", sh_type - SHT_LOOS);
5441 }
5442 else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER))
5443 {
5444 switch (filedata->file_header.e_machine)
5445 {
5446 case EM_V800:
5447 case EM_V850:
5448 case EM_CYGNUS_V850:
5449 result = get_v850_section_type_name (sh_type);
5450 break;
5451 default:
5452 result = NULL;
5453 break;
5454 }
5455
5456 if (result != NULL)
5457 return result;
5458
5459 sprintf (buff, "LOUSER+%#x", sh_type - SHT_LOUSER);
5460 }
5461 else
5462 /* This message is probably going to be displayed in a 15
5463 character wide field, so put the hex value first. */
5464 snprintf (buff, sizeof (buff), _("%08x: <unknown>"), sh_type);
5465
5466 return buff;
5467 }
5468 }
5469
5470 enum long_option_values
5471 {
5472 OPTION_DEBUG_DUMP = 512,
5473 OPTION_DYN_SYMS,
5474 OPTION_LTO_SYMS,
5475 OPTION_DWARF_DEPTH,
5476 OPTION_DWARF_START,
5477 OPTION_DWARF_CHECK,
5478 OPTION_CTF_DUMP,
5479 OPTION_CTF_PARENT,
5480 OPTION_CTF_SYMBOLS,
5481 OPTION_CTF_STRINGS,
5482 OPTION_SFRAME_DUMP,
5483 OPTION_WITH_SYMBOL_VERSIONS,
5484 OPTION_RECURSE_LIMIT,
5485 OPTION_NO_RECURSE_LIMIT,
5486 OPTION_NO_DEMANGLING,
5487 OPTION_SYM_BASE
5488 };
5489
5490 static struct option options[] =
5491 {
5492 /* Note - This table is alpha-sorted on the 'val'
5493 field in order to make adding new options easier. */
5494 {"arch-specific", no_argument, 0, 'A'},
5495 {"all", no_argument, 0, 'a'},
5496 {"demangle", optional_argument, 0, 'C'},
5497 {"archive-index", no_argument, 0, 'c'},
5498 {"use-dynamic", no_argument, 0, 'D'},
5499 {"dynamic", no_argument, 0, 'd'},
5500 {"headers", no_argument, 0, 'e'},
5501 {"section-groups", no_argument, 0, 'g'},
5502 {"help", no_argument, 0, 'H'},
5503 {"file-header", no_argument, 0, 'h'},
5504 {"histogram", no_argument, 0, 'I'},
5505 {"lint", no_argument, 0, 'L'},
5506 {"enable-checks", no_argument, 0, 'L'},
5507 {"program-headers", no_argument, 0, 'l'},
5508 {"segments", no_argument, 0, 'l'},
5509 {"full-section-name",no_argument, 0, 'N'},
5510 {"notes", no_argument, 0, 'n'},
5511 {"process-links", no_argument, 0, 'P'},
5512 {"string-dump", required_argument, 0, 'p'},
5513 {"relocated-dump", required_argument, 0, 'R'},
5514 {"relocs", no_argument, 0, 'r'},
5515 {"section-headers", no_argument, 0, 'S'},
5516 {"sections", no_argument, 0, 'S'},
5517 {"symbols", no_argument, 0, 's'},
5518 {"syms", no_argument, 0, 's'},
5519 {"silent-truncation",no_argument, 0, 'T'},
5520 {"section-details", no_argument, 0, 't'},
5521 {"unicode", required_argument, NULL, 'U'},
5522 {"unwind", no_argument, 0, 'u'},
5523 {"version-info", no_argument, 0, 'V'},
5524 {"version", no_argument, 0, 'v'},
5525 {"wide", no_argument, 0, 'W'},
5526 {"hex-dump", required_argument, 0, 'x'},
5527 {"decompress", no_argument, 0, 'z'},
5528
5529 {"no-demangle", no_argument, 0, OPTION_NO_DEMANGLING},
5530 {"recurse-limit", no_argument, NULL, OPTION_RECURSE_LIMIT},
5531 {"no-recurse-limit", no_argument, NULL, OPTION_NO_RECURSE_LIMIT},
5532 {"no-recursion-limit", no_argument, NULL, OPTION_NO_RECURSE_LIMIT},
5533 {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS},
5534 {"lto-syms", no_argument, 0, OPTION_LTO_SYMS},
5535 {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP},
5536 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
5537 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
5538 {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK},
5539 #ifdef ENABLE_LIBCTF
5540 {"ctf", required_argument, 0, OPTION_CTF_DUMP},
5541 {"ctf-symbols", required_argument, 0, OPTION_CTF_SYMBOLS},
5542 {"ctf-strings", required_argument, 0, OPTION_CTF_STRINGS},
5543 {"ctf-parent", required_argument, 0, OPTION_CTF_PARENT},
5544 #endif
5545 {"sframe", optional_argument, 0, OPTION_SFRAME_DUMP},
5546 {"sym-base", optional_argument, 0, OPTION_SYM_BASE},
5547
5548 {0, no_argument, 0, 0}
5549 };
5550
5551 static void
5552 usage (FILE * stream)
5553 {
5554 fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n"));
5555 fprintf (stream, _(" Display information about the contents of ELF format files\n"));
5556 fprintf (stream, _(" Options are:\n"));
5557 fprintf (stream, _("\
5558 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n"));
5559 fprintf (stream, _("\
5560 -h --file-header Display the ELF file header\n"));
5561 fprintf (stream, _("\
5562 -l --program-headers Display the program headers\n"));
5563 fprintf (stream, _("\
5564 --segments An alias for --program-headers\n"));
5565 fprintf (stream, _("\
5566 -S --section-headers Display the sections' header\n"));
5567 fprintf (stream, _("\
5568 --sections An alias for --section-headers\n"));
5569 fprintf (stream, _("\
5570 -g --section-groups Display the section groups\n"));
5571 fprintf (stream, _("\
5572 -t --section-details Display the section details\n"));
5573 fprintf (stream, _("\
5574 -e --headers Equivalent to: -h -l -S\n"));
5575 fprintf (stream, _("\
5576 -s --syms Display the symbol table\n"));
5577 fprintf (stream, _("\
5578 --symbols An alias for --syms\n"));
5579 fprintf (stream, _("\
5580 --dyn-syms Display the dynamic symbol table\n"));
5581 fprintf (stream, _("\
5582 --lto-syms Display LTO symbol tables\n"));
5583 fprintf (stream, _("\
5584 --sym-base=[0|8|10|16] \n\
5585 Force base for symbol sizes. The options are \n\
5586 mixed (the default), octal, decimal, hexadecimal.\n"));
5587 fprintf (stream, _("\
5588 -C --demangle[=STYLE] Decode mangled/processed symbol names\n"));
5589 display_demangler_styles (stream, _("\
5590 STYLE can be "));
5591 fprintf (stream, _("\
5592 --no-demangle Do not demangle low-level symbol names. (default)\n"));
5593 fprintf (stream, _("\
5594 --recurse-limit Enable a demangling recursion limit. (default)\n"));
5595 fprintf (stream, _("\
5596 --no-recurse-limit Disable a demangling recursion limit\n"));
5597 fprintf (stream, _("\
5598 -U[dlexhi] --unicode=[default|locale|escape|hex|highlight|invalid]\n\
5599 Display unicode characters as determined by the current locale\n\
5600 (default), escape sequences, \"<hex sequences>\", highlighted\n\
5601 escape sequences, or treat them as invalid and display as\n\
5602 \"{hex sequences}\"\n"));
5603 fprintf (stream, _("\
5604 -n --notes Display the core notes (if present)\n"));
5605 fprintf (stream, _("\
5606 -r --relocs Display the relocations (if present)\n"));
5607 fprintf (stream, _("\
5608 -u --unwind Display the unwind info (if present)\n"));
5609 fprintf (stream, _("\
5610 -d --dynamic Display the dynamic section (if present)\n"));
5611 fprintf (stream, _("\
5612 -V --version-info Display the version sections (if present)\n"));
5613 fprintf (stream, _("\
5614 -A --arch-specific Display architecture specific information (if any)\n"));
5615 fprintf (stream, _("\
5616 -c --archive-index Display the symbol/file index in an archive\n"));
5617 fprintf (stream, _("\
5618 -D --use-dynamic Use the dynamic section info when displaying symbols\n"));
5619 fprintf (stream, _("\
5620 -L --lint|--enable-checks\n\
5621 Display warning messages for possible problems\n"));
5622 fprintf (stream, _("\
5623 -x --hex-dump=<number|name>\n\
5624 Dump the contents of section <number|name> as bytes\n"));
5625 fprintf (stream, _("\
5626 -p --string-dump=<number|name>\n\
5627 Dump the contents of section <number|name> as strings\n"));
5628 fprintf (stream, _("\
5629 -R --relocated-dump=<number|name>\n\
5630 Dump the relocated contents of section <number|name>\n"));
5631 fprintf (stream, _("\
5632 -z --decompress Decompress section before dumping it\n"));
5633 fprintf (stream, _("\
5634 -w --debug-dump[a/=abbrev, A/=addr, r/=aranges, c/=cu_index, L/=decodedline,\n\
5635 f/=frames, F/=frames-interp, g/=gdb_index, i/=info, o/=loc,\n\
5636 m/=macro, p/=pubnames, t/=pubtypes, R/=Ranges, l/=rawline,\n\
5637 s/=str, O/=str-offsets, u/=trace_abbrev, T/=trace_aranges,\n\
5638 U/=trace_info]\n\
5639 Display the contents of DWARF debug sections\n"));
5640 fprintf (stream, _("\
5641 -wk --debug-dump=links Display the contents of sections that link to separate\n\
5642 debuginfo files\n"));
5643 fprintf (stream, _("\
5644 -P --process-links Display the contents of non-debug sections in separate\n\
5645 debuginfo files. (Implies -wK)\n"));
5646 #if DEFAULT_FOR_FOLLOW_LINKS
5647 fprintf (stream, _("\
5648 -wK --debug-dump=follow-links\n\
5649 Follow links to separate debug info files (default)\n"));
5650 fprintf (stream, _("\
5651 -wN --debug-dump=no-follow-links\n\
5652 Do not follow links to separate debug info files\n"));
5653 #else
5654 fprintf (stream, _("\
5655 -wK --debug-dump=follow-links\n\
5656 Follow links to separate debug info files\n"));
5657 fprintf (stream, _("\
5658 -wN --debug-dump=no-follow-links\n\
5659 Do not follow links to separate debug info files\n\
5660 (default)\n"));
5661 #endif
5662 #if HAVE_LIBDEBUGINFOD
5663 fprintf (stream, _("\
5664 -wD --debug-dump=use-debuginfod\n\
5665 When following links, also query debuginfod servers (default)\n"));
5666 fprintf (stream, _("\
5667 -wE --debug-dump=do-not-use-debuginfod\n\
5668 When following links, do not query debuginfod servers\n"));
5669 #endif
5670 fprintf (stream, _("\
5671 --dwarf-depth=N Do not display DIEs at depth N or greater\n"));
5672 fprintf (stream, _("\
5673 --dwarf-start=N Display DIEs starting at offset N\n"));
5674 #ifdef ENABLE_LIBCTF
5675 fprintf (stream, _("\
5676 --ctf=<number|name> Display CTF info from section <number|name>\n"));
5677 fprintf (stream, _("\
5678 --ctf-parent=<name> Use CTF archive member <name> as the CTF parent\n"));
5679 fprintf (stream, _("\
5680 --ctf-symbols=<number|name>\n\
5681 Use section <number|name> as the CTF external symtab\n"));
5682 fprintf (stream, _("\
5683 --ctf-strings=<number|name>\n\
5684 Use section <number|name> as the CTF external strtab\n"));
5685 #endif
5686 fprintf (stream, _("\
5687 --sframe[=NAME] Display SFrame info from section NAME, (default '.sframe')\n"));
5688
5689 #ifdef SUPPORT_DISASSEMBLY
5690 fprintf (stream, _("\
5691 -i --instruction-dump=<number|name>\n\
5692 Disassemble the contents of section <number|name>\n"));
5693 #endif
5694 fprintf (stream, _("\
5695 -I --histogram Display histogram of bucket list lengths\n"));
5696 fprintf (stream, _("\
5697 -W --wide Allow output width to exceed 80 characters\n"));
5698 fprintf (stream, _("\
5699 -T --silent-truncation If a symbol name is truncated, do not add [...] suffix\n"));
5700 fprintf (stream, _("\
5701 @<file> Read options from <file>\n"));
5702 fprintf (stream, _("\
5703 -H --help Display this information\n"));
5704 fprintf (stream, _("\
5705 -v --version Display the version number of readelf\n"));
5706
5707 if (REPORT_BUGS_TO[0] && stream == stdout)
5708 fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO);
5709
5710 exit (stream == stdout ? 0 : 1);
5711 }
5712
5713 /* Record the fact that the user wants the contents of section number
5714 SECTION to be displayed using the method(s) encoded as flags bits
5715 in TYPE. Note, TYPE can be zero if we are creating the array for
5716 the first time. */
5717
5718 static void
5719 request_dump_bynumber (struct dump_data *dumpdata,
5720 unsigned int section, dump_type type)
5721 {
5722 if (section >= dumpdata->num_dump_sects)
5723 {
5724 dump_type * new_dump_sects;
5725
5726 new_dump_sects = (dump_type *) calloc (section + 1,
5727 sizeof (* new_dump_sects));
5728
5729 if (new_dump_sects == NULL)
5730 error (_("Out of memory allocating dump request table.\n"));
5731 else
5732 {
5733 if (dumpdata->dump_sects)
5734 {
5735 /* Copy current flag settings. */
5736 memcpy (new_dump_sects, dumpdata->dump_sects,
5737 dumpdata->num_dump_sects * sizeof (* new_dump_sects));
5738
5739 free (dumpdata->dump_sects);
5740 }
5741
5742 dumpdata->dump_sects = new_dump_sects;
5743 dumpdata->num_dump_sects = section + 1;
5744 }
5745 }
5746
5747 if (dumpdata->dump_sects)
5748 dumpdata->dump_sects[section] |= type;
5749 }
5750
5751 /* Request a dump by section name. */
5752
5753 static void
5754 request_dump_byname (const char * section, dump_type type)
5755 {
5756 struct dump_list_entry * new_request;
5757
5758 new_request = (struct dump_list_entry *)
5759 malloc (sizeof (struct dump_list_entry));
5760 if (!new_request)
5761 error (_("Out of memory allocating dump request table.\n"));
5762
5763 new_request->name = strdup (section);
5764 if (!new_request->name)
5765 error (_("Out of memory allocating dump request table.\n"));
5766
5767 new_request->type = type;
5768
5769 new_request->next = dump_sects_byname;
5770 dump_sects_byname = new_request;
5771 }
5772
5773 static inline void
5774 request_dump (struct dump_data *dumpdata, dump_type type)
5775 {
5776 int section;
5777 char * cp;
5778
5779 do_dump = true;
5780 section = strtoul (optarg, & cp, 0);
5781
5782 if (! *cp && section >= 0)
5783 request_dump_bynumber (dumpdata, section, type);
5784 else
5785 request_dump_byname (optarg, type);
5786 }
5787
5788 static void
5789 parse_args (struct dump_data *dumpdata, int argc, char ** argv)
5790 {
5791 int c;
5792
5793 if (argc < 2)
5794 usage (stderr);
5795
5796 while ((c = getopt_long
5797 (argc, argv, "ACDHILNPR:STU:VWacdeghi:lnp:rstuvw::x:z", options, NULL)) != EOF)
5798 {
5799 switch (c)
5800 {
5801 case 0:
5802 /* Long options. */
5803 break;
5804 case 'H':
5805 usage (stdout);
5806 break;
5807
5808 case 'a':
5809 do_syms = true;
5810 do_reloc = true;
5811 do_unwind = true;
5812 do_dynamic = true;
5813 do_header = true;
5814 do_sections = true;
5815 do_section_groups = true;
5816 do_segments = true;
5817 do_version = true;
5818 do_histogram = true;
5819 do_arch = true;
5820 do_notes = true;
5821 break;
5822
5823 case 'g':
5824 do_section_groups = true;
5825 break;
5826 case 't':
5827 case 'N':
5828 do_sections = true;
5829 do_section_details = true;
5830 break;
5831 case 'e':
5832 do_header = true;
5833 do_sections = true;
5834 do_segments = true;
5835 break;
5836 case 'A':
5837 do_arch = true;
5838 break;
5839 case 'D':
5840 do_using_dynamic = true;
5841 break;
5842 case 'r':
5843 do_reloc = true;
5844 break;
5845 case 'u':
5846 do_unwind = true;
5847 break;
5848 case 'h':
5849 do_header = true;
5850 break;
5851 case 'l':
5852 do_segments = true;
5853 break;
5854 case 's':
5855 do_syms = true;
5856 break;
5857 case 'S':
5858 do_sections = true;
5859 break;
5860 case 'd':
5861 do_dynamic = true;
5862 break;
5863 case 'I':
5864 do_histogram = true;
5865 break;
5866 case 'n':
5867 do_notes = true;
5868 break;
5869 case 'c':
5870 do_archive_index = true;
5871 break;
5872 case 'L':
5873 do_checks = true;
5874 break;
5875 case 'P':
5876 process_links = true;
5877 do_follow_links = true;
5878 dump_any_debugging = true;
5879 break;
5880 case 'x':
5881 request_dump (dumpdata, HEX_DUMP);
5882 break;
5883 case 'p':
5884 request_dump (dumpdata, STRING_DUMP);
5885 break;
5886 case 'R':
5887 request_dump (dumpdata, RELOC_DUMP);
5888 break;
5889 case 'z':
5890 decompress_dumps = true;
5891 break;
5892 case 'w':
5893 if (optarg == NULL)
5894 {
5895 do_debugging = true;
5896 do_dump = true;
5897 dump_any_debugging = true;
5898 dwarf_select_sections_all ();
5899 }
5900 else
5901 {
5902 do_debugging = false;
5903 if (dwarf_select_sections_by_letters (optarg))
5904 {
5905 do_dump = true;
5906 dump_any_debugging = true;
5907 }
5908 }
5909 break;
5910 case OPTION_DEBUG_DUMP:
5911 if (optarg == NULL)
5912 {
5913 do_dump = true;
5914 do_debugging = true;
5915 dump_any_debugging = true;
5916 dwarf_select_sections_all ();
5917 }
5918 else
5919 {
5920 do_debugging = false;
5921 if (dwarf_select_sections_by_names (optarg))
5922 {
5923 do_dump = true;
5924 dump_any_debugging = true;
5925 }
5926 }
5927 break;
5928 case OPTION_DWARF_DEPTH:
5929 {
5930 char *cp;
5931
5932 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
5933 }
5934 break;
5935 case OPTION_DWARF_START:
5936 {
5937 char *cp;
5938
5939 dwarf_start_die = strtoul (optarg, & cp, 0);
5940 }
5941 break;
5942 case OPTION_DWARF_CHECK:
5943 dwarf_check = true;
5944 break;
5945 case OPTION_CTF_DUMP:
5946 do_ctf = true;
5947 request_dump (dumpdata, CTF_DUMP);
5948 break;
5949 case OPTION_CTF_SYMBOLS:
5950 free (dump_ctf_symtab_name);
5951 dump_ctf_symtab_name = strdup (optarg);
5952 break;
5953 case OPTION_CTF_STRINGS:
5954 free (dump_ctf_strtab_name);
5955 dump_ctf_strtab_name = strdup (optarg);
5956 break;
5957 case OPTION_CTF_PARENT:
5958 free (dump_ctf_parent_name);
5959 dump_ctf_parent_name = strdup (optarg);
5960 break;
5961 case OPTION_SFRAME_DUMP:
5962 do_sframe = true;
5963 /* Providing section name is optional. request_dump (), however,
5964 thrives on non NULL optarg. Handle it explicitly here. */
5965 if (optarg != NULL)
5966 request_dump (dumpdata, SFRAME_DUMP);
5967 else
5968 {
5969 do_dump = true;
5970 const char *sframe_sec_name = strdup (".sframe");
5971 request_dump_byname (sframe_sec_name, SFRAME_DUMP);
5972 }
5973 break;
5974 case OPTION_DYN_SYMS:
5975 do_dyn_syms = true;
5976 break;
5977 case OPTION_LTO_SYMS:
5978 do_lto_syms = true;
5979 break;
5980 #ifdef SUPPORT_DISASSEMBLY
5981 case 'i':
5982 request_dump (dumpdata, DISASS_DUMP);
5983 break;
5984 #endif
5985 case 'v':
5986 print_version (program_name);
5987 break;
5988 case 'V':
5989 do_version = true;
5990 break;
5991 case 'W':
5992 do_wide = true;
5993 break;
5994 case 'T':
5995 do_not_show_symbol_truncation = true;
5996 break;
5997 case 'C':
5998 do_demangle = true;
5999 if (optarg != NULL)
6000 {
6001 enum demangling_styles style;
6002
6003 style = cplus_demangle_name_to_style (optarg);
6004 if (style == unknown_demangling)
6005 error (_("unknown demangling style `%s'"), optarg);
6006
6007 cplus_demangle_set_style (style);
6008 }
6009 break;
6010 case OPTION_NO_DEMANGLING:
6011 do_demangle = false;
6012 break;
6013 case OPTION_RECURSE_LIMIT:
6014 demangle_flags &= ~ DMGL_NO_RECURSE_LIMIT;
6015 break;
6016 case OPTION_NO_RECURSE_LIMIT:
6017 demangle_flags |= DMGL_NO_RECURSE_LIMIT;
6018 break;
6019 case OPTION_WITH_SYMBOL_VERSIONS:
6020 /* Ignored for backward compatibility. */
6021 break;
6022
6023 case 'U':
6024 if (optarg == NULL)
6025 error (_("Missing arg to -U/--unicode")); /* Can this happen ? */
6026 else if (streq (optarg, "default") || streq (optarg, "d"))
6027 unicode_display = unicode_default;
6028 else if (streq (optarg, "locale") || streq (optarg, "l"))
6029 unicode_display = unicode_locale;
6030 else if (streq (optarg, "escape") || streq (optarg, "e"))
6031 unicode_display = unicode_escape;
6032 else if (streq (optarg, "invalid") || streq (optarg, "i"))
6033 unicode_display = unicode_invalid;
6034 else if (streq (optarg, "hex") || streq (optarg, "x"))
6035 unicode_display = unicode_hex;
6036 else if (streq (optarg, "highlight") || streq (optarg, "h"))
6037 unicode_display = unicode_highlight;
6038 else
6039 error (_("invalid argument to -U/--unicode: %s"), optarg);
6040 break;
6041
6042 case OPTION_SYM_BASE:
6043 sym_base = 0;
6044 if (optarg != NULL)
6045 {
6046 sym_base = strtoul (optarg, NULL, 0);
6047 switch (sym_base)
6048 {
6049 case 0:
6050 case 8:
6051 case 10:
6052 case 16:
6053 break;
6054
6055 default:
6056 sym_base = 0;
6057 break;
6058 }
6059 }
6060 break;
6061
6062 default:
6063 /* xgettext:c-format */
6064 error (_("Invalid option '-%c'\n"), c);
6065 /* Fall through. */
6066 case '?':
6067 usage (stderr);
6068 }
6069 }
6070
6071 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
6072 && !do_segments && !do_header && !do_dump && !do_version
6073 && !do_histogram && !do_debugging && !do_arch && !do_notes
6074 && !do_section_groups && !do_archive_index
6075 && !do_dyn_syms && !do_lto_syms)
6076 {
6077 if (do_checks)
6078 {
6079 check_all = true;
6080 do_dynamic = do_syms = do_reloc = do_unwind = do_sections = true;
6081 do_segments = do_header = do_dump = do_version = true;
6082 do_histogram = do_debugging = do_arch = do_notes = true;
6083 do_section_groups = do_archive_index = do_dyn_syms = true;
6084 do_lto_syms = true;
6085 }
6086 else
6087 usage (stderr);
6088 }
6089 }
6090
6091 static const char *
6092 get_elf_class (unsigned int elf_class)
6093 {
6094 static char buff[32];
6095
6096 switch (elf_class)
6097 {
6098 case ELFCLASSNONE: return _("none");
6099 case ELFCLASS32: return "ELF32";
6100 case ELFCLASS64: return "ELF64";
6101 default:
6102 snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class);
6103 return buff;
6104 }
6105 }
6106
6107 static const char *
6108 get_data_encoding (unsigned int encoding)
6109 {
6110 static char buff[32];
6111
6112 switch (encoding)
6113 {
6114 case ELFDATANONE: return _("none");
6115 case ELFDATA2LSB: return _("2's complement, little endian");
6116 case ELFDATA2MSB: return _("2's complement, big endian");
6117 default:
6118 snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding);
6119 return buff;
6120 }
6121 }
6122
6123 static bool
6124 check_magic_number (Filedata * filedata, Elf_Internal_Ehdr * header)
6125 {
6126 if (header->e_ident[EI_MAG0] == ELFMAG0
6127 && header->e_ident[EI_MAG1] == ELFMAG1
6128 && header->e_ident[EI_MAG2] == ELFMAG2
6129 && header->e_ident[EI_MAG3] == ELFMAG3)
6130 return true;
6131
6132 /* Some compilers produce object files that are not in the ELF file format.
6133 As an aid to users of readelf, try to identify these cases and suggest
6134 alternative tools.
6135
6136 FIXME: It is not clear if all four bytes are used as constant magic
6137 valus by all compilers. It may be necessary to recode this function if
6138 different tools use different length sequences. */
6139
6140 static struct
6141 {
6142 unsigned char magic[4];
6143 const char * obj_message;
6144 const char * ar_message;
6145 }
6146 known_magic[] =
6147 {
6148 { { 'B', 'C', 0xc0, 0xde },
6149 N_("This is a LLVM bitcode file - try using llvm-bcanalyzer\n"),
6150 N_("This is a LLVM bitcode file - try extracing and then using llvm-bcanalyzer\n")
6151 },
6152 { { 'g', 'o', ' ', 'o' },
6153 N_("This is a GO binary file - try using 'go tool objdump' or 'go tool nm'\n"),
6154 NULL
6155 }
6156 };
6157 int i;
6158
6159 for (i = ARRAY_SIZE (known_magic); i--;)
6160 {
6161 if (header->e_ident[EI_MAG0] == known_magic[i].magic[0]
6162 && header->e_ident[EI_MAG1] == known_magic[i].magic[1]
6163 && header->e_ident[EI_MAG2] == known_magic[i].magic[2]
6164 && header->e_ident[EI_MAG3] == known_magic[i].magic[3])
6165 {
6166 /* Some compiler's analyzer tools do not handle archives,
6167 so we provide two different kinds of error message. */
6168 if (filedata->archive_file_size > 0
6169 && known_magic[i].ar_message != NULL)
6170 error ("%s", known_magic[i].ar_message);
6171 else
6172 error ("%s", known_magic[i].obj_message);
6173 return false;
6174 }
6175 }
6176
6177 error (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
6178 return false;
6179 }
6180
6181 /* Decode the data held in 'filedata->file_header'. */
6182
6183 static bool
6184 process_file_header (Filedata * filedata)
6185 {
6186 Elf_Internal_Ehdr * header = & filedata->file_header;
6187
6188 if (! check_magic_number (filedata, header))
6189 return false;
6190
6191 if (! filedata->is_separate)
6192 init_dwarf_regnames_by_elf_machine_code (header->e_machine);
6193
6194 if (do_header)
6195 {
6196 unsigned i;
6197
6198 if (filedata->is_separate)
6199 printf (_("ELF Header in linked file '%s':\n"), filedata->file_name);
6200 else
6201 printf (_("ELF Header:\n"));
6202 printf (_(" Magic: "));
6203 for (i = 0; i < EI_NIDENT; i++)
6204 printf ("%2.2x ", header->e_ident[i]);
6205 printf ("\n");
6206 printf (_(" Class: %s\n"),
6207 get_elf_class (header->e_ident[EI_CLASS]));
6208 printf (_(" Data: %s\n"),
6209 get_data_encoding (header->e_ident[EI_DATA]));
6210 printf (_(" Version: %d%s\n"),
6211 header->e_ident[EI_VERSION],
6212 (header->e_ident[EI_VERSION] == EV_CURRENT
6213 ? _(" (current)")
6214 : (header->e_ident[EI_VERSION] != EV_NONE
6215 ? _(" <unknown>")
6216 : "")));
6217 printf (_(" OS/ABI: %s\n"),
6218 get_osabi_name (filedata, header->e_ident[EI_OSABI]));
6219 printf (_(" ABI Version: %d\n"),
6220 header->e_ident[EI_ABIVERSION]);
6221 printf (_(" Type: %s\n"),
6222 get_file_type (filedata));
6223 printf (_(" Machine: %s\n"),
6224 get_machine_name (header->e_machine));
6225 printf (_(" Version: 0x%lx\n"),
6226 header->e_version);
6227
6228 printf (_(" Entry point address: "));
6229 print_vma (header->e_entry, PREFIX_HEX);
6230 printf (_("\n Start of program headers: "));
6231 print_vma (header->e_phoff, DEC);
6232 printf (_(" (bytes into file)\n Start of section headers: "));
6233 print_vma (header->e_shoff, DEC);
6234 printf (_(" (bytes into file)\n"));
6235
6236 printf (_(" Flags: 0x%lx%s\n"),
6237 header->e_flags,
6238 get_machine_flags (filedata, header->e_flags, header->e_machine));
6239 printf (_(" Size of this header: %u (bytes)\n"),
6240 header->e_ehsize);
6241 printf (_(" Size of program headers: %u (bytes)\n"),
6242 header->e_phentsize);
6243 printf (_(" Number of program headers: %u"),
6244 header->e_phnum);
6245 if (filedata->section_headers != NULL
6246 && header->e_phnum == PN_XNUM
6247 && filedata->section_headers[0].sh_info != 0)
6248 printf (" (%u)", filedata->section_headers[0].sh_info);
6249 putc ('\n', stdout);
6250 printf (_(" Size of section headers: %u (bytes)\n"),
6251 header->e_shentsize);
6252 printf (_(" Number of section headers: %u"),
6253 header->e_shnum);
6254 if (filedata->section_headers != NULL && header->e_shnum == SHN_UNDEF)
6255 {
6256 header->e_shnum = filedata->section_headers[0].sh_size;
6257 printf (" (%u)", header->e_shnum);
6258 }
6259 putc ('\n', stdout);
6260 printf (_(" Section header string table index: %u"),
6261 header->e_shstrndx);
6262 if (filedata->section_headers != NULL
6263 && header->e_shstrndx == (SHN_XINDEX & 0xffff))
6264 {
6265 header->e_shstrndx = filedata->section_headers[0].sh_link;
6266 printf (" (%u)", header->e_shstrndx);
6267 }
6268 if (header->e_shstrndx != SHN_UNDEF
6269 && header->e_shstrndx >= header->e_shnum)
6270 {
6271 header->e_shstrndx = SHN_UNDEF;
6272 printf (_(" <corrupt: out of range>"));
6273 }
6274 putc ('\n', stdout);
6275 }
6276
6277 if (filedata->section_headers != NULL)
6278 {
6279 if (header->e_phnum == PN_XNUM
6280 && filedata->section_headers[0].sh_info != 0)
6281 {
6282 /* Throw away any cached read of PN_XNUM headers. */
6283 free (filedata->program_headers);
6284 filedata->program_headers = NULL;
6285 header->e_phnum = filedata->section_headers[0].sh_info;
6286 }
6287 if (header->e_shnum == SHN_UNDEF)
6288 header->e_shnum = filedata->section_headers[0].sh_size;
6289 if (header->e_shstrndx == (SHN_XINDEX & 0xffff))
6290 header->e_shstrndx = filedata->section_headers[0].sh_link;
6291 if (header->e_shstrndx >= header->e_shnum)
6292 header->e_shstrndx = SHN_UNDEF;
6293 }
6294
6295 return true;
6296 }
6297
6298 /* Read in the program headers from FILEDATA and store them in PHEADERS.
6299 Returns TRUE upon success, FALSE otherwise. Loads 32-bit headers. */
6300
6301 static bool
6302 get_32bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders)
6303 {
6304 Elf32_External_Phdr * phdrs;
6305 Elf32_External_Phdr * external;
6306 Elf_Internal_Phdr * internal;
6307 unsigned int i;
6308 unsigned int size = filedata->file_header.e_phentsize;
6309 unsigned int num = filedata->file_header.e_phnum;
6310
6311 /* PR binutils/17531: Cope with unexpected section header sizes. */
6312 if (size == 0 || num == 0)
6313 return false;
6314 if (size < sizeof * phdrs)
6315 {
6316 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
6317 return false;
6318 }
6319 if (size > sizeof * phdrs)
6320 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
6321
6322 phdrs = (Elf32_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff,
6323 size, num, _("program headers"));
6324 if (phdrs == NULL)
6325 return false;
6326
6327 for (i = 0, internal = pheaders, external = phdrs;
6328 i < filedata->file_header.e_phnum;
6329 i++, internal++, external++)
6330 {
6331 internal->p_type = BYTE_GET (external->p_type);
6332 internal->p_offset = BYTE_GET (external->p_offset);
6333 internal->p_vaddr = BYTE_GET (external->p_vaddr);
6334 internal->p_paddr = BYTE_GET (external->p_paddr);
6335 internal->p_filesz = BYTE_GET (external->p_filesz);
6336 internal->p_memsz = BYTE_GET (external->p_memsz);
6337 internal->p_flags = BYTE_GET (external->p_flags);
6338 internal->p_align = BYTE_GET (external->p_align);
6339 }
6340
6341 free (phdrs);
6342 return true;
6343 }
6344
6345 /* Read in the program headers from FILEDATA and store them in PHEADERS.
6346 Returns TRUE upon success, FALSE otherwise. Loads 64-bit headers. */
6347
6348 static bool
6349 get_64bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders)
6350 {
6351 Elf64_External_Phdr * phdrs;
6352 Elf64_External_Phdr * external;
6353 Elf_Internal_Phdr * internal;
6354 unsigned int i;
6355 unsigned int size = filedata->file_header.e_phentsize;
6356 unsigned int num = filedata->file_header.e_phnum;
6357
6358 /* PR binutils/17531: Cope with unexpected section header sizes. */
6359 if (size == 0 || num == 0)
6360 return false;
6361 if (size < sizeof * phdrs)
6362 {
6363 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
6364 return false;
6365 }
6366 if (size > sizeof * phdrs)
6367 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
6368
6369 phdrs = (Elf64_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff,
6370 size, num, _("program headers"));
6371 if (!phdrs)
6372 return false;
6373
6374 for (i = 0, internal = pheaders, external = phdrs;
6375 i < filedata->file_header.e_phnum;
6376 i++, internal++, external++)
6377 {
6378 internal->p_type = BYTE_GET (external->p_type);
6379 internal->p_flags = BYTE_GET (external->p_flags);
6380 internal->p_offset = BYTE_GET (external->p_offset);
6381 internal->p_vaddr = BYTE_GET (external->p_vaddr);
6382 internal->p_paddr = BYTE_GET (external->p_paddr);
6383 internal->p_filesz = BYTE_GET (external->p_filesz);
6384 internal->p_memsz = BYTE_GET (external->p_memsz);
6385 internal->p_align = BYTE_GET (external->p_align);
6386 }
6387
6388 free (phdrs);
6389 return true;
6390 }
6391
6392 /* Returns TRUE if the program headers were read into `program_headers'. */
6393
6394 static bool
6395 get_program_headers (Filedata * filedata)
6396 {
6397 Elf_Internal_Phdr * phdrs;
6398
6399 /* Check cache of prior read. */
6400 if (filedata->program_headers != NULL)
6401 return true;
6402
6403 /* Be kind to memory checkers by looking for
6404 e_phnum values which we know must be invalid. */
6405 if (filedata->file_header.e_phnum
6406 * (is_32bit_elf ? sizeof (Elf32_External_Phdr) : sizeof (Elf64_External_Phdr))
6407 >= filedata->file_size)
6408 {
6409 error (_("Too many program headers - %#x - the file is not that big\n"),
6410 filedata->file_header.e_phnum);
6411 return false;
6412 }
6413
6414 phdrs = (Elf_Internal_Phdr *) cmalloc (filedata->file_header.e_phnum,
6415 sizeof (Elf_Internal_Phdr));
6416 if (phdrs == NULL)
6417 {
6418 error (_("Out of memory reading %u program headers\n"),
6419 filedata->file_header.e_phnum);
6420 return false;
6421 }
6422
6423 if (is_32bit_elf
6424 ? get_32bit_program_headers (filedata, phdrs)
6425 : get_64bit_program_headers (filedata, phdrs))
6426 {
6427 filedata->program_headers = phdrs;
6428 return true;
6429 }
6430
6431 free (phdrs);
6432 return false;
6433 }
6434
6435 /* Print program header info and locate dynamic section. */
6436
6437 static void
6438 process_program_headers (Filedata * filedata)
6439 {
6440 Elf_Internal_Phdr * segment;
6441 unsigned int i;
6442 Elf_Internal_Phdr * previous_load = NULL;
6443
6444 if (filedata->file_header.e_phnum == 0)
6445 {
6446 /* PR binutils/12467. */
6447 if (filedata->file_header.e_phoff != 0)
6448 warn (_("possibly corrupt ELF header - it has a non-zero program"
6449 " header offset, but no program headers\n"));
6450 else if (do_segments)
6451 {
6452 if (filedata->is_separate)
6453 printf (_("\nThere are no program headers in linked file '%s'.\n"),
6454 filedata->file_name);
6455 else
6456 printf (_("\nThere are no program headers in this file.\n"));
6457 }
6458 goto no_headers;
6459 }
6460
6461 if (do_segments && !do_header)
6462 {
6463 if (filedata->is_separate)
6464 printf ("\nIn linked file '%s' the ELF file type is %s\n",
6465 filedata->file_name, get_file_type (filedata));
6466 else
6467 printf (_("\nElf file type is %s\n"), get_file_type (filedata));
6468 printf (_("Entry point 0x%" PRIx64 "\n"),
6469 filedata->file_header.e_entry);
6470 printf (ngettext ("There is %d program header,"
6471 " starting at offset %" PRIu64 "\n",
6472 "There are %d program headers,"
6473 " starting at offset %" PRIu64 "\n",
6474 filedata->file_header.e_phnum),
6475 filedata->file_header.e_phnum,
6476 filedata->file_header.e_phoff);
6477 }
6478
6479 if (! get_program_headers (filedata))
6480 goto no_headers;
6481
6482 if (do_segments)
6483 {
6484 if (filedata->file_header.e_phnum > 1)
6485 printf (_("\nProgram Headers:\n"));
6486 else
6487 printf (_("\nProgram Headers:\n"));
6488
6489 if (is_32bit_elf)
6490 printf
6491 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
6492 else if (do_wide)
6493 printf
6494 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
6495 else
6496 {
6497 printf
6498 (_(" Type Offset VirtAddr PhysAddr\n"));
6499 printf
6500 (_(" FileSiz MemSiz Flags Align\n"));
6501 }
6502 }
6503
6504 uint64_t dynamic_addr = 0;
6505 uint64_t dynamic_size = 0;
6506 for (i = 0, segment = filedata->program_headers;
6507 i < filedata->file_header.e_phnum;
6508 i++, segment++)
6509 {
6510 if (do_segments)
6511 {
6512 printf (" %-14.14s ", get_segment_type (filedata, segment->p_type));
6513
6514 if (is_32bit_elf)
6515 {
6516 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
6517 printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr);
6518 printf ("0x%8.8lx ", (unsigned long) segment->p_paddr);
6519 printf ("0x%5.5lx ", (unsigned long) segment->p_filesz);
6520 printf ("0x%5.5lx ", (unsigned long) segment->p_memsz);
6521 printf ("%c%c%c ",
6522 (segment->p_flags & PF_R ? 'R' : ' '),
6523 (segment->p_flags & PF_W ? 'W' : ' '),
6524 (segment->p_flags & PF_X ? 'E' : ' '));
6525 printf ("%#lx", (unsigned long) segment->p_align);
6526 }
6527 else if (do_wide)
6528 {
6529 if ((unsigned long) segment->p_offset == segment->p_offset)
6530 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
6531 else
6532 {
6533 print_vma (segment->p_offset, FULL_HEX);
6534 putchar (' ');
6535 }
6536
6537 print_vma (segment->p_vaddr, FULL_HEX);
6538 putchar (' ');
6539 print_vma (segment->p_paddr, FULL_HEX);
6540 putchar (' ');
6541
6542 if ((unsigned long) segment->p_filesz == segment->p_filesz)
6543 printf ("0x%6.6lx ", (unsigned long) segment->p_filesz);
6544 else
6545 {
6546 print_vma (segment->p_filesz, FULL_HEX);
6547 putchar (' ');
6548 }
6549
6550 if ((unsigned long) segment->p_memsz == segment->p_memsz)
6551 printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
6552 else
6553 {
6554 print_vma (segment->p_memsz, FULL_HEX);
6555 }
6556
6557 printf (" %c%c%c ",
6558 (segment->p_flags & PF_R ? 'R' : ' '),
6559 (segment->p_flags & PF_W ? 'W' : ' '),
6560 (segment->p_flags & PF_X ? 'E' : ' '));
6561
6562 if ((unsigned long) segment->p_align == segment->p_align)
6563 printf ("%#lx", (unsigned long) segment->p_align);
6564 else
6565 {
6566 print_vma (segment->p_align, PREFIX_HEX);
6567 }
6568 }
6569 else
6570 {
6571 print_vma (segment->p_offset, FULL_HEX);
6572 putchar (' ');
6573 print_vma (segment->p_vaddr, FULL_HEX);
6574 putchar (' ');
6575 print_vma (segment->p_paddr, FULL_HEX);
6576 printf ("\n ");
6577 print_vma (segment->p_filesz, FULL_HEX);
6578 putchar (' ');
6579 print_vma (segment->p_memsz, FULL_HEX);
6580 printf (" %c%c%c ",
6581 (segment->p_flags & PF_R ? 'R' : ' '),
6582 (segment->p_flags & PF_W ? 'W' : ' '),
6583 (segment->p_flags & PF_X ? 'E' : ' '));
6584 print_vma (segment->p_align, PREFIX_HEX);
6585 }
6586
6587 putc ('\n', stdout);
6588 }
6589
6590 switch (segment->p_type)
6591 {
6592 case PT_LOAD:
6593 #if 0 /* Do not warn about out of order PT_LOAD segments. Although officially
6594 required by the ELF standard, several programs, including the Linux
6595 kernel, make use of non-ordered segments. */
6596 if (previous_load
6597 && previous_load->p_vaddr > segment->p_vaddr)
6598 error (_("LOAD segments must be sorted in order of increasing VirtAddr\n"));
6599 #endif
6600 if (segment->p_memsz < segment->p_filesz)
6601 error (_("the segment's file size is larger than its memory size\n"));
6602 previous_load = segment;
6603 break;
6604
6605 case PT_PHDR:
6606 /* PR 20815 - Verify that the program header is loaded into memory. */
6607 if (i > 0 && previous_load != NULL)
6608 error (_("the PHDR segment must occur before any LOAD segment\n"));
6609 if (filedata->file_header.e_machine != EM_PARISC)
6610 {
6611 unsigned int j;
6612
6613 for (j = 1; j < filedata->file_header.e_phnum; j++)
6614 {
6615 Elf_Internal_Phdr *load = filedata->program_headers + j;
6616 if (load->p_type == PT_LOAD
6617 && load->p_offset <= segment->p_offset
6618 && (load->p_offset + load->p_filesz
6619 >= segment->p_offset + segment->p_filesz)
6620 && load->p_vaddr <= segment->p_vaddr
6621 && (load->p_vaddr + load->p_filesz
6622 >= segment->p_vaddr + segment->p_filesz))
6623 break;
6624 }
6625 if (j == filedata->file_header.e_phnum)
6626 error (_("the PHDR segment is not covered by a LOAD segment\n"));
6627 }
6628 break;
6629
6630 case PT_DYNAMIC:
6631 if (dynamic_addr)
6632 error (_("more than one dynamic segment\n"));
6633
6634 /* By default, assume that the .dynamic section is the first
6635 section in the DYNAMIC segment. */
6636 dynamic_addr = segment->p_offset;
6637 dynamic_size = segment->p_filesz;
6638
6639 /* Try to locate the .dynamic section. If there is
6640 a section header table, we can easily locate it. */
6641 if (filedata->section_headers != NULL)
6642 {
6643 Elf_Internal_Shdr * sec;
6644
6645 sec = find_section (filedata, ".dynamic");
6646 if (sec == NULL || sec->sh_size == 0)
6647 {
6648 /* A corresponding .dynamic section is expected, but on
6649 IA-64/OpenVMS it is OK for it to be missing. */
6650 if (!is_ia64_vms (filedata))
6651 error (_("no .dynamic section in the dynamic segment\n"));
6652 break;
6653 }
6654
6655 if (sec->sh_type == SHT_NOBITS)
6656 {
6657 dynamic_addr = 0;
6658 dynamic_size = 0;
6659 break;
6660 }
6661
6662 dynamic_addr = sec->sh_offset;
6663 dynamic_size = sec->sh_size;
6664
6665 /* The PT_DYNAMIC segment, which is used by the run-time
6666 loader, should exactly match the .dynamic section. */
6667 if (do_checks
6668 && (dynamic_addr != segment->p_offset
6669 || dynamic_size != segment->p_filesz))
6670 warn (_("\
6671 the .dynamic section is not the same as the dynamic segment\n"));
6672 }
6673
6674 /* PR binutils/17512: Avoid corrupt dynamic section info in the
6675 segment. Check this after matching against the section headers
6676 so we don't warn on debuginfo file (which have NOBITS .dynamic
6677 sections). */
6678 if (dynamic_addr > filedata->file_size
6679 || (dynamic_size > filedata->file_size - dynamic_addr))
6680 {
6681 error (_("the dynamic segment offset + size exceeds the size of the file\n"));
6682 dynamic_addr = 0;
6683 dynamic_size = 0;
6684 }
6685 break;
6686
6687 case PT_INTERP:
6688 if (segment->p_offset >= filedata->file_size
6689 || segment->p_filesz > filedata->file_size - segment->p_offset
6690 || segment->p_filesz - 1 >= (size_t) -2
6691 || fseek64 (filedata->handle,
6692 filedata->archive_file_offset + segment->p_offset,
6693 SEEK_SET))
6694 error (_("Unable to find program interpreter name\n"));
6695 else
6696 {
6697 size_t len = segment->p_filesz;
6698 free (filedata->program_interpreter);
6699 filedata->program_interpreter = xmalloc (len + 1);
6700 len = fread (filedata->program_interpreter, 1, len,
6701 filedata->handle);
6702 filedata->program_interpreter[len] = 0;
6703
6704 if (do_segments)
6705 printf (_(" [Requesting program interpreter: %s]\n"),
6706 filedata->program_interpreter);
6707 }
6708 break;
6709 }
6710 }
6711
6712 if (do_segments
6713 && filedata->section_headers != NULL
6714 && filedata->string_table != NULL)
6715 {
6716 printf (_("\n Section to Segment mapping:\n"));
6717 printf (_(" Segment Sections...\n"));
6718
6719 for (i = 0; i < filedata->file_header.e_phnum; i++)
6720 {
6721 unsigned int j;
6722 Elf_Internal_Shdr * section;
6723
6724 segment = filedata->program_headers + i;
6725 section = filedata->section_headers + 1;
6726
6727 printf (" %2.2d ", i);
6728
6729 for (j = 1; j < filedata->file_header.e_shnum; j++, section++)
6730 {
6731 if (!ELF_TBSS_SPECIAL (section, segment)
6732 && ELF_SECTION_IN_SEGMENT_STRICT (section, segment))
6733 printf ("%s ", printable_section_name (filedata, section));
6734 }
6735
6736 putc ('\n',stdout);
6737 }
6738 }
6739
6740 filedata->dynamic_addr = dynamic_addr;
6741 filedata->dynamic_size = dynamic_size ? dynamic_size : 1;
6742 return;
6743
6744 no_headers:
6745 filedata->dynamic_addr = 0;
6746 filedata->dynamic_size = 1;
6747 }
6748
6749
6750 /* Find the file offset corresponding to VMA by using the program headers. */
6751
6752 static int64_t
6753 offset_from_vma (Filedata * filedata, uint64_t vma, uint64_t size)
6754 {
6755 Elf_Internal_Phdr * seg;
6756
6757 if (! get_program_headers (filedata))
6758 {
6759 warn (_("Cannot interpret virtual addresses without program headers.\n"));
6760 return (long) vma;
6761 }
6762
6763 for (seg = filedata->program_headers;
6764 seg < filedata->program_headers + filedata->file_header.e_phnum;
6765 ++seg)
6766 {
6767 if (seg->p_type != PT_LOAD)
6768 continue;
6769
6770 if (vma >= (seg->p_vaddr & -seg->p_align)
6771 && vma + size <= seg->p_vaddr + seg->p_filesz)
6772 return vma - seg->p_vaddr + seg->p_offset;
6773 }
6774
6775 warn (_("Virtual address %#" PRIx64
6776 " not located in any PT_LOAD segment.\n"), vma);
6777 return vma;
6778 }
6779
6780
6781 /* Allocate memory and load the sections headers into FILEDATA->filedata->section_headers.
6782 If PROBE is true, this is just a probe and we do not generate any error
6783 messages if the load fails. */
6784
6785 static bool
6786 get_32bit_section_headers (Filedata * filedata, bool probe)
6787 {
6788 Elf32_External_Shdr * shdrs;
6789 Elf_Internal_Shdr * internal;
6790 unsigned int i;
6791 unsigned int size = filedata->file_header.e_shentsize;
6792 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
6793
6794 /* PR binutils/17531: Cope with unexpected section header sizes. */
6795 if (size == 0 || num == 0)
6796 return false;
6797
6798 /* The section header cannot be at the start of the file - that is
6799 where the ELF file header is located. A file with absolutely no
6800 sections in it will use a shoff of 0. */
6801 if (filedata->file_header.e_shoff == 0)
6802 return false;
6803
6804 if (size < sizeof * shdrs)
6805 {
6806 if (! probe)
6807 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
6808 return false;
6809 }
6810 if (!probe && size > sizeof * shdrs)
6811 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
6812
6813 shdrs = (Elf32_External_Shdr *) get_data (NULL, filedata, filedata->file_header.e_shoff,
6814 size, num,
6815 probe ? NULL : _("section headers"));
6816 if (shdrs == NULL)
6817 return false;
6818
6819 filedata->section_headers = (Elf_Internal_Shdr *)
6820 cmalloc (num, sizeof (Elf_Internal_Shdr));
6821 if (filedata->section_headers == NULL)
6822 {
6823 if (!probe)
6824 error (_("Out of memory reading %u section headers\n"), num);
6825 free (shdrs);
6826 return false;
6827 }
6828
6829 for (i = 0, internal = filedata->section_headers;
6830 i < num;
6831 i++, internal++)
6832 {
6833 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
6834 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
6835 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
6836 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
6837 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
6838 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
6839 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
6840 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
6841 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
6842 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
6843 if (!probe && internal->sh_link > num)
6844 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
6845 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
6846 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
6847 }
6848
6849 free (shdrs);
6850 return true;
6851 }
6852
6853 /* Like get_32bit_section_headers, except that it fetches 64-bit headers. */
6854
6855 static bool
6856 get_64bit_section_headers (Filedata * filedata, bool probe)
6857 {
6858 Elf64_External_Shdr * shdrs;
6859 Elf_Internal_Shdr * internal;
6860 unsigned int i;
6861 unsigned int size = filedata->file_header.e_shentsize;
6862 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
6863
6864 /* PR binutils/17531: Cope with unexpected section header sizes. */
6865 if (size == 0 || num == 0)
6866 return false;
6867
6868 /* The section header cannot be at the start of the file - that is
6869 where the ELF file header is located. A file with absolutely no
6870 sections in it will use a shoff of 0. */
6871 if (filedata->file_header.e_shoff == 0)
6872 return false;
6873
6874 if (size < sizeof * shdrs)
6875 {
6876 if (! probe)
6877 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
6878 return false;
6879 }
6880
6881 if (! probe && size > sizeof * shdrs)
6882 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
6883
6884 shdrs = (Elf64_External_Shdr *) get_data (NULL, filedata,
6885 filedata->file_header.e_shoff,
6886 size, num,
6887 probe ? NULL : _("section headers"));
6888 if (shdrs == NULL)
6889 return false;
6890
6891 filedata->section_headers = (Elf_Internal_Shdr *)
6892 cmalloc (num, sizeof (Elf_Internal_Shdr));
6893 if (filedata->section_headers == NULL)
6894 {
6895 if (! probe)
6896 error (_("Out of memory reading %u section headers\n"), num);
6897 free (shdrs);
6898 return false;
6899 }
6900
6901 for (i = 0, internal = filedata->section_headers;
6902 i < num;
6903 i++, internal++)
6904 {
6905 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
6906 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
6907 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
6908 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
6909 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
6910 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
6911 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
6912 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
6913 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
6914 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
6915 if (!probe && internal->sh_link > num)
6916 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
6917 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
6918 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
6919 }
6920
6921 free (shdrs);
6922 return true;
6923 }
6924
6925 static bool
6926 get_section_headers (Filedata *filedata, bool probe)
6927 {
6928 if (filedata->section_headers != NULL)
6929 return true;
6930
6931 if (is_32bit_elf)
6932 return get_32bit_section_headers (filedata, probe);
6933 else
6934 return get_64bit_section_headers (filedata, probe);
6935 }
6936
6937 static Elf_Internal_Sym *
6938 get_32bit_elf_symbols (Filedata *filedata,
6939 Elf_Internal_Shdr *section,
6940 uint64_t *num_syms_return)
6941 {
6942 uint64_t number = 0;
6943 Elf32_External_Sym * esyms = NULL;
6944 Elf_External_Sym_Shndx * shndx = NULL;
6945 Elf_Internal_Sym * isyms = NULL;
6946 Elf_Internal_Sym * psym;
6947 unsigned int j;
6948 elf_section_list * entry;
6949
6950 if (section->sh_size == 0)
6951 {
6952 if (num_syms_return != NULL)
6953 * num_syms_return = 0;
6954 return NULL;
6955 }
6956
6957 /* Run some sanity checks first. */
6958 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
6959 {
6960 error (_("Section %s has an invalid sh_entsize of %#" PRIx64 "\n"),
6961 printable_section_name (filedata, section),
6962 section->sh_entsize);
6963 goto exit_point;
6964 }
6965
6966 if (section->sh_size > filedata->file_size)
6967 {
6968 error (_("Section %s has an invalid sh_size of %#" PRIx64 "\n"),
6969 printable_section_name (filedata, section),
6970 section->sh_size);
6971 goto exit_point;
6972 }
6973
6974 number = section->sh_size / section->sh_entsize;
6975
6976 if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1)
6977 {
6978 error (_("Size (%#" PRIx64 ") of section %s "
6979 "is not a multiple of its sh_entsize (%#" PRIx64 ")\n"),
6980 section->sh_size,
6981 printable_section_name (filedata, section),
6982 section->sh_entsize);
6983 goto exit_point;
6984 }
6985
6986 esyms = (Elf32_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
6987 section->sh_size, _("symbols"));
6988 if (esyms == NULL)
6989 goto exit_point;
6990
6991 shndx = NULL;
6992 for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next)
6993 {
6994 if (entry->hdr->sh_link != (size_t) (section - filedata->section_headers))
6995 continue;
6996
6997 if (shndx != NULL)
6998 {
6999 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
7000 free (shndx);
7001 }
7002
7003 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
7004 entry->hdr->sh_offset,
7005 1, entry->hdr->sh_size,
7006 _("symbol table section indices"));
7007 if (shndx == NULL)
7008 goto exit_point;
7009
7010 /* PR17531: file: heap-buffer-overflow */
7011 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
7012 {
7013 error (_("Index section %s has an sh_size of %#" PRIx64 " - expected %#" PRIx64 "\n"),
7014 printable_section_name (filedata, entry->hdr),
7015 entry->hdr->sh_size,
7016 section->sh_size);
7017 goto exit_point;
7018 }
7019 }
7020
7021 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
7022
7023 if (isyms == NULL)
7024 {
7025 error (_("Out of memory reading %" PRIu64 " symbols\n"), number);
7026 goto exit_point;
7027 }
7028
7029 for (j = 0, psym = isyms; j < number; j++, psym++)
7030 {
7031 psym->st_name = BYTE_GET (esyms[j].st_name);
7032 psym->st_value = BYTE_GET (esyms[j].st_value);
7033 psym->st_size = BYTE_GET (esyms[j].st_size);
7034 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
7035 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
7036 psym->st_shndx
7037 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
7038 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
7039 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
7040 psym->st_info = BYTE_GET (esyms[j].st_info);
7041 psym->st_other = BYTE_GET (esyms[j].st_other);
7042 }
7043
7044 exit_point:
7045 free (shndx);
7046 free (esyms);
7047
7048 if (num_syms_return != NULL)
7049 * num_syms_return = isyms == NULL ? 0 : number;
7050
7051 return isyms;
7052 }
7053
7054 static Elf_Internal_Sym *
7055 get_64bit_elf_symbols (Filedata *filedata,
7056 Elf_Internal_Shdr *section,
7057 uint64_t *num_syms_return)
7058 {
7059 uint64_t number = 0;
7060 Elf64_External_Sym * esyms = NULL;
7061 Elf_External_Sym_Shndx * shndx = NULL;
7062 Elf_Internal_Sym * isyms = NULL;
7063 Elf_Internal_Sym * psym;
7064 unsigned int j;
7065 elf_section_list * entry;
7066
7067 if (section->sh_size == 0)
7068 {
7069 if (num_syms_return != NULL)
7070 * num_syms_return = 0;
7071 return NULL;
7072 }
7073
7074 /* Run some sanity checks first. */
7075 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
7076 {
7077 error (_("Section %s has an invalid sh_entsize of %#" PRIx64 "\n"),
7078 printable_section_name (filedata, section),
7079 section->sh_entsize);
7080 goto exit_point;
7081 }
7082
7083 if (section->sh_size > filedata->file_size)
7084 {
7085 error (_("Section %s has an invalid sh_size of %#" PRIx64 "\n"),
7086 printable_section_name (filedata, section),
7087 section->sh_size);
7088 goto exit_point;
7089 }
7090
7091 number = section->sh_size / section->sh_entsize;
7092
7093 if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1)
7094 {
7095 error (_("Size (%#" PRIx64 ") of section %s "
7096 "is not a multiple of its sh_entsize (%#" PRIx64 ")\n"),
7097 section->sh_size,
7098 printable_section_name (filedata, section),
7099 section->sh_entsize);
7100 goto exit_point;
7101 }
7102
7103 esyms = (Elf64_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
7104 section->sh_size, _("symbols"));
7105 if (!esyms)
7106 goto exit_point;
7107
7108 shndx = NULL;
7109 for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next)
7110 {
7111 if (entry->hdr->sh_link != (size_t) (section - filedata->section_headers))
7112 continue;
7113
7114 if (shndx != NULL)
7115 {
7116 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
7117 free (shndx);
7118 }
7119
7120 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
7121 entry->hdr->sh_offset,
7122 1, entry->hdr->sh_size,
7123 _("symbol table section indices"));
7124 if (shndx == NULL)
7125 goto exit_point;
7126
7127 /* PR17531: file: heap-buffer-overflow */
7128 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
7129 {
7130 error (_("Index section %s has an sh_size of %#" PRIx64 " - expected %#" PRIx64 "\n"),
7131 printable_section_name (filedata, entry->hdr),
7132 entry->hdr->sh_size,
7133 section->sh_size);
7134 goto exit_point;
7135 }
7136 }
7137
7138 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
7139
7140 if (isyms == NULL)
7141 {
7142 error (_("Out of memory reading %" PRIu64 " symbols\n"), number);
7143 goto exit_point;
7144 }
7145
7146 for (j = 0, psym = isyms; j < number; j++, psym++)
7147 {
7148 psym->st_name = BYTE_GET (esyms[j].st_name);
7149 psym->st_info = BYTE_GET (esyms[j].st_info);
7150 psym->st_other = BYTE_GET (esyms[j].st_other);
7151 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
7152
7153 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
7154 psym->st_shndx
7155 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
7156 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
7157 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
7158
7159 psym->st_value = BYTE_GET (esyms[j].st_value);
7160 psym->st_size = BYTE_GET (esyms[j].st_size);
7161 }
7162
7163 exit_point:
7164 free (shndx);
7165 free (esyms);
7166
7167 if (num_syms_return != NULL)
7168 * num_syms_return = isyms == NULL ? 0 : number;
7169
7170 return isyms;
7171 }
7172
7173 static Elf_Internal_Sym *
7174 get_elf_symbols (Filedata *filedata,
7175 Elf_Internal_Shdr *section,
7176 uint64_t *num_syms_return)
7177 {
7178 if (is_32bit_elf)
7179 return get_32bit_elf_symbols (filedata, section, num_syms_return);
7180 else
7181 return get_64bit_elf_symbols (filedata, section, num_syms_return);
7182 }
7183
7184 static const char *
7185 get_elf_section_flags (Filedata * filedata, uint64_t sh_flags)
7186 {
7187 static char buff[1024];
7188 char * p = buff;
7189 unsigned int field_size = is_32bit_elf ? 8 : 16;
7190 signed int sindex;
7191 unsigned int size = sizeof (buff) - (field_size + 4 + 1);
7192 uint64_t os_flags = 0;
7193 uint64_t proc_flags = 0;
7194 uint64_t unknown_flags = 0;
7195 static const struct
7196 {
7197 const char * str;
7198 unsigned int len;
7199 }
7200 flags [] =
7201 {
7202 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
7203 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
7204 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
7205 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
7206 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
7207 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
7208 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
7209 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
7210 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
7211 /* 9 */ { STRING_COMMA_LEN ("TLS") },
7212 /* IA-64 specific. */
7213 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
7214 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
7215 /* IA-64 OpenVMS specific. */
7216 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
7217 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
7218 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
7219 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
7220 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
7221 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
7222 /* Generic. */
7223 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
7224 /* SPARC specific. */
7225 /* 19 */ { STRING_COMMA_LEN ("ORDERED") },
7226 /* 20 */ { STRING_COMMA_LEN ("COMPRESSED") },
7227 /* ARM specific. */
7228 /* 21 */ { STRING_COMMA_LEN ("ENTRYSECT") },
7229 /* 22 */ { STRING_COMMA_LEN ("ARM_PURECODE") },
7230 /* 23 */ { STRING_COMMA_LEN ("COMDEF") },
7231 /* GNU specific. */
7232 /* 24 */ { STRING_COMMA_LEN ("GNU_MBIND") },
7233 /* VLE specific. */
7234 /* 25 */ { STRING_COMMA_LEN ("VLE") },
7235 /* GNU specific. */
7236 /* 26 */ { STRING_COMMA_LEN ("GNU_RETAIN") },
7237 };
7238
7239 if (do_section_details)
7240 p += sprintf (p, "[%*.*lx]: ",
7241 field_size, field_size, (unsigned long) sh_flags);
7242
7243 while (sh_flags)
7244 {
7245 uint64_t flag;
7246
7247 flag = sh_flags & - sh_flags;
7248 sh_flags &= ~ flag;
7249
7250 if (do_section_details)
7251 {
7252 switch (flag)
7253 {
7254 case SHF_WRITE: sindex = 0; break;
7255 case SHF_ALLOC: sindex = 1; break;
7256 case SHF_EXECINSTR: sindex = 2; break;
7257 case SHF_MERGE: sindex = 3; break;
7258 case SHF_STRINGS: sindex = 4; break;
7259 case SHF_INFO_LINK: sindex = 5; break;
7260 case SHF_LINK_ORDER: sindex = 6; break;
7261 case SHF_OS_NONCONFORMING: sindex = 7; break;
7262 case SHF_GROUP: sindex = 8; break;
7263 case SHF_TLS: sindex = 9; break;
7264 case SHF_EXCLUDE: sindex = 18; break;
7265 case SHF_COMPRESSED: sindex = 20; break;
7266
7267 default:
7268 sindex = -1;
7269 switch (filedata->file_header.e_machine)
7270 {
7271 case EM_IA_64:
7272 if (flag == SHF_IA_64_SHORT)
7273 sindex = 10;
7274 else if (flag == SHF_IA_64_NORECOV)
7275 sindex = 11;
7276 else if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
7277 switch (flag)
7278 {
7279 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
7280 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
7281 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
7282 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
7283 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
7284 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
7285 default: break;
7286 }
7287 break;
7288
7289 case EM_386:
7290 case EM_IAMCU:
7291 case EM_X86_64:
7292 case EM_L1OM:
7293 case EM_K1OM:
7294 case EM_OLD_SPARCV9:
7295 case EM_SPARC32PLUS:
7296 case EM_SPARCV9:
7297 case EM_SPARC:
7298 if (flag == SHF_ORDERED)
7299 sindex = 19;
7300 break;
7301
7302 case EM_ARM:
7303 switch (flag)
7304 {
7305 case SHF_ENTRYSECT: sindex = 21; break;
7306 case SHF_ARM_PURECODE: sindex = 22; break;
7307 case SHF_COMDEF: sindex = 23; break;
7308 default: break;
7309 }
7310 break;
7311 case EM_PPC:
7312 if (flag == SHF_PPC_VLE)
7313 sindex = 25;
7314 break;
7315 default:
7316 break;
7317 }
7318
7319 switch (filedata->file_header.e_ident[EI_OSABI])
7320 {
7321 case ELFOSABI_GNU:
7322 case ELFOSABI_FREEBSD:
7323 if (flag == SHF_GNU_RETAIN)
7324 sindex = 26;
7325 /* Fall through */
7326 case ELFOSABI_NONE:
7327 if (flag == SHF_GNU_MBIND)
7328 /* We should not recognize SHF_GNU_MBIND for
7329 ELFOSABI_NONE, but binutils as of 2019-07-23 did
7330 not set the EI_OSABI header byte. */
7331 sindex = 24;
7332 break;
7333 default:
7334 break;
7335 }
7336 break;
7337 }
7338
7339 if (sindex != -1)
7340 {
7341 if (p != buff + field_size + 4)
7342 {
7343 if (size < (10 + 2))
7344 {
7345 warn (_("Internal error: not enough buffer room for section flag info"));
7346 return _("<unknown>");
7347 }
7348 size -= 2;
7349 *p++ = ',';
7350 *p++ = ' ';
7351 }
7352
7353 size -= flags [sindex].len;
7354 p = stpcpy (p, flags [sindex].str);
7355 }
7356 else if (flag & SHF_MASKOS)
7357 os_flags |= flag;
7358 else if (flag & SHF_MASKPROC)
7359 proc_flags |= flag;
7360 else
7361 unknown_flags |= flag;
7362 }
7363 else
7364 {
7365 switch (flag)
7366 {
7367 case SHF_WRITE: *p = 'W'; break;
7368 case SHF_ALLOC: *p = 'A'; break;
7369 case SHF_EXECINSTR: *p = 'X'; break;
7370 case SHF_MERGE: *p = 'M'; break;
7371 case SHF_STRINGS: *p = 'S'; break;
7372 case SHF_INFO_LINK: *p = 'I'; break;
7373 case SHF_LINK_ORDER: *p = 'L'; break;
7374 case SHF_OS_NONCONFORMING: *p = 'O'; break;
7375 case SHF_GROUP: *p = 'G'; break;
7376 case SHF_TLS: *p = 'T'; break;
7377 case SHF_EXCLUDE: *p = 'E'; break;
7378 case SHF_COMPRESSED: *p = 'C'; break;
7379
7380 default:
7381 if ((filedata->file_header.e_machine == EM_X86_64
7382 || filedata->file_header.e_machine == EM_L1OM
7383 || filedata->file_header.e_machine == EM_K1OM)
7384 && flag == SHF_X86_64_LARGE)
7385 *p = 'l';
7386 else if (filedata->file_header.e_machine == EM_ARM
7387 && flag == SHF_ARM_PURECODE)
7388 *p = 'y';
7389 else if (filedata->file_header.e_machine == EM_PPC
7390 && flag == SHF_PPC_VLE)
7391 *p = 'v';
7392 else if (flag & SHF_MASKOS)
7393 {
7394 switch (filedata->file_header.e_ident[EI_OSABI])
7395 {
7396 case ELFOSABI_GNU:
7397 case ELFOSABI_FREEBSD:
7398 if (flag == SHF_GNU_RETAIN)
7399 {
7400 *p = 'R';
7401 break;
7402 }
7403 /* Fall through */
7404 case ELFOSABI_NONE:
7405 if (flag == SHF_GNU_MBIND)
7406 {
7407 /* We should not recognize SHF_GNU_MBIND for
7408 ELFOSABI_NONE, but binutils as of 2019-07-23 did
7409 not set the EI_OSABI header byte. */
7410 *p = 'D';
7411 break;
7412 }
7413 /* Fall through */
7414 default:
7415 *p = 'o';
7416 sh_flags &= ~SHF_MASKOS;
7417 break;
7418 }
7419 }
7420 else if (flag & SHF_MASKPROC)
7421 {
7422 *p = 'p';
7423 sh_flags &= ~ SHF_MASKPROC;
7424 }
7425 else
7426 *p = 'x';
7427 break;
7428 }
7429 p++;
7430 }
7431 }
7432
7433 if (do_section_details)
7434 {
7435 if (os_flags)
7436 {
7437 if (p != buff + field_size + 4)
7438 {
7439 if (size < 2 + 5 + field_size + 1)
7440 {
7441 warn (_("Internal error: not enough buffer room for section flag info"));
7442 return _("<unknown>");
7443 }
7444 size -= 2;
7445 *p++ = ',';
7446 *p++ = ' ';
7447 }
7448 size -= 5 + field_size;
7449 p += sprintf (p, "OS (%*.*lx)", field_size, field_size,
7450 (unsigned long) os_flags);
7451 }
7452 if (proc_flags)
7453 {
7454 if (p != buff + field_size + 4)
7455 {
7456 if (size < 2 + 7 + field_size + 1)
7457 {
7458 warn (_("Internal error: not enough buffer room for section flag info"));
7459 return _("<unknown>");
7460 }
7461 size -= 2;
7462 *p++ = ',';
7463 *p++ = ' ';
7464 }
7465 size -= 7 + field_size;
7466 p += sprintf (p, "PROC (%*.*lx)", field_size, field_size,
7467 (unsigned long) proc_flags);
7468 }
7469 if (unknown_flags)
7470 {
7471 if (p != buff + field_size + 4)
7472 {
7473 if (size < 2 + 10 + field_size + 1)
7474 {
7475 warn (_("Internal error: not enough buffer room for section flag info"));
7476 return _("<unknown>");
7477 }
7478 size -= 2;
7479 *p++ = ',';
7480 *p++ = ' ';
7481 }
7482 size -= 10 + field_size;
7483 p += sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
7484 (unsigned long) unknown_flags);
7485 }
7486 }
7487
7488 *p = '\0';
7489 return buff;
7490 }
7491
7492 static unsigned int ATTRIBUTE_WARN_UNUSED_RESULT
7493 get_compression_header (Elf_Internal_Chdr *chdr, unsigned char *buf,
7494 uint64_t size)
7495 {
7496 if (is_32bit_elf)
7497 {
7498 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) buf;
7499
7500 if (size < sizeof (* echdr))
7501 {
7502 error (_("Compressed section is too small even for a compression header\n"));
7503 return 0;
7504 }
7505
7506 chdr->ch_type = BYTE_GET (echdr->ch_type);
7507 chdr->ch_size = BYTE_GET (echdr->ch_size);
7508 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
7509 return sizeof (*echdr);
7510 }
7511 else
7512 {
7513 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) buf;
7514
7515 if (size < sizeof (* echdr))
7516 {
7517 error (_("Compressed section is too small even for a compression header\n"));
7518 return 0;
7519 }
7520
7521 chdr->ch_type = BYTE_GET (echdr->ch_type);
7522 chdr->ch_size = BYTE_GET (echdr->ch_size);
7523 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
7524 return sizeof (*echdr);
7525 }
7526 }
7527
7528 static bool
7529 process_section_headers (Filedata * filedata)
7530 {
7531 Elf_Internal_Shdr * section;
7532 unsigned int i;
7533
7534 if (filedata->file_header.e_shnum == 0)
7535 {
7536 /* PR binutils/12467. */
7537 if (filedata->file_header.e_shoff != 0)
7538 {
7539 warn (_("possibly corrupt ELF file header - it has a non-zero"
7540 " section header offset, but no section headers\n"));
7541 return false;
7542 }
7543 else if (do_sections)
7544 printf (_("\nThere are no sections in this file.\n"));
7545
7546 return true;
7547 }
7548
7549 if (do_sections && !do_header)
7550 {
7551 if (filedata->is_separate && process_links)
7552 printf (_("In linked file '%s': "), filedata->file_name);
7553 if (! filedata->is_separate || process_links)
7554 printf (ngettext ("There is %d section header, "
7555 "starting at offset %#" PRIx64 ":\n",
7556 "There are %d section headers, "
7557 "starting at offset %#" PRIx64 ":\n",
7558 filedata->file_header.e_shnum),
7559 filedata->file_header.e_shnum,
7560 filedata->file_header.e_shoff);
7561 }
7562
7563 if (!get_section_headers (filedata, false))
7564 return false;
7565
7566 /* Read in the string table, so that we have names to display. */
7567 if (filedata->file_header.e_shstrndx != SHN_UNDEF
7568 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
7569 {
7570 section = filedata->section_headers + filedata->file_header.e_shstrndx;
7571
7572 if (section->sh_size != 0)
7573 {
7574 filedata->string_table = (char *) get_data (NULL, filedata, section->sh_offset,
7575 1, section->sh_size,
7576 _("string table"));
7577
7578 filedata->string_table_length = filedata->string_table != NULL ? section->sh_size : 0;
7579 }
7580 }
7581
7582 /* Scan the sections for the dynamic symbol table
7583 and dynamic string table and debug sections. */
7584 eh_addr_size = is_32bit_elf ? 4 : 8;
7585 switch (filedata->file_header.e_machine)
7586 {
7587 case EM_MIPS:
7588 case EM_MIPS_RS3_LE:
7589 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
7590 FDE addresses. However, the ABI also has a semi-official ILP32
7591 variant for which the normal FDE address size rules apply.
7592
7593 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
7594 section, where XX is the size of longs in bits. Unfortunately,
7595 earlier compilers provided no way of distinguishing ILP32 objects
7596 from LP64 objects, so if there's any doubt, we should assume that
7597 the official LP64 form is being used. */
7598 if ((filedata->file_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
7599 && find_section (filedata, ".gcc_compiled_long32") == NULL)
7600 eh_addr_size = 8;
7601 break;
7602
7603 case EM_H8_300:
7604 case EM_H8_300H:
7605 switch (filedata->file_header.e_flags & EF_H8_MACH)
7606 {
7607 case E_H8_MACH_H8300:
7608 case E_H8_MACH_H8300HN:
7609 case E_H8_MACH_H8300SN:
7610 case E_H8_MACH_H8300SXN:
7611 eh_addr_size = 2;
7612 break;
7613 case E_H8_MACH_H8300H:
7614 case E_H8_MACH_H8300S:
7615 case E_H8_MACH_H8300SX:
7616 eh_addr_size = 4;
7617 break;
7618 }
7619 break;
7620
7621 case EM_M32C_OLD:
7622 case EM_M32C:
7623 switch (filedata->file_header.e_flags & EF_M32C_CPU_MASK)
7624 {
7625 case EF_M32C_CPU_M16C:
7626 eh_addr_size = 2;
7627 break;
7628 }
7629 break;
7630 }
7631
7632 #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
7633 do \
7634 { \
7635 uint64_t expected_entsize = is_32bit_elf ? size32 : size64; \
7636 if (section->sh_entsize != expected_entsize) \
7637 { \
7638 error (_("Section %d has invalid sh_entsize of %" PRIx64 "\n"), \
7639 i, section->sh_entsize); \
7640 error (_("(Using the expected size of %" PRIx64 " for the rest of this dump)\n"), \
7641 expected_entsize); \
7642 section->sh_entsize = expected_entsize; \
7643 } \
7644 } \
7645 while (0)
7646
7647 #define CHECK_ENTSIZE(section, i, type) \
7648 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
7649 sizeof (Elf64_External_##type))
7650
7651 for (i = 0, section = filedata->section_headers;
7652 i < filedata->file_header.e_shnum;
7653 i++, section++)
7654 {
7655 const char *name = section_name_print (filedata, section);
7656
7657 /* Run some sanity checks on the headers and
7658 possibly fill in some file data as well. */
7659 switch (section->sh_type)
7660 {
7661 case SHT_DYNSYM:
7662 if (filedata->dynamic_symbols != NULL)
7663 {
7664 error (_("File contains multiple dynamic symbol tables\n"));
7665 continue;
7666 }
7667
7668 CHECK_ENTSIZE (section, i, Sym);
7669 filedata->dynamic_symbols
7670 = get_elf_symbols (filedata, section, &filedata->num_dynamic_syms);
7671 filedata->dynamic_symtab_section = section;
7672 break;
7673
7674 case SHT_STRTAB:
7675 if (streq (name, ".dynstr"))
7676 {
7677 if (filedata->dynamic_strings != NULL)
7678 {
7679 error (_("File contains multiple dynamic string tables\n"));
7680 continue;
7681 }
7682
7683 filedata->dynamic_strings
7684 = (char *) get_data (NULL, filedata, section->sh_offset,
7685 1, section->sh_size, _("dynamic strings"));
7686 filedata->dynamic_strings_length
7687 = filedata->dynamic_strings == NULL ? 0 : section->sh_size;
7688 filedata->dynamic_strtab_section = section;
7689 }
7690 break;
7691
7692 case SHT_SYMTAB_SHNDX:
7693 {
7694 elf_section_list * entry = xmalloc (sizeof * entry);
7695
7696 entry->hdr = section;
7697 entry->next = filedata->symtab_shndx_list;
7698 filedata->symtab_shndx_list = entry;
7699 }
7700 break;
7701
7702 case SHT_SYMTAB:
7703 CHECK_ENTSIZE (section, i, Sym);
7704 break;
7705
7706 case SHT_GROUP:
7707 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
7708 break;
7709
7710 case SHT_REL:
7711 CHECK_ENTSIZE (section, i, Rel);
7712 if (do_checks && section->sh_size == 0)
7713 warn (_("Section '%s': zero-sized relocation section\n"), name);
7714 break;
7715
7716 case SHT_RELA:
7717 CHECK_ENTSIZE (section, i, Rela);
7718 if (do_checks && section->sh_size == 0)
7719 warn (_("Section '%s': zero-sized relocation section\n"), name);
7720 break;
7721
7722 case SHT_RELR:
7723 CHECK_ENTSIZE (section, i, Relr);
7724 break;
7725
7726 case SHT_NOTE:
7727 case SHT_PROGBITS:
7728 /* Having a zero sized section is not illegal according to the
7729 ELF standard, but it might be an indication that something
7730 is wrong. So issue a warning if we are running in lint mode. */
7731 if (do_checks && section->sh_size == 0)
7732 warn (_("Section '%s': has a size of zero - is this intended ?\n"), name);
7733 break;
7734
7735 default:
7736 break;
7737 }
7738
7739 if ((do_debugging || do_debug_info || do_debug_abbrevs
7740 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
7741 || do_debug_aranges || do_debug_frames || do_debug_macinfo
7742 || do_debug_str || do_debug_str_offsets || do_debug_loc
7743 || do_debug_ranges
7744 || do_debug_addr || do_debug_cu_index || do_debug_links)
7745 && (startswith (name, ".debug_")
7746 || startswith (name, ".zdebug_")))
7747 {
7748 if (name[1] == 'z')
7749 name += sizeof (".zdebug_") - 1;
7750 else
7751 name += sizeof (".debug_") - 1;
7752
7753 if (do_debugging
7754 || (do_debug_info && startswith (name, "info"))
7755 || (do_debug_info && startswith (name, "types"))
7756 || (do_debug_abbrevs && startswith (name, "abbrev"))
7757 || (do_debug_lines && strcmp (name, "line") == 0)
7758 || (do_debug_lines && startswith (name, "line."))
7759 || (do_debug_pubnames && startswith (name, "pubnames"))
7760 || (do_debug_pubtypes && startswith (name, "pubtypes"))
7761 || (do_debug_pubnames && startswith (name, "gnu_pubnames"))
7762 || (do_debug_pubtypes && startswith (name, "gnu_pubtypes"))
7763 || (do_debug_aranges && startswith (name, "aranges"))
7764 || (do_debug_ranges && startswith (name, "ranges"))
7765 || (do_debug_ranges && startswith (name, "rnglists"))
7766 || (do_debug_frames && startswith (name, "frame"))
7767 || (do_debug_macinfo && startswith (name, "macinfo"))
7768 || (do_debug_macinfo && startswith (name, "macro"))
7769 || (do_debug_str && startswith (name, "str"))
7770 || (do_debug_links && startswith (name, "sup"))
7771 || (do_debug_str_offsets && startswith (name, "str_offsets"))
7772 || (do_debug_loc && startswith (name, "loc"))
7773 || (do_debug_loc && startswith (name, "loclists"))
7774 || (do_debug_addr && startswith (name, "addr"))
7775 || (do_debug_cu_index && startswith (name, "cu_index"))
7776 || (do_debug_cu_index && startswith (name, "tu_index"))
7777 )
7778 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
7779 }
7780 /* Linkonce section to be combined with .debug_info at link time. */
7781 else if ((do_debugging || do_debug_info)
7782 && startswith (name, ".gnu.linkonce.wi."))
7783 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
7784 else if (do_debug_frames && streq (name, ".eh_frame"))
7785 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
7786 else if (do_gdb_index && (streq (name, ".gdb_index")
7787 || streq (name, ".debug_names")))
7788 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
7789 /* Trace sections for Itanium VMS. */
7790 else if ((do_debugging || do_trace_info || do_trace_abbrevs
7791 || do_trace_aranges)
7792 && startswith (name, ".trace_"))
7793 {
7794 name += sizeof (".trace_") - 1;
7795
7796 if (do_debugging
7797 || (do_trace_info && streq (name, "info"))
7798 || (do_trace_abbrevs && streq (name, "abbrev"))
7799 || (do_trace_aranges && streq (name, "aranges"))
7800 )
7801 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
7802 }
7803 else if ((do_debugging || do_debug_links)
7804 && (startswith (name, ".gnu_debuglink")
7805 || startswith (name, ".gnu_debugaltlink")))
7806 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
7807 }
7808
7809 if (! do_sections)
7810 return true;
7811
7812 if (filedata->is_separate && ! process_links)
7813 return true;
7814
7815 if (filedata->is_separate)
7816 printf (_("\nSection Headers in linked file '%s':\n"), filedata->file_name);
7817 else if (filedata->file_header.e_shnum > 1)
7818 printf (_("\nSection Headers:\n"));
7819 else
7820 printf (_("\nSection Header:\n"));
7821
7822 if (is_32bit_elf)
7823 {
7824 if (do_section_details)
7825 {
7826 printf (_(" [Nr] Name\n"));
7827 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
7828 }
7829 else
7830 printf
7831 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
7832 }
7833 else if (do_wide)
7834 {
7835 if (do_section_details)
7836 {
7837 printf (_(" [Nr] Name\n"));
7838 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
7839 }
7840 else
7841 printf
7842 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
7843 }
7844 else
7845 {
7846 if (do_section_details)
7847 {
7848 printf (_(" [Nr] Name\n"));
7849 printf (_(" Type Address Offset Link\n"));
7850 printf (_(" Size EntSize Info Align\n"));
7851 }
7852 else
7853 {
7854 printf (_(" [Nr] Name Type Address Offset\n"));
7855 printf (_(" Size EntSize Flags Link Info Align\n"));
7856 }
7857 }
7858
7859 if (do_section_details)
7860 printf (_(" Flags\n"));
7861
7862 for (i = 0, section = filedata->section_headers;
7863 i < filedata->file_header.e_shnum;
7864 i++, section++)
7865 {
7866 /* Run some sanity checks on the section header. */
7867
7868 /* Check the sh_link field. */
7869 switch (section->sh_type)
7870 {
7871 case SHT_REL:
7872 case SHT_RELA:
7873 if (section->sh_link == 0
7874 && (filedata->file_header.e_type == ET_EXEC
7875 || filedata->file_header.e_type == ET_DYN))
7876 /* A dynamic relocation section where all entries use a
7877 zero symbol index need not specify a symtab section. */
7878 break;
7879 /* Fall through. */
7880 case SHT_SYMTAB_SHNDX:
7881 case SHT_GROUP:
7882 case SHT_HASH:
7883 case SHT_GNU_HASH:
7884 case SHT_GNU_versym:
7885 if (section->sh_link == 0
7886 || section->sh_link >= filedata->file_header.e_shnum
7887 || (filedata->section_headers[section->sh_link].sh_type != SHT_SYMTAB
7888 && filedata->section_headers[section->sh_link].sh_type != SHT_DYNSYM))
7889 warn (_("[%2u]: Link field (%u) should index a symtab section.\n"),
7890 i, section->sh_link);
7891 break;
7892
7893 case SHT_DYNAMIC:
7894 case SHT_SYMTAB:
7895 case SHT_DYNSYM:
7896 case SHT_GNU_verneed:
7897 case SHT_GNU_verdef:
7898 case SHT_GNU_LIBLIST:
7899 if (section->sh_link == 0
7900 || section->sh_link >= filedata->file_header.e_shnum
7901 || filedata->section_headers[section->sh_link].sh_type != SHT_STRTAB)
7902 warn (_("[%2u]: Link field (%u) should index a string section.\n"),
7903 i, section->sh_link);
7904 break;
7905
7906 case SHT_INIT_ARRAY:
7907 case SHT_FINI_ARRAY:
7908 case SHT_PREINIT_ARRAY:
7909 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
7910 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
7911 i, section->sh_link);
7912 break;
7913
7914 default:
7915 /* FIXME: Add support for target specific section types. */
7916 #if 0 /* Currently we do not check other section types as there are too
7917 many special cases. Stab sections for example have a type
7918 of SHT_PROGBITS but an sh_link field that links to the .stabstr
7919 section. */
7920 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
7921 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
7922 i, section->sh_link);
7923 #endif
7924 break;
7925 }
7926
7927 /* Check the sh_info field. */
7928 switch (section->sh_type)
7929 {
7930 case SHT_REL:
7931 case SHT_RELA:
7932 if (section->sh_info == 0
7933 && (filedata->file_header.e_type == ET_EXEC
7934 || filedata->file_header.e_type == ET_DYN))
7935 /* Dynamic relocations apply to segments, so they do not
7936 need to specify the section they relocate. */
7937 break;
7938 if (section->sh_info == 0
7939 || section->sh_info >= filedata->file_header.e_shnum
7940 || (filedata->section_headers[section->sh_info].sh_type != SHT_PROGBITS
7941 && filedata->section_headers[section->sh_info].sh_type != SHT_NOBITS
7942 && filedata->section_headers[section->sh_info].sh_type != SHT_NOTE
7943 && filedata->section_headers[section->sh_info].sh_type != SHT_INIT_ARRAY
7944 && filedata->section_headers[section->sh_info].sh_type != SHT_FINI_ARRAY
7945 && filedata->section_headers[section->sh_info].sh_type != SHT_PREINIT_ARRAY
7946 /* FIXME: Are other section types valid ? */
7947 && filedata->section_headers[section->sh_info].sh_type < SHT_LOOS))
7948 warn (_("[%2u]: Info field (%u) should index a relocatable section.\n"),
7949 i, section->sh_info);
7950 break;
7951
7952 case SHT_DYNAMIC:
7953 case SHT_HASH:
7954 case SHT_SYMTAB_SHNDX:
7955 case SHT_INIT_ARRAY:
7956 case SHT_FINI_ARRAY:
7957 case SHT_PREINIT_ARRAY:
7958 if (section->sh_info != 0)
7959 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
7960 i, section->sh_info);
7961 break;
7962
7963 case SHT_GROUP:
7964 case SHT_SYMTAB:
7965 case SHT_DYNSYM:
7966 /* A symbol index - we assume that it is valid. */
7967 break;
7968
7969 default:
7970 /* FIXME: Add support for target specific section types. */
7971 if (section->sh_type == SHT_NOBITS)
7972 /* NOBITS section headers with non-zero sh_info fields can be
7973 created when a binary is stripped of everything but its debug
7974 information. The stripped sections have their headers
7975 preserved but their types set to SHT_NOBITS. So do not check
7976 this type of section. */
7977 ;
7978 else if (section->sh_flags & SHF_INFO_LINK)
7979 {
7980 if (section->sh_info < 1 || section->sh_info >= filedata->file_header.e_shnum)
7981 warn (_("[%2u]: Expected link to another section in info field"), i);
7982 }
7983 else if (section->sh_type < SHT_LOOS
7984 && (section->sh_flags & SHF_GNU_MBIND) == 0
7985 && section->sh_info != 0)
7986 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
7987 i, section->sh_info);
7988 break;
7989 }
7990
7991 /* Check the sh_size field. */
7992 if (section->sh_size > filedata->file_size
7993 && section->sh_type != SHT_NOBITS
7994 && section->sh_type != SHT_NULL
7995 && section->sh_type < SHT_LOOS)
7996 warn (_("Size of section %u is larger than the entire file!\n"), i);
7997
7998 printf (" [%2u] ", i);
7999 if (do_section_details)
8000 printf ("%s\n ", printable_section_name (filedata, section));
8001 else
8002 print_symbol (-17, section_name_print (filedata, section));
8003
8004 printf (do_wide ? " %-15s " : " %-15.15s ",
8005 get_section_type_name (filedata, section->sh_type));
8006
8007 if (is_32bit_elf)
8008 {
8009 const char * link_too_big = NULL;
8010
8011 print_vma (section->sh_addr, LONG_HEX);
8012
8013 printf ( " %6.6lx %6.6lx %2.2lx",
8014 (unsigned long) section->sh_offset,
8015 (unsigned long) section->sh_size,
8016 (unsigned long) section->sh_entsize);
8017
8018 if (do_section_details)
8019 fputs (" ", stdout);
8020 else
8021 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
8022
8023 if (section->sh_link >= filedata->file_header.e_shnum)
8024 {
8025 link_too_big = "";
8026 /* The sh_link value is out of range. Normally this indicates
8027 an error but it can have special values in Solaris binaries. */
8028 switch (filedata->file_header.e_machine)
8029 {
8030 case EM_386:
8031 case EM_IAMCU:
8032 case EM_X86_64:
8033 case EM_L1OM:
8034 case EM_K1OM:
8035 case EM_OLD_SPARCV9:
8036 case EM_SPARC32PLUS:
8037 case EM_SPARCV9:
8038 case EM_SPARC:
8039 if (section->sh_link == (SHN_BEFORE & 0xffff))
8040 link_too_big = "BEFORE";
8041 else if (section->sh_link == (SHN_AFTER & 0xffff))
8042 link_too_big = "AFTER";
8043 break;
8044 default:
8045 break;
8046 }
8047 }
8048
8049 if (do_section_details)
8050 {
8051 if (link_too_big != NULL && * link_too_big)
8052 printf ("<%s> ", link_too_big);
8053 else
8054 printf ("%2u ", section->sh_link);
8055 printf ("%3u %2lu\n", section->sh_info,
8056 (unsigned long) section->sh_addralign);
8057 }
8058 else
8059 printf ("%2u %3u %2lu\n",
8060 section->sh_link,
8061 section->sh_info,
8062 (unsigned long) section->sh_addralign);
8063
8064 if (link_too_big && ! * link_too_big)
8065 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
8066 i, section->sh_link);
8067 }
8068 else if (do_wide)
8069 {
8070 print_vma (section->sh_addr, LONG_HEX);
8071
8072 if ((long) section->sh_offset == section->sh_offset)
8073 printf (" %6.6lx", (unsigned long) section->sh_offset);
8074 else
8075 {
8076 putchar (' ');
8077 print_vma (section->sh_offset, LONG_HEX);
8078 }
8079
8080 if ((unsigned long) section->sh_size == section->sh_size)
8081 printf (" %6.6lx", (unsigned long) section->sh_size);
8082 else
8083 {
8084 putchar (' ');
8085 print_vma (section->sh_size, LONG_HEX);
8086 }
8087
8088 if ((unsigned long) section->sh_entsize == section->sh_entsize)
8089 printf (" %2.2lx", (unsigned long) section->sh_entsize);
8090 else
8091 {
8092 putchar (' ');
8093 print_vma (section->sh_entsize, LONG_HEX);
8094 }
8095
8096 if (do_section_details)
8097 fputs (" ", stdout);
8098 else
8099 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
8100
8101 printf ("%2u %3u ", section->sh_link, section->sh_info);
8102
8103 if ((unsigned long) section->sh_addralign == section->sh_addralign)
8104 printf ("%2lu\n", (unsigned long) section->sh_addralign);
8105 else
8106 {
8107 print_vma (section->sh_addralign, DEC);
8108 putchar ('\n');
8109 }
8110 }
8111 else if (do_section_details)
8112 {
8113 putchar (' ');
8114 print_vma (section->sh_addr, LONG_HEX);
8115 if ((long) section->sh_offset == section->sh_offset)
8116 printf (" %16.16lx", (unsigned long) section->sh_offset);
8117 else
8118 {
8119 printf (" ");
8120 print_vma (section->sh_offset, LONG_HEX);
8121 }
8122 printf (" %u\n ", section->sh_link);
8123 print_vma (section->sh_size, LONG_HEX);
8124 putchar (' ');
8125 print_vma (section->sh_entsize, LONG_HEX);
8126
8127 printf (" %-16u %lu\n",
8128 section->sh_info,
8129 (unsigned long) section->sh_addralign);
8130 }
8131 else
8132 {
8133 putchar (' ');
8134 print_vma (section->sh_addr, LONG_HEX);
8135 if ((long) section->sh_offset == section->sh_offset)
8136 printf (" %8.8lx", (unsigned long) section->sh_offset);
8137 else
8138 {
8139 printf (" ");
8140 print_vma (section->sh_offset, LONG_HEX);
8141 }
8142 printf ("\n ");
8143 print_vma (section->sh_size, LONG_HEX);
8144 printf (" ");
8145 print_vma (section->sh_entsize, LONG_HEX);
8146
8147 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
8148
8149 printf (" %2u %3u %lu\n",
8150 section->sh_link,
8151 section->sh_info,
8152 (unsigned long) section->sh_addralign);
8153 }
8154
8155 if (do_section_details)
8156 {
8157 printf (" %s\n", get_elf_section_flags (filedata, section->sh_flags));
8158 if ((section->sh_flags & SHF_COMPRESSED) != 0)
8159 {
8160 /* Minimum section size is 12 bytes for 32-bit compression
8161 header + 12 bytes for compressed data header. */
8162 unsigned char buf[24];
8163
8164 assert (sizeof (buf) >= sizeof (Elf64_External_Chdr));
8165 if (get_data (&buf, filedata, section->sh_offset, 1,
8166 sizeof (buf), _("compression header")))
8167 {
8168 Elf_Internal_Chdr chdr;
8169
8170 if (get_compression_header (&chdr, buf, sizeof (buf)) == 0)
8171 printf (_(" [<corrupt>]\n"));
8172 else
8173 {
8174 if (chdr.ch_type == ch_compress_zlib)
8175 printf (" ZLIB, ");
8176 else if (chdr.ch_type == ch_compress_zstd)
8177 printf (" ZSTD, ");
8178 else
8179 printf (_(" [<unknown>: 0x%x], "),
8180 chdr.ch_type);
8181 print_vma (chdr.ch_size, LONG_HEX);
8182 printf (", %lu\n", (unsigned long) chdr.ch_addralign);
8183 }
8184 }
8185 }
8186 }
8187 }
8188
8189 if (!do_section_details)
8190 {
8191 /* The ordering of the letters shown here matches the ordering of the
8192 corresponding SHF_xxx values, and hence the order in which these
8193 letters will be displayed to the user. */
8194 printf (_("Key to Flags:\n\
8195 W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\n\
8196 L (link order), O (extra OS processing required), G (group), T (TLS),\n\
8197 C (compressed), x (unknown), o (OS specific), E (exclude),\n "));
8198 switch (filedata->file_header.e_ident[EI_OSABI])
8199 {
8200 case ELFOSABI_GNU:
8201 case ELFOSABI_FREEBSD:
8202 printf (_("R (retain), "));
8203 /* Fall through */
8204 case ELFOSABI_NONE:
8205 printf (_("D (mbind), "));
8206 break;
8207 default:
8208 break;
8209 }
8210 if (filedata->file_header.e_machine == EM_X86_64
8211 || filedata->file_header.e_machine == EM_L1OM
8212 || filedata->file_header.e_machine == EM_K1OM)
8213 printf (_("l (large), "));
8214 else if (filedata->file_header.e_machine == EM_ARM)
8215 printf (_("y (purecode), "));
8216 else if (filedata->file_header.e_machine == EM_PPC)
8217 printf (_("v (VLE), "));
8218 printf ("p (processor specific)\n");
8219 }
8220
8221 return true;
8222 }
8223
8224 static bool
8225 get_symtab (Filedata *filedata, Elf_Internal_Shdr *symsec,
8226 Elf_Internal_Sym **symtab, uint64_t *nsyms,
8227 char **strtab, uint64_t *strtablen)
8228 {
8229 *strtab = NULL;
8230 *strtablen = 0;
8231 *symtab = get_elf_symbols (filedata, symsec, nsyms);
8232
8233 if (*symtab == NULL)
8234 return false;
8235
8236 if (symsec->sh_link != 0)
8237 {
8238 Elf_Internal_Shdr *strsec;
8239
8240 if (symsec->sh_link >= filedata->file_header.e_shnum)
8241 {
8242 error (_("Bad sh_link in symbol table section\n"));
8243 free (*symtab);
8244 *symtab = NULL;
8245 *nsyms = 0;
8246 return false;
8247 }
8248
8249 strsec = filedata->section_headers + symsec->sh_link;
8250
8251 *strtab = (char *) get_data (NULL, filedata, strsec->sh_offset,
8252 1, strsec->sh_size, _("string table"));
8253 if (*strtab == NULL)
8254 {
8255 free (*symtab);
8256 *symtab = NULL;
8257 *nsyms = 0;
8258 return false;
8259 }
8260 *strtablen = strsec->sh_size;
8261 }
8262 return true;
8263 }
8264
8265 static const char *
8266 get_group_flags (unsigned int flags)
8267 {
8268 static char buff[128];
8269
8270 if (flags == 0)
8271 return "";
8272 else if (flags == GRP_COMDAT)
8273 return "COMDAT ";
8274
8275 snprintf (buff, sizeof buff, "[0x%x: %s%s%s]",
8276 flags,
8277 flags & GRP_MASKOS ? _("<OS specific>") : "",
8278 flags & GRP_MASKPROC ? _("<PROC specific>") : "",
8279 (flags & ~(GRP_COMDAT | GRP_MASKOS | GRP_MASKPROC)
8280 ? _("<unknown>") : ""));
8281
8282 return buff;
8283 }
8284
8285 static bool
8286 process_section_groups (Filedata * filedata)
8287 {
8288 Elf_Internal_Shdr * section;
8289 unsigned int i;
8290 struct group * group;
8291 Elf_Internal_Shdr * symtab_sec;
8292 Elf_Internal_Shdr * strtab_sec;
8293 Elf_Internal_Sym * symtab;
8294 uint64_t num_syms;
8295 char * strtab;
8296 size_t strtab_size;
8297
8298 /* Don't process section groups unless needed. */
8299 if (!do_unwind && !do_section_groups)
8300 return true;
8301
8302 if (filedata->file_header.e_shnum == 0)
8303 {
8304 if (do_section_groups)
8305 {
8306 if (filedata->is_separate)
8307 printf (_("\nThere are no sections group in linked file '%s'.\n"),
8308 filedata->file_name);
8309 else
8310 printf (_("\nThere are no section groups in this file.\n"));
8311 }
8312 return true;
8313 }
8314
8315 if (filedata->section_headers == NULL)
8316 {
8317 error (_("Section headers are not available!\n"));
8318 /* PR 13622: This can happen with a corrupt ELF header. */
8319 return false;
8320 }
8321
8322 filedata->section_headers_groups
8323 = (struct group **) calloc (filedata->file_header.e_shnum,
8324 sizeof (struct group *));
8325
8326 if (filedata->section_headers_groups == NULL)
8327 {
8328 error (_("Out of memory reading %u section group headers\n"),
8329 filedata->file_header.e_shnum);
8330 return false;
8331 }
8332
8333 /* Scan the sections for the group section. */
8334 filedata->group_count = 0;
8335 for (i = 0, section = filedata->section_headers;
8336 i < filedata->file_header.e_shnum;
8337 i++, section++)
8338 if (section->sh_type == SHT_GROUP)
8339 filedata->group_count++;
8340
8341 if (filedata->group_count == 0)
8342 {
8343 if (do_section_groups)
8344 {
8345 if (filedata->is_separate)
8346 printf (_("\nThere are no section groups in linked file '%s'.\n"),
8347 filedata->file_name);
8348 else
8349 printf (_("\nThere are no section groups in this file.\n"));
8350 }
8351
8352 return true;
8353 }
8354
8355 filedata->section_groups = (struct group *) calloc (filedata->group_count,
8356 sizeof (struct group));
8357
8358 if (filedata->section_groups == NULL)
8359 {
8360 error (_("Out of memory reading %zu groups\n"), filedata->group_count);
8361 return false;
8362 }
8363
8364 symtab_sec = NULL;
8365 strtab_sec = NULL;
8366 symtab = NULL;
8367 num_syms = 0;
8368 strtab = NULL;
8369 strtab_size = 0;
8370
8371 if (filedata->is_separate)
8372 printf (_("Section groups in linked file '%s'\n"), filedata->file_name);
8373
8374 for (i = 0, section = filedata->section_headers, group = filedata->section_groups;
8375 i < filedata->file_header.e_shnum;
8376 i++, section++)
8377 {
8378 if (section->sh_type == SHT_GROUP)
8379 {
8380 const char * name = printable_section_name (filedata, section);
8381 const char * group_name;
8382 unsigned char * start;
8383 unsigned char * indices;
8384 unsigned int entry, j, size;
8385 Elf_Internal_Shdr * sec;
8386 Elf_Internal_Sym * sym;
8387
8388 /* Get the symbol table. */
8389 if (section->sh_link >= filedata->file_header.e_shnum
8390 || ((sec = filedata->section_headers + section->sh_link)->sh_type
8391 != SHT_SYMTAB))
8392 {
8393 error (_("Bad sh_link in group section `%s'\n"), name);
8394 continue;
8395 }
8396
8397 if (symtab_sec != sec)
8398 {
8399 symtab_sec = sec;
8400 free (symtab);
8401 symtab = get_elf_symbols (filedata, symtab_sec, & num_syms);
8402 }
8403
8404 if (symtab == NULL)
8405 {
8406 error (_("Corrupt header in group section `%s'\n"), name);
8407 continue;
8408 }
8409
8410 if (section->sh_info >= num_syms)
8411 {
8412 error (_("Bad sh_info in group section `%s'\n"), name);
8413 continue;
8414 }
8415
8416 sym = symtab + section->sh_info;
8417
8418 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
8419 {
8420 if (sym->st_shndx == 0
8421 || sym->st_shndx >= filedata->file_header.e_shnum)
8422 {
8423 error (_("Bad sh_info in group section `%s'\n"), name);
8424 continue;
8425 }
8426
8427 group_name = section_name_print (filedata,
8428 filedata->section_headers
8429 + sym->st_shndx);
8430 strtab_sec = NULL;
8431 free (strtab);
8432 strtab = NULL;
8433 strtab_size = 0;
8434 }
8435 else
8436 {
8437 /* Get the string table. */
8438 if (symtab_sec->sh_link >= filedata->file_header.e_shnum)
8439 {
8440 strtab_sec = NULL;
8441 free (strtab);
8442 strtab = NULL;
8443 strtab_size = 0;
8444 }
8445 else if (strtab_sec
8446 != (sec = filedata->section_headers + symtab_sec->sh_link))
8447 {
8448 strtab_sec = sec;
8449 free (strtab);
8450
8451 strtab = (char *) get_data (NULL, filedata, strtab_sec->sh_offset,
8452 1, strtab_sec->sh_size,
8453 _("string table"));
8454 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
8455 }
8456 group_name = sym->st_name < strtab_size
8457 ? strtab + sym->st_name : _("<corrupt>");
8458 }
8459
8460 /* PR 17531: file: loop. */
8461 if (section->sh_entsize > section->sh_size)
8462 {
8463 error (_("Section %s has sh_entsize (%#" PRIx64 ")"
8464 " which is larger than its size (%#" PRIx64 ")\n"),
8465 printable_section_name (filedata, section),
8466 section->sh_entsize,
8467 section->sh_size);
8468 continue;
8469 }
8470
8471 start = (unsigned char *) get_data (NULL, filedata, section->sh_offset,
8472 1, section->sh_size,
8473 _("section data"));
8474 if (start == NULL)
8475 continue;
8476
8477 indices = start;
8478 size = (section->sh_size / section->sh_entsize) - 1;
8479 entry = byte_get (indices, 4);
8480 indices += 4;
8481
8482 if (do_section_groups)
8483 {
8484 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
8485 get_group_flags (entry), i, name, group_name, size);
8486
8487 printf (_(" [Index] Name\n"));
8488 }
8489
8490 group->group_index = i;
8491
8492 for (j = 0; j < size; j++)
8493 {
8494 struct group_list * g;
8495
8496 entry = byte_get (indices, 4);
8497 indices += 4;
8498
8499 if (entry >= filedata->file_header.e_shnum)
8500 {
8501 static unsigned num_group_errors = 0;
8502
8503 if (num_group_errors ++ < 10)
8504 {
8505 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
8506 entry, i, filedata->file_header.e_shnum - 1);
8507 if (num_group_errors == 10)
8508 warn (_("Further error messages about overlarge group section indices suppressed\n"));
8509 }
8510 continue;
8511 }
8512
8513 if (filedata->section_headers_groups [entry] != NULL)
8514 {
8515 if (entry)
8516 {
8517 static unsigned num_errs = 0;
8518
8519 if (num_errs ++ < 10)
8520 {
8521 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
8522 entry, i,
8523 filedata->section_headers_groups [entry]->group_index);
8524 if (num_errs == 10)
8525 warn (_("Further error messages about already contained group sections suppressed\n"));
8526 }
8527 continue;
8528 }
8529 else
8530 {
8531 /* Intel C/C++ compiler may put section 0 in a
8532 section group. We just warn it the first time
8533 and ignore it afterwards. */
8534 static bool warned = false;
8535 if (!warned)
8536 {
8537 error (_("section 0 in group section [%5u]\n"),
8538 filedata->section_headers_groups [entry]->group_index);
8539 warned = true;
8540 }
8541 }
8542 }
8543
8544 filedata->section_headers_groups [entry] = group;
8545
8546 if (do_section_groups)
8547 {
8548 sec = filedata->section_headers + entry;
8549 printf (" [%5u] %s\n", entry, printable_section_name (filedata, sec));
8550 }
8551
8552 g = (struct group_list *) xmalloc (sizeof (struct group_list));
8553 g->section_index = entry;
8554 g->next = group->root;
8555 group->root = g;
8556 }
8557
8558 free (start);
8559
8560 group++;
8561 }
8562 }
8563
8564 free (symtab);
8565 free (strtab);
8566 return true;
8567 }
8568
8569 /* Data used to display dynamic fixups. */
8570
8571 struct ia64_vms_dynfixup
8572 {
8573 uint64_t needed_ident; /* Library ident number. */
8574 uint64_t needed; /* Index in the dstrtab of the library name. */
8575 uint64_t fixup_needed; /* Index of the library. */
8576 uint64_t fixup_rela_cnt; /* Number of fixups. */
8577 uint64_t fixup_rela_off; /* Fixups offset in the dynamic segment. */
8578 };
8579
8580 /* Data used to display dynamic relocations. */
8581
8582 struct ia64_vms_dynimgrela
8583 {
8584 uint64_t img_rela_cnt; /* Number of relocations. */
8585 uint64_t img_rela_off; /* Reloc offset in the dynamic segment. */
8586 };
8587
8588 /* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
8589 library). */
8590
8591 static bool
8592 dump_ia64_vms_dynamic_fixups (Filedata * filedata,
8593 struct ia64_vms_dynfixup * fixup,
8594 const char * strtab,
8595 unsigned int strtab_sz)
8596 {
8597 Elf64_External_VMS_IMAGE_FIXUP * imfs;
8598 size_t i;
8599 const char * lib_name;
8600
8601 imfs = get_data (NULL, filedata,
8602 filedata->dynamic_addr + fixup->fixup_rela_off,
8603 sizeof (*imfs), fixup->fixup_rela_cnt,
8604 _("dynamic section image fixups"));
8605 if (!imfs)
8606 return false;
8607
8608 if (fixup->needed < strtab_sz)
8609 lib_name = strtab + fixup->needed;
8610 else
8611 {
8612 warn (_("corrupt library name index of %#" PRIx64
8613 " found in dynamic entry"), fixup->needed);
8614 lib_name = "???";
8615 }
8616
8617 printf (_("\nImage fixups for needed library #%" PRId64
8618 ": %s - ident: %" PRIx64 "\n"),
8619 fixup->fixup_needed, lib_name, fixup->needed_ident);
8620 printf
8621 (_("Seg Offset Type SymVec DataType\n"));
8622
8623 for (i = 0; i < (size_t) fixup->fixup_rela_cnt; i++)
8624 {
8625 unsigned int type;
8626 const char *rtype;
8627
8628 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
8629 printf ("%016" PRIx64 " ", BYTE_GET (imfs [i].fixup_offset));
8630 type = BYTE_GET (imfs [i].type);
8631 rtype = elf_ia64_reloc_type (type);
8632 if (rtype == NULL)
8633 printf ("0x%08x ", type);
8634 else
8635 printf ("%-32s ", rtype);
8636 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
8637 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
8638 }
8639
8640 free (imfs);
8641 return true;
8642 }
8643
8644 /* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
8645
8646 static bool
8647 dump_ia64_vms_dynamic_relocs (Filedata * filedata, struct ia64_vms_dynimgrela *imgrela)
8648 {
8649 Elf64_External_VMS_IMAGE_RELA *imrs;
8650 size_t i;
8651
8652 imrs = get_data (NULL, filedata,
8653 filedata->dynamic_addr + imgrela->img_rela_off,
8654 sizeof (*imrs), imgrela->img_rela_cnt,
8655 _("dynamic section image relocations"));
8656 if (!imrs)
8657 return false;
8658
8659 printf (_("\nImage relocs\n"));
8660 printf
8661 (_("Seg Offset Type Addend Seg Sym Off\n"));
8662
8663 for (i = 0; i < (size_t) imgrela->img_rela_cnt; i++)
8664 {
8665 unsigned int type;
8666 const char *rtype;
8667
8668 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
8669 printf ("%08" PRIx64 " ", BYTE_GET (imrs [i].rela_offset));
8670 type = BYTE_GET (imrs [i].type);
8671 rtype = elf_ia64_reloc_type (type);
8672 if (rtype == NULL)
8673 printf ("0x%08x ", type);
8674 else
8675 printf ("%-31s ", rtype);
8676 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
8677 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
8678 printf ("%08" PRIx64 "\n", BYTE_GET (imrs [i].sym_offset));
8679 }
8680
8681 free (imrs);
8682 return true;
8683 }
8684
8685 /* Display IA-64 OpenVMS dynamic relocations and fixups. */
8686
8687 static bool
8688 process_ia64_vms_dynamic_relocs (Filedata * filedata)
8689 {
8690 struct ia64_vms_dynfixup fixup;
8691 struct ia64_vms_dynimgrela imgrela;
8692 Elf_Internal_Dyn *entry;
8693 uint64_t strtab_off = 0;
8694 uint64_t strtab_sz = 0;
8695 char *strtab = NULL;
8696 bool res = true;
8697
8698 memset (&fixup, 0, sizeof (fixup));
8699 memset (&imgrela, 0, sizeof (imgrela));
8700
8701 /* Note: the order of the entries is specified by the OpenVMS specs. */
8702 for (entry = filedata->dynamic_section;
8703 entry < filedata->dynamic_section + filedata->dynamic_nent;
8704 entry++)
8705 {
8706 switch (entry->d_tag)
8707 {
8708 case DT_IA_64_VMS_STRTAB_OFFSET:
8709 strtab_off = entry->d_un.d_val;
8710 break;
8711 case DT_STRSZ:
8712 strtab_sz = entry->d_un.d_val;
8713 if (strtab == NULL)
8714 strtab = get_data (NULL, filedata,
8715 filedata->dynamic_addr + strtab_off,
8716 1, strtab_sz, _("dynamic string section"));
8717 if (strtab == NULL)
8718 strtab_sz = 0;
8719 break;
8720
8721 case DT_IA_64_VMS_NEEDED_IDENT:
8722 fixup.needed_ident = entry->d_un.d_val;
8723 break;
8724 case DT_NEEDED:
8725 fixup.needed = entry->d_un.d_val;
8726 break;
8727 case DT_IA_64_VMS_FIXUP_NEEDED:
8728 fixup.fixup_needed = entry->d_un.d_val;
8729 break;
8730 case DT_IA_64_VMS_FIXUP_RELA_CNT:
8731 fixup.fixup_rela_cnt = entry->d_un.d_val;
8732 break;
8733 case DT_IA_64_VMS_FIXUP_RELA_OFF:
8734 fixup.fixup_rela_off = entry->d_un.d_val;
8735 if (! dump_ia64_vms_dynamic_fixups (filedata, &fixup, strtab, strtab_sz))
8736 res = false;
8737 break;
8738 case DT_IA_64_VMS_IMG_RELA_CNT:
8739 imgrela.img_rela_cnt = entry->d_un.d_val;
8740 break;
8741 case DT_IA_64_VMS_IMG_RELA_OFF:
8742 imgrela.img_rela_off = entry->d_un.d_val;
8743 if (! dump_ia64_vms_dynamic_relocs (filedata, &imgrela))
8744 res = false;
8745 break;
8746
8747 default:
8748 break;
8749 }
8750 }
8751
8752 free (strtab);
8753
8754 return res;
8755 }
8756
8757 static struct
8758 {
8759 const char * name;
8760 int reloc;
8761 int size;
8762 relocation_type rel_type;
8763 }
8764 dynamic_relocations [] =
8765 {
8766 { "REL", DT_REL, DT_RELSZ, reltype_rel },
8767 { "RELA", DT_RELA, DT_RELASZ, reltype_rela },
8768 { "RELR", DT_RELR, DT_RELRSZ, reltype_relr },
8769 { "PLT", DT_JMPREL, DT_PLTRELSZ, reltype_unknown }
8770 };
8771
8772 /* Process the reloc section. */
8773
8774 static bool
8775 process_relocs (Filedata * filedata)
8776 {
8777 uint64_t rel_size;
8778 uint64_t rel_offset;
8779
8780 if (!do_reloc)
8781 return true;
8782
8783 if (do_using_dynamic)
8784 {
8785 relocation_type rel_type;
8786 const char * name;
8787 bool has_dynamic_reloc;
8788 unsigned int i;
8789
8790 has_dynamic_reloc = false;
8791
8792 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
8793 {
8794 rel_type = dynamic_relocations [i].rel_type;
8795 name = dynamic_relocations [i].name;
8796 rel_size = filedata->dynamic_info[dynamic_relocations [i].size];
8797 rel_offset = filedata->dynamic_info[dynamic_relocations [i].reloc];
8798
8799 if (rel_size)
8800 has_dynamic_reloc = true;
8801
8802 if (rel_type == reltype_unknown)
8803 {
8804 if (dynamic_relocations [i].reloc == DT_JMPREL)
8805 switch (filedata->dynamic_info[DT_PLTREL])
8806 {
8807 case DT_REL:
8808 rel_type = reltype_rel;
8809 break;
8810 case DT_RELA:
8811 rel_type = reltype_rela;
8812 break;
8813 }
8814 }
8815
8816 if (rel_size)
8817 {
8818 if (filedata->is_separate)
8819 printf
8820 (_("\nIn linked file '%s' section '%s' at offset %#" PRIx64
8821 " contains %" PRId64 " bytes:\n"),
8822 filedata->file_name, name, rel_offset, rel_size);
8823 else
8824 printf
8825 (_("\n'%s' relocation section at offset %#" PRIx64
8826 " contains %" PRId64 " bytes:\n"),
8827 name, rel_offset, rel_size);
8828
8829 dump_relocations (filedata,
8830 offset_from_vma (filedata, rel_offset, rel_size),
8831 rel_size,
8832 filedata->dynamic_symbols,
8833 filedata->num_dynamic_syms,
8834 filedata->dynamic_strings,
8835 filedata->dynamic_strings_length,
8836 rel_type, true /* is_dynamic */);
8837 }
8838 }
8839
8840 if (is_ia64_vms (filedata))
8841 if (process_ia64_vms_dynamic_relocs (filedata))
8842 has_dynamic_reloc = true;
8843
8844 if (! has_dynamic_reloc)
8845 {
8846 if (filedata->is_separate)
8847 printf (_("\nThere are no dynamic relocations in linked file '%s'.\n"),
8848 filedata->file_name);
8849 else
8850 printf (_("\nThere are no dynamic relocations in this file.\n"));
8851 }
8852 }
8853 else
8854 {
8855 Elf_Internal_Shdr * section;
8856 size_t i;
8857 bool found = false;
8858
8859 for (i = 0, section = filedata->section_headers;
8860 i < filedata->file_header.e_shnum;
8861 i++, section++)
8862 {
8863 if ( section->sh_type != SHT_RELA
8864 && section->sh_type != SHT_REL
8865 && section->sh_type != SHT_RELR)
8866 continue;
8867
8868 rel_offset = section->sh_offset;
8869 rel_size = section->sh_size;
8870
8871 if (rel_size)
8872 {
8873 relocation_type rel_type;
8874 uint64_t num_rela;
8875
8876 if (filedata->is_separate)
8877 printf (_("\nIn linked file '%s' relocation section "),
8878 filedata->file_name);
8879 else
8880 printf (_("\nRelocation section "));
8881
8882 if (filedata->string_table == NULL)
8883 printf ("%d", section->sh_name);
8884 else
8885 printf ("'%s'", printable_section_name (filedata, section));
8886
8887 num_rela = rel_size / section->sh_entsize;
8888 printf (ngettext (" at offset %#" PRIx64
8889 " contains %" PRIu64 " entry:\n",
8890 " at offset %#" PRIx64
8891 " contains %" PRId64 " entries:\n",
8892 num_rela),
8893 rel_offset, num_rela);
8894
8895 rel_type = section->sh_type == SHT_RELA ? reltype_rela :
8896 section->sh_type == SHT_REL ? reltype_rel : reltype_relr;
8897
8898 if (section->sh_link != 0
8899 && section->sh_link < filedata->file_header.e_shnum)
8900 {
8901 Elf_Internal_Shdr *symsec;
8902 Elf_Internal_Sym *symtab;
8903 uint64_t nsyms;
8904 uint64_t strtablen = 0;
8905 char *strtab = NULL;
8906
8907 symsec = filedata->section_headers + section->sh_link;
8908 if (symsec->sh_type != SHT_SYMTAB
8909 && symsec->sh_type != SHT_DYNSYM)
8910 continue;
8911
8912 if (!get_symtab (filedata, symsec,
8913 &symtab, &nsyms, &strtab, &strtablen))
8914 continue;
8915
8916 dump_relocations (filedata, rel_offset, rel_size,
8917 symtab, nsyms, strtab, strtablen,
8918 rel_type,
8919 symsec->sh_type == SHT_DYNSYM);
8920 free (strtab);
8921 free (symtab);
8922 }
8923 else
8924 dump_relocations (filedata, rel_offset, rel_size,
8925 NULL, 0, NULL, 0, rel_type, false /* is_dynamic */);
8926
8927 found = true;
8928 }
8929 }
8930
8931 if (! found)
8932 {
8933 /* Users sometimes forget the -D option, so try to be helpful. */
8934 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
8935 {
8936 if (filedata->dynamic_info[dynamic_relocations [i].size])
8937 {
8938 if (filedata->is_separate)
8939 printf (_("\nThere are no static relocations in linked file '%s'."),
8940 filedata->file_name);
8941 else
8942 printf (_("\nThere are no static relocations in this file."));
8943 printf (_("\nTo see the dynamic relocations add --use-dynamic to the command line.\n"));
8944
8945 break;
8946 }
8947 }
8948 if (i == ARRAY_SIZE (dynamic_relocations))
8949 {
8950 if (filedata->is_separate)
8951 printf (_("\nThere are no relocations in linked file '%s'.\n"),
8952 filedata->file_name);
8953 else
8954 printf (_("\nThere are no relocations in this file.\n"));
8955 }
8956 }
8957 }
8958
8959 return true;
8960 }
8961
8962 /* An absolute address consists of a section and an offset. If the
8963 section is NULL, the offset itself is the address, otherwise, the
8964 address equals to LOAD_ADDRESS(section) + offset. */
8965
8966 struct absaddr
8967 {
8968 unsigned short section;
8969 uint64_t offset;
8970 };
8971
8972 /* Find the nearest symbol at or below ADDR. Returns the symbol
8973 name, if found, and the offset from the symbol to ADDR. */
8974
8975 static void
8976 find_symbol_for_address (Filedata *filedata,
8977 Elf_Internal_Sym *symtab,
8978 uint64_t nsyms,
8979 const char *strtab,
8980 uint64_t strtab_size,
8981 struct absaddr addr,
8982 const char **symname,
8983 uint64_t *offset)
8984 {
8985 uint64_t dist = 0x100000;
8986 Elf_Internal_Sym * sym;
8987 Elf_Internal_Sym * beg;
8988 Elf_Internal_Sym * end;
8989 Elf_Internal_Sym * best = NULL;
8990
8991 REMOVE_ARCH_BITS (addr.offset);
8992 beg = symtab;
8993 end = symtab + nsyms;
8994
8995 while (beg < end)
8996 {
8997 uint64_t value;
8998
8999 sym = beg + (end - beg) / 2;
9000
9001 value = sym->st_value;
9002 REMOVE_ARCH_BITS (value);
9003
9004 if (sym->st_name != 0
9005 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
9006 && addr.offset >= value
9007 && addr.offset - value < dist)
9008 {
9009 best = sym;
9010 dist = addr.offset - value;
9011 if (!dist)
9012 break;
9013 }
9014
9015 if (addr.offset < value)
9016 end = sym;
9017 else
9018 beg = sym + 1;
9019 }
9020
9021 if (best)
9022 {
9023 *symname = (best->st_name >= strtab_size
9024 ? _("<corrupt>") : strtab + best->st_name);
9025 *offset = dist;
9026 return;
9027 }
9028
9029 *symname = NULL;
9030 *offset = addr.offset;
9031 }
9032
9033 static /* signed */ int
9034 symcmp (const void *p, const void *q)
9035 {
9036 Elf_Internal_Sym *sp = (Elf_Internal_Sym *) p;
9037 Elf_Internal_Sym *sq = (Elf_Internal_Sym *) q;
9038
9039 return sp->st_value > sq->st_value ? 1 : (sp->st_value < sq->st_value ? -1 : 0);
9040 }
9041
9042 /* Process the unwind section. */
9043
9044 #include "unwind-ia64.h"
9045
9046 struct ia64_unw_table_entry
9047 {
9048 struct absaddr start;
9049 struct absaddr end;
9050 struct absaddr info;
9051 };
9052
9053 struct ia64_unw_aux_info
9054 {
9055 struct ia64_unw_table_entry * table; /* Unwind table. */
9056 uint64_t table_len; /* Length of unwind table. */
9057 unsigned char * info; /* Unwind info. */
9058 uint64_t info_size; /* Size of unwind info. */
9059 uint64_t info_addr; /* Starting address of unwind info. */
9060 uint64_t seg_base; /* Starting address of segment. */
9061 Elf_Internal_Sym * symtab; /* The symbol table. */
9062 uint64_t nsyms; /* Number of symbols. */
9063 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
9064 uint64_t nfuns; /* Number of entries in funtab. */
9065 char * strtab; /* The string table. */
9066 uint64_t strtab_size; /* Size of string table. */
9067 };
9068
9069 static bool
9070 dump_ia64_unwind (Filedata * filedata, struct ia64_unw_aux_info * aux)
9071 {
9072 struct ia64_unw_table_entry * tp;
9073 size_t j, nfuns;
9074 int in_body;
9075 bool res = true;
9076
9077 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
9078 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
9079 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
9080 aux->funtab[nfuns++] = aux->symtab[j];
9081 aux->nfuns = nfuns;
9082 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
9083
9084 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
9085 {
9086 uint64_t stamp;
9087 uint64_t offset;
9088 const unsigned char * dp;
9089 const unsigned char * head;
9090 const unsigned char * end;
9091 const char * procname;
9092
9093 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
9094 aux->strtab_size, tp->start, &procname, &offset);
9095
9096 fputs ("\n<", stdout);
9097
9098 if (procname)
9099 {
9100 fputs (procname, stdout);
9101
9102 if (offset)
9103 printf ("+%" PRIx64, offset);
9104 }
9105
9106 fputs (">: [", stdout);
9107 print_vma (tp->start.offset, PREFIX_HEX);
9108 fputc ('-', stdout);
9109 print_vma (tp->end.offset, PREFIX_HEX);
9110 printf ("], info at +0x%" PRIx64 "\n",
9111 tp->info.offset - aux->seg_base);
9112
9113 /* PR 17531: file: 86232b32. */
9114 if (aux->info == NULL)
9115 continue;
9116
9117 offset = tp->info.offset;
9118 if (tp->info.section)
9119 {
9120 if (tp->info.section >= filedata->file_header.e_shnum)
9121 {
9122 warn (_("Invalid section %u in table entry %td\n"),
9123 tp->info.section, tp - aux->table);
9124 res = false;
9125 continue;
9126 }
9127 offset += filedata->section_headers[tp->info.section].sh_addr;
9128 }
9129 offset -= aux->info_addr;
9130 /* PR 17531: file: 0997b4d1. */
9131 if (offset >= aux->info_size
9132 || aux->info_size - offset < 8)
9133 {
9134 warn (_("Invalid offset %" PRIx64 " in table entry %td\n"),
9135 tp->info.offset, tp - aux->table);
9136 res = false;
9137 continue;
9138 }
9139
9140 head = aux->info + offset;
9141 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
9142
9143 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
9144 (unsigned) UNW_VER (stamp),
9145 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
9146 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
9147 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
9148 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
9149
9150 if (UNW_VER (stamp) != 1)
9151 {
9152 printf (_("\tUnknown version.\n"));
9153 continue;
9154 }
9155
9156 in_body = 0;
9157 end = head + 8 + eh_addr_size * UNW_LENGTH (stamp);
9158 /* PR 17531: file: 16ceda89. */
9159 if (end > aux->info + aux->info_size)
9160 end = aux->info + aux->info_size;
9161 for (dp = head + 8; dp < end;)
9162 dp = unw_decode (dp, in_body, & in_body, end);
9163 }
9164
9165 free (aux->funtab);
9166
9167 return res;
9168 }
9169
9170 static bool
9171 slurp_ia64_unwind_table (Filedata * filedata,
9172 struct ia64_unw_aux_info * aux,
9173 Elf_Internal_Shdr * sec)
9174 {
9175 uint64_t size, nrelas, i;
9176 Elf_Internal_Phdr * seg;
9177 struct ia64_unw_table_entry * tep;
9178 Elf_Internal_Shdr * relsec;
9179 Elf_Internal_Rela * rela;
9180 Elf_Internal_Rela * rp;
9181 unsigned char * table;
9182 unsigned char * tp;
9183 Elf_Internal_Sym * sym;
9184 const char * relname;
9185
9186 aux->table_len = 0;
9187
9188 /* First, find the starting address of the segment that includes
9189 this section: */
9190
9191 if (filedata->file_header.e_phnum)
9192 {
9193 if (! get_program_headers (filedata))
9194 return false;
9195
9196 for (seg = filedata->program_headers;
9197 seg < filedata->program_headers + filedata->file_header.e_phnum;
9198 ++seg)
9199 {
9200 if (seg->p_type != PT_LOAD)
9201 continue;
9202
9203 if (sec->sh_addr >= seg->p_vaddr
9204 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
9205 {
9206 aux->seg_base = seg->p_vaddr;
9207 break;
9208 }
9209 }
9210 }
9211
9212 /* Second, build the unwind table from the contents of the unwind section: */
9213 size = sec->sh_size;
9214 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
9215 _("unwind table"));
9216 if (!table)
9217 return false;
9218
9219 aux->table_len = size / (3 * eh_addr_size);
9220 aux->table = (struct ia64_unw_table_entry *)
9221 xcmalloc (aux->table_len, sizeof (aux->table[0]));
9222 tep = aux->table;
9223
9224 for (tp = table; tp <= table + size - (3 * eh_addr_size); ++tep)
9225 {
9226 tep->start.section = SHN_UNDEF;
9227 tep->end.section = SHN_UNDEF;
9228 tep->info.section = SHN_UNDEF;
9229 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
9230 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
9231 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
9232 tep->start.offset += aux->seg_base;
9233 tep->end.offset += aux->seg_base;
9234 tep->info.offset += aux->seg_base;
9235 }
9236 free (table);
9237
9238 /* Third, apply any relocations to the unwind table: */
9239 for (relsec = filedata->section_headers;
9240 relsec < filedata->section_headers + filedata->file_header.e_shnum;
9241 ++relsec)
9242 {
9243 if (relsec->sh_type != SHT_RELA
9244 || relsec->sh_info >= filedata->file_header.e_shnum
9245 || filedata->section_headers + relsec->sh_info != sec)
9246 continue;
9247
9248 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
9249 & rela, & nrelas))
9250 {
9251 free (aux->table);
9252 aux->table = NULL;
9253 aux->table_len = 0;
9254 return false;
9255 }
9256
9257 for (rp = rela; rp < rela + nrelas; ++rp)
9258 {
9259 unsigned int sym_ndx;
9260 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
9261 relname = elf_ia64_reloc_type (r_type);
9262
9263 /* PR 17531: file: 9fa67536. */
9264 if (relname == NULL)
9265 {
9266 warn (_("Skipping unknown relocation type: %u\n"), r_type);
9267 continue;
9268 }
9269
9270 if (! startswith (relname, "R_IA64_SEGREL"))
9271 {
9272 warn (_("Skipping unexpected relocation type: %s\n"), relname);
9273 continue;
9274 }
9275
9276 i = rp->r_offset / (3 * eh_addr_size);
9277
9278 /* PR 17531: file: 5bc8d9bf. */
9279 if (i >= aux->table_len)
9280 {
9281 warn (_("Skipping reloc with overlarge offset: %#" PRIx64 "\n"),
9282 i);
9283 continue;
9284 }
9285
9286 sym_ndx = get_reloc_symindex (rp->r_info);
9287 if (sym_ndx >= aux->nsyms)
9288 {
9289 warn (_("Skipping reloc with invalid symbol index: %u\n"),
9290 sym_ndx);
9291 continue;
9292 }
9293 sym = aux->symtab + sym_ndx;
9294
9295 switch (rp->r_offset / eh_addr_size % 3)
9296 {
9297 case 0:
9298 aux->table[i].start.section = sym->st_shndx;
9299 aux->table[i].start.offset = rp->r_addend + sym->st_value;
9300 break;
9301 case 1:
9302 aux->table[i].end.section = sym->st_shndx;
9303 aux->table[i].end.offset = rp->r_addend + sym->st_value;
9304 break;
9305 case 2:
9306 aux->table[i].info.section = sym->st_shndx;
9307 aux->table[i].info.offset = rp->r_addend + sym->st_value;
9308 break;
9309 default:
9310 break;
9311 }
9312 }
9313
9314 free (rela);
9315 }
9316
9317 return true;
9318 }
9319
9320 static bool
9321 ia64_process_unwind (Filedata * filedata)
9322 {
9323 Elf_Internal_Shdr * sec;
9324 Elf_Internal_Shdr * unwsec = NULL;
9325 uint64_t i, unwcount = 0, unwstart = 0;
9326 struct ia64_unw_aux_info aux;
9327 bool res = true;
9328
9329 memset (& aux, 0, sizeof (aux));
9330
9331 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
9332 {
9333 if (sec->sh_type == SHT_SYMTAB)
9334 {
9335 if (aux.symtab)
9336 {
9337 error (_("Multiple symbol tables encountered\n"));
9338 free (aux.symtab);
9339 aux.symtab = NULL;
9340 free (aux.strtab);
9341 aux.strtab = NULL;
9342 }
9343 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
9344 &aux.strtab, &aux.strtab_size))
9345 return false;
9346 }
9347 else if (sec->sh_type == SHT_IA_64_UNWIND)
9348 unwcount++;
9349 }
9350
9351 if (!unwcount)
9352 printf (_("\nThere are no unwind sections in this file.\n"));
9353
9354 while (unwcount-- > 0)
9355 {
9356 const char *suffix;
9357 size_t len, len2;
9358
9359 for (i = unwstart, sec = filedata->section_headers + unwstart, unwsec = NULL;
9360 i < filedata->file_header.e_shnum; ++i, ++sec)
9361 if (sec->sh_type == SHT_IA_64_UNWIND)
9362 {
9363 unwsec = sec;
9364 break;
9365 }
9366 /* We have already counted the number of SHT_IA64_UNWIND
9367 sections so the loop above should never fail. */
9368 assert (unwsec != NULL);
9369
9370 unwstart = i + 1;
9371 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
9372
9373 if ((unwsec->sh_flags & SHF_GROUP) != 0)
9374 {
9375 /* We need to find which section group it is in. */
9376 struct group_list * g;
9377
9378 if (filedata->section_headers_groups == NULL
9379 || filedata->section_headers_groups[i] == NULL)
9380 i = filedata->file_header.e_shnum;
9381 else
9382 {
9383 g = filedata->section_headers_groups[i]->root;
9384
9385 for (; g != NULL; g = g->next)
9386 {
9387 sec = filedata->section_headers + g->section_index;
9388
9389 if (section_name_valid (filedata, sec)
9390 && streq (section_name (filedata, sec),
9391 ELF_STRING_ia64_unwind_info))
9392 break;
9393 }
9394
9395 if (g == NULL)
9396 i = filedata->file_header.e_shnum;
9397 }
9398 }
9399 else if (section_name_valid (filedata, unwsec)
9400 && startswith (section_name (filedata, unwsec),
9401 ELF_STRING_ia64_unwind_once))
9402 {
9403 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
9404 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
9405 suffix = section_name (filedata, unwsec) + len;
9406 for (i = 0, sec = filedata->section_headers;
9407 i < filedata->file_header.e_shnum;
9408 ++i, ++sec)
9409 if (section_name_valid (filedata, sec)
9410 && startswith (section_name (filedata, sec),
9411 ELF_STRING_ia64_unwind_info_once)
9412 && streq (section_name (filedata, sec) + len2, suffix))
9413 break;
9414 }
9415 else
9416 {
9417 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
9418 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
9419 len = sizeof (ELF_STRING_ia64_unwind) - 1;
9420 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
9421 suffix = "";
9422 if (section_name_valid (filedata, unwsec)
9423 && startswith (section_name (filedata, unwsec),
9424 ELF_STRING_ia64_unwind))
9425 suffix = section_name (filedata, unwsec) + len;
9426 for (i = 0, sec = filedata->section_headers;
9427 i < filedata->file_header.e_shnum;
9428 ++i, ++sec)
9429 if (section_name_valid (filedata, sec)
9430 && startswith (section_name (filedata, sec),
9431 ELF_STRING_ia64_unwind_info)
9432 && streq (section_name (filedata, sec) + len2, suffix))
9433 break;
9434 }
9435
9436 if (i == filedata->file_header.e_shnum)
9437 {
9438 printf (_("\nCould not find unwind info section for "));
9439
9440 if (filedata->string_table == NULL)
9441 printf ("%d", unwsec->sh_name);
9442 else
9443 printf ("'%s'", printable_section_name (filedata, unwsec));
9444 }
9445 else
9446 {
9447 aux.info_addr = sec->sh_addr;
9448 aux.info = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1,
9449 sec->sh_size,
9450 _("unwind info"));
9451 aux.info_size = aux.info == NULL ? 0 : sec->sh_size;
9452
9453 printf (_("\nUnwind section "));
9454
9455 if (filedata->string_table == NULL)
9456 printf ("%d", unwsec->sh_name);
9457 else
9458 printf ("'%s'", printable_section_name (filedata, unwsec));
9459
9460 printf (_(" at offset %#" PRIx64 " contains %" PRIu64 " entries:\n"),
9461 unwsec->sh_offset,
9462 unwsec->sh_size / (3 * eh_addr_size));
9463
9464 if (slurp_ia64_unwind_table (filedata, & aux, unwsec)
9465 && aux.table_len > 0)
9466 dump_ia64_unwind (filedata, & aux);
9467
9468 free ((char *) aux.table);
9469 free ((char *) aux.info);
9470 aux.table = NULL;
9471 aux.info = NULL;
9472 }
9473 }
9474
9475 free (aux.symtab);
9476 free ((char *) aux.strtab);
9477
9478 return res;
9479 }
9480
9481 struct hppa_unw_table_entry
9482 {
9483 struct absaddr start;
9484 struct absaddr end;
9485 unsigned int Cannot_unwind:1; /* 0 */
9486 unsigned int Millicode:1; /* 1 */
9487 unsigned int Millicode_save_sr0:1; /* 2 */
9488 unsigned int Region_description:2; /* 3..4 */
9489 unsigned int reserved1:1; /* 5 */
9490 unsigned int Entry_SR:1; /* 6 */
9491 unsigned int Entry_FR:4; /* Number saved 7..10 */
9492 unsigned int Entry_GR:5; /* Number saved 11..15 */
9493 unsigned int Args_stored:1; /* 16 */
9494 unsigned int Variable_Frame:1; /* 17 */
9495 unsigned int Separate_Package_Body:1; /* 18 */
9496 unsigned int Frame_Extension_Millicode:1; /* 19 */
9497 unsigned int Stack_Overflow_Check:1; /* 20 */
9498 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
9499 unsigned int Ada_Region:1; /* 22 */
9500 unsigned int cxx_info:1; /* 23 */
9501 unsigned int cxx_try_catch:1; /* 24 */
9502 unsigned int sched_entry_seq:1; /* 25 */
9503 unsigned int reserved2:1; /* 26 */
9504 unsigned int Save_SP:1; /* 27 */
9505 unsigned int Save_RP:1; /* 28 */
9506 unsigned int Save_MRP_in_frame:1; /* 29 */
9507 unsigned int extn_ptr_defined:1; /* 30 */
9508 unsigned int Cleanup_defined:1; /* 31 */
9509
9510 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
9511 unsigned int HP_UX_interrupt_marker:1; /* 1 */
9512 unsigned int Large_frame:1; /* 2 */
9513 unsigned int Pseudo_SP_Set:1; /* 3 */
9514 unsigned int reserved4:1; /* 4 */
9515 unsigned int Total_frame_size:27; /* 5..31 */
9516 };
9517
9518 struct hppa_unw_aux_info
9519 {
9520 struct hppa_unw_table_entry * table; /* Unwind table. */
9521 uint64_t table_len; /* Length of unwind table. */
9522 uint64_t seg_base; /* Starting address of segment. */
9523 Elf_Internal_Sym * symtab; /* The symbol table. */
9524 uint64_t nsyms; /* Number of symbols. */
9525 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
9526 uint64_t nfuns; /* Number of entries in funtab. */
9527 char * strtab; /* The string table. */
9528 uint64_t strtab_size; /* Size of string table. */
9529 };
9530
9531 static bool
9532 dump_hppa_unwind (Filedata * filedata, struct hppa_unw_aux_info * aux)
9533 {
9534 struct hppa_unw_table_entry * tp;
9535 uint64_t j, nfuns;
9536 bool res = true;
9537
9538 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
9539 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
9540 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
9541 aux->funtab[nfuns++] = aux->symtab[j];
9542 aux->nfuns = nfuns;
9543 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
9544
9545 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
9546 {
9547 uint64_t offset;
9548 const char * procname;
9549
9550 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
9551 aux->strtab_size, tp->start, &procname,
9552 &offset);
9553
9554 fputs ("\n<", stdout);
9555
9556 if (procname)
9557 {
9558 fputs (procname, stdout);
9559
9560 if (offset)
9561 printf ("+%" PRIx64, offset);
9562 }
9563
9564 fputs (">: [", stdout);
9565 print_vma (tp->start.offset, PREFIX_HEX);
9566 fputc ('-', stdout);
9567 print_vma (tp->end.offset, PREFIX_HEX);
9568 printf ("]\n\t");
9569
9570 #define PF(_m) if (tp->_m) printf (#_m " ");
9571 #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
9572 PF(Cannot_unwind);
9573 PF(Millicode);
9574 PF(Millicode_save_sr0);
9575 /* PV(Region_description); */
9576 PF(Entry_SR);
9577 PV(Entry_FR);
9578 PV(Entry_GR);
9579 PF(Args_stored);
9580 PF(Variable_Frame);
9581 PF(Separate_Package_Body);
9582 PF(Frame_Extension_Millicode);
9583 PF(Stack_Overflow_Check);
9584 PF(Two_Instruction_SP_Increment);
9585 PF(Ada_Region);
9586 PF(cxx_info);
9587 PF(cxx_try_catch);
9588 PF(sched_entry_seq);
9589 PF(Save_SP);
9590 PF(Save_RP);
9591 PF(Save_MRP_in_frame);
9592 PF(extn_ptr_defined);
9593 PF(Cleanup_defined);
9594 PF(MPE_XL_interrupt_marker);
9595 PF(HP_UX_interrupt_marker);
9596 PF(Large_frame);
9597 PF(Pseudo_SP_Set);
9598 PV(Total_frame_size);
9599 #undef PF
9600 #undef PV
9601 }
9602
9603 printf ("\n");
9604
9605 free (aux->funtab);
9606
9607 return res;
9608 }
9609
9610 static bool
9611 slurp_hppa_unwind_table (Filedata * filedata,
9612 struct hppa_unw_aux_info * aux,
9613 Elf_Internal_Shdr * sec)
9614 {
9615 uint64_t size, unw_ent_size, nentries, nrelas, i;
9616 Elf_Internal_Phdr * seg;
9617 struct hppa_unw_table_entry * tep;
9618 Elf_Internal_Shdr * relsec;
9619 Elf_Internal_Rela * rela;
9620 Elf_Internal_Rela * rp;
9621 unsigned char * table;
9622 unsigned char * tp;
9623 Elf_Internal_Sym * sym;
9624 const char * relname;
9625
9626 /* First, find the starting address of the segment that includes
9627 this section. */
9628 if (filedata->file_header.e_phnum)
9629 {
9630 if (! get_program_headers (filedata))
9631 return false;
9632
9633 for (seg = filedata->program_headers;
9634 seg < filedata->program_headers + filedata->file_header.e_phnum;
9635 ++seg)
9636 {
9637 if (seg->p_type != PT_LOAD)
9638 continue;
9639
9640 if (sec->sh_addr >= seg->p_vaddr
9641 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
9642 {
9643 aux->seg_base = seg->p_vaddr;
9644 break;
9645 }
9646 }
9647 }
9648
9649 /* Second, build the unwind table from the contents of the unwind
9650 section. */
9651 size = sec->sh_size;
9652 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
9653 _("unwind table"));
9654 if (!table)
9655 return false;
9656
9657 unw_ent_size = 16;
9658 nentries = size / unw_ent_size;
9659 size = unw_ent_size * nentries;
9660
9661 aux->table_len = nentries;
9662 tep = aux->table = (struct hppa_unw_table_entry *)
9663 xcmalloc (nentries, sizeof (aux->table[0]));
9664
9665 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
9666 {
9667 unsigned int tmp1, tmp2;
9668
9669 tep->start.section = SHN_UNDEF;
9670 tep->end.section = SHN_UNDEF;
9671
9672 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
9673 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
9674 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
9675 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
9676
9677 tep->start.offset += aux->seg_base;
9678 tep->end.offset += aux->seg_base;
9679
9680 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
9681 tep->Millicode = (tmp1 >> 30) & 0x1;
9682 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
9683 tep->Region_description = (tmp1 >> 27) & 0x3;
9684 tep->reserved1 = (tmp1 >> 26) & 0x1;
9685 tep->Entry_SR = (tmp1 >> 25) & 0x1;
9686 tep->Entry_FR = (tmp1 >> 21) & 0xf;
9687 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
9688 tep->Args_stored = (tmp1 >> 15) & 0x1;
9689 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
9690 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
9691 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
9692 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
9693 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
9694 tep->Ada_Region = (tmp1 >> 9) & 0x1;
9695 tep->cxx_info = (tmp1 >> 8) & 0x1;
9696 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
9697 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
9698 tep->reserved2 = (tmp1 >> 5) & 0x1;
9699 tep->Save_SP = (tmp1 >> 4) & 0x1;
9700 tep->Save_RP = (tmp1 >> 3) & 0x1;
9701 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
9702 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
9703 tep->Cleanup_defined = tmp1 & 0x1;
9704
9705 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
9706 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
9707 tep->Large_frame = (tmp2 >> 29) & 0x1;
9708 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
9709 tep->reserved4 = (tmp2 >> 27) & 0x1;
9710 tep->Total_frame_size = tmp2 & 0x7ffffff;
9711 }
9712 free (table);
9713
9714 /* Third, apply any relocations to the unwind table. */
9715 for (relsec = filedata->section_headers;
9716 relsec < filedata->section_headers + filedata->file_header.e_shnum;
9717 ++relsec)
9718 {
9719 if (relsec->sh_type != SHT_RELA
9720 || relsec->sh_info >= filedata->file_header.e_shnum
9721 || filedata->section_headers + relsec->sh_info != sec)
9722 continue;
9723
9724 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
9725 & rela, & nrelas))
9726 return false;
9727
9728 for (rp = rela; rp < rela + nrelas; ++rp)
9729 {
9730 unsigned int sym_ndx;
9731 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
9732 relname = elf_hppa_reloc_type (r_type);
9733
9734 if (relname == NULL)
9735 {
9736 warn (_("Skipping unknown relocation type: %u\n"), r_type);
9737 continue;
9738 }
9739
9740 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
9741 if (! startswith (relname, "R_PARISC_SEGREL"))
9742 {
9743 warn (_("Skipping unexpected relocation type: %s\n"), relname);
9744 continue;
9745 }
9746
9747 i = rp->r_offset / unw_ent_size;
9748 if (i >= aux->table_len)
9749 {
9750 warn (_("Skipping reloc with overlarge offset: %#" PRIx64 "\n"),
9751 i);
9752 continue;
9753 }
9754
9755 sym_ndx = get_reloc_symindex (rp->r_info);
9756 if (sym_ndx >= aux->nsyms)
9757 {
9758 warn (_("Skipping reloc with invalid symbol index: %u\n"),
9759 sym_ndx);
9760 continue;
9761 }
9762 sym = aux->symtab + sym_ndx;
9763
9764 switch ((rp->r_offset % unw_ent_size) / 4)
9765 {
9766 case 0:
9767 aux->table[i].start.section = sym->st_shndx;
9768 aux->table[i].start.offset = sym->st_value + rp->r_addend;
9769 break;
9770 case 1:
9771 aux->table[i].end.section = sym->st_shndx;
9772 aux->table[i].end.offset = sym->st_value + rp->r_addend;
9773 break;
9774 default:
9775 break;
9776 }
9777 }
9778
9779 free (rela);
9780 }
9781
9782 return true;
9783 }
9784
9785 static bool
9786 hppa_process_unwind (Filedata * filedata)
9787 {
9788 struct hppa_unw_aux_info aux;
9789 Elf_Internal_Shdr * unwsec = NULL;
9790 Elf_Internal_Shdr * sec;
9791 size_t i;
9792 bool res = true;
9793
9794 if (filedata->string_table == NULL)
9795 return false;
9796
9797 memset (& aux, 0, sizeof (aux));
9798
9799 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
9800 {
9801 if (sec->sh_type == SHT_SYMTAB)
9802 {
9803 if (aux.symtab)
9804 {
9805 error (_("Multiple symbol tables encountered\n"));
9806 free (aux.symtab);
9807 aux.symtab = NULL;
9808 free (aux.strtab);
9809 aux.strtab = NULL;
9810 }
9811 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
9812 &aux.strtab, &aux.strtab_size))
9813 return false;
9814 }
9815 else if (section_name_valid (filedata, sec)
9816 && streq (section_name (filedata, sec), ".PARISC.unwind"))
9817 unwsec = sec;
9818 }
9819
9820 if (!unwsec)
9821 printf (_("\nThere are no unwind sections in this file.\n"));
9822
9823 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
9824 {
9825 if (section_name_valid (filedata, sec)
9826 && streq (section_name (filedata, sec), ".PARISC.unwind"))
9827 {
9828 uint64_t num_unwind = sec->sh_size / 16;
9829
9830 printf (ngettext ("\nUnwind section '%s' at offset %#" PRIx64 " "
9831 "contains %" PRIu64 " entry:\n",
9832 "\nUnwind section '%s' at offset %#" PRIx64 " "
9833 "contains %" PRIu64 " entries:\n",
9834 num_unwind),
9835 printable_section_name (filedata, sec),
9836 sec->sh_offset,
9837 num_unwind);
9838
9839 if (! slurp_hppa_unwind_table (filedata, &aux, sec))
9840 res = false;
9841
9842 if (res && aux.table_len > 0)
9843 {
9844 if (! dump_hppa_unwind (filedata, &aux))
9845 res = false;
9846 }
9847
9848 free ((char *) aux.table);
9849 aux.table = NULL;
9850 }
9851 }
9852
9853 free (aux.symtab);
9854 free ((char *) aux.strtab);
9855
9856 return res;
9857 }
9858
9859 struct arm_section
9860 {
9861 unsigned char * data; /* The unwind data. */
9862 Elf_Internal_Shdr * sec; /* The cached unwind section header. */
9863 Elf_Internal_Rela * rela; /* The cached relocations for this section. */
9864 uint64_t nrelas; /* The number of relocations. */
9865 unsigned int rel_type; /* REL or RELA ? */
9866 Elf_Internal_Rela * next_rela; /* Cyclic pointer to the next reloc to process. */
9867 };
9868
9869 struct arm_unw_aux_info
9870 {
9871 Filedata * filedata; /* The file containing the unwind sections. */
9872 Elf_Internal_Sym * symtab; /* The file's symbol table. */
9873 uint64_t nsyms; /* Number of symbols. */
9874 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
9875 uint64_t nfuns; /* Number of these symbols. */
9876 char * strtab; /* The file's string table. */
9877 uint64_t strtab_size; /* Size of string table. */
9878 };
9879
9880 static const char *
9881 arm_print_vma_and_name (Filedata * filedata,
9882 struct arm_unw_aux_info * aux,
9883 uint64_t fn,
9884 struct absaddr addr)
9885 {
9886 const char *procname;
9887 uint64_t sym_offset;
9888
9889 if (addr.section == SHN_UNDEF)
9890 addr.offset = fn;
9891
9892 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
9893 aux->strtab_size, addr, &procname,
9894 &sym_offset);
9895
9896 print_vma (fn, PREFIX_HEX);
9897
9898 if (procname)
9899 {
9900 fputs (" <", stdout);
9901 fputs (procname, stdout);
9902
9903 if (sym_offset)
9904 printf ("+0x%" PRIx64, sym_offset);
9905 fputc ('>', stdout);
9906 }
9907
9908 return procname;
9909 }
9910
9911 static void
9912 arm_free_section (struct arm_section *arm_sec)
9913 {
9914 free (arm_sec->data);
9915 free (arm_sec->rela);
9916 }
9917
9918 /* 1) If SEC does not match the one cached in ARM_SEC, then free the current
9919 cached section and install SEC instead.
9920 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
9921 and return its valued in * WORDP, relocating if necessary.
9922 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
9923 relocation's offset in ADDR.
9924 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
9925 into the string table of the symbol associated with the reloc. If no
9926 reloc was applied store -1 there.
9927 5) Return TRUE upon success, FALSE otherwise. */
9928
9929 static bool
9930 get_unwind_section_word (Filedata * filedata,
9931 struct arm_unw_aux_info * aux,
9932 struct arm_section * arm_sec,
9933 Elf_Internal_Shdr * sec,
9934 uint64_t word_offset,
9935 unsigned int * wordp,
9936 struct absaddr * addr,
9937 uint64_t * sym_name)
9938 {
9939 Elf_Internal_Rela *rp;
9940 Elf_Internal_Sym *sym;
9941 const char * relname;
9942 unsigned int word;
9943 bool wrapped;
9944
9945 if (sec == NULL || arm_sec == NULL)
9946 return false;
9947
9948 addr->section = SHN_UNDEF;
9949 addr->offset = 0;
9950
9951 if (sym_name != NULL)
9952 *sym_name = (uint64_t) -1;
9953
9954 /* If necessary, update the section cache. */
9955 if (sec != arm_sec->sec)
9956 {
9957 Elf_Internal_Shdr *relsec;
9958
9959 arm_free_section (arm_sec);
9960
9961 arm_sec->sec = sec;
9962 arm_sec->data = get_data (NULL, aux->filedata, sec->sh_offset, 1,
9963 sec->sh_size, _("unwind data"));
9964 arm_sec->rela = NULL;
9965 arm_sec->nrelas = 0;
9966
9967 for (relsec = filedata->section_headers;
9968 relsec < filedata->section_headers + filedata->file_header.e_shnum;
9969 ++relsec)
9970 {
9971 if (relsec->sh_info >= filedata->file_header.e_shnum
9972 || filedata->section_headers + relsec->sh_info != sec
9973 /* PR 15745: Check the section type as well. */
9974 || (relsec->sh_type != SHT_REL
9975 && relsec->sh_type != SHT_RELA))
9976 continue;
9977
9978 arm_sec->rel_type = relsec->sh_type;
9979 if (relsec->sh_type == SHT_REL)
9980 {
9981 if (!slurp_rel_relocs (aux->filedata, relsec->sh_offset,
9982 relsec->sh_size,
9983 & arm_sec->rela, & arm_sec->nrelas))
9984 return false;
9985 }
9986 else /* relsec->sh_type == SHT_RELA */
9987 {
9988 if (!slurp_rela_relocs (aux->filedata, relsec->sh_offset,
9989 relsec->sh_size,
9990 & arm_sec->rela, & arm_sec->nrelas))
9991 return false;
9992 }
9993 break;
9994 }
9995
9996 arm_sec->next_rela = arm_sec->rela;
9997 }
9998
9999 /* If there is no unwind data we can do nothing. */
10000 if (arm_sec->data == NULL)
10001 return false;
10002
10003 /* If the offset is invalid then fail. */
10004 if (/* PR 21343 *//* PR 18879 */
10005 sec->sh_size < 4
10006 || word_offset > sec->sh_size - 4)
10007 return false;
10008
10009 /* Get the word at the required offset. */
10010 word = byte_get (arm_sec->data + word_offset, 4);
10011
10012 /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */
10013 if (arm_sec->rela == NULL)
10014 {
10015 * wordp = word;
10016 return true;
10017 }
10018
10019 /* Look through the relocs to find the one that applies to the provided offset. */
10020 wrapped = false;
10021 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
10022 {
10023 uint64_t prelval, offset;
10024
10025 if (rp->r_offset > word_offset && !wrapped)
10026 {
10027 rp = arm_sec->rela;
10028 wrapped = true;
10029 }
10030 if (rp->r_offset > word_offset)
10031 break;
10032
10033 if (rp->r_offset & 3)
10034 {
10035 warn (_("Skipping unexpected relocation at offset %#" PRIx64 "\n"),
10036 rp->r_offset);
10037 continue;
10038 }
10039
10040 if (rp->r_offset < word_offset)
10041 continue;
10042
10043 /* PR 17531: file: 027-161405-0.004 */
10044 if (aux->symtab == NULL)
10045 continue;
10046
10047 if (arm_sec->rel_type == SHT_REL)
10048 {
10049 offset = word & 0x7fffffff;
10050 if (offset & 0x40000000)
10051 offset |= ~ (uint64_t) 0x7fffffff;
10052 }
10053 else if (arm_sec->rel_type == SHT_RELA)
10054 offset = rp->r_addend;
10055 else
10056 {
10057 error (_("Unknown section relocation type %d encountered\n"),
10058 arm_sec->rel_type);
10059 break;
10060 }
10061
10062 /* PR 17531 file: 027-1241568-0.004. */
10063 if (ELF32_R_SYM (rp->r_info) >= aux->nsyms)
10064 {
10065 error (_("Bad symbol index in unwind relocation "
10066 "(%" PRIu64 " > %" PRIu64 ")\n"),
10067 ELF32_R_SYM (rp->r_info), aux->nsyms);
10068 break;
10069 }
10070
10071 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
10072 offset += sym->st_value;
10073 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
10074
10075 /* Check that we are processing the expected reloc type. */
10076 if (filedata->file_header.e_machine == EM_ARM)
10077 {
10078 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
10079 if (relname == NULL)
10080 {
10081 warn (_("Skipping unknown ARM relocation type: %d\n"),
10082 (int) ELF32_R_TYPE (rp->r_info));
10083 continue;
10084 }
10085
10086 if (streq (relname, "R_ARM_NONE"))
10087 continue;
10088
10089 if (! streq (relname, "R_ARM_PREL31"))
10090 {
10091 warn (_("Skipping unexpected ARM relocation type %s\n"), relname);
10092 continue;
10093 }
10094 }
10095 else if (filedata->file_header.e_machine == EM_TI_C6000)
10096 {
10097 relname = elf_tic6x_reloc_type (ELF32_R_TYPE (rp->r_info));
10098 if (relname == NULL)
10099 {
10100 warn (_("Skipping unknown C6000 relocation type: %d\n"),
10101 (int) ELF32_R_TYPE (rp->r_info));
10102 continue;
10103 }
10104
10105 if (streq (relname, "R_C6000_NONE"))
10106 continue;
10107
10108 if (! streq (relname, "R_C6000_PREL31"))
10109 {
10110 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname);
10111 continue;
10112 }
10113
10114 prelval >>= 1;
10115 }
10116 else
10117 {
10118 /* This function currently only supports ARM and TI unwinders. */
10119 warn (_("Only TI and ARM unwinders are currently supported\n"));
10120 break;
10121 }
10122
10123 word = (word & ~ (uint64_t) 0x7fffffff) | (prelval & 0x7fffffff);
10124 addr->section = sym->st_shndx;
10125 addr->offset = offset;
10126
10127 if (sym_name)
10128 * sym_name = sym->st_name;
10129 break;
10130 }
10131
10132 *wordp = word;
10133 arm_sec->next_rela = rp;
10134
10135 return true;
10136 }
10137
10138 static const char *tic6x_unwind_regnames[16] =
10139 {
10140 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
10141 "A14", "A13", "A12", "A11", "A10",
10142 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
10143 };
10144
10145 static void
10146 decode_tic6x_unwind_regmask (unsigned int mask)
10147 {
10148 int i;
10149
10150 for (i = 12; mask; mask >>= 1, i--)
10151 {
10152 if (mask & 1)
10153 {
10154 fputs (tic6x_unwind_regnames[i], stdout);
10155 if (mask > 1)
10156 fputs (", ", stdout);
10157 }
10158 }
10159 }
10160
10161 #define ADVANCE \
10162 if (remaining == 0 && more_words) \
10163 { \
10164 data_offset += 4; \
10165 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, \
10166 data_offset, & word, & addr, NULL)) \
10167 return false; \
10168 remaining = 4; \
10169 more_words--; \
10170 } \
10171
10172 #define GET_OP(OP) \
10173 ADVANCE; \
10174 if (remaining) \
10175 { \
10176 remaining--; \
10177 (OP) = word >> 24; \
10178 word <<= 8; \
10179 } \
10180 else \
10181 { \
10182 printf (_("[Truncated opcode]\n")); \
10183 return false; \
10184 } \
10185 printf ("0x%02x ", OP)
10186
10187 static bool
10188 decode_arm_unwind_bytecode (Filedata * filedata,
10189 struct arm_unw_aux_info * aux,
10190 unsigned int word,
10191 unsigned int remaining,
10192 unsigned int more_words,
10193 uint64_t data_offset,
10194 Elf_Internal_Shdr * data_sec,
10195 struct arm_section * data_arm_sec)
10196 {
10197 struct absaddr addr;
10198 bool res = true;
10199
10200 /* Decode the unwinding instructions. */
10201 while (1)
10202 {
10203 unsigned int op, op2;
10204
10205 ADVANCE;
10206 if (remaining == 0)
10207 break;
10208 remaining--;
10209 op = word >> 24;
10210 word <<= 8;
10211
10212 printf (" 0x%02x ", op);
10213
10214 if ((op & 0xc0) == 0x00)
10215 {
10216 int offset = ((op & 0x3f) << 2) + 4;
10217
10218 printf (" vsp = vsp + %d", offset);
10219 }
10220 else if ((op & 0xc0) == 0x40)
10221 {
10222 int offset = ((op & 0x3f) << 2) + 4;
10223
10224 printf (" vsp = vsp - %d", offset);
10225 }
10226 else if ((op & 0xf0) == 0x80)
10227 {
10228 GET_OP (op2);
10229 if (op == 0x80 && op2 == 0)
10230 printf (_("Refuse to unwind"));
10231 else
10232 {
10233 unsigned int mask = ((op & 0x0f) << 8) | op2;
10234 bool first = true;
10235 int i;
10236
10237 printf ("pop {");
10238 for (i = 0; i < 12; i++)
10239 if (mask & (1 << i))
10240 {
10241 if (first)
10242 first = false;
10243 else
10244 printf (", ");
10245 printf ("r%d", 4 + i);
10246 }
10247 printf ("}");
10248 }
10249 }
10250 else if ((op & 0xf0) == 0x90)
10251 {
10252 if (op == 0x9d || op == 0x9f)
10253 printf (_(" [Reserved]"));
10254 else
10255 printf (" vsp = r%d", op & 0x0f);
10256 }
10257 else if ((op & 0xf0) == 0xa0)
10258 {
10259 int end = 4 + (op & 0x07);
10260 bool first = true;
10261 int i;
10262
10263 printf (" pop {");
10264 for (i = 4; i <= end; i++)
10265 {
10266 if (first)
10267 first = false;
10268 else
10269 printf (", ");
10270 printf ("r%d", i);
10271 }
10272 if (op & 0x08)
10273 {
10274 if (!first)
10275 printf (", ");
10276 printf ("r14");
10277 }
10278 printf ("}");
10279 }
10280 else if (op == 0xb0)
10281 printf (_(" finish"));
10282 else if (op == 0xb1)
10283 {
10284 GET_OP (op2);
10285 if (op2 == 0 || (op2 & 0xf0) != 0)
10286 printf (_("[Spare]"));
10287 else
10288 {
10289 unsigned int mask = op2 & 0x0f;
10290 bool first = true;
10291 int i;
10292
10293 printf ("pop {");
10294 for (i = 0; i < 12; i++)
10295 if (mask & (1 << i))
10296 {
10297 if (first)
10298 first = false;
10299 else
10300 printf (", ");
10301 printf ("r%d", i);
10302 }
10303 printf ("}");
10304 }
10305 }
10306 else if (op == 0xb2)
10307 {
10308 unsigned char buf[9];
10309 unsigned int i, len;
10310 uint64_t offset;
10311
10312 for (i = 0; i < sizeof (buf); i++)
10313 {
10314 GET_OP (buf[i]);
10315 if ((buf[i] & 0x80) == 0)
10316 break;
10317 }
10318 if (i == sizeof (buf))
10319 {
10320 error (_("corrupt change to vsp\n"));
10321 res = false;
10322 }
10323 else
10324 {
10325 offset = read_leb128 (buf, buf + i + 1, false, &len, NULL);
10326 assert (len == i + 1);
10327 offset = offset * 4 + 0x204;
10328 printf ("vsp = vsp + %" PRId64, offset);
10329 }
10330 }
10331 else if (op == 0xb3 || op == 0xc8 || op == 0xc9)
10332 {
10333 unsigned int first, last;
10334
10335 GET_OP (op2);
10336 first = op2 >> 4;
10337 last = op2 & 0x0f;
10338 if (op == 0xc8)
10339 first = first + 16;
10340 printf ("pop {D%d", first);
10341 if (last)
10342 printf ("-D%d", first + last);
10343 printf ("}");
10344 }
10345 else if (op == 0xb4)
10346 printf (_(" pop {ra_auth_code}"));
10347 else if (op == 0xb5)
10348 printf (_(" vsp as modifier for PAC validation"));
10349 else if ((op & 0xf8) == 0xb8 || (op & 0xf8) == 0xd0)
10350 {
10351 unsigned int count = op & 0x07;
10352
10353 printf ("pop {D8");
10354 if (count)
10355 printf ("-D%d", 8 + count);
10356 printf ("}");
10357 }
10358 else if (op >= 0xc0 && op <= 0xc5)
10359 {
10360 unsigned int count = op & 0x07;
10361
10362 printf (" pop {wR10");
10363 if (count)
10364 printf ("-wR%d", 10 + count);
10365 printf ("}");
10366 }
10367 else if (op == 0xc6)
10368 {
10369 unsigned int first, last;
10370
10371 GET_OP (op2);
10372 first = op2 >> 4;
10373 last = op2 & 0x0f;
10374 printf ("pop {wR%d", first);
10375 if (last)
10376 printf ("-wR%d", first + last);
10377 printf ("}");
10378 }
10379 else if (op == 0xc7)
10380 {
10381 GET_OP (op2);
10382 if (op2 == 0 || (op2 & 0xf0) != 0)
10383 printf (_("[Spare]"));
10384 else
10385 {
10386 unsigned int mask = op2 & 0x0f;
10387 bool first = true;
10388 int i;
10389
10390 printf ("pop {");
10391 for (i = 0; i < 4; i++)
10392 if (mask & (1 << i))
10393 {
10394 if (first)
10395 first = false;
10396 else
10397 printf (", ");
10398 printf ("wCGR%d", i);
10399 }
10400 printf ("}");
10401 }
10402 }
10403 else
10404 {
10405 printf (_(" [unsupported opcode]"));
10406 res = false;
10407 }
10408
10409 printf ("\n");
10410 }
10411
10412 return res;
10413 }
10414
10415 static bool
10416 decode_tic6x_unwind_bytecode (Filedata * filedata,
10417 struct arm_unw_aux_info * aux,
10418 unsigned int word,
10419 unsigned int remaining,
10420 unsigned int more_words,
10421 uint64_t data_offset,
10422 Elf_Internal_Shdr * data_sec,
10423 struct arm_section * data_arm_sec)
10424 {
10425 struct absaddr addr;
10426
10427 /* Decode the unwinding instructions. */
10428 while (1)
10429 {
10430 unsigned int op, op2;
10431
10432 ADVANCE;
10433 if (remaining == 0)
10434 break;
10435 remaining--;
10436 op = word >> 24;
10437 word <<= 8;
10438
10439 printf (" 0x%02x ", op);
10440
10441 if ((op & 0xc0) == 0x00)
10442 {
10443 int offset = ((op & 0x3f) << 3) + 8;
10444 printf (" sp = sp + %d", offset);
10445 }
10446 else if ((op & 0xc0) == 0x80)
10447 {
10448 GET_OP (op2);
10449 if (op == 0x80 && op2 == 0)
10450 printf (_("Refuse to unwind"));
10451 else
10452 {
10453 unsigned int mask = ((op & 0x1f) << 8) | op2;
10454 if (op & 0x20)
10455 printf ("pop compact {");
10456 else
10457 printf ("pop {");
10458
10459 decode_tic6x_unwind_regmask (mask);
10460 printf("}");
10461 }
10462 }
10463 else if ((op & 0xf0) == 0xc0)
10464 {
10465 unsigned int reg;
10466 unsigned int nregs;
10467 unsigned int i;
10468 const char *name;
10469 struct
10470 {
10471 unsigned int offset;
10472 unsigned int reg;
10473 } regpos[16];
10474
10475 /* Scan entire instruction first so that GET_OP output is not
10476 interleaved with disassembly. */
10477 nregs = 0;
10478 for (i = 0; nregs < (op & 0xf); i++)
10479 {
10480 GET_OP (op2);
10481 reg = op2 >> 4;
10482 if (reg != 0xf)
10483 {
10484 regpos[nregs].offset = i * 2;
10485 regpos[nregs].reg = reg;
10486 nregs++;
10487 }
10488
10489 reg = op2 & 0xf;
10490 if (reg != 0xf)
10491 {
10492 regpos[nregs].offset = i * 2 + 1;
10493 regpos[nregs].reg = reg;
10494 nregs++;
10495 }
10496 }
10497
10498 printf (_("pop frame {"));
10499 if (nregs == 0)
10500 {
10501 printf (_("*corrupt* - no registers specified"));
10502 }
10503 else
10504 {
10505 reg = nregs - 1;
10506 for (i = i * 2; i > 0; i--)
10507 {
10508 if (regpos[reg].offset == i - 1)
10509 {
10510 name = tic6x_unwind_regnames[regpos[reg].reg];
10511 if (reg > 0)
10512 reg--;
10513 }
10514 else
10515 name = _("[pad]");
10516
10517 fputs (name, stdout);
10518 if (i > 1)
10519 printf (", ");
10520 }
10521 }
10522
10523 printf ("}");
10524 }
10525 else if (op == 0xd0)
10526 printf (" MOV FP, SP");
10527 else if (op == 0xd1)
10528 printf (" __c6xabi_pop_rts");
10529 else if (op == 0xd2)
10530 {
10531 unsigned char buf[9];
10532 unsigned int i, len;
10533 uint64_t offset;
10534
10535 for (i = 0; i < sizeof (buf); i++)
10536 {
10537 GET_OP (buf[i]);
10538 if ((buf[i] & 0x80) == 0)
10539 break;
10540 }
10541 /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */
10542 if (i == sizeof (buf))
10543 {
10544 warn (_("Corrupt stack pointer adjustment detected\n"));
10545 return false;
10546 }
10547
10548 offset = read_leb128 (buf, buf + i + 1, false, &len, NULL);
10549 assert (len == i + 1);
10550 offset = offset * 8 + 0x408;
10551 printf (_("sp = sp + %" PRId64), offset);
10552 }
10553 else if ((op & 0xf0) == 0xe0)
10554 {
10555 if ((op & 0x0f) == 7)
10556 printf (" RETURN");
10557 else
10558 printf (" MV %s, B3", tic6x_unwind_regnames[op & 0x0f]);
10559 }
10560 else
10561 {
10562 printf (_(" [unsupported opcode]"));
10563 }
10564 putchar ('\n');
10565 }
10566
10567 return true;
10568 }
10569
10570 static uint64_t
10571 arm_expand_prel31 (Filedata * filedata, uint64_t word, uint64_t where)
10572 {
10573 uint64_t offset;
10574
10575 offset = word & 0x7fffffff;
10576 if (offset & 0x40000000)
10577 offset |= ~ (uint64_t) 0x7fffffff;
10578
10579 if (filedata->file_header.e_machine == EM_TI_C6000)
10580 offset <<= 1;
10581
10582 return offset + where;
10583 }
10584
10585 static bool
10586 decode_arm_unwind (Filedata * filedata,
10587 struct arm_unw_aux_info * aux,
10588 unsigned int word,
10589 unsigned int remaining,
10590 uint64_t data_offset,
10591 Elf_Internal_Shdr * data_sec,
10592 struct arm_section * data_arm_sec)
10593 {
10594 int per_index;
10595 unsigned int more_words = 0;
10596 struct absaddr addr;
10597 uint64_t sym_name = (uint64_t) -1;
10598 bool res = true;
10599
10600 if (remaining == 0)
10601 {
10602 /* Fetch the first word.
10603 Note - when decoding an object file the address extracted
10604 here will always be 0. So we also pass in the sym_name
10605 parameter so that we can find the symbol associated with
10606 the personality routine. */
10607 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, data_offset,
10608 & word, & addr, & sym_name))
10609 return false;
10610
10611 remaining = 4;
10612 }
10613 else
10614 {
10615 addr.section = SHN_UNDEF;
10616 addr.offset = 0;
10617 }
10618
10619 if ((word & 0x80000000) == 0)
10620 {
10621 /* Expand prel31 for personality routine. */
10622 uint64_t fn;
10623 const char *procname;
10624
10625 fn = arm_expand_prel31 (filedata, word, data_sec->sh_addr + data_offset);
10626 printf (_(" Personality routine: "));
10627 if (fn == 0
10628 && addr.section == SHN_UNDEF && addr.offset == 0
10629 && sym_name != (uint64_t) -1 && sym_name < aux->strtab_size)
10630 {
10631 procname = aux->strtab + sym_name;
10632 print_vma (fn, PREFIX_HEX);
10633 if (procname)
10634 {
10635 fputs (" <", stdout);
10636 fputs (procname, stdout);
10637 fputc ('>', stdout);
10638 }
10639 }
10640 else
10641 procname = arm_print_vma_and_name (filedata, aux, fn, addr);
10642 fputc ('\n', stdout);
10643
10644 /* The GCC personality routines use the standard compact
10645 encoding, starting with one byte giving the number of
10646 words. */
10647 if (procname != NULL
10648 && (startswith (procname, "__gcc_personality_v0")
10649 || startswith (procname, "__gxx_personality_v0")
10650 || startswith (procname, "__gcj_personality_v0")
10651 || startswith (procname, "__gnu_objc_personality_v0")))
10652 {
10653 remaining = 0;
10654 more_words = 1;
10655 ADVANCE;
10656 if (!remaining)
10657 {
10658 printf (_(" [Truncated data]\n"));
10659 return false;
10660 }
10661 more_words = word >> 24;
10662 word <<= 8;
10663 remaining--;
10664 per_index = -1;
10665 }
10666 else
10667 return true;
10668 }
10669 else
10670 {
10671 /* ARM EHABI Section 6.3:
10672
10673 An exception-handling table entry for the compact model looks like:
10674
10675 31 30-28 27-24 23-0
10676 -- ----- ----- ----
10677 1 0 index Data for personalityRoutine[index] */
10678
10679 if (filedata->file_header.e_machine == EM_ARM
10680 && (word & 0x70000000))
10681 {
10682 warn (_("Corrupt ARM compact model table entry: %x \n"), word);
10683 res = false;
10684 }
10685
10686 per_index = (word >> 24) & 0x7f;
10687 printf (_(" Compact model index: %d\n"), per_index);
10688 if (per_index == 0)
10689 {
10690 more_words = 0;
10691 word <<= 8;
10692 remaining--;
10693 }
10694 else if (per_index < 3)
10695 {
10696 more_words = (word >> 16) & 0xff;
10697 word <<= 16;
10698 remaining -= 2;
10699 }
10700 }
10701
10702 switch (filedata->file_header.e_machine)
10703 {
10704 case EM_ARM:
10705 if (per_index < 3)
10706 {
10707 if (! decode_arm_unwind_bytecode (filedata, aux, word, remaining, more_words,
10708 data_offset, data_sec, data_arm_sec))
10709 res = false;
10710 }
10711 else
10712 {
10713 warn (_("Unknown ARM compact model index encountered\n"));
10714 printf (_(" [reserved]\n"));
10715 res = false;
10716 }
10717 break;
10718
10719 case EM_TI_C6000:
10720 if (per_index < 3)
10721 {
10722 if (! decode_tic6x_unwind_bytecode (filedata, aux, word, remaining, more_words,
10723 data_offset, data_sec, data_arm_sec))
10724 res = false;
10725 }
10726 else if (per_index < 5)
10727 {
10728 if (((word >> 17) & 0x7f) == 0x7f)
10729 printf (_(" Restore stack from frame pointer\n"));
10730 else
10731 printf (_(" Stack increment %d\n"), (word >> 14) & 0x1fc);
10732 printf (_(" Registers restored: "));
10733 if (per_index == 4)
10734 printf (" (compact) ");
10735 decode_tic6x_unwind_regmask ((word >> 4) & 0x1fff);
10736 putchar ('\n');
10737 printf (_(" Return register: %s\n"),
10738 tic6x_unwind_regnames[word & 0xf]);
10739 }
10740 else
10741 printf (_(" [reserved (%d)]\n"), per_index);
10742 break;
10743
10744 default:
10745 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
10746 filedata->file_header.e_machine);
10747 res = false;
10748 }
10749
10750 /* Decode the descriptors. Not implemented. */
10751
10752 return res;
10753 }
10754
10755 static bool
10756 dump_arm_unwind (Filedata * filedata,
10757 struct arm_unw_aux_info * aux,
10758 Elf_Internal_Shdr * exidx_sec)
10759 {
10760 struct arm_section exidx_arm_sec, extab_arm_sec;
10761 unsigned int i, exidx_len;
10762 uint64_t j, nfuns;
10763 bool res = true;
10764
10765 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
10766 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
10767 exidx_len = exidx_sec->sh_size / 8;
10768
10769 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
10770 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
10771 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
10772 aux->funtab[nfuns++] = aux->symtab[j];
10773 aux->nfuns = nfuns;
10774 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
10775
10776 for (i = 0; i < exidx_len; i++)
10777 {
10778 unsigned int exidx_fn, exidx_entry;
10779 struct absaddr fn_addr, entry_addr;
10780 uint64_t fn;
10781
10782 fputc ('\n', stdout);
10783
10784 if (! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
10785 8 * i, & exidx_fn, & fn_addr, NULL)
10786 || ! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
10787 8 * i + 4, & exidx_entry, & entry_addr, NULL))
10788 {
10789 free (aux->funtab);
10790 arm_free_section (& exidx_arm_sec);
10791 arm_free_section (& extab_arm_sec);
10792 return false;
10793 }
10794
10795 /* ARM EHABI, Section 5:
10796 An index table entry consists of 2 words.
10797 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
10798 if (exidx_fn & 0x80000000)
10799 {
10800 warn (_("corrupt index table entry: %x\n"), exidx_fn);
10801 res = false;
10802 }
10803
10804 fn = arm_expand_prel31 (filedata, exidx_fn, exidx_sec->sh_addr + 8 * i);
10805
10806 arm_print_vma_and_name (filedata, aux, fn, fn_addr);
10807 fputs (": ", stdout);
10808
10809 if (exidx_entry == 1)
10810 {
10811 print_vma (exidx_entry, PREFIX_HEX);
10812 fputs (" [cantunwind]\n", stdout);
10813 }
10814 else if (exidx_entry & 0x80000000)
10815 {
10816 print_vma (exidx_entry, PREFIX_HEX);
10817 fputc ('\n', stdout);
10818 decode_arm_unwind (filedata, aux, exidx_entry, 4, 0, NULL, NULL);
10819 }
10820 else
10821 {
10822 uint64_t table, table_offset = 0;
10823 Elf_Internal_Shdr *table_sec;
10824
10825 fputs ("@", stdout);
10826 table = arm_expand_prel31 (filedata, exidx_entry, exidx_sec->sh_addr + 8 * i + 4);
10827 print_vma (table, PREFIX_HEX);
10828 printf ("\n");
10829
10830 /* Locate the matching .ARM.extab. */
10831 if (entry_addr.section != SHN_UNDEF
10832 && entry_addr.section < filedata->file_header.e_shnum)
10833 {
10834 table_sec = filedata->section_headers + entry_addr.section;
10835 table_offset = entry_addr.offset;
10836 /* PR 18879 */
10837 if (table_offset > table_sec->sh_size)
10838 {
10839 warn (_("Unwind entry contains corrupt offset (%#" PRIx64 ") into section %s\n"),
10840 table_offset,
10841 printable_section_name (filedata, table_sec));
10842 res = false;
10843 continue;
10844 }
10845 }
10846 else
10847 {
10848 table_sec = find_section_by_address (filedata, table);
10849 if (table_sec != NULL)
10850 table_offset = table - table_sec->sh_addr;
10851 }
10852
10853 if (table_sec == NULL)
10854 {
10855 warn (_("Could not locate .ARM.extab section containing %#" PRIx64 ".\n"),
10856 table);
10857 res = false;
10858 continue;
10859 }
10860
10861 if (! decode_arm_unwind (filedata, aux, 0, 0, table_offset, table_sec,
10862 &extab_arm_sec))
10863 res = false;
10864 }
10865 }
10866
10867 printf ("\n");
10868
10869 free (aux->funtab);
10870 arm_free_section (&exidx_arm_sec);
10871 arm_free_section (&extab_arm_sec);
10872
10873 return res;
10874 }
10875
10876 /* Used for both ARM and C6X unwinding tables. */
10877
10878 static bool
10879 arm_process_unwind (Filedata * filedata)
10880 {
10881 struct arm_unw_aux_info aux;
10882 Elf_Internal_Shdr *unwsec = NULL;
10883 Elf_Internal_Shdr *sec;
10884 size_t i;
10885 unsigned int sec_type;
10886 bool res = true;
10887
10888 switch (filedata->file_header.e_machine)
10889 {
10890 case EM_ARM:
10891 sec_type = SHT_ARM_EXIDX;
10892 break;
10893
10894 case EM_TI_C6000:
10895 sec_type = SHT_C6000_UNWIND;
10896 break;
10897
10898 default:
10899 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
10900 filedata->file_header.e_machine);
10901 return false;
10902 }
10903
10904 if (filedata->string_table == NULL)
10905 return false;
10906
10907 memset (& aux, 0, sizeof (aux));
10908 aux.filedata = filedata;
10909
10910 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
10911 {
10912 if (sec->sh_type == SHT_SYMTAB)
10913 {
10914 if (aux.symtab)
10915 {
10916 error (_("Multiple symbol tables encountered\n"));
10917 free (aux.symtab);
10918 aux.symtab = NULL;
10919 free (aux.strtab);
10920 aux.strtab = NULL;
10921 }
10922 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
10923 &aux.strtab, &aux.strtab_size))
10924 return false;
10925 }
10926 else if (sec->sh_type == sec_type)
10927 unwsec = sec;
10928 }
10929
10930 if (unwsec == NULL)
10931 printf (_("\nThere are no unwind sections in this file.\n"));
10932 else
10933 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
10934 {
10935 if (sec->sh_type == sec_type)
10936 {
10937 uint64_t num_unwind = sec->sh_size / (2 * eh_addr_size);
10938 printf (ngettext ("\nUnwind section '%s' at offset %#" PRIx64 " "
10939 "contains %" PRIu64 " entry:\n",
10940 "\nUnwind section '%s' at offset %#" PRIx64 " "
10941 "contains %" PRIu64 " entries:\n",
10942 num_unwind),
10943 printable_section_name (filedata, sec),
10944 sec->sh_offset,
10945 num_unwind);
10946
10947 if (! dump_arm_unwind (filedata, &aux, sec))
10948 res = false;
10949 }
10950 }
10951
10952 free (aux.symtab);
10953 free ((char *) aux.strtab);
10954
10955 return res;
10956 }
10957
10958 static bool
10959 no_processor_specific_unwind (Filedata * filedata ATTRIBUTE_UNUSED)
10960 {
10961 printf (_("No processor specific unwind information to decode\n"));
10962 return true;
10963 }
10964
10965 static bool
10966 process_unwind (Filedata * filedata)
10967 {
10968 struct unwind_handler
10969 {
10970 unsigned int machtype;
10971 bool (* handler)(Filedata *);
10972 } handlers[] =
10973 {
10974 { EM_ARM, arm_process_unwind },
10975 { EM_IA_64, ia64_process_unwind },
10976 { EM_PARISC, hppa_process_unwind },
10977 { EM_TI_C6000, arm_process_unwind },
10978 { EM_386, no_processor_specific_unwind },
10979 { EM_X86_64, no_processor_specific_unwind },
10980 { 0, NULL }
10981 };
10982 int i;
10983
10984 if (!do_unwind)
10985 return true;
10986
10987 for (i = 0; handlers[i].handler != NULL; i++)
10988 if (filedata->file_header.e_machine == handlers[i].machtype)
10989 return handlers[i].handler (filedata);
10990
10991 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
10992 get_machine_name (filedata->file_header.e_machine));
10993 return true;
10994 }
10995
10996 static void
10997 dynamic_section_aarch64_val (Elf_Internal_Dyn * entry)
10998 {
10999 switch (entry->d_tag)
11000 {
11001 case DT_AARCH64_BTI_PLT:
11002 case DT_AARCH64_PAC_PLT:
11003 break;
11004 default:
11005 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
11006 break;
11007 }
11008 putchar ('\n');
11009 }
11010
11011 static void
11012 dynamic_section_mips_val (Filedata * filedata, Elf_Internal_Dyn * entry)
11013 {
11014 switch (entry->d_tag)
11015 {
11016 case DT_MIPS_FLAGS:
11017 if (entry->d_un.d_val == 0)
11018 printf (_("NONE"));
11019 else
11020 {
11021 static const char * opts[] =
11022 {
11023 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
11024 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
11025 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
11026 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
11027 "RLD_ORDER_SAFE"
11028 };
11029 unsigned int cnt;
11030 bool first = true;
11031
11032 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
11033 if (entry->d_un.d_val & (1 << cnt))
11034 {
11035 printf ("%s%s", first ? "" : " ", opts[cnt]);
11036 first = false;
11037 }
11038 }
11039 break;
11040
11041 case DT_MIPS_IVERSION:
11042 if (valid_dynamic_name (filedata, entry->d_un.d_val))
11043 printf (_("Interface Version: %s"),
11044 get_dynamic_name (filedata, entry->d_un.d_val));
11045 else
11046 printf (_("Interface Version: <corrupt: %" PRIx64 ">"),
11047 entry->d_un.d_ptr);
11048 break;
11049
11050 case DT_MIPS_TIME_STAMP:
11051 {
11052 char timebuf[128];
11053 struct tm * tmp;
11054 time_t atime = entry->d_un.d_val;
11055
11056 tmp = gmtime (&atime);
11057 /* PR 17531: file: 6accc532. */
11058 if (tmp == NULL)
11059 snprintf (timebuf, sizeof (timebuf), _("<corrupt>"));
11060 else
11061 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
11062 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
11063 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
11064 printf (_("Time Stamp: %s"), timebuf);
11065 }
11066 break;
11067
11068 case DT_MIPS_RLD_VERSION:
11069 case DT_MIPS_LOCAL_GOTNO:
11070 case DT_MIPS_CONFLICTNO:
11071 case DT_MIPS_LIBLISTNO:
11072 case DT_MIPS_SYMTABNO:
11073 case DT_MIPS_UNREFEXTNO:
11074 case DT_MIPS_HIPAGENO:
11075 case DT_MIPS_DELTA_CLASS_NO:
11076 case DT_MIPS_DELTA_INSTANCE_NO:
11077 case DT_MIPS_DELTA_RELOC_NO:
11078 case DT_MIPS_DELTA_SYM_NO:
11079 case DT_MIPS_DELTA_CLASSSYM_NO:
11080 case DT_MIPS_COMPACT_SIZE:
11081 print_vma (entry->d_un.d_val, DEC);
11082 break;
11083
11084 case DT_MIPS_XHASH:
11085 filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val;
11086 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
11087 /* Falls through. */
11088
11089 default:
11090 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
11091 }
11092 putchar ('\n');
11093 }
11094
11095 static void
11096 dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
11097 {
11098 switch (entry->d_tag)
11099 {
11100 case DT_HP_DLD_FLAGS:
11101 {
11102 static struct
11103 {
11104 unsigned int bit;
11105 const char * str;
11106 }
11107 flags[] =
11108 {
11109 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
11110 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
11111 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
11112 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
11113 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
11114 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
11115 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
11116 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
11117 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
11118 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
11119 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
11120 { DT_HP_GST, "HP_GST" },
11121 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
11122 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
11123 { DT_HP_NODELETE, "HP_NODELETE" },
11124 { DT_HP_GROUP, "HP_GROUP" },
11125 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
11126 };
11127 bool first = true;
11128 size_t cnt;
11129 uint64_t val = entry->d_un.d_val;
11130
11131 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
11132 if (val & flags[cnt].bit)
11133 {
11134 if (! first)
11135 putchar (' ');
11136 fputs (flags[cnt].str, stdout);
11137 first = false;
11138 val ^= flags[cnt].bit;
11139 }
11140
11141 if (val != 0 || first)
11142 {
11143 if (! first)
11144 putchar (' ');
11145 print_vma (val, HEX);
11146 }
11147 }
11148 break;
11149
11150 default:
11151 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
11152 break;
11153 }
11154 putchar ('\n');
11155 }
11156
11157 /* VMS vs Unix time offset and factor. */
11158
11159 #define VMS_EPOCH_OFFSET 35067168000000000LL
11160 #define VMS_GRANULARITY_FACTOR 10000000
11161 #ifndef INT64_MIN
11162 #define INT64_MIN (-9223372036854775807LL - 1)
11163 #endif
11164
11165 /* Display a VMS time in a human readable format. */
11166
11167 static void
11168 print_vms_time (int64_t vmstime)
11169 {
11170 struct tm *tm = NULL;
11171 time_t unxtime;
11172
11173 if (vmstime >= INT64_MIN + VMS_EPOCH_OFFSET)
11174 {
11175 vmstime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
11176 unxtime = vmstime;
11177 if (unxtime == vmstime)
11178 tm = gmtime (&unxtime);
11179 }
11180 if (tm != NULL)
11181 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
11182 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
11183 tm->tm_hour, tm->tm_min, tm->tm_sec);
11184 }
11185
11186 static void
11187 dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
11188 {
11189 switch (entry->d_tag)
11190 {
11191 case DT_IA_64_PLT_RESERVE:
11192 /* First 3 slots reserved. */
11193 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
11194 printf (" -- ");
11195 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
11196 break;
11197
11198 case DT_IA_64_VMS_LINKTIME:
11199 print_vms_time (entry->d_un.d_val);
11200 break;
11201
11202 case DT_IA_64_VMS_LNKFLAGS:
11203 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
11204 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
11205 printf (" CALL_DEBUG");
11206 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
11207 printf (" NOP0BUFS");
11208 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
11209 printf (" P0IMAGE");
11210 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
11211 printf (" MKTHREADS");
11212 if (entry->d_un.d_val & VMS_LF_UPCALLS)
11213 printf (" UPCALLS");
11214 if (entry->d_un.d_val & VMS_LF_IMGSTA)
11215 printf (" IMGSTA");
11216 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
11217 printf (" INITIALIZE");
11218 if (entry->d_un.d_val & VMS_LF_MAIN)
11219 printf (" MAIN");
11220 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
11221 printf (" EXE_INIT");
11222 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
11223 printf (" TBK_IN_IMG");
11224 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
11225 printf (" DBG_IN_IMG");
11226 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
11227 printf (" TBK_IN_DSF");
11228 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
11229 printf (" DBG_IN_DSF");
11230 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
11231 printf (" SIGNATURES");
11232 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
11233 printf (" REL_SEG_OFF");
11234 break;
11235
11236 default:
11237 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
11238 break;
11239 }
11240 putchar ('\n');
11241 }
11242
11243 static bool
11244 get_32bit_dynamic_section (Filedata * filedata)
11245 {
11246 Elf32_External_Dyn * edyn;
11247 Elf32_External_Dyn * ext;
11248 Elf_Internal_Dyn * entry;
11249
11250 edyn = (Elf32_External_Dyn *) get_data (NULL, filedata,
11251 filedata->dynamic_addr, 1,
11252 filedata->dynamic_size,
11253 _("dynamic section"));
11254 if (!edyn)
11255 return false;
11256
11257 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
11258 might not have the luxury of section headers. Look for the DT_NULL
11259 terminator to determine the number of entries. */
11260 for (ext = edyn, filedata->dynamic_nent = 0;
11261 (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size;
11262 ext++)
11263 {
11264 filedata->dynamic_nent++;
11265 if (BYTE_GET (ext->d_tag) == DT_NULL)
11266 break;
11267 }
11268
11269 filedata->dynamic_section
11270 = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry));
11271 if (filedata->dynamic_section == NULL)
11272 {
11273 error (_("Out of memory allocating space for %" PRIu64 " dynamic entries\n"),
11274 filedata->dynamic_nent);
11275 free (edyn);
11276 return false;
11277 }
11278
11279 for (ext = edyn, entry = filedata->dynamic_section;
11280 entry < filedata->dynamic_section + filedata->dynamic_nent;
11281 ext++, entry++)
11282 {
11283 entry->d_tag = BYTE_GET (ext->d_tag);
11284 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
11285 }
11286
11287 free (edyn);
11288
11289 return true;
11290 }
11291
11292 static bool
11293 get_64bit_dynamic_section (Filedata * filedata)
11294 {
11295 Elf64_External_Dyn * edyn;
11296 Elf64_External_Dyn * ext;
11297 Elf_Internal_Dyn * entry;
11298
11299 /* Read in the data. */
11300 edyn = (Elf64_External_Dyn *) get_data (NULL, filedata,
11301 filedata->dynamic_addr, 1,
11302 filedata->dynamic_size,
11303 _("dynamic section"));
11304 if (!edyn)
11305 return false;
11306
11307 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
11308 might not have the luxury of section headers. Look for the DT_NULL
11309 terminator to determine the number of entries. */
11310 for (ext = edyn, filedata->dynamic_nent = 0;
11311 /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer. */
11312 (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size;
11313 ext++)
11314 {
11315 filedata->dynamic_nent++;
11316 if (BYTE_GET (ext->d_tag) == DT_NULL)
11317 break;
11318 }
11319
11320 filedata->dynamic_section
11321 = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry));
11322 if (filedata->dynamic_section == NULL)
11323 {
11324 error (_("Out of memory allocating space for %" PRIu64 " dynamic entries\n"),
11325 filedata->dynamic_nent);
11326 free (edyn);
11327 return false;
11328 }
11329
11330 /* Convert from external to internal formats. */
11331 for (ext = edyn, entry = filedata->dynamic_section;
11332 entry < filedata->dynamic_section + filedata->dynamic_nent;
11333 ext++, entry++)
11334 {
11335 entry->d_tag = BYTE_GET (ext->d_tag);
11336 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
11337 }
11338
11339 free (edyn);
11340
11341 return true;
11342 }
11343
11344 static bool
11345 get_dynamic_section (Filedata *filedata)
11346 {
11347 if (filedata->dynamic_section)
11348 return true;
11349
11350 if (is_32bit_elf)
11351 return get_32bit_dynamic_section (filedata);
11352 else
11353 return get_64bit_dynamic_section (filedata);
11354 }
11355
11356 static void
11357 print_dynamic_flags (uint64_t flags)
11358 {
11359 bool first = true;
11360
11361 while (flags)
11362 {
11363 uint64_t flag;
11364
11365 flag = flags & - flags;
11366 flags &= ~ flag;
11367
11368 if (first)
11369 first = false;
11370 else
11371 putc (' ', stdout);
11372
11373 switch (flag)
11374 {
11375 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
11376 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
11377 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
11378 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
11379 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
11380 default: fputs (_("unknown"), stdout); break;
11381 }
11382 }
11383 puts ("");
11384 }
11385
11386 static uint64_t *
11387 get_dynamic_data (Filedata * filedata, uint64_t number, unsigned int ent_size)
11388 {
11389 unsigned char * e_data;
11390 uint64_t * i_data;
11391
11392 /* If size_t is smaller than uint64_t, eg because you are building
11393 on a 32-bit host, then make sure that when number is cast to
11394 size_t no information is lost. */
11395 if ((size_t) number != number
11396 || ent_size * number / ent_size != number)
11397 {
11398 error (_("Size overflow prevents reading %" PRIu64
11399 " elements of size %u\n"),
11400 number, ent_size);
11401 return NULL;
11402 }
11403
11404 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
11405 attempting to allocate memory when the read is bound to fail. */
11406 if (ent_size * number > filedata->file_size)
11407 {
11408 error (_("Invalid number of dynamic entries: %" PRIu64 "\n"),
11409 number);
11410 return NULL;
11411 }
11412
11413 e_data = (unsigned char *) cmalloc ((size_t) number, ent_size);
11414 if (e_data == NULL)
11415 {
11416 error (_("Out of memory reading %" PRIu64 " dynamic entries\n"),
11417 number);
11418 return NULL;
11419 }
11420
11421 if (fread (e_data, ent_size, (size_t) number, filedata->handle) != number)
11422 {
11423 error (_("Unable to read in %" PRIu64 " bytes of dynamic data\n"),
11424 number * ent_size);
11425 free (e_data);
11426 return NULL;
11427 }
11428
11429 i_data = (uint64_t *) cmalloc ((size_t) number, sizeof (*i_data));
11430 if (i_data == NULL)
11431 {
11432 error (_("Out of memory allocating space for %" PRIu64 " dynamic entries\n"),
11433 number);
11434 free (e_data);
11435 return NULL;
11436 }
11437
11438 while (number--)
11439 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
11440
11441 free (e_data);
11442
11443 return i_data;
11444 }
11445
11446 static uint64_t
11447 get_num_dynamic_syms (Filedata * filedata)
11448 {
11449 uint64_t num_of_syms = 0;
11450
11451 if (!do_histogram && (!do_using_dynamic || do_dyn_syms))
11452 return num_of_syms;
11453
11454 if (filedata->dynamic_info[DT_HASH])
11455 {
11456 unsigned char nb[8];
11457 unsigned char nc[8];
11458 unsigned int hash_ent_size = 4;
11459
11460 if ((filedata->file_header.e_machine == EM_ALPHA
11461 || filedata->file_header.e_machine == EM_S390
11462 || filedata->file_header.e_machine == EM_S390_OLD)
11463 && filedata->file_header.e_ident[EI_CLASS] == ELFCLASS64)
11464 hash_ent_size = 8;
11465
11466 if (fseek64 (filedata->handle,
11467 (filedata->archive_file_offset
11468 + offset_from_vma (filedata,
11469 filedata->dynamic_info[DT_HASH],
11470 sizeof nb + sizeof nc)),
11471 SEEK_SET))
11472 {
11473 error (_("Unable to seek to start of dynamic information\n"));
11474 goto no_hash;
11475 }
11476
11477 if (fread (nb, hash_ent_size, 1, filedata->handle) != 1)
11478 {
11479 error (_("Failed to read in number of buckets\n"));
11480 goto no_hash;
11481 }
11482
11483 if (fread (nc, hash_ent_size, 1, filedata->handle) != 1)
11484 {
11485 error (_("Failed to read in number of chains\n"));
11486 goto no_hash;
11487 }
11488
11489 filedata->nbuckets = byte_get (nb, hash_ent_size);
11490 filedata->nchains = byte_get (nc, hash_ent_size);
11491
11492 if (filedata->nbuckets != 0 && filedata->nchains != 0)
11493 {
11494 filedata->buckets = get_dynamic_data (filedata, filedata->nbuckets,
11495 hash_ent_size);
11496 filedata->chains = get_dynamic_data (filedata, filedata->nchains,
11497 hash_ent_size);
11498
11499 if (filedata->buckets != NULL && filedata->chains != NULL)
11500 num_of_syms = filedata->nchains;
11501 }
11502 no_hash:
11503 if (num_of_syms == 0)
11504 {
11505 free (filedata->buckets);
11506 filedata->buckets = NULL;
11507 free (filedata->chains);
11508 filedata->chains = NULL;
11509 filedata->nbuckets = 0;
11510 }
11511 }
11512
11513 if (filedata->dynamic_info_DT_GNU_HASH)
11514 {
11515 unsigned char nb[16];
11516 uint64_t i, maxchain = 0xffffffff, bitmaskwords;
11517 uint64_t buckets_vma;
11518 uint64_t hn;
11519
11520 if (fseek64 (filedata->handle,
11521 (filedata->archive_file_offset
11522 + offset_from_vma (filedata,
11523 filedata->dynamic_info_DT_GNU_HASH,
11524 sizeof nb)),
11525 SEEK_SET))
11526 {
11527 error (_("Unable to seek to start of dynamic information\n"));
11528 goto no_gnu_hash;
11529 }
11530
11531 if (fread (nb, 16, 1, filedata->handle) != 1)
11532 {
11533 error (_("Failed to read in number of buckets\n"));
11534 goto no_gnu_hash;
11535 }
11536
11537 filedata->ngnubuckets = byte_get (nb, 4);
11538 filedata->gnusymidx = byte_get (nb + 4, 4);
11539 bitmaskwords = byte_get (nb + 8, 4);
11540 buckets_vma = filedata->dynamic_info_DT_GNU_HASH + 16;
11541 if (is_32bit_elf)
11542 buckets_vma += bitmaskwords * 4;
11543 else
11544 buckets_vma += bitmaskwords * 8;
11545
11546 if (fseek64 (filedata->handle,
11547 (filedata->archive_file_offset
11548 + offset_from_vma (filedata, buckets_vma, 4)),
11549 SEEK_SET))
11550 {
11551 error (_("Unable to seek to start of dynamic information\n"));
11552 goto no_gnu_hash;
11553 }
11554
11555 filedata->gnubuckets
11556 = get_dynamic_data (filedata, filedata->ngnubuckets, 4);
11557
11558 if (filedata->gnubuckets == NULL)
11559 goto no_gnu_hash;
11560
11561 for (i = 0; i < filedata->ngnubuckets; i++)
11562 if (filedata->gnubuckets[i] != 0)
11563 {
11564 if (filedata->gnubuckets[i] < filedata->gnusymidx)
11565 goto no_gnu_hash;
11566
11567 if (maxchain == 0xffffffff || filedata->gnubuckets[i] > maxchain)
11568 maxchain = filedata->gnubuckets[i];
11569 }
11570
11571 if (maxchain == 0xffffffff)
11572 goto no_gnu_hash;
11573
11574 maxchain -= filedata->gnusymidx;
11575
11576 if (fseek64 (filedata->handle,
11577 (filedata->archive_file_offset
11578 + offset_from_vma (filedata,
11579 buckets_vma + 4 * (filedata->ngnubuckets
11580 + maxchain),
11581 4)),
11582 SEEK_SET))
11583 {
11584 error (_("Unable to seek to start of dynamic information\n"));
11585 goto no_gnu_hash;
11586 }
11587
11588 do
11589 {
11590 if (fread (nb, 4, 1, filedata->handle) != 1)
11591 {
11592 error (_("Failed to determine last chain length\n"));
11593 goto no_gnu_hash;
11594 }
11595
11596 if (maxchain + 1 == 0)
11597 goto no_gnu_hash;
11598
11599 ++maxchain;
11600 }
11601 while ((byte_get (nb, 4) & 1) == 0);
11602
11603 if (fseek64 (filedata->handle,
11604 (filedata->archive_file_offset
11605 + offset_from_vma (filedata, (buckets_vma
11606 + 4 * filedata->ngnubuckets),
11607 4)),
11608 SEEK_SET))
11609 {
11610 error (_("Unable to seek to start of dynamic information\n"));
11611 goto no_gnu_hash;
11612 }
11613
11614 filedata->gnuchains = get_dynamic_data (filedata, maxchain, 4);
11615 filedata->ngnuchains = maxchain;
11616
11617 if (filedata->gnuchains == NULL)
11618 goto no_gnu_hash;
11619
11620 if (filedata->dynamic_info_DT_MIPS_XHASH)
11621 {
11622 if (fseek64 (filedata->handle,
11623 (filedata->archive_file_offset
11624 + offset_from_vma (filedata, (buckets_vma
11625 + 4 * (filedata->ngnubuckets
11626 + maxchain)), 4)),
11627 SEEK_SET))
11628 {
11629 error (_("Unable to seek to start of dynamic information\n"));
11630 goto no_gnu_hash;
11631 }
11632
11633 filedata->mipsxlat = get_dynamic_data (filedata, maxchain, 4);
11634 if (filedata->mipsxlat == NULL)
11635 goto no_gnu_hash;
11636 }
11637
11638 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
11639 if (filedata->gnubuckets[hn] != 0)
11640 {
11641 uint64_t si = filedata->gnubuckets[hn];
11642 uint64_t off = si - filedata->gnusymidx;
11643
11644 do
11645 {
11646 if (filedata->dynamic_info_DT_MIPS_XHASH)
11647 {
11648 if (off < filedata->ngnuchains
11649 && filedata->mipsxlat[off] >= num_of_syms)
11650 num_of_syms = filedata->mipsxlat[off] + 1;
11651 }
11652 else
11653 {
11654 if (si >= num_of_syms)
11655 num_of_syms = si + 1;
11656 }
11657 si++;
11658 }
11659 while (off < filedata->ngnuchains
11660 && (filedata->gnuchains[off++] & 1) == 0);
11661 }
11662
11663 if (num_of_syms == 0)
11664 {
11665 no_gnu_hash:
11666 free (filedata->mipsxlat);
11667 filedata->mipsxlat = NULL;
11668 free (filedata->gnuchains);
11669 filedata->gnuchains = NULL;
11670 free (filedata->gnubuckets);
11671 filedata->gnubuckets = NULL;
11672 filedata->ngnubuckets = 0;
11673 filedata->ngnuchains = 0;
11674 }
11675 }
11676
11677 return num_of_syms;
11678 }
11679
11680 /* Parse and display the contents of the dynamic section. */
11681
11682 static bool
11683 process_dynamic_section (Filedata * filedata)
11684 {
11685 Elf_Internal_Dyn * entry;
11686
11687 if (filedata->dynamic_size <= 1)
11688 {
11689 if (do_dynamic)
11690 {
11691 if (filedata->is_separate)
11692 printf (_("\nThere is no dynamic section in linked file '%s'.\n"),
11693 filedata->file_name);
11694 else
11695 printf (_("\nThere is no dynamic section in this file.\n"));
11696 }
11697
11698 return true;
11699 }
11700
11701 if (!get_dynamic_section (filedata))
11702 return false;
11703
11704 /* Find the appropriate symbol table. */
11705 if (filedata->dynamic_symbols == NULL || do_histogram)
11706 {
11707 uint64_t num_of_syms;
11708
11709 for (entry = filedata->dynamic_section;
11710 entry < filedata->dynamic_section + filedata->dynamic_nent;
11711 ++entry)
11712 if (entry->d_tag == DT_SYMTAB)
11713 filedata->dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
11714 else if (entry->d_tag == DT_SYMENT)
11715 filedata->dynamic_info[DT_SYMENT] = entry->d_un.d_val;
11716 else if (entry->d_tag == DT_HASH)
11717 filedata->dynamic_info[DT_HASH] = entry->d_un.d_val;
11718 else if (entry->d_tag == DT_GNU_HASH)
11719 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
11720 else if ((filedata->file_header.e_machine == EM_MIPS
11721 || filedata->file_header.e_machine == EM_MIPS_RS3_LE)
11722 && entry->d_tag == DT_MIPS_XHASH)
11723 {
11724 filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val;
11725 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
11726 }
11727
11728 num_of_syms = get_num_dynamic_syms (filedata);
11729
11730 if (num_of_syms != 0
11731 && filedata->dynamic_symbols == NULL
11732 && filedata->dynamic_info[DT_SYMTAB]
11733 && filedata->dynamic_info[DT_SYMENT])
11734 {
11735 Elf_Internal_Phdr *seg;
11736 uint64_t vma = filedata->dynamic_info[DT_SYMTAB];
11737
11738 if (! get_program_headers (filedata))
11739 {
11740 error (_("Cannot interpret virtual addresses "
11741 "without program headers.\n"));
11742 return false;
11743 }
11744
11745 for (seg = filedata->program_headers;
11746 seg < filedata->program_headers + filedata->file_header.e_phnum;
11747 ++seg)
11748 {
11749 if (seg->p_type != PT_LOAD)
11750 continue;
11751
11752 if (seg->p_offset + seg->p_filesz > filedata->file_size)
11753 {
11754 /* See PR 21379 for a reproducer. */
11755 error (_("Invalid PT_LOAD entry\n"));
11756 return false;
11757 }
11758
11759 if (vma >= (seg->p_vaddr & -seg->p_align)
11760 && vma < seg->p_vaddr + seg->p_filesz)
11761 {
11762 /* Since we do not know how big the symbol table is,
11763 we default to reading in up to the end of PT_LOAD
11764 segment and processing that. This is overkill, I
11765 know, but it should work. */
11766 Elf_Internal_Shdr section;
11767 section.sh_offset = (vma - seg->p_vaddr
11768 + seg->p_offset);
11769 section.sh_size = (num_of_syms
11770 * filedata->dynamic_info[DT_SYMENT]);
11771 section.sh_entsize = filedata->dynamic_info[DT_SYMENT];
11772
11773 if (do_checks
11774 && filedata->dynamic_symtab_section != NULL
11775 && ((filedata->dynamic_symtab_section->sh_offset
11776 != section.sh_offset)
11777 || (filedata->dynamic_symtab_section->sh_size
11778 != section.sh_size)
11779 || (filedata->dynamic_symtab_section->sh_entsize
11780 != section.sh_entsize)))
11781 warn (_("\
11782 the .dynsym section doesn't match the DT_SYMTAB and DT_SYMENT tags\n"));
11783
11784 section.sh_name = filedata->string_table_length;
11785 filedata->dynamic_symbols
11786 = get_elf_symbols (filedata, &section,
11787 &filedata->num_dynamic_syms);
11788 if (filedata->dynamic_symbols == NULL
11789 || filedata->num_dynamic_syms != num_of_syms)
11790 {
11791 error (_("Corrupt DT_SYMTAB dynamic entry\n"));
11792 return false;
11793 }
11794 break;
11795 }
11796 }
11797 }
11798 }
11799
11800 /* Similarly find a string table. */
11801 if (filedata->dynamic_strings == NULL)
11802 for (entry = filedata->dynamic_section;
11803 entry < filedata->dynamic_section + filedata->dynamic_nent;
11804 ++entry)
11805 {
11806 if (entry->d_tag == DT_STRTAB)
11807 filedata->dynamic_info[DT_STRTAB] = entry->d_un.d_val;
11808
11809 if (entry->d_tag == DT_STRSZ)
11810 filedata->dynamic_info[DT_STRSZ] = entry->d_un.d_val;
11811
11812 if (filedata->dynamic_info[DT_STRTAB]
11813 && filedata->dynamic_info[DT_STRSZ])
11814 {
11815 uint64_t offset;
11816 uint64_t str_tab_len = filedata->dynamic_info[DT_STRSZ];
11817
11818 offset = offset_from_vma (filedata,
11819 filedata->dynamic_info[DT_STRTAB],
11820 str_tab_len);
11821 if (do_checks
11822 && filedata->dynamic_strtab_section
11823 && ((filedata->dynamic_strtab_section->sh_offset
11824 != (file_ptr) offset)
11825 || (filedata->dynamic_strtab_section->sh_size
11826 != str_tab_len)))
11827 warn (_("\
11828 the .dynstr section doesn't match the DT_STRTAB and DT_STRSZ tags\n"));
11829
11830 filedata->dynamic_strings
11831 = (char *) get_data (NULL, filedata, offset, 1, str_tab_len,
11832 _("dynamic string table"));
11833 if (filedata->dynamic_strings == NULL)
11834 {
11835 error (_("Corrupt DT_STRTAB dynamic entry\n"));
11836 break;
11837 }
11838
11839 filedata->dynamic_strings_length = str_tab_len;
11840 break;
11841 }
11842 }
11843
11844 /* And find the syminfo section if available. */
11845 if (filedata->dynamic_syminfo == NULL)
11846 {
11847 uint64_t syminsz = 0;
11848
11849 for (entry = filedata->dynamic_section;
11850 entry < filedata->dynamic_section + filedata->dynamic_nent;
11851 ++entry)
11852 {
11853 if (entry->d_tag == DT_SYMINENT)
11854 {
11855 /* Note: these braces are necessary to avoid a syntax
11856 error from the SunOS4 C compiler. */
11857 /* PR binutils/17531: A corrupt file can trigger this test.
11858 So do not use an assert, instead generate an error message. */
11859 if (sizeof (Elf_External_Syminfo) != entry->d_un.d_val)
11860 error (_("Bad value (%d) for SYMINENT entry\n"),
11861 (int) entry->d_un.d_val);
11862 }
11863 else if (entry->d_tag == DT_SYMINSZ)
11864 syminsz = entry->d_un.d_val;
11865 else if (entry->d_tag == DT_SYMINFO)
11866 filedata->dynamic_syminfo_offset
11867 = offset_from_vma (filedata, entry->d_un.d_val, syminsz);
11868 }
11869
11870 if (filedata->dynamic_syminfo_offset != 0 && syminsz != 0)
11871 {
11872 Elf_External_Syminfo * extsyminfo;
11873 Elf_External_Syminfo * extsym;
11874 Elf_Internal_Syminfo * syminfo;
11875
11876 /* There is a syminfo section. Read the data. */
11877 extsyminfo = (Elf_External_Syminfo *)
11878 get_data (NULL, filedata, filedata->dynamic_syminfo_offset,
11879 1, syminsz, _("symbol information"));
11880 if (!extsyminfo)
11881 return false;
11882
11883 if (filedata->dynamic_syminfo != NULL)
11884 {
11885 error (_("Multiple dynamic symbol information sections found\n"));
11886 free (filedata->dynamic_syminfo);
11887 }
11888 filedata->dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
11889 if (filedata->dynamic_syminfo == NULL)
11890 {
11891 error (_("Out of memory allocating %" PRIu64
11892 " bytes for dynamic symbol info\n"),
11893 syminsz);
11894 return false;
11895 }
11896
11897 filedata->dynamic_syminfo_nent
11898 = syminsz / sizeof (Elf_External_Syminfo);
11899 for (syminfo = filedata->dynamic_syminfo, extsym = extsyminfo;
11900 syminfo < (filedata->dynamic_syminfo
11901 + filedata->dynamic_syminfo_nent);
11902 ++syminfo, ++extsym)
11903 {
11904 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
11905 syminfo->si_flags = BYTE_GET (extsym->si_flags);
11906 }
11907
11908 free (extsyminfo);
11909 }
11910 }
11911
11912 if (do_dynamic && filedata->dynamic_addr)
11913 {
11914 if (filedata->is_separate)
11915 printf (ngettext ("\nIn linked file '%s' the dynamic section at offset %#" PRIx64 " contains %" PRIu64 " entry:\n",
11916 "\nIn linked file '%s' the dynamic section at offset %#" PRIx64 " contains %" PRIu64 " entries:\n",
11917 filedata->dynamic_nent),
11918 filedata->file_name,
11919 filedata->dynamic_addr,
11920 filedata->dynamic_nent);
11921 else
11922 printf (ngettext ("\nDynamic section at offset %#" PRIx64 " contains %" PRIu64 " entry:\n",
11923 "\nDynamic section at offset %#" PRIx64 " contains %" PRIu64 " entries:\n",
11924 filedata->dynamic_nent),
11925 filedata->dynamic_addr,
11926 filedata->dynamic_nent);
11927 }
11928 if (do_dynamic)
11929 printf (_(" Tag Type Name/Value\n"));
11930
11931 for (entry = filedata->dynamic_section;
11932 entry < filedata->dynamic_section + filedata->dynamic_nent;
11933 entry++)
11934 {
11935 if (do_dynamic)
11936 {
11937 const char * dtype;
11938
11939 putchar (' ');
11940 print_vma (entry->d_tag, FULL_HEX);
11941 dtype = get_dynamic_type (filedata, entry->d_tag);
11942 printf (" (%s)%*s", dtype,
11943 ((is_32bit_elf ? 27 : 19) - (int) strlen (dtype)), " ");
11944 }
11945
11946 switch (entry->d_tag)
11947 {
11948 case DT_FLAGS:
11949 if (do_dynamic)
11950 print_dynamic_flags (entry->d_un.d_val);
11951 break;
11952
11953 case DT_AUXILIARY:
11954 case DT_FILTER:
11955 case DT_CONFIG:
11956 case DT_DEPAUDIT:
11957 case DT_AUDIT:
11958 if (do_dynamic)
11959 {
11960 switch (entry->d_tag)
11961 {
11962 case DT_AUXILIARY:
11963 printf (_("Auxiliary library"));
11964 break;
11965
11966 case DT_FILTER:
11967 printf (_("Filter library"));
11968 break;
11969
11970 case DT_CONFIG:
11971 printf (_("Configuration file"));
11972 break;
11973
11974 case DT_DEPAUDIT:
11975 printf (_("Dependency audit library"));
11976 break;
11977
11978 case DT_AUDIT:
11979 printf (_("Audit library"));
11980 break;
11981 }
11982
11983 if (valid_dynamic_name (filedata, entry->d_un.d_val))
11984 printf (": [%s]\n",
11985 get_dynamic_name (filedata, entry->d_un.d_val));
11986 else
11987 {
11988 printf (": ");
11989 print_vma (entry->d_un.d_val, PREFIX_HEX);
11990 putchar ('\n');
11991 }
11992 }
11993 break;
11994
11995 case DT_FEATURE:
11996 if (do_dynamic)
11997 {
11998 printf (_("Flags:"));
11999
12000 if (entry->d_un.d_val == 0)
12001 printf (_(" None\n"));
12002 else
12003 {
12004 uint64_t val = entry->d_un.d_val;
12005
12006 if (val & DTF_1_PARINIT)
12007 {
12008 printf (" PARINIT");
12009 val ^= DTF_1_PARINIT;
12010 }
12011 if (val & DTF_1_CONFEXP)
12012 {
12013 printf (" CONFEXP");
12014 val ^= DTF_1_CONFEXP;
12015 }
12016 if (val != 0)
12017 printf (" %" PRIx64, val);
12018 puts ("");
12019 }
12020 }
12021 break;
12022
12023 case DT_POSFLAG_1:
12024 if (do_dynamic)
12025 {
12026 printf (_("Flags:"));
12027
12028 if (entry->d_un.d_val == 0)
12029 printf (_(" None\n"));
12030 else
12031 {
12032 uint64_t val = entry->d_un.d_val;
12033
12034 if (val & DF_P1_LAZYLOAD)
12035 {
12036 printf (" LAZYLOAD");
12037 val ^= DF_P1_LAZYLOAD;
12038 }
12039 if (val & DF_P1_GROUPPERM)
12040 {
12041 printf (" GROUPPERM");
12042 val ^= DF_P1_GROUPPERM;
12043 }
12044 if (val != 0)
12045 printf (" %" PRIx64, val);
12046 puts ("");
12047 }
12048 }
12049 break;
12050
12051 case DT_FLAGS_1:
12052 if (do_dynamic)
12053 {
12054 printf (_("Flags:"));
12055 if (entry->d_un.d_val == 0)
12056 printf (_(" None\n"));
12057 else
12058 {
12059 uint64_t val = entry->d_un.d_val;
12060
12061 if (val & DF_1_NOW)
12062 {
12063 printf (" NOW");
12064 val ^= DF_1_NOW;
12065 }
12066 if (val & DF_1_GLOBAL)
12067 {
12068 printf (" GLOBAL");
12069 val ^= DF_1_GLOBAL;
12070 }
12071 if (val & DF_1_GROUP)
12072 {
12073 printf (" GROUP");
12074 val ^= DF_1_GROUP;
12075 }
12076 if (val & DF_1_NODELETE)
12077 {
12078 printf (" NODELETE");
12079 val ^= DF_1_NODELETE;
12080 }
12081 if (val & DF_1_LOADFLTR)
12082 {
12083 printf (" LOADFLTR");
12084 val ^= DF_1_LOADFLTR;
12085 }
12086 if (val & DF_1_INITFIRST)
12087 {
12088 printf (" INITFIRST");
12089 val ^= DF_1_INITFIRST;
12090 }
12091 if (val & DF_1_NOOPEN)
12092 {
12093 printf (" NOOPEN");
12094 val ^= DF_1_NOOPEN;
12095 }
12096 if (val & DF_1_ORIGIN)
12097 {
12098 printf (" ORIGIN");
12099 val ^= DF_1_ORIGIN;
12100 }
12101 if (val & DF_1_DIRECT)
12102 {
12103 printf (" DIRECT");
12104 val ^= DF_1_DIRECT;
12105 }
12106 if (val & DF_1_TRANS)
12107 {
12108 printf (" TRANS");
12109 val ^= DF_1_TRANS;
12110 }
12111 if (val & DF_1_INTERPOSE)
12112 {
12113 printf (" INTERPOSE");
12114 val ^= DF_1_INTERPOSE;
12115 }
12116 if (val & DF_1_NODEFLIB)
12117 {
12118 printf (" NODEFLIB");
12119 val ^= DF_1_NODEFLIB;
12120 }
12121 if (val & DF_1_NODUMP)
12122 {
12123 printf (" NODUMP");
12124 val ^= DF_1_NODUMP;
12125 }
12126 if (val & DF_1_CONFALT)
12127 {
12128 printf (" CONFALT");
12129 val ^= DF_1_CONFALT;
12130 }
12131 if (val & DF_1_ENDFILTEE)
12132 {
12133 printf (" ENDFILTEE");
12134 val ^= DF_1_ENDFILTEE;
12135 }
12136 if (val & DF_1_DISPRELDNE)
12137 {
12138 printf (" DISPRELDNE");
12139 val ^= DF_1_DISPRELDNE;
12140 }
12141 if (val & DF_1_DISPRELPND)
12142 {
12143 printf (" DISPRELPND");
12144 val ^= DF_1_DISPRELPND;
12145 }
12146 if (val & DF_1_NODIRECT)
12147 {
12148 printf (" NODIRECT");
12149 val ^= DF_1_NODIRECT;
12150 }
12151 if (val & DF_1_IGNMULDEF)
12152 {
12153 printf (" IGNMULDEF");
12154 val ^= DF_1_IGNMULDEF;
12155 }
12156 if (val & DF_1_NOKSYMS)
12157 {
12158 printf (" NOKSYMS");
12159 val ^= DF_1_NOKSYMS;
12160 }
12161 if (val & DF_1_NOHDR)
12162 {
12163 printf (" NOHDR");
12164 val ^= DF_1_NOHDR;
12165 }
12166 if (val & DF_1_EDITED)
12167 {
12168 printf (" EDITED");
12169 val ^= DF_1_EDITED;
12170 }
12171 if (val & DF_1_NORELOC)
12172 {
12173 printf (" NORELOC");
12174 val ^= DF_1_NORELOC;
12175 }
12176 if (val & DF_1_SYMINTPOSE)
12177 {
12178 printf (" SYMINTPOSE");
12179 val ^= DF_1_SYMINTPOSE;
12180 }
12181 if (val & DF_1_GLOBAUDIT)
12182 {
12183 printf (" GLOBAUDIT");
12184 val ^= DF_1_GLOBAUDIT;
12185 }
12186 if (val & DF_1_SINGLETON)
12187 {
12188 printf (" SINGLETON");
12189 val ^= DF_1_SINGLETON;
12190 }
12191 if (val & DF_1_STUB)
12192 {
12193 printf (" STUB");
12194 val ^= DF_1_STUB;
12195 }
12196 if (val & DF_1_PIE)
12197 {
12198 printf (" PIE");
12199 val ^= DF_1_PIE;
12200 }
12201 if (val & DF_1_KMOD)
12202 {
12203 printf (" KMOD");
12204 val ^= DF_1_KMOD;
12205 }
12206 if (val & DF_1_WEAKFILTER)
12207 {
12208 printf (" WEAKFILTER");
12209 val ^= DF_1_WEAKFILTER;
12210 }
12211 if (val & DF_1_NOCOMMON)
12212 {
12213 printf (" NOCOMMON");
12214 val ^= DF_1_NOCOMMON;
12215 }
12216 if (val != 0)
12217 printf (" %" PRIx64, val);
12218 puts ("");
12219 }
12220 }
12221 break;
12222
12223 case DT_PLTREL:
12224 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
12225 if (do_dynamic)
12226 puts (get_dynamic_type (filedata, entry->d_un.d_val));
12227 break;
12228
12229 case DT_NULL :
12230 case DT_NEEDED :
12231 case DT_PLTGOT :
12232 case DT_HASH :
12233 case DT_STRTAB :
12234 case DT_SYMTAB :
12235 case DT_RELA :
12236 case DT_INIT :
12237 case DT_FINI :
12238 case DT_SONAME :
12239 case DT_RPATH :
12240 case DT_SYMBOLIC:
12241 case DT_REL :
12242 case DT_RELR :
12243 case DT_DEBUG :
12244 case DT_TEXTREL :
12245 case DT_JMPREL :
12246 case DT_RUNPATH :
12247 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
12248
12249 if (do_dynamic)
12250 {
12251 const char *name;
12252
12253 if (valid_dynamic_name (filedata, entry->d_un.d_val))
12254 name = get_dynamic_name (filedata, entry->d_un.d_val);
12255 else
12256 name = NULL;
12257
12258 if (name)
12259 {
12260 switch (entry->d_tag)
12261 {
12262 case DT_NEEDED:
12263 printf (_("Shared library: [%s]"), name);
12264
12265 if (filedata->program_interpreter
12266 && streq (name, filedata->program_interpreter))
12267 printf (_(" program interpreter"));
12268 break;
12269
12270 case DT_SONAME:
12271 printf (_("Library soname: [%s]"), name);
12272 break;
12273
12274 case DT_RPATH:
12275 printf (_("Library rpath: [%s]"), name);
12276 break;
12277
12278 case DT_RUNPATH:
12279 printf (_("Library runpath: [%s]"), name);
12280 break;
12281
12282 default:
12283 print_vma (entry->d_un.d_val, PREFIX_HEX);
12284 break;
12285 }
12286 }
12287 else
12288 print_vma (entry->d_un.d_val, PREFIX_HEX);
12289
12290 putchar ('\n');
12291 }
12292 break;
12293
12294 case DT_PLTRELSZ:
12295 case DT_RELASZ :
12296 case DT_STRSZ :
12297 case DT_RELSZ :
12298 case DT_RELAENT :
12299 case DT_RELRENT :
12300 case DT_RELRSZ :
12301 case DT_SYMENT :
12302 case DT_RELENT :
12303 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
12304 /* Fall through. */
12305 case DT_PLTPADSZ:
12306 case DT_MOVEENT :
12307 case DT_MOVESZ :
12308 case DT_PREINIT_ARRAYSZ:
12309 case DT_INIT_ARRAYSZ:
12310 case DT_FINI_ARRAYSZ:
12311 case DT_GNU_CONFLICTSZ:
12312 case DT_GNU_LIBLISTSZ:
12313 if (do_dynamic)
12314 {
12315 print_vma (entry->d_un.d_val, UNSIGNED);
12316 printf (_(" (bytes)\n"));
12317 }
12318 break;
12319
12320 case DT_VERDEFNUM:
12321 case DT_VERNEEDNUM:
12322 case DT_RELACOUNT:
12323 case DT_RELCOUNT:
12324 if (do_dynamic)
12325 {
12326 print_vma (entry->d_un.d_val, UNSIGNED);
12327 putchar ('\n');
12328 }
12329 break;
12330
12331 case DT_SYMINSZ:
12332 case DT_SYMINENT:
12333 case DT_SYMINFO:
12334 case DT_USED:
12335 case DT_INIT_ARRAY:
12336 case DT_FINI_ARRAY:
12337 if (do_dynamic)
12338 {
12339 if (entry->d_tag == DT_USED
12340 && valid_dynamic_name (filedata, entry->d_un.d_val))
12341 {
12342 const char *name
12343 = get_dynamic_name (filedata, entry->d_un.d_val);
12344
12345 if (*name)
12346 {
12347 printf (_("Not needed object: [%s]\n"), name);
12348 break;
12349 }
12350 }
12351
12352 print_vma (entry->d_un.d_val, PREFIX_HEX);
12353 putchar ('\n');
12354 }
12355 break;
12356
12357 case DT_BIND_NOW:
12358 /* The value of this entry is ignored. */
12359 if (do_dynamic)
12360 putchar ('\n');
12361 break;
12362
12363 case DT_GNU_PRELINKED:
12364 if (do_dynamic)
12365 {
12366 struct tm * tmp;
12367 time_t atime = entry->d_un.d_val;
12368
12369 tmp = gmtime (&atime);
12370 /* PR 17533 file: 041-1244816-0.004. */
12371 if (tmp == NULL)
12372 printf (_("<corrupt time val: %" PRIx64),
12373 (uint64_t) atime);
12374 else
12375 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
12376 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
12377 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
12378
12379 }
12380 break;
12381
12382 case DT_GNU_HASH:
12383 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
12384 if (do_dynamic)
12385 {
12386 print_vma (entry->d_un.d_val, PREFIX_HEX);
12387 putchar ('\n');
12388 }
12389 break;
12390
12391 case DT_GNU_FLAGS_1:
12392 if (do_dynamic)
12393 {
12394 printf (_("Flags:"));
12395 if (entry->d_un.d_val == 0)
12396 printf (_(" None\n"));
12397 else
12398 {
12399 uint64_t val = entry->d_un.d_val;
12400
12401 if (val & DF_GNU_1_UNIQUE)
12402 {
12403 printf (" UNIQUE");
12404 val ^= DF_GNU_1_UNIQUE;
12405 }
12406 if (val != 0)
12407 printf (" %" PRIx64, val);
12408 puts ("");
12409 }
12410 }
12411 break;
12412
12413 default:
12414 if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM))
12415 filedata->version_info[DT_VERSIONTAGIDX (entry->d_tag)]
12416 = entry->d_un.d_val;
12417
12418 if (do_dynamic)
12419 {
12420 switch (filedata->file_header.e_machine)
12421 {
12422 case EM_AARCH64:
12423 dynamic_section_aarch64_val (entry);
12424 break;
12425 case EM_MIPS:
12426 case EM_MIPS_RS3_LE:
12427 dynamic_section_mips_val (filedata, entry);
12428 break;
12429 case EM_PARISC:
12430 dynamic_section_parisc_val (entry);
12431 break;
12432 case EM_IA_64:
12433 dynamic_section_ia64_val (entry);
12434 break;
12435 default:
12436 print_vma (entry->d_un.d_val, PREFIX_HEX);
12437 putchar ('\n');
12438 }
12439 }
12440 break;
12441 }
12442 }
12443
12444 return true;
12445 }
12446
12447 static char *
12448 get_ver_flags (unsigned int flags)
12449 {
12450 static char buff[128];
12451
12452 buff[0] = 0;
12453
12454 if (flags == 0)
12455 return _("none");
12456
12457 if (flags & VER_FLG_BASE)
12458 strcat (buff, "BASE");
12459
12460 if (flags & VER_FLG_WEAK)
12461 {
12462 if (flags & VER_FLG_BASE)
12463 strcat (buff, " | ");
12464
12465 strcat (buff, "WEAK");
12466 }
12467
12468 if (flags & VER_FLG_INFO)
12469 {
12470 if (flags & (VER_FLG_BASE|VER_FLG_WEAK))
12471 strcat (buff, " | ");
12472
12473 strcat (buff, "INFO");
12474 }
12475
12476 if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
12477 {
12478 if (flags & (VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
12479 strcat (buff, " | ");
12480
12481 strcat (buff, _("<unknown>"));
12482 }
12483
12484 return buff;
12485 }
12486
12487 /* Display the contents of the version sections. */
12488
12489 static bool
12490 process_version_sections (Filedata * filedata)
12491 {
12492 Elf_Internal_Shdr * section;
12493 unsigned i;
12494 bool found = false;
12495
12496 if (! do_version)
12497 return true;
12498
12499 for (i = 0, section = filedata->section_headers;
12500 i < filedata->file_header.e_shnum;
12501 i++, section++)
12502 {
12503 switch (section->sh_type)
12504 {
12505 case SHT_GNU_verdef:
12506 {
12507 Elf_External_Verdef * edefs;
12508 size_t idx;
12509 size_t cnt;
12510 char * endbuf;
12511
12512 found = true;
12513
12514 if (filedata->is_separate)
12515 printf (ngettext ("\nIn linked file '%s' the version definition section '%s' contains %u entry:\n",
12516 "\nIn linked file '%s' the version definition section '%s' contains %u entries:\n",
12517 section->sh_info),
12518 filedata->file_name,
12519 printable_section_name (filedata, section),
12520 section->sh_info);
12521 else
12522 printf (ngettext ("\nVersion definition section '%s' "
12523 "contains %u entry:\n",
12524 "\nVersion definition section '%s' "
12525 "contains %u entries:\n",
12526 section->sh_info),
12527 printable_section_name (filedata, section),
12528 section->sh_info);
12529
12530 printf (_(" Addr: 0x%016" PRIx64), section->sh_addr);
12531 printf (_(" Offset: 0x%08" PRIx64 " Link: %u (%s)\n"),
12532 section->sh_offset, section->sh_link,
12533 printable_section_name_from_index (filedata, section->sh_link));
12534
12535 edefs = (Elf_External_Verdef *)
12536 get_data (NULL, filedata, section->sh_offset, 1,section->sh_size,
12537 _("version definition section"));
12538 if (!edefs)
12539 break;
12540 endbuf = (char *) edefs + section->sh_size;
12541
12542 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
12543 {
12544 char * vstart;
12545 Elf_External_Verdef * edef;
12546 Elf_Internal_Verdef ent;
12547 Elf_External_Verdaux * eaux;
12548 Elf_Internal_Verdaux aux;
12549 size_t isum;
12550 int j;
12551
12552 vstart = ((char *) edefs) + idx;
12553 if (vstart + sizeof (*edef) > endbuf)
12554 break;
12555
12556 edef = (Elf_External_Verdef *) vstart;
12557
12558 ent.vd_version = BYTE_GET (edef->vd_version);
12559 ent.vd_flags = BYTE_GET (edef->vd_flags);
12560 ent.vd_ndx = BYTE_GET (edef->vd_ndx);
12561 ent.vd_cnt = BYTE_GET (edef->vd_cnt);
12562 ent.vd_hash = BYTE_GET (edef->vd_hash);
12563 ent.vd_aux = BYTE_GET (edef->vd_aux);
12564 ent.vd_next = BYTE_GET (edef->vd_next);
12565
12566 printf (_(" %#06zx: Rev: %d Flags: %s"),
12567 idx, ent.vd_version, get_ver_flags (ent.vd_flags));
12568
12569 printf (_(" Index: %d Cnt: %d "),
12570 ent.vd_ndx, ent.vd_cnt);
12571
12572 /* Check for overflow. */
12573 if (ent.vd_aux > (size_t) (endbuf - vstart))
12574 break;
12575
12576 vstart += ent.vd_aux;
12577
12578 if (vstart + sizeof (*eaux) > endbuf)
12579 break;
12580 eaux = (Elf_External_Verdaux *) vstart;
12581
12582 aux.vda_name = BYTE_GET (eaux->vda_name);
12583 aux.vda_next = BYTE_GET (eaux->vda_next);
12584
12585 if (valid_dynamic_name (filedata, aux.vda_name))
12586 printf (_("Name: %s\n"),
12587 get_dynamic_name (filedata, aux.vda_name));
12588 else
12589 printf (_("Name index: %ld\n"), aux.vda_name);
12590
12591 isum = idx + ent.vd_aux;
12592
12593 for (j = 1; j < ent.vd_cnt; j++)
12594 {
12595 if (aux.vda_next < sizeof (*eaux)
12596 && !(j == ent.vd_cnt - 1 && aux.vda_next == 0))
12597 {
12598 warn (_("Invalid vda_next field of %lx\n"),
12599 aux.vda_next);
12600 j = ent.vd_cnt;
12601 break;
12602 }
12603 /* Check for overflow. */
12604 if (aux.vda_next > (size_t) (endbuf - vstart))
12605 break;
12606
12607 isum += aux.vda_next;
12608 vstart += aux.vda_next;
12609
12610 if (vstart + sizeof (*eaux) > endbuf)
12611 break;
12612 eaux = (Elf_External_Verdaux *) vstart;
12613
12614 aux.vda_name = BYTE_GET (eaux->vda_name);
12615 aux.vda_next = BYTE_GET (eaux->vda_next);
12616
12617 if (valid_dynamic_name (filedata, aux.vda_name))
12618 printf (_(" %#06zx: Parent %d: %s\n"),
12619 isum, j,
12620 get_dynamic_name (filedata, aux.vda_name));
12621 else
12622 printf (_(" %#06zx: Parent %d, name index: %ld\n"),
12623 isum, j, aux.vda_name);
12624 }
12625
12626 if (j < ent.vd_cnt)
12627 printf (_(" Version def aux past end of section\n"));
12628
12629 /* PR 17531:
12630 file: id:000001,src:000172+005151,op:splice,rep:2. */
12631 if (ent.vd_next < sizeof (*edef)
12632 && !(cnt == section->sh_info - 1 && ent.vd_next == 0))
12633 {
12634 warn (_("Invalid vd_next field of %lx\n"), ent.vd_next);
12635 cnt = section->sh_info;
12636 break;
12637 }
12638 if (ent.vd_next > (size_t) (endbuf - ((char *) edefs + idx)))
12639 break;
12640
12641 idx += ent.vd_next;
12642 }
12643
12644 if (cnt < section->sh_info)
12645 printf (_(" Version definition past end of section\n"));
12646
12647 free (edefs);
12648 }
12649 break;
12650
12651 case SHT_GNU_verneed:
12652 {
12653 Elf_External_Verneed * eneed;
12654 size_t idx;
12655 size_t cnt;
12656 char * endbuf;
12657
12658 found = true;
12659
12660 if (filedata->is_separate)
12661 printf (ngettext ("\nIn linked file '%s' the version needs section '%s' contains %u entry:\n",
12662 "\nIn linked file '%s' the version needs section '%s' contains %u entries:\n",
12663 section->sh_info),
12664 filedata->file_name,
12665 printable_section_name (filedata, section),
12666 section->sh_info);
12667 else
12668 printf (ngettext ("\nVersion needs section '%s' "
12669 "contains %u entry:\n",
12670 "\nVersion needs section '%s' "
12671 "contains %u entries:\n",
12672 section->sh_info),
12673 printable_section_name (filedata, section),
12674 section->sh_info);
12675
12676 printf (_(" Addr: 0x%016" PRIx64), section->sh_addr);
12677 printf (_(" Offset: 0x%08" PRIx64 " Link: %u (%s)\n"),
12678 section->sh_offset, section->sh_link,
12679 printable_section_name_from_index (filedata, section->sh_link));
12680
12681 eneed = (Elf_External_Verneed *) get_data (NULL, filedata,
12682 section->sh_offset, 1,
12683 section->sh_size,
12684 _("Version Needs section"));
12685 if (!eneed)
12686 break;
12687 endbuf = (char *) eneed + section->sh_size;
12688
12689 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
12690 {
12691 Elf_External_Verneed * entry;
12692 Elf_Internal_Verneed ent;
12693 size_t isum;
12694 int j;
12695 char * vstart;
12696
12697 vstart = ((char *) eneed) + idx;
12698 if (vstart + sizeof (*entry) > endbuf)
12699 break;
12700
12701 entry = (Elf_External_Verneed *) vstart;
12702
12703 ent.vn_version = BYTE_GET (entry->vn_version);
12704 ent.vn_cnt = BYTE_GET (entry->vn_cnt);
12705 ent.vn_file = BYTE_GET (entry->vn_file);
12706 ent.vn_aux = BYTE_GET (entry->vn_aux);
12707 ent.vn_next = BYTE_GET (entry->vn_next);
12708
12709 printf (_(" %#06zx: Version: %d"), idx, ent.vn_version);
12710
12711 if (valid_dynamic_name (filedata, ent.vn_file))
12712 printf (_(" File: %s"),
12713 get_dynamic_name (filedata, ent.vn_file));
12714 else
12715 printf (_(" File: %lx"), ent.vn_file);
12716
12717 printf (_(" Cnt: %d\n"), ent.vn_cnt);
12718
12719 /* Check for overflow. */
12720 if (ent.vn_aux > (size_t) (endbuf - vstart))
12721 break;
12722 vstart += ent.vn_aux;
12723
12724 for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j)
12725 {
12726 Elf_External_Vernaux * eaux;
12727 Elf_Internal_Vernaux aux;
12728
12729 if (vstart + sizeof (*eaux) > endbuf)
12730 break;
12731 eaux = (Elf_External_Vernaux *) vstart;
12732
12733 aux.vna_hash = BYTE_GET (eaux->vna_hash);
12734 aux.vna_flags = BYTE_GET (eaux->vna_flags);
12735 aux.vna_other = BYTE_GET (eaux->vna_other);
12736 aux.vna_name = BYTE_GET (eaux->vna_name);
12737 aux.vna_next = BYTE_GET (eaux->vna_next);
12738
12739 if (valid_dynamic_name (filedata, aux.vna_name))
12740 printf (_(" %#06zx: Name: %s"),
12741 isum, get_dynamic_name (filedata, aux.vna_name));
12742 else
12743 printf (_(" %#06zx: Name index: %lx"),
12744 isum, aux.vna_name);
12745
12746 printf (_(" Flags: %s Version: %d\n"),
12747 get_ver_flags (aux.vna_flags), aux.vna_other);
12748
12749 if (aux.vna_next < sizeof (*eaux)
12750 && !(j == ent.vn_cnt - 1 && aux.vna_next == 0))
12751 {
12752 warn (_("Invalid vna_next field of %lx\n"),
12753 aux.vna_next);
12754 j = ent.vn_cnt;
12755 break;
12756 }
12757 /* Check for overflow. */
12758 if (aux.vna_next > (size_t) (endbuf - vstart))
12759 break;
12760 isum += aux.vna_next;
12761 vstart += aux.vna_next;
12762 }
12763
12764 if (j < ent.vn_cnt)
12765 warn (_("Missing Version Needs auxiliary information\n"));
12766
12767 if (ent.vn_next < sizeof (*entry)
12768 && !(cnt == section->sh_info - 1 && ent.vn_next == 0))
12769 {
12770 warn (_("Invalid vn_next field of %lx\n"), ent.vn_next);
12771 cnt = section->sh_info;
12772 break;
12773 }
12774 if (ent.vn_next > (size_t) (endbuf - ((char *) eneed + idx)))
12775 break;
12776 idx += ent.vn_next;
12777 }
12778
12779 if (cnt < section->sh_info)
12780 warn (_("Missing Version Needs information\n"));
12781
12782 free (eneed);
12783 }
12784 break;
12785
12786 case SHT_GNU_versym:
12787 {
12788 Elf_Internal_Shdr * link_section;
12789 uint64_t total;
12790 unsigned int cnt;
12791 unsigned char * edata;
12792 unsigned short * data;
12793 char * strtab;
12794 Elf_Internal_Sym * symbols;
12795 Elf_Internal_Shdr * string_sec;
12796 uint64_t num_syms;
12797 uint64_t off;
12798
12799 if (section->sh_link >= filedata->file_header.e_shnum)
12800 break;
12801
12802 link_section = filedata->section_headers + section->sh_link;
12803 total = section->sh_size / sizeof (Elf_External_Versym);
12804
12805 if (link_section->sh_link >= filedata->file_header.e_shnum)
12806 break;
12807
12808 found = true;
12809
12810 symbols = get_elf_symbols (filedata, link_section, & num_syms);
12811 if (symbols == NULL)
12812 break;
12813
12814 string_sec = filedata->section_headers + link_section->sh_link;
12815
12816 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
12817 string_sec->sh_size,
12818 _("version string table"));
12819 if (!strtab)
12820 {
12821 free (symbols);
12822 break;
12823 }
12824
12825 if (filedata->is_separate)
12826 printf (ngettext ("\nIn linked file '%s' the version symbols section '%s' contains %" PRIu64 " entry:\n",
12827 "\nIn linked file '%s' the version symbols section '%s' contains %" PRIu64 " entries:\n",
12828 total),
12829 filedata->file_name,
12830 printable_section_name (filedata, section),
12831 total);
12832 else
12833 printf (ngettext ("\nVersion symbols section '%s' "
12834 "contains %" PRIu64 " entry:\n",
12835 "\nVersion symbols section '%s' "
12836 "contains %" PRIu64 " entries:\n",
12837 total),
12838 printable_section_name (filedata, section),
12839 total);
12840
12841 printf (_(" Addr: 0x%016" PRIx64), section->sh_addr);
12842 printf (_(" Offset: 0x%08" PRIx64 " Link: %u (%s)\n"),
12843 section->sh_offset, section->sh_link,
12844 printable_section_name (filedata, link_section));
12845
12846 off = offset_from_vma (filedata,
12847 filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
12848 total * sizeof (short));
12849 edata = (unsigned char *) get_data (NULL, filedata, off,
12850 sizeof (short), total,
12851 _("version symbol data"));
12852 if (!edata)
12853 {
12854 free (strtab);
12855 free (symbols);
12856 break;
12857 }
12858
12859 data = (short unsigned int *) cmalloc (total, sizeof (short));
12860
12861 for (cnt = total; cnt --;)
12862 data[cnt] = byte_get (edata + cnt * sizeof (short),
12863 sizeof (short));
12864
12865 free (edata);
12866
12867 for (cnt = 0; cnt < total; cnt += 4)
12868 {
12869 int j, nn;
12870 char *name;
12871 char *invalid = _("*invalid*");
12872
12873 printf (" %03x:", cnt);
12874
12875 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
12876 switch (data[cnt + j])
12877 {
12878 case 0:
12879 fputs (_(" 0 (*local*) "), stdout);
12880 break;
12881
12882 case 1:
12883 fputs (_(" 1 (*global*) "), stdout);
12884 break;
12885
12886 default:
12887 nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
12888 data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
12889
12890 /* If this index value is greater than the size of the symbols
12891 array, break to avoid an out-of-bounds read. */
12892 if (cnt + j >= num_syms)
12893 {
12894 warn (_("invalid index into symbol array\n"));
12895 break;
12896 }
12897
12898 name = NULL;
12899 if (filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
12900 {
12901 Elf_Internal_Verneed ivn;
12902 uint64_t offset;
12903
12904 offset = offset_from_vma
12905 (filedata,
12906 filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
12907 sizeof (Elf_External_Verneed));
12908
12909 do
12910 {
12911 Elf_Internal_Vernaux ivna;
12912 Elf_External_Verneed evn;
12913 Elf_External_Vernaux evna;
12914 uint64_t a_off;
12915
12916 if (get_data (&evn, filedata, offset, sizeof (evn), 1,
12917 _("version need")) == NULL)
12918 break;
12919
12920 ivn.vn_aux = BYTE_GET (evn.vn_aux);
12921 ivn.vn_next = BYTE_GET (evn.vn_next);
12922
12923 a_off = offset + ivn.vn_aux;
12924
12925 do
12926 {
12927 if (get_data (&evna, filedata, a_off, sizeof (evna),
12928 1, _("version need aux (2)")) == NULL)
12929 {
12930 ivna.vna_next = 0;
12931 ivna.vna_other = 0;
12932 }
12933 else
12934 {
12935 ivna.vna_next = BYTE_GET (evna.vna_next);
12936 ivna.vna_other = BYTE_GET (evna.vna_other);
12937 }
12938
12939 a_off += ivna.vna_next;
12940 }
12941 while (ivna.vna_other != data[cnt + j]
12942 && ivna.vna_next != 0);
12943
12944 if (ivna.vna_other == data[cnt + j])
12945 {
12946 ivna.vna_name = BYTE_GET (evna.vna_name);
12947
12948 if (ivna.vna_name >= string_sec->sh_size)
12949 name = invalid;
12950 else
12951 name = strtab + ivna.vna_name;
12952 break;
12953 }
12954
12955 offset += ivn.vn_next;
12956 }
12957 while (ivn.vn_next);
12958 }
12959
12960 if (data[cnt + j] != 0x8001
12961 && filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
12962 {
12963 Elf_Internal_Verdef ivd;
12964 Elf_External_Verdef evd;
12965 uint64_t offset;
12966
12967 offset = offset_from_vma
12968 (filedata,
12969 filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
12970 sizeof evd);
12971
12972 do
12973 {
12974 if (get_data (&evd, filedata, offset, sizeof (evd), 1,
12975 _("version def")) == NULL)
12976 {
12977 ivd.vd_next = 0;
12978 /* PR 17531: file: 046-1082287-0.004. */
12979 ivd.vd_ndx = (data[cnt + j] & VERSYM_VERSION) + 1;
12980 break;
12981 }
12982 else
12983 {
12984 ivd.vd_next = BYTE_GET (evd.vd_next);
12985 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
12986 }
12987
12988 offset += ivd.vd_next;
12989 }
12990 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
12991 && ivd.vd_next != 0);
12992
12993 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
12994 {
12995 Elf_External_Verdaux evda;
12996 Elf_Internal_Verdaux ivda;
12997
12998 ivd.vd_aux = BYTE_GET (evd.vd_aux);
12999
13000 if (get_data (&evda, filedata,
13001 offset - ivd.vd_next + ivd.vd_aux,
13002 sizeof (evda), 1,
13003 _("version def aux")) == NULL)
13004 break;
13005
13006 ivda.vda_name = BYTE_GET (evda.vda_name);
13007
13008 if (ivda.vda_name >= string_sec->sh_size)
13009 name = invalid;
13010 else if (name != NULL && name != invalid)
13011 name = _("*both*");
13012 else
13013 name = strtab + ivda.vda_name;
13014 }
13015 }
13016 if (name != NULL)
13017 nn += printf ("(%s%-*s",
13018 name,
13019 12 - (int) strlen (name),
13020 ")");
13021
13022 if (nn < 18)
13023 printf ("%*c", 18 - nn, ' ');
13024 }
13025
13026 putchar ('\n');
13027 }
13028
13029 free (data);
13030 free (strtab);
13031 free (symbols);
13032 }
13033 break;
13034
13035 default:
13036 break;
13037 }
13038 }
13039
13040 if (! found)
13041 {
13042 if (filedata->is_separate)
13043 printf (_("\nNo version information found in linked file '%s'.\n"),
13044 filedata->file_name);
13045 else
13046 printf (_("\nNo version information found in this file.\n"));
13047 }
13048
13049 return true;
13050 }
13051
13052 static const char *
13053 get_symbol_binding (Filedata * filedata, unsigned int binding)
13054 {
13055 static char buff[64];
13056
13057 switch (binding)
13058 {
13059 case STB_LOCAL: return "LOCAL";
13060 case STB_GLOBAL: return "GLOBAL";
13061 case STB_WEAK: return "WEAK";
13062 default:
13063 if (binding >= STB_LOPROC && binding <= STB_HIPROC)
13064 snprintf (buff, sizeof (buff), _("<processor specific>: %d"),
13065 binding);
13066 else if (binding >= STB_LOOS && binding <= STB_HIOS)
13067 {
13068 if (binding == STB_GNU_UNIQUE
13069 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU)
13070 return "UNIQUE";
13071 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding);
13072 }
13073 else
13074 snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding);
13075 return buff;
13076 }
13077 }
13078
13079 static const char *
13080 get_symbol_type (Filedata * filedata, unsigned int type)
13081 {
13082 static char buff[64];
13083
13084 switch (type)
13085 {
13086 case STT_NOTYPE: return "NOTYPE";
13087 case STT_OBJECT: return "OBJECT";
13088 case STT_FUNC: return "FUNC";
13089 case STT_SECTION: return "SECTION";
13090 case STT_FILE: return "FILE";
13091 case STT_COMMON: return "COMMON";
13092 case STT_TLS: return "TLS";
13093 case STT_RELC: return "RELC";
13094 case STT_SRELC: return "SRELC";
13095 default:
13096 if (type >= STT_LOPROC && type <= STT_HIPROC)
13097 {
13098 if (filedata->file_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
13099 return "THUMB_FUNC";
13100
13101 if (filedata->file_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
13102 return "REGISTER";
13103
13104 if (filedata->file_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI)
13105 return "PARISC_MILLI";
13106
13107 snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type);
13108 }
13109 else if (type >= STT_LOOS && type <= STT_HIOS)
13110 {
13111 if (filedata->file_header.e_machine == EM_PARISC)
13112 {
13113 if (type == STT_HP_OPAQUE)
13114 return "HP_OPAQUE";
13115 if (type == STT_HP_STUB)
13116 return "HP_STUB";
13117 }
13118
13119 if (type == STT_GNU_IFUNC
13120 && (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU
13121 || filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_FREEBSD))
13122 return "IFUNC";
13123
13124 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type);
13125 }
13126 else
13127 snprintf (buff, sizeof (buff), _("<unknown>: %d"), type);
13128 return buff;
13129 }
13130 }
13131
13132 static const char *
13133 get_symbol_visibility (unsigned int visibility)
13134 {
13135 switch (visibility)
13136 {
13137 case STV_DEFAULT: return "DEFAULT";
13138 case STV_INTERNAL: return "INTERNAL";
13139 case STV_HIDDEN: return "HIDDEN";
13140 case STV_PROTECTED: return "PROTECTED";
13141 default:
13142 error (_("Unrecognized visibility value: %u\n"), visibility);
13143 return _("<unknown>");
13144 }
13145 }
13146
13147 static const char *
13148 get_alpha_symbol_other (unsigned int other)
13149 {
13150 switch (other)
13151 {
13152 case STO_ALPHA_NOPV: return "NOPV";
13153 case STO_ALPHA_STD_GPLOAD: return "STD GPLOAD";
13154 default:
13155 error (_("Unrecognized alpha specific other value: %u\n"), other);
13156 return _("<unknown>");
13157 }
13158 }
13159
13160 static const char *
13161 get_solaris_symbol_visibility (unsigned int visibility)
13162 {
13163 switch (visibility)
13164 {
13165 case 4: return "EXPORTED";
13166 case 5: return "SINGLETON";
13167 case 6: return "ELIMINATE";
13168 default: return get_symbol_visibility (visibility);
13169 }
13170 }
13171
13172 static const char *
13173 get_aarch64_symbol_other (unsigned int other)
13174 {
13175 static char buf[32];
13176
13177 if (other & STO_AARCH64_VARIANT_PCS)
13178 {
13179 other &= ~STO_AARCH64_VARIANT_PCS;
13180 if (other == 0)
13181 return "VARIANT_PCS";
13182 snprintf (buf, sizeof buf, "VARIANT_PCS | %x", other);
13183 return buf;
13184 }
13185 return NULL;
13186 }
13187
13188 static const char *
13189 get_mips_symbol_other (unsigned int other)
13190 {
13191 switch (other)
13192 {
13193 case STO_OPTIONAL: return "OPTIONAL";
13194 case STO_MIPS_PLT: return "MIPS PLT";
13195 case STO_MIPS_PIC: return "MIPS PIC";
13196 case STO_MICROMIPS: return "MICROMIPS";
13197 case STO_MICROMIPS | STO_MIPS_PIC: return "MICROMIPS, MIPS PIC";
13198 case STO_MIPS16: return "MIPS16";
13199 default: return NULL;
13200 }
13201 }
13202
13203 static const char *
13204 get_ia64_symbol_other (Filedata * filedata, unsigned int other)
13205 {
13206 if (is_ia64_vms (filedata))
13207 {
13208 static char res[32];
13209
13210 res[0] = 0;
13211
13212 /* Function types is for images and .STB files only. */
13213 switch (filedata->file_header.e_type)
13214 {
13215 case ET_DYN:
13216 case ET_EXEC:
13217 switch (VMS_ST_FUNC_TYPE (other))
13218 {
13219 case VMS_SFT_CODE_ADDR:
13220 strcat (res, " CA");
13221 break;
13222 case VMS_SFT_SYMV_IDX:
13223 strcat (res, " VEC");
13224 break;
13225 case VMS_SFT_FD:
13226 strcat (res, " FD");
13227 break;
13228 case VMS_SFT_RESERVE:
13229 strcat (res, " RSV");
13230 break;
13231 default:
13232 warn (_("Unrecognized IA64 VMS ST Function type: %d\n"),
13233 VMS_ST_FUNC_TYPE (other));
13234 strcat (res, " <unknown>");
13235 break;
13236 }
13237 break;
13238 default:
13239 break;
13240 }
13241 switch (VMS_ST_LINKAGE (other))
13242 {
13243 case VMS_STL_IGNORE:
13244 strcat (res, " IGN");
13245 break;
13246 case VMS_STL_RESERVE:
13247 strcat (res, " RSV");
13248 break;
13249 case VMS_STL_STD:
13250 strcat (res, " STD");
13251 break;
13252 case VMS_STL_LNK:
13253 strcat (res, " LNK");
13254 break;
13255 default:
13256 warn (_("Unrecognized IA64 VMS ST Linkage: %d\n"),
13257 VMS_ST_LINKAGE (other));
13258 strcat (res, " <unknown>");
13259 break;
13260 }
13261
13262 if (res[0] != 0)
13263 return res + 1;
13264 else
13265 return res;
13266 }
13267 return NULL;
13268 }
13269
13270 static const char *
13271 get_ppc64_symbol_other (unsigned int other)
13272 {
13273 if ((other & ~STO_PPC64_LOCAL_MASK) != 0)
13274 return NULL;
13275
13276 other >>= STO_PPC64_LOCAL_BIT;
13277 if (other <= 6)
13278 {
13279 static char buf[64];
13280 if (other >= 2)
13281 other = ppc64_decode_local_entry (other);
13282 snprintf (buf, sizeof buf, _("<localentry>: %d"), other);
13283 return buf;
13284 }
13285 return NULL;
13286 }
13287
13288 static const char *
13289 get_riscv_symbol_other (unsigned int other)
13290 {
13291 static char buf[32];
13292 buf[0] = 0;
13293
13294 if (other & STO_RISCV_VARIANT_CC)
13295 {
13296 strcat (buf, _(" VARIANT_CC"));
13297 other &= ~STO_RISCV_VARIANT_CC;
13298 }
13299
13300 if (other != 0)
13301 snprintf (buf, sizeof buf, " %x", other);
13302
13303
13304 if (buf[0] != 0)
13305 return buf + 1;
13306 else
13307 return buf;
13308 }
13309
13310 static const char *
13311 get_symbol_other (Filedata * filedata, unsigned int other)
13312 {
13313 const char * result = NULL;
13314 static char buff [64];
13315
13316 if (other == 0)
13317 return "";
13318
13319 switch (filedata->file_header.e_machine)
13320 {
13321 case EM_ALPHA:
13322 result = get_alpha_symbol_other (other);
13323 break;
13324 case EM_AARCH64:
13325 result = get_aarch64_symbol_other (other);
13326 break;
13327 case EM_MIPS:
13328 result = get_mips_symbol_other (other);
13329 break;
13330 case EM_IA_64:
13331 result = get_ia64_symbol_other (filedata, other);
13332 break;
13333 case EM_PPC64:
13334 result = get_ppc64_symbol_other (other);
13335 break;
13336 case EM_RISCV:
13337 result = get_riscv_symbol_other (other);
13338 break;
13339 default:
13340 result = NULL;
13341 break;
13342 }
13343
13344 if (result)
13345 return result;
13346
13347 snprintf (buff, sizeof buff, _("<other>: %x"), other);
13348 return buff;
13349 }
13350
13351 static const char *
13352 get_symbol_index_type (Filedata * filedata, unsigned int type)
13353 {
13354 static char buff[32];
13355
13356 switch (type)
13357 {
13358 case SHN_UNDEF: return "UND";
13359 case SHN_ABS: return "ABS";
13360 case SHN_COMMON: return "COM";
13361 default:
13362 if (type == SHN_IA_64_ANSI_COMMON
13363 && filedata->file_header.e_machine == EM_IA_64
13364 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX)
13365 return "ANSI_COM";
13366 else if ((filedata->file_header.e_machine == EM_X86_64
13367 || filedata->file_header.e_machine == EM_L1OM
13368 || filedata->file_header.e_machine == EM_K1OM)
13369 && type == SHN_X86_64_LCOMMON)
13370 return "LARGE_COM";
13371 else if ((type == SHN_MIPS_SCOMMON
13372 && filedata->file_header.e_machine == EM_MIPS)
13373 || (type == SHN_TIC6X_SCOMMON
13374 && filedata->file_header.e_machine == EM_TI_C6000))
13375 return "SCOM";
13376 else if (type == SHN_MIPS_SUNDEFINED
13377 && filedata->file_header.e_machine == EM_MIPS)
13378 return "SUND";
13379 else if (type >= SHN_LOPROC && type <= SHN_HIPROC)
13380 sprintf (buff, "PRC[0x%04x]", type & 0xffff);
13381 else if (type >= SHN_LOOS && type <= SHN_HIOS)
13382 sprintf (buff, "OS [0x%04x]", type & 0xffff);
13383 else if (type >= SHN_LORESERVE)
13384 sprintf (buff, "RSV[0x%04x]", type & 0xffff);
13385 else if (filedata->file_header.e_shnum != 0
13386 && type >= filedata->file_header.e_shnum)
13387 sprintf (buff, _("bad section index[%3d]"), type);
13388 else
13389 sprintf (buff, "%3d", type);
13390 break;
13391 }
13392
13393 return buff;
13394 }
13395
13396 static const char *
13397 get_symbol_version_string (Filedata *filedata,
13398 bool is_dynsym,
13399 const char *strtab,
13400 size_t strtab_size,
13401 unsigned int si,
13402 Elf_Internal_Sym *psym,
13403 enum versioned_symbol_info *sym_info,
13404 unsigned short *vna_other)
13405 {
13406 unsigned char data[2];
13407 unsigned short vers_data;
13408 uint64_t offset;
13409 unsigned short max_vd_ndx;
13410
13411 if (!is_dynsym
13412 || filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)] == 0)
13413 return NULL;
13414
13415 offset = offset_from_vma (filedata,
13416 filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
13417 sizeof data + si * sizeof (vers_data));
13418
13419 if (get_data (&data, filedata, offset + si * sizeof (vers_data),
13420 sizeof (data), 1, _("version data")) == NULL)
13421 return NULL;
13422
13423 vers_data = byte_get (data, 2);
13424
13425 if ((vers_data & VERSYM_HIDDEN) == 0 && vers_data == 0)
13426 return NULL;
13427
13428 *sym_info = (vers_data & VERSYM_HIDDEN) != 0 ? symbol_hidden : symbol_public;
13429 max_vd_ndx = 0;
13430
13431 /* Usually we'd only see verdef for defined symbols, and verneed for
13432 undefined symbols. However, symbols defined by the linker in
13433 .dynbss for variables copied from a shared library in order to
13434 avoid text relocations are defined yet have verneed. We could
13435 use a heuristic to detect the special case, for example, check
13436 for verneed first on symbols defined in SHT_NOBITS sections, but
13437 it is simpler and more reliable to just look for both verdef and
13438 verneed. .dynbss might not be mapped to a SHT_NOBITS section. */
13439
13440 if (psym->st_shndx != SHN_UNDEF
13441 && vers_data != 0x8001
13442 && filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
13443 {
13444 Elf_Internal_Verdef ivd;
13445 Elf_Internal_Verdaux ivda;
13446 Elf_External_Verdaux evda;
13447 uint64_t off;
13448
13449 off = offset_from_vma (filedata,
13450 filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
13451 sizeof (Elf_External_Verdef));
13452
13453 do
13454 {
13455 Elf_External_Verdef evd;
13456
13457 if (get_data (&evd, filedata, off, sizeof (evd), 1,
13458 _("version def")) == NULL)
13459 {
13460 ivd.vd_ndx = 0;
13461 ivd.vd_aux = 0;
13462 ivd.vd_next = 0;
13463 ivd.vd_flags = 0;
13464 }
13465 else
13466 {
13467 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
13468 ivd.vd_aux = BYTE_GET (evd.vd_aux);
13469 ivd.vd_next = BYTE_GET (evd.vd_next);
13470 ivd.vd_flags = BYTE_GET (evd.vd_flags);
13471 }
13472
13473 if ((ivd.vd_ndx & VERSYM_VERSION) > max_vd_ndx)
13474 max_vd_ndx = ivd.vd_ndx & VERSYM_VERSION;
13475
13476 off += ivd.vd_next;
13477 }
13478 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION) && ivd.vd_next != 0);
13479
13480 if (ivd.vd_ndx == (vers_data & VERSYM_VERSION))
13481 {
13482 if (ivd.vd_ndx == 1 && ivd.vd_flags == VER_FLG_BASE)
13483 return NULL;
13484
13485 off -= ivd.vd_next;
13486 off += ivd.vd_aux;
13487
13488 if (get_data (&evda, filedata, off, sizeof (evda), 1,
13489 _("version def aux")) != NULL)
13490 {
13491 ivda.vda_name = BYTE_GET (evda.vda_name);
13492
13493 if (psym->st_name != ivda.vda_name)
13494 return (ivda.vda_name < strtab_size
13495 ? strtab + ivda.vda_name : _("<corrupt>"));
13496 }
13497 }
13498 }
13499
13500 if (filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
13501 {
13502 Elf_External_Verneed evn;
13503 Elf_Internal_Verneed ivn;
13504 Elf_Internal_Vernaux ivna;
13505
13506 offset = offset_from_vma (filedata,
13507 filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
13508 sizeof evn);
13509 do
13510 {
13511 uint64_t vna_off;
13512
13513 if (get_data (&evn, filedata, offset, sizeof (evn), 1,
13514 _("version need")) == NULL)
13515 {
13516 ivna.vna_next = 0;
13517 ivna.vna_other = 0;
13518 ivna.vna_name = 0;
13519 break;
13520 }
13521
13522 ivn.vn_aux = BYTE_GET (evn.vn_aux);
13523 ivn.vn_next = BYTE_GET (evn.vn_next);
13524
13525 vna_off = offset + ivn.vn_aux;
13526
13527 do
13528 {
13529 Elf_External_Vernaux evna;
13530
13531 if (get_data (&evna, filedata, vna_off, sizeof (evna), 1,
13532 _("version need aux (3)")) == NULL)
13533 {
13534 ivna.vna_next = 0;
13535 ivna.vna_other = 0;
13536 ivna.vna_name = 0;
13537 }
13538 else
13539 {
13540 ivna.vna_other = BYTE_GET (evna.vna_other);
13541 ivna.vna_next = BYTE_GET (evna.vna_next);
13542 ivna.vna_name = BYTE_GET (evna.vna_name);
13543 }
13544
13545 vna_off += ivna.vna_next;
13546 }
13547 while (ivna.vna_other != vers_data && ivna.vna_next != 0);
13548
13549 if (ivna.vna_other == vers_data)
13550 break;
13551
13552 offset += ivn.vn_next;
13553 }
13554 while (ivn.vn_next != 0);
13555
13556 if (ivna.vna_other == vers_data)
13557 {
13558 *sym_info = symbol_undefined;
13559 *vna_other = ivna.vna_other;
13560 return (ivna.vna_name < strtab_size
13561 ? strtab + ivna.vna_name : _("<corrupt>"));
13562 }
13563 else if ((max_vd_ndx || (vers_data & VERSYM_VERSION) != 1)
13564 && (vers_data & VERSYM_VERSION) > max_vd_ndx)
13565 return _("<corrupt>");
13566 }
13567 return NULL;
13568 }
13569
13570 /* Display a symbol size on stdout. Format is based on --sym-base setting. */
13571
13572 static unsigned int
13573 print_dynamic_symbol_size (uint64_t vma, int base)
13574 {
13575 switch (base)
13576 {
13577 case 8:
13578 return print_vma (vma, OCTAL_5);
13579
13580 case 10:
13581 return print_vma (vma, UNSIGNED_5);
13582
13583 case 16:
13584 return print_vma (vma, PREFIX_HEX_5);
13585
13586 case 0:
13587 default:
13588 return print_vma (vma, DEC_5);
13589 }
13590 }
13591
13592 static void
13593 print_dynamic_symbol (Filedata *filedata, uint64_t si,
13594 Elf_Internal_Sym *symtab,
13595 Elf_Internal_Shdr *section,
13596 char *strtab, size_t strtab_size)
13597 {
13598 const char *version_string;
13599 enum versioned_symbol_info sym_info;
13600 unsigned short vna_other;
13601 bool is_valid;
13602 const char * sstr;
13603 Elf_Internal_Sym *psym = symtab + si;
13604
13605 printf ("%6" PRId64 ": ", si);
13606 print_vma (psym->st_value, LONG_HEX);
13607 putchar (' ');
13608 print_dynamic_symbol_size (psym->st_size, sym_base);
13609 printf (" %-7s", get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)));
13610 printf (" %-6s", get_symbol_binding (filedata, ELF_ST_BIND (psym->st_info)));
13611 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
13612 printf (" %-7s", get_solaris_symbol_visibility (psym->st_other));
13613 else
13614 {
13615 unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
13616
13617 printf (" %-7s", get_symbol_visibility (vis));
13618 /* Check to see if any other bits in the st_other field are set.
13619 Note - displaying this information disrupts the layout of the
13620 table being generated, but for the moment this case is very rare. */
13621 if (psym->st_other ^ vis)
13622 printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
13623 }
13624 printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx));
13625
13626 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION
13627 && psym->st_shndx < filedata->file_header.e_shnum
13628 && filedata->section_headers != NULL
13629 && psym->st_name == 0)
13630 {
13631 is_valid
13632 = section_name_valid (filedata,
13633 filedata->section_headers + psym->st_shndx);
13634 sstr = is_valid ?
13635 section_name_print (filedata,
13636 filedata->section_headers + psym->st_shndx)
13637 : _("<corrupt>");
13638 }
13639 else
13640 {
13641 is_valid = valid_symbol_name (strtab, strtab_size, psym->st_name);
13642 sstr = is_valid ? strtab + psym->st_name : _("<corrupt>");
13643 }
13644
13645 version_string
13646 = get_symbol_version_string (filedata,
13647 (section == NULL
13648 || section->sh_type == SHT_DYNSYM),
13649 strtab, strtab_size, si,
13650 psym, &sym_info, &vna_other);
13651
13652 int len_avail = 21;
13653 if (! do_wide && version_string != NULL)
13654 {
13655 char buffer[16];
13656
13657 len_avail -= 1 + strlen (version_string);
13658
13659 if (sym_info == symbol_undefined)
13660 len_avail -= sprintf (buffer," (%d)", vna_other);
13661 else if (sym_info != symbol_hidden)
13662 len_avail -= 1;
13663 }
13664
13665 print_symbol (len_avail, sstr);
13666
13667 if (version_string)
13668 {
13669 if (sym_info == symbol_undefined)
13670 printf ("@%s (%d)", version_string, vna_other);
13671 else
13672 printf (sym_info == symbol_hidden ? "@%s" : "@@%s",
13673 version_string);
13674 }
13675
13676 putchar ('\n');
13677
13678 if (ELF_ST_BIND (psym->st_info) == STB_LOCAL
13679 && section != NULL
13680 && si >= section->sh_info
13681 /* Irix 5 and 6 MIPS binaries are known to ignore this requirement. */
13682 && filedata->file_header.e_machine != EM_MIPS
13683 /* Solaris binaries have been found to violate this requirement as
13684 well. Not sure if this is a bug or an ABI requirement. */
13685 && filedata->file_header.e_ident[EI_OSABI] != ELFOSABI_SOLARIS)
13686 warn (_("local symbol %" PRIu64 " found at index >= %s's sh_info value of %u\n"),
13687 si, printable_section_name (filedata, section), section->sh_info);
13688 }
13689
13690 static const char *
13691 get_lto_kind (unsigned int kind)
13692 {
13693 switch (kind)
13694 {
13695 case 0: return "DEF";
13696 case 1: return "WEAKDEF";
13697 case 2: return "UNDEF";
13698 case 3: return "WEAKUNDEF";
13699 case 4: return "COMMON";
13700 default:
13701 break;
13702 }
13703
13704 static char buffer[30];
13705 error (_("Unknown LTO symbol definition encountered: %u\n"), kind);
13706 sprintf (buffer, "<unknown: %u>", kind);
13707 return buffer;
13708 }
13709
13710 static const char *
13711 get_lto_visibility (unsigned int visibility)
13712 {
13713 switch (visibility)
13714 {
13715 case 0: return "DEFAULT";
13716 case 1: return "PROTECTED";
13717 case 2: return "INTERNAL";
13718 case 3: return "HIDDEN";
13719 default:
13720 break;
13721 }
13722
13723 static char buffer[30];
13724 error (_("Unknown LTO symbol visibility encountered: %u\n"), visibility);
13725 sprintf (buffer, "<unknown: %u>", visibility);
13726 return buffer;
13727 }
13728
13729 static const char *
13730 get_lto_sym_type (unsigned int sym_type)
13731 {
13732 switch (sym_type)
13733 {
13734 case 0: return "UNKNOWN";
13735 case 1: return "FUNCTION";
13736 case 2: return "VARIABLE";
13737 default:
13738 break;
13739 }
13740
13741 static char buffer[30];
13742 error (_("Unknown LTO symbol type encountered: %u\n"), sym_type);
13743 sprintf (buffer, "<unknown: %u>", sym_type);
13744 return buffer;
13745 }
13746
13747 /* Display an LTO format symbol table.
13748 FIXME: The format of LTO symbol tables is not formalized.
13749 So this code could need changing in the future. */
13750
13751 static bool
13752 display_lto_symtab (Filedata * filedata,
13753 Elf_Internal_Shdr * section)
13754 {
13755 if (section->sh_size == 0)
13756 {
13757 if (filedata->is_separate)
13758 printf (_("\nThe LTO Symbol table section '%s' in linked file '%s' is empty!\n"),
13759 printable_section_name (filedata, section),
13760 filedata->file_name);
13761 else
13762 printf (_("\nLTO Symbol table '%s' is empty!\n"),
13763 printable_section_name (filedata, section));
13764
13765 return true;
13766 }
13767
13768 if (section->sh_size > filedata->file_size)
13769 {
13770 error (_("Section %s has an invalid sh_size of %#" PRIx64 "\n"),
13771 printable_section_name (filedata, section),
13772 section->sh_size);
13773 return false;
13774 }
13775
13776 void * alloced_data = get_data (NULL, filedata, section->sh_offset,
13777 section->sh_size, 1, _("LTO symbols"));
13778 if (alloced_data == NULL)
13779 return false;
13780
13781 /* Look for extended data for the symbol table. */
13782 Elf_Internal_Shdr * ext;
13783 void * ext_data_orig = NULL;
13784 char * ext_data = NULL;
13785 char * ext_data_end = NULL;
13786 char * ext_name = NULL;
13787
13788 if (asprintf (& ext_name, ".gnu.lto_.ext_symtab.%s",
13789 (section_name (filedata, section)
13790 + sizeof (".gnu.lto_.symtab.") - 1)) > 0
13791 && ext_name != NULL /* Paranoia. */
13792 && (ext = find_section (filedata, ext_name)) != NULL)
13793 {
13794 if (ext->sh_size < 3)
13795 error (_("LTO Symbol extension table '%s' is empty!\n"),
13796 printable_section_name (filedata, ext));
13797 else
13798 {
13799 ext_data_orig = ext_data = get_data (NULL, filedata, ext->sh_offset,
13800 ext->sh_size, 1,
13801 _("LTO ext symbol data"));
13802 if (ext_data != NULL)
13803 {
13804 ext_data_end = ext_data + ext->sh_size;
13805 if (* ext_data++ != 1)
13806 error (_("Unexpected version number in symbol extension table\n"));
13807 }
13808 }
13809 }
13810
13811 const unsigned char * data = (const unsigned char *) alloced_data;
13812 const unsigned char * end = data + section->sh_size;
13813
13814 if (filedata->is_separate)
13815 printf (_("\nIn linked file '%s': "), filedata->file_name);
13816 else
13817 printf ("\n");
13818
13819 if (ext_data_orig != NULL)
13820 {
13821 if (do_wide)
13822 printf (_("LTO Symbol table '%s' and extension table '%s' contain:\n"),
13823 printable_section_name (filedata, section),
13824 printable_section_name (filedata, ext));
13825 else
13826 {
13827 printf (_("LTO Symbol table '%s'\n"),
13828 printable_section_name (filedata, section));
13829 printf (_(" and extension table '%s' contain:\n"),
13830 printable_section_name (filedata, ext));
13831 }
13832 }
13833 else
13834 printf (_("LTO Symbol table '%s' contains:\n"),
13835 printable_section_name (filedata, section));
13836
13837 /* FIXME: Add a wide version. */
13838 if (ext_data_orig != NULL)
13839 printf (_(" Comdat_Key Kind Visibility Size Slot Type Section Name\n"));
13840 else
13841 printf (_(" Comdat_Key Kind Visibility Size Slot Name\n"));
13842
13843 /* FIXME: We do not handle style prefixes. */
13844
13845 while (data < end)
13846 {
13847 const unsigned char * sym_name = data;
13848 data += strnlen ((const char *) sym_name, end - data) + 1;
13849 if (data >= end)
13850 goto fail;
13851
13852 const unsigned char * comdat_key = data;
13853 data += strnlen ((const char *) comdat_key, end - data) + 1;
13854 if (data >= end)
13855 goto fail;
13856
13857 if (data + 2 + 8 + 4 > end)
13858 goto fail;
13859
13860 unsigned int kind = *data++;
13861 unsigned int visibility = *data++;
13862
13863 uint64_t size = byte_get (data, 8);
13864 data += 8;
13865
13866 uint64_t slot = byte_get (data, 4);
13867 data += 4;
13868
13869 if (ext_data != NULL)
13870 {
13871 if (ext_data < (ext_data_end - 1))
13872 {
13873 unsigned int sym_type = * ext_data ++;
13874 unsigned int sec_kind = * ext_data ++;
13875
13876 printf (" %10s %10s %11s %08" PRIx64 " %08" PRIx64 " %9s %08x _",
13877 * comdat_key == 0 ? "-" : (char *) comdat_key,
13878 get_lto_kind (kind),
13879 get_lto_visibility (visibility),
13880 size,
13881 slot,
13882 get_lto_sym_type (sym_type),
13883 sec_kind);
13884 print_symbol (6, (const char *) sym_name);
13885 }
13886 else
13887 {
13888 error (_("Ran out of LTO symbol extension data\n"));
13889 ext_data = NULL;
13890 /* FIXME: return FAIL result ? */
13891 }
13892 }
13893 else
13894 {
13895 printf (" %10s %10s %11s %08" PRIx64 " %08" PRIx64 " _",
13896 * comdat_key == 0 ? "-" : (char *) comdat_key,
13897 get_lto_kind (kind),
13898 get_lto_visibility (visibility),
13899 size,
13900 slot);
13901 print_symbol (21, (const char *) sym_name);
13902 }
13903 putchar ('\n');
13904 }
13905
13906 if (ext_data != NULL && ext_data < ext_data_end)
13907 {
13908 error (_("Data remains in the LTO symbol extension table\n"));
13909 goto fail;
13910 }
13911
13912 free (alloced_data);
13913 free (ext_data_orig);
13914 free (ext_name);
13915 return true;
13916
13917 fail:
13918 error (_("Buffer overrun encountered whilst decoding LTO symbol table\n"));
13919 free (alloced_data);
13920 free (ext_data_orig);
13921 free (ext_name);
13922 return false;
13923 }
13924
13925 /* Display LTO symbol tables. */
13926
13927 static bool
13928 process_lto_symbol_tables (Filedata * filedata)
13929 {
13930 Elf_Internal_Shdr * section;
13931 unsigned int i;
13932 bool res = true;
13933
13934 if (!do_lto_syms)
13935 return true;
13936
13937 if (filedata->section_headers == NULL)
13938 return true;
13939
13940 for (i = 0, section = filedata->section_headers;
13941 i < filedata->file_header.e_shnum;
13942 i++, section++)
13943 if (section_name_valid (filedata, section)
13944 && startswith (section_name (filedata, section), ".gnu.lto_.symtab."))
13945 res &= display_lto_symtab (filedata, section);
13946
13947 return res;
13948 }
13949
13950 /* Dump the symbol table. */
13951
13952 static bool
13953 process_symbol_table (Filedata * filedata)
13954 {
13955 Elf_Internal_Shdr * section;
13956
13957 if (!do_syms && !do_dyn_syms && !do_histogram)
13958 return true;
13959
13960 if ((filedata->dynamic_info[DT_HASH] || filedata->dynamic_info_DT_GNU_HASH)
13961 && do_syms
13962 && do_using_dynamic
13963 && filedata->dynamic_strings != NULL
13964 && filedata->dynamic_symbols != NULL)
13965 {
13966 uint64_t si;
13967
13968 if (filedata->is_separate)
13969 {
13970 printf (ngettext ("\nIn linked file '%s' the dynamic symbol table"
13971 " contains %" PRIu64 " entry:\n",
13972 "\nIn linked file '%s' the dynamic symbol table"
13973 " contains %" PRIu64 " entries:\n",
13974 filedata->num_dynamic_syms),
13975 filedata->file_name,
13976 filedata->num_dynamic_syms);
13977 }
13978 else
13979 {
13980 printf (ngettext ("\nSymbol table for image contains %" PRIu64
13981 " entry:\n",
13982 "\nSymbol table for image contains %" PRIu64
13983 " entries:\n",
13984 filedata->num_dynamic_syms),
13985 filedata->num_dynamic_syms);
13986 }
13987 if (is_32bit_elf)
13988 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
13989 else
13990 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
13991
13992 for (si = 0; si < filedata->num_dynamic_syms; si++)
13993 print_dynamic_symbol (filedata, si, filedata->dynamic_symbols, NULL,
13994 filedata->dynamic_strings,
13995 filedata->dynamic_strings_length);
13996 }
13997 else if ((do_dyn_syms || (do_syms && !do_using_dynamic))
13998 && filedata->section_headers != NULL)
13999 {
14000 unsigned int i;
14001
14002 for (i = 0, section = filedata->section_headers;
14003 i < filedata->file_header.e_shnum;
14004 i++, section++)
14005 {
14006 char * strtab = NULL;
14007 uint64_t strtab_size = 0;
14008 Elf_Internal_Sym * symtab;
14009 uint64_t si, num_syms;
14010
14011 if ((section->sh_type != SHT_SYMTAB
14012 && section->sh_type != SHT_DYNSYM)
14013 || (!do_syms
14014 && section->sh_type == SHT_SYMTAB))
14015 continue;
14016
14017 if (section->sh_entsize == 0)
14018 {
14019 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
14020 printable_section_name (filedata, section));
14021 continue;
14022 }
14023
14024 num_syms = section->sh_size / section->sh_entsize;
14025
14026 if (filedata->is_separate)
14027 printf (ngettext ("\nIn linked file '%s' symbol section '%s'"
14028 " contains %" PRIu64 " entry:\n",
14029 "\nIn linked file '%s' symbol section '%s'"
14030 " contains %" PRIu64 " entries:\n",
14031 num_syms),
14032 filedata->file_name,
14033 printable_section_name (filedata, section),
14034 num_syms);
14035 else
14036 printf (ngettext ("\nSymbol table '%s' contains %" PRIu64
14037 " entry:\n",
14038 "\nSymbol table '%s' contains %" PRIu64
14039 " entries:\n",
14040 num_syms),
14041 printable_section_name (filedata, section),
14042 num_syms);
14043
14044 if (is_32bit_elf)
14045 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
14046 else
14047 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
14048
14049 symtab = get_elf_symbols (filedata, section, & num_syms);
14050 if (symtab == NULL)
14051 continue;
14052
14053 if (section->sh_link == filedata->file_header.e_shstrndx)
14054 {
14055 strtab = filedata->string_table;
14056 strtab_size = filedata->string_table_length;
14057 }
14058 else if (section->sh_link < filedata->file_header.e_shnum)
14059 {
14060 Elf_Internal_Shdr * string_sec;
14061
14062 string_sec = filedata->section_headers + section->sh_link;
14063
14064 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset,
14065 1, string_sec->sh_size,
14066 _("string table"));
14067 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
14068 }
14069
14070 for (si = 0; si < num_syms; si++)
14071 print_dynamic_symbol (filedata, si, symtab, section,
14072 strtab, strtab_size);
14073
14074 free (symtab);
14075 if (strtab != filedata->string_table)
14076 free (strtab);
14077 }
14078 }
14079 else if (do_syms)
14080 printf
14081 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
14082
14083 if (do_histogram && filedata->buckets != NULL)
14084 {
14085 uint64_t *lengths;
14086 uint64_t *counts;
14087 uint64_t hn;
14088 uint64_t si;
14089 uint64_t maxlength = 0;
14090 uint64_t nzero_counts = 0;
14091 uint64_t nsyms = 0;
14092 char *visited;
14093
14094 printf (ngettext ("\nHistogram for bucket list length "
14095 "(total of %" PRIu64 " bucket):\n",
14096 "\nHistogram for bucket list length "
14097 "(total of %" PRIu64 " buckets):\n",
14098 filedata->nbuckets),
14099 filedata->nbuckets);
14100
14101 lengths = calloc (filedata->nbuckets, sizeof (*lengths));
14102 if (lengths == NULL)
14103 {
14104 error (_("Out of memory allocating space for histogram buckets\n"));
14105 goto err_out;
14106 }
14107 visited = xcmalloc (filedata->nchains, 1);
14108 memset (visited, 0, filedata->nchains);
14109
14110 printf (_(" Length Number %% of total Coverage\n"));
14111 for (hn = 0; hn < filedata->nbuckets; ++hn)
14112 {
14113 for (si = filedata->buckets[hn]; si > 0; si = filedata->chains[si])
14114 {
14115 ++nsyms;
14116 if (maxlength < ++lengths[hn])
14117 ++maxlength;
14118 if (si >= filedata->nchains || visited[si])
14119 {
14120 error (_("histogram chain is corrupt\n"));
14121 break;
14122 }
14123 visited[si] = 1;
14124 }
14125 }
14126 free (visited);
14127
14128 counts = calloc (maxlength + 1, sizeof (*counts));
14129 if (counts == NULL)
14130 {
14131 free (lengths);
14132 error (_("Out of memory allocating space for histogram counts\n"));
14133 goto err_out;
14134 }
14135
14136 for (hn = 0; hn < filedata->nbuckets; ++hn)
14137 ++counts[lengths[hn]];
14138
14139 if (filedata->nbuckets > 0)
14140 {
14141 uint64_t i;
14142 printf (" 0 %-10" PRIu64 " (%5.1f%%)\n",
14143 counts[0], (counts[0] * 100.0) / filedata->nbuckets);
14144 for (i = 1; i <= maxlength; ++i)
14145 {
14146 nzero_counts += counts[i] * i;
14147 printf ("%7" PRIu64 " %-10" PRIu64 " (%5.1f%%) %5.1f%%\n",
14148 i, counts[i], (counts[i] * 100.0) / filedata->nbuckets,
14149 (nzero_counts * 100.0) / nsyms);
14150 }
14151 }
14152
14153 free (counts);
14154 free (lengths);
14155 }
14156
14157 free (filedata->buckets);
14158 filedata->buckets = NULL;
14159 filedata->nbuckets = 0;
14160 free (filedata->chains);
14161 filedata->chains = NULL;
14162
14163 if (do_histogram && filedata->gnubuckets != NULL)
14164 {
14165 uint64_t *lengths;
14166 uint64_t *counts;
14167 uint64_t hn;
14168 uint64_t maxlength = 0;
14169 uint64_t nzero_counts = 0;
14170 uint64_t nsyms = 0;
14171
14172 printf (ngettext ("\nHistogram for `%s' bucket list length "
14173 "(total of %" PRIu64 " bucket):\n",
14174 "\nHistogram for `%s' bucket list length "
14175 "(total of %" PRIu64 " buckets):\n",
14176 filedata->ngnubuckets),
14177 GNU_HASH_SECTION_NAME (filedata),
14178 filedata->ngnubuckets);
14179
14180 lengths = calloc (filedata->ngnubuckets, sizeof (*lengths));
14181 if (lengths == NULL)
14182 {
14183 error (_("Out of memory allocating space for gnu histogram buckets\n"));
14184 goto err_out;
14185 }
14186
14187 printf (_(" Length Number %% of total Coverage\n"));
14188
14189 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
14190 if (filedata->gnubuckets[hn] != 0)
14191 {
14192 uint64_t off, length = 1;
14193
14194 for (off = filedata->gnubuckets[hn] - filedata->gnusymidx;
14195 /* PR 17531 file: 010-77222-0.004. */
14196 off < filedata->ngnuchains
14197 && (filedata->gnuchains[off] & 1) == 0;
14198 ++off)
14199 ++length;
14200 lengths[hn] = length;
14201 if (length > maxlength)
14202 maxlength = length;
14203 nsyms += length;
14204 }
14205
14206 counts = calloc (maxlength + 1, sizeof (*counts));
14207 if (counts == NULL)
14208 {
14209 free (lengths);
14210 error (_("Out of memory allocating space for gnu histogram counts\n"));
14211 goto err_out;
14212 }
14213
14214 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
14215 ++counts[lengths[hn]];
14216
14217 if (filedata->ngnubuckets > 0)
14218 {
14219 uint64_t j;
14220 printf (" 0 %-10" PRIu64 " (%5.1f%%)\n",
14221 counts[0], (counts[0] * 100.0) / filedata->ngnubuckets);
14222 for (j = 1; j <= maxlength; ++j)
14223 {
14224 nzero_counts += counts[j] * j;
14225 printf ("%7" PRIu64 " %-10" PRIu64 " (%5.1f%%) %5.1f%%\n",
14226 j, counts[j], (counts[j] * 100.0) / filedata->ngnubuckets,
14227 (nzero_counts * 100.0) / nsyms);
14228 }
14229 }
14230
14231 free (counts);
14232 free (lengths);
14233 }
14234 free (filedata->gnubuckets);
14235 filedata->gnubuckets = NULL;
14236 filedata->ngnubuckets = 0;
14237 free (filedata->gnuchains);
14238 filedata->gnuchains = NULL;
14239 filedata->ngnuchains = 0;
14240 free (filedata->mipsxlat);
14241 filedata->mipsxlat = NULL;
14242 return true;
14243
14244 err_out:
14245 free (filedata->gnubuckets);
14246 filedata->gnubuckets = NULL;
14247 filedata->ngnubuckets = 0;
14248 free (filedata->gnuchains);
14249 filedata->gnuchains = NULL;
14250 filedata->ngnuchains = 0;
14251 free (filedata->mipsxlat);
14252 filedata->mipsxlat = NULL;
14253 free (filedata->buckets);
14254 filedata->buckets = NULL;
14255 filedata->nbuckets = 0;
14256 free (filedata->chains);
14257 filedata->chains = NULL;
14258 return false;
14259 }
14260
14261 static bool
14262 process_syminfo (Filedata * filedata)
14263 {
14264 unsigned int i;
14265
14266 if (filedata->dynamic_syminfo == NULL
14267 || !do_dynamic)
14268 /* No syminfo, this is ok. */
14269 return true;
14270
14271 /* There better should be a dynamic symbol section. */
14272 if (filedata->dynamic_symbols == NULL || filedata->dynamic_strings == NULL)
14273 return false;
14274
14275 if (filedata->is_separate)
14276 printf (ngettext ("\nIn linked file '%s: the dynamic info segment at offset %#" PRIx64 " contains %d entry:\n",
14277 "\nIn linked file '%s: the dynamic info segment at offset %#" PRIx64 " contains %d entries:\n",
14278 filedata->dynamic_syminfo_nent),
14279 filedata->file_name,
14280 filedata->dynamic_syminfo_offset,
14281 filedata->dynamic_syminfo_nent);
14282 else
14283 printf (ngettext ("\nDynamic info segment at offset %#" PRIx64
14284 " contains %d entry:\n",
14285 "\nDynamic info segment at offset %#" PRIx64
14286 " contains %d entries:\n",
14287 filedata->dynamic_syminfo_nent),
14288 filedata->dynamic_syminfo_offset,
14289 filedata->dynamic_syminfo_nent);
14290
14291 printf (_(" Num: Name BoundTo Flags\n"));
14292 for (i = 0; i < filedata->dynamic_syminfo_nent; ++i)
14293 {
14294 unsigned short int flags = filedata->dynamic_syminfo[i].si_flags;
14295
14296 printf ("%4d: ", i);
14297 if (i >= filedata->num_dynamic_syms)
14298 printf (_("<corrupt index>"));
14299 else if (valid_dynamic_name (filedata, filedata->dynamic_symbols[i].st_name))
14300 print_symbol (30, get_dynamic_name (filedata,
14301 filedata->dynamic_symbols[i].st_name));
14302 else
14303 printf (_("<corrupt: %19ld>"), filedata->dynamic_symbols[i].st_name);
14304 putchar (' ');
14305
14306 switch (filedata->dynamic_syminfo[i].si_boundto)
14307 {
14308 case SYMINFO_BT_SELF:
14309 fputs ("SELF ", stdout);
14310 break;
14311 case SYMINFO_BT_PARENT:
14312 fputs ("PARENT ", stdout);
14313 break;
14314 default:
14315 if (filedata->dynamic_syminfo[i].si_boundto > 0
14316 && filedata->dynamic_syminfo[i].si_boundto < filedata->dynamic_nent
14317 && valid_dynamic_name (filedata,
14318 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val))
14319 {
14320 print_symbol (10, get_dynamic_name (filedata,
14321 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val));
14322 putchar (' ' );
14323 }
14324 else
14325 printf ("%-10d ", filedata->dynamic_syminfo[i].si_boundto);
14326 break;
14327 }
14328
14329 if (flags & SYMINFO_FLG_DIRECT)
14330 printf (" DIRECT");
14331 if (flags & SYMINFO_FLG_PASSTHRU)
14332 printf (" PASSTHRU");
14333 if (flags & SYMINFO_FLG_COPY)
14334 printf (" COPY");
14335 if (flags & SYMINFO_FLG_LAZYLOAD)
14336 printf (" LAZYLOAD");
14337
14338 puts ("");
14339 }
14340
14341 return true;
14342 }
14343
14344 /* A macro which evaluates to TRUE if the region ADDR .. ADDR + NELEM
14345 is contained by the region START .. END. The types of ADDR, START
14346 and END should all be the same. Note both ADDR + NELEM and END
14347 point to just beyond the end of the regions that are being tested. */
14348 #define IN_RANGE(START,END,ADDR,NELEM) \
14349 (((ADDR) >= (START)) && ((ADDR) < (END)) && ((ADDR) + (NELEM) <= (END)))
14350
14351 /* Check to see if the given reloc needs to be handled in a target specific
14352 manner. If so then process the reloc and return TRUE otherwise return
14353 FALSE.
14354
14355 If called with reloc == NULL, then this is a signal that reloc processing
14356 for the current section has finished, and any saved state should be
14357 discarded. */
14358
14359 static bool
14360 target_specific_reloc_handling (Filedata *filedata,
14361 Elf_Internal_Rela *reloc,
14362 unsigned char *start,
14363 unsigned char *end,
14364 Elf_Internal_Sym *symtab,
14365 uint64_t num_syms)
14366 {
14367 unsigned int reloc_type = 0;
14368 uint64_t sym_index = 0;
14369
14370 if (reloc)
14371 {
14372 reloc_type = get_reloc_type (filedata, reloc->r_info);
14373 sym_index = get_reloc_symindex (reloc->r_info);
14374 }
14375
14376 switch (filedata->file_header.e_machine)
14377 {
14378 case EM_LOONGARCH:
14379 {
14380 switch (reloc_type)
14381 {
14382 /* For .uleb128 .LFE1-.LFB1, loongarch write 0 to object file
14383 at assembly time. */
14384 case 107: /* R_LARCH_ADD_ULEB128. */
14385 case 108: /* R_LARCH_SUB_ULEB128. */
14386 {
14387 uint64_t value = 0;
14388 unsigned int reloc_size = 0;
14389 int leb_ret = 0;
14390
14391 if (reloc->r_offset < (size_t) (end - start))
14392 value = read_leb128 (start + reloc->r_offset, end, false,
14393 &reloc_size, &leb_ret);
14394 if (leb_ret != 0 || reloc_size == 0 || reloc_size > 8)
14395 error (_("LoongArch ULEB128 field at 0x%lx contains invalid "
14396 "ULEB128 value\n"),
14397 (long) reloc->r_offset);
14398
14399 else if (sym_index >= num_syms)
14400 error (_("%s reloc contains invalid symbol index "
14401 "%" PRIu64 "\n"),
14402 (reloc_type == 107
14403 ? "R_LARCH_ADD_ULEB128"
14404 : "R_LARCH_SUB_ULEB128"),
14405 sym_index);
14406 else
14407 {
14408 if (reloc_type == 107)
14409 value += reloc->r_addend + symtab[sym_index].st_value;
14410 else
14411 value -= reloc->r_addend + symtab[sym_index].st_value;
14412
14413 /* Write uleb128 value to p. */
14414 bfd_byte *p = start + reloc->r_offset;
14415 do
14416 {
14417 bfd_byte c = value & 0x7f;
14418 value >>= 7;
14419 if (--reloc_size != 0)
14420 c |= 0x80;
14421 *p++ = c;
14422 }
14423 while (reloc_size);
14424 }
14425
14426 return true;
14427 }
14428 }
14429 break;
14430 }
14431
14432 case EM_MSP430:
14433 case EM_MSP430_OLD:
14434 {
14435 static Elf_Internal_Sym * saved_sym = NULL;
14436
14437 if (reloc == NULL)
14438 {
14439 saved_sym = NULL;
14440 return true;
14441 }
14442
14443 switch (reloc_type)
14444 {
14445 case 10: /* R_MSP430_SYM_DIFF */
14446 case 12: /* R_MSP430_GNU_SUB_ULEB128 */
14447 if (uses_msp430x_relocs (filedata))
14448 break;
14449 /* Fall through. */
14450 case 21: /* R_MSP430X_SYM_DIFF */
14451 case 23: /* R_MSP430X_GNU_SUB_ULEB128 */
14452 /* PR 21139. */
14453 if (sym_index >= num_syms)
14454 error (_("%s reloc contains invalid symbol index "
14455 "%" PRIu64 "\n"), "MSP430 SYM_DIFF", sym_index);
14456 else
14457 saved_sym = symtab + sym_index;
14458 return true;
14459
14460 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
14461 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
14462 goto handle_sym_diff;
14463
14464 case 5: /* R_MSP430_16_BYTE */
14465 case 9: /* R_MSP430_8 */
14466 case 11: /* R_MSP430_GNU_SET_ULEB128 */
14467 if (uses_msp430x_relocs (filedata))
14468 break;
14469 goto handle_sym_diff;
14470
14471 case 2: /* R_MSP430_ABS16 */
14472 case 15: /* R_MSP430X_ABS16 */
14473 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
14474 if (! uses_msp430x_relocs (filedata))
14475 break;
14476 goto handle_sym_diff;
14477
14478 handle_sym_diff:
14479 if (saved_sym != NULL)
14480 {
14481 uint64_t value;
14482 unsigned int reloc_size = 0;
14483 int leb_ret = 0;
14484 switch (reloc_type)
14485 {
14486 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
14487 reloc_size = 4;
14488 break;
14489 case 11: /* R_MSP430_GNU_SET_ULEB128 */
14490 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
14491 if (reloc->r_offset < (size_t) (end - start))
14492 read_leb128 (start + reloc->r_offset, end, false,
14493 &reloc_size, &leb_ret);
14494 break;
14495 default:
14496 reloc_size = 2;
14497 break;
14498 }
14499
14500 if (leb_ret != 0 || reloc_size == 0 || reloc_size > 8)
14501 error (_("MSP430 ULEB128 field at %#" PRIx64
14502 " contains invalid ULEB128 value\n"),
14503 reloc->r_offset);
14504 else if (sym_index >= num_syms)
14505 error (_("%s reloc contains invalid symbol index "
14506 "%" PRIu64 "\n"), "MSP430", sym_index);
14507 else
14508 {
14509 value = reloc->r_addend + (symtab[sym_index].st_value
14510 - saved_sym->st_value);
14511
14512 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
14513 byte_put (start + reloc->r_offset, value, reloc_size);
14514 else
14515 /* PR 21137 */
14516 error (_("MSP430 sym diff reloc contains invalid offset: "
14517 "%#" PRIx64 "\n"),
14518 reloc->r_offset);
14519 }
14520
14521 saved_sym = NULL;
14522 return true;
14523 }
14524 break;
14525
14526 default:
14527 if (saved_sym != NULL)
14528 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
14529 break;
14530 }
14531 break;
14532 }
14533
14534 case EM_MN10300:
14535 case EM_CYGNUS_MN10300:
14536 {
14537 static Elf_Internal_Sym * saved_sym = NULL;
14538
14539 if (reloc == NULL)
14540 {
14541 saved_sym = NULL;
14542 return true;
14543 }
14544
14545 switch (reloc_type)
14546 {
14547 case 34: /* R_MN10300_ALIGN */
14548 return true;
14549 case 33: /* R_MN10300_SYM_DIFF */
14550 if (sym_index >= num_syms)
14551 error (_("%s reloc contains invalid symbol index "
14552 "%" PRIu64 "\n"), "MN10300_SYM_DIFF", sym_index);
14553 else
14554 saved_sym = symtab + sym_index;
14555 return true;
14556
14557 case 1: /* R_MN10300_32 */
14558 case 2: /* R_MN10300_16 */
14559 if (saved_sym != NULL)
14560 {
14561 int reloc_size = reloc_type == 1 ? 4 : 2;
14562 uint64_t value;
14563
14564 if (sym_index >= num_syms)
14565 error (_("%s reloc contains invalid symbol index "
14566 "%" PRIu64 "\n"), "MN10300", sym_index);
14567 else
14568 {
14569 value = reloc->r_addend + (symtab[sym_index].st_value
14570 - saved_sym->st_value);
14571
14572 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
14573 byte_put (start + reloc->r_offset, value, reloc_size);
14574 else
14575 error (_("MN10300 sym diff reloc contains invalid offset:"
14576 " %#" PRIx64 "\n"),
14577 reloc->r_offset);
14578 }
14579
14580 saved_sym = NULL;
14581 return true;
14582 }
14583 break;
14584 default:
14585 if (saved_sym != NULL)
14586 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
14587 break;
14588 }
14589 break;
14590 }
14591
14592 case EM_RL78:
14593 {
14594 static uint64_t saved_sym1 = 0;
14595 static uint64_t saved_sym2 = 0;
14596 static uint64_t value;
14597
14598 if (reloc == NULL)
14599 {
14600 saved_sym1 = saved_sym2 = 0;
14601 return true;
14602 }
14603
14604 switch (reloc_type)
14605 {
14606 case 0x80: /* R_RL78_SYM. */
14607 saved_sym1 = saved_sym2;
14608 if (sym_index >= num_syms)
14609 error (_("%s reloc contains invalid symbol index "
14610 "%" PRIu64 "\n"), "RL78_SYM", sym_index);
14611 else
14612 {
14613 saved_sym2 = symtab[sym_index].st_value;
14614 saved_sym2 += reloc->r_addend;
14615 }
14616 return true;
14617
14618 case 0x83: /* R_RL78_OPsub. */
14619 value = saved_sym1 - saved_sym2;
14620 saved_sym2 = saved_sym1 = 0;
14621 return true;
14622 break;
14623
14624 case 0x41: /* R_RL78_ABS32. */
14625 if (IN_RANGE (start, end, start + reloc->r_offset, 4))
14626 byte_put (start + reloc->r_offset, value, 4);
14627 else
14628 error (_("RL78 sym diff reloc contains invalid offset: "
14629 "%#" PRIx64 "\n"),
14630 reloc->r_offset);
14631 value = 0;
14632 return true;
14633
14634 case 0x43: /* R_RL78_ABS16. */
14635 if (IN_RANGE (start, end, start + reloc->r_offset, 2))
14636 byte_put (start + reloc->r_offset, value, 2);
14637 else
14638 error (_("RL78 sym diff reloc contains invalid offset: "
14639 "%#" PRIx64 "\n"),
14640 reloc->r_offset);
14641 value = 0;
14642 return true;
14643
14644 default:
14645 break;
14646 }
14647 break;
14648 }
14649 }
14650
14651 return false;
14652 }
14653
14654 /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
14655 DWARF debug sections. This is a target specific test. Note - we do not
14656 go through the whole including-target-headers-multiple-times route, (as
14657 we have already done with <elf/h8.h>) because this would become very
14658 messy and even then this function would have to contain target specific
14659 information (the names of the relocs instead of their numeric values).
14660 FIXME: This is not the correct way to solve this problem. The proper way
14661 is to have target specific reloc sizing and typing functions created by
14662 the reloc-macros.h header, in the same way that it already creates the
14663 reloc naming functions. */
14664
14665 static bool
14666 is_32bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
14667 {
14668 /* Please keep this table alpha-sorted for ease of visual lookup. */
14669 switch (filedata->file_header.e_machine)
14670 {
14671 case EM_386:
14672 case EM_IAMCU:
14673 return reloc_type == 1; /* R_386_32. */
14674 case EM_68K:
14675 return reloc_type == 1; /* R_68K_32. */
14676 case EM_860:
14677 return reloc_type == 1; /* R_860_32. */
14678 case EM_960:
14679 return reloc_type == 2; /* R_960_32. */
14680 case EM_AARCH64:
14681 return (reloc_type == 258
14682 || reloc_type == 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */
14683 case EM_BPF:
14684 return reloc_type == 11; /* R_BPF_DATA_32 */
14685 case EM_ADAPTEVA_EPIPHANY:
14686 return reloc_type == 3;
14687 case EM_ALPHA:
14688 return reloc_type == 1; /* R_ALPHA_REFLONG. */
14689 case EM_ARC:
14690 return reloc_type == 1; /* R_ARC_32. */
14691 case EM_ARC_COMPACT:
14692 case EM_ARC_COMPACT2:
14693 case EM_ARC_COMPACT3:
14694 case EM_ARC_COMPACT3_64:
14695 return reloc_type == 4; /* R_ARC_32. */
14696 case EM_ARM:
14697 return reloc_type == 2; /* R_ARM_ABS32 */
14698 case EM_AVR_OLD:
14699 case EM_AVR:
14700 return reloc_type == 1;
14701 case EM_BLACKFIN:
14702 return reloc_type == 0x12; /* R_byte4_data. */
14703 case EM_CRIS:
14704 return reloc_type == 3; /* R_CRIS_32. */
14705 case EM_CR16:
14706 return reloc_type == 3; /* R_CR16_NUM32. */
14707 case EM_CRX:
14708 return reloc_type == 15; /* R_CRX_NUM32. */
14709 case EM_CSKY:
14710 return reloc_type == 1; /* R_CKCORE_ADDR32. */
14711 case EM_CYGNUS_FRV:
14712 return reloc_type == 1;
14713 case EM_CYGNUS_D10V:
14714 case EM_D10V:
14715 return reloc_type == 6; /* R_D10V_32. */
14716 case EM_CYGNUS_D30V:
14717 case EM_D30V:
14718 return reloc_type == 12; /* R_D30V_32_NORMAL. */
14719 case EM_DLX:
14720 return reloc_type == 3; /* R_DLX_RELOC_32. */
14721 case EM_CYGNUS_FR30:
14722 case EM_FR30:
14723 return reloc_type == 3; /* R_FR30_32. */
14724 case EM_FT32:
14725 return reloc_type == 1; /* R_FT32_32. */
14726 case EM_H8S:
14727 case EM_H8_300:
14728 case EM_H8_300H:
14729 return reloc_type == 1; /* R_H8_DIR32. */
14730 case EM_IA_64:
14731 return (reloc_type == 0x64 /* R_IA64_SECREL32MSB. */
14732 || reloc_type == 0x65 /* R_IA64_SECREL32LSB. */
14733 || reloc_type == 0x24 /* R_IA64_DIR32MSB. */
14734 || reloc_type == 0x25 /* R_IA64_DIR32LSB. */);
14735 case EM_IP2K_OLD:
14736 case EM_IP2K:
14737 return reloc_type == 2; /* R_IP2K_32. */
14738 case EM_IQ2000:
14739 return reloc_type == 2; /* R_IQ2000_32. */
14740 case EM_KVX:
14741 return reloc_type == 2; /* R_KVX_32. */
14742 case EM_LATTICEMICO32:
14743 return reloc_type == 3; /* R_LM32_32. */
14744 case EM_LOONGARCH:
14745 return reloc_type == 1; /* R_LARCH_32. */
14746 case EM_M32C_OLD:
14747 case EM_M32C:
14748 return reloc_type == 3; /* R_M32C_32. */
14749 case EM_M32R:
14750 return reloc_type == 34; /* R_M32R_32_RELA. */
14751 case EM_68HC11:
14752 case EM_68HC12:
14753 return reloc_type == 6; /* R_M68HC11_32. */
14754 case EM_S12Z:
14755 return reloc_type == 7 || /* R_S12Z_EXT32 */
14756 reloc_type == 6; /* R_S12Z_CW32. */
14757 case EM_MCORE:
14758 return reloc_type == 1; /* R_MCORE_ADDR32. */
14759 case EM_CYGNUS_MEP:
14760 return reloc_type == 4; /* R_MEP_32. */
14761 case EM_METAG:
14762 return reloc_type == 2; /* R_METAG_ADDR32. */
14763 case EM_MICROBLAZE:
14764 return reloc_type == 1; /* R_MICROBLAZE_32. */
14765 case EM_MIPS:
14766 return reloc_type == 2; /* R_MIPS_32. */
14767 case EM_MMIX:
14768 return reloc_type == 4; /* R_MMIX_32. */
14769 case EM_CYGNUS_MN10200:
14770 case EM_MN10200:
14771 return reloc_type == 1; /* R_MN10200_32. */
14772 case EM_CYGNUS_MN10300:
14773 case EM_MN10300:
14774 return reloc_type == 1; /* R_MN10300_32. */
14775 case EM_MOXIE:
14776 return reloc_type == 1; /* R_MOXIE_32. */
14777 case EM_MSP430_OLD:
14778 case EM_MSP430:
14779 return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */
14780 case EM_MT:
14781 return reloc_type == 2; /* R_MT_32. */
14782 case EM_NDS32:
14783 return reloc_type == 20; /* R_NDS32_32_RELA. */
14784 case EM_ALTERA_NIOS2:
14785 return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */
14786 case EM_NIOS32:
14787 return reloc_type == 1; /* R_NIOS_32. */
14788 case EM_OR1K:
14789 return reloc_type == 1; /* R_OR1K_32. */
14790 case EM_PARISC:
14791 return (reloc_type == 1 /* R_PARISC_DIR32. */
14792 || reloc_type == 2 /* R_PARISC_DIR21L. */
14793 || reloc_type == 41); /* R_PARISC_SECREL32. */
14794 case EM_PJ:
14795 case EM_PJ_OLD:
14796 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
14797 case EM_PPC64:
14798 return reloc_type == 1; /* R_PPC64_ADDR32. */
14799 case EM_PPC:
14800 return reloc_type == 1; /* R_PPC_ADDR32. */
14801 case EM_TI_PRU:
14802 return reloc_type == 11; /* R_PRU_BFD_RELOC_32. */
14803 case EM_RISCV:
14804 return reloc_type == 1; /* R_RISCV_32. */
14805 case EM_RL78:
14806 return reloc_type == 1; /* R_RL78_DIR32. */
14807 case EM_RX:
14808 return reloc_type == 1; /* R_RX_DIR32. */
14809 case EM_S370:
14810 return reloc_type == 1; /* R_I370_ADDR31. */
14811 case EM_S390_OLD:
14812 case EM_S390:
14813 return reloc_type == 4; /* R_S390_32. */
14814 case EM_SCORE:
14815 return reloc_type == 8; /* R_SCORE_ABS32. */
14816 case EM_SH:
14817 return reloc_type == 1; /* R_SH_DIR32. */
14818 case EM_SPARC32PLUS:
14819 case EM_SPARCV9:
14820 case EM_SPARC:
14821 return reloc_type == 3 /* R_SPARC_32. */
14822 || reloc_type == 23; /* R_SPARC_UA32. */
14823 case EM_SPU:
14824 return reloc_type == 6; /* R_SPU_ADDR32 */
14825 case EM_TI_C6000:
14826 return reloc_type == 1; /* R_C6000_ABS32. */
14827 case EM_TILEGX:
14828 return reloc_type == 2; /* R_TILEGX_32. */
14829 case EM_TILEPRO:
14830 return reloc_type == 1; /* R_TILEPRO_32. */
14831 case EM_CYGNUS_V850:
14832 case EM_V850:
14833 return reloc_type == 6; /* R_V850_ABS32. */
14834 case EM_V800:
14835 return reloc_type == 0x33; /* R_V810_WORD. */
14836 case EM_VAX:
14837 return reloc_type == 1; /* R_VAX_32. */
14838 case EM_VISIUM:
14839 return reloc_type == 3; /* R_VISIUM_32. */
14840 case EM_WEBASSEMBLY:
14841 return reloc_type == 1; /* R_WASM32_32. */
14842 case EM_X86_64:
14843 case EM_L1OM:
14844 case EM_K1OM:
14845 return reloc_type == 10; /* R_X86_64_32. */
14846 case EM_XGATE:
14847 return reloc_type == 4; /* R_XGATE_32. */
14848 case EM_XSTORMY16:
14849 return reloc_type == 1; /* R_XSTROMY16_32. */
14850 case EM_XTENSA_OLD:
14851 case EM_XTENSA:
14852 return reloc_type == 1; /* R_XTENSA_32. */
14853 case EM_Z80:
14854 return reloc_type == 6; /* R_Z80_32. */
14855 default:
14856 {
14857 static unsigned int prev_warn = 0;
14858
14859 /* Avoid repeating the same warning multiple times. */
14860 if (prev_warn != filedata->file_header.e_machine)
14861 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
14862 filedata->file_header.e_machine);
14863 prev_warn = filedata->file_header.e_machine;
14864 return false;
14865 }
14866 }
14867 }
14868
14869 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
14870 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
14871
14872 static bool
14873 is_32bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
14874 {
14875 switch (filedata->file_header.e_machine)
14876 /* Please keep this table alpha-sorted for ease of visual lookup. */
14877 {
14878 case EM_386:
14879 case EM_IAMCU:
14880 return reloc_type == 2; /* R_386_PC32. */
14881 case EM_68K:
14882 return reloc_type == 4; /* R_68K_PC32. */
14883 case EM_AARCH64:
14884 return reloc_type == 261; /* R_AARCH64_PREL32 */
14885 case EM_ADAPTEVA_EPIPHANY:
14886 return reloc_type == 6;
14887 case EM_ALPHA:
14888 return reloc_type == 10; /* R_ALPHA_SREL32. */
14889 case EM_ARC_COMPACT:
14890 case EM_ARC_COMPACT2:
14891 case EM_ARC_COMPACT3:
14892 case EM_ARC_COMPACT3_64:
14893 return reloc_type == 49; /* R_ARC_32_PCREL. */
14894 case EM_ARM:
14895 return reloc_type == 3; /* R_ARM_REL32 */
14896 case EM_AVR_OLD:
14897 case EM_AVR:
14898 return reloc_type == 36; /* R_AVR_32_PCREL. */
14899 case EM_LOONGARCH:
14900 return reloc_type == 99; /* R_LARCH_32_PCREL. */
14901 case EM_MICROBLAZE:
14902 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
14903 case EM_OR1K:
14904 return reloc_type == 9; /* R_OR1K_32_PCREL. */
14905 case EM_PARISC:
14906 return reloc_type == 9; /* R_PARISC_PCREL32. */
14907 case EM_PPC:
14908 return reloc_type == 26; /* R_PPC_REL32. */
14909 case EM_PPC64:
14910 return reloc_type == 26; /* R_PPC64_REL32. */
14911 case EM_RISCV:
14912 return reloc_type == 57; /* R_RISCV_32_PCREL. */
14913 case EM_S390_OLD:
14914 case EM_S390:
14915 return reloc_type == 5; /* R_390_PC32. */
14916 case EM_SH:
14917 return reloc_type == 2; /* R_SH_REL32. */
14918 case EM_SPARC32PLUS:
14919 case EM_SPARCV9:
14920 case EM_SPARC:
14921 return reloc_type == 6; /* R_SPARC_DISP32. */
14922 case EM_SPU:
14923 return reloc_type == 13; /* R_SPU_REL32. */
14924 case EM_TILEGX:
14925 return reloc_type == 6; /* R_TILEGX_32_PCREL. */
14926 case EM_TILEPRO:
14927 return reloc_type == 4; /* R_TILEPRO_32_PCREL. */
14928 case EM_VISIUM:
14929 return reloc_type == 6; /* R_VISIUM_32_PCREL */
14930 case EM_X86_64:
14931 case EM_L1OM:
14932 case EM_K1OM:
14933 return reloc_type == 2; /* R_X86_64_PC32. */
14934 case EM_VAX:
14935 return reloc_type == 4; /* R_VAX_PCREL32. */
14936 case EM_XTENSA_OLD:
14937 case EM_XTENSA:
14938 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
14939 case EM_KVX:
14940 return reloc_type == 7; /* R_KVX_32_PCREL */
14941 default:
14942 /* Do not abort or issue an error message here. Not all targets use
14943 pc-relative 32-bit relocs in their DWARF debug information and we
14944 have already tested for target coverage in is_32bit_abs_reloc. A
14945 more helpful warning message will be generated by apply_relocations
14946 anyway, so just return. */
14947 return false;
14948 }
14949 }
14950
14951 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
14952 a 64-bit absolute RELA relocation used in DWARF debug sections. */
14953
14954 static bool
14955 is_64bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
14956 {
14957 switch (filedata->file_header.e_machine)
14958 {
14959 case EM_AARCH64:
14960 return reloc_type == 257; /* R_AARCH64_ABS64. */
14961 case EM_ARC_COMPACT3_64:
14962 return reloc_type == 5; /* R_ARC_64. */
14963 case EM_ALPHA:
14964 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
14965 case EM_IA_64:
14966 return (reloc_type == 0x26 /* R_IA64_DIR64MSB. */
14967 || reloc_type == 0x27 /* R_IA64_DIR64LSB. */);
14968 case EM_LOONGARCH:
14969 return reloc_type == 2; /* R_LARCH_64 */
14970 case EM_PARISC:
14971 return reloc_type == 80; /* R_PARISC_DIR64. */
14972 case EM_PPC64:
14973 return reloc_type == 38; /* R_PPC64_ADDR64. */
14974 case EM_RISCV:
14975 return reloc_type == 2; /* R_RISCV_64. */
14976 case EM_SPARC32PLUS:
14977 case EM_SPARCV9:
14978 case EM_SPARC:
14979 return reloc_type == 32 /* R_SPARC_64. */
14980 || reloc_type == 54; /* R_SPARC_UA64. */
14981 case EM_X86_64:
14982 case EM_L1OM:
14983 case EM_K1OM:
14984 return reloc_type == 1; /* R_X86_64_64. */
14985 case EM_S390_OLD:
14986 case EM_S390:
14987 return reloc_type == 22; /* R_S390_64. */
14988 case EM_TILEGX:
14989 return reloc_type == 1; /* R_TILEGX_64. */
14990 case EM_MIPS:
14991 return reloc_type == 18; /* R_MIPS_64. */
14992 case EM_KVX:
14993 return reloc_type == 3; /* R_KVX_64 */
14994 default:
14995 return false;
14996 }
14997 }
14998
14999 /* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
15000 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
15001
15002 static bool
15003 is_64bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
15004 {
15005 switch (filedata->file_header.e_machine)
15006 {
15007 case EM_AARCH64:
15008 return reloc_type == 260; /* R_AARCH64_PREL64. */
15009 case EM_ALPHA:
15010 return reloc_type == 11; /* R_ALPHA_SREL64. */
15011 case EM_IA_64:
15012 return (reloc_type == 0x4e /* R_IA64_PCREL64MSB. */
15013 || reloc_type == 0x4f /* R_IA64_PCREL64LSB. */);
15014 case EM_PARISC:
15015 return reloc_type == 72; /* R_PARISC_PCREL64. */
15016 case EM_PPC64:
15017 return reloc_type == 44; /* R_PPC64_REL64. */
15018 case EM_SPARC32PLUS:
15019 case EM_SPARCV9:
15020 case EM_SPARC:
15021 return reloc_type == 46; /* R_SPARC_DISP64. */
15022 case EM_X86_64:
15023 case EM_L1OM:
15024 case EM_K1OM:
15025 return reloc_type == 24; /* R_X86_64_PC64. */
15026 case EM_S390_OLD:
15027 case EM_S390:
15028 return reloc_type == 23; /* R_S390_PC64. */
15029 case EM_TILEGX:
15030 return reloc_type == 5; /* R_TILEGX_64_PCREL. */
15031 default:
15032 return false;
15033 }
15034 }
15035
15036 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15037 a 24-bit absolute RELA relocation used in DWARF debug sections. */
15038
15039 static bool
15040 is_24bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
15041 {
15042 switch (filedata->file_header.e_machine)
15043 {
15044 case EM_CYGNUS_MN10200:
15045 case EM_MN10200:
15046 return reloc_type == 4; /* R_MN10200_24. */
15047 case EM_FT32:
15048 return reloc_type == 5; /* R_FT32_20. */
15049 case EM_Z80:
15050 return reloc_type == 5; /* R_Z80_24. */
15051 default:
15052 return false;
15053 }
15054 }
15055
15056 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15057 a 16-bit absolute RELA relocation used in DWARF debug sections. */
15058
15059 static bool
15060 is_16bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
15061 {
15062 /* Please keep this table alpha-sorted for ease of visual lookup. */
15063 switch (filedata->file_header.e_machine)
15064 {
15065 case EM_ARC:
15066 case EM_ARC_COMPACT:
15067 case EM_ARC_COMPACT2:
15068 case EM_ARC_COMPACT3:
15069 case EM_ARC_COMPACT3_64:
15070 return reloc_type == 2; /* R_ARC_16. */
15071 case EM_ADAPTEVA_EPIPHANY:
15072 return reloc_type == 5;
15073 case EM_AVR_OLD:
15074 case EM_AVR:
15075 return reloc_type == 4; /* R_AVR_16. */
15076 case EM_CYGNUS_D10V:
15077 case EM_D10V:
15078 return reloc_type == 3; /* R_D10V_16. */
15079 case EM_FT32:
15080 return reloc_type == 2; /* R_FT32_16. */
15081 case EM_H8S:
15082 case EM_H8_300:
15083 case EM_H8_300H:
15084 return reloc_type == R_H8_DIR16;
15085 case EM_IP2K_OLD:
15086 case EM_IP2K:
15087 return reloc_type == 1; /* R_IP2K_16. */
15088 case EM_M32C_OLD:
15089 case EM_M32C:
15090 return reloc_type == 1; /* R_M32C_16 */
15091 case EM_CYGNUS_MN10200:
15092 case EM_MN10200:
15093 return reloc_type == 2; /* R_MN10200_16. */
15094 case EM_CYGNUS_MN10300:
15095 case EM_MN10300:
15096 return reloc_type == 2; /* R_MN10300_16. */
15097 case EM_KVX:
15098 return reloc_type == 1; /* R_KVX_16 */
15099 case EM_MSP430:
15100 if (uses_msp430x_relocs (filedata))
15101 return reloc_type == 2; /* R_MSP430_ABS16. */
15102 /* Fall through. */
15103 case EM_MSP430_OLD:
15104 return reloc_type == 5; /* R_MSP430_16_BYTE. */
15105 case EM_NDS32:
15106 return reloc_type == 19; /* R_NDS32_16_RELA. */
15107 case EM_ALTERA_NIOS2:
15108 return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */
15109 case EM_NIOS32:
15110 return reloc_type == 9; /* R_NIOS_16. */
15111 case EM_OR1K:
15112 return reloc_type == 2; /* R_OR1K_16. */
15113 case EM_RISCV:
15114 return reloc_type == 55; /* R_RISCV_SET16. */
15115 case EM_TI_PRU:
15116 return reloc_type == 8; /* R_PRU_BFD_RELOC_16. */
15117 case EM_TI_C6000:
15118 return reloc_type == 2; /* R_C6000_ABS16. */
15119 case EM_VISIUM:
15120 return reloc_type == 2; /* R_VISIUM_16. */
15121 case EM_XGATE:
15122 return reloc_type == 3; /* R_XGATE_16. */
15123 case EM_Z80:
15124 return reloc_type == 4; /* R_Z80_16. */
15125 default:
15126 return false;
15127 }
15128 }
15129
15130 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15131 a 8-bit absolute RELA relocation used in DWARF debug sections. */
15132
15133 static bool
15134 is_8bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
15135 {
15136 switch (filedata->file_header.e_machine)
15137 {
15138 case EM_RISCV:
15139 return reloc_type == 54; /* R_RISCV_SET8. */
15140 case EM_Z80:
15141 return reloc_type == 1; /* R_Z80_8. */
15142 default:
15143 return false;
15144 }
15145 }
15146
15147 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15148 a 6-bit absolute RELA relocation used in DWARF debug sections. */
15149
15150 static bool
15151 is_6bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
15152 {
15153 switch (filedata->file_header.e_machine)
15154 {
15155 case EM_RISCV:
15156 return reloc_type == 53; /* R_RISCV_SET6. */
15157 default:
15158 return false;
15159 }
15160 }
15161
15162 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15163 a 32-bit inplace add RELA relocation used in DWARF debug sections. */
15164
15165 static bool
15166 is_32bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
15167 {
15168 /* Please keep this table alpha-sorted for ease of visual lookup. */
15169 switch (filedata->file_header.e_machine)
15170 {
15171 case EM_LOONGARCH:
15172 return reloc_type == 50; /* R_LARCH_ADD32. */
15173 case EM_RISCV:
15174 return reloc_type == 35; /* R_RISCV_ADD32. */
15175 default:
15176 return false;
15177 }
15178 }
15179
15180 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15181 a 32-bit inplace sub RELA relocation used in DWARF debug sections. */
15182
15183 static bool
15184 is_32bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
15185 {
15186 /* Please keep this table alpha-sorted for ease of visual lookup. */
15187 switch (filedata->file_header.e_machine)
15188 {
15189 case EM_LOONGARCH:
15190 return reloc_type == 55; /* R_LARCH_SUB32. */
15191 case EM_RISCV:
15192 return reloc_type == 39; /* R_RISCV_SUB32. */
15193 default:
15194 return false;
15195 }
15196 }
15197
15198 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15199 a 64-bit inplace add RELA relocation used in DWARF debug sections. */
15200
15201 static bool
15202 is_64bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
15203 {
15204 /* Please keep this table alpha-sorted for ease of visual lookup. */
15205 switch (filedata->file_header.e_machine)
15206 {
15207 case EM_LOONGARCH:
15208 return reloc_type == 51; /* R_LARCH_ADD64. */
15209 case EM_RISCV:
15210 return reloc_type == 36; /* R_RISCV_ADD64. */
15211 default:
15212 return false;
15213 }
15214 }
15215
15216 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15217 a 64-bit inplace sub RELA relocation used in DWARF debug sections. */
15218
15219 static bool
15220 is_64bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
15221 {
15222 /* Please keep this table alpha-sorted for ease of visual lookup. */
15223 switch (filedata->file_header.e_machine)
15224 {
15225 case EM_LOONGARCH:
15226 return reloc_type == 56; /* R_LARCH_SUB64. */
15227 case EM_RISCV:
15228 return reloc_type == 40; /* R_RISCV_SUB64. */
15229 default:
15230 return false;
15231 }
15232 }
15233
15234 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15235 a 16-bit inplace add RELA relocation used in DWARF debug sections. */
15236
15237 static bool
15238 is_16bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
15239 {
15240 /* Please keep this table alpha-sorted for ease of visual lookup. */
15241 switch (filedata->file_header.e_machine)
15242 {
15243 case EM_LOONGARCH:
15244 return reloc_type == 48; /* R_LARCH_ADD16. */
15245 case EM_RISCV:
15246 return reloc_type == 34; /* R_RISCV_ADD16. */
15247 default:
15248 return false;
15249 }
15250 }
15251
15252 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15253 a 16-bit inplace sub RELA relocation used in DWARF debug sections. */
15254
15255 static bool
15256 is_16bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
15257 {
15258 /* Please keep this table alpha-sorted for ease of visual lookup. */
15259 switch (filedata->file_header.e_machine)
15260 {
15261 case EM_LOONGARCH:
15262 return reloc_type == 53; /* R_LARCH_SUB16. */
15263 case EM_RISCV:
15264 return reloc_type == 38; /* R_RISCV_SUB16. */
15265 default:
15266 return false;
15267 }
15268 }
15269
15270 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15271 a 8-bit inplace add RELA relocation used in DWARF debug sections. */
15272
15273 static bool
15274 is_8bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
15275 {
15276 /* Please keep this table alpha-sorted for ease of visual lookup. */
15277 switch (filedata->file_header.e_machine)
15278 {
15279 case EM_LOONGARCH:
15280 return reloc_type == 47; /* R_LARCH_ADD8. */
15281 case EM_RISCV:
15282 return reloc_type == 33; /* R_RISCV_ADD8. */
15283 default:
15284 return false;
15285 }
15286 }
15287
15288 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15289 a 8-bit inplace sub RELA relocation used in DWARF debug sections. */
15290
15291 static bool
15292 is_8bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
15293 {
15294 /* Please keep this table alpha-sorted for ease of visual lookup. */
15295 switch (filedata->file_header.e_machine)
15296 {
15297 case EM_LOONGARCH:
15298 return reloc_type == 52; /* R_LARCH_SUB8. */
15299 case EM_RISCV:
15300 return reloc_type == 37; /* R_RISCV_SUB8. */
15301 default:
15302 return false;
15303 }
15304 }
15305
15306 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15307 a 6-bit inplace add RELA relocation used in DWARF debug sections. */
15308
15309 static bool
15310 is_6bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
15311 {
15312 switch (filedata->file_header.e_machine)
15313 {
15314 case EM_LOONGARCH:
15315 return reloc_type == 105; /* R_LARCH_ADD6. */
15316 default:
15317 return false;
15318 }
15319 }
15320
15321 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
15322 a 6-bit inplace sub RELA relocation used in DWARF debug sections. */
15323
15324 static bool
15325 is_6bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
15326 {
15327 switch (filedata->file_header.e_machine)
15328 {
15329 case EM_LOONGARCH:
15330 return reloc_type == 106; /* R_LARCH_SUB6. */
15331 case EM_RISCV:
15332 return reloc_type == 52; /* R_RISCV_SUB6. */
15333 default:
15334 return false;
15335 }
15336 }
15337
15338 /* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
15339 relocation entries (possibly formerly used for SHT_GROUP sections). */
15340
15341 static bool
15342 is_none_reloc (Filedata * filedata, unsigned int reloc_type)
15343 {
15344 switch (filedata->file_header.e_machine)
15345 {
15346 case EM_386: /* R_386_NONE. */
15347 case EM_68K: /* R_68K_NONE. */
15348 case EM_ADAPTEVA_EPIPHANY:
15349 case EM_ALPHA: /* R_ALPHA_NONE. */
15350 case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */
15351 case EM_ARC: /* R_ARC_NONE. */
15352 case EM_ARC_COMPACT2: /* R_ARC_NONE. */
15353 case EM_ARC_COMPACT: /* R_ARC_NONE. */
15354 case EM_ARC_COMPACT3: /* R_ARC_NONE. */
15355 case EM_ARC_COMPACT3_64: /* R_ARC_NONE. */
15356 case EM_ARM: /* R_ARM_NONE. */
15357 case EM_CRIS: /* R_CRIS_NONE. */
15358 case EM_FT32: /* R_FT32_NONE. */
15359 case EM_IA_64: /* R_IA64_NONE. */
15360 case EM_K1OM: /* R_X86_64_NONE. */
15361 case EM_KVX: /* R_KVX_NONE. */
15362 case EM_L1OM: /* R_X86_64_NONE. */
15363 case EM_M32R: /* R_M32R_NONE. */
15364 case EM_MIPS: /* R_MIPS_NONE. */
15365 case EM_MN10300: /* R_MN10300_NONE. */
15366 case EM_MOXIE: /* R_MOXIE_NONE. */
15367 case EM_NIOS32: /* R_NIOS_NONE. */
15368 case EM_OR1K: /* R_OR1K_NONE. */
15369 case EM_PARISC: /* R_PARISC_NONE. */
15370 case EM_PPC64: /* R_PPC64_NONE. */
15371 case EM_PPC: /* R_PPC_NONE. */
15372 case EM_RISCV: /* R_RISCV_NONE. */
15373 case EM_S390: /* R_390_NONE. */
15374 case EM_S390_OLD:
15375 case EM_SH: /* R_SH_NONE. */
15376 case EM_SPARC32PLUS:
15377 case EM_SPARC: /* R_SPARC_NONE. */
15378 case EM_SPARCV9:
15379 case EM_TILEGX: /* R_TILEGX_NONE. */
15380 case EM_TILEPRO: /* R_TILEPRO_NONE. */
15381 case EM_TI_C6000:/* R_C6000_NONE. */
15382 case EM_X86_64: /* R_X86_64_NONE. */
15383 case EM_Z80: /* R_Z80_NONE. */
15384 case EM_WEBASSEMBLY: /* R_WASM32_NONE. */
15385 return reloc_type == 0;
15386
15387 case EM_AARCH64:
15388 return reloc_type == 0 || reloc_type == 256;
15389 case EM_AVR_OLD:
15390 case EM_AVR:
15391 return (reloc_type == 0 /* R_AVR_NONE. */
15392 || reloc_type == 30 /* R_AVR_DIFF8. */
15393 || reloc_type == 31 /* R_AVR_DIFF16. */
15394 || reloc_type == 32 /* R_AVR_DIFF32. */);
15395 case EM_METAG:
15396 return reloc_type == 3; /* R_METAG_NONE. */
15397 case EM_NDS32:
15398 return (reloc_type == 0 /* R_NDS32_NONE. */
15399 || reloc_type == 205 /* R_NDS32_DIFF8. */
15400 || reloc_type == 206 /* R_NDS32_DIFF16. */
15401 || reloc_type == 207 /* R_NDS32_DIFF32. */
15402 || reloc_type == 208 /* R_NDS32_DIFF_ULEB128. */);
15403 case EM_TI_PRU:
15404 return (reloc_type == 0 /* R_PRU_NONE. */
15405 || reloc_type == 65 /* R_PRU_DIFF8. */
15406 || reloc_type == 66 /* R_PRU_DIFF16. */
15407 || reloc_type == 67 /* R_PRU_DIFF32. */);
15408 case EM_XTENSA_OLD:
15409 case EM_XTENSA:
15410 return (reloc_type == 0 /* R_XTENSA_NONE. */
15411 || reloc_type == 17 /* R_XTENSA_DIFF8. */
15412 || reloc_type == 18 /* R_XTENSA_DIFF16. */
15413 || reloc_type == 19 /* R_XTENSA_DIFF32. */
15414 || reloc_type == 57 /* R_XTENSA_PDIFF8. */
15415 || reloc_type == 58 /* R_XTENSA_PDIFF16. */
15416 || reloc_type == 59 /* R_XTENSA_PDIFF32. */
15417 || reloc_type == 60 /* R_XTENSA_NDIFF8. */
15418 || reloc_type == 61 /* R_XTENSA_NDIFF16. */
15419 || reloc_type == 62 /* R_XTENSA_NDIFF32. */);
15420 }
15421 return false;
15422 }
15423
15424 /* Returns TRUE if there is a relocation against
15425 section NAME at OFFSET bytes. */
15426
15427 bool
15428 reloc_at (struct dwarf_section * dsec, uint64_t offset)
15429 {
15430 Elf_Internal_Rela * relocs;
15431 Elf_Internal_Rela * rp;
15432
15433 if (dsec == NULL || dsec->reloc_info == NULL)
15434 return false;
15435
15436 relocs = (Elf_Internal_Rela *) dsec->reloc_info;
15437
15438 for (rp = relocs; rp < relocs + dsec->num_relocs; ++rp)
15439 if (rp->r_offset == offset)
15440 return true;
15441
15442 return false;
15443 }
15444
15445 /* Apply relocations to a section.
15446 Returns TRUE upon success, FALSE otherwise.
15447 If RELOCS_RETURN is non-NULL then it is set to point to the loaded relocs.
15448 It is then the caller's responsibility to free them. NUM_RELOCS_RETURN
15449 will be set to the number of relocs loaded.
15450
15451 Note: So far support has been added only for those relocations
15452 which can be found in debug sections. FIXME: Add support for
15453 more relocations ? */
15454
15455 static bool
15456 apply_relocations (Filedata *filedata,
15457 const Elf_Internal_Shdr *section,
15458 unsigned char *start,
15459 size_t size,
15460 void **relocs_return,
15461 uint64_t *num_relocs_return)
15462 {
15463 Elf_Internal_Shdr * relsec;
15464 unsigned char * end = start + size;
15465
15466 if (relocs_return != NULL)
15467 {
15468 * (Elf_Internal_Rela **) relocs_return = NULL;
15469 * num_relocs_return = 0;
15470 }
15471
15472 if (filedata->file_header.e_type != ET_REL)
15473 /* No relocs to apply. */
15474 return true;
15475
15476 /* Find the reloc section associated with the section. */
15477 for (relsec = filedata->section_headers;
15478 relsec < filedata->section_headers + filedata->file_header.e_shnum;
15479 ++relsec)
15480 {
15481 bool is_rela;
15482 uint64_t num_relocs;
15483 Elf_Internal_Rela * relocs;
15484 Elf_Internal_Rela * rp;
15485 Elf_Internal_Shdr * symsec;
15486 Elf_Internal_Sym * symtab;
15487 uint64_t num_syms;
15488 Elf_Internal_Sym * sym;
15489
15490 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
15491 || relsec->sh_info >= filedata->file_header.e_shnum
15492 || filedata->section_headers + relsec->sh_info != section
15493 || relsec->sh_size == 0
15494 || relsec->sh_link >= filedata->file_header.e_shnum)
15495 continue;
15496
15497 symsec = filedata->section_headers + relsec->sh_link;
15498 if (symsec->sh_type != SHT_SYMTAB
15499 && symsec->sh_type != SHT_DYNSYM)
15500 return false;
15501
15502 is_rela = relsec->sh_type == SHT_RELA;
15503
15504 if (is_rela)
15505 {
15506 if (!slurp_rela_relocs (filedata, relsec->sh_offset,
15507 relsec->sh_size, & relocs, & num_relocs))
15508 return false;
15509 }
15510 else
15511 {
15512 if (!slurp_rel_relocs (filedata, relsec->sh_offset,
15513 relsec->sh_size, & relocs, & num_relocs))
15514 return false;
15515 }
15516
15517 /* SH uses RELA but uses in place value instead of the addend field. */
15518 if (filedata->file_header.e_machine == EM_SH)
15519 is_rela = false;
15520
15521 symtab = get_elf_symbols (filedata, symsec, & num_syms);
15522
15523 for (rp = relocs; rp < relocs + num_relocs; ++rp)
15524 {
15525 uint64_t addend;
15526 unsigned int reloc_type;
15527 unsigned int reloc_size;
15528 bool reloc_inplace = false;
15529 bool reloc_subtract = false;
15530 unsigned char *rloc;
15531 uint64_t sym_index;
15532
15533 reloc_type = get_reloc_type (filedata, rp->r_info);
15534
15535 if (target_specific_reloc_handling (filedata, rp, start, end, symtab, num_syms))
15536 continue;
15537 else if (is_none_reloc (filedata, reloc_type))
15538 continue;
15539 else if (is_32bit_abs_reloc (filedata, reloc_type)
15540 || is_32bit_pcrel_reloc (filedata, reloc_type))
15541 reloc_size = 4;
15542 else if (is_64bit_abs_reloc (filedata, reloc_type)
15543 || is_64bit_pcrel_reloc (filedata, reloc_type))
15544 reloc_size = 8;
15545 else if (is_24bit_abs_reloc (filedata, reloc_type))
15546 reloc_size = 3;
15547 else if (is_16bit_abs_reloc (filedata, reloc_type))
15548 reloc_size = 2;
15549 else if (is_8bit_abs_reloc (filedata, reloc_type)
15550 || is_6bit_abs_reloc (filedata, reloc_type))
15551 reloc_size = 1;
15552 else if ((reloc_subtract = is_32bit_inplace_sub_reloc (filedata,
15553 reloc_type))
15554 || is_32bit_inplace_add_reloc (filedata, reloc_type))
15555 {
15556 reloc_size = 4;
15557 reloc_inplace = true;
15558 }
15559 else if ((reloc_subtract = is_64bit_inplace_sub_reloc (filedata,
15560 reloc_type))
15561 || is_64bit_inplace_add_reloc (filedata, reloc_type))
15562 {
15563 reloc_size = 8;
15564 reloc_inplace = true;
15565 }
15566 else if ((reloc_subtract = is_16bit_inplace_sub_reloc (filedata,
15567 reloc_type))
15568 || is_16bit_inplace_add_reloc (filedata, reloc_type))
15569 {
15570 reloc_size = 2;
15571 reloc_inplace = true;
15572 }
15573 else if ((reloc_subtract = is_8bit_inplace_sub_reloc (filedata,
15574 reloc_type))
15575 || is_8bit_inplace_add_reloc (filedata, reloc_type))
15576 {
15577 reloc_size = 1;
15578 reloc_inplace = true;
15579 }
15580 else if ((reloc_subtract = is_6bit_inplace_sub_reloc (filedata,
15581 reloc_type))
15582 || is_6bit_inplace_add_reloc (filedata, reloc_type))
15583 {
15584 reloc_size = 1;
15585 reloc_inplace = true;
15586 }
15587 else
15588 {
15589 static unsigned int prev_reloc = 0;
15590
15591 if (reloc_type != prev_reloc)
15592 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
15593 reloc_type, printable_section_name (filedata, section));
15594 prev_reloc = reloc_type;
15595 continue;
15596 }
15597
15598 rloc = start + rp->r_offset;
15599 if (!IN_RANGE (start, end, rloc, reloc_size))
15600 {
15601 warn (_("skipping invalid relocation offset %#" PRIx64
15602 " in section %s\n"),
15603 rp->r_offset,
15604 printable_section_name (filedata, section));
15605 continue;
15606 }
15607
15608 sym_index = get_reloc_symindex (rp->r_info);
15609 if (sym_index >= num_syms)
15610 {
15611 warn (_("skipping invalid relocation symbol index %#" PRIx64
15612 " in section %s\n"),
15613 sym_index, printable_section_name (filedata, section));
15614 continue;
15615 }
15616 sym = symtab + sym_index;
15617
15618 /* If the reloc has a symbol associated with it,
15619 make sure that it is of an appropriate type.
15620
15621 Relocations against symbols without type can happen.
15622 Gcc -feliminate-dwarf2-dups may generate symbols
15623 without type for debug info.
15624
15625 Icc generates relocations against function symbols
15626 instead of local labels.
15627
15628 Relocations against object symbols can happen, eg when
15629 referencing a global array. For an example of this see
15630 the _clz.o binary in libgcc.a. */
15631 if (sym != symtab
15632 && ELF_ST_TYPE (sym->st_info) != STT_COMMON
15633 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
15634 {
15635 warn (_("skipping unexpected symbol type %s in section %s relocation %tu\n"),
15636 get_symbol_type (filedata, ELF_ST_TYPE (sym->st_info)),
15637 printable_section_name (filedata, relsec),
15638 rp - relocs);
15639 continue;
15640 }
15641
15642 addend = 0;
15643 if (is_rela)
15644 addend += rp->r_addend;
15645 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
15646 partial_inplace. */
15647 if (!is_rela
15648 || (filedata->file_header.e_machine == EM_XTENSA
15649 && reloc_type == 1)
15650 || ((filedata->file_header.e_machine == EM_PJ
15651 || filedata->file_header.e_machine == EM_PJ_OLD)
15652 && reloc_type == 1)
15653 || ((filedata->file_header.e_machine == EM_D30V
15654 || filedata->file_header.e_machine == EM_CYGNUS_D30V)
15655 && reloc_type == 12)
15656 || reloc_inplace)
15657 {
15658 if (is_6bit_inplace_sub_reloc (filedata, reloc_type))
15659 addend += byte_get (rloc, reloc_size) & 0x3f;
15660 else
15661 addend += byte_get (rloc, reloc_size);
15662 }
15663
15664 if (is_32bit_pcrel_reloc (filedata, reloc_type)
15665 || is_64bit_pcrel_reloc (filedata, reloc_type))
15666 {
15667 /* On HPPA, all pc-relative relocations are biased by 8. */
15668 if (filedata->file_header.e_machine == EM_PARISC)
15669 addend -= 8;
15670 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
15671 reloc_size);
15672 }
15673 else if (is_6bit_abs_reloc (filedata, reloc_type)
15674 || is_6bit_inplace_sub_reloc (filedata, reloc_type)
15675 || is_6bit_inplace_add_reloc (filedata, reloc_type))
15676 {
15677 if (reloc_subtract)
15678 addend -= sym->st_value;
15679 else
15680 addend += sym->st_value;
15681 addend = (addend & 0x3f) | (byte_get (rloc, reloc_size) & 0xc0);
15682 byte_put (rloc, addend, reloc_size);
15683 }
15684 else if (reloc_subtract)
15685 byte_put (rloc, addend - sym->st_value, reloc_size);
15686 else
15687 byte_put (rloc, addend + sym->st_value, reloc_size);
15688 }
15689
15690 free (symtab);
15691 /* Let the target specific reloc processing code know that
15692 we have finished with these relocs. */
15693 target_specific_reloc_handling (filedata, NULL, NULL, NULL, NULL, 0);
15694
15695 if (relocs_return)
15696 {
15697 * (Elf_Internal_Rela **) relocs_return = relocs;
15698 * num_relocs_return = num_relocs;
15699 }
15700 else
15701 free (relocs);
15702
15703 break;
15704 }
15705
15706 return true;
15707 }
15708
15709 #ifdef SUPPORT_DISASSEMBLY
15710 static bool
15711 disassemble_section (Elf_Internal_Shdr * section, Filedata * filedata)
15712 {
15713 printf (_("\nAssembly dump of section %s\n"), printable_section_name (filedata, section));
15714
15715 /* FIXME: XXX -- to be done --- XXX */
15716
15717 return true;
15718 }
15719 #endif
15720
15721 /* Reads in the contents of SECTION from FILE, returning a pointer
15722 to a malloc'ed buffer or NULL if something went wrong. */
15723
15724 static char *
15725 get_section_contents (Elf_Internal_Shdr * section, Filedata * filedata)
15726 {
15727 uint64_t num_bytes = section->sh_size;
15728
15729 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
15730 {
15731 printf (_("Section '%s' has no data to dump.\n"),
15732 printable_section_name (filedata, section));
15733 return NULL;
15734 }
15735
15736 return (char *) get_data (NULL, filedata, section->sh_offset, 1, num_bytes,
15737 _("section contents"));
15738 }
15739
15740 /* Uncompresses a section that was compressed using zlib/zstd, in place. */
15741
15742 static bool
15743 uncompress_section_contents (bool is_zstd,
15744 unsigned char ** buffer,
15745 uint64_t uncompressed_size,
15746 uint64_t * size,
15747 uint64_t file_size)
15748 {
15749 uint64_t compressed_size = *size;
15750 unsigned char *compressed_buffer = *buffer;
15751 unsigned char *uncompressed_buffer = NULL;
15752 z_stream strm;
15753 int rc;
15754
15755 /* Similar to _bfd_section_size_insane() in the BFD library we expect an
15756 upper limit of ~10x compression. Any compression larger than that is
15757 thought to be due to fuzzing of the compression header. */
15758 if (uncompressed_size > file_size * 10)
15759 {
15760 error (_("Uncompressed section size is suspiciously large: 0x%" PRIu64 "\n"),
15761 uncompressed_size);
15762 goto fail;
15763 }
15764
15765 uncompressed_buffer = xmalloc (uncompressed_size);
15766
15767 if (is_zstd)
15768 {
15769 #ifdef HAVE_ZSTD
15770 size_t ret = ZSTD_decompress (uncompressed_buffer, uncompressed_size,
15771 compressed_buffer, compressed_size);
15772 if (ZSTD_isError (ret))
15773 goto fail;
15774 #endif
15775 }
15776 else
15777 {
15778 /* It is possible the section consists of several compressed
15779 buffers concatenated together, so we uncompress in a loop. */
15780 /* PR 18313: The state field in the z_stream structure is supposed
15781 to be invisible to the user (ie us), but some compilers will
15782 still complain about it being used without initialisation. So
15783 we first zero the entire z_stream structure and then set the fields
15784 that we need. */
15785 memset (&strm, 0, sizeof strm);
15786 strm.avail_in = compressed_size;
15787 strm.next_in = (Bytef *)compressed_buffer;
15788 strm.avail_out = uncompressed_size;
15789
15790 rc = inflateInit (&strm);
15791 while (strm.avail_in > 0)
15792 {
15793 if (rc != Z_OK)
15794 break;
15795 strm.next_out = ((Bytef *)uncompressed_buffer
15796 + (uncompressed_size - strm.avail_out));
15797 rc = inflate (&strm, Z_FINISH);
15798 if (rc != Z_STREAM_END)
15799 break;
15800 rc = inflateReset (&strm);
15801 }
15802 if (inflateEnd (&strm) != Z_OK || rc != Z_OK || strm.avail_out != 0)
15803 goto fail;
15804 }
15805
15806 *buffer = uncompressed_buffer;
15807 *size = uncompressed_size;
15808 return true;
15809
15810 fail:
15811 free (uncompressed_buffer);
15812 /* Indicate decompression failure. */
15813 *buffer = NULL;
15814 return false;
15815 }
15816
15817 static bool
15818 dump_section_as_strings (Elf_Internal_Shdr * section, Filedata * filedata)
15819 {
15820 Elf_Internal_Shdr *relsec;
15821 uint64_t num_bytes;
15822 unsigned char *data;
15823 unsigned char *end;
15824 unsigned char *real_start;
15825 unsigned char *start;
15826 bool some_strings_shown;
15827
15828 real_start = start = (unsigned char *) get_section_contents (section, filedata);
15829 if (start == NULL)
15830 /* PR 21820: Do not fail if the section was empty. */
15831 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
15832
15833 num_bytes = section->sh_size;
15834
15835 if (filedata->is_separate)
15836 printf (_("\nString dump of section '%s' in linked file %s:\n"),
15837 printable_section_name (filedata, section),
15838 filedata->file_name);
15839 else
15840 printf (_("\nString dump of section '%s':\n"),
15841 printable_section_name (filedata, section));
15842
15843 if (decompress_dumps)
15844 {
15845 uint64_t new_size = num_bytes;
15846 uint64_t uncompressed_size = 0;
15847 bool is_zstd = false;
15848
15849 if ((section->sh_flags & SHF_COMPRESSED) != 0)
15850 {
15851 Elf_Internal_Chdr chdr;
15852 unsigned int compression_header_size
15853 = get_compression_header (& chdr, (unsigned char *) start,
15854 num_bytes);
15855 if (compression_header_size == 0)
15856 /* An error message will have already been generated
15857 by get_compression_header. */
15858 goto error_out;
15859
15860 if (chdr.ch_type == ch_compress_zlib)
15861 ;
15862 #ifdef HAVE_ZSTD
15863 else if (chdr.ch_type == ch_compress_zstd)
15864 is_zstd = true;
15865 #endif
15866 else
15867 {
15868 warn (_("section '%s' has unsupported compress type: %d\n"),
15869 printable_section_name (filedata, section), chdr.ch_type);
15870 goto error_out;
15871 }
15872 uncompressed_size = chdr.ch_size;
15873 start += compression_header_size;
15874 new_size -= compression_header_size;
15875 }
15876 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
15877 {
15878 /* Read the zlib header. In this case, it should be "ZLIB"
15879 followed by the uncompressed section size, 8 bytes in
15880 big-endian order. */
15881 uncompressed_size = start[4]; uncompressed_size <<= 8;
15882 uncompressed_size += start[5]; uncompressed_size <<= 8;
15883 uncompressed_size += start[6]; uncompressed_size <<= 8;
15884 uncompressed_size += start[7]; uncompressed_size <<= 8;
15885 uncompressed_size += start[8]; uncompressed_size <<= 8;
15886 uncompressed_size += start[9]; uncompressed_size <<= 8;
15887 uncompressed_size += start[10]; uncompressed_size <<= 8;
15888 uncompressed_size += start[11];
15889 start += 12;
15890 new_size -= 12;
15891 }
15892
15893 if (uncompressed_size)
15894 {
15895 if (uncompress_section_contents (is_zstd, &start, uncompressed_size,
15896 &new_size, filedata->file_size))
15897 num_bytes = new_size;
15898 else
15899 {
15900 error (_("Unable to decompress section %s\n"),
15901 printable_section_name (filedata, section));
15902 goto error_out;
15903 }
15904 }
15905 else
15906 start = real_start;
15907 }
15908
15909 /* If the section being dumped has relocations against it the user might
15910 be expecting these relocations to have been applied. Check for this
15911 case and issue a warning message in order to avoid confusion.
15912 FIXME: Maybe we ought to have an option that dumps a section with
15913 relocs applied ? */
15914 for (relsec = filedata->section_headers;
15915 relsec < filedata->section_headers + filedata->file_header.e_shnum;
15916 ++relsec)
15917 {
15918 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
15919 || relsec->sh_info >= filedata->file_header.e_shnum
15920 || filedata->section_headers + relsec->sh_info != section
15921 || relsec->sh_size == 0
15922 || relsec->sh_link >= filedata->file_header.e_shnum)
15923 continue;
15924
15925 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
15926 break;
15927 }
15928
15929 data = start;
15930 end = start + num_bytes;
15931 some_strings_shown = false;
15932
15933 #ifdef HAVE_MBSTATE_T
15934 mbstate_t state;
15935 /* Initialise the multibyte conversion state. */
15936 memset (& state, 0, sizeof (state));
15937 #endif
15938
15939 bool continuing = false;
15940
15941 while (data < end)
15942 {
15943 while (!ISPRINT (* data))
15944 if (++ data >= end)
15945 break;
15946
15947 if (data < end)
15948 {
15949 size_t maxlen = end - data;
15950
15951 if (continuing)
15952 {
15953 printf (" ");
15954 continuing = false;
15955 }
15956 else
15957 {
15958 printf (" [%6tx] ", data - start);
15959 }
15960
15961 if (maxlen > 0)
15962 {
15963 char c = 0;
15964
15965 while (maxlen)
15966 {
15967 c = *data++;
15968
15969 if (c == 0)
15970 break;
15971
15972 /* PR 25543: Treat new-lines as string-ending characters. */
15973 if (c == '\n')
15974 {
15975 printf ("\\n\n");
15976 if (*data != 0)
15977 continuing = true;
15978 break;
15979 }
15980
15981 /* Do not print control characters directly as they can affect terminal
15982 settings. Such characters usually appear in the names generated
15983 by the assembler for local labels. */
15984 if (ISCNTRL (c))
15985 {
15986 printf ("^%c", c + 0x40);
15987 }
15988 else if (ISPRINT (c))
15989 {
15990 putchar (c);
15991 }
15992 else
15993 {
15994 size_t n;
15995 #ifdef HAVE_MBSTATE_T
15996 wchar_t w;
15997 #endif
15998 /* Let printf do the hard work of displaying multibyte characters. */
15999 printf ("%.1s", data - 1);
16000 #ifdef HAVE_MBSTATE_T
16001 /* Try to find out how many bytes made up the character that was
16002 just printed. Advance the symbol pointer past the bytes that
16003 were displayed. */
16004 n = mbrtowc (& w, (char *)(data - 1), MB_CUR_MAX, & state);
16005 #else
16006 n = 1;
16007 #endif
16008 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
16009 data += (n - 1);
16010 }
16011 }
16012
16013 if (c != '\n')
16014 putchar ('\n');
16015 }
16016 else
16017 {
16018 printf (_("<corrupt>\n"));
16019 data = end;
16020 }
16021 some_strings_shown = true;
16022 }
16023 }
16024
16025 if (! some_strings_shown)
16026 printf (_(" No strings found in this section."));
16027
16028 free (real_start);
16029
16030 putchar ('\n');
16031 return true;
16032
16033 error_out:
16034 free (real_start);
16035 return false;
16036 }
16037
16038 static bool
16039 dump_section_as_bytes (Elf_Internal_Shdr *section,
16040 Filedata *filedata,
16041 bool relocate)
16042 {
16043 Elf_Internal_Shdr *relsec;
16044 size_t bytes;
16045 uint64_t section_size;
16046 uint64_t addr;
16047 unsigned char *data;
16048 unsigned char *real_start;
16049 unsigned char *start;
16050
16051 real_start = start = (unsigned char *) get_section_contents (section, filedata);
16052 if (start == NULL)
16053 /* PR 21820: Do not fail if the section was empty. */
16054 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
16055
16056 section_size = section->sh_size;
16057
16058 if (filedata->is_separate)
16059 printf (_("\nHex dump of section '%s' in linked file %s:\n"),
16060 printable_section_name (filedata, section),
16061 filedata->file_name);
16062 else
16063 printf (_("\nHex dump of section '%s':\n"),
16064 printable_section_name (filedata, section));
16065
16066 if (decompress_dumps)
16067 {
16068 uint64_t new_size = section_size;
16069 uint64_t uncompressed_size = 0;
16070 bool is_zstd = false;
16071
16072 if ((section->sh_flags & SHF_COMPRESSED) != 0)
16073 {
16074 Elf_Internal_Chdr chdr;
16075 unsigned int compression_header_size
16076 = get_compression_header (& chdr, start, section_size);
16077
16078 if (compression_header_size == 0)
16079 /* An error message will have already been generated
16080 by get_compression_header. */
16081 goto error_out;
16082
16083 if (chdr.ch_type == ch_compress_zlib)
16084 ;
16085 #ifdef HAVE_ZSTD
16086 else if (chdr.ch_type == ch_compress_zstd)
16087 is_zstd = true;
16088 #endif
16089 else
16090 {
16091 warn (_("section '%s' has unsupported compress type: %d\n"),
16092 printable_section_name (filedata, section), chdr.ch_type);
16093 goto error_out;
16094 }
16095 uncompressed_size = chdr.ch_size;
16096 start += compression_header_size;
16097 new_size -= compression_header_size;
16098 }
16099 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
16100 {
16101 /* Read the zlib header. In this case, it should be "ZLIB"
16102 followed by the uncompressed section size, 8 bytes in
16103 big-endian order. */
16104 uncompressed_size = start[4]; uncompressed_size <<= 8;
16105 uncompressed_size += start[5]; uncompressed_size <<= 8;
16106 uncompressed_size += start[6]; uncompressed_size <<= 8;
16107 uncompressed_size += start[7]; uncompressed_size <<= 8;
16108 uncompressed_size += start[8]; uncompressed_size <<= 8;
16109 uncompressed_size += start[9]; uncompressed_size <<= 8;
16110 uncompressed_size += start[10]; uncompressed_size <<= 8;
16111 uncompressed_size += start[11];
16112 start += 12;
16113 new_size -= 12;
16114 }
16115
16116 if (uncompressed_size)
16117 {
16118 if (uncompress_section_contents (is_zstd, &start, uncompressed_size,
16119 &new_size, filedata->file_size))
16120 {
16121 section_size = new_size;
16122 }
16123 else
16124 {
16125 error (_("Unable to decompress section %s\n"),
16126 printable_section_name (filedata, section));
16127 /* FIXME: Print the section anyway ? */
16128 goto error_out;
16129 }
16130 }
16131 else
16132 start = real_start;
16133 }
16134
16135 if (relocate)
16136 {
16137 if (! apply_relocations (filedata, section, start, section_size, NULL, NULL))
16138 goto error_out;
16139 }
16140 else
16141 {
16142 /* If the section being dumped has relocations against it the user might
16143 be expecting these relocations to have been applied. Check for this
16144 case and issue a warning message in order to avoid confusion.
16145 FIXME: Maybe we ought to have an option that dumps a section with
16146 relocs applied ? */
16147 for (relsec = filedata->section_headers;
16148 relsec < filedata->section_headers + filedata->file_header.e_shnum;
16149 ++relsec)
16150 {
16151 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
16152 || relsec->sh_info >= filedata->file_header.e_shnum
16153 || filedata->section_headers + relsec->sh_info != section
16154 || relsec->sh_size == 0
16155 || relsec->sh_link >= filedata->file_header.e_shnum)
16156 continue;
16157
16158 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
16159 break;
16160 }
16161 }
16162
16163 addr = section->sh_addr;
16164 bytes = section_size;
16165 data = start;
16166
16167 while (bytes)
16168 {
16169 int j;
16170 int k;
16171 int lbytes;
16172
16173 lbytes = (bytes > 16 ? 16 : bytes);
16174
16175 printf (" 0x%8.8" PRIx64 " ", addr);
16176
16177 for (j = 0; j < 16; j++)
16178 {
16179 if (j < lbytes)
16180 printf ("%2.2x", data[j]);
16181 else
16182 printf (" ");
16183
16184 if ((j & 3) == 3)
16185 printf (" ");
16186 }
16187
16188 for (j = 0; j < lbytes; j++)
16189 {
16190 k = data[j];
16191 if (k >= ' ' && k < 0x7f)
16192 printf ("%c", k);
16193 else
16194 printf (".");
16195 }
16196
16197 putchar ('\n');
16198
16199 data += lbytes;
16200 addr += lbytes;
16201 bytes -= lbytes;
16202 }
16203
16204 free (real_start);
16205
16206 putchar ('\n');
16207 return true;
16208
16209 error_out:
16210 free (real_start);
16211 return false;
16212 }
16213
16214 #ifdef ENABLE_LIBCTF
16215 static ctf_sect_t *
16216 shdr_to_ctf_sect (ctf_sect_t *buf, Elf_Internal_Shdr *shdr, Filedata *filedata)
16217 {
16218 buf->cts_name = section_name_print (filedata, shdr);
16219 buf->cts_size = shdr->sh_size;
16220 buf->cts_entsize = shdr->sh_entsize;
16221
16222 return buf;
16223 }
16224
16225 /* Formatting callback function passed to ctf_dump. Returns either the pointer
16226 it is passed, or a pointer to newly-allocated storage, in which case
16227 dump_ctf() will free it when it no longer needs it. */
16228
16229 static char *
16230 dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED,
16231 char *s, void *arg)
16232 {
16233 const char *blanks = arg;
16234 char *new_s;
16235
16236 if (asprintf (&new_s, "%s%s", blanks, s) < 0)
16237 return s;
16238 return new_s;
16239 }
16240
16241 /* Dump CTF errors/warnings. */
16242 static void
16243 dump_ctf_errs (ctf_dict_t *fp)
16244 {
16245 ctf_next_t *it = NULL;
16246 char *errtext;
16247 int is_warning;
16248 int err;
16249
16250 /* Dump accumulated errors and warnings. */
16251 while ((errtext = ctf_errwarning_next (fp, &it, &is_warning, &err)) != NULL)
16252 {
16253 error (_("%s: %s"), is_warning ? _("warning"): _("error"),
16254 errtext);
16255 free (errtext);
16256 }
16257 if (err != ECTF_NEXT_END)
16258 error (_("CTF error: cannot get CTF errors: `%s'"), ctf_errmsg (err));
16259 }
16260
16261 /* Dump one CTF archive member. */
16262
16263 static void
16264 dump_ctf_archive_member (ctf_dict_t *ctf, const char *name, ctf_dict_t *parent,
16265 size_t member)
16266 {
16267 const char *things[] = {"Header", "Labels", "Data objects",
16268 "Function objects", "Variables", "Types", "Strings",
16269 ""};
16270 const char **thing;
16271 size_t i;
16272
16273 /* Don't print out the name of the default-named archive member if it appears
16274 first in the list. The name .ctf appears everywhere, even for things that
16275 aren't really archives, so printing it out is liable to be confusing; also,
16276 the common case by far is for only one archive member to exist, and hiding
16277 it in that case seems worthwhile. */
16278
16279 if (strcmp (name, ".ctf") != 0 || member != 0)
16280 printf (_("\nCTF archive member: %s:\n"), name);
16281
16282 if (ctf_parent_name (ctf) != NULL)
16283 ctf_import (ctf, parent);
16284
16285 for (i = 0, thing = things; *thing[0]; thing++, i++)
16286 {
16287 ctf_dump_state_t *s = NULL;
16288 char *item;
16289
16290 printf ("\n %s:\n", *thing);
16291 while ((item = ctf_dump (ctf, &s, i, dump_ctf_indent_lines,
16292 (void *) " ")) != NULL)
16293 {
16294 printf ("%s\n", item);
16295 free (item);
16296 }
16297
16298 if (ctf_errno (ctf))
16299 {
16300 error (_("Iteration failed: %s, %s\n"), *thing,
16301 ctf_errmsg (ctf_errno (ctf)));
16302 break;
16303 }
16304 }
16305
16306 dump_ctf_errs (ctf);
16307 }
16308
16309 static bool
16310 dump_section_as_ctf (Elf_Internal_Shdr * section, Filedata * filedata)
16311 {
16312 Elf_Internal_Shdr * symtab_sec = NULL;
16313 Elf_Internal_Shdr * strtab_sec = NULL;
16314 void * data = NULL;
16315 void * symdata = NULL;
16316 void * strdata = NULL;
16317 ctf_sect_t ctfsect, symsect, strsect;
16318 ctf_sect_t * symsectp = NULL;
16319 ctf_sect_t * strsectp = NULL;
16320 ctf_archive_t * ctfa = NULL;
16321 ctf_dict_t * parent = NULL;
16322 ctf_dict_t * fp;
16323
16324 ctf_next_t *i = NULL;
16325 const char *name;
16326 size_t member = 0;
16327 int err;
16328 bool ret = false;
16329
16330 shdr_to_ctf_sect (&ctfsect, section, filedata);
16331 data = get_section_contents (section, filedata);
16332 ctfsect.cts_data = data;
16333
16334 if (!dump_ctf_symtab_name)
16335 dump_ctf_symtab_name = strdup (".dynsym");
16336
16337 if (!dump_ctf_strtab_name)
16338 dump_ctf_strtab_name = strdup (".dynstr");
16339
16340 if (dump_ctf_symtab_name && dump_ctf_symtab_name[0] != 0)
16341 {
16342 if ((symtab_sec = find_section (filedata, dump_ctf_symtab_name)) == NULL)
16343 {
16344 error (_("No symbol section named %s\n"), dump_ctf_symtab_name);
16345 goto fail;
16346 }
16347 if ((symdata = (void *) get_data (NULL, filedata,
16348 symtab_sec->sh_offset, 1,
16349 symtab_sec->sh_size,
16350 _("symbols"))) == NULL)
16351 goto fail;
16352 symsectp = shdr_to_ctf_sect (&symsect, symtab_sec, filedata);
16353 symsect.cts_data = symdata;
16354 }
16355
16356 if (dump_ctf_strtab_name && dump_ctf_strtab_name[0] != 0)
16357 {
16358 if ((strtab_sec = find_section (filedata, dump_ctf_strtab_name)) == NULL)
16359 {
16360 error (_("No string table section named %s\n"),
16361 dump_ctf_strtab_name);
16362 goto fail;
16363 }
16364 if ((strdata = (void *) get_data (NULL, filedata,
16365 strtab_sec->sh_offset, 1,
16366 strtab_sec->sh_size,
16367 _("strings"))) == NULL)
16368 goto fail;
16369 strsectp = shdr_to_ctf_sect (&strsect, strtab_sec, filedata);
16370 strsect.cts_data = strdata;
16371 }
16372
16373 /* Load the CTF file and dump it. It may be a raw CTF section, or an archive:
16374 libctf papers over the difference, so we can pretend it is always an
16375 archive. */
16376
16377 if ((ctfa = ctf_arc_bufopen (&ctfsect, symsectp, strsectp, &err)) == NULL)
16378 {
16379 dump_ctf_errs (NULL);
16380 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
16381 goto fail;
16382 }
16383
16384 ctf_arc_symsect_endianness (ctfa, filedata->file_header.e_ident[EI_DATA]
16385 != ELFDATA2MSB);
16386
16387 /* Preload the parent dict, since it will need to be imported into every
16388 child in turn. */
16389 if ((parent = ctf_dict_open (ctfa, dump_ctf_parent_name, &err)) == NULL)
16390 {
16391 dump_ctf_errs (NULL);
16392 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
16393 goto fail;
16394 }
16395
16396 ret = true;
16397
16398 if (filedata->is_separate)
16399 printf (_("\nDump of CTF section '%s' in linked file %s:\n"),
16400 printable_section_name (filedata, section),
16401 filedata->file_name);
16402 else
16403 printf (_("\nDump of CTF section '%s':\n"),
16404 printable_section_name (filedata, section));
16405
16406 while ((fp = ctf_archive_next (ctfa, &i, &name, 0, &err)) != NULL)
16407 dump_ctf_archive_member (fp, name, parent, member++);
16408 if (err != ECTF_NEXT_END)
16409 {
16410 dump_ctf_errs (NULL);
16411 error (_("CTF member open failure: %s\n"), ctf_errmsg (err));
16412 ret = false;
16413 }
16414
16415 fail:
16416 ctf_dict_close (parent);
16417 ctf_close (ctfa);
16418 free (data);
16419 free (symdata);
16420 free (strdata);
16421 return ret;
16422 }
16423 #endif
16424
16425 static bool
16426 dump_section_as_sframe (Elf_Internal_Shdr * section, Filedata * filedata)
16427 {
16428 void * data = NULL;
16429 sframe_decoder_ctx *sfd_ctx = NULL;
16430 const char *print_name = printable_section_name (filedata, section);
16431
16432 bool ret = true;
16433 size_t sf_size;
16434 int err = 0;
16435
16436 if (strcmp (print_name, "") == 0)
16437 {
16438 error (_("Section name must be provided \n"));
16439 ret = false;
16440 return ret;
16441 }
16442
16443 data = get_section_contents (section, filedata);
16444 sf_size = section->sh_size;
16445 /* Decode the contents of the section. */
16446 sfd_ctx = sframe_decode ((const char*)data, sf_size, &err);
16447 if (!sfd_ctx)
16448 {
16449 ret = false;
16450 error (_("SFrame decode failure: %s\n"), sframe_errmsg (err));
16451 goto fail;
16452 }
16453
16454 printf (_("Contents of the SFrame section %s:"), print_name);
16455 /* Dump the contents as text. */
16456 dump_sframe (sfd_ctx, section->sh_addr);
16457
16458 fail:
16459 free (data);
16460 return ret;
16461 }
16462
16463 static bool
16464 load_specific_debug_section (enum dwarf_section_display_enum debug,
16465 const Elf_Internal_Shdr * sec,
16466 void * data)
16467 {
16468 struct dwarf_section * section = &debug_displays [debug].section;
16469 char buf [64];
16470 Filedata * filedata = (Filedata *) data;
16471
16472 if (section->start != NULL)
16473 {
16474 /* If it is already loaded, do nothing. */
16475 if (streq (section->filename, filedata->file_name))
16476 return true;
16477 free (section->start);
16478 }
16479
16480 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
16481 section->address = sec->sh_addr;
16482 section->filename = filedata->file_name;
16483 section->start = (unsigned char *) get_data (NULL, filedata,
16484 sec->sh_offset, 1,
16485 sec->sh_size, buf);
16486 if (section->start == NULL)
16487 section->size = 0;
16488 else
16489 {
16490 unsigned char *start = section->start;
16491 uint64_t size = sec->sh_size;
16492 uint64_t uncompressed_size = 0;
16493 bool is_zstd = false;
16494
16495 if ((sec->sh_flags & SHF_COMPRESSED) != 0)
16496 {
16497 Elf_Internal_Chdr chdr;
16498 unsigned int compression_header_size;
16499
16500 if (size < (is_32bit_elf
16501 ? sizeof (Elf32_External_Chdr)
16502 : sizeof (Elf64_External_Chdr)))
16503 {
16504 warn (_("compressed section %s is too small to contain a compression header\n"),
16505 section->name);
16506 return false;
16507 }
16508
16509 compression_header_size = get_compression_header (&chdr, start, size);
16510 if (compression_header_size == 0)
16511 /* An error message will have already been generated
16512 by get_compression_header. */
16513 return false;
16514
16515 if (chdr.ch_type == ch_compress_zlib)
16516 ;
16517 #ifdef HAVE_ZSTD
16518 else if (chdr.ch_type == ch_compress_zstd)
16519 is_zstd = true;
16520 #endif
16521 else
16522 {
16523 warn (_("section '%s' has unsupported compress type: %d\n"),
16524 section->name, chdr.ch_type);
16525 return false;
16526 }
16527 uncompressed_size = chdr.ch_size;
16528 start += compression_header_size;
16529 size -= compression_header_size;
16530 }
16531 else if (size > 12 && streq ((char *) start, "ZLIB"))
16532 {
16533 /* Read the zlib header. In this case, it should be "ZLIB"
16534 followed by the uncompressed section size, 8 bytes in
16535 big-endian order. */
16536 uncompressed_size = start[4]; uncompressed_size <<= 8;
16537 uncompressed_size += start[5]; uncompressed_size <<= 8;
16538 uncompressed_size += start[6]; uncompressed_size <<= 8;
16539 uncompressed_size += start[7]; uncompressed_size <<= 8;
16540 uncompressed_size += start[8]; uncompressed_size <<= 8;
16541 uncompressed_size += start[9]; uncompressed_size <<= 8;
16542 uncompressed_size += start[10]; uncompressed_size <<= 8;
16543 uncompressed_size += start[11];
16544 start += 12;
16545 size -= 12;
16546 }
16547
16548 if (uncompressed_size)
16549 {
16550 if (uncompress_section_contents (is_zstd, &start, uncompressed_size,
16551 &size, filedata->file_size))
16552 {
16553 /* Free the compressed buffer, update the section buffer
16554 and the section size if uncompress is successful. */
16555 free (section->start);
16556 section->start = start;
16557 }
16558 else
16559 {
16560 error (_("Unable to decompress section %s\n"),
16561 printable_section_name (filedata, sec));
16562 return false;
16563 }
16564 }
16565
16566 section->size = size;
16567 }
16568
16569 if (section->start == NULL)
16570 return false;
16571
16572 if (debug_displays [debug].relocate)
16573 {
16574 if (! apply_relocations (filedata, sec, section->start, section->size,
16575 & section->reloc_info, & section->num_relocs))
16576 return false;
16577 }
16578 else
16579 {
16580 section->reloc_info = NULL;
16581 section->num_relocs = 0;
16582 }
16583
16584 return true;
16585 }
16586
16587 #if HAVE_LIBDEBUGINFOD
16588 /* Return a hex string representation of the build-id. */
16589 unsigned char *
16590 get_build_id (void * data)
16591 {
16592 Filedata * filedata = (Filedata *) data;
16593 Elf_Internal_Shdr * shdr;
16594 size_t i;
16595
16596 /* Iterate through notes to find note.gnu.build-id.
16597 FIXME: Only the first note in any note section is examined. */
16598 for (i = 0, shdr = filedata->section_headers;
16599 i < filedata->file_header.e_shnum && shdr != NULL;
16600 i++, shdr++)
16601 {
16602 if (shdr->sh_type != SHT_NOTE)
16603 continue;
16604
16605 char * next;
16606 char * end;
16607 size_t data_remaining;
16608 size_t min_notesz;
16609 Elf_External_Note * enote;
16610 Elf_Internal_Note inote;
16611
16612 uint64_t offset = shdr->sh_offset;
16613 uint64_t align = shdr->sh_addralign;
16614 uint64_t length = shdr->sh_size;
16615
16616 enote = (Elf_External_Note *) get_section_contents (shdr, filedata);
16617 if (enote == NULL)
16618 continue;
16619
16620 if (align < 4)
16621 align = 4;
16622 else if (align != 4 && align != 8)
16623 {
16624 free (enote);
16625 continue;
16626 }
16627
16628 end = (char *) enote + length;
16629 data_remaining = end - (char *) enote;
16630
16631 if (!is_ia64_vms (filedata))
16632 {
16633 min_notesz = offsetof (Elf_External_Note, name);
16634 if (data_remaining < min_notesz)
16635 {
16636 warn (_("\
16637 malformed note encountered in section %s whilst scanning for build-id note\n"),
16638 printable_section_name (filedata, shdr));
16639 free (enote);
16640 continue;
16641 }
16642 data_remaining -= min_notesz;
16643
16644 inote.type = BYTE_GET (enote->type);
16645 inote.namesz = BYTE_GET (enote->namesz);
16646 inote.namedata = enote->name;
16647 inote.descsz = BYTE_GET (enote->descsz);
16648 inote.descdata = ((char *) enote
16649 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
16650 inote.descpos = offset + (inote.descdata - (char *) enote);
16651 next = ((char *) enote
16652 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
16653 }
16654 else
16655 {
16656 Elf64_External_VMS_Note *vms_enote;
16657
16658 /* PR binutils/15191
16659 Make sure that there is enough data to read. */
16660 min_notesz = offsetof (Elf64_External_VMS_Note, name);
16661 if (data_remaining < min_notesz)
16662 {
16663 warn (_("\
16664 malformed note encountered in section %s whilst scanning for build-id note\n"),
16665 printable_section_name (filedata, shdr));
16666 free (enote);
16667 continue;
16668 }
16669 data_remaining -= min_notesz;
16670
16671 vms_enote = (Elf64_External_VMS_Note *) enote;
16672 inote.type = BYTE_GET (vms_enote->type);
16673 inote.namesz = BYTE_GET (vms_enote->namesz);
16674 inote.namedata = vms_enote->name;
16675 inote.descsz = BYTE_GET (vms_enote->descsz);
16676 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
16677 inote.descpos = offset + (inote.descdata - (char *) enote);
16678 next = inote.descdata + align_power (inote.descsz, 3);
16679 }
16680
16681 /* Skip malformed notes. */
16682 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
16683 || (size_t) (inote.descdata - inote.namedata) > data_remaining
16684 || (size_t) (next - inote.descdata) < inote.descsz
16685 || ((size_t) (next - inote.descdata)
16686 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
16687 {
16688 warn (_("\
16689 malformed note encountered in section %s whilst scanning for build-id note\n"),
16690 printable_section_name (filedata, shdr));
16691 free (enote);
16692 continue;
16693 }
16694
16695 /* Check if this is the build-id note. If so then convert the build-id
16696 bytes to a hex string. */
16697 if (inote.namesz > 0
16698 && startswith (inote.namedata, "GNU")
16699 && inote.type == NT_GNU_BUILD_ID)
16700 {
16701 size_t j;
16702 char * build_id;
16703
16704 build_id = malloc (inote.descsz * 2 + 1);
16705 if (build_id == NULL)
16706 {
16707 free (enote);
16708 return NULL;
16709 }
16710
16711 for (j = 0; j < inote.descsz; ++j)
16712 sprintf (build_id + (j * 2), "%02x", inote.descdata[j] & 0xff);
16713 build_id[inote.descsz * 2] = '\0';
16714 free (enote);
16715
16716 return (unsigned char *) build_id;
16717 }
16718 free (enote);
16719 }
16720
16721 return NULL;
16722 }
16723 #endif /* HAVE_LIBDEBUGINFOD */
16724
16725 /* If this is not NULL, load_debug_section will only look for sections
16726 within the list of sections given here. */
16727 static unsigned int * section_subset = NULL;
16728
16729 bool
16730 load_debug_section (enum dwarf_section_display_enum debug, void * data)
16731 {
16732 struct dwarf_section * section = &debug_displays [debug].section;
16733 Elf_Internal_Shdr * sec;
16734 Filedata * filedata = (Filedata *) data;
16735
16736 if (!dump_any_debugging)
16737 return false;
16738
16739 /* Without section headers we cannot find any sections. */
16740 if (filedata->section_headers == NULL)
16741 return false;
16742
16743 if (filedata->string_table == NULL
16744 && filedata->file_header.e_shstrndx != SHN_UNDEF
16745 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
16746 {
16747 Elf_Internal_Shdr * strs;
16748
16749 /* Read in the string table, so that we have section names to scan. */
16750 strs = filedata->section_headers + filedata->file_header.e_shstrndx;
16751
16752 if (strs != NULL && strs->sh_size != 0)
16753 {
16754 filedata->string_table
16755 = (char *) get_data (NULL, filedata, strs->sh_offset,
16756 1, strs->sh_size, _("string table"));
16757
16758 filedata->string_table_length
16759 = filedata->string_table != NULL ? strs->sh_size : 0;
16760 }
16761 }
16762
16763 /* Locate the debug section. */
16764 sec = find_section_in_set (filedata, section->uncompressed_name, section_subset);
16765 if (sec != NULL)
16766 section->name = section->uncompressed_name;
16767 else
16768 {
16769 sec = find_section_in_set (filedata, section->compressed_name, section_subset);
16770 if (sec != NULL)
16771 section->name = section->compressed_name;
16772 }
16773 if (sec == NULL)
16774 return false;
16775
16776 /* If we're loading from a subset of sections, and we've loaded
16777 a section matching this name before, it's likely that it's a
16778 different one. */
16779 if (section_subset != NULL)
16780 free_debug_section (debug);
16781
16782 return load_specific_debug_section (debug, sec, data);
16783 }
16784
16785 void
16786 free_debug_section (enum dwarf_section_display_enum debug)
16787 {
16788 struct dwarf_section * section = &debug_displays [debug].section;
16789
16790 if (section->start == NULL)
16791 return;
16792
16793 free ((char *) section->start);
16794 section->start = NULL;
16795 section->address = 0;
16796 section->size = 0;
16797
16798 free (section->reloc_info);
16799 section->reloc_info = NULL;
16800 section->num_relocs = 0;
16801 }
16802
16803 static bool
16804 display_debug_section (int shndx, Elf_Internal_Shdr * section, Filedata * filedata)
16805 {
16806 const char *name = (section_name_valid (filedata, section)
16807 ? section_name (filedata, section) : "");
16808 const char *print_name = printable_section_name (filedata, section);
16809 uint64_t length;
16810 bool result = true;
16811 int i;
16812
16813 length = section->sh_size;
16814 if (length == 0)
16815 {
16816 printf (_("\nSection '%s' has no debugging data.\n"), print_name);
16817 return true;
16818 }
16819 if (section->sh_type == SHT_NOBITS)
16820 {
16821 /* There is no point in dumping the contents of a debugging section
16822 which has the NOBITS type - the bits in the file will be random.
16823 This can happen when a file containing a .eh_frame section is
16824 stripped with the --only-keep-debug command line option. */
16825 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
16826 print_name);
16827 return false;
16828 }
16829
16830 if (startswith (name, ".gnu.linkonce.wi."))
16831 name = ".debug_info";
16832
16833 /* See if we know how to display the contents of this section. */
16834 for (i = 0; i < max; i++)
16835 {
16836 enum dwarf_section_display_enum id = (enum dwarf_section_display_enum) i;
16837 struct dwarf_section_display * display = debug_displays + i;
16838 struct dwarf_section * sec = & display->section;
16839
16840 if (streq (sec->uncompressed_name, name)
16841 || (id == line && startswith (name, ".debug_line."))
16842 || streq (sec->compressed_name, name))
16843 {
16844 bool secondary = (section != find_section (filedata, name));
16845
16846 if (secondary)
16847 free_debug_section (id);
16848
16849 if (i == line && startswith (name, ".debug_line."))
16850 sec->name = name;
16851 else if (streq (sec->uncompressed_name, name))
16852 sec->name = sec->uncompressed_name;
16853 else
16854 sec->name = sec->compressed_name;
16855
16856 if (load_specific_debug_section (id, section, filedata))
16857 {
16858 /* If this debug section is part of a CU/TU set in a .dwp file,
16859 restrict load_debug_section to the sections in that set. */
16860 section_subset = find_cu_tu_set (filedata, shndx);
16861
16862 result &= display->display (sec, filedata);
16863
16864 section_subset = NULL;
16865
16866 if (secondary || (id != info && id != abbrev && id != debug_addr))
16867 free_debug_section (id);
16868 }
16869 break;
16870 }
16871 }
16872
16873 if (i == max)
16874 {
16875 printf (_("Unrecognized debug section: %s\n"), print_name);
16876 result = false;
16877 }
16878
16879 return result;
16880 }
16881
16882 /* Set DUMP_SECTS for all sections where dumps were requested
16883 based on section name. */
16884
16885 static void
16886 initialise_dumps_byname (Filedata * filedata)
16887 {
16888 struct dump_list_entry * cur;
16889
16890 for (cur = dump_sects_byname; cur; cur = cur->next)
16891 {
16892 unsigned int i;
16893 bool any = false;
16894
16895 for (i = 0; i < filedata->file_header.e_shnum; i++)
16896 if (section_name_valid (filedata, filedata->section_headers + i)
16897 && streq (section_name (filedata, filedata->section_headers + i),
16898 cur->name))
16899 {
16900 request_dump_bynumber (&filedata->dump, i, cur->type);
16901 any = true;
16902 }
16903
16904 if (!any && !filedata->is_separate)
16905 warn (_("Section '%s' was not dumped because it does not exist\n"),
16906 cur->name);
16907 }
16908 }
16909
16910 static bool
16911 process_section_contents (Filedata * filedata)
16912 {
16913 Elf_Internal_Shdr * section;
16914 unsigned int i;
16915 bool res = true;
16916
16917 if (! do_dump)
16918 return true;
16919
16920 initialise_dumps_byname (filedata);
16921
16922 for (i = 0, section = filedata->section_headers;
16923 i < filedata->file_header.e_shnum && i < filedata->dump.num_dump_sects;
16924 i++, section++)
16925 {
16926 dump_type dump = filedata->dump.dump_sects[i];
16927
16928 if (filedata->is_separate && ! process_links)
16929 dump &= DEBUG_DUMP;
16930
16931 #ifdef SUPPORT_DISASSEMBLY
16932 if (dump & DISASS_DUMP)
16933 {
16934 if (! disassemble_section (section, filedata))
16935 res = false;
16936 }
16937 #endif
16938 if (dump & HEX_DUMP)
16939 {
16940 if (! dump_section_as_bytes (section, filedata, false))
16941 res = false;
16942 }
16943
16944 if (dump & RELOC_DUMP)
16945 {
16946 if (! dump_section_as_bytes (section, filedata, true))
16947 res = false;
16948 }
16949
16950 if (dump & STRING_DUMP)
16951 {
16952 if (! dump_section_as_strings (section, filedata))
16953 res = false;
16954 }
16955
16956 if (dump & DEBUG_DUMP)
16957 {
16958 if (! display_debug_section (i, section, filedata))
16959 res = false;
16960 }
16961
16962 #ifdef ENABLE_LIBCTF
16963 if (dump & CTF_DUMP)
16964 {
16965 if (! dump_section_as_ctf (section, filedata))
16966 res = false;
16967 }
16968 #endif
16969 if (dump & SFRAME_DUMP)
16970 {
16971 if (! dump_section_as_sframe (section, filedata))
16972 res = false;
16973 }
16974 }
16975
16976 if (! filedata->is_separate)
16977 {
16978 /* Check to see if the user requested a
16979 dump of a section that does not exist. */
16980 for (; i < filedata->dump.num_dump_sects; i++)
16981 if (filedata->dump.dump_sects[i])
16982 {
16983 warn (_("Section %d was not dumped because it does not exist!\n"), i);
16984 res = false;
16985 }
16986 }
16987
16988 return res;
16989 }
16990
16991 static void
16992 process_mips_fpe_exception (int mask)
16993 {
16994 if (mask)
16995 {
16996 bool first = true;
16997
16998 if (mask & OEX_FPU_INEX)
16999 fputs ("INEX", stdout), first = false;
17000 if (mask & OEX_FPU_UFLO)
17001 printf ("%sUFLO", first ? "" : "|"), first = false;
17002 if (mask & OEX_FPU_OFLO)
17003 printf ("%sOFLO", first ? "" : "|"), first = false;
17004 if (mask & OEX_FPU_DIV0)
17005 printf ("%sDIV0", first ? "" : "|"), first = false;
17006 if (mask & OEX_FPU_INVAL)
17007 printf ("%sINVAL", first ? "" : "|");
17008 }
17009 else
17010 fputs ("0", stdout);
17011 }
17012
17013 /* Display's the value of TAG at location P. If TAG is
17014 greater than 0 it is assumed to be an unknown tag, and
17015 a message is printed to this effect. Otherwise it is
17016 assumed that a message has already been printed.
17017
17018 If the bottom bit of TAG is set it assumed to have a
17019 string value, otherwise it is assumed to have an integer
17020 value.
17021
17022 Returns an updated P pointing to the first unread byte
17023 beyond the end of TAG's value.
17024
17025 Reads at or beyond END will not be made. */
17026
17027 static unsigned char *
17028 display_tag_value (signed int tag,
17029 unsigned char * p,
17030 const unsigned char * const end)
17031 {
17032 uint64_t val;
17033
17034 if (tag > 0)
17035 printf (" Tag_unknown_%d: ", tag);
17036
17037 if (p >= end)
17038 {
17039 warn (_("<corrupt tag>\n"));
17040 }
17041 else if (tag & 1)
17042 {
17043 /* PR 17531 file: 027-19978-0.004. */
17044 size_t maxlen = (end - p) - 1;
17045
17046 putchar ('"');
17047 if (maxlen > 0)
17048 {
17049 print_symbol ((int) maxlen, (const char *) p);
17050 p += strnlen ((char *) p, maxlen) + 1;
17051 }
17052 else
17053 {
17054 printf (_("<corrupt string tag>"));
17055 p = (unsigned char *) end;
17056 }
17057 printf ("\"\n");
17058 }
17059 else
17060 {
17061 READ_ULEB (val, p, end);
17062 printf ("%" PRId64 " (0x%" PRIx64 ")\n", val, val);
17063 }
17064
17065 assert (p <= end);
17066 return p;
17067 }
17068
17069 /* ARC ABI attributes section. */
17070
17071 static unsigned char *
17072 display_arc_attribute (unsigned char * p,
17073 const unsigned char * const end)
17074 {
17075 unsigned int tag;
17076 unsigned int val;
17077
17078 READ_ULEB (tag, p, end);
17079
17080 switch (tag)
17081 {
17082 case Tag_ARC_PCS_config:
17083 READ_ULEB (val, p, end);
17084 printf (" Tag_ARC_PCS_config: ");
17085 switch (val)
17086 {
17087 case 0:
17088 printf (_("Absent/Non standard\n"));
17089 break;
17090 case 1:
17091 printf (_("Bare metal/mwdt\n"));
17092 break;
17093 case 2:
17094 printf (_("Bare metal/newlib\n"));
17095 break;
17096 case 3:
17097 printf (_("Linux/uclibc\n"));
17098 break;
17099 case 4:
17100 printf (_("Linux/glibc\n"));
17101 break;
17102 default:
17103 printf (_("Unknown\n"));
17104 break;
17105 }
17106 break;
17107
17108 case Tag_ARC_CPU_base:
17109 READ_ULEB (val, p, end);
17110 printf (" Tag_ARC_CPU_base: ");
17111 switch (val)
17112 {
17113 default:
17114 case TAG_CPU_NONE:
17115 printf (_("Absent\n"));
17116 break;
17117 case TAG_CPU_ARC6xx:
17118 printf ("ARC6xx\n");
17119 break;
17120 case TAG_CPU_ARC7xx:
17121 printf ("ARC7xx\n");
17122 break;
17123 case TAG_CPU_ARCEM:
17124 printf ("ARCEM\n");
17125 break;
17126 case TAG_CPU_ARCHS:
17127 printf ("ARCHS\n");
17128 break;
17129 }
17130 break;
17131
17132 case Tag_ARC_CPU_variation:
17133 READ_ULEB (val, p, end);
17134 printf (" Tag_ARC_CPU_variation: ");
17135 switch (val)
17136 {
17137 default:
17138 if (val > 0 && val < 16)
17139 printf ("Core%d\n", val);
17140 else
17141 printf ("Unknown\n");
17142 break;
17143
17144 case 0:
17145 printf (_("Absent\n"));
17146 break;
17147 }
17148 break;
17149
17150 case Tag_ARC_CPU_name:
17151 printf (" Tag_ARC_CPU_name: ");
17152 p = display_tag_value (-1, p, end);
17153 break;
17154
17155 case Tag_ARC_ABI_rf16:
17156 READ_ULEB (val, p, end);
17157 printf (" Tag_ARC_ABI_rf16: %s\n", val ? _("yes") : _("no"));
17158 break;
17159
17160 case Tag_ARC_ABI_osver:
17161 READ_ULEB (val, p, end);
17162 printf (" Tag_ARC_ABI_osver: v%d\n", val);
17163 break;
17164
17165 case Tag_ARC_ABI_pic:
17166 case Tag_ARC_ABI_sda:
17167 READ_ULEB (val, p, end);
17168 printf (tag == Tag_ARC_ABI_sda ? " Tag_ARC_ABI_sda: "
17169 : " Tag_ARC_ABI_pic: ");
17170 switch (val)
17171 {
17172 case 0:
17173 printf (_("Absent\n"));
17174 break;
17175 case 1:
17176 printf ("MWDT\n");
17177 break;
17178 case 2:
17179 printf ("GNU\n");
17180 break;
17181 default:
17182 printf (_("Unknown\n"));
17183 break;
17184 }
17185 break;
17186
17187 case Tag_ARC_ABI_tls:
17188 READ_ULEB (val, p, end);
17189 printf (" Tag_ARC_ABI_tls: %s\n", val ? "r25": "none");
17190 break;
17191
17192 case Tag_ARC_ABI_enumsize:
17193 READ_ULEB (val, p, end);
17194 printf (" Tag_ARC_ABI_enumsize: %s\n", val ? _("default") :
17195 _("smallest"));
17196 break;
17197
17198 case Tag_ARC_ABI_exceptions:
17199 READ_ULEB (val, p, end);
17200 printf (" Tag_ARC_ABI_exceptions: %s\n", val ? _("OPTFP")
17201 : _("default"));
17202 break;
17203
17204 case Tag_ARC_ABI_double_size:
17205 READ_ULEB (val, p, end);
17206 printf (" Tag_ARC_ABI_double_size: %d\n", val);
17207 break;
17208
17209 case Tag_ARC_ISA_config:
17210 printf (" Tag_ARC_ISA_config: ");
17211 p = display_tag_value (-1, p, end);
17212 break;
17213
17214 case Tag_ARC_ISA_apex:
17215 printf (" Tag_ARC_ISA_apex: ");
17216 p = display_tag_value (-1, p, end);
17217 break;
17218
17219 case Tag_ARC_ISA_mpy_option:
17220 READ_ULEB (val, p, end);
17221 printf (" Tag_ARC_ISA_mpy_option: %d\n", val);
17222 break;
17223
17224 case Tag_ARC_ATR_version:
17225 READ_ULEB (val, p, end);
17226 printf (" Tag_ARC_ATR_version: %d\n", val);
17227 break;
17228
17229 default:
17230 return display_tag_value (tag & 1, p, end);
17231 }
17232
17233 return p;
17234 }
17235
17236 /* ARM EABI attributes section. */
17237 typedef struct
17238 {
17239 unsigned int tag;
17240 const char * name;
17241 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
17242 unsigned int type;
17243 const char *const *table;
17244 } arm_attr_public_tag;
17245
17246 static const char *const arm_attr_tag_CPU_arch[] =
17247 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
17248 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "v8-R", "v8-M.baseline",
17249 "v8-M.mainline", "v8.1-A", "v8.2-A", "v8.3-A",
17250 "v8.1-M.mainline", "v9"};
17251 static const char *const arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
17252 static const char *const arm_attr_tag_THUMB_ISA_use[] =
17253 {"No", "Thumb-1", "Thumb-2", "Yes"};
17254 static const char *const arm_attr_tag_FP_arch[] =
17255 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
17256 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
17257 static const char *const arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
17258 static const char *const arm_attr_tag_Advanced_SIMD_arch[] =
17259 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8",
17260 "NEON for ARMv8.1"};
17261 static const char *const arm_attr_tag_PCS_config[] =
17262 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
17263 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
17264 static const char *const arm_attr_tag_ABI_PCS_R9_use[] =
17265 {"V6", "SB", "TLS", "Unused"};
17266 static const char *const arm_attr_tag_ABI_PCS_RW_data[] =
17267 {"Absolute", "PC-relative", "SB-relative", "None"};
17268 static const char *const arm_attr_tag_ABI_PCS_RO_data[] =
17269 {"Absolute", "PC-relative", "None"};
17270 static const char *const arm_attr_tag_ABI_PCS_GOT_use[] =
17271 {"None", "direct", "GOT-indirect"};
17272 static const char *const arm_attr_tag_ABI_PCS_wchar_t[] =
17273 {"None", "??? 1", "2", "??? 3", "4"};
17274 static const char *const arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
17275 static const char *const arm_attr_tag_ABI_FP_denormal[] =
17276 {"Unused", "Needed", "Sign only"};
17277 static const char *const arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
17278 static const char *const arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
17279 static const char *const arm_attr_tag_ABI_FP_number_model[] =
17280 {"Unused", "Finite", "RTABI", "IEEE 754"};
17281 static const char *const arm_attr_tag_ABI_enum_size[] =
17282 {"Unused", "small", "int", "forced to int"};
17283 static const char *const arm_attr_tag_ABI_HardFP_use[] =
17284 {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"};
17285 static const char *const arm_attr_tag_ABI_VFP_args[] =
17286 {"AAPCS", "VFP registers", "custom", "compatible"};
17287 static const char *const arm_attr_tag_ABI_WMMX_args[] =
17288 {"AAPCS", "WMMX registers", "custom"};
17289 static const char *const arm_attr_tag_ABI_optimization_goals[] =
17290 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
17291 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
17292 static const char *const arm_attr_tag_ABI_FP_optimization_goals[] =
17293 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
17294 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
17295 static const char *const arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
17296 static const char *const arm_attr_tag_FP_HP_extension[] =
17297 {"Not Allowed", "Allowed"};
17298 static const char *const arm_attr_tag_ABI_FP_16bit_format[] =
17299 {"None", "IEEE 754", "Alternative Format"};
17300 static const char *const arm_attr_tag_DSP_extension[] =
17301 {"Follow architecture", "Allowed"};
17302 static const char *const arm_attr_tag_MPextension_use[] =
17303 {"Not Allowed", "Allowed"};
17304 static const char *const arm_attr_tag_DIV_use[] =
17305 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
17306 "Allowed in v7-A with integer division extension"};
17307 static const char *const arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
17308 static const char *const arm_attr_tag_Virtualization_use[] =
17309 {"Not Allowed", "TrustZone", "Virtualization Extensions",
17310 "TrustZone and Virtualization Extensions"};
17311 static const char *const arm_attr_tag_MPextension_use_legacy[] =
17312 {"Not Allowed", "Allowed"};
17313
17314 static const char *const arm_attr_tag_MVE_arch[] =
17315 {"No MVE", "MVE Integer only", "MVE Integer and FP"};
17316
17317 static const char * arm_attr_tag_PAC_extension[] =
17318 {"No PAC/AUT instructions",
17319 "PAC/AUT instructions permitted in the NOP space",
17320 "PAC/AUT instructions permitted in the NOP and in the non-NOP space"};
17321
17322 static const char * arm_attr_tag_BTI_extension[] =
17323 {"BTI instructions not permitted",
17324 "BTI instructions permitted in the NOP space",
17325 "BTI instructions permitted in the NOP and in the non-NOP space"};
17326
17327 static const char * arm_attr_tag_BTI_use[] =
17328 {"Compiled without branch target enforcement",
17329 "Compiled with branch target enforcement"};
17330
17331 static const char * arm_attr_tag_PACRET_use[] =
17332 {"Compiled without return address signing and authentication",
17333 "Compiled with return address signing and authentication"};
17334
17335 #define LOOKUP(id, name) \
17336 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
17337 static arm_attr_public_tag arm_attr_public_tags[] =
17338 {
17339 {4, "CPU_raw_name", 1, NULL},
17340 {5, "CPU_name", 1, NULL},
17341 LOOKUP(6, CPU_arch),
17342 {7, "CPU_arch_profile", 0, NULL},
17343 LOOKUP(8, ARM_ISA_use),
17344 LOOKUP(9, THUMB_ISA_use),
17345 LOOKUP(10, FP_arch),
17346 LOOKUP(11, WMMX_arch),
17347 LOOKUP(12, Advanced_SIMD_arch),
17348 LOOKUP(13, PCS_config),
17349 LOOKUP(14, ABI_PCS_R9_use),
17350 LOOKUP(15, ABI_PCS_RW_data),
17351 LOOKUP(16, ABI_PCS_RO_data),
17352 LOOKUP(17, ABI_PCS_GOT_use),
17353 LOOKUP(18, ABI_PCS_wchar_t),
17354 LOOKUP(19, ABI_FP_rounding),
17355 LOOKUP(20, ABI_FP_denormal),
17356 LOOKUP(21, ABI_FP_exceptions),
17357 LOOKUP(22, ABI_FP_user_exceptions),
17358 LOOKUP(23, ABI_FP_number_model),
17359 {24, "ABI_align_needed", 0, NULL},
17360 {25, "ABI_align_preserved", 0, NULL},
17361 LOOKUP(26, ABI_enum_size),
17362 LOOKUP(27, ABI_HardFP_use),
17363 LOOKUP(28, ABI_VFP_args),
17364 LOOKUP(29, ABI_WMMX_args),
17365 LOOKUP(30, ABI_optimization_goals),
17366 LOOKUP(31, ABI_FP_optimization_goals),
17367 {32, "compatibility", 0, NULL},
17368 LOOKUP(34, CPU_unaligned_access),
17369 LOOKUP(36, FP_HP_extension),
17370 LOOKUP(38, ABI_FP_16bit_format),
17371 LOOKUP(42, MPextension_use),
17372 LOOKUP(44, DIV_use),
17373 LOOKUP(46, DSP_extension),
17374 LOOKUP(48, MVE_arch),
17375 LOOKUP(50, PAC_extension),
17376 LOOKUP(52, BTI_extension),
17377 LOOKUP(74, BTI_use),
17378 LOOKUP(76, PACRET_use),
17379 {64, "nodefaults", 0, NULL},
17380 {65, "also_compatible_with", 0, NULL},
17381 LOOKUP(66, T2EE_use),
17382 {67, "conformance", 1, NULL},
17383 LOOKUP(68, Virtualization_use),
17384 LOOKUP(70, MPextension_use_legacy)
17385 };
17386 #undef LOOKUP
17387
17388 static unsigned char *
17389 display_arm_attribute (unsigned char * p,
17390 const unsigned char * const end)
17391 {
17392 unsigned int tag;
17393 unsigned int val;
17394 arm_attr_public_tag * attr;
17395 unsigned i;
17396 unsigned int type;
17397
17398 READ_ULEB (tag, p, end);
17399 attr = NULL;
17400 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
17401 {
17402 if (arm_attr_public_tags[i].tag == tag)
17403 {
17404 attr = &arm_attr_public_tags[i];
17405 break;
17406 }
17407 }
17408
17409 if (attr)
17410 {
17411 printf (" Tag_%s: ", attr->name);
17412 switch (attr->type)
17413 {
17414 case 0:
17415 switch (tag)
17416 {
17417 case 7: /* Tag_CPU_arch_profile. */
17418 READ_ULEB (val, p, end);
17419 switch (val)
17420 {
17421 case 0: printf (_("None\n")); break;
17422 case 'A': printf (_("Application\n")); break;
17423 case 'R': printf (_("Realtime\n")); break;
17424 case 'M': printf (_("Microcontroller\n")); break;
17425 case 'S': printf (_("Application or Realtime\n")); break;
17426 default: printf ("??? (%d)\n", val); break;
17427 }
17428 break;
17429
17430 case 24: /* Tag_align_needed. */
17431 READ_ULEB (val, p, end);
17432 switch (val)
17433 {
17434 case 0: printf (_("None\n")); break;
17435 case 1: printf (_("8-byte\n")); break;
17436 case 2: printf (_("4-byte\n")); break;
17437 case 3: printf ("??? 3\n"); break;
17438 default:
17439 if (val <= 12)
17440 printf (_("8-byte and up to %d-byte extended\n"),
17441 1 << val);
17442 else
17443 printf ("??? (%d)\n", val);
17444 break;
17445 }
17446 break;
17447
17448 case 25: /* Tag_align_preserved. */
17449 READ_ULEB (val, p, end);
17450 switch (val)
17451 {
17452 case 0: printf (_("None\n")); break;
17453 case 1: printf (_("8-byte, except leaf SP\n")); break;
17454 case 2: printf (_("8-byte\n")); break;
17455 case 3: printf ("??? 3\n"); break;
17456 default:
17457 if (val <= 12)
17458 printf (_("8-byte and up to %d-byte extended\n"),
17459 1 << val);
17460 else
17461 printf ("??? (%d)\n", val);
17462 break;
17463 }
17464 break;
17465
17466 case 32: /* Tag_compatibility. */
17467 {
17468 READ_ULEB (val, p, end);
17469 printf (_("flag = %d, vendor = "), val);
17470 if (p < end - 1)
17471 {
17472 size_t maxlen = (end - p) - 1;
17473
17474 print_symbol ((int) maxlen, (const char *) p);
17475 p += strnlen ((char *) p, maxlen) + 1;
17476 }
17477 else
17478 {
17479 printf (_("<corrupt>"));
17480 p = (unsigned char *) end;
17481 }
17482 putchar ('\n');
17483 }
17484 break;
17485
17486 case 64: /* Tag_nodefaults. */
17487 /* PR 17531: file: 001-505008-0.01. */
17488 if (p < end)
17489 p++;
17490 printf (_("True\n"));
17491 break;
17492
17493 case 65: /* Tag_also_compatible_with. */
17494 READ_ULEB (val, p, end);
17495 if (val == 6 /* Tag_CPU_arch. */)
17496 {
17497 READ_ULEB (val, p, end);
17498 if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
17499 printf ("??? (%d)\n", val);
17500 else
17501 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
17502 }
17503 else
17504 printf ("???\n");
17505 while (p < end && *(p++) != '\0' /* NUL terminator. */)
17506 ;
17507 break;
17508
17509 default:
17510 printf (_("<unknown: %d>\n"), tag);
17511 break;
17512 }
17513 return p;
17514
17515 case 1:
17516 return display_tag_value (-1, p, end);
17517 case 2:
17518 return display_tag_value (0, p, end);
17519
17520 default:
17521 assert (attr->type & 0x80);
17522 READ_ULEB (val, p, end);
17523 type = attr->type & 0x7f;
17524 if (val >= type)
17525 printf ("??? (%d)\n", val);
17526 else
17527 printf ("%s\n", attr->table[val]);
17528 return p;
17529 }
17530 }
17531
17532 return display_tag_value (tag, p, end);
17533 }
17534
17535 static unsigned char *
17536 display_gnu_attribute (unsigned char * p,
17537 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const),
17538 const unsigned char * const end)
17539 {
17540 unsigned int tag;
17541 unsigned int val;
17542
17543 READ_ULEB (tag, p, end);
17544
17545 /* Tag_compatibility is the only generic GNU attribute defined at
17546 present. */
17547 if (tag == 32)
17548 {
17549 READ_ULEB (val, p, end);
17550
17551 printf (_("flag = %d, vendor = "), val);
17552 if (p == end)
17553 {
17554 printf (_("<corrupt>\n"));
17555 warn (_("corrupt vendor attribute\n"));
17556 }
17557 else
17558 {
17559 if (p < end - 1)
17560 {
17561 size_t maxlen = (end - p) - 1;
17562
17563 print_symbol ((int) maxlen, (const char *) p);
17564 p += strnlen ((char *) p, maxlen) + 1;
17565 }
17566 else
17567 {
17568 printf (_("<corrupt>"));
17569 p = (unsigned char *) end;
17570 }
17571 putchar ('\n');
17572 }
17573 return p;
17574 }
17575
17576 if ((tag & 2) == 0 && display_proc_gnu_attribute)
17577 return display_proc_gnu_attribute (p, tag, end);
17578
17579 return display_tag_value (tag, p, end);
17580 }
17581
17582 static unsigned char *
17583 display_m68k_gnu_attribute (unsigned char * p,
17584 unsigned int tag,
17585 const unsigned char * const end)
17586 {
17587 unsigned int val;
17588
17589 if (tag == Tag_GNU_M68K_ABI_FP)
17590 {
17591 printf (" Tag_GNU_M68K_ABI_FP: ");
17592 if (p == end)
17593 {
17594 printf (_("<corrupt>\n"));
17595 return p;
17596 }
17597 READ_ULEB (val, p, end);
17598
17599 if (val > 3)
17600 printf ("(%#x), ", val);
17601
17602 switch (val & 3)
17603 {
17604 case 0:
17605 printf (_("unspecified hard/soft float\n"));
17606 break;
17607 case 1:
17608 printf (_("hard float\n"));
17609 break;
17610 case 2:
17611 printf (_("soft float\n"));
17612 break;
17613 }
17614 return p;
17615 }
17616
17617 return display_tag_value (tag & 1, p, end);
17618 }
17619
17620 static unsigned char *
17621 display_power_gnu_attribute (unsigned char * p,
17622 unsigned int tag,
17623 const unsigned char * const end)
17624 {
17625 unsigned int val;
17626
17627 if (tag == Tag_GNU_Power_ABI_FP)
17628 {
17629 printf (" Tag_GNU_Power_ABI_FP: ");
17630 if (p == end)
17631 {
17632 printf (_("<corrupt>\n"));
17633 return p;
17634 }
17635 READ_ULEB (val, p, end);
17636
17637 if (val > 15)
17638 printf ("(%#x), ", val);
17639
17640 switch (val & 3)
17641 {
17642 case 0:
17643 printf (_("unspecified hard/soft float, "));
17644 break;
17645 case 1:
17646 printf (_("hard float, "));
17647 break;
17648 case 2:
17649 printf (_("soft float, "));
17650 break;
17651 case 3:
17652 printf (_("single-precision hard float, "));
17653 break;
17654 }
17655
17656 switch (val & 0xC)
17657 {
17658 case 0:
17659 printf (_("unspecified long double\n"));
17660 break;
17661 case 4:
17662 printf (_("128-bit IBM long double\n"));
17663 break;
17664 case 8:
17665 printf (_("64-bit long double\n"));
17666 break;
17667 case 12:
17668 printf (_("128-bit IEEE long double\n"));
17669 break;
17670 }
17671 return p;
17672 }
17673
17674 if (tag == Tag_GNU_Power_ABI_Vector)
17675 {
17676 printf (" Tag_GNU_Power_ABI_Vector: ");
17677 if (p == end)
17678 {
17679 printf (_("<corrupt>\n"));
17680 return p;
17681 }
17682 READ_ULEB (val, p, end);
17683
17684 if (val > 3)
17685 printf ("(%#x), ", val);
17686
17687 switch (val & 3)
17688 {
17689 case 0:
17690 printf (_("unspecified\n"));
17691 break;
17692 case 1:
17693 printf (_("generic\n"));
17694 break;
17695 case 2:
17696 printf ("AltiVec\n");
17697 break;
17698 case 3:
17699 printf ("SPE\n");
17700 break;
17701 }
17702 return p;
17703 }
17704
17705 if (tag == Tag_GNU_Power_ABI_Struct_Return)
17706 {
17707 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
17708 if (p == end)
17709 {
17710 printf (_("<corrupt>\n"));
17711 return p;
17712 }
17713 READ_ULEB (val, p, end);
17714
17715 if (val > 2)
17716 printf ("(%#x), ", val);
17717
17718 switch (val & 3)
17719 {
17720 case 0:
17721 printf (_("unspecified\n"));
17722 break;
17723 case 1:
17724 printf ("r3/r4\n");
17725 break;
17726 case 2:
17727 printf (_("memory\n"));
17728 break;
17729 case 3:
17730 printf ("???\n");
17731 break;
17732 }
17733 return p;
17734 }
17735
17736 return display_tag_value (tag & 1, p, end);
17737 }
17738
17739 static unsigned char *
17740 display_s390_gnu_attribute (unsigned char * p,
17741 unsigned int tag,
17742 const unsigned char * const end)
17743 {
17744 unsigned int val;
17745
17746 if (tag == Tag_GNU_S390_ABI_Vector)
17747 {
17748 printf (" Tag_GNU_S390_ABI_Vector: ");
17749 READ_ULEB (val, p, end);
17750
17751 switch (val)
17752 {
17753 case 0:
17754 printf (_("any\n"));
17755 break;
17756 case 1:
17757 printf (_("software\n"));
17758 break;
17759 case 2:
17760 printf (_("hardware\n"));
17761 break;
17762 default:
17763 printf ("??? (%d)\n", val);
17764 break;
17765 }
17766 return p;
17767 }
17768
17769 return display_tag_value (tag & 1, p, end);
17770 }
17771
17772 static void
17773 display_sparc_hwcaps (unsigned int mask)
17774 {
17775 if (mask)
17776 {
17777 bool first = true;
17778
17779 if (mask & ELF_SPARC_HWCAP_MUL32)
17780 fputs ("mul32", stdout), first = false;
17781 if (mask & ELF_SPARC_HWCAP_DIV32)
17782 printf ("%sdiv32", first ? "" : "|"), first = false;
17783 if (mask & ELF_SPARC_HWCAP_FSMULD)
17784 printf ("%sfsmuld", first ? "" : "|"), first = false;
17785 if (mask & ELF_SPARC_HWCAP_V8PLUS)
17786 printf ("%sv8plus", first ? "" : "|"), first = false;
17787 if (mask & ELF_SPARC_HWCAP_POPC)
17788 printf ("%spopc", first ? "" : "|"), first = false;
17789 if (mask & ELF_SPARC_HWCAP_VIS)
17790 printf ("%svis", first ? "" : "|"), first = false;
17791 if (mask & ELF_SPARC_HWCAP_VIS2)
17792 printf ("%svis2", first ? "" : "|"), first = false;
17793 if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT)
17794 printf ("%sASIBlkInit", first ? "" : "|"), first = false;
17795 if (mask & ELF_SPARC_HWCAP_FMAF)
17796 printf ("%sfmaf", first ? "" : "|"), first = false;
17797 if (mask & ELF_SPARC_HWCAP_VIS3)
17798 printf ("%svis3", first ? "" : "|"), first = false;
17799 if (mask & ELF_SPARC_HWCAP_HPC)
17800 printf ("%shpc", first ? "" : "|"), first = false;
17801 if (mask & ELF_SPARC_HWCAP_RANDOM)
17802 printf ("%srandom", first ? "" : "|"), first = false;
17803 if (mask & ELF_SPARC_HWCAP_TRANS)
17804 printf ("%strans", first ? "" : "|"), first = false;
17805 if (mask & ELF_SPARC_HWCAP_FJFMAU)
17806 printf ("%sfjfmau", first ? "" : "|"), first = false;
17807 if (mask & ELF_SPARC_HWCAP_IMA)
17808 printf ("%sima", first ? "" : "|"), first = false;
17809 if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING)
17810 printf ("%scspare", first ? "" : "|"), first = false;
17811 }
17812 else
17813 fputc ('0', stdout);
17814 fputc ('\n', stdout);
17815 }
17816
17817 static void
17818 display_sparc_hwcaps2 (unsigned int mask)
17819 {
17820 if (mask)
17821 {
17822 bool first = true;
17823
17824 if (mask & ELF_SPARC_HWCAP2_FJATHPLUS)
17825 fputs ("fjathplus", stdout), first = false;
17826 if (mask & ELF_SPARC_HWCAP2_VIS3B)
17827 printf ("%svis3b", first ? "" : "|"), first = false;
17828 if (mask & ELF_SPARC_HWCAP2_ADP)
17829 printf ("%sadp", first ? "" : "|"), first = false;
17830 if (mask & ELF_SPARC_HWCAP2_SPARC5)
17831 printf ("%ssparc5", first ? "" : "|"), first = false;
17832 if (mask & ELF_SPARC_HWCAP2_MWAIT)
17833 printf ("%smwait", first ? "" : "|"), first = false;
17834 if (mask & ELF_SPARC_HWCAP2_XMPMUL)
17835 printf ("%sxmpmul", first ? "" : "|"), first = false;
17836 if (mask & ELF_SPARC_HWCAP2_XMONT)
17837 printf ("%sxmont2", first ? "" : "|"), first = false;
17838 if (mask & ELF_SPARC_HWCAP2_NSEC)
17839 printf ("%snsec", first ? "" : "|"), first = false;
17840 if (mask & ELF_SPARC_HWCAP2_FJATHHPC)
17841 printf ("%sfjathhpc", first ? "" : "|"), first = false;
17842 if (mask & ELF_SPARC_HWCAP2_FJDES)
17843 printf ("%sfjdes", first ? "" : "|"), first = false;
17844 if (mask & ELF_SPARC_HWCAP2_FJAES)
17845 printf ("%sfjaes", first ? "" : "|"), first = false;
17846 }
17847 else
17848 fputc ('0', stdout);
17849 fputc ('\n', stdout);
17850 }
17851
17852 static unsigned char *
17853 display_sparc_gnu_attribute (unsigned char * p,
17854 unsigned int tag,
17855 const unsigned char * const end)
17856 {
17857 unsigned int val;
17858
17859 if (tag == Tag_GNU_Sparc_HWCAPS)
17860 {
17861 READ_ULEB (val, p, end);
17862 printf (" Tag_GNU_Sparc_HWCAPS: ");
17863 display_sparc_hwcaps (val);
17864 return p;
17865 }
17866 if (tag == Tag_GNU_Sparc_HWCAPS2)
17867 {
17868 READ_ULEB (val, p, end);
17869 printf (" Tag_GNU_Sparc_HWCAPS2: ");
17870 display_sparc_hwcaps2 (val);
17871 return p;
17872 }
17873
17874 return display_tag_value (tag, p, end);
17875 }
17876
17877 static void
17878 print_mips_fp_abi_value (unsigned int val)
17879 {
17880 switch (val)
17881 {
17882 case Val_GNU_MIPS_ABI_FP_ANY:
17883 printf (_("Hard or soft float\n"));
17884 break;
17885 case Val_GNU_MIPS_ABI_FP_DOUBLE:
17886 printf (_("Hard float (double precision)\n"));
17887 break;
17888 case Val_GNU_MIPS_ABI_FP_SINGLE:
17889 printf (_("Hard float (single precision)\n"));
17890 break;
17891 case Val_GNU_MIPS_ABI_FP_SOFT:
17892 printf (_("Soft float\n"));
17893 break;
17894 case Val_GNU_MIPS_ABI_FP_OLD_64:
17895 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
17896 break;
17897 case Val_GNU_MIPS_ABI_FP_XX:
17898 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
17899 break;
17900 case Val_GNU_MIPS_ABI_FP_64:
17901 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
17902 break;
17903 case Val_GNU_MIPS_ABI_FP_64A:
17904 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
17905 break;
17906 case Val_GNU_MIPS_ABI_FP_NAN2008:
17907 printf (_("NaN 2008 compatibility\n"));
17908 break;
17909 default:
17910 printf ("??? (%d)\n", val);
17911 break;
17912 }
17913 }
17914
17915 static unsigned char *
17916 display_mips_gnu_attribute (unsigned char * p,
17917 unsigned int tag,
17918 const unsigned char * const end)
17919 {
17920 if (tag == Tag_GNU_MIPS_ABI_FP)
17921 {
17922 unsigned int val;
17923
17924 printf (" Tag_GNU_MIPS_ABI_FP: ");
17925 READ_ULEB (val, p, end);
17926 print_mips_fp_abi_value (val);
17927 return p;
17928 }
17929
17930 if (tag == Tag_GNU_MIPS_ABI_MSA)
17931 {
17932 unsigned int val;
17933
17934 printf (" Tag_GNU_MIPS_ABI_MSA: ");
17935 READ_ULEB (val, p, end);
17936
17937 switch (val)
17938 {
17939 case Val_GNU_MIPS_ABI_MSA_ANY:
17940 printf (_("Any MSA or not\n"));
17941 break;
17942 case Val_GNU_MIPS_ABI_MSA_128:
17943 printf (_("128-bit MSA\n"));
17944 break;
17945 default:
17946 printf ("??? (%d)\n", val);
17947 break;
17948 }
17949 return p;
17950 }
17951
17952 return display_tag_value (tag & 1, p, end);
17953 }
17954
17955 static unsigned char *
17956 display_tic6x_attribute (unsigned char * p,
17957 const unsigned char * const end)
17958 {
17959 unsigned int tag;
17960 unsigned int val;
17961
17962 READ_ULEB (tag, p, end);
17963
17964 switch (tag)
17965 {
17966 case Tag_ISA:
17967 printf (" Tag_ISA: ");
17968 READ_ULEB (val, p, end);
17969
17970 switch (val)
17971 {
17972 case C6XABI_Tag_ISA_none:
17973 printf (_("None\n"));
17974 break;
17975 case C6XABI_Tag_ISA_C62X:
17976 printf ("C62x\n");
17977 break;
17978 case C6XABI_Tag_ISA_C67X:
17979 printf ("C67x\n");
17980 break;
17981 case C6XABI_Tag_ISA_C67XP:
17982 printf ("C67x+\n");
17983 break;
17984 case C6XABI_Tag_ISA_C64X:
17985 printf ("C64x\n");
17986 break;
17987 case C6XABI_Tag_ISA_C64XP:
17988 printf ("C64x+\n");
17989 break;
17990 case C6XABI_Tag_ISA_C674X:
17991 printf ("C674x\n");
17992 break;
17993 default:
17994 printf ("??? (%d)\n", val);
17995 break;
17996 }
17997 return p;
17998
17999 case Tag_ABI_wchar_t:
18000 printf (" Tag_ABI_wchar_t: ");
18001 READ_ULEB (val, p, end);
18002 switch (val)
18003 {
18004 case 0:
18005 printf (_("Not used\n"));
18006 break;
18007 case 1:
18008 printf (_("2 bytes\n"));
18009 break;
18010 case 2:
18011 printf (_("4 bytes\n"));
18012 break;
18013 default:
18014 printf ("??? (%d)\n", val);
18015 break;
18016 }
18017 return p;
18018
18019 case Tag_ABI_stack_align_needed:
18020 printf (" Tag_ABI_stack_align_needed: ");
18021 READ_ULEB (val, p, end);
18022 switch (val)
18023 {
18024 case 0:
18025 printf (_("8-byte\n"));
18026 break;
18027 case 1:
18028 printf (_("16-byte\n"));
18029 break;
18030 default:
18031 printf ("??? (%d)\n", val);
18032 break;
18033 }
18034 return p;
18035
18036 case Tag_ABI_stack_align_preserved:
18037 READ_ULEB (val, p, end);
18038 printf (" Tag_ABI_stack_align_preserved: ");
18039 switch (val)
18040 {
18041 case 0:
18042 printf (_("8-byte\n"));
18043 break;
18044 case 1:
18045 printf (_("16-byte\n"));
18046 break;
18047 default:
18048 printf ("??? (%d)\n", val);
18049 break;
18050 }
18051 return p;
18052
18053 case Tag_ABI_DSBT:
18054 READ_ULEB (val, p, end);
18055 printf (" Tag_ABI_DSBT: ");
18056 switch (val)
18057 {
18058 case 0:
18059 printf (_("DSBT addressing not used\n"));
18060 break;
18061 case 1:
18062 printf (_("DSBT addressing used\n"));
18063 break;
18064 default:
18065 printf ("??? (%d)\n", val);
18066 break;
18067 }
18068 return p;
18069
18070 case Tag_ABI_PID:
18071 READ_ULEB (val, p, end);
18072 printf (" Tag_ABI_PID: ");
18073 switch (val)
18074 {
18075 case 0:
18076 printf (_("Data addressing position-dependent\n"));
18077 break;
18078 case 1:
18079 printf (_("Data addressing position-independent, GOT near DP\n"));
18080 break;
18081 case 2:
18082 printf (_("Data addressing position-independent, GOT far from DP\n"));
18083 break;
18084 default:
18085 printf ("??? (%d)\n", val);
18086 break;
18087 }
18088 return p;
18089
18090 case Tag_ABI_PIC:
18091 READ_ULEB (val, p, end);
18092 printf (" Tag_ABI_PIC: ");
18093 switch (val)
18094 {
18095 case 0:
18096 printf (_("Code addressing position-dependent\n"));
18097 break;
18098 case 1:
18099 printf (_("Code addressing position-independent\n"));
18100 break;
18101 default:
18102 printf ("??? (%d)\n", val);
18103 break;
18104 }
18105 return p;
18106
18107 case Tag_ABI_array_object_alignment:
18108 READ_ULEB (val, p, end);
18109 printf (" Tag_ABI_array_object_alignment: ");
18110 switch (val)
18111 {
18112 case 0:
18113 printf (_("8-byte\n"));
18114 break;
18115 case 1:
18116 printf (_("4-byte\n"));
18117 break;
18118 case 2:
18119 printf (_("16-byte\n"));
18120 break;
18121 default:
18122 printf ("??? (%d)\n", val);
18123 break;
18124 }
18125 return p;
18126
18127 case Tag_ABI_array_object_align_expected:
18128 READ_ULEB (val, p, end);
18129 printf (" Tag_ABI_array_object_align_expected: ");
18130 switch (val)
18131 {
18132 case 0:
18133 printf (_("8-byte\n"));
18134 break;
18135 case 1:
18136 printf (_("4-byte\n"));
18137 break;
18138 case 2:
18139 printf (_("16-byte\n"));
18140 break;
18141 default:
18142 printf ("??? (%d)\n", val);
18143 break;
18144 }
18145 return p;
18146
18147 case Tag_ABI_compatibility:
18148 {
18149 READ_ULEB (val, p, end);
18150 printf (" Tag_ABI_compatibility: ");
18151 printf (_("flag = %d, vendor = "), val);
18152 if (p < end - 1)
18153 {
18154 size_t maxlen = (end - p) - 1;
18155
18156 print_symbol ((int) maxlen, (const char *) p);
18157 p += strnlen ((char *) p, maxlen) + 1;
18158 }
18159 else
18160 {
18161 printf (_("<corrupt>"));
18162 p = (unsigned char *) end;
18163 }
18164 putchar ('\n');
18165 return p;
18166 }
18167
18168 case Tag_ABI_conformance:
18169 {
18170 printf (" Tag_ABI_conformance: \"");
18171 if (p < end - 1)
18172 {
18173 size_t maxlen = (end - p) - 1;
18174
18175 print_symbol ((int) maxlen, (const char *) p);
18176 p += strnlen ((char *) p, maxlen) + 1;
18177 }
18178 else
18179 {
18180 printf (_("<corrupt>"));
18181 p = (unsigned char *) end;
18182 }
18183 printf ("\"\n");
18184 return p;
18185 }
18186 }
18187
18188 return display_tag_value (tag, p, end);
18189 }
18190
18191 static void
18192 display_raw_attribute (unsigned char * p, unsigned char const * const end)
18193 {
18194 uint64_t addr = 0;
18195 size_t bytes = end - p;
18196
18197 assert (end >= p);
18198 while (bytes)
18199 {
18200 int j;
18201 int k;
18202 int lbytes = (bytes > 16 ? 16 : bytes);
18203
18204 printf (" 0x%8.8" PRIx64 " ", addr);
18205
18206 for (j = 0; j < 16; j++)
18207 {
18208 if (j < lbytes)
18209 printf ("%2.2x", p[j]);
18210 else
18211 printf (" ");
18212
18213 if ((j & 3) == 3)
18214 printf (" ");
18215 }
18216
18217 for (j = 0; j < lbytes; j++)
18218 {
18219 k = p[j];
18220 if (k >= ' ' && k < 0x7f)
18221 printf ("%c", k);
18222 else
18223 printf (".");
18224 }
18225
18226 putchar ('\n');
18227
18228 p += lbytes;
18229 bytes -= lbytes;
18230 addr += lbytes;
18231 }
18232
18233 putchar ('\n');
18234 }
18235
18236 static unsigned char *
18237 display_msp430_attribute (unsigned char * p,
18238 const unsigned char * const end)
18239 {
18240 uint64_t val;
18241 uint64_t tag;
18242
18243 READ_ULEB (tag, p, end);
18244
18245 switch (tag)
18246 {
18247 case OFBA_MSPABI_Tag_ISA:
18248 printf (" Tag_ISA: ");
18249 READ_ULEB (val, p, end);
18250 switch (val)
18251 {
18252 case 0: printf (_("None\n")); break;
18253 case 1: printf (_("MSP430\n")); break;
18254 case 2: printf (_("MSP430X\n")); break;
18255 default: printf ("??? (%" PRId64 ")\n", val); break;
18256 }
18257 break;
18258
18259 case OFBA_MSPABI_Tag_Code_Model:
18260 printf (" Tag_Code_Model: ");
18261 READ_ULEB (val, p, end);
18262 switch (val)
18263 {
18264 case 0: printf (_("None\n")); break;
18265 case 1: printf (_("Small\n")); break;
18266 case 2: printf (_("Large\n")); break;
18267 default: printf ("??? (%" PRId64 ")\n", val); break;
18268 }
18269 break;
18270
18271 case OFBA_MSPABI_Tag_Data_Model:
18272 printf (" Tag_Data_Model: ");
18273 READ_ULEB (val, p, end);
18274 switch (val)
18275 {
18276 case 0: printf (_("None\n")); break;
18277 case 1: printf (_("Small\n")); break;
18278 case 2: printf (_("Large\n")); break;
18279 case 3: printf (_("Restricted Large\n")); break;
18280 default: printf ("??? (%" PRId64 ")\n", val); break;
18281 }
18282 break;
18283
18284 default:
18285 printf (_(" <unknown tag %" PRId64 ">: "), tag);
18286
18287 if (tag & 1)
18288 {
18289 putchar ('"');
18290 if (p < end - 1)
18291 {
18292 size_t maxlen = (end - p) - 1;
18293
18294 print_symbol ((int) maxlen, (const char *) p);
18295 p += strnlen ((char *) p, maxlen) + 1;
18296 }
18297 else
18298 {
18299 printf (_("<corrupt>"));
18300 p = (unsigned char *) end;
18301 }
18302 printf ("\"\n");
18303 }
18304 else
18305 {
18306 READ_ULEB (val, p, end);
18307 printf ("%" PRId64 " (0x%" PRIx64 ")\n", val, val);
18308 }
18309 break;
18310 }
18311
18312 assert (p <= end);
18313 return p;
18314 }
18315
18316 static unsigned char *
18317 display_msp430_gnu_attribute (unsigned char * p,
18318 unsigned int tag,
18319 const unsigned char * const end)
18320 {
18321 if (tag == Tag_GNU_MSP430_Data_Region)
18322 {
18323 uint64_t val;
18324
18325 printf (" Tag_GNU_MSP430_Data_Region: ");
18326 READ_ULEB (val, p, end);
18327
18328 switch (val)
18329 {
18330 case Val_GNU_MSP430_Data_Region_Any:
18331 printf (_("Any Region\n"));
18332 break;
18333 case Val_GNU_MSP430_Data_Region_Lower:
18334 printf (_("Lower Region Only\n"));
18335 break;
18336 default:
18337 printf ("??? (%" PRIu64 ")\n", val);
18338 }
18339 return p;
18340 }
18341 return display_tag_value (tag & 1, p, end);
18342 }
18343
18344 struct riscv_attr_tag_t {
18345 const char *name;
18346 unsigned int tag;
18347 };
18348
18349 static struct riscv_attr_tag_t riscv_attr_tag[] =
18350 {
18351 #define T(tag) {"Tag_RISCV_" #tag, Tag_RISCV_##tag}
18352 T(arch),
18353 T(priv_spec),
18354 T(priv_spec_minor),
18355 T(priv_spec_revision),
18356 T(unaligned_access),
18357 T(stack_align),
18358 #undef T
18359 };
18360
18361 static unsigned char *
18362 display_riscv_attribute (unsigned char *p,
18363 const unsigned char * const end)
18364 {
18365 uint64_t val;
18366 uint64_t tag;
18367 struct riscv_attr_tag_t *attr = NULL;
18368 unsigned i;
18369
18370 READ_ULEB (tag, p, end);
18371
18372 /* Find the name of attribute. */
18373 for (i = 0; i < ARRAY_SIZE (riscv_attr_tag); i++)
18374 {
18375 if (riscv_attr_tag[i].tag == tag)
18376 {
18377 attr = &riscv_attr_tag[i];
18378 break;
18379 }
18380 }
18381
18382 if (attr)
18383 printf (" %s: ", attr->name);
18384 else
18385 return display_tag_value (tag, p, end);
18386
18387 switch (tag)
18388 {
18389 case Tag_RISCV_priv_spec:
18390 case Tag_RISCV_priv_spec_minor:
18391 case Tag_RISCV_priv_spec_revision:
18392 READ_ULEB (val, p, end);
18393 printf ("%" PRIu64 "\n", val);
18394 break;
18395 case Tag_RISCV_unaligned_access:
18396 READ_ULEB (val, p, end);
18397 switch (val)
18398 {
18399 case 0:
18400 printf (_("No unaligned access\n"));
18401 break;
18402 case 1:
18403 printf (_("Unaligned access\n"));
18404 break;
18405 }
18406 break;
18407 case Tag_RISCV_stack_align:
18408 READ_ULEB (val, p, end);
18409 printf (_("%" PRIu64 "-bytes\n"), val);
18410 break;
18411 case Tag_RISCV_arch:
18412 p = display_tag_value (-1, p, end);
18413 break;
18414 default:
18415 return display_tag_value (tag, p, end);
18416 }
18417
18418 return p;
18419 }
18420
18421 static unsigned char *
18422 display_csky_attribute (unsigned char * p,
18423 const unsigned char * const end)
18424 {
18425 uint64_t tag;
18426 uint64_t val;
18427 READ_ULEB (tag, p, end);
18428
18429 if (tag >= Tag_CSKY_MAX)
18430 {
18431 return display_tag_value (-1, p, end);
18432 }
18433
18434 switch (tag)
18435 {
18436 case Tag_CSKY_ARCH_NAME:
18437 printf (" Tag_CSKY_ARCH_NAME:\t\t");
18438 return display_tag_value (-1, p, end);
18439 case Tag_CSKY_CPU_NAME:
18440 printf (" Tag_CSKY_CPU_NAME:\t\t");
18441 return display_tag_value (-1, p, end);
18442
18443 case Tag_CSKY_ISA_FLAGS:
18444 printf (" Tag_CSKY_ISA_FLAGS:\t\t");
18445 return display_tag_value (0, p, end);
18446 case Tag_CSKY_ISA_EXT_FLAGS:
18447 printf (" Tag_CSKY_ISA_EXT_FLAGS:\t");
18448 return display_tag_value (0, p, end);
18449
18450 case Tag_CSKY_DSP_VERSION:
18451 printf (" Tag_CSKY_DSP_VERSION:\t\t");
18452 READ_ULEB (val, p, end);
18453 if (val == VAL_CSKY_DSP_VERSION_EXTENSION)
18454 printf ("DSP Extension\n");
18455 else if (val == VAL_CSKY_DSP_VERSION_2)
18456 printf ("DSP 2.0\n");
18457 break;
18458
18459 case Tag_CSKY_VDSP_VERSION:
18460 printf (" Tag_CSKY_VDSP_VERSION:\t");
18461 READ_ULEB (val, p, end);
18462 printf ("VDSP Version %" PRId64 "\n", val);
18463 break;
18464
18465 case Tag_CSKY_FPU_VERSION:
18466 printf (" Tag_CSKY_FPU_VERSION:\t\t");
18467 READ_ULEB (val, p, end);
18468 if (val == VAL_CSKY_FPU_VERSION_1)
18469 printf ("ABIV1 FPU Version 1\n");
18470 else if (val == VAL_CSKY_FPU_VERSION_2)
18471 printf ("FPU Version 2\n");
18472 break;
18473
18474 case Tag_CSKY_FPU_ABI:
18475 printf (" Tag_CSKY_FPU_ABI:\t\t");
18476 READ_ULEB (val, p, end);
18477 if (val == VAL_CSKY_FPU_ABI_HARD)
18478 printf ("Hard\n");
18479 else if (val == VAL_CSKY_FPU_ABI_SOFTFP)
18480 printf ("SoftFP\n");
18481 else if (val == VAL_CSKY_FPU_ABI_SOFT)
18482 printf ("Soft\n");
18483 break;
18484 case Tag_CSKY_FPU_ROUNDING:
18485 READ_ULEB (val, p, end);
18486 if (val == 1)
18487 {
18488 printf (" Tag_CSKY_FPU_ROUNDING:\t");
18489 printf ("Needed\n");
18490 }
18491 break;
18492 case Tag_CSKY_FPU_DENORMAL:
18493 READ_ULEB (val, p, end);
18494 if (val == 1)
18495 {
18496 printf (" Tag_CSKY_FPU_DENORMAL:\t");
18497 printf ("Needed\n");
18498 }
18499 break;
18500 case Tag_CSKY_FPU_Exception:
18501 READ_ULEB (val, p, end);
18502 if (val == 1)
18503 {
18504 printf (" Tag_CSKY_FPU_Exception:\t");
18505 printf ("Needed\n");
18506 }
18507 break;
18508 case Tag_CSKY_FPU_NUMBER_MODULE:
18509 printf (" Tag_CSKY_FPU_NUMBER_MODULE:\t");
18510 return display_tag_value (-1, p, end);
18511 case Tag_CSKY_FPU_HARDFP:
18512 printf (" Tag_CSKY_FPU_HARDFP:\t\t");
18513 READ_ULEB (val, p, end);
18514 if (val & VAL_CSKY_FPU_HARDFP_HALF)
18515 printf (" Half");
18516 if (val & VAL_CSKY_FPU_HARDFP_SINGLE)
18517 printf (" Single");
18518 if (val & VAL_CSKY_FPU_HARDFP_DOUBLE)
18519 printf (" Double");
18520 printf ("\n");
18521 break;
18522 default:
18523 return display_tag_value (tag, p, end);
18524 }
18525 return p;
18526 }
18527
18528 static bool
18529 process_attributes (Filedata * filedata,
18530 const char * public_name,
18531 unsigned int proc_type,
18532 unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const),
18533 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const))
18534 {
18535 Elf_Internal_Shdr * sect;
18536 unsigned i;
18537 bool res = true;
18538
18539 /* Find the section header so that we get the size. */
18540 for (i = 0, sect = filedata->section_headers;
18541 i < filedata->file_header.e_shnum;
18542 i++, sect++)
18543 {
18544 unsigned char * contents;
18545 unsigned char * p;
18546
18547 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
18548 continue;
18549
18550 contents = (unsigned char *) get_data (NULL, filedata, sect->sh_offset, 1,
18551 sect->sh_size, _("attributes"));
18552 if (contents == NULL)
18553 {
18554 res = false;
18555 continue;
18556 }
18557
18558 p = contents;
18559 /* The first character is the version of the attributes.
18560 Currently only version 1, (aka 'A') is recognised here. */
18561 if (*p != 'A')
18562 {
18563 printf (_("Unknown attributes version '%c'(%d) - expecting 'A'\n"), *p, *p);
18564 res = false;
18565 }
18566 else
18567 {
18568 uint64_t section_len;
18569
18570 section_len = sect->sh_size - 1;
18571 p++;
18572
18573 while (section_len > 0)
18574 {
18575 uint64_t attr_len;
18576 unsigned int namelen;
18577 bool public_section;
18578 bool gnu_section;
18579
18580 if (section_len <= 4)
18581 {
18582 error (_("Tag section ends prematurely\n"));
18583 res = false;
18584 break;
18585 }
18586 attr_len = byte_get (p, 4);
18587 p += 4;
18588
18589 if (attr_len > section_len)
18590 {
18591 error (_("Bad attribute length (%u > %u)\n"),
18592 (unsigned) attr_len, (unsigned) section_len);
18593 attr_len = section_len;
18594 res = false;
18595 }
18596 /* PR 17531: file: 001-101425-0.004 */
18597 else if (attr_len < 5)
18598 {
18599 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len);
18600 res = false;
18601 break;
18602 }
18603
18604 section_len -= attr_len;
18605 attr_len -= 4;
18606
18607 namelen = strnlen ((char *) p, attr_len) + 1;
18608 if (namelen == 0 || namelen >= attr_len)
18609 {
18610 error (_("Corrupt attribute section name\n"));
18611 res = false;
18612 break;
18613 }
18614
18615 printf (_("Attribute Section: "));
18616 print_symbol (INT_MAX, (const char *) p);
18617 putchar ('\n');
18618
18619 if (public_name && streq ((char *) p, public_name))
18620 public_section = true;
18621 else
18622 public_section = false;
18623
18624 if (streq ((char *) p, "gnu"))
18625 gnu_section = true;
18626 else
18627 gnu_section = false;
18628
18629 p += namelen;
18630 attr_len -= namelen;
18631
18632 while (attr_len > 0 && p < contents + sect->sh_size)
18633 {
18634 int tag;
18635 unsigned int val;
18636 uint64_t size;
18637 unsigned char * end;
18638
18639 /* PR binutils/17531: Safe handling of corrupt files. */
18640 if (attr_len < 6)
18641 {
18642 error (_("Unused bytes at end of section\n"));
18643 res = false;
18644 section_len = 0;
18645 break;
18646 }
18647
18648 tag = *(p++);
18649 size = byte_get (p, 4);
18650 if (size > attr_len)
18651 {
18652 error (_("Bad subsection length (%u > %u)\n"),
18653 (unsigned) size, (unsigned) attr_len);
18654 res = false;
18655 size = attr_len;
18656 }
18657 /* PR binutils/17531: Safe handling of corrupt files. */
18658 if (size < 6)
18659 {
18660 error (_("Bad subsection length (%u < 6)\n"),
18661 (unsigned) size);
18662 res = false;
18663 section_len = 0;
18664 break;
18665 }
18666
18667 attr_len -= size;
18668 end = p + size - 1;
18669 assert (end <= contents + sect->sh_size);
18670 p += 4;
18671
18672 switch (tag)
18673 {
18674 case 1:
18675 printf (_("File Attributes\n"));
18676 break;
18677 case 2:
18678 printf (_("Section Attributes:"));
18679 goto do_numlist;
18680 case 3:
18681 printf (_("Symbol Attributes:"));
18682 /* Fall through. */
18683 do_numlist:
18684 for (;;)
18685 {
18686 READ_ULEB (val, p, end);
18687 if (val == 0)
18688 break;
18689 printf (" %d", val);
18690 }
18691 printf ("\n");
18692 break;
18693 default:
18694 printf (_("Unknown tag: %d\n"), tag);
18695 public_section = false;
18696 break;
18697 }
18698
18699 if (public_section && display_pub_attribute != NULL)
18700 {
18701 while (p < end)
18702 p = display_pub_attribute (p, end);
18703 assert (p == end);
18704 }
18705 else if (gnu_section && display_proc_gnu_attribute != NULL)
18706 {
18707 while (p < end)
18708 p = display_gnu_attribute (p,
18709 display_proc_gnu_attribute,
18710 end);
18711 assert (p == end);
18712 }
18713 else if (p < end)
18714 {
18715 printf (_(" Unknown attribute:\n"));
18716 display_raw_attribute (p, end);
18717 p = end;
18718 }
18719 else
18720 attr_len = 0;
18721 }
18722 }
18723 }
18724
18725 free (contents);
18726 }
18727
18728 return res;
18729 }
18730
18731 /* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
18732 Print the Address, Access and Initial fields of an entry at VMA ADDR
18733 and return the VMA of the next entry, or -1 if there was a problem.
18734 Does not read from DATA_END or beyond. */
18735
18736 static uint64_t
18737 print_mips_got_entry (unsigned char * data, uint64_t pltgot, uint64_t addr,
18738 unsigned char * data_end)
18739 {
18740 printf (" ");
18741 print_vma (addr, LONG_HEX);
18742 printf (" ");
18743 if (addr < pltgot + 0xfff0)
18744 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
18745 else
18746 printf ("%10s", "");
18747 printf (" ");
18748 if (data == NULL)
18749 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
18750 else
18751 {
18752 uint64_t entry;
18753 unsigned char * from = data + addr - pltgot;
18754
18755 if (from + (is_32bit_elf ? 4 : 8) > data_end)
18756 {
18757 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
18758 printf ("%*s", is_32bit_elf ? 8 : 16, _("<corrupt>"));
18759 return (uint64_t) -1;
18760 }
18761 else
18762 {
18763 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
18764 print_vma (entry, LONG_HEX);
18765 }
18766 }
18767 return addr + (is_32bit_elf ? 4 : 8);
18768 }
18769
18770 /* DATA points to the contents of a MIPS PLT GOT that starts at VMA
18771 PLTGOT. Print the Address and Initial fields of an entry at VMA
18772 ADDR and return the VMA of the next entry. */
18773
18774 static uint64_t
18775 print_mips_pltgot_entry (unsigned char * data, uint64_t pltgot, uint64_t addr)
18776 {
18777 printf (" ");
18778 print_vma (addr, LONG_HEX);
18779 printf (" ");
18780 if (data == NULL)
18781 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
18782 else
18783 {
18784 uint64_t entry;
18785
18786 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
18787 print_vma (entry, LONG_HEX);
18788 }
18789 return addr + (is_32bit_elf ? 4 : 8);
18790 }
18791
18792 static void
18793 print_mips_ases (unsigned int mask)
18794 {
18795 if (mask & AFL_ASE_DSP)
18796 fputs ("\n\tDSP ASE", stdout);
18797 if (mask & AFL_ASE_DSPR2)
18798 fputs ("\n\tDSP R2 ASE", stdout);
18799 if (mask & AFL_ASE_DSPR3)
18800 fputs ("\n\tDSP R3 ASE", stdout);
18801 if (mask & AFL_ASE_EVA)
18802 fputs ("\n\tEnhanced VA Scheme", stdout);
18803 if (mask & AFL_ASE_MCU)
18804 fputs ("\n\tMCU (MicroController) ASE", stdout);
18805 if (mask & AFL_ASE_MDMX)
18806 fputs ("\n\tMDMX ASE", stdout);
18807 if (mask & AFL_ASE_MIPS3D)
18808 fputs ("\n\tMIPS-3D ASE", stdout);
18809 if (mask & AFL_ASE_MT)
18810 fputs ("\n\tMT ASE", stdout);
18811 if (mask & AFL_ASE_SMARTMIPS)
18812 fputs ("\n\tSmartMIPS ASE", stdout);
18813 if (mask & AFL_ASE_VIRT)
18814 fputs ("\n\tVZ ASE", stdout);
18815 if (mask & AFL_ASE_MSA)
18816 fputs ("\n\tMSA ASE", stdout);
18817 if (mask & AFL_ASE_MIPS16)
18818 fputs ("\n\tMIPS16 ASE", stdout);
18819 if (mask & AFL_ASE_MICROMIPS)
18820 fputs ("\n\tMICROMIPS ASE", stdout);
18821 if (mask & AFL_ASE_XPA)
18822 fputs ("\n\tXPA ASE", stdout);
18823 if (mask & AFL_ASE_MIPS16E2)
18824 fputs ("\n\tMIPS16e2 ASE", stdout);
18825 if (mask & AFL_ASE_CRC)
18826 fputs ("\n\tCRC ASE", stdout);
18827 if (mask & AFL_ASE_GINV)
18828 fputs ("\n\tGINV ASE", stdout);
18829 if (mask & AFL_ASE_LOONGSON_MMI)
18830 fputs ("\n\tLoongson MMI ASE", stdout);
18831 if (mask & AFL_ASE_LOONGSON_CAM)
18832 fputs ("\n\tLoongson CAM ASE", stdout);
18833 if (mask & AFL_ASE_LOONGSON_EXT)
18834 fputs ("\n\tLoongson EXT ASE", stdout);
18835 if (mask & AFL_ASE_LOONGSON_EXT2)
18836 fputs ("\n\tLoongson EXT2 ASE", stdout);
18837 if (mask == 0)
18838 fprintf (stdout, "\n\t%s", _("None"));
18839 else if ((mask & ~AFL_ASE_MASK) != 0)
18840 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
18841 }
18842
18843 static void
18844 print_mips_isa_ext (unsigned int isa_ext)
18845 {
18846 switch (isa_ext)
18847 {
18848 case 0:
18849 fputs (_("None"), stdout);
18850 break;
18851 case AFL_EXT_XLR:
18852 fputs ("RMI XLR", stdout);
18853 break;
18854 case AFL_EXT_OCTEON3:
18855 fputs ("Cavium Networks Octeon3", stdout);
18856 break;
18857 case AFL_EXT_OCTEON2:
18858 fputs ("Cavium Networks Octeon2", stdout);
18859 break;
18860 case AFL_EXT_OCTEONP:
18861 fputs ("Cavium Networks OcteonP", stdout);
18862 break;
18863 case AFL_EXT_OCTEON:
18864 fputs ("Cavium Networks Octeon", stdout);
18865 break;
18866 case AFL_EXT_5900:
18867 fputs ("Toshiba R5900", stdout);
18868 break;
18869 case AFL_EXT_4650:
18870 fputs ("MIPS R4650", stdout);
18871 break;
18872 case AFL_EXT_4010:
18873 fputs ("LSI R4010", stdout);
18874 break;
18875 case AFL_EXT_4100:
18876 fputs ("NEC VR4100", stdout);
18877 break;
18878 case AFL_EXT_3900:
18879 fputs ("Toshiba R3900", stdout);
18880 break;
18881 case AFL_EXT_10000:
18882 fputs ("MIPS R10000", stdout);
18883 break;
18884 case AFL_EXT_SB1:
18885 fputs ("Broadcom SB-1", stdout);
18886 break;
18887 case AFL_EXT_4111:
18888 fputs ("NEC VR4111/VR4181", stdout);
18889 break;
18890 case AFL_EXT_4120:
18891 fputs ("NEC VR4120", stdout);
18892 break;
18893 case AFL_EXT_5400:
18894 fputs ("NEC VR5400", stdout);
18895 break;
18896 case AFL_EXT_5500:
18897 fputs ("NEC VR5500", stdout);
18898 break;
18899 case AFL_EXT_LOONGSON_2E:
18900 fputs ("ST Microelectronics Loongson 2E", stdout);
18901 break;
18902 case AFL_EXT_LOONGSON_2F:
18903 fputs ("ST Microelectronics Loongson 2F", stdout);
18904 break;
18905 case AFL_EXT_INTERAPTIV_MR2:
18906 fputs ("Imagination interAptiv MR2", stdout);
18907 break;
18908 default:
18909 fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext);
18910 }
18911 }
18912
18913 static signed int
18914 get_mips_reg_size (int reg_size)
18915 {
18916 return (reg_size == AFL_REG_NONE) ? 0
18917 : (reg_size == AFL_REG_32) ? 32
18918 : (reg_size == AFL_REG_64) ? 64
18919 : (reg_size == AFL_REG_128) ? 128
18920 : -1;
18921 }
18922
18923 static bool
18924 process_mips_specific (Filedata * filedata)
18925 {
18926 Elf_Internal_Dyn * entry;
18927 Elf_Internal_Shdr *sect = NULL;
18928 size_t liblist_offset = 0;
18929 size_t liblistno = 0;
18930 size_t conflictsno = 0;
18931 size_t options_offset = 0;
18932 size_t conflicts_offset = 0;
18933 size_t pltrelsz = 0;
18934 size_t pltrel = 0;
18935 uint64_t pltgot = 0;
18936 uint64_t mips_pltgot = 0;
18937 uint64_t jmprel = 0;
18938 uint64_t local_gotno = 0;
18939 uint64_t gotsym = 0;
18940 uint64_t symtabno = 0;
18941 bool res = true;
18942
18943 if (! process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
18944 display_mips_gnu_attribute))
18945 res = false;
18946
18947 sect = find_section (filedata, ".MIPS.abiflags");
18948
18949 if (sect != NULL)
18950 {
18951 Elf_External_ABIFlags_v0 *abiflags_ext;
18952 Elf_Internal_ABIFlags_v0 abiflags_in;
18953
18954 if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size)
18955 {
18956 error (_("Corrupt MIPS ABI Flags section.\n"));
18957 res = false;
18958 }
18959 else
18960 {
18961 abiflags_ext = get_data (NULL, filedata, sect->sh_offset, 1,
18962 sect->sh_size, _("MIPS ABI Flags section"));
18963 if (abiflags_ext)
18964 {
18965 abiflags_in.version = BYTE_GET (abiflags_ext->version);
18966 abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level);
18967 abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev);
18968 abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size);
18969 abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size);
18970 abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size);
18971 abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi);
18972 abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext);
18973 abiflags_in.ases = BYTE_GET (abiflags_ext->ases);
18974 abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1);
18975 abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2);
18976
18977 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version);
18978 printf ("\nISA: MIPS%d", abiflags_in.isa_level);
18979 if (abiflags_in.isa_rev > 1)
18980 printf ("r%d", abiflags_in.isa_rev);
18981 printf ("\nGPR size: %d",
18982 get_mips_reg_size (abiflags_in.gpr_size));
18983 printf ("\nCPR1 size: %d",
18984 get_mips_reg_size (abiflags_in.cpr1_size));
18985 printf ("\nCPR2 size: %d",
18986 get_mips_reg_size (abiflags_in.cpr2_size));
18987 fputs ("\nFP ABI: ", stdout);
18988 print_mips_fp_abi_value (abiflags_in.fp_abi);
18989 fputs ("ISA Extension: ", stdout);
18990 print_mips_isa_ext (abiflags_in.isa_ext);
18991 fputs ("\nASEs:", stdout);
18992 print_mips_ases (abiflags_in.ases);
18993 printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1);
18994 printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2);
18995 fputc ('\n', stdout);
18996 free (abiflags_ext);
18997 }
18998 }
18999 }
19000
19001 /* We have a lot of special sections. Thanks SGI! */
19002 if (filedata->dynamic_section == NULL)
19003 {
19004 /* No dynamic information available. See if there is static GOT. */
19005 sect = find_section (filedata, ".got");
19006 if (sect != NULL)
19007 {
19008 unsigned char *data_end;
19009 unsigned char *data;
19010 uint64_t ent, end;
19011 int addr_size;
19012
19013 pltgot = sect->sh_addr;
19014
19015 ent = pltgot;
19016 addr_size = (is_32bit_elf ? 4 : 8);
19017 end = pltgot + sect->sh_size;
19018
19019 data = (unsigned char *) get_data (NULL, filedata, sect->sh_offset,
19020 end - pltgot, 1,
19021 _("Global Offset Table data"));
19022 /* PR 12855: Null data is handled gracefully throughout. */
19023 data_end = data + (end - pltgot);
19024
19025 printf (_("\nStatic GOT:\n"));
19026 printf (_(" Canonical gp value: "));
19027 print_vma (ent + 0x7ff0, LONG_HEX);
19028 printf ("\n\n");
19029
19030 /* In a dynamic binary GOT[0] is reserved for the dynamic
19031 loader to store the lazy resolver pointer, however in
19032 a static binary it may well have been omitted and GOT
19033 reduced to a table of addresses.
19034 PR 21344: Check for the entry being fully available
19035 before fetching it. */
19036 if (data
19037 && data + ent - pltgot + addr_size <= data_end
19038 && byte_get (data + ent - pltgot, addr_size) == 0)
19039 {
19040 printf (_(" Reserved entries:\n"));
19041 printf (_(" %*s %10s %*s\n"),
19042 addr_size * 2, _("Address"), _("Access"),
19043 addr_size * 2, _("Value"));
19044 ent = print_mips_got_entry (data, pltgot, ent, data_end);
19045 printf ("\n");
19046 if (ent == (uint64_t) -1)
19047 goto sgot_print_fail;
19048
19049 /* Check for the MSB of GOT[1] being set, identifying a
19050 GNU object. This entry will be used by some runtime
19051 loaders, to store the module pointer. Otherwise this
19052 is an ordinary local entry.
19053 PR 21344: Check for the entry being fully available
19054 before fetching it. */
19055 if (data
19056 && data + ent - pltgot + addr_size <= data_end
19057 && (byte_get (data + ent - pltgot, addr_size)
19058 >> (addr_size * 8 - 1)) != 0)
19059 {
19060 ent = print_mips_got_entry (data, pltgot, ent, data_end);
19061 printf ("\n");
19062 if (ent == (uint64_t) -1)
19063 goto sgot_print_fail;
19064 }
19065 printf ("\n");
19066 }
19067
19068 if (data != NULL && ent < end)
19069 {
19070 printf (_(" Local entries:\n"));
19071 printf (" %*s %10s %*s\n",
19072 addr_size * 2, _("Address"), _("Access"),
19073 addr_size * 2, _("Value"));
19074 while (ent < end)
19075 {
19076 ent = print_mips_got_entry (data, pltgot, ent, data_end);
19077 printf ("\n");
19078 if (ent == (uint64_t) -1)
19079 goto sgot_print_fail;
19080 }
19081 printf ("\n");
19082 }
19083
19084 sgot_print_fail:
19085 free (data);
19086 }
19087 return res;
19088 }
19089
19090 for (entry = filedata->dynamic_section;
19091 /* PR 17531 file: 012-50589-0.004. */
19092 (entry < filedata->dynamic_section + filedata->dynamic_nent
19093 && entry->d_tag != DT_NULL);
19094 ++entry)
19095 switch (entry->d_tag)
19096 {
19097 case DT_MIPS_LIBLIST:
19098 liblist_offset
19099 = offset_from_vma (filedata, entry->d_un.d_val,
19100 liblistno * sizeof (Elf32_External_Lib));
19101 break;
19102 case DT_MIPS_LIBLISTNO:
19103 liblistno = entry->d_un.d_val;
19104 break;
19105 case DT_MIPS_OPTIONS:
19106 options_offset = offset_from_vma (filedata, entry->d_un.d_val, 0);
19107 break;
19108 case DT_MIPS_CONFLICT:
19109 conflicts_offset
19110 = offset_from_vma (filedata, entry->d_un.d_val,
19111 conflictsno * sizeof (Elf32_External_Conflict));
19112 break;
19113 case DT_MIPS_CONFLICTNO:
19114 conflictsno = entry->d_un.d_val;
19115 break;
19116 case DT_PLTGOT:
19117 pltgot = entry->d_un.d_ptr;
19118 break;
19119 case DT_MIPS_LOCAL_GOTNO:
19120 local_gotno = entry->d_un.d_val;
19121 break;
19122 case DT_MIPS_GOTSYM:
19123 gotsym = entry->d_un.d_val;
19124 break;
19125 case DT_MIPS_SYMTABNO:
19126 symtabno = entry->d_un.d_val;
19127 break;
19128 case DT_MIPS_PLTGOT:
19129 mips_pltgot = entry->d_un.d_ptr;
19130 break;
19131 case DT_PLTREL:
19132 pltrel = entry->d_un.d_val;
19133 break;
19134 case DT_PLTRELSZ:
19135 pltrelsz = entry->d_un.d_val;
19136 break;
19137 case DT_JMPREL:
19138 jmprel = entry->d_un.d_ptr;
19139 break;
19140 default:
19141 break;
19142 }
19143
19144 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
19145 {
19146 Elf32_External_Lib * elib;
19147 size_t cnt;
19148
19149 elib = (Elf32_External_Lib *) get_data (NULL, filedata, liblist_offset,
19150 sizeof (Elf32_External_Lib),
19151 liblistno,
19152 _("liblist section data"));
19153 if (elib)
19154 {
19155 printf (ngettext ("\nSection '.liblist' contains %zu entry:\n",
19156 "\nSection '.liblist' contains %zu entries:\n",
19157 liblistno),
19158 liblistno);
19159 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
19160 stdout);
19161
19162 for (cnt = 0; cnt < liblistno; ++cnt)
19163 {
19164 Elf32_Lib liblist;
19165 time_t atime;
19166 char timebuf[128];
19167 struct tm * tmp;
19168
19169 liblist.l_name = BYTE_GET (elib[cnt].l_name);
19170 atime = BYTE_GET (elib[cnt].l_time_stamp);
19171 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
19172 liblist.l_version = BYTE_GET (elib[cnt].l_version);
19173 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
19174
19175 tmp = gmtime (&atime);
19176 snprintf (timebuf, sizeof (timebuf),
19177 "%04u-%02u-%02uT%02u:%02u:%02u",
19178 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
19179 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
19180
19181 printf ("%3zu: ", cnt);
19182 if (valid_dynamic_name (filedata, liblist.l_name))
19183 print_symbol (20, get_dynamic_name (filedata, liblist.l_name));
19184 else
19185 printf (_("<corrupt: %9ld>"), liblist.l_name);
19186 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
19187 liblist.l_version);
19188
19189 if (liblist.l_flags == 0)
19190 puts (_(" NONE"));
19191 else
19192 {
19193 static const struct
19194 {
19195 const char * name;
19196 int bit;
19197 }
19198 l_flags_vals[] =
19199 {
19200 { " EXACT_MATCH", LL_EXACT_MATCH },
19201 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
19202 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
19203 { " EXPORTS", LL_EXPORTS },
19204 { " DELAY_LOAD", LL_DELAY_LOAD },
19205 { " DELTA", LL_DELTA }
19206 };
19207 int flags = liblist.l_flags;
19208 size_t fcnt;
19209
19210 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
19211 if ((flags & l_flags_vals[fcnt].bit) != 0)
19212 {
19213 fputs (l_flags_vals[fcnt].name, stdout);
19214 flags ^= l_flags_vals[fcnt].bit;
19215 }
19216 if (flags != 0)
19217 printf (" %#x", (unsigned int) flags);
19218
19219 puts ("");
19220 }
19221 }
19222
19223 free (elib);
19224 }
19225 else
19226 res = false;
19227 }
19228
19229 if (options_offset != 0)
19230 {
19231 Elf_External_Options * eopt;
19232 size_t offset;
19233 int cnt;
19234
19235 /* Find the section header so that we get the size. */
19236 sect = find_section_by_type (filedata, SHT_MIPS_OPTIONS);
19237 /* PR 17533 file: 012-277276-0.004. */
19238 if (sect == NULL)
19239 {
19240 error (_("No MIPS_OPTIONS header found\n"));
19241 return false;
19242 }
19243 /* PR 24243 */
19244 if (sect->sh_size < sizeof (* eopt))
19245 {
19246 error (_("The MIPS options section is too small.\n"));
19247 return false;
19248 }
19249
19250 eopt = (Elf_External_Options *) get_data (NULL, filedata, options_offset, 1,
19251 sect->sh_size, _("options"));
19252 if (eopt)
19253 {
19254 Elf_Internal_Options option;
19255
19256 offset = cnt = 0;
19257 while (offset <= sect->sh_size - sizeof (* eopt))
19258 {
19259 Elf_External_Options * eoption;
19260 unsigned int optsize;
19261
19262 eoption = (Elf_External_Options *) ((char *) eopt + offset);
19263
19264 optsize = BYTE_GET (eoption->size);
19265
19266 /* PR 17531: file: ffa0fa3b. */
19267 if (optsize < sizeof (* eopt)
19268 || optsize > sect->sh_size - offset)
19269 {
19270 error (_("Invalid size (%u) for MIPS option\n"),
19271 optsize);
19272 free (eopt);
19273 return false;
19274 }
19275 offset += optsize;
19276 ++cnt;
19277 }
19278
19279 printf (ngettext ("\nSection '%s' contains %d entry:\n",
19280 "\nSection '%s' contains %d entries:\n",
19281 cnt),
19282 printable_section_name (filedata, sect), cnt);
19283
19284 offset = 0;
19285 while (cnt-- > 0)
19286 {
19287 size_t len;
19288 Elf_External_Options * eoption;
19289
19290 eoption = (Elf_External_Options *) ((char *) eopt + offset);
19291
19292 option.kind = BYTE_GET (eoption->kind);
19293 option.size = BYTE_GET (eoption->size);
19294 option.section = BYTE_GET (eoption->section);
19295 option.info = BYTE_GET (eoption->info);
19296
19297 switch (option.kind)
19298 {
19299 case ODK_NULL:
19300 /* This shouldn't happen. */
19301 printf (" NULL %" PRId16 " %" PRIx32,
19302 option.section, option.info);
19303 break;
19304
19305 case ODK_REGINFO:
19306 printf (" REGINFO ");
19307 if (filedata->file_header.e_machine == EM_MIPS)
19308 {
19309 Elf32_External_RegInfo * ereg;
19310 Elf32_RegInfo reginfo;
19311
19312 /* 32bit form. */
19313 if (option.size < (sizeof (Elf_External_Options)
19314 + sizeof (Elf32_External_RegInfo)))
19315 {
19316 printf (_("<corrupt>\n"));
19317 error (_("Truncated MIPS REGINFO option\n"));
19318 cnt = 0;
19319 break;
19320 }
19321
19322 ereg = (Elf32_External_RegInfo *) (eoption + 1);
19323
19324 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
19325 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
19326 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
19327 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
19328 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
19329 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
19330
19331 printf ("GPR %08" PRIx32 " GP 0x%" PRIx32 "\n",
19332 reginfo.ri_gprmask, reginfo.ri_gp_value);
19333 printf (" "
19334 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
19335 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
19336 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
19337 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
19338 }
19339 else
19340 {
19341 /* 64 bit form. */
19342 Elf64_External_RegInfo * ereg;
19343 Elf64_Internal_RegInfo reginfo;
19344
19345 if (option.size < (sizeof (Elf_External_Options)
19346 + sizeof (Elf64_External_RegInfo)))
19347 {
19348 printf (_("<corrupt>\n"));
19349 error (_("Truncated MIPS REGINFO option\n"));
19350 cnt = 0;
19351 break;
19352 }
19353
19354 ereg = (Elf64_External_RegInfo *) (eoption + 1);
19355 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
19356 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
19357 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
19358 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
19359 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
19360 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
19361
19362 printf ("GPR %08" PRIx32 " GP 0x%" PRIx64 "\n",
19363 reginfo.ri_gprmask, reginfo.ri_gp_value);
19364 printf (" "
19365 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
19366 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
19367 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
19368 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
19369 }
19370 offset += option.size;
19371 continue;
19372
19373 case ODK_EXCEPTIONS:
19374 fputs (" EXCEPTIONS fpe_min(", stdout);
19375 process_mips_fpe_exception (option.info & OEX_FPU_MIN);
19376 fputs (") fpe_max(", stdout);
19377 process_mips_fpe_exception ((option.info & OEX_FPU_MAX) >> 8);
19378 fputs (")", stdout);
19379
19380 if (option.info & OEX_PAGE0)
19381 fputs (" PAGE0", stdout);
19382 if (option.info & OEX_SMM)
19383 fputs (" SMM", stdout);
19384 if (option.info & OEX_FPDBUG)
19385 fputs (" FPDBUG", stdout);
19386 if (option.info & OEX_DISMISS)
19387 fputs (" DISMISS", stdout);
19388 break;
19389
19390 case ODK_PAD:
19391 fputs (" PAD ", stdout);
19392 if (option.info & OPAD_PREFIX)
19393 fputs (" PREFIX", stdout);
19394 if (option.info & OPAD_POSTFIX)
19395 fputs (" POSTFIX", stdout);
19396 if (option.info & OPAD_SYMBOL)
19397 fputs (" SYMBOL", stdout);
19398 break;
19399
19400 case ODK_HWPATCH:
19401 fputs (" HWPATCH ", stdout);
19402 if (option.info & OHW_R4KEOP)
19403 fputs (" R4KEOP", stdout);
19404 if (option.info & OHW_R8KPFETCH)
19405 fputs (" R8KPFETCH", stdout);
19406 if (option.info & OHW_R5KEOP)
19407 fputs (" R5KEOP", stdout);
19408 if (option.info & OHW_R5KCVTL)
19409 fputs (" R5KCVTL", stdout);
19410 break;
19411
19412 case ODK_FILL:
19413 fputs (" FILL ", stdout);
19414 /* XXX Print content of info word? */
19415 break;
19416
19417 case ODK_TAGS:
19418 fputs (" TAGS ", stdout);
19419 /* XXX Print content of info word? */
19420 break;
19421
19422 case ODK_HWAND:
19423 fputs (" HWAND ", stdout);
19424 if (option.info & OHWA0_R4KEOP_CHECKED)
19425 fputs (" R4KEOP_CHECKED", stdout);
19426 if (option.info & OHWA0_R4KEOP_CLEAN)
19427 fputs (" R4KEOP_CLEAN", stdout);
19428 break;
19429
19430 case ODK_HWOR:
19431 fputs (" HWOR ", stdout);
19432 if (option.info & OHWA0_R4KEOP_CHECKED)
19433 fputs (" R4KEOP_CHECKED", stdout);
19434 if (option.info & OHWA0_R4KEOP_CLEAN)
19435 fputs (" R4KEOP_CLEAN", stdout);
19436 break;
19437
19438 case ODK_GP_GROUP:
19439 printf (" GP_GROUP %#06x self-contained %#06x",
19440 option.info & OGP_GROUP,
19441 (option.info & OGP_SELF) >> 16);
19442 break;
19443
19444 case ODK_IDENT:
19445 printf (" IDENT %#06x self-contained %#06x",
19446 option.info & OGP_GROUP,
19447 (option.info & OGP_SELF) >> 16);
19448 break;
19449
19450 default:
19451 /* This shouldn't happen. */
19452 printf (" %3d ??? %" PRId16 " %" PRIx32,
19453 option.kind, option.section, option.info);
19454 break;
19455 }
19456
19457 len = sizeof (* eopt);
19458 while (len < option.size)
19459 {
19460 unsigned char datum = *((unsigned char *) eoption + len);
19461
19462 if (ISPRINT (datum))
19463 printf ("%c", datum);
19464 else
19465 printf ("\\%03o", datum);
19466 len ++;
19467 }
19468 fputs ("\n", stdout);
19469
19470 offset += option.size;
19471 }
19472 free (eopt);
19473 }
19474 else
19475 res = false;
19476 }
19477
19478 if (conflicts_offset != 0 && conflictsno != 0)
19479 {
19480 Elf32_Conflict * iconf;
19481 size_t cnt;
19482
19483 if (filedata->dynamic_symbols == NULL)
19484 {
19485 error (_("conflict list found without a dynamic symbol table\n"));
19486 return false;
19487 }
19488
19489 /* PR 21345 - print a slightly more helpful error message
19490 if we are sure that the cmalloc will fail. */
19491 if (conflictsno > filedata->file_size / sizeof (* iconf))
19492 {
19493 error (_("Overlarge number of conflicts detected: %zx\n"),
19494 conflictsno);
19495 return false;
19496 }
19497
19498 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
19499 if (iconf == NULL)
19500 {
19501 error (_("Out of memory allocating space for dynamic conflicts\n"));
19502 return false;
19503 }
19504
19505 if (is_32bit_elf)
19506 {
19507 Elf32_External_Conflict * econf32;
19508
19509 econf32 = (Elf32_External_Conflict *)
19510 get_data (NULL, filedata, conflicts_offset,
19511 sizeof (*econf32), conflictsno, _("conflict"));
19512 if (!econf32)
19513 {
19514 free (iconf);
19515 return false;
19516 }
19517
19518 for (cnt = 0; cnt < conflictsno; ++cnt)
19519 iconf[cnt] = BYTE_GET (econf32[cnt]);
19520
19521 free (econf32);
19522 }
19523 else
19524 {
19525 Elf64_External_Conflict * econf64;
19526
19527 econf64 = (Elf64_External_Conflict *)
19528 get_data (NULL, filedata, conflicts_offset,
19529 sizeof (*econf64), conflictsno, _("conflict"));
19530 if (!econf64)
19531 {
19532 free (iconf);
19533 return false;
19534 }
19535
19536 for (cnt = 0; cnt < conflictsno; ++cnt)
19537 iconf[cnt] = BYTE_GET (econf64[cnt]);
19538
19539 free (econf64);
19540 }
19541
19542 printf (ngettext ("\nSection '.conflict' contains %zu entry:\n",
19543 "\nSection '.conflict' contains %zu entries:\n",
19544 conflictsno),
19545 conflictsno);
19546 puts (_(" Num: Index Value Name"));
19547
19548 for (cnt = 0; cnt < conflictsno; ++cnt)
19549 {
19550 printf ("%5zu: %8lu ", cnt, iconf[cnt]);
19551
19552 if (iconf[cnt] >= filedata->num_dynamic_syms)
19553 printf (_("<corrupt symbol index>"));
19554 else
19555 {
19556 Elf_Internal_Sym * psym;
19557
19558 psym = & filedata->dynamic_symbols[iconf[cnt]];
19559 print_vma (psym->st_value, FULL_HEX);
19560 putchar (' ');
19561 if (valid_dynamic_name (filedata, psym->st_name))
19562 print_symbol (25, get_dynamic_name (filedata, psym->st_name));
19563 else
19564 printf (_("<corrupt: %14ld>"), psym->st_name);
19565 }
19566 putchar ('\n');
19567 }
19568
19569 free (iconf);
19570 }
19571
19572 if (pltgot != 0 && local_gotno != 0)
19573 {
19574 uint64_t ent, local_end, global_end;
19575 size_t i, offset;
19576 unsigned char * data;
19577 unsigned char * data_end;
19578 int addr_size;
19579
19580 ent = pltgot;
19581 addr_size = (is_32bit_elf ? 4 : 8);
19582 local_end = pltgot + local_gotno * addr_size;
19583
19584 /* PR binutils/17533 file: 012-111227-0.004 */
19585 if (symtabno < gotsym)
19586 {
19587 error (_("The GOT symbol offset (%" PRIu64
19588 ") is greater than the symbol table size (%" PRIu64 ")\n"),
19589 gotsym, symtabno);
19590 return false;
19591 }
19592
19593 global_end = local_end + (symtabno - gotsym) * addr_size;
19594 /* PR 17531: file: 54c91a34. */
19595 if (global_end < local_end)
19596 {
19597 error (_("Too many GOT symbols: %" PRIu64 "\n"), symtabno);
19598 return false;
19599 }
19600
19601 offset = offset_from_vma (filedata, pltgot, global_end - pltgot);
19602 data = (unsigned char *) get_data (NULL, filedata, offset,
19603 global_end - pltgot, 1,
19604 _("Global Offset Table data"));
19605 /* PR 12855: Null data is handled gracefully throughout. */
19606 data_end = data + (global_end - pltgot);
19607
19608 printf (_("\nPrimary GOT:\n"));
19609 printf (_(" Canonical gp value: "));
19610 print_vma (pltgot + 0x7ff0, LONG_HEX);
19611 printf ("\n\n");
19612
19613 printf (_(" Reserved entries:\n"));
19614 printf (_(" %*s %10s %*s Purpose\n"),
19615 addr_size * 2, _("Address"), _("Access"),
19616 addr_size * 2, _("Initial"));
19617 ent = print_mips_got_entry (data, pltgot, ent, data_end);
19618 printf (_(" Lazy resolver\n"));
19619 if (ent == (uint64_t) -1)
19620 goto got_print_fail;
19621
19622 /* Check for the MSB of GOT[1] being set, denoting a GNU object.
19623 This entry will be used by some runtime loaders, to store the
19624 module pointer. Otherwise this is an ordinary local entry.
19625 PR 21344: Check for the entry being fully available before
19626 fetching it. */
19627 if (data
19628 && data + ent - pltgot + addr_size <= data_end
19629 && (byte_get (data + ent - pltgot, addr_size)
19630 >> (addr_size * 8 - 1)) != 0)
19631 {
19632 ent = print_mips_got_entry (data, pltgot, ent, data_end);
19633 printf (_(" Module pointer (GNU extension)\n"));
19634 if (ent == (uint64_t) -1)
19635 goto got_print_fail;
19636 }
19637 printf ("\n");
19638
19639 if (data != NULL && ent < local_end)
19640 {
19641 printf (_(" Local entries:\n"));
19642 printf (" %*s %10s %*s\n",
19643 addr_size * 2, _("Address"), _("Access"),
19644 addr_size * 2, _("Initial"));
19645 while (ent < local_end)
19646 {
19647 ent = print_mips_got_entry (data, pltgot, ent, data_end);
19648 printf ("\n");
19649 if (ent == (uint64_t) -1)
19650 goto got_print_fail;
19651 }
19652 printf ("\n");
19653 }
19654
19655 if (data != NULL && gotsym < symtabno)
19656 {
19657 int sym_width;
19658
19659 printf (_(" Global entries:\n"));
19660 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
19661 addr_size * 2, _("Address"),
19662 _("Access"),
19663 addr_size * 2, _("Initial"),
19664 addr_size * 2, _("Sym.Val."),
19665 _("Type"),
19666 /* Note for translators: "Ndx" = abbreviated form of "Index". */
19667 _("Ndx"), _("Name"));
19668
19669 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
19670
19671 for (i = gotsym; i < symtabno; i++)
19672 {
19673 ent = print_mips_got_entry (data, pltgot, ent, data_end);
19674 printf (" ");
19675
19676 if (filedata->dynamic_symbols == NULL)
19677 printf (_("<no dynamic symbols>"));
19678 else if (i < filedata->num_dynamic_syms)
19679 {
19680 Elf_Internal_Sym * psym = filedata->dynamic_symbols + i;
19681
19682 print_vma (psym->st_value, LONG_HEX);
19683 printf (" %-7s %3s ",
19684 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
19685 get_symbol_index_type (filedata, psym->st_shndx));
19686
19687 if (valid_dynamic_name (filedata, psym->st_name))
19688 print_symbol (sym_width,
19689 get_dynamic_name (filedata, psym->st_name));
19690 else
19691 printf (_("<corrupt: %14ld>"), psym->st_name);
19692 }
19693 else
19694 printf (_("<symbol index %zu exceeds number of dynamic symbols>"),
19695 i);
19696
19697 printf ("\n");
19698 if (ent == (uint64_t) -1)
19699 break;
19700 }
19701 printf ("\n");
19702 }
19703
19704 got_print_fail:
19705 free (data);
19706 }
19707
19708 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
19709 {
19710 uint64_t ent, end;
19711 uint64_t offset, rel_offset;
19712 uint64_t count, i;
19713 unsigned char * data;
19714 int addr_size, sym_width;
19715 Elf_Internal_Rela * rels;
19716
19717 rel_offset = offset_from_vma (filedata, jmprel, pltrelsz);
19718 if (pltrel == DT_RELA)
19719 {
19720 if (!slurp_rela_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
19721 return false;
19722 }
19723 else
19724 {
19725 if (!slurp_rel_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
19726 return false;
19727 }
19728
19729 ent = mips_pltgot;
19730 addr_size = (is_32bit_elf ? 4 : 8);
19731 end = mips_pltgot + (2 + count) * addr_size;
19732
19733 offset = offset_from_vma (filedata, mips_pltgot, end - mips_pltgot);
19734 data = (unsigned char *) get_data (NULL, filedata, offset, end - mips_pltgot,
19735 1, _("Procedure Linkage Table data"));
19736 if (data == NULL)
19737 {
19738 free (rels);
19739 return false;
19740 }
19741
19742 printf ("\nPLT GOT:\n\n");
19743 printf (_(" Reserved entries:\n"));
19744 printf (_(" %*s %*s Purpose\n"),
19745 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
19746 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
19747 printf (_(" PLT lazy resolver\n"));
19748 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
19749 printf (_(" Module pointer\n"));
19750 printf ("\n");
19751
19752 printf (_(" Entries:\n"));
19753 printf (" %*s %*s %*s %-7s %3s %s\n",
19754 addr_size * 2, _("Address"),
19755 addr_size * 2, _("Initial"),
19756 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
19757 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
19758 for (i = 0; i < count; i++)
19759 {
19760 uint64_t idx = get_reloc_symindex (rels[i].r_info);
19761
19762 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
19763 printf (" ");
19764
19765 if (idx >= filedata->num_dynamic_syms)
19766 printf (_("<corrupt symbol index: %" PRIu64 ">"), idx);
19767 else
19768 {
19769 Elf_Internal_Sym * psym = filedata->dynamic_symbols + idx;
19770
19771 print_vma (psym->st_value, LONG_HEX);
19772 printf (" %-7s %3s ",
19773 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
19774 get_symbol_index_type (filedata, psym->st_shndx));
19775 if (valid_dynamic_name (filedata, psym->st_name))
19776 print_symbol (sym_width,
19777 get_dynamic_name (filedata, psym->st_name));
19778 else
19779 printf (_("<corrupt: %14ld>"), psym->st_name);
19780 }
19781 printf ("\n");
19782 }
19783 printf ("\n");
19784
19785 free (data);
19786 free (rels);
19787 }
19788
19789 return res;
19790 }
19791
19792 static bool
19793 process_nds32_specific (Filedata * filedata)
19794 {
19795 Elf_Internal_Shdr *sect = NULL;
19796
19797 sect = find_section (filedata, ".nds32_e_flags");
19798 if (sect != NULL && sect->sh_size >= 4)
19799 {
19800 unsigned char *buf;
19801 unsigned int flag;
19802
19803 printf ("\nNDS32 elf flags section:\n");
19804 buf = get_data (NULL, filedata, sect->sh_offset, 1, 4,
19805 _("NDS32 elf flags section"));
19806
19807 if (buf == NULL)
19808 return false;
19809
19810 flag = byte_get (buf, 4);
19811 free (buf);
19812 switch (flag & 0x3)
19813 {
19814 case 0:
19815 printf ("(VEC_SIZE):\tNo entry.\n");
19816 break;
19817 case 1:
19818 printf ("(VEC_SIZE):\t4 bytes\n");
19819 break;
19820 case 2:
19821 printf ("(VEC_SIZE):\t16 bytes\n");
19822 break;
19823 case 3:
19824 printf ("(VEC_SIZE):\treserved\n");
19825 break;
19826 }
19827 }
19828
19829 return true;
19830 }
19831
19832 static bool
19833 process_gnu_liblist (Filedata * filedata)
19834 {
19835 Elf_Internal_Shdr * section;
19836 Elf_Internal_Shdr * string_sec;
19837 Elf32_External_Lib * elib;
19838 char * strtab;
19839 size_t strtab_size;
19840 size_t cnt;
19841 uint64_t num_liblist;
19842 unsigned i;
19843 bool res = true;
19844
19845 if (! do_arch)
19846 return true;
19847
19848 for (i = 0, section = filedata->section_headers;
19849 i < filedata->file_header.e_shnum;
19850 i++, section++)
19851 {
19852 switch (section->sh_type)
19853 {
19854 case SHT_GNU_LIBLIST:
19855 if (section->sh_link >= filedata->file_header.e_shnum)
19856 break;
19857
19858 elib = (Elf32_External_Lib *)
19859 get_data (NULL, filedata, section->sh_offset, 1, section->sh_size,
19860 _("liblist section data"));
19861
19862 if (elib == NULL)
19863 {
19864 res = false;
19865 break;
19866 }
19867
19868 string_sec = filedata->section_headers + section->sh_link;
19869 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
19870 string_sec->sh_size,
19871 _("liblist string table"));
19872 if (strtab == NULL
19873 || section->sh_entsize != sizeof (Elf32_External_Lib))
19874 {
19875 free (elib);
19876 free (strtab);
19877 res = false;
19878 break;
19879 }
19880 strtab_size = string_sec->sh_size;
19881
19882 num_liblist = section->sh_size / sizeof (Elf32_External_Lib);
19883 printf (ngettext ("\nLibrary list section '%s' contains %" PRIu64
19884 " entries:\n",
19885 "\nLibrary list section '%s' contains %" PRIu64
19886 " entries:\n",
19887 num_liblist),
19888 printable_section_name (filedata, section),
19889 num_liblist);
19890
19891 puts (_(" Library Time Stamp Checksum Version Flags"));
19892
19893 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
19894 ++cnt)
19895 {
19896 Elf32_Lib liblist;
19897 time_t atime;
19898 char timebuf[128];
19899 struct tm * tmp;
19900
19901 liblist.l_name = BYTE_GET (elib[cnt].l_name);
19902 atime = BYTE_GET (elib[cnt].l_time_stamp);
19903 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
19904 liblist.l_version = BYTE_GET (elib[cnt].l_version);
19905 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
19906
19907 tmp = gmtime (&atime);
19908 snprintf (timebuf, sizeof (timebuf),
19909 "%04u-%02u-%02uT%02u:%02u:%02u",
19910 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
19911 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
19912
19913 printf ("%3zu: ", cnt);
19914 if (do_wide)
19915 printf ("%-20s", liblist.l_name < strtab_size
19916 ? strtab + liblist.l_name : _("<corrupt>"));
19917 else
19918 printf ("%-20.20s", liblist.l_name < strtab_size
19919 ? strtab + liblist.l_name : _("<corrupt>"));
19920 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
19921 liblist.l_version, liblist.l_flags);
19922 }
19923
19924 free (elib);
19925 free (strtab);
19926 }
19927 }
19928
19929 return res;
19930 }
19931
19932 static const char *
19933 get_note_type (Filedata * filedata, unsigned e_type)
19934 {
19935 static char buff[64];
19936
19937 if (filedata->file_header.e_type == ET_CORE)
19938 switch (e_type)
19939 {
19940 case NT_AUXV:
19941 return _("NT_AUXV (auxiliary vector)");
19942 case NT_PRSTATUS:
19943 return _("NT_PRSTATUS (prstatus structure)");
19944 case NT_FPREGSET:
19945 return _("NT_FPREGSET (floating point registers)");
19946 case NT_PRPSINFO:
19947 return _("NT_PRPSINFO (prpsinfo structure)");
19948 case NT_TASKSTRUCT:
19949 return _("NT_TASKSTRUCT (task structure)");
19950 case NT_GDB_TDESC:
19951 return _("NT_GDB_TDESC (GDB XML target description)");
19952 case NT_PRXFPREG:
19953 return _("NT_PRXFPREG (user_xfpregs structure)");
19954 case NT_PPC_VMX:
19955 return _("NT_PPC_VMX (ppc Altivec registers)");
19956 case NT_PPC_VSX:
19957 return _("NT_PPC_VSX (ppc VSX registers)");
19958 case NT_PPC_TAR:
19959 return _("NT_PPC_TAR (ppc TAR register)");
19960 case NT_PPC_PPR:
19961 return _("NT_PPC_PPR (ppc PPR register)");
19962 case NT_PPC_DSCR:
19963 return _("NT_PPC_DSCR (ppc DSCR register)");
19964 case NT_PPC_EBB:
19965 return _("NT_PPC_EBB (ppc EBB registers)");
19966 case NT_PPC_PMU:
19967 return _("NT_PPC_PMU (ppc PMU registers)");
19968 case NT_PPC_TM_CGPR:
19969 return _("NT_PPC_TM_CGPR (ppc checkpointed GPR registers)");
19970 case NT_PPC_TM_CFPR:
19971 return _("NT_PPC_TM_CFPR (ppc checkpointed floating point registers)");
19972 case NT_PPC_TM_CVMX:
19973 return _("NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)");
19974 case NT_PPC_TM_CVSX:
19975 return _("NT_PPC_TM_CVSX (ppc checkpointed VSX registers)");
19976 case NT_PPC_TM_SPR:
19977 return _("NT_PPC_TM_SPR (ppc TM special purpose registers)");
19978 case NT_PPC_TM_CTAR:
19979 return _("NT_PPC_TM_CTAR (ppc checkpointed TAR register)");
19980 case NT_PPC_TM_CPPR:
19981 return _("NT_PPC_TM_CPPR (ppc checkpointed PPR register)");
19982 case NT_PPC_TM_CDSCR:
19983 return _("NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)");
19984 case NT_386_TLS:
19985 return _("NT_386_TLS (x86 TLS information)");
19986 case NT_386_IOPERM:
19987 return _("NT_386_IOPERM (x86 I/O permissions)");
19988 case NT_X86_XSTATE:
19989 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
19990 case NT_X86_CET:
19991 return _("NT_X86_CET (x86 CET state)");
19992 case NT_S390_HIGH_GPRS:
19993 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
19994 case NT_S390_TIMER:
19995 return _("NT_S390_TIMER (s390 timer register)");
19996 case NT_S390_TODCMP:
19997 return _("NT_S390_TODCMP (s390 TOD comparator register)");
19998 case NT_S390_TODPREG:
19999 return _("NT_S390_TODPREG (s390 TOD programmable register)");
20000 case NT_S390_CTRS:
20001 return _("NT_S390_CTRS (s390 control registers)");
20002 case NT_S390_PREFIX:
20003 return _("NT_S390_PREFIX (s390 prefix register)");
20004 case NT_S390_LAST_BREAK:
20005 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
20006 case NT_S390_SYSTEM_CALL:
20007 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
20008 case NT_S390_TDB:
20009 return _("NT_S390_TDB (s390 transaction diagnostic block)");
20010 case NT_S390_VXRS_LOW:
20011 return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)");
20012 case NT_S390_VXRS_HIGH:
20013 return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)");
20014 case NT_S390_GS_CB:
20015 return _("NT_S390_GS_CB (s390 guarded-storage registers)");
20016 case NT_S390_GS_BC:
20017 return _("NT_S390_GS_BC (s390 guarded-storage broadcast control)");
20018 case NT_ARM_VFP:
20019 return _("NT_ARM_VFP (arm VFP registers)");
20020 case NT_ARM_TLS:
20021 return _("NT_ARM_TLS (AArch TLS registers)");
20022 case NT_ARM_HW_BREAK:
20023 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
20024 case NT_ARM_HW_WATCH:
20025 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
20026 case NT_ARM_SYSTEM_CALL:
20027 return _("NT_ARM_SYSTEM_CALL (AArch system call number)");
20028 case NT_ARM_SVE:
20029 return _("NT_ARM_SVE (AArch SVE registers)");
20030 case NT_ARM_PAC_MASK:
20031 return _("NT_ARM_PAC_MASK (AArch pointer authentication code masks)");
20032 case NT_ARM_PACA_KEYS:
20033 return _("NT_ARM_PACA_KEYS (ARM pointer authentication address keys)");
20034 case NT_ARM_PACG_KEYS:
20035 return _("NT_ARM_PACG_KEYS (ARM pointer authentication generic keys)");
20036 case NT_ARM_TAGGED_ADDR_CTRL:
20037 return _("NT_ARM_TAGGED_ADDR_CTRL (AArch tagged address control)");
20038 case NT_ARM_SSVE:
20039 return _("NT_ARM_SSVE (AArch64 streaming SVE registers)");
20040 case NT_ARM_ZA:
20041 return _("NT_ARM_ZA (AArch64 SME ZA register)");
20042 case NT_ARM_PAC_ENABLED_KEYS:
20043 return _("NT_ARM_PAC_ENABLED_KEYS (AArch64 pointer authentication enabled keys)");
20044 case NT_ARC_V2:
20045 return _("NT_ARC_V2 (ARC HS accumulator/extra registers)");
20046 case NT_RISCV_CSR:
20047 return _("NT_RISCV_CSR (RISC-V control and status registers)");
20048 case NT_PSTATUS:
20049 return _("NT_PSTATUS (pstatus structure)");
20050 case NT_FPREGS:
20051 return _("NT_FPREGS (floating point registers)");
20052 case NT_PSINFO:
20053 return _("NT_PSINFO (psinfo structure)");
20054 case NT_LWPSTATUS:
20055 return _("NT_LWPSTATUS (lwpstatus_t structure)");
20056 case NT_LWPSINFO:
20057 return _("NT_LWPSINFO (lwpsinfo_t structure)");
20058 case NT_WIN32PSTATUS:
20059 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
20060 case NT_SIGINFO:
20061 return _("NT_SIGINFO (siginfo_t data)");
20062 case NT_FILE:
20063 return _("NT_FILE (mapped files)");
20064 default:
20065 break;
20066 }
20067 else
20068 switch (e_type)
20069 {
20070 case NT_VERSION:
20071 return _("NT_VERSION (version)");
20072 case NT_ARCH:
20073 return _("NT_ARCH (architecture)");
20074 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
20075 return _("OPEN");
20076 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
20077 return _("func");
20078 case NT_GO_BUILDID:
20079 return _("GO BUILDID");
20080 case FDO_PACKAGING_METADATA:
20081 return _("FDO_PACKAGING_METADATA");
20082 default:
20083 break;
20084 }
20085
20086 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
20087 return buff;
20088 }
20089
20090 static bool
20091 print_core_note (Elf_Internal_Note *pnote)
20092 {
20093 unsigned int addr_size = is_32bit_elf ? 4 : 8;
20094 uint64_t count, page_size;
20095 unsigned char *descdata, *filenames, *descend;
20096
20097 if (pnote->type != NT_FILE)
20098 {
20099 if (do_wide)
20100 printf ("\n");
20101 return true;
20102 }
20103
20104 if (!is_32bit_elf)
20105 {
20106 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
20107 /* Still "successful". */
20108 return true;
20109 }
20110
20111 if (pnote->descsz < 2 * addr_size)
20112 {
20113 error (_(" Malformed note - too short for header\n"));
20114 return false;
20115 }
20116
20117 descdata = (unsigned char *) pnote->descdata;
20118 descend = descdata + pnote->descsz;
20119
20120 if (descdata[pnote->descsz - 1] != '\0')
20121 {
20122 error (_(" Malformed note - does not end with \\0\n"));
20123 return false;
20124 }
20125
20126 count = byte_get (descdata, addr_size);
20127 descdata += addr_size;
20128
20129 page_size = byte_get (descdata, addr_size);
20130 descdata += addr_size;
20131
20132 if (count > ((uint64_t) -1 - 2 * addr_size) / (3 * addr_size)
20133 || pnote->descsz < 2 * addr_size + count * 3 * addr_size)
20134 {
20135 error (_(" Malformed note - too short for supplied file count\n"));
20136 return false;
20137 }
20138
20139 printf (_(" Page size: "));
20140 print_vma (page_size, DEC);
20141 printf ("\n");
20142
20143 printf (_(" %*s%*s%*s\n"),
20144 (int) (2 + 2 * addr_size), _("Start"),
20145 (int) (4 + 2 * addr_size), _("End"),
20146 (int) (4 + 2 * addr_size), _("Page Offset"));
20147 filenames = descdata + count * 3 * addr_size;
20148 while (count-- > 0)
20149 {
20150 uint64_t start, end, file_ofs;
20151
20152 if (filenames == descend)
20153 {
20154 error (_(" Malformed note - filenames end too early\n"));
20155 return false;
20156 }
20157
20158 start = byte_get (descdata, addr_size);
20159 descdata += addr_size;
20160 end = byte_get (descdata, addr_size);
20161 descdata += addr_size;
20162 file_ofs = byte_get (descdata, addr_size);
20163 descdata += addr_size;
20164
20165 printf (" ");
20166 print_vma (start, FULL_HEX);
20167 printf (" ");
20168 print_vma (end, FULL_HEX);
20169 printf (" ");
20170 print_vma (file_ofs, FULL_HEX);
20171 printf ("\n %s\n", filenames);
20172
20173 filenames += 1 + strlen ((char *) filenames);
20174 }
20175
20176 return true;
20177 }
20178
20179 static const char *
20180 get_gnu_elf_note_type (unsigned e_type)
20181 {
20182 /* NB/ Keep this switch statement in sync with print_gnu_note (). */
20183 switch (e_type)
20184 {
20185 case NT_GNU_ABI_TAG:
20186 return _("NT_GNU_ABI_TAG (ABI version tag)");
20187 case NT_GNU_HWCAP:
20188 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
20189 case NT_GNU_BUILD_ID:
20190 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
20191 case NT_GNU_GOLD_VERSION:
20192 return _("NT_GNU_GOLD_VERSION (gold version)");
20193 case NT_GNU_PROPERTY_TYPE_0:
20194 return _("NT_GNU_PROPERTY_TYPE_0");
20195 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
20196 return _("NT_GNU_BUILD_ATTRIBUTE_OPEN");
20197 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
20198 return _("NT_GNU_BUILD_ATTRIBUTE_FUNC");
20199 default:
20200 {
20201 static char buff[64];
20202
20203 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
20204 return buff;
20205 }
20206 }
20207 }
20208
20209 static void
20210 decode_x86_compat_isa (unsigned int bitmask)
20211 {
20212 while (bitmask)
20213 {
20214 unsigned int bit = bitmask & (- bitmask);
20215
20216 bitmask &= ~ bit;
20217 switch (bit)
20218 {
20219 case GNU_PROPERTY_X86_COMPAT_ISA_1_486:
20220 printf ("i486");
20221 break;
20222 case GNU_PROPERTY_X86_COMPAT_ISA_1_586:
20223 printf ("586");
20224 break;
20225 case GNU_PROPERTY_X86_COMPAT_ISA_1_686:
20226 printf ("686");
20227 break;
20228 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE:
20229 printf ("SSE");
20230 break;
20231 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE2:
20232 printf ("SSE2");
20233 break;
20234 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE3:
20235 printf ("SSE3");
20236 break;
20237 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSSE3:
20238 printf ("SSSE3");
20239 break;
20240 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_1:
20241 printf ("SSE4_1");
20242 break;
20243 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_2:
20244 printf ("SSE4_2");
20245 break;
20246 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX:
20247 printf ("AVX");
20248 break;
20249 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX2:
20250 printf ("AVX2");
20251 break;
20252 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512F:
20253 printf ("AVX512F");
20254 break;
20255 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512CD:
20256 printf ("AVX512CD");
20257 break;
20258 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512ER:
20259 printf ("AVX512ER");
20260 break;
20261 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512PF:
20262 printf ("AVX512PF");
20263 break;
20264 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512VL:
20265 printf ("AVX512VL");
20266 break;
20267 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512DQ:
20268 printf ("AVX512DQ");
20269 break;
20270 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512BW:
20271 printf ("AVX512BW");
20272 break;
20273 default:
20274 printf (_("<unknown: %x>"), bit);
20275 break;
20276 }
20277 if (bitmask)
20278 printf (", ");
20279 }
20280 }
20281
20282 static void
20283 decode_x86_compat_2_isa (unsigned int bitmask)
20284 {
20285 if (!bitmask)
20286 {
20287 printf (_("<None>"));
20288 return;
20289 }
20290
20291 while (bitmask)
20292 {
20293 unsigned int bit = bitmask & (- bitmask);
20294
20295 bitmask &= ~ bit;
20296 switch (bit)
20297 {
20298 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_CMOV:
20299 printf ("CMOV");
20300 break;
20301 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE:
20302 printf ("SSE");
20303 break;
20304 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE2:
20305 printf ("SSE2");
20306 break;
20307 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE3:
20308 printf ("SSE3");
20309 break;
20310 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSSE3:
20311 printf ("SSSE3");
20312 break;
20313 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_1:
20314 printf ("SSE4_1");
20315 break;
20316 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_2:
20317 printf ("SSE4_2");
20318 break;
20319 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX:
20320 printf ("AVX");
20321 break;
20322 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX2:
20323 printf ("AVX2");
20324 break;
20325 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_FMA:
20326 printf ("FMA");
20327 break;
20328 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512F:
20329 printf ("AVX512F");
20330 break;
20331 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512CD:
20332 printf ("AVX512CD");
20333 break;
20334 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512ER:
20335 printf ("AVX512ER");
20336 break;
20337 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512PF:
20338 printf ("AVX512PF");
20339 break;
20340 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512VL:
20341 printf ("AVX512VL");
20342 break;
20343 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512DQ:
20344 printf ("AVX512DQ");
20345 break;
20346 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512BW:
20347 printf ("AVX512BW");
20348 break;
20349 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4FMAPS:
20350 printf ("AVX512_4FMAPS");
20351 break;
20352 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4VNNIW:
20353 printf ("AVX512_4VNNIW");
20354 break;
20355 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BITALG:
20356 printf ("AVX512_BITALG");
20357 break;
20358 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_IFMA:
20359 printf ("AVX512_IFMA");
20360 break;
20361 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI:
20362 printf ("AVX512_VBMI");
20363 break;
20364 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI2:
20365 printf ("AVX512_VBMI2");
20366 break;
20367 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VNNI:
20368 printf ("AVX512_VNNI");
20369 break;
20370 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BF16:
20371 printf ("AVX512_BF16");
20372 break;
20373 default:
20374 printf (_("<unknown: %x>"), bit);
20375 break;
20376 }
20377 if (bitmask)
20378 printf (", ");
20379 }
20380 }
20381
20382 static const char *
20383 get_amdgpu_elf_note_type (unsigned int e_type)
20384 {
20385 switch (e_type)
20386 {
20387 case NT_AMDGPU_METADATA:
20388 return _("NT_AMDGPU_METADATA (code object metadata)");
20389 default:
20390 {
20391 static char buf[64];
20392 snprintf (buf, sizeof (buf), _("Unknown note type: (0x%08x)"), e_type);
20393 return buf;
20394 }
20395 }
20396 }
20397
20398 static void
20399 decode_x86_isa (unsigned int bitmask)
20400 {
20401 while (bitmask)
20402 {
20403 unsigned int bit = bitmask & (- bitmask);
20404
20405 bitmask &= ~ bit;
20406 switch (bit)
20407 {
20408 case GNU_PROPERTY_X86_ISA_1_BASELINE:
20409 printf ("x86-64-baseline");
20410 break;
20411 case GNU_PROPERTY_X86_ISA_1_V2:
20412 printf ("x86-64-v2");
20413 break;
20414 case GNU_PROPERTY_X86_ISA_1_V3:
20415 printf ("x86-64-v3");
20416 break;
20417 case GNU_PROPERTY_X86_ISA_1_V4:
20418 printf ("x86-64-v4");
20419 break;
20420 default:
20421 printf (_("<unknown: %x>"), bit);
20422 break;
20423 }
20424 if (bitmask)
20425 printf (", ");
20426 }
20427 }
20428
20429 static void
20430 decode_x86_feature_1 (unsigned int bitmask)
20431 {
20432 if (!bitmask)
20433 {
20434 printf (_("<None>"));
20435 return;
20436 }
20437
20438 while (bitmask)
20439 {
20440 unsigned int bit = bitmask & (- bitmask);
20441
20442 bitmask &= ~ bit;
20443 switch (bit)
20444 {
20445 case GNU_PROPERTY_X86_FEATURE_1_IBT:
20446 printf ("IBT");
20447 break;
20448 case GNU_PROPERTY_X86_FEATURE_1_SHSTK:
20449 printf ("SHSTK");
20450 break;
20451 case GNU_PROPERTY_X86_FEATURE_1_LAM_U48:
20452 printf ("LAM_U48");
20453 break;
20454 case GNU_PROPERTY_X86_FEATURE_1_LAM_U57:
20455 printf ("LAM_U57");
20456 break;
20457 default:
20458 printf (_("<unknown: %x>"), bit);
20459 break;
20460 }
20461 if (bitmask)
20462 printf (", ");
20463 }
20464 }
20465
20466 static void
20467 decode_x86_feature_2 (unsigned int bitmask)
20468 {
20469 if (!bitmask)
20470 {
20471 printf (_("<None>"));
20472 return;
20473 }
20474
20475 while (bitmask)
20476 {
20477 unsigned int bit = bitmask & (- bitmask);
20478
20479 bitmask &= ~ bit;
20480 switch (bit)
20481 {
20482 case GNU_PROPERTY_X86_FEATURE_2_X86:
20483 printf ("x86");
20484 break;
20485 case GNU_PROPERTY_X86_FEATURE_2_X87:
20486 printf ("x87");
20487 break;
20488 case GNU_PROPERTY_X86_FEATURE_2_MMX:
20489 printf ("MMX");
20490 break;
20491 case GNU_PROPERTY_X86_FEATURE_2_XMM:
20492 printf ("XMM");
20493 break;
20494 case GNU_PROPERTY_X86_FEATURE_2_YMM:
20495 printf ("YMM");
20496 break;
20497 case GNU_PROPERTY_X86_FEATURE_2_ZMM:
20498 printf ("ZMM");
20499 break;
20500 case GNU_PROPERTY_X86_FEATURE_2_TMM:
20501 printf ("TMM");
20502 break;
20503 case GNU_PROPERTY_X86_FEATURE_2_MASK:
20504 printf ("MASK");
20505 break;
20506 case GNU_PROPERTY_X86_FEATURE_2_FXSR:
20507 printf ("FXSR");
20508 break;
20509 case GNU_PROPERTY_X86_FEATURE_2_XSAVE:
20510 printf ("XSAVE");
20511 break;
20512 case GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT:
20513 printf ("XSAVEOPT");
20514 break;
20515 case GNU_PROPERTY_X86_FEATURE_2_XSAVEC:
20516 printf ("XSAVEC");
20517 break;
20518 default:
20519 printf (_("<unknown: %x>"), bit);
20520 break;
20521 }
20522 if (bitmask)
20523 printf (", ");
20524 }
20525 }
20526
20527 static void
20528 decode_aarch64_feature_1_and (unsigned int bitmask)
20529 {
20530 while (bitmask)
20531 {
20532 unsigned int bit = bitmask & (- bitmask);
20533
20534 bitmask &= ~ bit;
20535 switch (bit)
20536 {
20537 case GNU_PROPERTY_AARCH64_FEATURE_1_BTI:
20538 printf ("BTI");
20539 break;
20540
20541 case GNU_PROPERTY_AARCH64_FEATURE_1_PAC:
20542 printf ("PAC");
20543 break;
20544
20545 default:
20546 printf (_("<unknown: %x>"), bit);
20547 break;
20548 }
20549 if (bitmask)
20550 printf (", ");
20551 }
20552 }
20553
20554 static void
20555 decode_1_needed (unsigned int bitmask)
20556 {
20557 while (bitmask)
20558 {
20559 unsigned int bit = bitmask & (- bitmask);
20560
20561 bitmask &= ~ bit;
20562 switch (bit)
20563 {
20564 case GNU_PROPERTY_1_NEEDED_INDIRECT_EXTERN_ACCESS:
20565 printf ("indirect external access");
20566 break;
20567 default:
20568 printf (_("<unknown: %x>"), bit);
20569 break;
20570 }
20571 if (bitmask)
20572 printf (", ");
20573 }
20574 }
20575
20576 static void
20577 print_gnu_property_note (Filedata * filedata, Elf_Internal_Note * pnote)
20578 {
20579 unsigned char * ptr = (unsigned char *) pnote->descdata;
20580 unsigned char * ptr_end = ptr + pnote->descsz;
20581 unsigned int size = is_32bit_elf ? 4 : 8;
20582
20583 printf (_(" Properties: "));
20584
20585 if (pnote->descsz < 8 || (pnote->descsz % size) != 0)
20586 {
20587 printf (_("<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n"), pnote->descsz);
20588 return;
20589 }
20590
20591 while (ptr < ptr_end)
20592 {
20593 unsigned int j;
20594 unsigned int type;
20595 unsigned int datasz;
20596
20597 if ((size_t) (ptr_end - ptr) < 8)
20598 {
20599 printf (_("<corrupt descsz: %#lx>\n"), pnote->descsz);
20600 break;
20601 }
20602
20603 type = byte_get (ptr, 4);
20604 datasz = byte_get (ptr + 4, 4);
20605
20606 ptr += 8;
20607
20608 if (datasz > (size_t) (ptr_end - ptr))
20609 {
20610 printf (_("<corrupt type (%#x) datasz: %#x>\n"),
20611 type, datasz);
20612 break;
20613 }
20614
20615 if (type >= GNU_PROPERTY_LOPROC && type <= GNU_PROPERTY_HIPROC)
20616 {
20617 if (filedata->file_header.e_machine == EM_X86_64
20618 || filedata->file_header.e_machine == EM_IAMCU
20619 || filedata->file_header.e_machine == EM_386)
20620 {
20621 unsigned int bitmask;
20622
20623 if (datasz == 4)
20624 bitmask = byte_get (ptr, 4);
20625 else
20626 bitmask = 0;
20627
20628 switch (type)
20629 {
20630 case GNU_PROPERTY_X86_ISA_1_USED:
20631 if (datasz != 4)
20632 printf (_("x86 ISA used: <corrupt length: %#x> "),
20633 datasz);
20634 else
20635 {
20636 printf ("x86 ISA used: ");
20637 decode_x86_isa (bitmask);
20638 }
20639 goto next;
20640
20641 case GNU_PROPERTY_X86_ISA_1_NEEDED:
20642 if (datasz != 4)
20643 printf (_("x86 ISA needed: <corrupt length: %#x> "),
20644 datasz);
20645 else
20646 {
20647 printf ("x86 ISA needed: ");
20648 decode_x86_isa (bitmask);
20649 }
20650 goto next;
20651
20652 case GNU_PROPERTY_X86_FEATURE_1_AND:
20653 if (datasz != 4)
20654 printf (_("x86 feature: <corrupt length: %#x> "),
20655 datasz);
20656 else
20657 {
20658 printf ("x86 feature: ");
20659 decode_x86_feature_1 (bitmask);
20660 }
20661 goto next;
20662
20663 case GNU_PROPERTY_X86_FEATURE_2_USED:
20664 if (datasz != 4)
20665 printf (_("x86 feature used: <corrupt length: %#x> "),
20666 datasz);
20667 else
20668 {
20669 printf ("x86 feature used: ");
20670 decode_x86_feature_2 (bitmask);
20671 }
20672 goto next;
20673
20674 case GNU_PROPERTY_X86_FEATURE_2_NEEDED:
20675 if (datasz != 4)
20676 printf (_("x86 feature needed: <corrupt length: %#x> "), datasz);
20677 else
20678 {
20679 printf ("x86 feature needed: ");
20680 decode_x86_feature_2 (bitmask);
20681 }
20682 goto next;
20683
20684 case GNU_PROPERTY_X86_COMPAT_ISA_1_USED:
20685 if (datasz != 4)
20686 printf (_("x86 ISA used: <corrupt length: %#x> "),
20687 datasz);
20688 else
20689 {
20690 printf ("x86 ISA used: ");
20691 decode_x86_compat_isa (bitmask);
20692 }
20693 goto next;
20694
20695 case GNU_PROPERTY_X86_COMPAT_ISA_1_NEEDED:
20696 if (datasz != 4)
20697 printf (_("x86 ISA needed: <corrupt length: %#x> "),
20698 datasz);
20699 else
20700 {
20701 printf ("x86 ISA needed: ");
20702 decode_x86_compat_isa (bitmask);
20703 }
20704 goto next;
20705
20706 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_USED:
20707 if (datasz != 4)
20708 printf (_("x86 ISA used: <corrupt length: %#x> "),
20709 datasz);
20710 else
20711 {
20712 printf ("x86 ISA used: ");
20713 decode_x86_compat_2_isa (bitmask);
20714 }
20715 goto next;
20716
20717 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_NEEDED:
20718 if (datasz != 4)
20719 printf (_("x86 ISA needed: <corrupt length: %#x> "),
20720 datasz);
20721 else
20722 {
20723 printf ("x86 ISA needed: ");
20724 decode_x86_compat_2_isa (bitmask);
20725 }
20726 goto next;
20727
20728 default:
20729 break;
20730 }
20731 }
20732 else if (filedata->file_header.e_machine == EM_AARCH64)
20733 {
20734 if (type == GNU_PROPERTY_AARCH64_FEATURE_1_AND)
20735 {
20736 printf ("AArch64 feature: ");
20737 if (datasz != 4)
20738 printf (_("<corrupt length: %#x> "), datasz);
20739 else
20740 decode_aarch64_feature_1_and (byte_get (ptr, 4));
20741 goto next;
20742 }
20743 }
20744 }
20745 else
20746 {
20747 switch (type)
20748 {
20749 case GNU_PROPERTY_STACK_SIZE:
20750 printf (_("stack size: "));
20751 if (datasz != size)
20752 printf (_("<corrupt length: %#x> "), datasz);
20753 else
20754 printf ("%#" PRIx64, byte_get (ptr, size));
20755 goto next;
20756
20757 case GNU_PROPERTY_NO_COPY_ON_PROTECTED:
20758 printf ("no copy on protected ");
20759 if (datasz)
20760 printf (_("<corrupt length: %#x> "), datasz);
20761 goto next;
20762
20763 default:
20764 if ((type >= GNU_PROPERTY_UINT32_AND_LO
20765 && type <= GNU_PROPERTY_UINT32_AND_HI)
20766 || (type >= GNU_PROPERTY_UINT32_OR_LO
20767 && type <= GNU_PROPERTY_UINT32_OR_HI))
20768 {
20769 switch (type)
20770 {
20771 case GNU_PROPERTY_1_NEEDED:
20772 if (datasz != 4)
20773 printf (_("1_needed: <corrupt length: %#x> "),
20774 datasz);
20775 else
20776 {
20777 unsigned int bitmask = byte_get (ptr, 4);
20778 printf ("1_needed: ");
20779 decode_1_needed (bitmask);
20780 }
20781 goto next;
20782
20783 default:
20784 break;
20785 }
20786 if (type <= GNU_PROPERTY_UINT32_AND_HI)
20787 printf (_("UINT32_AND (%#x): "), type);
20788 else
20789 printf (_("UINT32_OR (%#x): "), type);
20790 if (datasz != 4)
20791 printf (_("<corrupt length: %#x> "), datasz);
20792 else
20793 printf ("%#x", (unsigned int) byte_get (ptr, 4));
20794 goto next;
20795 }
20796 break;
20797 }
20798 }
20799
20800 if (type < GNU_PROPERTY_LOPROC)
20801 printf (_("<unknown type %#x data: "), type);
20802 else if (type < GNU_PROPERTY_LOUSER)
20803 printf (_("<processor-specific type %#x data: "), type);
20804 else
20805 printf (_("<application-specific type %#x data: "), type);
20806 for (j = 0; j < datasz; ++j)
20807 printf ("%02x ", ptr[j] & 0xff);
20808 printf (">");
20809
20810 next:
20811 ptr += ((datasz + (size - 1)) & ~ (size - 1));
20812 if (ptr == ptr_end)
20813 break;
20814
20815 if (do_wide)
20816 printf (", ");
20817 else
20818 printf ("\n\t");
20819 }
20820
20821 printf ("\n");
20822 }
20823
20824 static bool
20825 print_gnu_note (Filedata * filedata, Elf_Internal_Note *pnote)
20826 {
20827 /* NB/ Keep this switch statement in sync with get_gnu_elf_note_type (). */
20828 switch (pnote->type)
20829 {
20830 case NT_GNU_BUILD_ID:
20831 {
20832 size_t i;
20833
20834 printf (_(" Build ID: "));
20835 for (i = 0; i < pnote->descsz; ++i)
20836 printf ("%02x", pnote->descdata[i] & 0xff);
20837 printf ("\n");
20838 }
20839 break;
20840
20841 case NT_GNU_ABI_TAG:
20842 {
20843 unsigned int os, major, minor, subminor;
20844 const char *osname;
20845
20846 /* PR 17531: file: 030-599401-0.004. */
20847 if (pnote->descsz < 16)
20848 {
20849 printf (_(" <corrupt GNU_ABI_TAG>\n"));
20850 break;
20851 }
20852
20853 os = byte_get ((unsigned char *) pnote->descdata, 4);
20854 major = byte_get ((unsigned char *) pnote->descdata + 4, 4);
20855 minor = byte_get ((unsigned char *) pnote->descdata + 8, 4);
20856 subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4);
20857
20858 switch (os)
20859 {
20860 case GNU_ABI_TAG_LINUX:
20861 osname = "Linux";
20862 break;
20863 case GNU_ABI_TAG_HURD:
20864 osname = "Hurd";
20865 break;
20866 case GNU_ABI_TAG_SOLARIS:
20867 osname = "Solaris";
20868 break;
20869 case GNU_ABI_TAG_FREEBSD:
20870 osname = "FreeBSD";
20871 break;
20872 case GNU_ABI_TAG_NETBSD:
20873 osname = "NetBSD";
20874 break;
20875 case GNU_ABI_TAG_SYLLABLE:
20876 osname = "Syllable";
20877 break;
20878 case GNU_ABI_TAG_NACL:
20879 osname = "NaCl";
20880 break;
20881 default:
20882 osname = "Unknown";
20883 break;
20884 }
20885
20886 printf (_(" OS: %s, ABI: %d.%d.%d\n"), osname,
20887 major, minor, subminor);
20888 }
20889 break;
20890
20891 case NT_GNU_GOLD_VERSION:
20892 {
20893 size_t i;
20894
20895 printf (_(" Version: "));
20896 for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i)
20897 printf ("%c", pnote->descdata[i]);
20898 printf ("\n");
20899 }
20900 break;
20901
20902 case NT_GNU_HWCAP:
20903 {
20904 unsigned int num_entries, mask;
20905
20906 /* Hardware capabilities information. Word 0 is the number of entries.
20907 Word 1 is a bitmask of enabled entries. The rest of the descriptor
20908 is a series of entries, where each entry is a single byte followed
20909 by a nul terminated string. The byte gives the bit number to test
20910 if enabled in the bitmask. */
20911 printf (_(" Hardware Capabilities: "));
20912 if (pnote->descsz < 8)
20913 {
20914 error (_("<corrupt GNU_HWCAP>\n"));
20915 return false;
20916 }
20917 num_entries = byte_get ((unsigned char *) pnote->descdata, 4);
20918 mask = byte_get ((unsigned char *) pnote->descdata + 4, 4);
20919 printf (_("num entries: %d, enabled mask: %x\n"), num_entries, mask);
20920 /* FIXME: Add code to display the entries... */
20921 }
20922 break;
20923
20924 case NT_GNU_PROPERTY_TYPE_0:
20925 print_gnu_property_note (filedata, pnote);
20926 break;
20927
20928 default:
20929 /* Handle unrecognised types. An error message should have already been
20930 created by get_gnu_elf_note_type(), so all that we need to do is to
20931 display the data. */
20932 {
20933 size_t i;
20934
20935 printf (_(" Description data: "));
20936 for (i = 0; i < pnote->descsz; ++i)
20937 printf ("%02x ", pnote->descdata[i] & 0xff);
20938 printf ("\n");
20939 }
20940 break;
20941 }
20942
20943 return true;
20944 }
20945
20946 static const char *
20947 get_v850_elf_note_type (enum v850_notes n_type)
20948 {
20949 static char buff[64];
20950
20951 switch (n_type)
20952 {
20953 case V850_NOTE_ALIGNMENT: return _("Alignment of 8-byte objects");
20954 case V850_NOTE_DATA_SIZE: return _("Sizeof double and long double");
20955 case V850_NOTE_FPU_INFO: return _("Type of FPU support needed");
20956 case V850_NOTE_SIMD_INFO: return _("Use of SIMD instructions");
20957 case V850_NOTE_CACHE_INFO: return _("Use of cache");
20958 case V850_NOTE_MMU_INFO: return _("Use of MMU");
20959 default:
20960 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), n_type);
20961 return buff;
20962 }
20963 }
20964
20965 static bool
20966 print_v850_note (Elf_Internal_Note * pnote)
20967 {
20968 unsigned int val;
20969
20970 if (pnote->descsz != 4)
20971 return false;
20972
20973 val = byte_get ((unsigned char *) pnote->descdata, pnote->descsz);
20974
20975 if (val == 0)
20976 {
20977 printf (_("not set\n"));
20978 return true;
20979 }
20980
20981 switch (pnote->type)
20982 {
20983 case V850_NOTE_ALIGNMENT:
20984 switch (val)
20985 {
20986 case EF_RH850_DATA_ALIGN4: printf (_("4-byte\n")); return true;
20987 case EF_RH850_DATA_ALIGN8: printf (_("8-byte\n")); return true;
20988 }
20989 break;
20990
20991 case V850_NOTE_DATA_SIZE:
20992 switch (val)
20993 {
20994 case EF_RH850_DOUBLE32: printf (_("4-bytes\n")); return true;
20995 case EF_RH850_DOUBLE64: printf (_("8-bytes\n")); return true;
20996 }
20997 break;
20998
20999 case V850_NOTE_FPU_INFO:
21000 switch (val)
21001 {
21002 case EF_RH850_FPU20: printf (_("FPU-2.0\n")); return true;
21003 case EF_RH850_FPU30: printf (_("FPU-3.0\n")); return true;
21004 }
21005 break;
21006
21007 case V850_NOTE_MMU_INFO:
21008 case V850_NOTE_CACHE_INFO:
21009 case V850_NOTE_SIMD_INFO:
21010 if (val == EF_RH850_SIMD)
21011 {
21012 printf (_("yes\n"));
21013 return true;
21014 }
21015 break;
21016
21017 default:
21018 /* An 'unknown note type' message will already have been displayed. */
21019 break;
21020 }
21021
21022 printf (_("unknown value: %x\n"), val);
21023 return false;
21024 }
21025
21026 static bool
21027 process_netbsd_elf_note (Elf_Internal_Note * pnote)
21028 {
21029 unsigned int version;
21030
21031 switch (pnote->type)
21032 {
21033 case NT_NETBSD_IDENT:
21034 if (pnote->descsz < 1)
21035 break;
21036 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
21037 if ((version / 10000) % 100)
21038 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote->descsz,
21039 version, version / 100000000, (version / 1000000) % 100,
21040 (version / 10000) % 100 > 26 ? "Z" : "",
21041 'A' + (version / 10000) % 26);
21042 else
21043 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote->descsz,
21044 version, version / 100000000, (version / 1000000) % 100,
21045 (version / 100) % 100);
21046 return true;
21047
21048 case NT_NETBSD_MARCH:
21049 printf (" NetBSD\t\t0x%08lx\tMARCH <%s>\n", pnote->descsz,
21050 pnote->descdata);
21051 return true;
21052
21053 case NT_NETBSD_PAX:
21054 if (pnote->descsz < 1)
21055 break;
21056 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
21057 printf (" NetBSD\t\t0x%08lx\tPaX <%s%s%s%s%s%s>\n", pnote->descsz,
21058 ((version & NT_NETBSD_PAX_MPROTECT) ? "+mprotect" : ""),
21059 ((version & NT_NETBSD_PAX_NOMPROTECT) ? "-mprotect" : ""),
21060 ((version & NT_NETBSD_PAX_GUARD) ? "+guard" : ""),
21061 ((version & NT_NETBSD_PAX_NOGUARD) ? "-guard" : ""),
21062 ((version & NT_NETBSD_PAX_ASLR) ? "+ASLR" : ""),
21063 ((version & NT_NETBSD_PAX_NOASLR) ? "-ASLR" : ""));
21064 return true;
21065 }
21066
21067 printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n",
21068 pnote->descsz, pnote->type);
21069 return false;
21070 }
21071
21072 static const char *
21073 get_freebsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
21074 {
21075 switch (e_type)
21076 {
21077 case NT_FREEBSD_THRMISC:
21078 return _("NT_THRMISC (thrmisc structure)");
21079 case NT_FREEBSD_PROCSTAT_PROC:
21080 return _("NT_PROCSTAT_PROC (proc data)");
21081 case NT_FREEBSD_PROCSTAT_FILES:
21082 return _("NT_PROCSTAT_FILES (files data)");
21083 case NT_FREEBSD_PROCSTAT_VMMAP:
21084 return _("NT_PROCSTAT_VMMAP (vmmap data)");
21085 case NT_FREEBSD_PROCSTAT_GROUPS:
21086 return _("NT_PROCSTAT_GROUPS (groups data)");
21087 case NT_FREEBSD_PROCSTAT_UMASK:
21088 return _("NT_PROCSTAT_UMASK (umask data)");
21089 case NT_FREEBSD_PROCSTAT_RLIMIT:
21090 return _("NT_PROCSTAT_RLIMIT (rlimit data)");
21091 case NT_FREEBSD_PROCSTAT_OSREL:
21092 return _("NT_PROCSTAT_OSREL (osreldate data)");
21093 case NT_FREEBSD_PROCSTAT_PSSTRINGS:
21094 return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)");
21095 case NT_FREEBSD_PROCSTAT_AUXV:
21096 return _("NT_PROCSTAT_AUXV (auxv data)");
21097 case NT_FREEBSD_PTLWPINFO:
21098 return _("NT_PTLWPINFO (ptrace_lwpinfo structure)");
21099 case NT_FREEBSD_X86_SEGBASES:
21100 return _("NT_X86_SEGBASES (x86 segment base registers)");
21101 }
21102 return get_note_type (filedata, e_type);
21103 }
21104
21105 static const char *
21106 get_netbsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
21107 {
21108 static char buff[64];
21109
21110 switch (e_type)
21111 {
21112 case NT_NETBSDCORE_PROCINFO:
21113 /* NetBSD core "procinfo" structure. */
21114 return _("NetBSD procinfo structure");
21115
21116 case NT_NETBSDCORE_AUXV:
21117 return _("NetBSD ELF auxiliary vector data");
21118
21119 case NT_NETBSDCORE_LWPSTATUS:
21120 return _("PT_LWPSTATUS (ptrace_lwpstatus structure)");
21121
21122 default:
21123 /* As of Jan 2020 there are no other machine-independent notes
21124 defined for NetBSD core files. If the note type is less
21125 than the start of the machine-dependent note types, we don't
21126 understand it. */
21127
21128 if (e_type < NT_NETBSDCORE_FIRSTMACH)
21129 {
21130 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
21131 return buff;
21132 }
21133 break;
21134 }
21135
21136 switch (filedata->file_header.e_machine)
21137 {
21138 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
21139 and PT_GETFPREGS == mach+2. */
21140
21141 case EM_OLD_ALPHA:
21142 case EM_ALPHA:
21143 case EM_SPARC:
21144 case EM_SPARC32PLUS:
21145 case EM_SPARCV9:
21146 switch (e_type)
21147 {
21148 case NT_NETBSDCORE_FIRSTMACH + 0:
21149 return _("PT_GETREGS (reg structure)");
21150 case NT_NETBSDCORE_FIRSTMACH + 2:
21151 return _("PT_GETFPREGS (fpreg structure)");
21152 default:
21153 break;
21154 }
21155 break;
21156
21157 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
21158 There's also old PT___GETREGS40 == mach + 1 for old reg
21159 structure which lacks GBR. */
21160 case EM_SH:
21161 switch (e_type)
21162 {
21163 case NT_NETBSDCORE_FIRSTMACH + 1:
21164 return _("PT___GETREGS40 (old reg structure)");
21165 case NT_NETBSDCORE_FIRSTMACH + 3:
21166 return _("PT_GETREGS (reg structure)");
21167 case NT_NETBSDCORE_FIRSTMACH + 5:
21168 return _("PT_GETFPREGS (fpreg structure)");
21169 default:
21170 break;
21171 }
21172 break;
21173
21174 /* On all other arch's, PT_GETREGS == mach+1 and
21175 PT_GETFPREGS == mach+3. */
21176 default:
21177 switch (e_type)
21178 {
21179 case NT_NETBSDCORE_FIRSTMACH + 1:
21180 return _("PT_GETREGS (reg structure)");
21181 case NT_NETBSDCORE_FIRSTMACH + 3:
21182 return _("PT_GETFPREGS (fpreg structure)");
21183 default:
21184 break;
21185 }
21186 }
21187
21188 snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d",
21189 e_type - NT_NETBSDCORE_FIRSTMACH);
21190 return buff;
21191 }
21192
21193 static const char *
21194 get_openbsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
21195 {
21196 switch (e_type)
21197 {
21198 case NT_OPENBSD_PROCINFO:
21199 return _("OpenBSD procinfo structure");
21200 case NT_OPENBSD_AUXV:
21201 return _("OpenBSD ELF auxiliary vector data");
21202 case NT_OPENBSD_REGS:
21203 return _("OpenBSD regular registers");
21204 case NT_OPENBSD_FPREGS:
21205 return _("OpenBSD floating point registers");
21206 case NT_OPENBSD_WCOOKIE:
21207 return _("OpenBSD window cookie");
21208 }
21209
21210 return get_note_type (filedata, e_type);
21211 }
21212
21213 static const char *
21214 get_qnx_elfcore_note_type (Filedata * filedata, unsigned e_type)
21215 {
21216 switch (e_type)
21217 {
21218 case QNT_DEBUG_FULLPATH:
21219 return _("QNX debug fullpath");
21220 case QNT_DEBUG_RELOC:
21221 return _("QNX debug relocation");
21222 case QNT_STACK:
21223 return _("QNX stack");
21224 case QNT_GENERATOR:
21225 return _("QNX generator");
21226 case QNT_DEFAULT_LIB:
21227 return _("QNX default library");
21228 case QNT_CORE_SYSINFO:
21229 return _("QNX core sysinfo");
21230 case QNT_CORE_INFO:
21231 return _("QNX core info");
21232 case QNT_CORE_STATUS:
21233 return _("QNX core status");
21234 case QNT_CORE_GREG:
21235 return _("QNX general registers");
21236 case QNT_CORE_FPREG:
21237 return _("QNX floating point registers");
21238 case QNT_LINK_MAP:
21239 return _("QNX link map");
21240 }
21241
21242 return get_note_type (filedata, e_type);
21243 }
21244
21245 static const char *
21246 get_stapsdt_note_type (unsigned e_type)
21247 {
21248 static char buff[64];
21249
21250 switch (e_type)
21251 {
21252 case NT_STAPSDT:
21253 return _("NT_STAPSDT (SystemTap probe descriptors)");
21254
21255 default:
21256 break;
21257 }
21258
21259 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
21260 return buff;
21261 }
21262
21263 static bool
21264 print_stapsdt_note (Elf_Internal_Note *pnote)
21265 {
21266 size_t len, maxlen;
21267 size_t addr_size = is_32bit_elf ? 4 : 8;
21268 char *data = pnote->descdata;
21269 char *data_end = pnote->descdata + pnote->descsz;
21270 uint64_t pc, base_addr, semaphore;
21271 char *provider, *probe, *arg_fmt;
21272
21273 if (pnote->descsz < (addr_size * 3))
21274 goto stapdt_note_too_small;
21275
21276 pc = byte_get ((unsigned char *) data, addr_size);
21277 data += addr_size;
21278
21279 base_addr = byte_get ((unsigned char *) data, addr_size);
21280 data += addr_size;
21281
21282 semaphore = byte_get ((unsigned char *) data, addr_size);
21283 data += addr_size;
21284
21285 if (data >= data_end)
21286 goto stapdt_note_too_small;
21287 maxlen = data_end - data;
21288 len = strnlen (data, maxlen);
21289 if (len < maxlen)
21290 {
21291 provider = data;
21292 data += len + 1;
21293 }
21294 else
21295 goto stapdt_note_too_small;
21296
21297 if (data >= data_end)
21298 goto stapdt_note_too_small;
21299 maxlen = data_end - data;
21300 len = strnlen (data, maxlen);
21301 if (len < maxlen)
21302 {
21303 probe = data;
21304 data += len + 1;
21305 }
21306 else
21307 goto stapdt_note_too_small;
21308
21309 if (data >= data_end)
21310 goto stapdt_note_too_small;
21311 maxlen = data_end - data;
21312 len = strnlen (data, maxlen);
21313 if (len < maxlen)
21314 {
21315 arg_fmt = data;
21316 data += len + 1;
21317 }
21318 else
21319 goto stapdt_note_too_small;
21320
21321 printf (_(" Provider: %s\n"), provider);
21322 printf (_(" Name: %s\n"), probe);
21323 printf (_(" Location: "));
21324 print_vma (pc, FULL_HEX);
21325 printf (_(", Base: "));
21326 print_vma (base_addr, FULL_HEX);
21327 printf (_(", Semaphore: "));
21328 print_vma (semaphore, FULL_HEX);
21329 printf ("\n");
21330 printf (_(" Arguments: %s\n"), arg_fmt);
21331
21332 return data == data_end;
21333
21334 stapdt_note_too_small:
21335 printf (_(" <corrupt - note is too small>\n"));
21336 error (_("corrupt stapdt note - the data size is too small\n"));
21337 return false;
21338 }
21339
21340 static bool
21341 print_fdo_note (Elf_Internal_Note * pnote)
21342 {
21343 if (pnote->descsz > 0 && pnote->type == FDO_PACKAGING_METADATA)
21344 {
21345 printf (_(" Packaging Metadata: %.*s\n"), (int) pnote->descsz, pnote->descdata);
21346 return true;
21347 }
21348 return false;
21349 }
21350
21351 static const char *
21352 get_ia64_vms_note_type (unsigned e_type)
21353 {
21354 static char buff[64];
21355
21356 switch (e_type)
21357 {
21358 case NT_VMS_MHD:
21359 return _("NT_VMS_MHD (module header)");
21360 case NT_VMS_LNM:
21361 return _("NT_VMS_LNM (language name)");
21362 case NT_VMS_SRC:
21363 return _("NT_VMS_SRC (source files)");
21364 case NT_VMS_TITLE:
21365 return "NT_VMS_TITLE";
21366 case NT_VMS_EIDC:
21367 return _("NT_VMS_EIDC (consistency check)");
21368 case NT_VMS_FPMODE:
21369 return _("NT_VMS_FPMODE (FP mode)");
21370 case NT_VMS_LINKTIME:
21371 return "NT_VMS_LINKTIME";
21372 case NT_VMS_IMGNAM:
21373 return _("NT_VMS_IMGNAM (image name)");
21374 case NT_VMS_IMGID:
21375 return _("NT_VMS_IMGID (image id)");
21376 case NT_VMS_LINKID:
21377 return _("NT_VMS_LINKID (link id)");
21378 case NT_VMS_IMGBID:
21379 return _("NT_VMS_IMGBID (build id)");
21380 case NT_VMS_GSTNAM:
21381 return _("NT_VMS_GSTNAM (sym table name)");
21382 case NT_VMS_ORIG_DYN:
21383 return "NT_VMS_ORIG_DYN";
21384 case NT_VMS_PATCHTIME:
21385 return "NT_VMS_PATCHTIME";
21386 default:
21387 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
21388 return buff;
21389 }
21390 }
21391
21392 static bool
21393 print_ia64_vms_note (Elf_Internal_Note * pnote)
21394 {
21395 unsigned int maxlen = pnote->descsz;
21396
21397 if (maxlen < 2 || maxlen != pnote->descsz)
21398 goto desc_size_fail;
21399
21400 switch (pnote->type)
21401 {
21402 case NT_VMS_MHD:
21403 if (maxlen <= 36)
21404 goto desc_size_fail;
21405
21406 size_t l = strnlen (pnote->descdata + 34, maxlen - 34);
21407
21408 printf (_(" Creation date : %.17s\n"), pnote->descdata);
21409 printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17);
21410 if (l + 34 < maxlen)
21411 {
21412 printf (_(" Module name : %s\n"), pnote->descdata + 34);
21413 if (l + 35 < maxlen)
21414 printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1);
21415 else
21416 printf (_(" Module version : <missing>\n"));
21417 }
21418 else
21419 {
21420 printf (_(" Module name : <missing>\n"));
21421 printf (_(" Module version : <missing>\n"));
21422 }
21423 break;
21424
21425 case NT_VMS_LNM:
21426 printf (_(" Language: %.*s\n"), maxlen, pnote->descdata);
21427 break;
21428
21429 case NT_VMS_FPMODE:
21430 printf (_(" Floating Point mode: "));
21431 if (maxlen < 8)
21432 goto desc_size_fail;
21433 /* FIXME: Generate an error if descsz > 8 ? */
21434
21435 printf ("0x%016" PRIx64 "\n",
21436 byte_get ((unsigned char *) pnote->descdata, 8));
21437 break;
21438
21439 case NT_VMS_LINKTIME:
21440 printf (_(" Link time: "));
21441 if (maxlen < 8)
21442 goto desc_size_fail;
21443 /* FIXME: Generate an error if descsz > 8 ? */
21444
21445 print_vms_time (byte_get ((unsigned char *) pnote->descdata, 8));
21446 printf ("\n");
21447 break;
21448
21449 case NT_VMS_PATCHTIME:
21450 printf (_(" Patch time: "));
21451 if (maxlen < 8)
21452 goto desc_size_fail;
21453 /* FIXME: Generate an error if descsz > 8 ? */
21454
21455 print_vms_time (byte_get ((unsigned char *) pnote->descdata, 8));
21456 printf ("\n");
21457 break;
21458
21459 case NT_VMS_ORIG_DYN:
21460 if (maxlen < 34)
21461 goto desc_size_fail;
21462
21463 printf (_(" Major id: %u, minor id: %u\n"),
21464 (unsigned) byte_get ((unsigned char *) pnote->descdata, 4),
21465 (unsigned) byte_get ((unsigned char *) pnote->descdata + 4, 4));
21466 printf (_(" Last modified : "));
21467 print_vms_time (byte_get ((unsigned char *) pnote->descdata + 8, 8));
21468 printf (_("\n Link flags : "));
21469 printf ("0x%016" PRIx64 "\n",
21470 byte_get ((unsigned char *) pnote->descdata + 16, 8));
21471 printf (_(" Header flags: 0x%08x\n"),
21472 (unsigned) byte_get ((unsigned char *) pnote->descdata + 24, 4));
21473 printf (_(" Image id : %.*s\n"), maxlen - 32, pnote->descdata + 32);
21474 break;
21475
21476 case NT_VMS_IMGNAM:
21477 printf (_(" Image name: %.*s\n"), maxlen, pnote->descdata);
21478 break;
21479
21480 case NT_VMS_GSTNAM:
21481 printf (_(" Global symbol table name: %.*s\n"), maxlen, pnote->descdata);
21482 break;
21483
21484 case NT_VMS_IMGID:
21485 printf (_(" Image id: %.*s\n"), maxlen, pnote->descdata);
21486 break;
21487
21488 case NT_VMS_LINKID:
21489 printf (_(" Linker id: %.*s\n"), maxlen, pnote->descdata);
21490 break;
21491
21492 default:
21493 return false;
21494 }
21495
21496 return true;
21497
21498 desc_size_fail:
21499 printf (_(" <corrupt - data size is too small>\n"));
21500 error (_("corrupt IA64 note: data size is too small\n"));
21501 return false;
21502 }
21503
21504 struct build_attr_cache {
21505 Filedata *filedata;
21506 char *strtab;
21507 uint64_t strtablen;
21508 Elf_Internal_Sym *symtab;
21509 uint64_t nsyms;
21510 } ba_cache;
21511
21512 /* Find the symbol associated with a build attribute that is attached
21513 to address OFFSET. If PNAME is non-NULL then store the name of
21514 the symbol (if found) in the provided pointer, Returns NULL if a
21515 symbol could not be found. */
21516
21517 static Elf_Internal_Sym *
21518 get_symbol_for_build_attribute (Filedata *filedata,
21519 uint64_t offset,
21520 bool is_open_attr,
21521 const char **pname)
21522 {
21523 Elf_Internal_Sym *saved_sym = NULL;
21524 Elf_Internal_Sym *sym;
21525
21526 if (filedata->section_headers != NULL
21527 && (ba_cache.filedata == NULL || filedata != ba_cache.filedata))
21528 {
21529 Elf_Internal_Shdr * symsec;
21530
21531 free (ba_cache.strtab);
21532 ba_cache.strtab = NULL;
21533 free (ba_cache.symtab);
21534 ba_cache.symtab = NULL;
21535
21536 /* Load the symbol and string sections. */
21537 for (symsec = filedata->section_headers;
21538 symsec < filedata->section_headers + filedata->file_header.e_shnum;
21539 symsec ++)
21540 {
21541 if (symsec->sh_type == SHT_SYMTAB
21542 && get_symtab (filedata, symsec,
21543 &ba_cache.symtab, &ba_cache.nsyms,
21544 &ba_cache.strtab, &ba_cache.strtablen))
21545 break;
21546 }
21547 ba_cache.filedata = filedata;
21548 }
21549
21550 if (ba_cache.symtab == NULL)
21551 return NULL;
21552
21553 /* Find a symbol whose value matches offset. */
21554 for (sym = ba_cache.symtab; sym < ba_cache.symtab + ba_cache.nsyms; sym ++)
21555 if (sym->st_value == offset)
21556 {
21557 if (sym->st_name >= ba_cache.strtablen)
21558 /* Huh ? This should not happen. */
21559 continue;
21560
21561 if (ba_cache.strtab[sym->st_name] == 0)
21562 continue;
21563
21564 /* The AArch64, ARM and RISC-V architectures define mapping symbols
21565 (eg $d, $x, $t) which we want to ignore. */
21566 if (ba_cache.strtab[sym->st_name] == '$'
21567 && ba_cache.strtab[sym->st_name + 1] != 0
21568 && ba_cache.strtab[sym->st_name + 2] == 0)
21569 continue;
21570
21571 if (is_open_attr)
21572 {
21573 /* For OPEN attributes we prefer GLOBAL over LOCAL symbols
21574 and FILE or OBJECT symbols over NOTYPE symbols. We skip
21575 FUNC symbols entirely. */
21576 switch (ELF_ST_TYPE (sym->st_info))
21577 {
21578 case STT_OBJECT:
21579 case STT_FILE:
21580 saved_sym = sym;
21581 if (sym->st_size)
21582 {
21583 /* If the symbol has a size associated
21584 with it then we can stop searching. */
21585 sym = ba_cache.symtab + ba_cache.nsyms;
21586 }
21587 continue;
21588
21589 case STT_FUNC:
21590 /* Ignore function symbols. */
21591 continue;
21592
21593 default:
21594 break;
21595 }
21596
21597 switch (ELF_ST_BIND (sym->st_info))
21598 {
21599 case STB_GLOBAL:
21600 if (saved_sym == NULL
21601 || ELF_ST_TYPE (saved_sym->st_info) != STT_OBJECT)
21602 saved_sym = sym;
21603 break;
21604
21605 case STB_LOCAL:
21606 if (saved_sym == NULL)
21607 saved_sym = sym;
21608 break;
21609
21610 default:
21611 break;
21612 }
21613 }
21614 else
21615 {
21616 if (ELF_ST_TYPE (sym->st_info) != STT_FUNC)
21617 continue;
21618
21619 saved_sym = sym;
21620 break;
21621 }
21622 }
21623
21624 if (saved_sym && pname)
21625 * pname = ba_cache.strtab + saved_sym->st_name;
21626
21627 return saved_sym;
21628 }
21629
21630 /* Returns true iff addr1 and addr2 are in the same section. */
21631
21632 static bool
21633 same_section (Filedata * filedata, uint64_t addr1, uint64_t addr2)
21634 {
21635 Elf_Internal_Shdr * a1;
21636 Elf_Internal_Shdr * a2;
21637
21638 a1 = find_section_by_address (filedata, addr1);
21639 a2 = find_section_by_address (filedata, addr2);
21640
21641 return a1 == a2 && a1 != NULL;
21642 }
21643
21644 static bool
21645 print_gnu_build_attribute_description (Elf_Internal_Note * pnote,
21646 Filedata * filedata)
21647 {
21648 static uint64_t global_offset = 0;
21649 static uint64_t global_end = 0;
21650 static uint64_t func_offset = 0;
21651 static uint64_t func_end = 0;
21652
21653 Elf_Internal_Sym *sym;
21654 const char *name;
21655 uint64_t start;
21656 uint64_t end;
21657 bool is_open_attr = pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN;
21658
21659 switch (pnote->descsz)
21660 {
21661 case 0:
21662 /* A zero-length description means that the range of
21663 the previous note of the same type should be used. */
21664 if (is_open_attr)
21665 {
21666 if (global_end > global_offset)
21667 printf (_(" Applies to region from %#" PRIx64
21668 " to %#" PRIx64 "\n"), global_offset, global_end);
21669 else
21670 printf (_(" Applies to region from %#" PRIx64
21671 "\n"), global_offset);
21672 }
21673 else
21674 {
21675 if (func_end > func_offset)
21676 printf (_(" Applies to region from %#" PRIx64
21677 " to %#" PRIx64 "\n"), func_offset, func_end);
21678 else
21679 printf (_(" Applies to region from %#" PRIx64
21680 "\n"), func_offset);
21681 }
21682 return true;
21683
21684 case 4:
21685 start = byte_get ((unsigned char *) pnote->descdata, 4);
21686 end = 0;
21687 break;
21688
21689 case 8:
21690 start = byte_get ((unsigned char *) pnote->descdata, 4);
21691 end = byte_get ((unsigned char *) pnote->descdata + 4, 4);
21692 break;
21693
21694 case 16:
21695 start = byte_get ((unsigned char *) pnote->descdata, 8);
21696 end = byte_get ((unsigned char *) pnote->descdata + 8, 8);
21697 break;
21698
21699 default:
21700 error (_(" <invalid description size: %lx>\n"), pnote->descsz);
21701 printf (_(" <invalid descsz>"));
21702 return false;
21703 }
21704
21705 name = NULL;
21706 sym = get_symbol_for_build_attribute (filedata, start, is_open_attr, & name);
21707 /* As of version 5 of the annobin plugin, filename symbols are biased by 2
21708 in order to avoid them being confused with the start address of the
21709 first function in the file... */
21710 if (sym == NULL && is_open_attr)
21711 sym = get_symbol_for_build_attribute (filedata, start + 2, is_open_attr,
21712 & name);
21713
21714 if (end == 0 && sym != NULL && sym->st_size > 0)
21715 end = start + sym->st_size;
21716
21717 if (is_open_attr)
21718 {
21719 /* FIXME: Need to properly allow for section alignment.
21720 16 is just the alignment used on x86_64. */
21721 if (global_end > 0
21722 && start > BFD_ALIGN (global_end, 16)
21723 /* Build notes are not guaranteed to be organised in order of
21724 increasing address, but we should find the all of the notes
21725 for one section in the same place. */
21726 && same_section (filedata, start, global_end))
21727 warn (_("Gap in build notes detected from %#" PRIx64
21728 " to %#" PRIx64 "\n"),
21729 global_end + 1, start - 1);
21730
21731 printf (_(" Applies to region from %#" PRIx64), start);
21732 global_offset = start;
21733
21734 if (end)
21735 {
21736 printf (_(" to %#" PRIx64), end);
21737 global_end = end;
21738 }
21739 }
21740 else
21741 {
21742 printf (_(" Applies to region from %#" PRIx64), start);
21743 func_offset = start;
21744
21745 if (end)
21746 {
21747 printf (_(" to %#" PRIx64), end);
21748 func_end = end;
21749 }
21750 }
21751
21752 if (sym && name)
21753 printf (_(" (%s)"), name);
21754
21755 printf ("\n");
21756 return true;
21757 }
21758
21759 static bool
21760 print_gnu_build_attribute_name (Elf_Internal_Note * pnote)
21761 {
21762 static const char string_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_STRING, 0 };
21763 static const char number_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC, 0 };
21764 static const char bool_expected [3] = { GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE, GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE, 0 };
21765 char name_type;
21766 char name_attribute;
21767 const char * expected_types;
21768 const char * name = pnote->namedata;
21769 const char * text;
21770 signed int left;
21771
21772 if (name == NULL || pnote->namesz < 2)
21773 {
21774 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
21775 print_symbol (-20, _(" <corrupt name>"));
21776 return false;
21777 }
21778
21779 if (do_wide)
21780 left = 28;
21781 else
21782 left = 20;
21783
21784 /* Version 2 of the spec adds a "GA" prefix to the name field. */
21785 if (name[0] == 'G' && name[1] == 'A')
21786 {
21787 if (pnote->namesz < 4)
21788 {
21789 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
21790 print_symbol (-20, _(" <corrupt name>"));
21791 return false;
21792 }
21793
21794 printf ("GA");
21795 name += 2;
21796 left -= 2;
21797 }
21798
21799 switch ((name_type = * name))
21800 {
21801 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
21802 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
21803 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
21804 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
21805 printf ("%c", * name);
21806 left --;
21807 break;
21808 default:
21809 error (_("unrecognised attribute type in name field: %d\n"), name_type);
21810 print_symbol (-20, _("<unknown name type>"));
21811 return false;
21812 }
21813
21814 ++ name;
21815 text = NULL;
21816
21817 switch ((name_attribute = * name))
21818 {
21819 case GNU_BUILD_ATTRIBUTE_VERSION:
21820 text = _("<version>");
21821 expected_types = string_expected;
21822 ++ name;
21823 break;
21824 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
21825 text = _("<stack prot>");
21826 expected_types = "!+*";
21827 ++ name;
21828 break;
21829 case GNU_BUILD_ATTRIBUTE_RELRO:
21830 text = _("<relro>");
21831 expected_types = bool_expected;
21832 ++ name;
21833 break;
21834 case GNU_BUILD_ATTRIBUTE_STACK_SIZE:
21835 text = _("<stack size>");
21836 expected_types = number_expected;
21837 ++ name;
21838 break;
21839 case GNU_BUILD_ATTRIBUTE_TOOL:
21840 text = _("<tool>");
21841 expected_types = string_expected;
21842 ++ name;
21843 break;
21844 case GNU_BUILD_ATTRIBUTE_ABI:
21845 text = _("<ABI>");
21846 expected_types = "$*";
21847 ++ name;
21848 break;
21849 case GNU_BUILD_ATTRIBUTE_PIC:
21850 text = _("<PIC>");
21851 expected_types = number_expected;
21852 ++ name;
21853 break;
21854 case GNU_BUILD_ATTRIBUTE_SHORT_ENUM:
21855 text = _("<short enum>");
21856 expected_types = bool_expected;
21857 ++ name;
21858 break;
21859 default:
21860 if (ISPRINT (* name))
21861 {
21862 int len = strnlen (name, pnote->namesz - (name - pnote->namedata)) + 1;
21863
21864 if (len > left && ! do_wide)
21865 len = left;
21866 printf ("%.*s:", len, name);
21867 left -= len;
21868 name += len;
21869 }
21870 else
21871 {
21872 static char tmpbuf [128];
21873
21874 error (_("unrecognised byte in name field: %d\n"), * name);
21875 sprintf (tmpbuf, _("<unknown:_%d>"), * name);
21876 text = tmpbuf;
21877 name ++;
21878 }
21879 expected_types = "*$!+";
21880 break;
21881 }
21882
21883 if (text)
21884 left -= printf ("%s", text);
21885
21886 if (strchr (expected_types, name_type) == NULL)
21887 warn (_("attribute does not have an expected type (%c)\n"), name_type);
21888
21889 if ((size_t) (name - pnote->namedata) > pnote->namesz)
21890 {
21891 error (_("corrupt name field: namesz: %lu but parsing gets to %td\n"),
21892 pnote->namesz,
21893 name - pnote->namedata);
21894 return false;
21895 }
21896
21897 if (left < 1 && ! do_wide)
21898 return true;
21899
21900 switch (name_type)
21901 {
21902 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
21903 {
21904 unsigned int bytes;
21905 uint64_t val = 0;
21906 unsigned int shift = 0;
21907 char *decoded = NULL;
21908
21909 bytes = pnote->namesz - (name - pnote->namedata);
21910 if (bytes > 0)
21911 /* The -1 is because the name field is always 0 terminated, and we
21912 want to be able to ensure that the shift in the while loop below
21913 will not overflow. */
21914 -- bytes;
21915
21916 if (bytes > sizeof (val))
21917 {
21918 error (_("corrupt numeric name field: too many bytes in the value: %x\n"),
21919 bytes);
21920 bytes = sizeof (val);
21921 }
21922 /* We do not bother to warn if bytes == 0 as this can
21923 happen with some early versions of the gcc plugin. */
21924
21925 while (bytes --)
21926 {
21927 uint64_t byte = *name++ & 0xff;
21928
21929 val |= byte << shift;
21930 shift += 8;
21931 }
21932
21933 switch (name_attribute)
21934 {
21935 case GNU_BUILD_ATTRIBUTE_PIC:
21936 switch (val)
21937 {
21938 case 0: decoded = "static"; break;
21939 case 1: decoded = "pic"; break;
21940 case 2: decoded = "PIC"; break;
21941 case 3: decoded = "pie"; break;
21942 case 4: decoded = "PIE"; break;
21943 default: break;
21944 }
21945 break;
21946 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
21947 switch (val)
21948 {
21949 /* Based upon the SPCT_FLAG_xxx enum values in gcc/cfgexpand.c. */
21950 case 0: decoded = "off"; break;
21951 case 1: decoded = "on"; break;
21952 case 2: decoded = "all"; break;
21953 case 3: decoded = "strong"; break;
21954 case 4: decoded = "explicit"; break;
21955 default: break;
21956 }
21957 break;
21958 default:
21959 break;
21960 }
21961
21962 if (decoded != NULL)
21963 {
21964 print_symbol (-left, decoded);
21965 left = 0;
21966 }
21967 else if (val == 0)
21968 {
21969 printf ("0x0");
21970 left -= 3;
21971 }
21972 else
21973 {
21974 if (do_wide)
21975 left -= printf ("0x%" PRIx64, val);
21976 else
21977 left -= printf ("0x%-.*" PRIx64, left, val);
21978 }
21979 }
21980 break;
21981 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
21982 left -= print_symbol (- left, name);
21983 break;
21984 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
21985 left -= print_symbol (- left, "true");
21986 break;
21987 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
21988 left -= print_symbol (- left, "false");
21989 break;
21990 }
21991
21992 if (do_wide && left > 0)
21993 printf ("%-*s", left, " ");
21994
21995 return true;
21996 }
21997
21998 /* Print the contents of PNOTE as hex. */
21999
22000 static void
22001 print_note_contents_hex (Elf_Internal_Note *pnote)
22002 {
22003 if (pnote->descsz)
22004 {
22005 size_t i;
22006
22007 printf (_(" description data: "));
22008 for (i = 0; i < pnote->descsz; i++)
22009 printf ("%02x ", pnote->descdata[i] & 0xff);
22010 if (!do_wide)
22011 printf ("\n");
22012 }
22013
22014 if (do_wide)
22015 printf ("\n");
22016 }
22017
22018 #if defined HAVE_MSGPACK
22019
22020 static void
22021 print_indents (int n)
22022 {
22023 printf (" ");
22024
22025 for (int i = 0; i < n; i++)
22026 printf (" ");
22027 }
22028
22029 /* Print OBJ in human-readable form. */
22030
22031 static void
22032 dump_msgpack_obj (const msgpack_object *obj, int indent)
22033 {
22034 switch (obj->type)
22035 {
22036 case MSGPACK_OBJECT_NIL:
22037 printf ("(nil)");
22038 break;
22039
22040 case MSGPACK_OBJECT_BOOLEAN:
22041 printf ("%s", obj->via.boolean ? "true" : "false");
22042 break;
22043
22044 case MSGPACK_OBJECT_POSITIVE_INTEGER:
22045 printf ("%" PRIu64, obj->via.u64);
22046 break;
22047
22048 case MSGPACK_OBJECT_NEGATIVE_INTEGER:
22049 printf ("%" PRIi64, obj->via.i64);
22050 break;
22051
22052 case MSGPACK_OBJECT_FLOAT32:
22053 case MSGPACK_OBJECT_FLOAT64:
22054 printf ("%f", obj->via.f64);
22055 break;
22056
22057 case MSGPACK_OBJECT_STR:
22058 printf ("\"%.*s\"", obj->via.str.size, obj->via.str.ptr);
22059 break;
22060
22061 case MSGPACK_OBJECT_ARRAY:
22062 {
22063 const msgpack_object_array *array = &obj->via.array;
22064
22065 printf ("[\n");
22066 ++indent;
22067
22068 for (uint32_t i = 0; i < array->size; ++i)
22069 {
22070 const msgpack_object *item = &array->ptr[i];
22071
22072 print_indents (indent);
22073 dump_msgpack_obj (item, indent);
22074 printf (",\n");
22075 }
22076
22077 --indent;
22078 print_indents (indent);
22079 printf ("]");
22080 break;
22081 }
22082 break;
22083
22084 case MSGPACK_OBJECT_MAP:
22085 {
22086 const msgpack_object_map *map = &obj->via.map;
22087
22088 printf ("{\n");
22089 ++indent;
22090
22091 for (uint32_t i = 0; i < map->size; ++i)
22092 {
22093 const msgpack_object_kv *kv = &map->ptr[i];
22094 const msgpack_object *key = &kv->key;
22095 const msgpack_object *val = &kv->val;
22096
22097 print_indents (indent);
22098 dump_msgpack_obj (key, indent);
22099 printf (": ");
22100 dump_msgpack_obj (val, indent);
22101
22102 printf (",\n");
22103 }
22104
22105 --indent;
22106 print_indents (indent);
22107 printf ("}");
22108
22109 break;
22110 }
22111
22112 case MSGPACK_OBJECT_BIN:
22113 printf ("(bin)");
22114 break;
22115
22116 case MSGPACK_OBJECT_EXT:
22117 printf ("(ext)");
22118 break;
22119 }
22120 }
22121
22122 static void
22123 dump_msgpack (const msgpack_unpacked *msg)
22124 {
22125 print_indents (0);
22126 dump_msgpack_obj (&msg->data, 0);
22127 printf ("\n");
22128 }
22129
22130 #endif /* defined HAVE_MSGPACK */
22131
22132 static bool
22133 print_amdgpu_note (Elf_Internal_Note *pnote)
22134 {
22135 #if defined HAVE_MSGPACK
22136 /* If msgpack is available, decode and dump the note's content. */
22137 bool ret;
22138 msgpack_unpacked msg;
22139 msgpack_unpack_return msgpack_ret;
22140
22141 assert (pnote->type == NT_AMDGPU_METADATA);
22142
22143 msgpack_unpacked_init (&msg);
22144 msgpack_ret = msgpack_unpack_next (&msg, pnote->descdata, pnote->descsz,
22145 NULL);
22146
22147 switch (msgpack_ret)
22148 {
22149 case MSGPACK_UNPACK_SUCCESS:
22150 dump_msgpack (&msg);
22151 ret = true;
22152 break;
22153
22154 default:
22155 error (_("failed to unpack msgpack contents in NT_AMDGPU_METADATA note"));
22156 ret = false;
22157 break;
22158 }
22159
22160 msgpack_unpacked_destroy (&msg);
22161 return ret;
22162 #else
22163 /* msgpack is not available, dump contents as hex. */
22164 print_note_contents_hex (pnote);
22165 return true;
22166 #endif
22167 }
22168
22169 static bool
22170 print_qnx_note (Elf_Internal_Note *pnote)
22171 {
22172 switch (pnote->type)
22173 {
22174 case QNT_STACK:
22175 if (pnote->descsz != 12)
22176 goto desc_size_fail;
22177
22178 printf (_(" Stack Size: 0x%" PRIx32 "\n"),
22179 (unsigned) byte_get ((unsigned char *) pnote->descdata, 4));
22180 printf (_(" Stack allocated: %" PRIx32 "\n"),
22181 (unsigned) byte_get ((unsigned char *) pnote->descdata + 4, 4));
22182 printf (_(" Executable: %s\n"),
22183 ((unsigned) byte_get ((unsigned char *) pnote->descdata + 8, 1)) ? "no": "yes");
22184 break;
22185
22186 default:
22187 print_note_contents_hex(pnote);
22188 }
22189 return true;
22190
22191 desc_size_fail:
22192 printf (_(" <corrupt - data size is too small>\n"));
22193 error (_("corrupt QNX note: data size is too small\n"));
22194 return false;
22195 }
22196
22197
22198 /* Note that by the ELF standard, the name field is already null byte
22199 terminated, and namesz includes the terminating null byte.
22200 I.E. the value of namesz for the name "FSF" is 4.
22201
22202 If the value of namesz is zero, there is no name present. */
22203
22204 static bool
22205 process_note (Elf_Internal_Note * pnote,
22206 Filedata * filedata)
22207 {
22208 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
22209 const char * nt;
22210
22211 if (pnote->namesz == 0)
22212 /* If there is no note name, then use the default set of
22213 note type strings. */
22214 nt = get_note_type (filedata, pnote->type);
22215
22216 else if (startswith (pnote->namedata, "GNU"))
22217 /* GNU-specific object file notes. */
22218 nt = get_gnu_elf_note_type (pnote->type);
22219
22220 else if (startswith (pnote->namedata, "AMDGPU"))
22221 /* AMDGPU-specific object file notes. */
22222 nt = get_amdgpu_elf_note_type (pnote->type);
22223
22224 else if (startswith (pnote->namedata, "FreeBSD"))
22225 /* FreeBSD-specific core file notes. */
22226 nt = get_freebsd_elfcore_note_type (filedata, pnote->type);
22227
22228 else if (startswith (pnote->namedata, "NetBSD-CORE"))
22229 /* NetBSD-specific core file notes. */
22230 nt = get_netbsd_elfcore_note_type (filedata, pnote->type);
22231
22232 else if (startswith (pnote->namedata, "NetBSD"))
22233 /* NetBSD-specific core file notes. */
22234 return process_netbsd_elf_note (pnote);
22235
22236 else if (startswith (pnote->namedata, "PaX"))
22237 /* NetBSD-specific core file notes. */
22238 return process_netbsd_elf_note (pnote);
22239
22240 else if (startswith (pnote->namedata, "OpenBSD"))
22241 /* OpenBSD-specific core file notes. */
22242 nt = get_openbsd_elfcore_note_type (filedata, pnote->type);
22243
22244 else if (startswith (pnote->namedata, "QNX"))
22245 /* QNX-specific core file notes. */
22246 nt = get_qnx_elfcore_note_type (filedata, pnote->type);
22247
22248 else if (startswith (pnote->namedata, "SPU/"))
22249 {
22250 /* SPU-specific core file notes. */
22251 nt = pnote->namedata + 4;
22252 name = "SPU";
22253 }
22254
22255 else if (startswith (pnote->namedata, "IPF/VMS"))
22256 /* VMS/ia64-specific file notes. */
22257 nt = get_ia64_vms_note_type (pnote->type);
22258
22259 else if (startswith (pnote->namedata, "stapsdt"))
22260 nt = get_stapsdt_note_type (pnote->type);
22261
22262 else
22263 /* Don't recognize this note name; just use the default set of
22264 note type strings. */
22265 nt = get_note_type (filedata, pnote->type);
22266
22267 printf (" ");
22268
22269 if (((startswith (pnote->namedata, "GA")
22270 && strchr ("*$!+", pnote->namedata[2]) != NULL)
22271 || strchr ("*$!+", pnote->namedata[0]) != NULL)
22272 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
22273 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
22274 print_gnu_build_attribute_name (pnote);
22275 else
22276 print_symbol (-20, name);
22277
22278 if (do_wide)
22279 printf (" 0x%08lx\t%s\t", pnote->descsz, nt);
22280 else
22281 printf (" 0x%08lx\t%s\n", pnote->descsz, nt);
22282
22283 if (startswith (pnote->namedata, "IPF/VMS"))
22284 return print_ia64_vms_note (pnote);
22285 else if (startswith (pnote->namedata, "GNU"))
22286 return print_gnu_note (filedata, pnote);
22287 else if (startswith (pnote->namedata, "stapsdt"))
22288 return print_stapsdt_note (pnote);
22289 else if (startswith (pnote->namedata, "CORE"))
22290 return print_core_note (pnote);
22291 else if (startswith (pnote->namedata, "FDO"))
22292 return print_fdo_note (pnote);
22293 else if (((startswith (pnote->namedata, "GA")
22294 && strchr ("*$!+", pnote->namedata[2]) != NULL)
22295 || strchr ("*$!+", pnote->namedata[0]) != NULL)
22296 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
22297 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
22298 return print_gnu_build_attribute_description (pnote, filedata);
22299 else if (startswith (pnote->namedata, "AMDGPU")
22300 && pnote->type == NT_AMDGPU_METADATA)
22301 return print_amdgpu_note (pnote);
22302 else if (startswith (pnote->namedata, "QNX"))
22303 return print_qnx_note (pnote);
22304
22305 print_note_contents_hex (pnote);
22306 return true;
22307 }
22308
22309 static bool
22310 process_notes_at (Filedata * filedata,
22311 Elf_Internal_Shdr * section,
22312 uint64_t offset,
22313 uint64_t length,
22314 uint64_t align)
22315 {
22316 Elf_External_Note *pnotes;
22317 Elf_External_Note *external;
22318 char *end;
22319 bool res = true;
22320
22321 if (length <= 0)
22322 return false;
22323
22324 if (section)
22325 {
22326 pnotes = (Elf_External_Note *) get_section_contents (section, filedata);
22327 if (pnotes)
22328 {
22329 if (! apply_relocations (filedata, section, (unsigned char *) pnotes, length, NULL, NULL))
22330 {
22331 free (pnotes);
22332 return false;
22333 }
22334 }
22335 }
22336 else
22337 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
22338 _("notes"));
22339
22340 if (pnotes == NULL)
22341 return false;
22342
22343 external = pnotes;
22344
22345 if (filedata->is_separate)
22346 printf (_("In linked file '%s': "), filedata->file_name);
22347 else
22348 printf ("\n");
22349 if (section)
22350 printf (_("Displaying notes found in: %s\n"), printable_section_name (filedata, section));
22351 else
22352 printf (_("Displaying notes found at file offset 0x%08" PRIx64
22353 " with length 0x%08" PRIx64 ":\n"),
22354 offset, length);
22355
22356 /* NB: Some note sections may have alignment value of 0 or 1. gABI
22357 specifies that notes should be aligned to 4 bytes in 32-bit
22358 objects and to 8 bytes in 64-bit objects. As a Linux extension,
22359 we also support 4 byte alignment in 64-bit objects. If section
22360 alignment is less than 4, we treate alignment as 4 bytes. */
22361 if (align < 4)
22362 align = 4;
22363 else if (align != 4 && align != 8)
22364 {
22365 warn (_("Corrupt note: alignment %" PRId64 ", expecting 4 or 8\n"),
22366 align);
22367 free (pnotes);
22368 return false;
22369 }
22370
22371 printf (_(" %-20s %-10s\tDescription\n"), _("Owner"), _("Data size"));
22372
22373 end = (char *) pnotes + length;
22374 while ((char *) external < end)
22375 {
22376 Elf_Internal_Note inote;
22377 size_t min_notesz;
22378 char * next;
22379 char * temp = NULL;
22380 size_t data_remaining = end - (char *) external;
22381
22382 if (!is_ia64_vms (filedata))
22383 {
22384 /* PR binutils/15191
22385 Make sure that there is enough data to read. */
22386 min_notesz = offsetof (Elf_External_Note, name);
22387 if (data_remaining < min_notesz)
22388 {
22389 warn (ngettext ("Corrupt note: only %zd byte remains, "
22390 "not enough for a full note\n",
22391 "Corrupt note: only %zd bytes remain, "
22392 "not enough for a full note\n",
22393 data_remaining),
22394 data_remaining);
22395 break;
22396 }
22397 data_remaining -= min_notesz;
22398
22399 inote.type = BYTE_GET (external->type);
22400 inote.namesz = BYTE_GET (external->namesz);
22401 inote.namedata = external->name;
22402 inote.descsz = BYTE_GET (external->descsz);
22403 inote.descdata = ((char *) external
22404 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
22405 inote.descpos = offset + (inote.descdata - (char *) pnotes);
22406 next = ((char *) external
22407 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
22408 }
22409 else
22410 {
22411 Elf64_External_VMS_Note *vms_external;
22412
22413 /* PR binutils/15191
22414 Make sure that there is enough data to read. */
22415 min_notesz = offsetof (Elf64_External_VMS_Note, name);
22416 if (data_remaining < min_notesz)
22417 {
22418 warn (ngettext ("Corrupt note: only %zd byte remains, "
22419 "not enough for a full note\n",
22420 "Corrupt note: only %zd bytes remain, "
22421 "not enough for a full note\n",
22422 data_remaining),
22423 data_remaining);
22424 break;
22425 }
22426 data_remaining -= min_notesz;
22427
22428 vms_external = (Elf64_External_VMS_Note *) external;
22429 inote.type = BYTE_GET (vms_external->type);
22430 inote.namesz = BYTE_GET (vms_external->namesz);
22431 inote.namedata = vms_external->name;
22432 inote.descsz = BYTE_GET (vms_external->descsz);
22433 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
22434 inote.descpos = offset + (inote.descdata - (char *) pnotes);
22435 next = inote.descdata + align_power (inote.descsz, 3);
22436 }
22437
22438 /* PR 17531: file: 3443835e. */
22439 /* PR 17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
22440 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
22441 || (size_t) (inote.descdata - inote.namedata) > data_remaining
22442 || (size_t) (next - inote.descdata) < inote.descsz
22443 || ((size_t) (next - inote.descdata)
22444 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
22445 {
22446 warn (_("note with invalid namesz and/or descsz found at offset %#tx\n"),
22447 (char *) external - (char *) pnotes);
22448 warn (_(" type: %#lx, namesize: %#lx, descsize: %#lx, alignment: %u\n"),
22449 inote.type, inote.namesz, inote.descsz, (int) align);
22450 break;
22451 }
22452
22453 external = (Elf_External_Note *) next;
22454
22455 /* Verify that name is null terminated. It appears that at least
22456 one version of Linux (RedHat 6.0) generates corefiles that don't
22457 comply with the ELF spec by failing to include the null byte in
22458 namesz. */
22459 if (inote.namesz > 0 && inote.namedata[inote.namesz - 1] != '\0')
22460 {
22461 if ((size_t) (inote.descdata - inote.namedata) == inote.namesz)
22462 {
22463 temp = (char *) malloc (inote.namesz + 1);
22464 if (temp == NULL)
22465 {
22466 error (_("Out of memory allocating space for inote name\n"));
22467 res = false;
22468 break;
22469 }
22470
22471 memcpy (temp, inote.namedata, inote.namesz);
22472 inote.namedata = temp;
22473 }
22474 inote.namedata[inote.namesz] = 0;
22475 }
22476
22477 if (! process_note (& inote, filedata))
22478 res = false;
22479
22480 free (temp);
22481 temp = NULL;
22482 }
22483
22484 free (pnotes);
22485
22486 return res;
22487 }
22488
22489 static bool
22490 process_corefile_note_segments (Filedata * filedata)
22491 {
22492 Elf_Internal_Phdr *segment;
22493 unsigned int i;
22494 bool res = true;
22495
22496 if (! get_program_headers (filedata))
22497 return true;
22498
22499 for (i = 0, segment = filedata->program_headers;
22500 i < filedata->file_header.e_phnum;
22501 i++, segment++)
22502 {
22503 if (segment->p_type == PT_NOTE)
22504 if (! process_notes_at (filedata, NULL, segment->p_offset,
22505 segment->p_filesz, segment->p_align))
22506 res = false;
22507 }
22508
22509 return res;
22510 }
22511
22512 static bool
22513 process_v850_notes (Filedata * filedata, uint64_t offset, uint64_t length)
22514 {
22515 Elf_External_Note * pnotes;
22516 Elf_External_Note * external;
22517 char * end;
22518 bool res = true;
22519
22520 if (length <= 0)
22521 return false;
22522
22523 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
22524 _("v850 notes"));
22525 if (pnotes == NULL)
22526 return false;
22527
22528 external = pnotes;
22529 end = (char*) pnotes + length;
22530
22531 printf (_("\nDisplaying contents of Renesas V850 notes section at offset"
22532 " %#" PRIx64 " with length %#" PRIx64 ":\n"),
22533 offset, length);
22534
22535 while ((char *) external + sizeof (Elf_External_Note) < end)
22536 {
22537 Elf_External_Note * next;
22538 Elf_Internal_Note inote;
22539
22540 inote.type = BYTE_GET (external->type);
22541 inote.namesz = BYTE_GET (external->namesz);
22542 inote.namedata = external->name;
22543 inote.descsz = BYTE_GET (external->descsz);
22544 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
22545 inote.descpos = offset + (inote.descdata - (char *) pnotes);
22546
22547 if (inote.descdata < (char *) pnotes || inote.descdata >= end)
22548 {
22549 warn (_("Corrupt note: name size is too big: %lx\n"), inote.namesz);
22550 inote.descdata = inote.namedata;
22551 inote.namesz = 0;
22552 }
22553
22554 next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2));
22555
22556 if ( ((char *) next > end)
22557 || ((char *) next < (char *) pnotes))
22558 {
22559 warn (_("corrupt descsz found in note at offset %#tx\n"),
22560 (char *) external - (char *) pnotes);
22561 warn (_(" type: %#lx, namesize: %#lx, descsize: %#lx\n"),
22562 inote.type, inote.namesz, inote.descsz);
22563 break;
22564 }
22565
22566 external = next;
22567
22568 /* Prevent out-of-bounds indexing. */
22569 if ( inote.namedata + inote.namesz > end
22570 || inote.namedata + inote.namesz < inote.namedata)
22571 {
22572 warn (_("corrupt namesz found in note at offset %#zx\n"),
22573 (char *) external - (char *) pnotes);
22574 warn (_(" type: %#lx, namesize: %#lx, descsize: %#lx\n"),
22575 inote.type, inote.namesz, inote.descsz);
22576 break;
22577 }
22578
22579 printf (" %s: ", get_v850_elf_note_type (inote.type));
22580
22581 if (! print_v850_note (& inote))
22582 {
22583 res = false;
22584 printf ("<corrupt sizes: namesz: %#lx, descsz: %#lx>\n",
22585 inote.namesz, inote.descsz);
22586 }
22587 }
22588
22589 free (pnotes);
22590
22591 return res;
22592 }
22593
22594 static bool
22595 process_note_sections (Filedata * filedata)
22596 {
22597 Elf_Internal_Shdr *section;
22598 size_t i;
22599 unsigned int n = 0;
22600 bool res = true;
22601
22602 for (i = 0, section = filedata->section_headers;
22603 i < filedata->file_header.e_shnum && section != NULL;
22604 i++, section++)
22605 {
22606 if (section->sh_type == SHT_NOTE)
22607 {
22608 if (! process_notes_at (filedata, section, section->sh_offset,
22609 section->sh_size, section->sh_addralign))
22610 res = false;
22611 n++;
22612 }
22613
22614 if (( filedata->file_header.e_machine == EM_V800
22615 || filedata->file_header.e_machine == EM_V850
22616 || filedata->file_header.e_machine == EM_CYGNUS_V850)
22617 && section->sh_type == SHT_RENESAS_INFO)
22618 {
22619 if (! process_v850_notes (filedata, section->sh_offset,
22620 section->sh_size))
22621 res = false;
22622 n++;
22623 }
22624 }
22625
22626 if (n == 0)
22627 /* Try processing NOTE segments instead. */
22628 return process_corefile_note_segments (filedata);
22629
22630 return res;
22631 }
22632
22633 static bool
22634 process_notes (Filedata * filedata)
22635 {
22636 /* If we have not been asked to display the notes then do nothing. */
22637 if (! do_notes)
22638 return true;
22639
22640 if (filedata->file_header.e_type != ET_CORE)
22641 return process_note_sections (filedata);
22642
22643 /* No program headers means no NOTE segment. */
22644 if (filedata->file_header.e_phnum > 0)
22645 return process_corefile_note_segments (filedata);
22646
22647 if (filedata->is_separate)
22648 printf (_("No notes found in linked file '%s'.\n"),
22649 filedata->file_name);
22650 else
22651 printf (_("No notes found file.\n"));
22652
22653 return true;
22654 }
22655
22656 static unsigned char *
22657 display_public_gnu_attributes (unsigned char * start,
22658 const unsigned char * const end)
22659 {
22660 printf (_(" Unknown GNU attribute: %s\n"), start);
22661
22662 start += strnlen ((char *) start, end - start);
22663 display_raw_attribute (start, end);
22664
22665 return (unsigned char *) end;
22666 }
22667
22668 static unsigned char *
22669 display_generic_attribute (unsigned char * start,
22670 unsigned int tag,
22671 const unsigned char * const end)
22672 {
22673 if (tag == 0)
22674 return (unsigned char *) end;
22675
22676 return display_tag_value (tag, start, end);
22677 }
22678
22679 static bool
22680 process_arch_specific (Filedata * filedata)
22681 {
22682 if (! do_arch)
22683 return true;
22684
22685 switch (filedata->file_header.e_machine)
22686 {
22687 case EM_ARC:
22688 case EM_ARC_COMPACT:
22689 case EM_ARC_COMPACT2:
22690 case EM_ARC_COMPACT3:
22691 case EM_ARC_COMPACT3_64:
22692 return process_attributes (filedata, "ARC", SHT_ARC_ATTRIBUTES,
22693 display_arc_attribute,
22694 display_generic_attribute);
22695 case EM_ARM:
22696 return process_attributes (filedata, "aeabi", SHT_ARM_ATTRIBUTES,
22697 display_arm_attribute,
22698 display_generic_attribute);
22699
22700 case EM_MIPS:
22701 case EM_MIPS_RS3_LE:
22702 return process_mips_specific (filedata);
22703
22704 case EM_MSP430:
22705 return process_attributes (filedata, "mspabi", SHT_MSP430_ATTRIBUTES,
22706 display_msp430_attribute,
22707 display_msp430_gnu_attribute);
22708
22709 case EM_RISCV:
22710 return process_attributes (filedata, "riscv", SHT_RISCV_ATTRIBUTES,
22711 display_riscv_attribute,
22712 display_generic_attribute);
22713
22714 case EM_NDS32:
22715 return process_nds32_specific (filedata);
22716
22717 case EM_68K:
22718 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
22719 display_m68k_gnu_attribute);
22720
22721 case EM_PPC:
22722 case EM_PPC64:
22723 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
22724 display_power_gnu_attribute);
22725
22726 case EM_S390:
22727 case EM_S390_OLD:
22728 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
22729 display_s390_gnu_attribute);
22730
22731 case EM_SPARC:
22732 case EM_SPARC32PLUS:
22733 case EM_SPARCV9:
22734 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
22735 display_sparc_gnu_attribute);
22736
22737 case EM_TI_C6000:
22738 return process_attributes (filedata, "c6xabi", SHT_C6000_ATTRIBUTES,
22739 display_tic6x_attribute,
22740 display_generic_attribute);
22741
22742 case EM_CSKY:
22743 return process_attributes (filedata, "csky", SHT_CSKY_ATTRIBUTES,
22744 display_csky_attribute, NULL);
22745
22746 default:
22747 return process_attributes (filedata, "gnu", SHT_GNU_ATTRIBUTES,
22748 display_public_gnu_attributes,
22749 display_generic_attribute);
22750 }
22751 }
22752
22753 static bool
22754 get_file_header (Filedata * filedata)
22755 {
22756 /* Read in the identity array. */
22757 if (fread (filedata->file_header.e_ident, EI_NIDENT, 1, filedata->handle) != 1)
22758 return false;
22759
22760 /* Determine how to read the rest of the header. */
22761 switch (filedata->file_header.e_ident[EI_DATA])
22762 {
22763 default:
22764 case ELFDATANONE:
22765 case ELFDATA2LSB:
22766 byte_get = byte_get_little_endian;
22767 byte_put = byte_put_little_endian;
22768 break;
22769 case ELFDATA2MSB:
22770 byte_get = byte_get_big_endian;
22771 byte_put = byte_put_big_endian;
22772 break;
22773 }
22774
22775 /* For now we only support 32 bit and 64 bit ELF files. */
22776 is_32bit_elf = (filedata->file_header.e_ident[EI_CLASS] != ELFCLASS64);
22777
22778 /* Read in the rest of the header. */
22779 if (is_32bit_elf)
22780 {
22781 Elf32_External_Ehdr ehdr32;
22782
22783 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, filedata->handle) != 1)
22784 return false;
22785
22786 filedata->file_header.e_type = BYTE_GET (ehdr32.e_type);
22787 filedata->file_header.e_machine = BYTE_GET (ehdr32.e_machine);
22788 filedata->file_header.e_version = BYTE_GET (ehdr32.e_version);
22789 filedata->file_header.e_entry = BYTE_GET (ehdr32.e_entry);
22790 filedata->file_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
22791 filedata->file_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
22792 filedata->file_header.e_flags = BYTE_GET (ehdr32.e_flags);
22793 filedata->file_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
22794 filedata->file_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
22795 filedata->file_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
22796 filedata->file_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
22797 filedata->file_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
22798 filedata->file_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
22799 }
22800 else
22801 {
22802 Elf64_External_Ehdr ehdr64;
22803
22804 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, filedata->handle) != 1)
22805 return false;
22806
22807 filedata->file_header.e_type = BYTE_GET (ehdr64.e_type);
22808 filedata->file_header.e_machine = BYTE_GET (ehdr64.e_machine);
22809 filedata->file_header.e_version = BYTE_GET (ehdr64.e_version);
22810 filedata->file_header.e_entry = BYTE_GET (ehdr64.e_entry);
22811 filedata->file_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
22812 filedata->file_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
22813 filedata->file_header.e_flags = BYTE_GET (ehdr64.e_flags);
22814 filedata->file_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
22815 filedata->file_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
22816 filedata->file_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
22817 filedata->file_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
22818 filedata->file_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
22819 filedata->file_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
22820 }
22821
22822 return true;
22823 }
22824
22825 static void
22826 free_filedata (Filedata *filedata)
22827 {
22828 free (filedata->program_interpreter);
22829 free (filedata->program_headers);
22830 free (filedata->section_headers);
22831 free (filedata->string_table);
22832 free (filedata->dump.dump_sects);
22833 free (filedata->dynamic_strings);
22834 free (filedata->dynamic_symbols);
22835 free (filedata->dynamic_syminfo);
22836 free (filedata->dynamic_section);
22837
22838 while (filedata->symtab_shndx_list != NULL)
22839 {
22840 elf_section_list *next = filedata->symtab_shndx_list->next;
22841 free (filedata->symtab_shndx_list);
22842 filedata->symtab_shndx_list = next;
22843 }
22844
22845 free (filedata->section_headers_groups);
22846
22847 if (filedata->section_groups)
22848 {
22849 size_t i;
22850 struct group_list * g;
22851 struct group_list * next;
22852
22853 for (i = 0; i < filedata->group_count; i++)
22854 {
22855 for (g = filedata->section_groups [i].root; g != NULL; g = next)
22856 {
22857 next = g->next;
22858 free (g);
22859 }
22860 }
22861
22862 free (filedata->section_groups);
22863 }
22864 memset (&filedata->section_headers, 0,
22865 sizeof (Filedata) - offsetof (Filedata, section_headers));
22866 }
22867
22868 static void
22869 close_file (Filedata * filedata)
22870 {
22871 if (filedata)
22872 {
22873 if (filedata->handle)
22874 fclose (filedata->handle);
22875 free (filedata);
22876 }
22877 }
22878
22879 void
22880 close_debug_file (void * data)
22881 {
22882 free_filedata ((Filedata *) data);
22883 close_file ((Filedata *) data);
22884 }
22885
22886 static Filedata *
22887 open_file (const char * pathname, bool is_separate)
22888 {
22889 struct stat statbuf;
22890 Filedata * filedata = NULL;
22891
22892 if (stat (pathname, & statbuf) < 0
22893 || ! S_ISREG (statbuf.st_mode))
22894 goto fail;
22895
22896 filedata = calloc (1, sizeof * filedata);
22897 if (filedata == NULL)
22898 goto fail;
22899
22900 filedata->handle = fopen (pathname, "rb");
22901 if (filedata->handle == NULL)
22902 goto fail;
22903
22904 filedata->file_size = statbuf.st_size;
22905 filedata->file_name = pathname;
22906 filedata->is_separate = is_separate;
22907
22908 if (! get_file_header (filedata))
22909 goto fail;
22910
22911 if (!get_section_headers (filedata, false))
22912 goto fail;
22913
22914 return filedata;
22915
22916 fail:
22917 if (filedata)
22918 {
22919 if (filedata->handle)
22920 fclose (filedata->handle);
22921 free (filedata);
22922 }
22923 return NULL;
22924 }
22925
22926 void *
22927 open_debug_file (const char * pathname)
22928 {
22929 return open_file (pathname, true);
22930 }
22931
22932 static void
22933 initialise_dump_sects (Filedata * filedata)
22934 {
22935 /* Initialise the dump_sects array from the cmdline_dump_sects array.
22936 Note we do this even if cmdline_dump_sects is empty because we
22937 must make sure that the dump_sets array is zeroed out before each
22938 object file is processed. */
22939 if (filedata->dump.num_dump_sects > cmdline.num_dump_sects)
22940 memset (filedata->dump.dump_sects, 0,
22941 filedata->dump.num_dump_sects * sizeof (*filedata->dump.dump_sects));
22942
22943 if (cmdline.num_dump_sects > 0)
22944 {
22945 if (filedata->dump.num_dump_sects == 0)
22946 /* A sneaky way of allocating the dump_sects array. */
22947 request_dump_bynumber (&filedata->dump, cmdline.num_dump_sects, 0);
22948
22949 assert (filedata->dump.num_dump_sects >= cmdline.num_dump_sects);
22950 memcpy (filedata->dump.dump_sects, cmdline.dump_sects,
22951 cmdline.num_dump_sects * sizeof (*filedata->dump.dump_sects));
22952 }
22953 }
22954
22955 static bool
22956 might_need_separate_debug_info (Filedata * filedata)
22957 {
22958 /* Debuginfo files do not need further separate file loading. */
22959 if (filedata->file_header.e_shstrndx == SHN_UNDEF)
22960 return false;
22961
22962 /* Since do_follow_links might be enabled by default, only treat it as an
22963 indication that separate files should be loaded if setting it was a
22964 deliberate user action. */
22965 if (DEFAULT_FOR_FOLLOW_LINKS == 0 && do_follow_links)
22966 return true;
22967
22968 if (process_links || do_syms || do_unwind
22969 || dump_any_debugging || do_dump || do_debugging)
22970 return true;
22971
22972 return false;
22973 }
22974
22975 /* Process one ELF object file according to the command line options.
22976 This file may actually be stored in an archive. The file is
22977 positioned at the start of the ELF object. Returns TRUE if no
22978 problems were encountered, FALSE otherwise. */
22979
22980 static bool
22981 process_object (Filedata * filedata)
22982 {
22983 bool have_separate_files;
22984 unsigned int i;
22985 bool res;
22986
22987 if (! get_file_header (filedata))
22988 {
22989 error (_("%s: Failed to read file header\n"), filedata->file_name);
22990 return false;
22991 }
22992
22993 /* Initialise per file variables. */
22994 for (i = ARRAY_SIZE (filedata->version_info); i--;)
22995 filedata->version_info[i] = 0;
22996
22997 for (i = ARRAY_SIZE (filedata->dynamic_info); i--;)
22998 filedata->dynamic_info[i] = 0;
22999 filedata->dynamic_info_DT_GNU_HASH = 0;
23000 filedata->dynamic_info_DT_MIPS_XHASH = 0;
23001
23002 /* Process the file. */
23003 if (show_name)
23004 printf (_("\nFile: %s\n"), filedata->file_name);
23005
23006 initialise_dump_sects (filedata);
23007
23008 /* There may be some extensions in the first section header. Don't
23009 bomb if we can't read it. */
23010 get_section_headers (filedata, true);
23011
23012 if (! process_file_header (filedata))
23013 {
23014 res = false;
23015 goto out;
23016 }
23017
23018 /* Throw away the single section header read above, so that we
23019 re-read the entire set. */
23020 free (filedata->section_headers);
23021 filedata->section_headers = NULL;
23022
23023 if (! process_section_headers (filedata))
23024 {
23025 /* Without loaded section headers we cannot process lots of things. */
23026 do_unwind = do_version = do_dump = do_arch = false;
23027
23028 if (! do_using_dynamic)
23029 do_syms = do_dyn_syms = do_reloc = false;
23030 }
23031
23032 if (! process_section_groups (filedata))
23033 /* Without loaded section groups we cannot process unwind. */
23034 do_unwind = false;
23035
23036 process_program_headers (filedata);
23037
23038 res = process_dynamic_section (filedata);
23039
23040 if (! process_relocs (filedata))
23041 res = false;
23042
23043 if (! process_unwind (filedata))
23044 res = false;
23045
23046 if (! process_symbol_table (filedata))
23047 res = false;
23048
23049 if (! process_lto_symbol_tables (filedata))
23050 res = false;
23051
23052 if (! process_syminfo (filedata))
23053 res = false;
23054
23055 if (! process_version_sections (filedata))
23056 res = false;
23057
23058 if (might_need_separate_debug_info (filedata))
23059 have_separate_files = load_separate_debug_files (filedata, filedata->file_name);
23060 else
23061 have_separate_files = false;
23062
23063 if (! process_section_contents (filedata))
23064 res = false;
23065
23066 if (have_separate_files)
23067 {
23068 separate_info * d;
23069
23070 for (d = first_separate_info; d != NULL; d = d->next)
23071 {
23072 initialise_dump_sects (d->handle);
23073
23074 if (process_links && ! process_file_header (d->handle))
23075 res = false;
23076 else if (! process_section_headers (d->handle))
23077 res = false;
23078 else if (! process_section_contents (d->handle))
23079 res = false;
23080 else if (process_links)
23081 {
23082 if (! process_section_groups (d->handle))
23083 res = false;
23084 process_program_headers (d->handle);
23085 if (! process_dynamic_section (d->handle))
23086 res = false;
23087 if (! process_relocs (d->handle))
23088 res = false;
23089 if (! process_unwind (d->handle))
23090 res = false;
23091 if (! process_symbol_table (d->handle))
23092 res = false;
23093 if (! process_lto_symbol_tables (d->handle))
23094 res = false;
23095 if (! process_syminfo (d->handle))
23096 res = false;
23097 if (! process_version_sections (d->handle))
23098 res = false;
23099 if (! process_notes (d->handle))
23100 res = false;
23101 }
23102 }
23103
23104 /* The file handles are closed by the call to free_debug_memory() below. */
23105 }
23106
23107 if (! process_notes (filedata))
23108 res = false;
23109
23110 if (! process_gnu_liblist (filedata))
23111 res = false;
23112
23113 if (! process_arch_specific (filedata))
23114 res = false;
23115
23116 out:
23117 free_filedata (filedata);
23118
23119 free_debug_memory ();
23120
23121 return res;
23122 }
23123
23124 /* Process an ELF archive.
23125 On entry the file is positioned just after the ARMAG string.
23126 Returns TRUE upon success, FALSE otherwise. */
23127
23128 static bool
23129 process_archive (Filedata * filedata, bool is_thin_archive)
23130 {
23131 struct archive_info arch;
23132 struct archive_info nested_arch;
23133 size_t got;
23134 bool ret = true;
23135
23136 show_name = true;
23137
23138 /* The ARCH structure is used to hold information about this archive. */
23139 arch.file_name = NULL;
23140 arch.file = NULL;
23141 arch.index_array = NULL;
23142 arch.sym_table = NULL;
23143 arch.longnames = NULL;
23144
23145 /* The NESTED_ARCH structure is used as a single-item cache of information
23146 about a nested archive (when members of a thin archive reside within
23147 another regular archive file). */
23148 nested_arch.file_name = NULL;
23149 nested_arch.file = NULL;
23150 nested_arch.index_array = NULL;
23151 nested_arch.sym_table = NULL;
23152 nested_arch.longnames = NULL;
23153
23154 if (setup_archive (&arch, filedata->file_name, filedata->handle,
23155 filedata->file_size, is_thin_archive,
23156 do_archive_index) != 0)
23157 {
23158 ret = false;
23159 goto out;
23160 }
23161
23162 if (do_archive_index)
23163 {
23164 if (arch.sym_table == NULL)
23165 error (_("%s: unable to dump the index as none was found\n"),
23166 filedata->file_name);
23167 else
23168 {
23169 uint64_t i, l;
23170 uint64_t current_pos;
23171
23172 printf (_("Index of archive %s: (%" PRIu64 " entries,"
23173 " %#" PRIx64 " bytes in the symbol table)\n"),
23174 filedata->file_name, arch.index_num,
23175 arch.sym_size);
23176
23177 current_pos = ftell (filedata->handle);
23178
23179 for (i = l = 0; i < arch.index_num; i++)
23180 {
23181 if (i == 0
23182 || (i > 0 && arch.index_array[i] != arch.index_array[i - 1]))
23183 {
23184 char * member_name
23185 = get_archive_member_name_at (&arch, arch.index_array[i],
23186 &nested_arch);
23187
23188 if (member_name != NULL)
23189 {
23190 char * qualified_name
23191 = make_qualified_name (&arch, &nested_arch,
23192 member_name);
23193
23194 if (qualified_name != NULL)
23195 {
23196 printf (_("Contents of binary %s at offset "),
23197 qualified_name);
23198 (void) print_vma (arch.index_array[i], PREFIX_HEX);
23199 putchar ('\n');
23200 free (qualified_name);
23201 }
23202 free (member_name);
23203 }
23204 }
23205
23206 if (l >= arch.sym_size)
23207 {
23208 error (_("%s: end of the symbol table reached "
23209 "before the end of the index\n"),
23210 filedata->file_name);
23211 ret = false;
23212 break;
23213 }
23214 /* PR 17531: file: 0b6630b2. */
23215 printf ("\t%.*s\n",
23216 (int) (arch.sym_size - l), arch.sym_table + l);
23217 l += strnlen (arch.sym_table + l, arch.sym_size - l) + 1;
23218 }
23219
23220 if (arch.uses_64bit_indices)
23221 l = (l + 7) & ~ 7;
23222 else
23223 l += l & 1;
23224
23225 if (l < arch.sym_size)
23226 {
23227 error (ngettext ("%s: %" PRId64 " byte remains in the symbol table, "
23228 "but without corresponding entries in "
23229 "the index table\n",
23230 "%s: %" PRId64 " bytes remain in the symbol table, "
23231 "but without corresponding entries in "
23232 "the index table\n",
23233 arch.sym_size - l),
23234 filedata->file_name, arch.sym_size - l);
23235 ret = false;
23236 }
23237
23238 if (fseek64 (filedata->handle, current_pos, SEEK_SET) != 0)
23239 {
23240 error (_("%s: failed to seek back to start of object files "
23241 "in the archive\n"),
23242 filedata->file_name);
23243 ret = false;
23244 goto out;
23245 }
23246 }
23247
23248 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
23249 && !do_segments && !do_header && !do_dump && !do_version
23250 && !do_histogram && !do_debugging && !do_arch && !do_notes
23251 && !do_section_groups && !do_dyn_syms)
23252 {
23253 ret = true; /* Archive index only. */
23254 goto out;
23255 }
23256 }
23257
23258 while (1)
23259 {
23260 char * name;
23261 size_t namelen;
23262 char * qualified_name;
23263
23264 /* Read the next archive header. */
23265 if (fseek64 (filedata->handle, arch.next_arhdr_offset, SEEK_SET) != 0)
23266 {
23267 error (_("%s: failed to seek to next archive header\n"),
23268 arch.file_name);
23269 ret = false;
23270 break;
23271 }
23272 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, filedata->handle);
23273 if (got != sizeof arch.arhdr)
23274 {
23275 if (got == 0)
23276 break;
23277 /* PR 24049 - we cannot use filedata->file_name as this will
23278 have already been freed. */
23279 error (_("%s: failed to read archive header\n"), arch.file_name);
23280
23281 ret = false;
23282 break;
23283 }
23284 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
23285 {
23286 error (_("%s: did not find a valid archive header\n"),
23287 arch.file_name);
23288 ret = false;
23289 break;
23290 }
23291
23292 arch.next_arhdr_offset += sizeof arch.arhdr;
23293
23294 filedata->archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
23295
23296 name = get_archive_member_name (&arch, &nested_arch);
23297 if (name == NULL)
23298 {
23299 error (_("%s: bad archive file name\n"), arch.file_name);
23300 ret = false;
23301 break;
23302 }
23303 namelen = strlen (name);
23304
23305 qualified_name = make_qualified_name (&arch, &nested_arch, name);
23306 if (qualified_name == NULL)
23307 {
23308 error (_("%s: bad archive file name\n"), arch.file_name);
23309 free (name);
23310 ret = false;
23311 break;
23312 }
23313
23314 if (is_thin_archive && arch.nested_member_origin == 0)
23315 {
23316 /* This is a proxy for an external member of a thin archive. */
23317 Filedata * member_filedata;
23318 char * member_file_name = adjust_relative_path
23319 (filedata->file_name, name, namelen);
23320
23321 free (name);
23322 if (member_file_name == NULL)
23323 {
23324 free (qualified_name);
23325 ret = false;
23326 break;
23327 }
23328
23329 member_filedata = open_file (member_file_name, false);
23330 if (member_filedata == NULL)
23331 {
23332 error (_("Input file '%s' is not readable.\n"), member_file_name);
23333 free (member_file_name);
23334 free (qualified_name);
23335 ret = false;
23336 break;
23337 }
23338
23339 filedata->archive_file_offset = arch.nested_member_origin;
23340 member_filedata->file_name = qualified_name;
23341
23342 /* The call to process_object() expects the file to be at the beginning. */
23343 rewind (member_filedata->handle);
23344
23345 if (! process_object (member_filedata))
23346 ret = false;
23347
23348 close_file (member_filedata);
23349 free (member_file_name);
23350 }
23351 else if (is_thin_archive)
23352 {
23353 Filedata thin_filedata;
23354
23355 memset (&thin_filedata, 0, sizeof (thin_filedata));
23356
23357 /* PR 15140: Allow for corrupt thin archives. */
23358 if (nested_arch.file == NULL)
23359 {
23360 error (_("%s: contains corrupt thin archive: %s\n"),
23361 qualified_name, name);
23362 free (qualified_name);
23363 free (name);
23364 ret = false;
23365 break;
23366 }
23367 free (name);
23368
23369 /* This is a proxy for a member of a nested archive. */
23370 filedata->archive_file_offset
23371 = arch.nested_member_origin + sizeof arch.arhdr;
23372
23373 /* The nested archive file will have been opened and setup by
23374 get_archive_member_name. */
23375 if (fseek64 (nested_arch.file, filedata->archive_file_offset,
23376 SEEK_SET) != 0)
23377 {
23378 error (_("%s: failed to seek to archive member.\n"),
23379 nested_arch.file_name);
23380 free (qualified_name);
23381 ret = false;
23382 break;
23383 }
23384
23385 thin_filedata.handle = nested_arch.file;
23386 thin_filedata.file_name = qualified_name;
23387
23388 if (! process_object (& thin_filedata))
23389 ret = false;
23390 }
23391 else
23392 {
23393 free (name);
23394 filedata->archive_file_offset = arch.next_arhdr_offset;
23395 filedata->file_name = qualified_name;
23396 if (! process_object (filedata))
23397 ret = false;
23398 arch.next_arhdr_offset += (filedata->archive_file_size + 1) & -2;
23399 /* Stop looping with "negative" archive_file_size. */
23400 if (arch.next_arhdr_offset < filedata->archive_file_size)
23401 arch.next_arhdr_offset = -1ul;
23402 }
23403
23404 free (qualified_name);
23405 }
23406
23407 out:
23408 if (nested_arch.file != NULL)
23409 fclose (nested_arch.file);
23410 release_archive (&nested_arch);
23411 release_archive (&arch);
23412
23413 return ret;
23414 }
23415
23416 static bool
23417 process_file (char * file_name)
23418 {
23419 Filedata * filedata = NULL;
23420 struct stat statbuf;
23421 char armag[SARMAG];
23422 bool ret = true;
23423
23424 if (stat (file_name, &statbuf) < 0)
23425 {
23426 if (errno == ENOENT)
23427 error (_("'%s': No such file\n"), file_name);
23428 else
23429 error (_("Could not locate '%s'. System error message: %s\n"),
23430 file_name, strerror (errno));
23431 return false;
23432 }
23433
23434 if (! S_ISREG (statbuf.st_mode))
23435 {
23436 error (_("'%s' is not an ordinary file\n"), file_name);
23437 return false;
23438 }
23439
23440 filedata = calloc (1, sizeof * filedata);
23441 if (filedata == NULL)
23442 {
23443 error (_("Out of memory allocating file data structure\n"));
23444 return false;
23445 }
23446
23447 filedata->file_name = file_name;
23448 filedata->handle = fopen (file_name, "rb");
23449 if (filedata->handle == NULL)
23450 {
23451 error (_("Input file '%s' is not readable.\n"), file_name);
23452 free (filedata);
23453 return false;
23454 }
23455
23456 if (fread (armag, SARMAG, 1, filedata->handle) != 1)
23457 {
23458 error (_("%s: Failed to read file's magic number\n"), file_name);
23459 fclose (filedata->handle);
23460 free (filedata);
23461 return false;
23462 }
23463
23464 filedata->file_size = statbuf.st_size;
23465 filedata->is_separate = false;
23466
23467 if (memcmp (armag, ARMAG, SARMAG) == 0)
23468 {
23469 if (! process_archive (filedata, false))
23470 ret = false;
23471 }
23472 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
23473 {
23474 if ( ! process_archive (filedata, true))
23475 ret = false;
23476 }
23477 else
23478 {
23479 if (do_archive_index && !check_all)
23480 error (_("File %s is not an archive so its index cannot be displayed.\n"),
23481 file_name);
23482
23483 rewind (filedata->handle);
23484 filedata->archive_file_size = filedata->archive_file_offset = 0;
23485
23486 if (! process_object (filedata))
23487 ret = false;
23488 }
23489
23490 fclose (filedata->handle);
23491 free (filedata->section_headers);
23492 free (filedata->program_headers);
23493 free (filedata->string_table);
23494 free (filedata->dump.dump_sects);
23495 free (filedata);
23496
23497 free (ba_cache.strtab);
23498 ba_cache.strtab = NULL;
23499 free (ba_cache.symtab);
23500 ba_cache.symtab = NULL;
23501 ba_cache.filedata = NULL;
23502
23503 return ret;
23504 }
23505
23506 #ifdef SUPPORT_DISASSEMBLY
23507 /* Needed by the i386 disassembler. For extra credit, someone could
23508 fix this so that we insert symbolic addresses here, esp for GOT/PLT
23509 symbols. */
23510
23511 void
23512 print_address (unsigned int addr, FILE * outfile)
23513 {
23514 fprintf (outfile,"0x%8.8x", addr);
23515 }
23516
23517 /* Needed by the i386 disassembler. */
23518
23519 void
23520 db_task_printsym (unsigned int addr)
23521 {
23522 print_address (addr, stderr);
23523 }
23524 #endif
23525
23526 int
23527 main (int argc, char ** argv)
23528 {
23529 int err;
23530
23531 #ifdef HAVE_LC_MESSAGES
23532 setlocale (LC_MESSAGES, "");
23533 #endif
23534 setlocale (LC_CTYPE, "");
23535 bindtextdomain (PACKAGE, LOCALEDIR);
23536 textdomain (PACKAGE);
23537
23538 expandargv (&argc, &argv);
23539
23540 parse_args (& cmdline, argc, argv);
23541
23542 if (optind < (argc - 1))
23543 /* When displaying information for more than one file,
23544 prefix the information with the file name. */
23545 show_name = true;
23546 else if (optind >= argc)
23547 {
23548 /* Ensure that the warning is always displayed. */
23549 do_checks = true;
23550
23551 warn (_("Nothing to do.\n"));
23552 usage (stderr);
23553 }
23554
23555 err = false;
23556 while (optind < argc)
23557 if (! process_file (argv[optind++]))
23558 err = true;
23559
23560 free (cmdline.dump_sects);
23561
23562 free (dump_ctf_symtab_name);
23563 free (dump_ctf_strtab_name);
23564 free (dump_ctf_parent_name);
23565
23566 return err ? EXIT_FAILURE : EXIT_SUCCESS;
23567 }