Remove unneeded tests for definitions of NT_BSDNETCORE values.
[deliverable/binutils-gdb.git] / binutils / readelf.c
1 /* readelf.c -- display contents of an ELF format file
2 Copyright (C) 1998-2021 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 #include <wchar.h>
48
49 #if __GNUC__ >= 2
50 /* Define BFD64 here, even if our default architecture is 32 bit ELF
51 as this will allow us to read in and parse 64bit and 32bit ELF files.
52 Only do this if we believe that the compiler can support a 64 bit
53 data type. For now we only rely on GCC being able to do this. */
54 #define BFD64
55 #endif
56
57 #include "bfd.h"
58 #include "bucomm.h"
59 #include "elfcomm.h"
60 #include "dwarf.h"
61 #include "ctf-api.h"
62 #include "demangle.h"
63
64 #include "elf/common.h"
65 #include "elf/external.h"
66 #include "elf/internal.h"
67
68
69 /* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
70 we can obtain the H8 reloc numbers. We need these for the
71 get_reloc_size() function. We include h8.h again after defining
72 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
73
74 #include "elf/h8.h"
75 #undef _ELF_H8_H
76
77 /* Undo the effects of #including reloc-macros.h. */
78
79 #undef START_RELOC_NUMBERS
80 #undef RELOC_NUMBER
81 #undef FAKE_RELOC
82 #undef EMPTY_RELOC
83 #undef END_RELOC_NUMBERS
84 #undef _RELOC_MACROS_H
85
86 /* The following headers use the elf/reloc-macros.h file to
87 automatically generate relocation recognition functions
88 such as elf_mips_reloc_type() */
89
90 #define RELOC_MACROS_GEN_FUNC
91
92 #include "elf/aarch64.h"
93 #include "elf/alpha.h"
94 #include "elf/arc.h"
95 #include "elf/arm.h"
96 #include "elf/avr.h"
97 #include "elf/bfin.h"
98 #include "elf/cr16.h"
99 #include "elf/cris.h"
100 #include "elf/crx.h"
101 #include "elf/csky.h"
102 #include "elf/d10v.h"
103 #include "elf/d30v.h"
104 #include "elf/dlx.h"
105 #include "elf/bpf.h"
106 #include "elf/epiphany.h"
107 #include "elf/fr30.h"
108 #include "elf/frv.h"
109 #include "elf/ft32.h"
110 #include "elf/h8.h"
111 #include "elf/hppa.h"
112 #include "elf/i386.h"
113 #include "elf/i370.h"
114 #include "elf/i860.h"
115 #include "elf/i960.h"
116 #include "elf/ia64.h"
117 #include "elf/ip2k.h"
118 #include "elf/lm32.h"
119 #include "elf/iq2000.h"
120 #include "elf/m32c.h"
121 #include "elf/m32r.h"
122 #include "elf/m68k.h"
123 #include "elf/m68hc11.h"
124 #include "elf/s12z.h"
125 #include "elf/mcore.h"
126 #include "elf/mep.h"
127 #include "elf/metag.h"
128 #include "elf/microblaze.h"
129 #include "elf/mips.h"
130 #include "elf/mmix.h"
131 #include "elf/mn10200.h"
132 #include "elf/mn10300.h"
133 #include "elf/moxie.h"
134 #include "elf/mt.h"
135 #include "elf/msp430.h"
136 #include "elf/nds32.h"
137 #include "elf/nfp.h"
138 #include "elf/nios2.h"
139 #include "elf/or1k.h"
140 #include "elf/pj.h"
141 #include "elf/ppc.h"
142 #include "elf/ppc64.h"
143 #include "elf/pru.h"
144 #include "elf/riscv.h"
145 #include "elf/rl78.h"
146 #include "elf/rx.h"
147 #include "elf/s390.h"
148 #include "elf/score.h"
149 #include "elf/sh.h"
150 #include "elf/sparc.h"
151 #include "elf/spu.h"
152 #include "elf/tic6x.h"
153 #include "elf/tilegx.h"
154 #include "elf/tilepro.h"
155 #include "elf/v850.h"
156 #include "elf/vax.h"
157 #include "elf/visium.h"
158 #include "elf/wasm32.h"
159 #include "elf/x86-64.h"
160 #include "elf/xc16x.h"
161 #include "elf/xgate.h"
162 #include "elf/xstormy16.h"
163 #include "elf/xtensa.h"
164 #include "elf/z80.h"
165
166 #include "getopt.h"
167 #include "libiberty.h"
168 #include "safe-ctype.h"
169 #include "filenames.h"
170
171 #ifndef offsetof
172 #define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER))
173 #endif
174
175 typedef struct elf_section_list
176 {
177 Elf_Internal_Shdr * hdr;
178 struct elf_section_list * next;
179 } elf_section_list;
180
181 /* Flag bits indicating particular types of dump. */
182 #define HEX_DUMP (1 << 0) /* The -x command line switch. */
183 #define DISASS_DUMP (1 << 1) /* The -i command line switch. */
184 #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
185 #define STRING_DUMP (1 << 3) /* The -p command line switch. */
186 #define RELOC_DUMP (1 << 4) /* The -R command line switch. */
187 #define CTF_DUMP (1 << 5) /* The --ctf command line switch. */
188
189 typedef unsigned char dump_type;
190
191 /* A linked list of the section names for which dumps were requested. */
192 struct dump_list_entry
193 {
194 char * name;
195 dump_type type;
196 struct dump_list_entry * next;
197 };
198
199 /* A dynamic array of flags indicating for which sections a dump
200 has been requested via command line switches. */
201 struct dump_data
202 {
203 dump_type * dump_sects;
204 unsigned int num_dump_sects;
205 };
206
207 static struct dump_data cmdline;
208
209 static struct dump_list_entry * dump_sects_byname;
210
211 char * program_name = "readelf";
212
213 static bool show_name = false;
214 static bool do_dynamic = false;
215 static bool do_syms = false;
216 static bool do_dyn_syms = false;
217 static bool do_lto_syms = false;
218 static bool do_reloc = false;
219 static bool do_sections = false;
220 static bool do_section_groups = false;
221 static bool do_section_details = false;
222 static bool do_segments = false;
223 static bool do_unwind = false;
224 static bool do_using_dynamic = false;
225 static bool do_header = false;
226 static bool do_dump = false;
227 static bool do_version = false;
228 static bool do_histogram = false;
229 static bool do_debugging = false;
230 static bool do_ctf = false;
231 static bool do_arch = false;
232 static bool do_notes = false;
233 static bool do_archive_index = false;
234 static bool check_all = false;
235 static bool is_32bit_elf = false;
236 static bool decompress_dumps = false;
237 static bool do_not_show_symbol_truncation = false;
238 static bool do_demangle = false; /* Pretty print C++ symbol names. */
239 static bool process_links = false;
240 static int demangle_flags = DMGL_ANSI | DMGL_PARAMS;
241
242 static char *dump_ctf_parent_name;
243 static char *dump_ctf_symtab_name;
244 static char *dump_ctf_strtab_name;
245
246 struct group_list
247 {
248 struct group_list * next;
249 unsigned int section_index;
250 };
251
252 struct group
253 {
254 struct group_list * root;
255 unsigned int group_index;
256 };
257
258 typedef struct filedata
259 {
260 const char * file_name;
261 bool is_separate;
262 FILE * handle;
263 bfd_size_type file_size;
264 Elf_Internal_Ehdr file_header;
265 Elf_Internal_Shdr * section_headers;
266 Elf_Internal_Phdr * program_headers;
267 char * string_table;
268 unsigned long string_table_length;
269 unsigned long archive_file_offset;
270 unsigned long archive_file_size;
271 unsigned long dynamic_addr;
272 bfd_size_type dynamic_size;
273 size_t dynamic_nent;
274 Elf_Internal_Dyn * dynamic_section;
275 Elf_Internal_Shdr * dynamic_strtab_section;
276 char * dynamic_strings;
277 unsigned long dynamic_strings_length;
278 Elf_Internal_Shdr * dynamic_symtab_section;
279 unsigned long num_dynamic_syms;
280 Elf_Internal_Sym * dynamic_symbols;
281 bfd_vma version_info[16];
282 unsigned int dynamic_syminfo_nent;
283 Elf_Internal_Syminfo * dynamic_syminfo;
284 unsigned long dynamic_syminfo_offset;
285 bfd_size_type nbuckets;
286 bfd_size_type nchains;
287 bfd_vma * buckets;
288 bfd_vma * chains;
289 bfd_size_type ngnubuckets;
290 bfd_size_type ngnuchains;
291 bfd_vma * gnubuckets;
292 bfd_vma * gnuchains;
293 bfd_vma * mipsxlat;
294 bfd_vma gnusymidx;
295 char * program_interpreter;
296 bfd_vma dynamic_info[DT_ENCODING];
297 bfd_vma dynamic_info_DT_GNU_HASH;
298 bfd_vma dynamic_info_DT_MIPS_XHASH;
299 elf_section_list * symtab_shndx_list;
300 size_t group_count;
301 struct group * section_groups;
302 struct group ** section_headers_groups;
303 /* A dynamic array of flags indicating for which sections a dump of
304 some kind has been requested. It is reset on a per-object file
305 basis and then initialised from the cmdline_dump_sects array,
306 the results of interpreting the -w switch, and the
307 dump_sects_byname list. */
308 struct dump_data dump;
309 } Filedata;
310
311 /* How to print a vma value. */
312 typedef enum print_mode
313 {
314 HEX,
315 DEC,
316 DEC_5,
317 UNSIGNED,
318 PREFIX_HEX,
319 FULL_HEX,
320 LONG_HEX
321 }
322 print_mode;
323
324 /* Versioned symbol info. */
325 enum versioned_symbol_info
326 {
327 symbol_undefined,
328 symbol_hidden,
329 symbol_public
330 };
331
332 static const char * get_symbol_version_string
333 (Filedata *, bool, const char *, unsigned long, unsigned,
334 Elf_Internal_Sym *, enum versioned_symbol_info *, unsigned short *);
335
336 #define UNKNOWN -1
337
338 #define SECTION_NAME(X) \
339 (filedata->string_table + (X)->sh_name)
340
341 #define SECTION_NAME_VALID(X) \
342 ((X) != NULL \
343 && filedata->string_table != NULL \
344 && (X)->sh_name < filedata->string_table_length)
345
346 #define SECTION_NAME_PRINT(X) \
347 ((X) == NULL ? _("<none>") \
348 : filedata->string_table == NULL ? _("<no-strings>") \
349 : (X)->sh_name >= filedata->string_table_length ? _("<corrupt>") \
350 : filedata->string_table + (X)->sh_name)
351
352 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
353
354 #define GET_ELF_SYMBOLS(file, section, sym_count) \
355 (is_32bit_elf ? get_32bit_elf_symbols (file, section, sym_count) \
356 : get_64bit_elf_symbols (file, section, sym_count))
357
358 #define VALID_SYMBOL_NAME(strtab, strtab_size, offset) \
359 (strtab != NULL && offset < strtab_size)
360 #define VALID_DYNAMIC_NAME(filedata, offset) \
361 VALID_SYMBOL_NAME (filedata->dynamic_strings, \
362 filedata->dynamic_strings_length, offset)
363 /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
364 already been called and verified that the string exists. */
365 #define GET_DYNAMIC_NAME(filedata, offset) \
366 (filedata->dynamic_strings + offset)
367
368 #define REMOVE_ARCH_BITS(ADDR) \
369 do \
370 { \
371 if (filedata->file_header.e_machine == EM_ARM) \
372 (ADDR) &= ~1; \
373 } \
374 while (0)
375
376 /* Get the correct GNU hash section name. */
377 #define GNU_HASH_SECTION_NAME(filedata) \
378 filedata->dynamic_info_DT_MIPS_XHASH ? ".MIPS.xhash" : ".gnu.hash"
379 \f
380 /* Print a BFD_VMA to an internal buffer, for use in error messages.
381 BFD_FMA_FMT can't be used in translated strings. */
382
383 static const char *
384 bfd_vmatoa (char *fmtch, bfd_vma value)
385 {
386 /* bfd_vmatoa is used more then once in a printf call for output.
387 Cycle through an array of buffers. */
388 static int buf_pos = 0;
389 static struct bfd_vmatoa_buf
390 {
391 char place[64];
392 } buf[4];
393 char *ret;
394 char fmt[32];
395
396 ret = buf[buf_pos++].place;
397 buf_pos %= ARRAY_SIZE (buf);
398
399 sprintf (fmt, "%%%s%s", BFD_VMA_FMT, fmtch);
400 snprintf (ret, sizeof (buf[0].place), fmt, value);
401 return ret;
402 }
403
404 /* Retrieve NMEMB structures, each SIZE bytes long from FILEDATA starting at
405 OFFSET + the offset of the current archive member, if we are examining an
406 archive. Put the retrieved data into VAR, if it is not NULL. Otherwise
407 allocate a buffer using malloc and fill that. In either case return the
408 pointer to the start of the retrieved data or NULL if something went wrong.
409 If something does go wrong and REASON is not NULL then emit an error
410 message using REASON as part of the context. */
411
412 static void *
413 get_data (void * var,
414 Filedata * filedata,
415 unsigned long offset,
416 bfd_size_type size,
417 bfd_size_type nmemb,
418 const char * reason)
419 {
420 void * mvar;
421 bfd_size_type amt = size * nmemb;
422
423 if (size == 0 || nmemb == 0)
424 return NULL;
425
426 /* If the size_t type is smaller than the bfd_size_type, eg because
427 you are building a 32-bit tool on a 64-bit host, then make sure
428 that when the sizes are cast to (size_t) no information is lost. */
429 if ((size_t) size != size
430 || (size_t) nmemb != nmemb
431 || (size_t) amt != amt)
432 {
433 if (reason)
434 error (_("Size truncation prevents reading %s"
435 " elements of size %s for %s\n"),
436 bfd_vmatoa ("u", nmemb), bfd_vmatoa ("u", size), reason);
437 return NULL;
438 }
439
440 /* Check for size overflow. */
441 if (amt / size != nmemb || (size_t) amt + 1 == 0)
442 {
443 if (reason)
444 error (_("Size overflow prevents reading %s"
445 " elements of size %s for %s\n"),
446 bfd_vmatoa ("u", nmemb), bfd_vmatoa ("u", size), reason);
447 return NULL;
448 }
449
450 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
451 attempting to allocate memory when the read is bound to fail. */
452 if (filedata->archive_file_offset > filedata->file_size
453 || offset > filedata->file_size - filedata->archive_file_offset
454 || amt > filedata->file_size - filedata->archive_file_offset - offset)
455 {
456 if (reason)
457 error (_("Reading %s bytes extends past end of file for %s\n"),
458 bfd_vmatoa ("u", amt), reason);
459 return NULL;
460 }
461
462 if (fseek (filedata->handle, filedata->archive_file_offset + offset,
463 SEEK_SET))
464 {
465 if (reason)
466 error (_("Unable to seek to 0x%lx for %s\n"),
467 filedata->archive_file_offset + offset, reason);
468 return NULL;
469 }
470
471 mvar = var;
472 if (mvar == NULL)
473 {
474 /* + 1 so that we can '\0' terminate invalid string table sections. */
475 mvar = malloc ((size_t) amt + 1);
476
477 if (mvar == NULL)
478 {
479 if (reason)
480 error (_("Out of memory allocating %s bytes for %s\n"),
481 bfd_vmatoa ("u", amt), reason);
482 return NULL;
483 }
484
485 ((char *) mvar)[amt] = '\0';
486 }
487
488 if (fread (mvar, (size_t) size, (size_t) nmemb, filedata->handle) != nmemb)
489 {
490 if (reason)
491 error (_("Unable to read in %s bytes of %s\n"),
492 bfd_vmatoa ("u", amt), reason);
493 if (mvar != var)
494 free (mvar);
495 return NULL;
496 }
497
498 return mvar;
499 }
500
501 /* Print a VMA value in the MODE specified.
502 Returns the number of characters displayed. */
503
504 static unsigned int
505 print_vma (bfd_vma vma, print_mode mode)
506 {
507 unsigned int nc = 0;
508
509 switch (mode)
510 {
511 case FULL_HEX:
512 nc = printf ("0x");
513 /* Fall through. */
514 case LONG_HEX:
515 #ifdef BFD64
516 if (is_32bit_elf)
517 return nc + printf ("%8.8" BFD_VMA_FMT "x", vma);
518 #endif
519 printf_vma (vma);
520 return nc + 16;
521
522 case DEC_5:
523 if (vma <= 99999)
524 return printf ("%5" BFD_VMA_FMT "d", vma);
525 /* Fall through. */
526 case PREFIX_HEX:
527 nc = printf ("0x");
528 /* Fall through. */
529 case HEX:
530 return nc + printf ("%" BFD_VMA_FMT "x", vma);
531
532 case DEC:
533 return printf ("%" BFD_VMA_FMT "d", vma);
534
535 case UNSIGNED:
536 return printf ("%" BFD_VMA_FMT "u", vma);
537
538 default:
539 /* FIXME: Report unrecognised mode ? */
540 return 0;
541 }
542 }
543
544 /* Display a symbol on stdout. Handles the display of control characters and
545 multibye characters (assuming the host environment supports them).
546
547 Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true.
548
549 If truncation will happen and do_not_show_symbol_truncation is FALSE then display
550 abs(WIDTH) - 5 characters followed by "[...]".
551
552 If WIDTH is negative then ensure that the output is at least (- WIDTH) characters,
553 padding as necessary.
554
555 Returns the number of emitted characters. */
556
557 static unsigned int
558 print_symbol (signed int width, const char * symbol)
559 {
560 bool extra_padding = false;
561 bool do_dots = false;
562 signed int num_printed = 0;
563 #ifdef HAVE_MBSTATE_T
564 mbstate_t state;
565 #endif
566 unsigned int width_remaining;
567 const void * alloced_symbol = NULL;
568
569 if (width < 0)
570 {
571 /* Keep the width positive. This helps the code below. */
572 width = - width;
573 extra_padding = true;
574 }
575 else if (width == 0)
576 return 0;
577
578 if (do_wide)
579 /* Set the remaining width to a very large value.
580 This simplifies the code below. */
581 width_remaining = INT_MAX;
582 else
583 {
584 width_remaining = width;
585 if (! do_not_show_symbol_truncation
586 && (int) strlen (symbol) > width)
587 {
588 width_remaining -= 5;
589 if ((int) width_remaining < 0)
590 width_remaining = 0;
591 do_dots = true;
592 }
593 }
594
595 #ifdef HAVE_MBSTATE_T
596 /* Initialise the multibyte conversion state. */
597 memset (& state, 0, sizeof (state));
598 #endif
599
600 if (do_demangle && *symbol)
601 {
602 const char * res = cplus_demangle (symbol, demangle_flags);
603
604 if (res != NULL)
605 alloced_symbol = symbol = res;
606 }
607
608 while (width_remaining)
609 {
610 size_t n;
611 const char c = *symbol++;
612
613 if (c == 0)
614 break;
615
616 /* Do not print control characters directly as they can affect terminal
617 settings. Such characters usually appear in the names generated
618 by the assembler for local labels. */
619 if (ISCNTRL (c))
620 {
621 if (width_remaining < 2)
622 break;
623
624 printf ("^%c", c + 0x40);
625 width_remaining -= 2;
626 num_printed += 2;
627 }
628 else if (ISPRINT (c))
629 {
630 putchar (c);
631 width_remaining --;
632 num_printed ++;
633 }
634 else
635 {
636 #ifdef HAVE_MBSTATE_T
637 wchar_t w;
638 #endif
639 /* Let printf do the hard work of displaying multibyte characters. */
640 printf ("%.1s", symbol - 1);
641 width_remaining --;
642 num_printed ++;
643
644 #ifdef HAVE_MBSTATE_T
645 /* Try to find out how many bytes made up the character that was
646 just printed. Advance the symbol pointer past the bytes that
647 were displayed. */
648 n = mbrtowc (& w, symbol - 1, MB_CUR_MAX, & state);
649 #else
650 n = 1;
651 #endif
652 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
653 symbol += (n - 1);
654 }
655 }
656
657 if (do_dots)
658 num_printed += printf ("[...]");
659
660 if (extra_padding && num_printed < width)
661 {
662 /* Fill in the remaining spaces. */
663 printf ("%-*s", width - num_printed, " ");
664 num_printed = width;
665 }
666
667 free ((void *) alloced_symbol);
668 return num_printed;
669 }
670
671 /* Returns a pointer to a static buffer containing a printable version of
672 the given section's name. Like print_symbol, except that it does not try
673 to print multibyte characters, it just interprets them as hex values. */
674
675 static const char *
676 printable_section_name (Filedata * filedata, const Elf_Internal_Shdr * sec)
677 {
678 #define MAX_PRINT_SEC_NAME_LEN 256
679 static char sec_name_buf [MAX_PRINT_SEC_NAME_LEN + 1];
680 const char * name = SECTION_NAME_PRINT (sec);
681 char * buf = sec_name_buf;
682 char c;
683 unsigned int remaining = MAX_PRINT_SEC_NAME_LEN;
684
685 while ((c = * name ++) != 0)
686 {
687 if (ISCNTRL (c))
688 {
689 if (remaining < 2)
690 break;
691
692 * buf ++ = '^';
693 * buf ++ = c + 0x40;
694 remaining -= 2;
695 }
696 else if (ISPRINT (c))
697 {
698 * buf ++ = c;
699 remaining -= 1;
700 }
701 else
702 {
703 static char hex[17] = "0123456789ABCDEF";
704
705 if (remaining < 4)
706 break;
707 * buf ++ = '<';
708 * buf ++ = hex[(c & 0xf0) >> 4];
709 * buf ++ = hex[c & 0x0f];
710 * buf ++ = '>';
711 remaining -= 4;
712 }
713
714 if (remaining == 0)
715 break;
716 }
717
718 * buf = 0;
719 return sec_name_buf;
720 }
721
722 static const char *
723 printable_section_name_from_index (Filedata * filedata, unsigned long ndx)
724 {
725 if (ndx >= filedata->file_header.e_shnum)
726 return _("<corrupt>");
727
728 return printable_section_name (filedata, filedata->section_headers + ndx);
729 }
730
731 /* Return a pointer to section NAME, or NULL if no such section exists. */
732
733 static Elf_Internal_Shdr *
734 find_section (Filedata * filedata, const char * name)
735 {
736 unsigned int i;
737
738 if (filedata->section_headers == NULL)
739 return NULL;
740
741 for (i = 0; i < filedata->file_header.e_shnum; i++)
742 if (SECTION_NAME_VALID (filedata->section_headers + i)
743 && streq (SECTION_NAME (filedata->section_headers + i), name))
744 return filedata->section_headers + i;
745
746 return NULL;
747 }
748
749 /* Return a pointer to a section containing ADDR, or NULL if no such
750 section exists. */
751
752 static Elf_Internal_Shdr *
753 find_section_by_address (Filedata * filedata, bfd_vma addr)
754 {
755 unsigned int i;
756
757 if (filedata->section_headers == NULL)
758 return NULL;
759
760 for (i = 0; i < filedata->file_header.e_shnum; i++)
761 {
762 Elf_Internal_Shdr *sec = filedata->section_headers + i;
763
764 if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size)
765 return sec;
766 }
767
768 return NULL;
769 }
770
771 static Elf_Internal_Shdr *
772 find_section_by_type (Filedata * filedata, unsigned int type)
773 {
774 unsigned int i;
775
776 if (filedata->section_headers == NULL)
777 return NULL;
778
779 for (i = 0; i < filedata->file_header.e_shnum; i++)
780 {
781 Elf_Internal_Shdr *sec = filedata->section_headers + i;
782
783 if (sec->sh_type == type)
784 return sec;
785 }
786
787 return NULL;
788 }
789
790 /* Return a pointer to section NAME, or NULL if no such section exists,
791 restricted to the list of sections given in SET. */
792
793 static Elf_Internal_Shdr *
794 find_section_in_set (Filedata * filedata, const char * name, unsigned int * set)
795 {
796 unsigned int i;
797
798 if (filedata->section_headers == NULL)
799 return NULL;
800
801 if (set != NULL)
802 {
803 while ((i = *set++) > 0)
804 {
805 /* See PR 21156 for a reproducer. */
806 if (i >= filedata->file_header.e_shnum)
807 continue; /* FIXME: Should we issue an error message ? */
808
809 if (SECTION_NAME_VALID (filedata->section_headers + i)
810 && streq (SECTION_NAME (filedata->section_headers + i), name))
811 return filedata->section_headers + i;
812 }
813 }
814
815 return find_section (filedata, name);
816 }
817
818 /* Return TRUE if the current file is for IA-64 machine and OpenVMS ABI.
819 This OS has so many departures from the ELF standard that we test it at
820 many places. */
821
822 static inline bool
823 is_ia64_vms (Filedata * filedata)
824 {
825 return filedata->file_header.e_machine == EM_IA_64
826 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS;
827 }
828
829 /* Guess the relocation size commonly used by the specific machines. */
830
831 static bool
832 guess_is_rela (unsigned int e_machine)
833 {
834 switch (e_machine)
835 {
836 /* Targets that use REL relocations. */
837 case EM_386:
838 case EM_IAMCU:
839 case EM_960:
840 case EM_ARM:
841 case EM_D10V:
842 case EM_CYGNUS_D10V:
843 case EM_DLX:
844 case EM_MIPS:
845 case EM_MIPS_RS3_LE:
846 case EM_CYGNUS_M32R:
847 case EM_SCORE:
848 case EM_XGATE:
849 case EM_NFP:
850 case EM_BPF:
851 return false;
852
853 /* Targets that use RELA relocations. */
854 case EM_68K:
855 case EM_860:
856 case EM_AARCH64:
857 case EM_ADAPTEVA_EPIPHANY:
858 case EM_ALPHA:
859 case EM_ALTERA_NIOS2:
860 case EM_ARC:
861 case EM_ARC_COMPACT:
862 case EM_ARC_COMPACT2:
863 case EM_AVR:
864 case EM_AVR_OLD:
865 case EM_BLACKFIN:
866 case EM_CR16:
867 case EM_CRIS:
868 case EM_CRX:
869 case EM_CSKY:
870 case EM_D30V:
871 case EM_CYGNUS_D30V:
872 case EM_FR30:
873 case EM_FT32:
874 case EM_CYGNUS_FR30:
875 case EM_CYGNUS_FRV:
876 case EM_H8S:
877 case EM_H8_300:
878 case EM_H8_300H:
879 case EM_IA_64:
880 case EM_IP2K:
881 case EM_IP2K_OLD:
882 case EM_IQ2000:
883 case EM_LATTICEMICO32:
884 case EM_M32C_OLD:
885 case EM_M32C:
886 case EM_M32R:
887 case EM_MCORE:
888 case EM_CYGNUS_MEP:
889 case EM_METAG:
890 case EM_MMIX:
891 case EM_MN10200:
892 case EM_CYGNUS_MN10200:
893 case EM_MN10300:
894 case EM_CYGNUS_MN10300:
895 case EM_MOXIE:
896 case EM_MSP430:
897 case EM_MSP430_OLD:
898 case EM_MT:
899 case EM_NDS32:
900 case EM_NIOS32:
901 case EM_OR1K:
902 case EM_PPC64:
903 case EM_PPC:
904 case EM_TI_PRU:
905 case EM_RISCV:
906 case EM_RL78:
907 case EM_RX:
908 case EM_S390:
909 case EM_S390_OLD:
910 case EM_SH:
911 case EM_SPARC:
912 case EM_SPARC32PLUS:
913 case EM_SPARCV9:
914 case EM_SPU:
915 case EM_TI_C6000:
916 case EM_TILEGX:
917 case EM_TILEPRO:
918 case EM_V800:
919 case EM_V850:
920 case EM_CYGNUS_V850:
921 case EM_VAX:
922 case EM_VISIUM:
923 case EM_X86_64:
924 case EM_L1OM:
925 case EM_K1OM:
926 case EM_XSTORMY16:
927 case EM_XTENSA:
928 case EM_XTENSA_OLD:
929 case EM_MICROBLAZE:
930 case EM_MICROBLAZE_OLD:
931 case EM_WEBASSEMBLY:
932 return true;
933
934 case EM_68HC05:
935 case EM_68HC08:
936 case EM_68HC11:
937 case EM_68HC16:
938 case EM_FX66:
939 case EM_ME16:
940 case EM_MMA:
941 case EM_NCPU:
942 case EM_NDR1:
943 case EM_PCP:
944 case EM_ST100:
945 case EM_ST19:
946 case EM_ST7:
947 case EM_ST9PLUS:
948 case EM_STARCORE:
949 case EM_SVX:
950 case EM_TINYJ:
951 default:
952 warn (_("Don't know about relocations on this machine architecture\n"));
953 return false;
954 }
955 }
956
957 /* Load RELA type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
958 Returns TRUE upon success, FALSE otherwise. If successful then a
959 pointer to a malloc'ed buffer containing the relocs is placed in *RELASP,
960 and the number of relocs loaded is placed in *NRELASP. It is the caller's
961 responsibility to free the allocated buffer. */
962
963 static bool
964 slurp_rela_relocs (Filedata * filedata,
965 unsigned long rel_offset,
966 unsigned long rel_size,
967 Elf_Internal_Rela ** relasp,
968 unsigned long * nrelasp)
969 {
970 Elf_Internal_Rela * relas;
971 size_t nrelas;
972 unsigned int i;
973
974 if (is_32bit_elf)
975 {
976 Elf32_External_Rela * erelas;
977
978 erelas = (Elf32_External_Rela *) get_data (NULL, filedata, rel_offset, 1,
979 rel_size, _("32-bit relocation data"));
980 if (!erelas)
981 return false;
982
983 nrelas = rel_size / sizeof (Elf32_External_Rela);
984
985 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
986 sizeof (Elf_Internal_Rela));
987
988 if (relas == NULL)
989 {
990 free (erelas);
991 error (_("out of memory parsing relocs\n"));
992 return false;
993 }
994
995 for (i = 0; i < nrelas; i++)
996 {
997 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
998 relas[i].r_info = BYTE_GET (erelas[i].r_info);
999 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
1000 }
1001
1002 free (erelas);
1003 }
1004 else
1005 {
1006 Elf64_External_Rela * erelas;
1007
1008 erelas = (Elf64_External_Rela *) get_data (NULL, filedata, rel_offset, 1,
1009 rel_size, _("64-bit relocation data"));
1010 if (!erelas)
1011 return false;
1012
1013 nrelas = rel_size / sizeof (Elf64_External_Rela);
1014
1015 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
1016 sizeof (Elf_Internal_Rela));
1017
1018 if (relas == NULL)
1019 {
1020 free (erelas);
1021 error (_("out of memory parsing relocs\n"));
1022 return false;
1023 }
1024
1025 for (i = 0; i < nrelas; i++)
1026 {
1027 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
1028 relas[i].r_info = BYTE_GET (erelas[i].r_info);
1029 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
1030
1031 /* The #ifdef BFD64 below is to prevent a compile time
1032 warning. We know that if we do not have a 64 bit data
1033 type that we will never execute this code anyway. */
1034 #ifdef BFD64
1035 if (filedata->file_header.e_machine == EM_MIPS
1036 && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB)
1037 {
1038 /* In little-endian objects, r_info isn't really a
1039 64-bit little-endian value: it has a 32-bit
1040 little-endian symbol index followed by four
1041 individual byte fields. Reorder INFO
1042 accordingly. */
1043 bfd_vma inf = relas[i].r_info;
1044 inf = (((inf & 0xffffffff) << 32)
1045 | ((inf >> 56) & 0xff)
1046 | ((inf >> 40) & 0xff00)
1047 | ((inf >> 24) & 0xff0000)
1048 | ((inf >> 8) & 0xff000000));
1049 relas[i].r_info = inf;
1050 }
1051 #endif /* BFD64 */
1052 }
1053
1054 free (erelas);
1055 }
1056
1057 *relasp = relas;
1058 *nrelasp = nrelas;
1059 return true;
1060 }
1061
1062 /* Load REL type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
1063 Returns TRUE upon success, FALSE otherwise. If successful then a
1064 pointer to a malloc'ed buffer containing the relocs is placed in *RELSP,
1065 and the number of relocs loaded is placed in *NRELSP. It is the caller's
1066 responsibility to free the allocated buffer. */
1067
1068 static bool
1069 slurp_rel_relocs (Filedata * filedata,
1070 unsigned long rel_offset,
1071 unsigned long rel_size,
1072 Elf_Internal_Rela ** relsp,
1073 unsigned long * nrelsp)
1074 {
1075 Elf_Internal_Rela * rels;
1076 size_t nrels;
1077 unsigned int i;
1078
1079 if (is_32bit_elf)
1080 {
1081 Elf32_External_Rel * erels;
1082
1083 erels = (Elf32_External_Rel *) get_data (NULL, filedata, rel_offset, 1,
1084 rel_size, _("32-bit relocation data"));
1085 if (!erels)
1086 return false;
1087
1088 nrels = rel_size / sizeof (Elf32_External_Rel);
1089
1090 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
1091
1092 if (rels == NULL)
1093 {
1094 free (erels);
1095 error (_("out of memory parsing relocs\n"));
1096 return false;
1097 }
1098
1099 for (i = 0; i < nrels; i++)
1100 {
1101 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
1102 rels[i].r_info = BYTE_GET (erels[i].r_info);
1103 rels[i].r_addend = 0;
1104 }
1105
1106 free (erels);
1107 }
1108 else
1109 {
1110 Elf64_External_Rel * erels;
1111
1112 erels = (Elf64_External_Rel *) get_data (NULL, filedata, rel_offset, 1,
1113 rel_size, _("64-bit relocation data"));
1114 if (!erels)
1115 return false;
1116
1117 nrels = rel_size / sizeof (Elf64_External_Rel);
1118
1119 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
1120
1121 if (rels == NULL)
1122 {
1123 free (erels);
1124 error (_("out of memory parsing relocs\n"));
1125 return false;
1126 }
1127
1128 for (i = 0; i < nrels; i++)
1129 {
1130 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
1131 rels[i].r_info = BYTE_GET (erels[i].r_info);
1132 rels[i].r_addend = 0;
1133
1134 /* The #ifdef BFD64 below is to prevent a compile time
1135 warning. We know that if we do not have a 64 bit data
1136 type that we will never execute this code anyway. */
1137 #ifdef BFD64
1138 if (filedata->file_header.e_machine == EM_MIPS
1139 && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB)
1140 {
1141 /* In little-endian objects, r_info isn't really a
1142 64-bit little-endian value: it has a 32-bit
1143 little-endian symbol index followed by four
1144 individual byte fields. Reorder INFO
1145 accordingly. */
1146 bfd_vma inf = rels[i].r_info;
1147 inf = (((inf & 0xffffffff) << 32)
1148 | ((inf >> 56) & 0xff)
1149 | ((inf >> 40) & 0xff00)
1150 | ((inf >> 24) & 0xff0000)
1151 | ((inf >> 8) & 0xff000000));
1152 rels[i].r_info = inf;
1153 }
1154 #endif /* BFD64 */
1155 }
1156
1157 free (erels);
1158 }
1159
1160 *relsp = rels;
1161 *nrelsp = nrels;
1162 return true;
1163 }
1164
1165 /* Returns the reloc type extracted from the reloc info field. */
1166
1167 static unsigned int
1168 get_reloc_type (Filedata * filedata, bfd_vma reloc_info)
1169 {
1170 if (is_32bit_elf)
1171 return ELF32_R_TYPE (reloc_info);
1172
1173 switch (filedata->file_header.e_machine)
1174 {
1175 case EM_MIPS:
1176 /* Note: We assume that reloc_info has already been adjusted for us. */
1177 return ELF64_MIPS_R_TYPE (reloc_info);
1178
1179 case EM_SPARCV9:
1180 return ELF64_R_TYPE_ID (reloc_info);
1181
1182 default:
1183 return ELF64_R_TYPE (reloc_info);
1184 }
1185 }
1186
1187 /* Return the symbol index extracted from the reloc info field. */
1188
1189 static bfd_vma
1190 get_reloc_symindex (bfd_vma reloc_info)
1191 {
1192 return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info);
1193 }
1194
1195 static inline bool
1196 uses_msp430x_relocs (Filedata * filedata)
1197 {
1198 return
1199 filedata->file_header.e_machine == EM_MSP430 /* Paranoia. */
1200 /* GCC uses osabi == ELFOSBI_STANDALONE. */
1201 && (((filedata->file_header.e_flags & EF_MSP430_MACH) == E_MSP430_MACH_MSP430X)
1202 /* TI compiler uses ELFOSABI_NONE. */
1203 || (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_NONE));
1204 }
1205
1206 /* Display the contents of the relocation data found at the specified
1207 offset. */
1208
1209 static bool
1210 dump_relocations (Filedata * filedata,
1211 unsigned long rel_offset,
1212 unsigned long rel_size,
1213 Elf_Internal_Sym * symtab,
1214 unsigned long nsyms,
1215 char * strtab,
1216 unsigned long strtablen,
1217 int is_rela,
1218 bool is_dynsym)
1219 {
1220 unsigned long i;
1221 Elf_Internal_Rela * rels;
1222 bool res = true;
1223
1224 if (is_rela == UNKNOWN)
1225 is_rela = guess_is_rela (filedata->file_header.e_machine);
1226
1227 if (is_rela)
1228 {
1229 if (!slurp_rela_relocs (filedata, rel_offset, rel_size, &rels, &rel_size))
1230 return false;
1231 }
1232 else
1233 {
1234 if (!slurp_rel_relocs (filedata, rel_offset, rel_size, &rels, &rel_size))
1235 return false;
1236 }
1237
1238 if (is_32bit_elf)
1239 {
1240 if (is_rela)
1241 {
1242 if (do_wide)
1243 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
1244 else
1245 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
1246 }
1247 else
1248 {
1249 if (do_wide)
1250 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
1251 else
1252 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
1253 }
1254 }
1255 else
1256 {
1257 if (is_rela)
1258 {
1259 if (do_wide)
1260 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
1261 else
1262 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
1263 }
1264 else
1265 {
1266 if (do_wide)
1267 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
1268 else
1269 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
1270 }
1271 }
1272
1273 for (i = 0; i < rel_size; i++)
1274 {
1275 const char * rtype;
1276 bfd_vma offset;
1277 bfd_vma inf;
1278 bfd_vma symtab_index;
1279 bfd_vma type;
1280
1281 offset = rels[i].r_offset;
1282 inf = rels[i].r_info;
1283
1284 type = get_reloc_type (filedata, inf);
1285 symtab_index = get_reloc_symindex (inf);
1286
1287 if (is_32bit_elf)
1288 {
1289 printf ("%8.8lx %8.8lx ",
1290 (unsigned long) offset & 0xffffffff,
1291 (unsigned long) inf & 0xffffffff);
1292 }
1293 else
1294 {
1295 printf (do_wide
1296 ? "%16.16" BFD_VMA_FMT "x %16.16" BFD_VMA_FMT "x "
1297 : "%12.12" BFD_VMA_FMT "x %12.12" BFD_VMA_FMT "x ",
1298 offset, inf);
1299 }
1300
1301 switch (filedata->file_header.e_machine)
1302 {
1303 default:
1304 rtype = NULL;
1305 break;
1306
1307 case EM_AARCH64:
1308 rtype = elf_aarch64_reloc_type (type);
1309 break;
1310
1311 case EM_M32R:
1312 case EM_CYGNUS_M32R:
1313 rtype = elf_m32r_reloc_type (type);
1314 break;
1315
1316 case EM_386:
1317 case EM_IAMCU:
1318 rtype = elf_i386_reloc_type (type);
1319 break;
1320
1321 case EM_68HC11:
1322 case EM_68HC12:
1323 rtype = elf_m68hc11_reloc_type (type);
1324 break;
1325
1326 case EM_S12Z:
1327 rtype = elf_s12z_reloc_type (type);
1328 break;
1329
1330 case EM_68K:
1331 rtype = elf_m68k_reloc_type (type);
1332 break;
1333
1334 case EM_960:
1335 rtype = elf_i960_reloc_type (type);
1336 break;
1337
1338 case EM_AVR:
1339 case EM_AVR_OLD:
1340 rtype = elf_avr_reloc_type (type);
1341 break;
1342
1343 case EM_OLD_SPARCV9:
1344 case EM_SPARC32PLUS:
1345 case EM_SPARCV9:
1346 case EM_SPARC:
1347 rtype = elf_sparc_reloc_type (type);
1348 break;
1349
1350 case EM_SPU:
1351 rtype = elf_spu_reloc_type (type);
1352 break;
1353
1354 case EM_V800:
1355 rtype = v800_reloc_type (type);
1356 break;
1357 case EM_V850:
1358 case EM_CYGNUS_V850:
1359 rtype = v850_reloc_type (type);
1360 break;
1361
1362 case EM_D10V:
1363 case EM_CYGNUS_D10V:
1364 rtype = elf_d10v_reloc_type (type);
1365 break;
1366
1367 case EM_D30V:
1368 case EM_CYGNUS_D30V:
1369 rtype = elf_d30v_reloc_type (type);
1370 break;
1371
1372 case EM_DLX:
1373 rtype = elf_dlx_reloc_type (type);
1374 break;
1375
1376 case EM_SH:
1377 rtype = elf_sh_reloc_type (type);
1378 break;
1379
1380 case EM_MN10300:
1381 case EM_CYGNUS_MN10300:
1382 rtype = elf_mn10300_reloc_type (type);
1383 break;
1384
1385 case EM_MN10200:
1386 case EM_CYGNUS_MN10200:
1387 rtype = elf_mn10200_reloc_type (type);
1388 break;
1389
1390 case EM_FR30:
1391 case EM_CYGNUS_FR30:
1392 rtype = elf_fr30_reloc_type (type);
1393 break;
1394
1395 case EM_CYGNUS_FRV:
1396 rtype = elf_frv_reloc_type (type);
1397 break;
1398
1399 case EM_CSKY:
1400 rtype = elf_csky_reloc_type (type);
1401 break;
1402
1403 case EM_FT32:
1404 rtype = elf_ft32_reloc_type (type);
1405 break;
1406
1407 case EM_MCORE:
1408 rtype = elf_mcore_reloc_type (type);
1409 break;
1410
1411 case EM_MMIX:
1412 rtype = elf_mmix_reloc_type (type);
1413 break;
1414
1415 case EM_MOXIE:
1416 rtype = elf_moxie_reloc_type (type);
1417 break;
1418
1419 case EM_MSP430:
1420 if (uses_msp430x_relocs (filedata))
1421 {
1422 rtype = elf_msp430x_reloc_type (type);
1423 break;
1424 }
1425 /* Fall through. */
1426 case EM_MSP430_OLD:
1427 rtype = elf_msp430_reloc_type (type);
1428 break;
1429
1430 case EM_NDS32:
1431 rtype = elf_nds32_reloc_type (type);
1432 break;
1433
1434 case EM_PPC:
1435 rtype = elf_ppc_reloc_type (type);
1436 break;
1437
1438 case EM_PPC64:
1439 rtype = elf_ppc64_reloc_type (type);
1440 break;
1441
1442 case EM_MIPS:
1443 case EM_MIPS_RS3_LE:
1444 rtype = elf_mips_reloc_type (type);
1445 break;
1446
1447 case EM_RISCV:
1448 rtype = elf_riscv_reloc_type (type);
1449 break;
1450
1451 case EM_ALPHA:
1452 rtype = elf_alpha_reloc_type (type);
1453 break;
1454
1455 case EM_ARM:
1456 rtype = elf_arm_reloc_type (type);
1457 break;
1458
1459 case EM_ARC:
1460 case EM_ARC_COMPACT:
1461 case EM_ARC_COMPACT2:
1462 rtype = elf_arc_reloc_type (type);
1463 break;
1464
1465 case EM_PARISC:
1466 rtype = elf_hppa_reloc_type (type);
1467 break;
1468
1469 case EM_H8_300:
1470 case EM_H8_300H:
1471 case EM_H8S:
1472 rtype = elf_h8_reloc_type (type);
1473 break;
1474
1475 case EM_OR1K:
1476 rtype = elf_or1k_reloc_type (type);
1477 break;
1478
1479 case EM_PJ:
1480 case EM_PJ_OLD:
1481 rtype = elf_pj_reloc_type (type);
1482 break;
1483 case EM_IA_64:
1484 rtype = elf_ia64_reloc_type (type);
1485 break;
1486
1487 case EM_CRIS:
1488 rtype = elf_cris_reloc_type (type);
1489 break;
1490
1491 case EM_860:
1492 rtype = elf_i860_reloc_type (type);
1493 break;
1494
1495 case EM_X86_64:
1496 case EM_L1OM:
1497 case EM_K1OM:
1498 rtype = elf_x86_64_reloc_type (type);
1499 break;
1500
1501 case EM_S370:
1502 rtype = i370_reloc_type (type);
1503 break;
1504
1505 case EM_S390_OLD:
1506 case EM_S390:
1507 rtype = elf_s390_reloc_type (type);
1508 break;
1509
1510 case EM_SCORE:
1511 rtype = elf_score_reloc_type (type);
1512 break;
1513
1514 case EM_XSTORMY16:
1515 rtype = elf_xstormy16_reloc_type (type);
1516 break;
1517
1518 case EM_CRX:
1519 rtype = elf_crx_reloc_type (type);
1520 break;
1521
1522 case EM_VAX:
1523 rtype = elf_vax_reloc_type (type);
1524 break;
1525
1526 case EM_VISIUM:
1527 rtype = elf_visium_reloc_type (type);
1528 break;
1529
1530 case EM_BPF:
1531 rtype = elf_bpf_reloc_type (type);
1532 break;
1533
1534 case EM_ADAPTEVA_EPIPHANY:
1535 rtype = elf_epiphany_reloc_type (type);
1536 break;
1537
1538 case EM_IP2K:
1539 case EM_IP2K_OLD:
1540 rtype = elf_ip2k_reloc_type (type);
1541 break;
1542
1543 case EM_IQ2000:
1544 rtype = elf_iq2000_reloc_type (type);
1545 break;
1546
1547 case EM_XTENSA_OLD:
1548 case EM_XTENSA:
1549 rtype = elf_xtensa_reloc_type (type);
1550 break;
1551
1552 case EM_LATTICEMICO32:
1553 rtype = elf_lm32_reloc_type (type);
1554 break;
1555
1556 case EM_M32C_OLD:
1557 case EM_M32C:
1558 rtype = elf_m32c_reloc_type (type);
1559 break;
1560
1561 case EM_MT:
1562 rtype = elf_mt_reloc_type (type);
1563 break;
1564
1565 case EM_BLACKFIN:
1566 rtype = elf_bfin_reloc_type (type);
1567 break;
1568
1569 case EM_CYGNUS_MEP:
1570 rtype = elf_mep_reloc_type (type);
1571 break;
1572
1573 case EM_CR16:
1574 rtype = elf_cr16_reloc_type (type);
1575 break;
1576
1577 case EM_MICROBLAZE:
1578 case EM_MICROBLAZE_OLD:
1579 rtype = elf_microblaze_reloc_type (type);
1580 break;
1581
1582 case EM_RL78:
1583 rtype = elf_rl78_reloc_type (type);
1584 break;
1585
1586 case EM_RX:
1587 rtype = elf_rx_reloc_type (type);
1588 break;
1589
1590 case EM_METAG:
1591 rtype = elf_metag_reloc_type (type);
1592 break;
1593
1594 case EM_XC16X:
1595 case EM_C166:
1596 rtype = elf_xc16x_reloc_type (type);
1597 break;
1598
1599 case EM_TI_C6000:
1600 rtype = elf_tic6x_reloc_type (type);
1601 break;
1602
1603 case EM_TILEGX:
1604 rtype = elf_tilegx_reloc_type (type);
1605 break;
1606
1607 case EM_TILEPRO:
1608 rtype = elf_tilepro_reloc_type (type);
1609 break;
1610
1611 case EM_WEBASSEMBLY:
1612 rtype = elf_wasm32_reloc_type (type);
1613 break;
1614
1615 case EM_XGATE:
1616 rtype = elf_xgate_reloc_type (type);
1617 break;
1618
1619 case EM_ALTERA_NIOS2:
1620 rtype = elf_nios2_reloc_type (type);
1621 break;
1622
1623 case EM_TI_PRU:
1624 rtype = elf_pru_reloc_type (type);
1625 break;
1626
1627 case EM_NFP:
1628 if (EF_NFP_MACH (filedata->file_header.e_flags) == E_NFP_MACH_3200)
1629 rtype = elf_nfp3200_reloc_type (type);
1630 else
1631 rtype = elf_nfp_reloc_type (type);
1632 break;
1633
1634 case EM_Z80:
1635 rtype = elf_z80_reloc_type (type);
1636 break;
1637 }
1638
1639 if (rtype == NULL)
1640 printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff);
1641 else
1642 printf (do_wide ? "%-22s" : "%-17.17s", rtype);
1643
1644 if (filedata->file_header.e_machine == EM_ALPHA
1645 && rtype != NULL
1646 && streq (rtype, "R_ALPHA_LITUSE")
1647 && is_rela)
1648 {
1649 switch (rels[i].r_addend)
1650 {
1651 case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break;
1652 case LITUSE_ALPHA_BASE: rtype = "BASE"; break;
1653 case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break;
1654 case LITUSE_ALPHA_JSR: rtype = "JSR"; break;
1655 case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break;
1656 case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break;
1657 case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break;
1658 default: rtype = NULL;
1659 }
1660
1661 if (rtype)
1662 printf (" (%s)", rtype);
1663 else
1664 {
1665 putchar (' ');
1666 printf (_("<unknown addend: %lx>"),
1667 (unsigned long) rels[i].r_addend);
1668 res = false;
1669 }
1670 }
1671 else if (symtab_index)
1672 {
1673 if (symtab == NULL || symtab_index >= nsyms)
1674 {
1675 error (_(" bad symbol index: %08lx in reloc\n"),
1676 (unsigned long) symtab_index);
1677 res = false;
1678 }
1679 else
1680 {
1681 Elf_Internal_Sym * psym;
1682 const char * version_string;
1683 enum versioned_symbol_info sym_info;
1684 unsigned short vna_other;
1685
1686 psym = symtab + symtab_index;
1687
1688 version_string
1689 = get_symbol_version_string (filedata, is_dynsym,
1690 strtab, strtablen,
1691 symtab_index,
1692 psym,
1693 &sym_info,
1694 &vna_other);
1695
1696 printf (" ");
1697
1698 if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC)
1699 {
1700 const char * name;
1701 unsigned int len;
1702 unsigned int width = is_32bit_elf ? 8 : 14;
1703
1704 /* Relocations against GNU_IFUNC symbols do not use the value
1705 of the symbol as the address to relocate against. Instead
1706 they invoke the function named by the symbol and use its
1707 result as the address for relocation.
1708
1709 To indicate this to the user, do not display the value of
1710 the symbol in the "Symbols's Value" field. Instead show
1711 its name followed by () as a hint that the symbol is
1712 invoked. */
1713
1714 if (strtab == NULL
1715 || psym->st_name == 0
1716 || psym->st_name >= strtablen)
1717 name = "??";
1718 else
1719 name = strtab + psym->st_name;
1720
1721 len = print_symbol (width, name);
1722 if (version_string)
1723 printf (sym_info == symbol_public ? "@@%s" : "@%s",
1724 version_string);
1725 printf ("()%-*s", len <= width ? (width + 1) - len : 1, " ");
1726 }
1727 else
1728 {
1729 print_vma (psym->st_value, LONG_HEX);
1730
1731 printf (is_32bit_elf ? " " : " ");
1732 }
1733
1734 if (psym->st_name == 0)
1735 {
1736 const char * sec_name = "<null>";
1737 char name_buf[40];
1738
1739 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION)
1740 {
1741 if (psym->st_shndx < filedata->file_header.e_shnum)
1742 sec_name = SECTION_NAME_PRINT (filedata->section_headers
1743 + psym->st_shndx);
1744 else if (psym->st_shndx == SHN_ABS)
1745 sec_name = "ABS";
1746 else if (psym->st_shndx == SHN_COMMON)
1747 sec_name = "COMMON";
1748 else if ((filedata->file_header.e_machine == EM_MIPS
1749 && psym->st_shndx == SHN_MIPS_SCOMMON)
1750 || (filedata->file_header.e_machine == EM_TI_C6000
1751 && psym->st_shndx == SHN_TIC6X_SCOMMON))
1752 sec_name = "SCOMMON";
1753 else if (filedata->file_header.e_machine == EM_MIPS
1754 && psym->st_shndx == SHN_MIPS_SUNDEFINED)
1755 sec_name = "SUNDEF";
1756 else if ((filedata->file_header.e_machine == EM_X86_64
1757 || filedata->file_header.e_machine == EM_L1OM
1758 || filedata->file_header.e_machine == EM_K1OM)
1759 && psym->st_shndx == SHN_X86_64_LCOMMON)
1760 sec_name = "LARGE_COMMON";
1761 else if (filedata->file_header.e_machine == EM_IA_64
1762 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX
1763 && psym->st_shndx == SHN_IA_64_ANSI_COMMON)
1764 sec_name = "ANSI_COM";
1765 else if (is_ia64_vms (filedata)
1766 && psym->st_shndx == SHN_IA_64_VMS_SYMVEC)
1767 sec_name = "VMS_SYMVEC";
1768 else
1769 {
1770 sprintf (name_buf, "<section 0x%x>",
1771 (unsigned int) psym->st_shndx);
1772 sec_name = name_buf;
1773 }
1774 }
1775 print_symbol (22, sec_name);
1776 }
1777 else if (strtab == NULL)
1778 printf (_("<string table index: %3ld>"), psym->st_name);
1779 else if (psym->st_name >= strtablen)
1780 {
1781 error (_("<corrupt string table index: %3ld>\n"),
1782 psym->st_name);
1783 res = false;
1784 }
1785 else
1786 {
1787 print_symbol (22, strtab + psym->st_name);
1788 if (version_string)
1789 printf (sym_info == symbol_public ? "@@%s" : "@%s",
1790 version_string);
1791 }
1792
1793 if (is_rela)
1794 {
1795 bfd_vma off = rels[i].r_addend;
1796
1797 if ((bfd_signed_vma) off < 0)
1798 printf (" - %" BFD_VMA_FMT "x", - off);
1799 else
1800 printf (" + %" BFD_VMA_FMT "x", off);
1801 }
1802 }
1803 }
1804 else if (is_rela)
1805 {
1806 bfd_vma off = rels[i].r_addend;
1807
1808 printf ("%*c", is_32bit_elf ? 12 : 20, ' ');
1809 if ((bfd_signed_vma) off < 0)
1810 printf ("-%" BFD_VMA_FMT "x", - off);
1811 else
1812 printf ("%" BFD_VMA_FMT "x", off);
1813 }
1814
1815 if (filedata->file_header.e_machine == EM_SPARCV9
1816 && rtype != NULL
1817 && streq (rtype, "R_SPARC_OLO10"))
1818 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf));
1819
1820 putchar ('\n');
1821
1822 #ifdef BFD64
1823 if (! is_32bit_elf && filedata->file_header.e_machine == EM_MIPS)
1824 {
1825 bfd_vma type2 = ELF64_MIPS_R_TYPE2 (inf);
1826 bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf);
1827 const char * rtype2 = elf_mips_reloc_type (type2);
1828 const char * rtype3 = elf_mips_reloc_type (type3);
1829
1830 printf (" Type2: ");
1831
1832 if (rtype2 == NULL)
1833 printf (_("unrecognized: %-7lx"),
1834 (unsigned long) type2 & 0xffffffff);
1835 else
1836 printf ("%-17.17s", rtype2);
1837
1838 printf ("\n Type3: ");
1839
1840 if (rtype3 == NULL)
1841 printf (_("unrecognized: %-7lx"),
1842 (unsigned long) type3 & 0xffffffff);
1843 else
1844 printf ("%-17.17s", rtype3);
1845
1846 putchar ('\n');
1847 }
1848 #endif /* BFD64 */
1849 }
1850
1851 free (rels);
1852
1853 return res;
1854 }
1855
1856 static const char *
1857 get_aarch64_dynamic_type (unsigned long type)
1858 {
1859 switch (type)
1860 {
1861 case DT_AARCH64_BTI_PLT: return "AARCH64_BTI_PLT";
1862 case DT_AARCH64_PAC_PLT: return "AARCH64_PAC_PLT";
1863 case DT_AARCH64_VARIANT_PCS: return "AARCH64_VARIANT_PCS";
1864 default:
1865 return NULL;
1866 }
1867 }
1868
1869 static const char *
1870 get_mips_dynamic_type (unsigned long type)
1871 {
1872 switch (type)
1873 {
1874 case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION";
1875 case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP";
1876 case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM";
1877 case DT_MIPS_IVERSION: return "MIPS_IVERSION";
1878 case DT_MIPS_FLAGS: return "MIPS_FLAGS";
1879 case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS";
1880 case DT_MIPS_MSYM: return "MIPS_MSYM";
1881 case DT_MIPS_CONFLICT: return "MIPS_CONFLICT";
1882 case DT_MIPS_LIBLIST: return "MIPS_LIBLIST";
1883 case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO";
1884 case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO";
1885 case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO";
1886 case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO";
1887 case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO";
1888 case DT_MIPS_GOTSYM: return "MIPS_GOTSYM";
1889 case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO";
1890 case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP";
1891 case DT_MIPS_RLD_MAP_REL: return "MIPS_RLD_MAP_REL";
1892 case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS";
1893 case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO";
1894 case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE";
1895 case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO";
1896 case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC";
1897 case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO";
1898 case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM";
1899 case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO";
1900 case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM";
1901 case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO";
1902 case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS";
1903 case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT";
1904 case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
1905 case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX";
1906 case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX";
1907 case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX";
1908 case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX";
1909 case DT_MIPS_OPTIONS: return "MIPS_OPTIONS";
1910 case DT_MIPS_INTERFACE: return "MIPS_INTERFACE";
1911 case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN";
1912 case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE";
1913 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1914 case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX";
1915 case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE";
1916 case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE";
1917 case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC";
1918 case DT_MIPS_PLTGOT: return "MIPS_PLTGOT";
1919 case DT_MIPS_RWPLT: return "MIPS_RWPLT";
1920 case DT_MIPS_XHASH: return "MIPS_XHASH";
1921 default:
1922 return NULL;
1923 }
1924 }
1925
1926 static const char *
1927 get_sparc64_dynamic_type (unsigned long type)
1928 {
1929 switch (type)
1930 {
1931 case DT_SPARC_REGISTER: return "SPARC_REGISTER";
1932 default:
1933 return NULL;
1934 }
1935 }
1936
1937 static const char *
1938 get_ppc_dynamic_type (unsigned long type)
1939 {
1940 switch (type)
1941 {
1942 case DT_PPC_GOT: return "PPC_GOT";
1943 case DT_PPC_OPT: return "PPC_OPT";
1944 default:
1945 return NULL;
1946 }
1947 }
1948
1949 static const char *
1950 get_ppc64_dynamic_type (unsigned long type)
1951 {
1952 switch (type)
1953 {
1954 case DT_PPC64_GLINK: return "PPC64_GLINK";
1955 case DT_PPC64_OPD: return "PPC64_OPD";
1956 case DT_PPC64_OPDSZ: return "PPC64_OPDSZ";
1957 case DT_PPC64_OPT: return "PPC64_OPT";
1958 default:
1959 return NULL;
1960 }
1961 }
1962
1963 static const char *
1964 get_parisc_dynamic_type (unsigned long type)
1965 {
1966 switch (type)
1967 {
1968 case DT_HP_LOAD_MAP: return "HP_LOAD_MAP";
1969 case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS";
1970 case DT_HP_DLD_HOOK: return "HP_DLD_HOOK";
1971 case DT_HP_UX10_INIT: return "HP_UX10_INIT";
1972 case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ";
1973 case DT_HP_PREINIT: return "HP_PREINIT";
1974 case DT_HP_PREINITSZ: return "HP_PREINITSZ";
1975 case DT_HP_NEEDED: return "HP_NEEDED";
1976 case DT_HP_TIME_STAMP: return "HP_TIME_STAMP";
1977 case DT_HP_CHECKSUM: return "HP_CHECKSUM";
1978 case DT_HP_GST_SIZE: return "HP_GST_SIZE";
1979 case DT_HP_GST_VERSION: return "HP_GST_VERSION";
1980 case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL";
1981 case DT_HP_EPLTREL: return "HP_GST_EPLTREL";
1982 case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ";
1983 case DT_HP_FILTERED: return "HP_FILTERED";
1984 case DT_HP_FILTER_TLS: return "HP_FILTER_TLS";
1985 case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED";
1986 case DT_HP_LAZYLOAD: return "HP_LAZYLOAD";
1987 case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT";
1988 case DT_PLT: return "PLT";
1989 case DT_PLT_SIZE: return "PLT_SIZE";
1990 case DT_DLT: return "DLT";
1991 case DT_DLT_SIZE: return "DLT_SIZE";
1992 default:
1993 return NULL;
1994 }
1995 }
1996
1997 static const char *
1998 get_ia64_dynamic_type (unsigned long type)
1999 {
2000 switch (type)
2001 {
2002 case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE";
2003 case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE";
2004 case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT";
2005 case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS";
2006 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ";
2007 case DT_IA_64_VMS_IDENT: return "VMS_IDENT";
2008 case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT";
2009 case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT";
2010 case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT";
2011 case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT";
2012 case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED";
2013 case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT";
2014 case DT_IA_64_VMS_XLATED: return "VMS_XLATED";
2015 case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE";
2016 case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ";
2017 case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG";
2018 case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG";
2019 case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME";
2020 case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO";
2021 case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET";
2022 case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG";
2023 case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET";
2024 case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG";
2025 case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET";
2026 case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET";
2027 case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF";
2028 case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF";
2029 case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF";
2030 case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET";
2031 case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG";
2032 case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE";
2033 default:
2034 return NULL;
2035 }
2036 }
2037
2038 static const char *
2039 get_solaris_section_type (unsigned long type)
2040 {
2041 switch (type)
2042 {
2043 case 0x6fffffee: return "SUNW_ancillary";
2044 case 0x6fffffef: return "SUNW_capchain";
2045 case 0x6ffffff0: return "SUNW_capinfo";
2046 case 0x6ffffff1: return "SUNW_symsort";
2047 case 0x6ffffff2: return "SUNW_tlssort";
2048 case 0x6ffffff3: return "SUNW_LDYNSYM";
2049 case 0x6ffffff4: return "SUNW_dof";
2050 case 0x6ffffff5: return "SUNW_cap";
2051 case 0x6ffffff6: return "SUNW_SIGNATURE";
2052 case 0x6ffffff7: return "SUNW_ANNOTATE";
2053 case 0x6ffffff8: return "SUNW_DEBUGSTR";
2054 case 0x6ffffff9: return "SUNW_DEBUG";
2055 case 0x6ffffffa: return "SUNW_move";
2056 case 0x6ffffffb: return "SUNW_COMDAT";
2057 case 0x6ffffffc: return "SUNW_syminfo";
2058 case 0x6ffffffd: return "SUNW_verdef";
2059 case 0x6ffffffe: return "SUNW_verneed";
2060 case 0x6fffffff: return "SUNW_versym";
2061 case 0x70000000: return "SPARC_GOTDATA";
2062 default: return NULL;
2063 }
2064 }
2065
2066 static const char *
2067 get_alpha_dynamic_type (unsigned long type)
2068 {
2069 switch (type)
2070 {
2071 case DT_ALPHA_PLTRO: return "ALPHA_PLTRO";
2072 default: return NULL;
2073 }
2074 }
2075
2076 static const char *
2077 get_score_dynamic_type (unsigned long type)
2078 {
2079 switch (type)
2080 {
2081 case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS";
2082 case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO";
2083 case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO";
2084 case DT_SCORE_GOTSYM: return "SCORE_GOTSYM";
2085 case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO";
2086 case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO";
2087 default: return NULL;
2088 }
2089 }
2090
2091 static const char *
2092 get_tic6x_dynamic_type (unsigned long type)
2093 {
2094 switch (type)
2095 {
2096 case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET";
2097 case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET";
2098 case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE";
2099 case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE";
2100 case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
2101 case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX";
2102 default: return NULL;
2103 }
2104 }
2105
2106 static const char *
2107 get_nios2_dynamic_type (unsigned long type)
2108 {
2109 switch (type)
2110 {
2111 case DT_NIOS2_GP: return "NIOS2_GP";
2112 default: return NULL;
2113 }
2114 }
2115
2116 static const char *
2117 get_solaris_dynamic_type (unsigned long type)
2118 {
2119 switch (type)
2120 {
2121 case 0x6000000d: return "SUNW_AUXILIARY";
2122 case 0x6000000e: return "SUNW_RTLDINF";
2123 case 0x6000000f: return "SUNW_FILTER";
2124 case 0x60000010: return "SUNW_CAP";
2125 case 0x60000011: return "SUNW_SYMTAB";
2126 case 0x60000012: return "SUNW_SYMSZ";
2127 case 0x60000013: return "SUNW_SORTENT";
2128 case 0x60000014: return "SUNW_SYMSORT";
2129 case 0x60000015: return "SUNW_SYMSORTSZ";
2130 case 0x60000016: return "SUNW_TLSSORT";
2131 case 0x60000017: return "SUNW_TLSSORTSZ";
2132 case 0x60000018: return "SUNW_CAPINFO";
2133 case 0x60000019: return "SUNW_STRPAD";
2134 case 0x6000001a: return "SUNW_CAPCHAIN";
2135 case 0x6000001b: return "SUNW_LDMACH";
2136 case 0x6000001d: return "SUNW_CAPCHAINENT";
2137 case 0x6000001f: return "SUNW_CAPCHAINSZ";
2138 case 0x60000021: return "SUNW_PARENT";
2139 case 0x60000023: return "SUNW_ASLR";
2140 case 0x60000025: return "SUNW_RELAX";
2141 case 0x60000029: return "SUNW_NXHEAP";
2142 case 0x6000002b: return "SUNW_NXSTACK";
2143
2144 case 0x70000001: return "SPARC_REGISTER";
2145 case 0x7ffffffd: return "AUXILIARY";
2146 case 0x7ffffffe: return "USED";
2147 case 0x7fffffff: return "FILTER";
2148
2149 default: return NULL;
2150 }
2151 }
2152
2153 static const char *
2154 get_dynamic_type (Filedata * filedata, unsigned long type)
2155 {
2156 static char buff[64];
2157
2158 switch (type)
2159 {
2160 case DT_NULL: return "NULL";
2161 case DT_NEEDED: return "NEEDED";
2162 case DT_PLTRELSZ: return "PLTRELSZ";
2163 case DT_PLTGOT: return "PLTGOT";
2164 case DT_HASH: return "HASH";
2165 case DT_STRTAB: return "STRTAB";
2166 case DT_SYMTAB: return "SYMTAB";
2167 case DT_RELA: return "RELA";
2168 case DT_RELASZ: return "RELASZ";
2169 case DT_RELAENT: return "RELAENT";
2170 case DT_STRSZ: return "STRSZ";
2171 case DT_SYMENT: return "SYMENT";
2172 case DT_INIT: return "INIT";
2173 case DT_FINI: return "FINI";
2174 case DT_SONAME: return "SONAME";
2175 case DT_RPATH: return "RPATH";
2176 case DT_SYMBOLIC: return "SYMBOLIC";
2177 case DT_REL: return "REL";
2178 case DT_RELSZ: return "RELSZ";
2179 case DT_RELENT: return "RELENT";
2180 case DT_PLTREL: return "PLTREL";
2181 case DT_DEBUG: return "DEBUG";
2182 case DT_TEXTREL: return "TEXTREL";
2183 case DT_JMPREL: return "JMPREL";
2184 case DT_BIND_NOW: return "BIND_NOW";
2185 case DT_INIT_ARRAY: return "INIT_ARRAY";
2186 case DT_FINI_ARRAY: return "FINI_ARRAY";
2187 case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ";
2188 case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ";
2189 case DT_RUNPATH: return "RUNPATH";
2190 case DT_FLAGS: return "FLAGS";
2191
2192 case DT_PREINIT_ARRAY: return "PREINIT_ARRAY";
2193 case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ";
2194 case DT_SYMTAB_SHNDX: return "SYMTAB_SHNDX";
2195
2196 case DT_CHECKSUM: return "CHECKSUM";
2197 case DT_PLTPADSZ: return "PLTPADSZ";
2198 case DT_MOVEENT: return "MOVEENT";
2199 case DT_MOVESZ: return "MOVESZ";
2200 case DT_FEATURE: return "FEATURE";
2201 case DT_POSFLAG_1: return "POSFLAG_1";
2202 case DT_SYMINSZ: return "SYMINSZ";
2203 case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */
2204
2205 case DT_ADDRRNGLO: return "ADDRRNGLO";
2206 case DT_CONFIG: return "CONFIG";
2207 case DT_DEPAUDIT: return "DEPAUDIT";
2208 case DT_AUDIT: return "AUDIT";
2209 case DT_PLTPAD: return "PLTPAD";
2210 case DT_MOVETAB: return "MOVETAB";
2211 case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */
2212
2213 case DT_VERSYM: return "VERSYM";
2214
2215 case DT_TLSDESC_GOT: return "TLSDESC_GOT";
2216 case DT_TLSDESC_PLT: return "TLSDESC_PLT";
2217 case DT_RELACOUNT: return "RELACOUNT";
2218 case DT_RELCOUNT: return "RELCOUNT";
2219 case DT_FLAGS_1: return "FLAGS_1";
2220 case DT_VERDEF: return "VERDEF";
2221 case DT_VERDEFNUM: return "VERDEFNUM";
2222 case DT_VERNEED: return "VERNEED";
2223 case DT_VERNEEDNUM: return "VERNEEDNUM";
2224
2225 case DT_AUXILIARY: return "AUXILIARY";
2226 case DT_USED: return "USED";
2227 case DT_FILTER: return "FILTER";
2228
2229 case DT_GNU_PRELINKED: return "GNU_PRELINKED";
2230 case DT_GNU_CONFLICT: return "GNU_CONFLICT";
2231 case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ";
2232 case DT_GNU_LIBLIST: return "GNU_LIBLIST";
2233 case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ";
2234 case DT_GNU_HASH: return "GNU_HASH";
2235 case DT_GNU_FLAGS_1: return "GNU_FLAGS_1";
2236
2237 default:
2238 if ((type >= DT_LOPROC) && (type <= DT_HIPROC))
2239 {
2240 const char * result;
2241
2242 switch (filedata->file_header.e_machine)
2243 {
2244 case EM_AARCH64:
2245 result = get_aarch64_dynamic_type (type);
2246 break;
2247 case EM_MIPS:
2248 case EM_MIPS_RS3_LE:
2249 result = get_mips_dynamic_type (type);
2250 break;
2251 case EM_SPARCV9:
2252 result = get_sparc64_dynamic_type (type);
2253 break;
2254 case EM_PPC:
2255 result = get_ppc_dynamic_type (type);
2256 break;
2257 case EM_PPC64:
2258 result = get_ppc64_dynamic_type (type);
2259 break;
2260 case EM_IA_64:
2261 result = get_ia64_dynamic_type (type);
2262 break;
2263 case EM_ALPHA:
2264 result = get_alpha_dynamic_type (type);
2265 break;
2266 case EM_SCORE:
2267 result = get_score_dynamic_type (type);
2268 break;
2269 case EM_TI_C6000:
2270 result = get_tic6x_dynamic_type (type);
2271 break;
2272 case EM_ALTERA_NIOS2:
2273 result = get_nios2_dynamic_type (type);
2274 break;
2275 default:
2276 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
2277 result = get_solaris_dynamic_type (type);
2278 else
2279 result = NULL;
2280 break;
2281 }
2282
2283 if (result != NULL)
2284 return result;
2285
2286 snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type);
2287 }
2288 else if (((type >= DT_LOOS) && (type <= DT_HIOS))
2289 || (filedata->file_header.e_machine == EM_PARISC
2290 && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS)))
2291 {
2292 const char * result;
2293
2294 switch (filedata->file_header.e_machine)
2295 {
2296 case EM_PARISC:
2297 result = get_parisc_dynamic_type (type);
2298 break;
2299 case EM_IA_64:
2300 result = get_ia64_dynamic_type (type);
2301 break;
2302 default:
2303 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
2304 result = get_solaris_dynamic_type (type);
2305 else
2306 result = NULL;
2307 break;
2308 }
2309
2310 if (result != NULL)
2311 return result;
2312
2313 snprintf (buff, sizeof (buff), _("Operating System specific: %lx"),
2314 type);
2315 }
2316 else
2317 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type);
2318
2319 return buff;
2320 }
2321 }
2322
2323 static char *
2324 get_file_type (unsigned e_type)
2325 {
2326 static char buff[64];
2327
2328 switch (e_type)
2329 {
2330 case ET_NONE: return _("NONE (None)");
2331 case ET_REL: return _("REL (Relocatable file)");
2332 case ET_EXEC: return _("EXEC (Executable file)");
2333 case ET_DYN: return _("DYN (Shared object file)");
2334 case ET_CORE: return _("CORE (Core file)");
2335
2336 default:
2337 if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC))
2338 snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type);
2339 else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS))
2340 snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type);
2341 else
2342 snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type);
2343 return buff;
2344 }
2345 }
2346
2347 static char *
2348 get_machine_name (unsigned e_machine)
2349 {
2350 static char buff[64]; /* XXX */
2351
2352 switch (e_machine)
2353 {
2354 /* Please keep this switch table sorted by increasing EM_ value. */
2355 /* 0 */
2356 case EM_NONE: return _("None");
2357 case EM_M32: return "WE32100";
2358 case EM_SPARC: return "Sparc";
2359 case EM_386: return "Intel 80386";
2360 case EM_68K: return "MC68000";
2361 case EM_88K: return "MC88000";
2362 case EM_IAMCU: return "Intel MCU";
2363 case EM_860: return "Intel 80860";
2364 case EM_MIPS: return "MIPS R3000";
2365 case EM_S370: return "IBM System/370";
2366 /* 10 */
2367 case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian";
2368 case EM_OLD_SPARCV9: return "Sparc v9 (old)";
2369 case EM_PARISC: return "HPPA";
2370 case EM_VPP550: return "Fujitsu VPP500";
2371 case EM_SPARC32PLUS: return "Sparc v8+" ;
2372 case EM_960: return "Intel 80960";
2373 case EM_PPC: return "PowerPC";
2374 /* 20 */
2375 case EM_PPC64: return "PowerPC64";
2376 case EM_S390_OLD:
2377 case EM_S390: return "IBM S/390";
2378 case EM_SPU: return "SPU";
2379 /* 30 */
2380 case EM_V800: return "Renesas V850 (using RH850 ABI)";
2381 case EM_FR20: return "Fujitsu FR20";
2382 case EM_RH32: return "TRW RH32";
2383 case EM_MCORE: return "MCORE";
2384 /* 40 */
2385 case EM_ARM: return "ARM";
2386 case EM_OLD_ALPHA: return "Digital Alpha (old)";
2387 case EM_SH: return "Renesas / SuperH SH";
2388 case EM_SPARCV9: return "Sparc v9";
2389 case EM_TRICORE: return "Siemens Tricore";
2390 case EM_ARC: return "ARC";
2391 case EM_H8_300: return "Renesas H8/300";
2392 case EM_H8_300H: return "Renesas H8/300H";
2393 case EM_H8S: return "Renesas H8S";
2394 case EM_H8_500: return "Renesas H8/500";
2395 /* 50 */
2396 case EM_IA_64: return "Intel IA-64";
2397 case EM_MIPS_X: return "Stanford MIPS-X";
2398 case EM_COLDFIRE: return "Motorola Coldfire";
2399 case EM_68HC12: return "Motorola MC68HC12 Microcontroller";
2400 case EM_MMA: return "Fujitsu Multimedia Accelerator";
2401 case EM_PCP: return "Siemens PCP";
2402 case EM_NCPU: return "Sony nCPU embedded RISC processor";
2403 case EM_NDR1: return "Denso NDR1 microprocesspr";
2404 case EM_STARCORE: return "Motorola Star*Core processor";
2405 case EM_ME16: return "Toyota ME16 processor";
2406 /* 60 */
2407 case EM_ST100: return "STMicroelectronics ST100 processor";
2408 case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor";
2409 case EM_X86_64: return "Advanced Micro Devices X86-64";
2410 case EM_PDSP: return "Sony DSP processor";
2411 case EM_PDP10: return "Digital Equipment Corp. PDP-10";
2412 case EM_PDP11: return "Digital Equipment Corp. PDP-11";
2413 case EM_FX66: return "Siemens FX66 microcontroller";
2414 case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
2415 case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller";
2416 case EM_68HC16: return "Motorola MC68HC16 Microcontroller";
2417 /* 70 */
2418 case EM_68HC11: return "Motorola MC68HC11 Microcontroller";
2419 case EM_68HC08: return "Motorola MC68HC08 Microcontroller";
2420 case EM_68HC05: return "Motorola MC68HC05 Microcontroller";
2421 case EM_SVX: return "Silicon Graphics SVx";
2422 case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller";
2423 case EM_VAX: return "Digital VAX";
2424 case EM_CRIS: return "Axis Communications 32-bit embedded processor";
2425 case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu";
2426 case EM_FIREPATH: return "Element 14 64-bit DSP processor";
2427 case EM_ZSP: return "LSI Logic's 16-bit DSP processor";
2428 /* 80 */
2429 case EM_MMIX: return "Donald Knuth's educational 64-bit processor";
2430 case EM_HUANY: return "Harvard Universitys's machine-independent object format";
2431 case EM_PRISM: return "Vitesse Prism";
2432 case EM_AVR_OLD:
2433 case EM_AVR: return "Atmel AVR 8-bit microcontroller";
2434 case EM_CYGNUS_FR30:
2435 case EM_FR30: return "Fujitsu FR30";
2436 case EM_CYGNUS_D10V:
2437 case EM_D10V: return "d10v";
2438 case EM_CYGNUS_D30V:
2439 case EM_D30V: return "d30v";
2440 case EM_CYGNUS_V850:
2441 case EM_V850: return "Renesas V850";
2442 case EM_CYGNUS_M32R:
2443 case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)";
2444 case EM_CYGNUS_MN10300:
2445 case EM_MN10300: return "mn10300";
2446 /* 90 */
2447 case EM_CYGNUS_MN10200:
2448 case EM_MN10200: return "mn10200";
2449 case EM_PJ: return "picoJava";
2450 case EM_OR1K: return "OpenRISC 1000";
2451 case EM_ARC_COMPACT: return "ARCompact";
2452 case EM_XTENSA_OLD:
2453 case EM_XTENSA: return "Tensilica Xtensa Processor";
2454 case EM_VIDEOCORE: return "Alphamosaic VideoCore processor";
2455 case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor";
2456 case EM_NS32K: return "National Semiconductor 32000 series";
2457 case EM_TPC: return "Tenor Network TPC processor";
2458 case EM_SNP1K: return "Trebia SNP 1000 processor";
2459 /* 100 */
2460 case EM_ST200: return "STMicroelectronics ST200 microcontroller";
2461 case EM_IP2K_OLD:
2462 case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers";
2463 case EM_MAX: return "MAX Processor";
2464 case EM_CR: return "National Semiconductor CompactRISC";
2465 case EM_F2MC16: return "Fujitsu F2MC16";
2466 case EM_MSP430: return "Texas Instruments msp430 microcontroller";
2467 case EM_BLACKFIN: return "Analog Devices Blackfin";
2468 case EM_SE_C33: return "S1C33 Family of Seiko Epson processors";
2469 case EM_SEP: return "Sharp embedded microprocessor";
2470 case EM_ARCA: return "Arca RISC microprocessor";
2471 /* 110 */
2472 case EM_UNICORE: return "Unicore";
2473 case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU";
2474 case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor";
2475 case EM_ALTERA_NIOS2: return "Altera Nios II";
2476 case EM_CRX: return "National Semiconductor CRX microprocessor";
2477 case EM_XGATE: return "Motorola XGATE embedded processor";
2478 case EM_C166:
2479 case EM_XC16X: return "Infineon Technologies xc16x";
2480 case EM_M16C: return "Renesas M16C series microprocessors";
2481 case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller";
2482 case EM_CE: return "Freescale Communication Engine RISC core";
2483 /* 120 */
2484 case EM_M32C: return "Renesas M32c";
2485 /* 130 */
2486 case EM_TSK3000: return "Altium TSK3000 core";
2487 case EM_RS08: return "Freescale RS08 embedded processor";
2488 case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor";
2489 case EM_SCORE: return "SUNPLUS S+Core";
2490 case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor";
2491 case EM_VIDEOCORE3: return "Broadcom VideoCore III processor";
2492 case EM_LATTICEMICO32: return "Lattice Mico32";
2493 case EM_SE_C17: return "Seiko Epson C17 family";
2494 /* 140 */
2495 case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family";
2496 case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family";
2497 case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family";
2498 case EM_TI_PRU: return "TI PRU I/O processor";
2499 /* 160 */
2500 case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor";
2501 case EM_CYPRESS_M8C: return "Cypress M8C microprocessor";
2502 case EM_R32C: return "Renesas R32C series microprocessors";
2503 case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family";
2504 case EM_QDSP6: return "QUALCOMM DSP6 Processor";
2505 case EM_8051: return "Intel 8051 and variants";
2506 case EM_STXP7X: return "STMicroelectronics STxP7x family";
2507 case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family";
2508 case EM_ECOG1X: return "Cyan Technology eCOG1X family";
2509 case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
2510 /* 170 */
2511 case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor";
2512 case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor";
2513 case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture";
2514 case EM_RX: return "Renesas RX";
2515 case EM_METAG: return "Imagination Technologies Meta processor architecture";
2516 case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture";
2517 case EM_ECOG16: return "Cyan Technology eCOG16 family";
2518 case EM_CR16:
2519 case EM_MICROBLAZE:
2520 case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze";
2521 case EM_ETPU: return "Freescale Extended Time Processing Unit";
2522 case EM_SLE9X: return "Infineon Technologies SLE9X core";
2523 /* 180 */
2524 case EM_L1OM: return "Intel L1OM";
2525 case EM_K1OM: return "Intel K1OM";
2526 case EM_INTEL182: return "Intel (reserved)";
2527 case EM_AARCH64: return "AArch64";
2528 case EM_ARM184: return "ARM (reserved)";
2529 case EM_AVR32: return "Atmel Corporation 32-bit microprocessor";
2530 case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller";
2531 case EM_TILE64: return "Tilera TILE64 multicore architecture family";
2532 case EM_TILEPRO: return "Tilera TILEPro multicore architecture family";
2533 /* 190 */
2534 case EM_CUDA: return "NVIDIA CUDA architecture";
2535 case EM_TILEGX: return "Tilera TILE-Gx multicore architecture family";
2536 case EM_CLOUDSHIELD: return "CloudShield architecture family";
2537 case EM_COREA_1ST: return "KIPO-KAIST Core-A 1st generation processor family";
2538 case EM_COREA_2ND: return "KIPO-KAIST Core-A 2nd generation processor family";
2539 case EM_ARC_COMPACT2: return "ARCv2";
2540 case EM_OPEN8: return "Open8 8-bit RISC soft processor core";
2541 case EM_RL78: return "Renesas RL78";
2542 case EM_VIDEOCORE5: return "Broadcom VideoCore V processor";
2543 case EM_78K0R: return "Renesas 78K0R";
2544 /* 200 */
2545 case EM_56800EX: return "Freescale 56800EX Digital Signal Controller (DSC)";
2546 case EM_BA1: return "Beyond BA1 CPU architecture";
2547 case EM_BA2: return "Beyond BA2 CPU architecture";
2548 case EM_XCORE: return "XMOS xCORE processor family";
2549 case EM_MCHP_PIC: return "Microchip 8-bit PIC(r) family";
2550 case EM_INTELGT: return "Intel Graphics Technology";
2551 /* 210 */
2552 case EM_KM32: return "KM211 KM32 32-bit processor";
2553 case EM_KMX32: return "KM211 KMX32 32-bit processor";
2554 case EM_KMX16: return "KM211 KMX16 16-bit processor";
2555 case EM_KMX8: return "KM211 KMX8 8-bit processor";
2556 case EM_KVARC: return "KM211 KVARC processor";
2557 case EM_CDP: return "Paneve CDP architecture family";
2558 case EM_COGE: return "Cognitive Smart Memory Processor";
2559 case EM_COOL: return "Bluechip Systems CoolEngine";
2560 case EM_NORC: return "Nanoradio Optimized RISC";
2561 case EM_CSR_KALIMBA: return "CSR Kalimba architecture family";
2562 /* 220 */
2563 case EM_Z80: return "Zilog Z80";
2564 case EM_VISIUM: return "CDS VISIUMcore processor";
2565 case EM_FT32: return "FTDI Chip FT32";
2566 case EM_MOXIE: return "Moxie";
2567 case EM_AMDGPU: return "AMD GPU";
2568 /* 230 (all reserved) */
2569 /* 240 */
2570 case EM_RISCV: return "RISC-V";
2571 case EM_LANAI: return "Lanai 32-bit processor";
2572 case EM_CEVA: return "CEVA Processor Architecture Family";
2573 case EM_CEVA_X2: return "CEVA X2 Processor Family";
2574 case EM_BPF: return "Linux BPF";
2575 case EM_GRAPHCORE_IPU: return "Graphcore Intelligent Processing Unit";
2576 case EM_IMG1: return "Imagination Technologies";
2577 /* 250 */
2578 case EM_NFP: return "Netronome Flow Processor";
2579 case EM_VE: return "NEC Vector Engine";
2580 case EM_CSKY: return "C-SKY";
2581 case EM_ARC_COMPACT3_64: return "Synopsys ARCv2.3 64-bit";
2582 case EM_MCS6502: return "MOS Technology MCS 6502 processor";
2583 case EM_ARC_COMPACT3: return "Synopsys ARCv2.3 32-bit";
2584 case EM_KVX: return "Kalray VLIW core of the MPPA processor family";
2585 case EM_65816: return "WDC 65816/65C816";
2586 case EM_LOONGARCH: return "Loongson Loongarch";
2587 case EM_KF32: return "ChipON KungFu32";
2588
2589 /* Large numbers... */
2590 case EM_MT: return "Morpho Techologies MT processor";
2591 case EM_ALPHA: return "Alpha";
2592 case EM_WEBASSEMBLY: return "Web Assembly";
2593 case EM_DLX: return "OpenDLX";
2594 case EM_XSTORMY16: return "Sanyo XStormy16 CPU core";
2595 case EM_IQ2000: return "Vitesse IQ2000";
2596 case EM_M32C_OLD:
2597 case EM_NIOS32: return "Altera Nios";
2598 case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
2599 case EM_ADAPTEVA_EPIPHANY: return "Adapteva EPIPHANY";
2600 case EM_CYGNUS_FRV: return "Fujitsu FR-V";
2601 case EM_S12Z: return "Freescale S12Z";
2602
2603 default:
2604 snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine);
2605 return buff;
2606 }
2607 }
2608
2609 static void
2610 decode_ARC_machine_flags (unsigned e_flags, unsigned e_machine, char buf[])
2611 {
2612 /* ARC has two machine types EM_ARC_COMPACT and EM_ARC_COMPACT2. Some
2613 other compilers don't specify an architecture type in the e_flags, and
2614 instead use EM_ARC_COMPACT for old ARC600, ARC601, and ARC700
2615 architectures, and switch to EM_ARC_COMPACT2 for newer ARCEM and ARCHS
2616 architectures.
2617
2618 Th GNU tools follows this use of EM_ARC_COMPACT and EM_ARC_COMPACT2,
2619 but also sets a specific architecture type in the e_flags field.
2620
2621 However, when decoding the flags we don't worry if we see an
2622 unexpected pairing, for example EM_ARC_COMPACT machine type, with
2623 ARCEM architecture type. */
2624
2625 switch (e_flags & EF_ARC_MACH_MSK)
2626 {
2627 /* We only expect these to occur for EM_ARC_COMPACT2. */
2628 case EF_ARC_CPU_ARCV2EM:
2629 strcat (buf, ", ARC EM");
2630 break;
2631 case EF_ARC_CPU_ARCV2HS:
2632 strcat (buf, ", ARC HS");
2633 break;
2634
2635 /* We only expect these to occur for EM_ARC_COMPACT. */
2636 case E_ARC_MACH_ARC600:
2637 strcat (buf, ", ARC600");
2638 break;
2639 case E_ARC_MACH_ARC601:
2640 strcat (buf, ", ARC601");
2641 break;
2642 case E_ARC_MACH_ARC700:
2643 strcat (buf, ", ARC700");
2644 break;
2645
2646 /* The only times we should end up here are (a) A corrupt ELF, (b) A
2647 new ELF with new architecture being read by an old version of
2648 readelf, or (c) An ELF built with non-GNU compiler that does not
2649 set the architecture in the e_flags. */
2650 default:
2651 if (e_machine == EM_ARC_COMPACT)
2652 strcat (buf, ", Unknown ARCompact");
2653 else
2654 strcat (buf, ", Unknown ARC");
2655 break;
2656 }
2657
2658 switch (e_flags & EF_ARC_OSABI_MSK)
2659 {
2660 case E_ARC_OSABI_ORIG:
2661 strcat (buf, ", (ABI:legacy)");
2662 break;
2663 case E_ARC_OSABI_V2:
2664 strcat (buf, ", (ABI:v2)");
2665 break;
2666 /* Only upstream 3.9+ kernels will support ARCv2 ISA. */
2667 case E_ARC_OSABI_V3:
2668 strcat (buf, ", v3 no-legacy-syscalls ABI");
2669 break;
2670 case E_ARC_OSABI_V4:
2671 strcat (buf, ", v4 ABI");
2672 break;
2673 default:
2674 strcat (buf, ", unrecognised ARC OSABI flag");
2675 break;
2676 }
2677 }
2678
2679 static void
2680 decode_ARM_machine_flags (unsigned e_flags, char buf[])
2681 {
2682 unsigned eabi;
2683 bool unknown = false;
2684
2685 eabi = EF_ARM_EABI_VERSION (e_flags);
2686 e_flags &= ~ EF_ARM_EABIMASK;
2687
2688 /* Handle "generic" ARM flags. */
2689 if (e_flags & EF_ARM_RELEXEC)
2690 {
2691 strcat (buf, ", relocatable executable");
2692 e_flags &= ~ EF_ARM_RELEXEC;
2693 }
2694
2695 if (e_flags & EF_ARM_PIC)
2696 {
2697 strcat (buf, ", position independent");
2698 e_flags &= ~ EF_ARM_PIC;
2699 }
2700
2701 /* Now handle EABI specific flags. */
2702 switch (eabi)
2703 {
2704 default:
2705 strcat (buf, ", <unrecognized EABI>");
2706 if (e_flags)
2707 unknown = true;
2708 break;
2709
2710 case EF_ARM_EABI_VER1:
2711 strcat (buf, ", Version1 EABI");
2712 while (e_flags)
2713 {
2714 unsigned flag;
2715
2716 /* Process flags one bit at a time. */
2717 flag = e_flags & - e_flags;
2718 e_flags &= ~ flag;
2719
2720 switch (flag)
2721 {
2722 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2723 strcat (buf, ", sorted symbol tables");
2724 break;
2725
2726 default:
2727 unknown = true;
2728 break;
2729 }
2730 }
2731 break;
2732
2733 case EF_ARM_EABI_VER2:
2734 strcat (buf, ", Version2 EABI");
2735 while (e_flags)
2736 {
2737 unsigned flag;
2738
2739 /* Process flags one bit at a time. */
2740 flag = e_flags & - e_flags;
2741 e_flags &= ~ flag;
2742
2743 switch (flag)
2744 {
2745 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2746 strcat (buf, ", sorted symbol tables");
2747 break;
2748
2749 case EF_ARM_DYNSYMSUSESEGIDX:
2750 strcat (buf, ", dynamic symbols use segment index");
2751 break;
2752
2753 case EF_ARM_MAPSYMSFIRST:
2754 strcat (buf, ", mapping symbols precede others");
2755 break;
2756
2757 default:
2758 unknown = true;
2759 break;
2760 }
2761 }
2762 break;
2763
2764 case EF_ARM_EABI_VER3:
2765 strcat (buf, ", Version3 EABI");
2766 break;
2767
2768 case EF_ARM_EABI_VER4:
2769 strcat (buf, ", Version4 EABI");
2770 while (e_flags)
2771 {
2772 unsigned flag;
2773
2774 /* Process flags one bit at a time. */
2775 flag = e_flags & - e_flags;
2776 e_flags &= ~ flag;
2777
2778 switch (flag)
2779 {
2780 case EF_ARM_BE8:
2781 strcat (buf, ", BE8");
2782 break;
2783
2784 case EF_ARM_LE8:
2785 strcat (buf, ", LE8");
2786 break;
2787
2788 default:
2789 unknown = true;
2790 break;
2791 }
2792 }
2793 break;
2794
2795 case EF_ARM_EABI_VER5:
2796 strcat (buf, ", Version5 EABI");
2797 while (e_flags)
2798 {
2799 unsigned flag;
2800
2801 /* Process flags one bit at a time. */
2802 flag = e_flags & - e_flags;
2803 e_flags &= ~ flag;
2804
2805 switch (flag)
2806 {
2807 case EF_ARM_BE8:
2808 strcat (buf, ", BE8");
2809 break;
2810
2811 case EF_ARM_LE8:
2812 strcat (buf, ", LE8");
2813 break;
2814
2815 case EF_ARM_ABI_FLOAT_SOFT: /* Conflicts with EF_ARM_SOFT_FLOAT. */
2816 strcat (buf, ", soft-float ABI");
2817 break;
2818
2819 case EF_ARM_ABI_FLOAT_HARD: /* Conflicts with EF_ARM_VFP_FLOAT. */
2820 strcat (buf, ", hard-float ABI");
2821 break;
2822
2823 default:
2824 unknown = true;
2825 break;
2826 }
2827 }
2828 break;
2829
2830 case EF_ARM_EABI_UNKNOWN:
2831 strcat (buf, ", GNU EABI");
2832 while (e_flags)
2833 {
2834 unsigned flag;
2835
2836 /* Process flags one bit at a time. */
2837 flag = e_flags & - e_flags;
2838 e_flags &= ~ flag;
2839
2840 switch (flag)
2841 {
2842 case EF_ARM_INTERWORK:
2843 strcat (buf, ", interworking enabled");
2844 break;
2845
2846 case EF_ARM_APCS_26:
2847 strcat (buf, ", uses APCS/26");
2848 break;
2849
2850 case EF_ARM_APCS_FLOAT:
2851 strcat (buf, ", uses APCS/float");
2852 break;
2853
2854 case EF_ARM_PIC:
2855 strcat (buf, ", position independent");
2856 break;
2857
2858 case EF_ARM_ALIGN8:
2859 strcat (buf, ", 8 bit structure alignment");
2860 break;
2861
2862 case EF_ARM_NEW_ABI:
2863 strcat (buf, ", uses new ABI");
2864 break;
2865
2866 case EF_ARM_OLD_ABI:
2867 strcat (buf, ", uses old ABI");
2868 break;
2869
2870 case EF_ARM_SOFT_FLOAT:
2871 strcat (buf, ", software FP");
2872 break;
2873
2874 case EF_ARM_VFP_FLOAT:
2875 strcat (buf, ", VFP");
2876 break;
2877
2878 case EF_ARM_MAVERICK_FLOAT:
2879 strcat (buf, ", Maverick FP");
2880 break;
2881
2882 default:
2883 unknown = true;
2884 break;
2885 }
2886 }
2887 }
2888
2889 if (unknown)
2890 strcat (buf,_(", <unknown>"));
2891 }
2892
2893 static void
2894 decode_AVR_machine_flags (unsigned e_flags, char buf[], size_t size)
2895 {
2896 --size; /* Leave space for null terminator. */
2897
2898 switch (e_flags & EF_AVR_MACH)
2899 {
2900 case E_AVR_MACH_AVR1:
2901 strncat (buf, ", avr:1", size);
2902 break;
2903 case E_AVR_MACH_AVR2:
2904 strncat (buf, ", avr:2", size);
2905 break;
2906 case E_AVR_MACH_AVR25:
2907 strncat (buf, ", avr:25", size);
2908 break;
2909 case E_AVR_MACH_AVR3:
2910 strncat (buf, ", avr:3", size);
2911 break;
2912 case E_AVR_MACH_AVR31:
2913 strncat (buf, ", avr:31", size);
2914 break;
2915 case E_AVR_MACH_AVR35:
2916 strncat (buf, ", avr:35", size);
2917 break;
2918 case E_AVR_MACH_AVR4:
2919 strncat (buf, ", avr:4", size);
2920 break;
2921 case E_AVR_MACH_AVR5:
2922 strncat (buf, ", avr:5", size);
2923 break;
2924 case E_AVR_MACH_AVR51:
2925 strncat (buf, ", avr:51", size);
2926 break;
2927 case E_AVR_MACH_AVR6:
2928 strncat (buf, ", avr:6", size);
2929 break;
2930 case E_AVR_MACH_AVRTINY:
2931 strncat (buf, ", avr:100", size);
2932 break;
2933 case E_AVR_MACH_XMEGA1:
2934 strncat (buf, ", avr:101", size);
2935 break;
2936 case E_AVR_MACH_XMEGA2:
2937 strncat (buf, ", avr:102", size);
2938 break;
2939 case E_AVR_MACH_XMEGA3:
2940 strncat (buf, ", avr:103", size);
2941 break;
2942 case E_AVR_MACH_XMEGA4:
2943 strncat (buf, ", avr:104", size);
2944 break;
2945 case E_AVR_MACH_XMEGA5:
2946 strncat (buf, ", avr:105", size);
2947 break;
2948 case E_AVR_MACH_XMEGA6:
2949 strncat (buf, ", avr:106", size);
2950 break;
2951 case E_AVR_MACH_XMEGA7:
2952 strncat (buf, ", avr:107", size);
2953 break;
2954 default:
2955 strncat (buf, ", avr:<unknown>", size);
2956 break;
2957 }
2958
2959 size -= strlen (buf);
2960 if (e_flags & EF_AVR_LINKRELAX_PREPARED)
2961 strncat (buf, ", link-relax", size);
2962 }
2963
2964 static void
2965 decode_NDS32_machine_flags (unsigned e_flags, char buf[], size_t size)
2966 {
2967 unsigned abi;
2968 unsigned arch;
2969 unsigned config;
2970 unsigned version;
2971 bool has_fpu = false;
2972 unsigned int r = 0;
2973
2974 static const char *ABI_STRINGS[] =
2975 {
2976 "ABI v0", /* use r5 as return register; only used in N1213HC */
2977 "ABI v1", /* use r0 as return register */
2978 "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */
2979 "ABI v2fp", /* for FPU */
2980 "AABI",
2981 "ABI2 FP+"
2982 };
2983 static const char *VER_STRINGS[] =
2984 {
2985 "Andes ELF V1.3 or older",
2986 "Andes ELF V1.3.1",
2987 "Andes ELF V1.4"
2988 };
2989 static const char *ARCH_STRINGS[] =
2990 {
2991 "",
2992 "Andes Star v1.0",
2993 "Andes Star v2.0",
2994 "Andes Star v3.0",
2995 "Andes Star v3.0m"
2996 };
2997
2998 abi = EF_NDS_ABI & e_flags;
2999 arch = EF_NDS_ARCH & e_flags;
3000 config = EF_NDS_INST & e_flags;
3001 version = EF_NDS32_ELF_VERSION & e_flags;
3002
3003 memset (buf, 0, size);
3004
3005 switch (abi)
3006 {
3007 case E_NDS_ABI_V0:
3008 case E_NDS_ABI_V1:
3009 case E_NDS_ABI_V2:
3010 case E_NDS_ABI_V2FP:
3011 case E_NDS_ABI_AABI:
3012 case E_NDS_ABI_V2FP_PLUS:
3013 /* In case there are holes in the array. */
3014 r += snprintf (buf + r, size - r, ", %s", ABI_STRINGS[abi >> EF_NDS_ABI_SHIFT]);
3015 break;
3016
3017 default:
3018 r += snprintf (buf + r, size - r, ", <unrecognized ABI>");
3019 break;
3020 }
3021
3022 switch (version)
3023 {
3024 case E_NDS32_ELF_VER_1_2:
3025 case E_NDS32_ELF_VER_1_3:
3026 case E_NDS32_ELF_VER_1_4:
3027 r += snprintf (buf + r, size - r, ", %s", VER_STRINGS[version >> EF_NDS32_ELF_VERSION_SHIFT]);
3028 break;
3029
3030 default:
3031 r += snprintf (buf + r, size - r, ", <unrecognized ELF version number>");
3032 break;
3033 }
3034
3035 if (E_NDS_ABI_V0 == abi)
3036 {
3037 /* OLD ABI; only used in N1213HC, has performance extension 1. */
3038 r += snprintf (buf + r, size - r, ", Andes Star v1.0, N1213HC, MAC, PERF1");
3039 if (arch == E_NDS_ARCH_STAR_V1_0)
3040 r += snprintf (buf + r, size -r, ", 16b"); /* has 16-bit instructions */
3041 return;
3042 }
3043
3044 switch (arch)
3045 {
3046 case E_NDS_ARCH_STAR_V1_0:
3047 case E_NDS_ARCH_STAR_V2_0:
3048 case E_NDS_ARCH_STAR_V3_0:
3049 case E_NDS_ARCH_STAR_V3_M:
3050 r += snprintf (buf + r, size - r, ", %s", ARCH_STRINGS[arch >> EF_NDS_ARCH_SHIFT]);
3051 break;
3052
3053 default:
3054 r += snprintf (buf + r, size - r, ", <unrecognized architecture>");
3055 /* ARCH version determines how the e_flags are interpreted.
3056 If it is unknown, we cannot proceed. */
3057 return;
3058 }
3059
3060 /* Newer ABI; Now handle architecture specific flags. */
3061 if (arch == E_NDS_ARCH_STAR_V1_0)
3062 {
3063 if (config & E_NDS32_HAS_MFUSR_PC_INST)
3064 r += snprintf (buf + r, size -r, ", MFUSR_PC");
3065
3066 if (!(config & E_NDS32_HAS_NO_MAC_INST))
3067 r += snprintf (buf + r, size -r, ", MAC");
3068
3069 if (config & E_NDS32_HAS_DIV_INST)
3070 r += snprintf (buf + r, size -r, ", DIV");
3071
3072 if (config & E_NDS32_HAS_16BIT_INST)
3073 r += snprintf (buf + r, size -r, ", 16b");
3074 }
3075 else
3076 {
3077 if (config & E_NDS32_HAS_MFUSR_PC_INST)
3078 {
3079 if (version <= E_NDS32_ELF_VER_1_3)
3080 r += snprintf (buf + r, size -r, ", [B8]");
3081 else
3082 r += snprintf (buf + r, size -r, ", EX9");
3083 }
3084
3085 if (config & E_NDS32_HAS_MAC_DX_INST)
3086 r += snprintf (buf + r, size -r, ", MAC_DX");
3087
3088 if (config & E_NDS32_HAS_DIV_DX_INST)
3089 r += snprintf (buf + r, size -r, ", DIV_DX");
3090
3091 if (config & E_NDS32_HAS_16BIT_INST)
3092 {
3093 if (version <= E_NDS32_ELF_VER_1_3)
3094 r += snprintf (buf + r, size -r, ", 16b");
3095 else
3096 r += snprintf (buf + r, size -r, ", IFC");
3097 }
3098 }
3099
3100 if (config & E_NDS32_HAS_EXT_INST)
3101 r += snprintf (buf + r, size -r, ", PERF1");
3102
3103 if (config & E_NDS32_HAS_EXT2_INST)
3104 r += snprintf (buf + r, size -r, ", PERF2");
3105
3106 if (config & E_NDS32_HAS_FPU_INST)
3107 {
3108 has_fpu = true;
3109 r += snprintf (buf + r, size -r, ", FPU_SP");
3110 }
3111
3112 if (config & E_NDS32_HAS_FPU_DP_INST)
3113 {
3114 has_fpu = true;
3115 r += snprintf (buf + r, size -r, ", FPU_DP");
3116 }
3117
3118 if (config & E_NDS32_HAS_FPU_MAC_INST)
3119 {
3120 has_fpu = true;
3121 r += snprintf (buf + r, size -r, ", FPU_MAC");
3122 }
3123
3124 if (has_fpu)
3125 {
3126 switch ((config & E_NDS32_FPU_REG_CONF) >> E_NDS32_FPU_REG_CONF_SHIFT)
3127 {
3128 case E_NDS32_FPU_REG_8SP_4DP:
3129 r += snprintf (buf + r, size -r, ", FPU_REG:8/4");
3130 break;
3131 case E_NDS32_FPU_REG_16SP_8DP:
3132 r += snprintf (buf + r, size -r, ", FPU_REG:16/8");
3133 break;
3134 case E_NDS32_FPU_REG_32SP_16DP:
3135 r += snprintf (buf + r, size -r, ", FPU_REG:32/16");
3136 break;
3137 case E_NDS32_FPU_REG_32SP_32DP:
3138 r += snprintf (buf + r, size -r, ", FPU_REG:32/32");
3139 break;
3140 }
3141 }
3142
3143 if (config & E_NDS32_HAS_AUDIO_INST)
3144 r += snprintf (buf + r, size -r, ", AUDIO");
3145
3146 if (config & E_NDS32_HAS_STRING_INST)
3147 r += snprintf (buf + r, size -r, ", STR");
3148
3149 if (config & E_NDS32_HAS_REDUCED_REGS)
3150 r += snprintf (buf + r, size -r, ", 16REG");
3151
3152 if (config & E_NDS32_HAS_VIDEO_INST)
3153 {
3154 if (version <= E_NDS32_ELF_VER_1_3)
3155 r += snprintf (buf + r, size -r, ", VIDEO");
3156 else
3157 r += snprintf (buf + r, size -r, ", SATURATION");
3158 }
3159
3160 if (config & E_NDS32_HAS_ENCRIPT_INST)
3161 r += snprintf (buf + r, size -r, ", ENCRP");
3162
3163 if (config & E_NDS32_HAS_L2C_INST)
3164 r += snprintf (buf + r, size -r, ", L2C");
3165 }
3166
3167 static char *
3168 get_machine_flags (Filedata * filedata, unsigned e_flags, unsigned e_machine)
3169 {
3170 static char buf[1024];
3171
3172 buf[0] = '\0';
3173
3174 if (e_flags)
3175 {
3176 switch (e_machine)
3177 {
3178 default:
3179 break;
3180
3181 case EM_ARC_COMPACT2:
3182 case EM_ARC_COMPACT:
3183 decode_ARC_machine_flags (e_flags, e_machine, buf);
3184 break;
3185
3186 case EM_ARM:
3187 decode_ARM_machine_flags (e_flags, buf);
3188 break;
3189
3190 case EM_AVR:
3191 decode_AVR_machine_flags (e_flags, buf, sizeof buf);
3192 break;
3193
3194 case EM_BLACKFIN:
3195 if (e_flags & EF_BFIN_PIC)
3196 strcat (buf, ", PIC");
3197
3198 if (e_flags & EF_BFIN_FDPIC)
3199 strcat (buf, ", FDPIC");
3200
3201 if (e_flags & EF_BFIN_CODE_IN_L1)
3202 strcat (buf, ", code in L1");
3203
3204 if (e_flags & EF_BFIN_DATA_IN_L1)
3205 strcat (buf, ", data in L1");
3206
3207 break;
3208
3209 case EM_CYGNUS_FRV:
3210 switch (e_flags & EF_FRV_CPU_MASK)
3211 {
3212 case EF_FRV_CPU_GENERIC:
3213 break;
3214
3215 default:
3216 strcat (buf, ", fr???");
3217 break;
3218
3219 case EF_FRV_CPU_FR300:
3220 strcat (buf, ", fr300");
3221 break;
3222
3223 case EF_FRV_CPU_FR400:
3224 strcat (buf, ", fr400");
3225 break;
3226 case EF_FRV_CPU_FR405:
3227 strcat (buf, ", fr405");
3228 break;
3229
3230 case EF_FRV_CPU_FR450:
3231 strcat (buf, ", fr450");
3232 break;
3233
3234 case EF_FRV_CPU_FR500:
3235 strcat (buf, ", fr500");
3236 break;
3237 case EF_FRV_CPU_FR550:
3238 strcat (buf, ", fr550");
3239 break;
3240
3241 case EF_FRV_CPU_SIMPLE:
3242 strcat (buf, ", simple");
3243 break;
3244 case EF_FRV_CPU_TOMCAT:
3245 strcat (buf, ", tomcat");
3246 break;
3247 }
3248 break;
3249
3250 case EM_68K:
3251 if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000)
3252 strcat (buf, ", m68000");
3253 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32)
3254 strcat (buf, ", cpu32");
3255 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO)
3256 strcat (buf, ", fido_a");
3257 else
3258 {
3259 char const * isa = _("unknown");
3260 char const * mac = _("unknown mac");
3261 char const * additional = NULL;
3262
3263 switch (e_flags & EF_M68K_CF_ISA_MASK)
3264 {
3265 case EF_M68K_CF_ISA_A_NODIV:
3266 isa = "A";
3267 additional = ", nodiv";
3268 break;
3269 case EF_M68K_CF_ISA_A:
3270 isa = "A";
3271 break;
3272 case EF_M68K_CF_ISA_A_PLUS:
3273 isa = "A+";
3274 break;
3275 case EF_M68K_CF_ISA_B_NOUSP:
3276 isa = "B";
3277 additional = ", nousp";
3278 break;
3279 case EF_M68K_CF_ISA_B:
3280 isa = "B";
3281 break;
3282 case EF_M68K_CF_ISA_C:
3283 isa = "C";
3284 break;
3285 case EF_M68K_CF_ISA_C_NODIV:
3286 isa = "C";
3287 additional = ", nodiv";
3288 break;
3289 }
3290 strcat (buf, ", cf, isa ");
3291 strcat (buf, isa);
3292 if (additional)
3293 strcat (buf, additional);
3294 if (e_flags & EF_M68K_CF_FLOAT)
3295 strcat (buf, ", float");
3296 switch (e_flags & EF_M68K_CF_MAC_MASK)
3297 {
3298 case 0:
3299 mac = NULL;
3300 break;
3301 case EF_M68K_CF_MAC:
3302 mac = "mac";
3303 break;
3304 case EF_M68K_CF_EMAC:
3305 mac = "emac";
3306 break;
3307 case EF_M68K_CF_EMAC_B:
3308 mac = "emac_b";
3309 break;
3310 }
3311 if (mac)
3312 {
3313 strcat (buf, ", ");
3314 strcat (buf, mac);
3315 }
3316 }
3317 break;
3318
3319 case EM_CYGNUS_MEP:
3320 switch (e_flags & EF_MEP_CPU_MASK)
3321 {
3322 case EF_MEP_CPU_MEP: strcat (buf, ", generic MeP"); break;
3323 case EF_MEP_CPU_C2: strcat (buf, ", MeP C2"); break;
3324 case EF_MEP_CPU_C3: strcat (buf, ", MeP C3"); break;
3325 case EF_MEP_CPU_C4: strcat (buf, ", MeP C4"); break;
3326 case EF_MEP_CPU_C5: strcat (buf, ", MeP C5"); break;
3327 case EF_MEP_CPU_H1: strcat (buf, ", MeP H1"); break;
3328 default: strcat (buf, _(", <unknown MeP cpu type>")); break;
3329 }
3330
3331 switch (e_flags & EF_MEP_COP_MASK)
3332 {
3333 case EF_MEP_COP_NONE: break;
3334 case EF_MEP_COP_AVC: strcat (buf, ", AVC coprocessor"); break;
3335 case EF_MEP_COP_AVC2: strcat (buf, ", AVC2 coprocessor"); break;
3336 case EF_MEP_COP_FMAX: strcat (buf, ", FMAX coprocessor"); break;
3337 case EF_MEP_COP_IVC2: strcat (buf, ", IVC2 coprocessor"); break;
3338 default: strcat (buf, _("<unknown MeP copro type>")); break;
3339 }
3340
3341 if (e_flags & EF_MEP_LIBRARY)
3342 strcat (buf, ", Built for Library");
3343
3344 if (e_flags & EF_MEP_INDEX_MASK)
3345 sprintf (buf + strlen (buf), ", Configuration Index: %#x",
3346 e_flags & EF_MEP_INDEX_MASK);
3347
3348 if (e_flags & ~ EF_MEP_ALL_FLAGS)
3349 sprintf (buf + strlen (buf), _(", unknown flags bits: %#x"),
3350 e_flags & ~ EF_MEP_ALL_FLAGS);
3351 break;
3352
3353 case EM_PPC:
3354 if (e_flags & EF_PPC_EMB)
3355 strcat (buf, ", emb");
3356
3357 if (e_flags & EF_PPC_RELOCATABLE)
3358 strcat (buf, _(", relocatable"));
3359
3360 if (e_flags & EF_PPC_RELOCATABLE_LIB)
3361 strcat (buf, _(", relocatable-lib"));
3362 break;
3363
3364 case EM_PPC64:
3365 if (e_flags & EF_PPC64_ABI)
3366 {
3367 char abi[] = ", abiv0";
3368
3369 abi[6] += e_flags & EF_PPC64_ABI;
3370 strcat (buf, abi);
3371 }
3372 break;
3373
3374 case EM_V800:
3375 if ((e_flags & EF_RH850_ABI) == EF_RH850_ABI)
3376 strcat (buf, ", RH850 ABI");
3377
3378 if (e_flags & EF_V800_850E3)
3379 strcat (buf, ", V3 architecture");
3380
3381 if ((e_flags & (EF_RH850_FPU_DOUBLE | EF_RH850_FPU_SINGLE)) == 0)
3382 strcat (buf, ", FPU not used");
3383
3384 if ((e_flags & (EF_RH850_REGMODE22 | EF_RH850_REGMODE32)) == 0)
3385 strcat (buf, ", regmode: COMMON");
3386
3387 if ((e_flags & (EF_RH850_GP_FIX | EF_RH850_GP_NOFIX)) == 0)
3388 strcat (buf, ", r4 not used");
3389
3390 if ((e_flags & (EF_RH850_EP_FIX | EF_RH850_EP_NOFIX)) == 0)
3391 strcat (buf, ", r30 not used");
3392
3393 if ((e_flags & (EF_RH850_TP_FIX | EF_RH850_TP_NOFIX)) == 0)
3394 strcat (buf, ", r5 not used");
3395
3396 if ((e_flags & (EF_RH850_REG2_RESERVE | EF_RH850_REG2_NORESERVE)) == 0)
3397 strcat (buf, ", r2 not used");
3398
3399 for (e_flags &= 0xFFFF; e_flags; e_flags &= ~ (e_flags & - e_flags))
3400 {
3401 switch (e_flags & - e_flags)
3402 {
3403 case EF_RH850_FPU_DOUBLE: strcat (buf, ", double precision FPU"); break;
3404 case EF_RH850_FPU_SINGLE: strcat (buf, ", single precision FPU"); break;
3405 case EF_RH850_REGMODE22: strcat (buf, ", regmode:22"); break;
3406 case EF_RH850_REGMODE32: strcat (buf, ", regmode:23"); break;
3407 case EF_RH850_GP_FIX: strcat (buf, ", r4 fixed"); break;
3408 case EF_RH850_GP_NOFIX: strcat (buf, ", r4 free"); break;
3409 case EF_RH850_EP_FIX: strcat (buf, ", r30 fixed"); break;
3410 case EF_RH850_EP_NOFIX: strcat (buf, ", r30 free"); break;
3411 case EF_RH850_TP_FIX: strcat (buf, ", r5 fixed"); break;
3412 case EF_RH850_TP_NOFIX: strcat (buf, ", r5 free"); break;
3413 case EF_RH850_REG2_RESERVE: strcat (buf, ", r2 fixed"); break;
3414 case EF_RH850_REG2_NORESERVE: strcat (buf, ", r2 free"); break;
3415 default: break;
3416 }
3417 }
3418 break;
3419
3420 case EM_V850:
3421 case EM_CYGNUS_V850:
3422 switch (e_flags & EF_V850_ARCH)
3423 {
3424 case E_V850E3V5_ARCH:
3425 strcat (buf, ", v850e3v5");
3426 break;
3427 case E_V850E2V3_ARCH:
3428 strcat (buf, ", v850e2v3");
3429 break;
3430 case E_V850E2_ARCH:
3431 strcat (buf, ", v850e2");
3432 break;
3433 case E_V850E1_ARCH:
3434 strcat (buf, ", v850e1");
3435 break;
3436 case E_V850E_ARCH:
3437 strcat (buf, ", v850e");
3438 break;
3439 case E_V850_ARCH:
3440 strcat (buf, ", v850");
3441 break;
3442 default:
3443 strcat (buf, _(", unknown v850 architecture variant"));
3444 break;
3445 }
3446 break;
3447
3448 case EM_M32R:
3449 case EM_CYGNUS_M32R:
3450 if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
3451 strcat (buf, ", m32r");
3452 break;
3453
3454 case EM_MIPS:
3455 case EM_MIPS_RS3_LE:
3456 if (e_flags & EF_MIPS_NOREORDER)
3457 strcat (buf, ", noreorder");
3458
3459 if (e_flags & EF_MIPS_PIC)
3460 strcat (buf, ", pic");
3461
3462 if (e_flags & EF_MIPS_CPIC)
3463 strcat (buf, ", cpic");
3464
3465 if (e_flags & EF_MIPS_UCODE)
3466 strcat (buf, ", ugen_reserved");
3467
3468 if (e_flags & EF_MIPS_ABI2)
3469 strcat (buf, ", abi2");
3470
3471 if (e_flags & EF_MIPS_OPTIONS_FIRST)
3472 strcat (buf, ", odk first");
3473
3474 if (e_flags & EF_MIPS_32BITMODE)
3475 strcat (buf, ", 32bitmode");
3476
3477 if (e_flags & EF_MIPS_NAN2008)
3478 strcat (buf, ", nan2008");
3479
3480 if (e_flags & EF_MIPS_FP64)
3481 strcat (buf, ", fp64");
3482
3483 switch ((e_flags & EF_MIPS_MACH))
3484 {
3485 case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
3486 case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break;
3487 case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break;
3488 case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break;
3489 case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break;
3490 case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break;
3491 case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break;
3492 case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break;
3493 case E_MIPS_MACH_5900: strcat (buf, ", 5900"); break;
3494 case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break;
3495 case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break;
3496 case E_MIPS_MACH_LS2E: strcat (buf, ", loongson-2e"); break;
3497 case E_MIPS_MACH_LS2F: strcat (buf, ", loongson-2f"); break;
3498 case E_MIPS_MACH_GS464: strcat (buf, ", gs464"); break;
3499 case E_MIPS_MACH_GS464E: strcat (buf, ", gs464e"); break;
3500 case E_MIPS_MACH_GS264E: strcat (buf, ", gs264e"); break;
3501 case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break;
3502 case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break;
3503 case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break;
3504 case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break;
3505 case E_MIPS_MACH_IAMR2: strcat (buf, ", interaptiv-mr2"); break;
3506 case 0:
3507 /* We simply ignore the field in this case to avoid confusion:
3508 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
3509 extension. */
3510 break;
3511 default: strcat (buf, _(", unknown CPU")); break;
3512 }
3513
3514 switch ((e_flags & EF_MIPS_ABI))
3515 {
3516 case E_MIPS_ABI_O32: strcat (buf, ", o32"); break;
3517 case E_MIPS_ABI_O64: strcat (buf, ", o64"); break;
3518 case E_MIPS_ABI_EABI32: strcat (buf, ", eabi32"); break;
3519 case E_MIPS_ABI_EABI64: strcat (buf, ", eabi64"); break;
3520 case 0:
3521 /* We simply ignore the field in this case to avoid confusion:
3522 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
3523 This means it is likely to be an o32 file, but not for
3524 sure. */
3525 break;
3526 default: strcat (buf, _(", unknown ABI")); break;
3527 }
3528
3529 if (e_flags & EF_MIPS_ARCH_ASE_MDMX)
3530 strcat (buf, ", mdmx");
3531
3532 if (e_flags & EF_MIPS_ARCH_ASE_M16)
3533 strcat (buf, ", mips16");
3534
3535 if (e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
3536 strcat (buf, ", micromips");
3537
3538 switch ((e_flags & EF_MIPS_ARCH))
3539 {
3540 case E_MIPS_ARCH_1: strcat (buf, ", mips1"); break;
3541 case E_MIPS_ARCH_2: strcat (buf, ", mips2"); break;
3542 case E_MIPS_ARCH_3: strcat (buf, ", mips3"); break;
3543 case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break;
3544 case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break;
3545 case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break;
3546 case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break;
3547 case E_MIPS_ARCH_32R6: strcat (buf, ", mips32r6"); break;
3548 case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break;
3549 case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break;
3550 case E_MIPS_ARCH_64R6: strcat (buf, ", mips64r6"); break;
3551 default: strcat (buf, _(", unknown ISA")); break;
3552 }
3553 break;
3554
3555 case EM_NDS32:
3556 decode_NDS32_machine_flags (e_flags, buf, sizeof buf);
3557 break;
3558
3559 case EM_NFP:
3560 switch (EF_NFP_MACH (e_flags))
3561 {
3562 case E_NFP_MACH_3200:
3563 strcat (buf, ", NFP-32xx");
3564 break;
3565 case E_NFP_MACH_6000:
3566 strcat (buf, ", NFP-6xxx");
3567 break;
3568 }
3569 break;
3570
3571 case EM_RISCV:
3572 if (e_flags & EF_RISCV_RVC)
3573 strcat (buf, ", RVC");
3574
3575 if (e_flags & EF_RISCV_RVE)
3576 strcat (buf, ", RVE");
3577
3578 switch (e_flags & EF_RISCV_FLOAT_ABI)
3579 {
3580 case EF_RISCV_FLOAT_ABI_SOFT:
3581 strcat (buf, ", soft-float ABI");
3582 break;
3583
3584 case EF_RISCV_FLOAT_ABI_SINGLE:
3585 strcat (buf, ", single-float ABI");
3586 break;
3587
3588 case EF_RISCV_FLOAT_ABI_DOUBLE:
3589 strcat (buf, ", double-float ABI");
3590 break;
3591
3592 case EF_RISCV_FLOAT_ABI_QUAD:
3593 strcat (buf, ", quad-float ABI");
3594 break;
3595 }
3596 break;
3597
3598 case EM_SH:
3599 switch ((e_flags & EF_SH_MACH_MASK))
3600 {
3601 case EF_SH1: strcat (buf, ", sh1"); break;
3602 case EF_SH2: strcat (buf, ", sh2"); break;
3603 case EF_SH3: strcat (buf, ", sh3"); break;
3604 case EF_SH_DSP: strcat (buf, ", sh-dsp"); break;
3605 case EF_SH3_DSP: strcat (buf, ", sh3-dsp"); break;
3606 case EF_SH4AL_DSP: strcat (buf, ", sh4al-dsp"); break;
3607 case EF_SH3E: strcat (buf, ", sh3e"); break;
3608 case EF_SH4: strcat (buf, ", sh4"); break;
3609 case EF_SH5: strcat (buf, ", sh5"); break;
3610 case EF_SH2E: strcat (buf, ", sh2e"); break;
3611 case EF_SH4A: strcat (buf, ", sh4a"); break;
3612 case EF_SH2A: strcat (buf, ", sh2a"); break;
3613 case EF_SH4_NOFPU: strcat (buf, ", sh4-nofpu"); break;
3614 case EF_SH4A_NOFPU: strcat (buf, ", sh4a-nofpu"); break;
3615 case EF_SH2A_NOFPU: strcat (buf, ", sh2a-nofpu"); break;
3616 case EF_SH3_NOMMU: strcat (buf, ", sh3-nommu"); break;
3617 case EF_SH4_NOMMU_NOFPU: strcat (buf, ", sh4-nommu-nofpu"); break;
3618 case EF_SH2A_SH4_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
3619 case EF_SH2A_SH3_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh3-nommu"); break;
3620 case EF_SH2A_SH4: strcat (buf, ", sh2a-or-sh4"); break;
3621 case EF_SH2A_SH3E: strcat (buf, ", sh2a-or-sh3e"); break;
3622 default: strcat (buf, _(", unknown ISA")); break;
3623 }
3624
3625 if (e_flags & EF_SH_PIC)
3626 strcat (buf, ", pic");
3627
3628 if (e_flags & EF_SH_FDPIC)
3629 strcat (buf, ", fdpic");
3630 break;
3631
3632 case EM_OR1K:
3633 if (e_flags & EF_OR1K_NODELAY)
3634 strcat (buf, ", no delay");
3635 break;
3636
3637 case EM_SPARCV9:
3638 if (e_flags & EF_SPARC_32PLUS)
3639 strcat (buf, ", v8+");
3640
3641 if (e_flags & EF_SPARC_SUN_US1)
3642 strcat (buf, ", ultrasparcI");
3643
3644 if (e_flags & EF_SPARC_SUN_US3)
3645 strcat (buf, ", ultrasparcIII");
3646
3647 if (e_flags & EF_SPARC_HAL_R1)
3648 strcat (buf, ", halr1");
3649
3650 if (e_flags & EF_SPARC_LEDATA)
3651 strcat (buf, ", ledata");
3652
3653 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO)
3654 strcat (buf, ", tso");
3655
3656 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO)
3657 strcat (buf, ", pso");
3658
3659 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO)
3660 strcat (buf, ", rmo");
3661 break;
3662
3663 case EM_PARISC:
3664 switch (e_flags & EF_PARISC_ARCH)
3665 {
3666 case EFA_PARISC_1_0:
3667 strcpy (buf, ", PA-RISC 1.0");
3668 break;
3669 case EFA_PARISC_1_1:
3670 strcpy (buf, ", PA-RISC 1.1");
3671 break;
3672 case EFA_PARISC_2_0:
3673 strcpy (buf, ", PA-RISC 2.0");
3674 break;
3675 default:
3676 break;
3677 }
3678 if (e_flags & EF_PARISC_TRAPNIL)
3679 strcat (buf, ", trapnil");
3680 if (e_flags & EF_PARISC_EXT)
3681 strcat (buf, ", ext");
3682 if (e_flags & EF_PARISC_LSB)
3683 strcat (buf, ", lsb");
3684 if (e_flags & EF_PARISC_WIDE)
3685 strcat (buf, ", wide");
3686 if (e_flags & EF_PARISC_NO_KABP)
3687 strcat (buf, ", no kabp");
3688 if (e_flags & EF_PARISC_LAZYSWAP)
3689 strcat (buf, ", lazyswap");
3690 break;
3691
3692 case EM_PJ:
3693 case EM_PJ_OLD:
3694 if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS)
3695 strcat (buf, ", new calling convention");
3696
3697 if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS)
3698 strcat (buf, ", gnu calling convention");
3699 break;
3700
3701 case EM_IA_64:
3702 if ((e_flags & EF_IA_64_ABI64))
3703 strcat (buf, ", 64-bit");
3704 else
3705 strcat (buf, ", 32-bit");
3706 if ((e_flags & EF_IA_64_REDUCEDFP))
3707 strcat (buf, ", reduced fp model");
3708 if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
3709 strcat (buf, ", no function descriptors, constant gp");
3710 else if ((e_flags & EF_IA_64_CONS_GP))
3711 strcat (buf, ", constant gp");
3712 if ((e_flags & EF_IA_64_ABSOLUTE))
3713 strcat (buf, ", absolute");
3714 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
3715 {
3716 if ((e_flags & EF_IA_64_VMS_LINKAGES))
3717 strcat (buf, ", vms_linkages");
3718 switch ((e_flags & EF_IA_64_VMS_COMCOD))
3719 {
3720 case EF_IA_64_VMS_COMCOD_SUCCESS:
3721 break;
3722 case EF_IA_64_VMS_COMCOD_WARNING:
3723 strcat (buf, ", warning");
3724 break;
3725 case EF_IA_64_VMS_COMCOD_ERROR:
3726 strcat (buf, ", error");
3727 break;
3728 case EF_IA_64_VMS_COMCOD_ABORT:
3729 strcat (buf, ", abort");
3730 break;
3731 default:
3732 warn (_("Unrecognised IA64 VMS Command Code: %x\n"),
3733 e_flags & EF_IA_64_VMS_COMCOD);
3734 strcat (buf, ", <unknown>");
3735 }
3736 }
3737 break;
3738
3739 case EM_VAX:
3740 if ((e_flags & EF_VAX_NONPIC))
3741 strcat (buf, ", non-PIC");
3742 if ((e_flags & EF_VAX_DFLOAT))
3743 strcat (buf, ", D-Float");
3744 if ((e_flags & EF_VAX_GFLOAT))
3745 strcat (buf, ", G-Float");
3746 break;
3747
3748 case EM_VISIUM:
3749 if (e_flags & EF_VISIUM_ARCH_MCM)
3750 strcat (buf, ", mcm");
3751 else if (e_flags & EF_VISIUM_ARCH_MCM24)
3752 strcat (buf, ", mcm24");
3753 if (e_flags & EF_VISIUM_ARCH_GR6)
3754 strcat (buf, ", gr6");
3755 break;
3756
3757 case EM_RL78:
3758 switch (e_flags & E_FLAG_RL78_CPU_MASK)
3759 {
3760 case E_FLAG_RL78_ANY_CPU: break;
3761 case E_FLAG_RL78_G10: strcat (buf, ", G10"); break;
3762 case E_FLAG_RL78_G13: strcat (buf, ", G13"); break;
3763 case E_FLAG_RL78_G14: strcat (buf, ", G14"); break;
3764 }
3765 if (e_flags & E_FLAG_RL78_64BIT_DOUBLES)
3766 strcat (buf, ", 64-bit doubles");
3767 break;
3768
3769 case EM_RX:
3770 if (e_flags & E_FLAG_RX_64BIT_DOUBLES)
3771 strcat (buf, ", 64-bit doubles");
3772 if (e_flags & E_FLAG_RX_DSP)
3773 strcat (buf, ", dsp");
3774 if (e_flags & E_FLAG_RX_PID)
3775 strcat (buf, ", pid");
3776 if (e_flags & E_FLAG_RX_ABI)
3777 strcat (buf, ", RX ABI");
3778 if (e_flags & E_FLAG_RX_SINSNS_SET)
3779 strcat (buf, e_flags & E_FLAG_RX_SINSNS_YES
3780 ? ", uses String instructions" : ", bans String instructions");
3781 if (e_flags & E_FLAG_RX_V2)
3782 strcat (buf, ", V2");
3783 if (e_flags & E_FLAG_RX_V3)
3784 strcat (buf, ", V3");
3785 break;
3786
3787 case EM_S390:
3788 if (e_flags & EF_S390_HIGH_GPRS)
3789 strcat (buf, ", highgprs");
3790 break;
3791
3792 case EM_TI_C6000:
3793 if ((e_flags & EF_C6000_REL))
3794 strcat (buf, ", relocatable module");
3795 break;
3796
3797 case EM_MSP430:
3798 strcat (buf, _(": architecture variant: "));
3799 switch (e_flags & EF_MSP430_MACH)
3800 {
3801 case E_MSP430_MACH_MSP430x11: strcat (buf, "MSP430x11"); break;
3802 case E_MSP430_MACH_MSP430x11x1 : strcat (buf, "MSP430x11x1 "); break;
3803 case E_MSP430_MACH_MSP430x12: strcat (buf, "MSP430x12"); break;
3804 case E_MSP430_MACH_MSP430x13: strcat (buf, "MSP430x13"); break;
3805 case E_MSP430_MACH_MSP430x14: strcat (buf, "MSP430x14"); break;
3806 case E_MSP430_MACH_MSP430x15: strcat (buf, "MSP430x15"); break;
3807 case E_MSP430_MACH_MSP430x16: strcat (buf, "MSP430x16"); break;
3808 case E_MSP430_MACH_MSP430x31: strcat (buf, "MSP430x31"); break;
3809 case E_MSP430_MACH_MSP430x32: strcat (buf, "MSP430x32"); break;
3810 case E_MSP430_MACH_MSP430x33: strcat (buf, "MSP430x33"); break;
3811 case E_MSP430_MACH_MSP430x41: strcat (buf, "MSP430x41"); break;
3812 case E_MSP430_MACH_MSP430x42: strcat (buf, "MSP430x42"); break;
3813 case E_MSP430_MACH_MSP430x43: strcat (buf, "MSP430x43"); break;
3814 case E_MSP430_MACH_MSP430x44: strcat (buf, "MSP430x44"); break;
3815 case E_MSP430_MACH_MSP430X : strcat (buf, "MSP430X"); break;
3816 default:
3817 strcat (buf, _(": unknown")); break;
3818 }
3819
3820 if (e_flags & ~ EF_MSP430_MACH)
3821 strcat (buf, _(": unknown extra flag bits also present"));
3822 break;
3823
3824 case EM_Z80:
3825 switch (e_flags & EF_Z80_MACH_MSK)
3826 {
3827 case EF_Z80_MACH_Z80: strcat (buf, ", Z80"); break;
3828 case EF_Z80_MACH_Z180: strcat (buf, ", Z180"); break;
3829 case EF_Z80_MACH_R800: strcat (buf, ", R800"); break;
3830 case EF_Z80_MACH_EZ80_Z80: strcat (buf, ", EZ80"); break;
3831 case EF_Z80_MACH_EZ80_ADL: strcat (buf, ", EZ80, ADL"); break;
3832 case EF_Z80_MACH_GBZ80: strcat (buf, ", GBZ80"); break;
3833 case EF_Z80_MACH_Z80N: strcat (buf, ", Z80N"); break;
3834 default:
3835 strcat (buf, _(", unknown")); break;
3836 }
3837 break;
3838 }
3839 }
3840
3841 return buf;
3842 }
3843
3844 static const char *
3845 get_osabi_name (Filedata * filedata, unsigned int osabi)
3846 {
3847 static char buff[32];
3848
3849 switch (osabi)
3850 {
3851 case ELFOSABI_NONE: return "UNIX - System V";
3852 case ELFOSABI_HPUX: return "UNIX - HP-UX";
3853 case ELFOSABI_NETBSD: return "UNIX - NetBSD";
3854 case ELFOSABI_GNU: return "UNIX - GNU";
3855 case ELFOSABI_SOLARIS: return "UNIX - Solaris";
3856 case ELFOSABI_AIX: return "UNIX - AIX";
3857 case ELFOSABI_IRIX: return "UNIX - IRIX";
3858 case ELFOSABI_FREEBSD: return "UNIX - FreeBSD";
3859 case ELFOSABI_TRU64: return "UNIX - TRU64";
3860 case ELFOSABI_MODESTO: return "Novell - Modesto";
3861 case ELFOSABI_OPENBSD: return "UNIX - OpenBSD";
3862 case ELFOSABI_OPENVMS: return "VMS - OpenVMS";
3863 case ELFOSABI_NSK: return "HP - Non-Stop Kernel";
3864 case ELFOSABI_AROS: return "AROS";
3865 case ELFOSABI_FENIXOS: return "FenixOS";
3866 case ELFOSABI_CLOUDABI: return "Nuxi CloudABI";
3867 case ELFOSABI_OPENVOS: return "Stratus Technologies OpenVOS";
3868 default:
3869 if (osabi >= 64)
3870 switch (filedata->file_header.e_machine)
3871 {
3872 case EM_ARM:
3873 switch (osabi)
3874 {
3875 case ELFOSABI_ARM: return "ARM";
3876 case ELFOSABI_ARM_FDPIC: return "ARM FDPIC";
3877 default:
3878 break;
3879 }
3880 break;
3881
3882 case EM_MSP430:
3883 case EM_MSP430_OLD:
3884 case EM_VISIUM:
3885 switch (osabi)
3886 {
3887 case ELFOSABI_STANDALONE: return _("Standalone App");
3888 default:
3889 break;
3890 }
3891 break;
3892
3893 case EM_TI_C6000:
3894 switch (osabi)
3895 {
3896 case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000");
3897 case ELFOSABI_C6000_LINUX: return "Linux C6000";
3898 default:
3899 break;
3900 }
3901 break;
3902
3903 default:
3904 break;
3905 }
3906 snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi);
3907 return buff;
3908 }
3909 }
3910
3911 static const char *
3912 get_aarch64_segment_type (unsigned long type)
3913 {
3914 switch (type)
3915 {
3916 case PT_AARCH64_ARCHEXT: return "AARCH64_ARCHEXT";
3917 default: return NULL;
3918 }
3919 }
3920
3921 static const char *
3922 get_arm_segment_type (unsigned long type)
3923 {
3924 switch (type)
3925 {
3926 case PT_ARM_EXIDX: return "EXIDX";
3927 default: return NULL;
3928 }
3929 }
3930
3931 static const char *
3932 get_s390_segment_type (unsigned long type)
3933 {
3934 switch (type)
3935 {
3936 case PT_S390_PGSTE: return "S390_PGSTE";
3937 default: return NULL;
3938 }
3939 }
3940
3941 static const char *
3942 get_mips_segment_type (unsigned long type)
3943 {
3944 switch (type)
3945 {
3946 case PT_MIPS_REGINFO: return "REGINFO";
3947 case PT_MIPS_RTPROC: return "RTPROC";
3948 case PT_MIPS_OPTIONS: return "OPTIONS";
3949 case PT_MIPS_ABIFLAGS: return "ABIFLAGS";
3950 default: return NULL;
3951 }
3952 }
3953
3954 static const char *
3955 get_parisc_segment_type (unsigned long type)
3956 {
3957 switch (type)
3958 {
3959 case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
3960 case PT_PARISC_UNWIND: return "PARISC_UNWIND";
3961 case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
3962 default: return NULL;
3963 }
3964 }
3965
3966 static const char *
3967 get_ia64_segment_type (unsigned long type)
3968 {
3969 switch (type)
3970 {
3971 case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT";
3972 case PT_IA_64_UNWIND: return "IA_64_UNWIND";
3973 default: return NULL;
3974 }
3975 }
3976
3977 static const char *
3978 get_tic6x_segment_type (unsigned long type)
3979 {
3980 switch (type)
3981 {
3982 case PT_C6000_PHATTR: return "C6000_PHATTR";
3983 default: return NULL;
3984 }
3985 }
3986
3987 static const char *
3988 get_hpux_segment_type (unsigned long type, unsigned e_machine)
3989 {
3990 if (e_machine == EM_PARISC)
3991 switch (type)
3992 {
3993 case PT_HP_TLS: return "HP_TLS";
3994 case PT_HP_CORE_NONE: return "HP_CORE_NONE";
3995 case PT_HP_CORE_VERSION: return "HP_CORE_VERSION";
3996 case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL";
3997 case PT_HP_CORE_COMM: return "HP_CORE_COMM";
3998 case PT_HP_CORE_PROC: return "HP_CORE_PROC";
3999 case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE";
4000 case PT_HP_CORE_STACK: return "HP_CORE_STACK";
4001 case PT_HP_CORE_SHM: return "HP_CORE_SHM";
4002 case PT_HP_CORE_MMF: return "HP_CORE_MMF";
4003 case PT_HP_PARALLEL: return "HP_PARALLEL";
4004 case PT_HP_FASTBIND: return "HP_FASTBIND";
4005 case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT";
4006 case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT";
4007 case PT_HP_STACK: return "HP_STACK";
4008 case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
4009 default: return NULL;
4010 }
4011
4012 if (e_machine == EM_IA_64)
4013 switch (type)
4014 {
4015 case PT_HP_TLS: return "HP_TLS";
4016 case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT";
4017 case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT";
4018 case PT_IA_64_HP_STACK: return "HP_STACK";
4019 default: return NULL;
4020 }
4021
4022 return NULL;
4023 }
4024
4025 static const char *
4026 get_solaris_segment_type (unsigned long type)
4027 {
4028 switch (type)
4029 {
4030 case 0x6464e550: return "PT_SUNW_UNWIND";
4031 case 0x6474e550: return "PT_SUNW_EH_FRAME";
4032 case 0x6ffffff7: return "PT_LOSUNW";
4033 case 0x6ffffffa: return "PT_SUNWBSS";
4034 case 0x6ffffffb: return "PT_SUNWSTACK";
4035 case 0x6ffffffc: return "PT_SUNWDTRACE";
4036 case 0x6ffffffd: return "PT_SUNWCAP";
4037 case 0x6fffffff: return "PT_HISUNW";
4038 default: return NULL;
4039 }
4040 }
4041
4042 static const char *
4043 get_segment_type (Filedata * filedata, unsigned long p_type)
4044 {
4045 static char buff[32];
4046
4047 switch (p_type)
4048 {
4049 case PT_NULL: return "NULL";
4050 case PT_LOAD: return "LOAD";
4051 case PT_DYNAMIC: return "DYNAMIC";
4052 case PT_INTERP: return "INTERP";
4053 case PT_NOTE: return "NOTE";
4054 case PT_SHLIB: return "SHLIB";
4055 case PT_PHDR: return "PHDR";
4056 case PT_TLS: return "TLS";
4057 case PT_GNU_EH_FRAME: return "GNU_EH_FRAME";
4058 case PT_GNU_STACK: return "GNU_STACK";
4059 case PT_GNU_RELRO: return "GNU_RELRO";
4060 case PT_GNU_PROPERTY: return "GNU_PROPERTY";
4061
4062 case PT_OPENBSD_RANDOMIZE: return "OPENBSD_RANDOMIZE";
4063 case PT_OPENBSD_WXNEEDED: return "OPENBSD_WXNEEDED";
4064 case PT_OPENBSD_BOOTDATA: return "OPENBSD_BOOTDATA";
4065
4066 default:
4067 if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
4068 {
4069 const char * result;
4070
4071 switch (filedata->file_header.e_machine)
4072 {
4073 case EM_AARCH64:
4074 result = get_aarch64_segment_type (p_type);
4075 break;
4076 case EM_ARM:
4077 result = get_arm_segment_type (p_type);
4078 break;
4079 case EM_MIPS:
4080 case EM_MIPS_RS3_LE:
4081 result = get_mips_segment_type (p_type);
4082 break;
4083 case EM_PARISC:
4084 result = get_parisc_segment_type (p_type);
4085 break;
4086 case EM_IA_64:
4087 result = get_ia64_segment_type (p_type);
4088 break;
4089 case EM_TI_C6000:
4090 result = get_tic6x_segment_type (p_type);
4091 break;
4092 case EM_S390:
4093 case EM_S390_OLD:
4094 result = get_s390_segment_type (p_type);
4095 break;
4096 default:
4097 result = NULL;
4098 break;
4099 }
4100
4101 if (result != NULL)
4102 return result;
4103
4104 sprintf (buff, "LOPROC+%#lx", p_type - PT_LOPROC);
4105 }
4106 else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS))
4107 {
4108 const char * result = NULL;
4109
4110 switch (filedata->file_header.e_ident[EI_OSABI])
4111 {
4112 case ELFOSABI_GNU:
4113 case ELFOSABI_FREEBSD:
4114 if (p_type >= PT_GNU_MBIND_LO && p_type <= PT_GNU_MBIND_HI)
4115 {
4116 sprintf (buff, "GNU_MBIND+%#lx", p_type - PT_GNU_MBIND_LO);
4117 result = buff;
4118 }
4119 break;
4120 case ELFOSABI_HPUX:
4121 result = get_hpux_segment_type (p_type,
4122 filedata->file_header.e_machine);
4123 break;
4124 case ELFOSABI_SOLARIS:
4125 result = get_solaris_segment_type (p_type);
4126 break;
4127 default:
4128 break;
4129 }
4130 if (result != NULL)
4131 return result;
4132
4133 sprintf (buff, "LOOS+%#lx", p_type - PT_LOOS);
4134 }
4135 else
4136 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type);
4137
4138 return buff;
4139 }
4140 }
4141
4142 static const char *
4143 get_arc_section_type_name (unsigned int sh_type)
4144 {
4145 switch (sh_type)
4146 {
4147 case SHT_ARC_ATTRIBUTES: return "ARC_ATTRIBUTES";
4148 default:
4149 break;
4150 }
4151 return NULL;
4152 }
4153
4154 static const char *
4155 get_mips_section_type_name (unsigned int sh_type)
4156 {
4157 switch (sh_type)
4158 {
4159 case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST";
4160 case SHT_MIPS_MSYM: return "MIPS_MSYM";
4161 case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT";
4162 case SHT_MIPS_GPTAB: return "MIPS_GPTAB";
4163 case SHT_MIPS_UCODE: return "MIPS_UCODE";
4164 case SHT_MIPS_DEBUG: return "MIPS_DEBUG";
4165 case SHT_MIPS_REGINFO: return "MIPS_REGINFO";
4166 case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE";
4167 case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM";
4168 case SHT_MIPS_RELD: return "MIPS_RELD";
4169 case SHT_MIPS_IFACE: return "MIPS_IFACE";
4170 case SHT_MIPS_CONTENT: return "MIPS_CONTENT";
4171 case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS";
4172 case SHT_MIPS_SHDR: return "MIPS_SHDR";
4173 case SHT_MIPS_FDESC: return "MIPS_FDESC";
4174 case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM";
4175 case SHT_MIPS_DENSE: return "MIPS_DENSE";
4176 case SHT_MIPS_PDESC: return "MIPS_PDESC";
4177 case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM";
4178 case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM";
4179 case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM";
4180 case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR";
4181 case SHT_MIPS_LINE: return "MIPS_LINE";
4182 case SHT_MIPS_RFDESC: return "MIPS_RFDESC";
4183 case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM";
4184 case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST";
4185 case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS";
4186 case SHT_MIPS_DWARF: return "MIPS_DWARF";
4187 case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL";
4188 case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
4189 case SHT_MIPS_EVENTS: return "MIPS_EVENTS";
4190 case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE";
4191 case SHT_MIPS_PIXIE: return "MIPS_PIXIE";
4192 case SHT_MIPS_XLATE: return "MIPS_XLATE";
4193 case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG";
4194 case SHT_MIPS_WHIRL: return "MIPS_WHIRL";
4195 case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION";
4196 case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD";
4197 case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION";
4198 case SHT_MIPS_ABIFLAGS: return "MIPS_ABIFLAGS";
4199 case SHT_MIPS_XHASH: return "MIPS_XHASH";
4200 default:
4201 break;
4202 }
4203 return NULL;
4204 }
4205
4206 static const char *
4207 get_parisc_section_type_name (unsigned int sh_type)
4208 {
4209 switch (sh_type)
4210 {
4211 case SHT_PARISC_EXT: return "PARISC_EXT";
4212 case SHT_PARISC_UNWIND: return "PARISC_UNWIND";
4213 case SHT_PARISC_DOC: return "PARISC_DOC";
4214 case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
4215 case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
4216 case SHT_PARISC_STUBS: return "PARISC_STUBS";
4217 case SHT_PARISC_DLKM: return "PARISC_DLKM";
4218 default: return NULL;
4219 }
4220 }
4221
4222 static const char *
4223 get_ia64_section_type_name (Filedata * filedata, unsigned int sh_type)
4224 {
4225 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
4226 if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG)
4227 return get_osabi_name (filedata, (sh_type & 0x00FF0000) >> 16);
4228
4229 switch (sh_type)
4230 {
4231 case SHT_IA_64_EXT: return "IA_64_EXT";
4232 case SHT_IA_64_UNWIND: return "IA_64_UNWIND";
4233 case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT";
4234 case SHT_IA_64_VMS_TRACE: return "VMS_TRACE";
4235 case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES";
4236 case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG";
4237 case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR";
4238 case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES";
4239 case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR";
4240 case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP";
4241 default:
4242 break;
4243 }
4244 return NULL;
4245 }
4246
4247 static const char *
4248 get_x86_64_section_type_name (unsigned int sh_type)
4249 {
4250 switch (sh_type)
4251 {
4252 case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
4253 default: return NULL;
4254 }
4255 }
4256
4257 static const char *
4258 get_aarch64_section_type_name (unsigned int sh_type)
4259 {
4260 switch (sh_type)
4261 {
4262 case SHT_AARCH64_ATTRIBUTES: return "AARCH64_ATTRIBUTES";
4263 default: return NULL;
4264 }
4265 }
4266
4267 static const char *
4268 get_arm_section_type_name (unsigned int sh_type)
4269 {
4270 switch (sh_type)
4271 {
4272 case SHT_ARM_EXIDX: return "ARM_EXIDX";
4273 case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP";
4274 case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES";
4275 case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY";
4276 case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION";
4277 default: return NULL;
4278 }
4279 }
4280
4281 static const char *
4282 get_tic6x_section_type_name (unsigned int sh_type)
4283 {
4284 switch (sh_type)
4285 {
4286 case SHT_C6000_UNWIND: return "C6000_UNWIND";
4287 case SHT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
4288 case SHT_C6000_ATTRIBUTES: return "C6000_ATTRIBUTES";
4289 case SHT_TI_ICODE: return "TI_ICODE";
4290 case SHT_TI_XREF: return "TI_XREF";
4291 case SHT_TI_HANDLER: return "TI_HANDLER";
4292 case SHT_TI_INITINFO: return "TI_INITINFO";
4293 case SHT_TI_PHATTRS: return "TI_PHATTRS";
4294 default: return NULL;
4295 }
4296 }
4297
4298 static const char *
4299 get_msp430_section_type_name (unsigned int sh_type)
4300 {
4301 switch (sh_type)
4302 {
4303 case SHT_MSP430_SEC_FLAGS: return "MSP430_SEC_FLAGS";
4304 case SHT_MSP430_SYM_ALIASES: return "MSP430_SYM_ALIASES";
4305 case SHT_MSP430_ATTRIBUTES: return "MSP430_ATTRIBUTES";
4306 default: return NULL;
4307 }
4308 }
4309
4310 static const char *
4311 get_nfp_section_type_name (unsigned int sh_type)
4312 {
4313 switch (sh_type)
4314 {
4315 case SHT_NFP_MECONFIG: return "NFP_MECONFIG";
4316 case SHT_NFP_INITREG: return "NFP_INITREG";
4317 case SHT_NFP_UDEBUG: return "NFP_UDEBUG";
4318 default: return NULL;
4319 }
4320 }
4321
4322 static const char *
4323 get_v850_section_type_name (unsigned int sh_type)
4324 {
4325 switch (sh_type)
4326 {
4327 case SHT_V850_SCOMMON: return "V850 Small Common";
4328 case SHT_V850_TCOMMON: return "V850 Tiny Common";
4329 case SHT_V850_ZCOMMON: return "V850 Zero Common";
4330 case SHT_RENESAS_IOP: return "RENESAS IOP";
4331 case SHT_RENESAS_INFO: return "RENESAS INFO";
4332 default: return NULL;
4333 }
4334 }
4335
4336 static const char *
4337 get_riscv_section_type_name (unsigned int sh_type)
4338 {
4339 switch (sh_type)
4340 {
4341 case SHT_RISCV_ATTRIBUTES: return "RISCV_ATTRIBUTES";
4342 default: return NULL;
4343 }
4344 }
4345
4346 static const char *
4347 get_csky_section_type_name (unsigned int sh_type)
4348 {
4349 switch (sh_type)
4350 {
4351 case SHT_CSKY_ATTRIBUTES: return "CSKY_ATTRIBUTES";
4352 default: return NULL;
4353 }
4354 }
4355
4356 static const char *
4357 get_section_type_name (Filedata * filedata, unsigned int sh_type)
4358 {
4359 static char buff[32];
4360 const char * result;
4361
4362 switch (sh_type)
4363 {
4364 case SHT_NULL: return "NULL";
4365 case SHT_PROGBITS: return "PROGBITS";
4366 case SHT_SYMTAB: return "SYMTAB";
4367 case SHT_STRTAB: return "STRTAB";
4368 case SHT_RELA: return "RELA";
4369 case SHT_HASH: return "HASH";
4370 case SHT_DYNAMIC: return "DYNAMIC";
4371 case SHT_NOTE: return "NOTE";
4372 case SHT_NOBITS: return "NOBITS";
4373 case SHT_REL: return "REL";
4374 case SHT_SHLIB: return "SHLIB";
4375 case SHT_DYNSYM: return "DYNSYM";
4376 case SHT_INIT_ARRAY: return "INIT_ARRAY";
4377 case SHT_FINI_ARRAY: return "FINI_ARRAY";
4378 case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY";
4379 case SHT_GNU_HASH: return "GNU_HASH";
4380 case SHT_GROUP: return "GROUP";
4381 case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICES";
4382 case SHT_GNU_verdef: return "VERDEF";
4383 case SHT_GNU_verneed: return "VERNEED";
4384 case SHT_GNU_versym: return "VERSYM";
4385 case 0x6ffffff0: return "VERSYM";
4386 case 0x6ffffffc: return "VERDEF";
4387 case 0x7ffffffd: return "AUXILIARY";
4388 case 0x7fffffff: return "FILTER";
4389 case SHT_GNU_LIBLIST: return "GNU_LIBLIST";
4390
4391 default:
4392 if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC))
4393 {
4394 switch (filedata->file_header.e_machine)
4395 {
4396 case EM_ARC:
4397 case EM_ARC_COMPACT:
4398 case EM_ARC_COMPACT2:
4399 result = get_arc_section_type_name (sh_type);
4400 break;
4401 case EM_MIPS:
4402 case EM_MIPS_RS3_LE:
4403 result = get_mips_section_type_name (sh_type);
4404 break;
4405 case EM_PARISC:
4406 result = get_parisc_section_type_name (sh_type);
4407 break;
4408 case EM_IA_64:
4409 result = get_ia64_section_type_name (filedata, sh_type);
4410 break;
4411 case EM_X86_64:
4412 case EM_L1OM:
4413 case EM_K1OM:
4414 result = get_x86_64_section_type_name (sh_type);
4415 break;
4416 case EM_AARCH64:
4417 result = get_aarch64_section_type_name (sh_type);
4418 break;
4419 case EM_ARM:
4420 result = get_arm_section_type_name (sh_type);
4421 break;
4422 case EM_TI_C6000:
4423 result = get_tic6x_section_type_name (sh_type);
4424 break;
4425 case EM_MSP430:
4426 result = get_msp430_section_type_name (sh_type);
4427 break;
4428 case EM_NFP:
4429 result = get_nfp_section_type_name (sh_type);
4430 break;
4431 case EM_V800:
4432 case EM_V850:
4433 case EM_CYGNUS_V850:
4434 result = get_v850_section_type_name (sh_type);
4435 break;
4436 case EM_RISCV:
4437 result = get_riscv_section_type_name (sh_type);
4438 break;
4439 case EM_CSKY:
4440 result = get_csky_section_type_name (sh_type);
4441 break;
4442 default:
4443 result = NULL;
4444 break;
4445 }
4446
4447 if (result != NULL)
4448 return result;
4449
4450 sprintf (buff, "LOPROC+%#x", sh_type - SHT_LOPROC);
4451 }
4452 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS))
4453 {
4454 switch (filedata->file_header.e_machine)
4455 {
4456 case EM_IA_64:
4457 result = get_ia64_section_type_name (filedata, sh_type);
4458 break;
4459 default:
4460 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
4461 result = get_solaris_section_type (sh_type);
4462 else
4463 {
4464 switch (sh_type)
4465 {
4466 case SHT_GNU_INCREMENTAL_INPUTS: result = "GNU_INCREMENTAL_INPUTS"; break;
4467 case SHT_GNU_ATTRIBUTES: result = "GNU_ATTRIBUTES"; break;
4468 case SHT_GNU_HASH: result = "GNU_HASH"; break;
4469 case SHT_GNU_LIBLIST: result = "GNU_LIBLIST"; break;
4470 default:
4471 result = NULL;
4472 break;
4473 }
4474 }
4475 break;
4476 }
4477
4478 if (result != NULL)
4479 return result;
4480
4481 sprintf (buff, "LOOS+%#x", sh_type - SHT_LOOS);
4482 }
4483 else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER))
4484 {
4485 switch (filedata->file_header.e_machine)
4486 {
4487 case EM_V800:
4488 case EM_V850:
4489 case EM_CYGNUS_V850:
4490 result = get_v850_section_type_name (sh_type);
4491 break;
4492 default:
4493 result = NULL;
4494 break;
4495 }
4496
4497 if (result != NULL)
4498 return result;
4499
4500 sprintf (buff, "LOUSER+%#x", sh_type - SHT_LOUSER);
4501 }
4502 else
4503 /* This message is probably going to be displayed in a 15
4504 character wide field, so put the hex value first. */
4505 snprintf (buff, sizeof (buff), _("%08x: <unknown>"), sh_type);
4506
4507 return buff;
4508 }
4509 }
4510
4511 enum long_option_values
4512 {
4513 OPTION_DEBUG_DUMP = 512,
4514 OPTION_DYN_SYMS,
4515 OPTION_LTO_SYMS,
4516 OPTION_DWARF_DEPTH,
4517 OPTION_DWARF_START,
4518 OPTION_DWARF_CHECK,
4519 OPTION_CTF_DUMP,
4520 OPTION_CTF_PARENT,
4521 OPTION_CTF_SYMBOLS,
4522 OPTION_CTF_STRINGS,
4523 OPTION_WITH_SYMBOL_VERSIONS,
4524 OPTION_RECURSE_LIMIT,
4525 OPTION_NO_RECURSE_LIMIT,
4526 OPTION_NO_DEMANGLING
4527 };
4528
4529 static struct option options[] =
4530 {
4531 /* Note - This table is alpha-sorted on the 'val'
4532 field in order to make adding new options easier. */
4533 {"arch-specific", no_argument, 0, 'A'},
4534 {"all", no_argument, 0, 'a'},
4535 {"demangle", optional_argument, 0, 'C'},
4536 {"archive-index", no_argument, 0, 'c'},
4537 {"use-dynamic", no_argument, 0, 'D'},
4538 {"dynamic", no_argument, 0, 'd'},
4539 {"headers", no_argument, 0, 'e'},
4540 {"section-groups", no_argument, 0, 'g'},
4541 {"help", no_argument, 0, 'H'},
4542 {"file-header", no_argument, 0, 'h'},
4543 {"histogram", no_argument, 0, 'I'},
4544 {"lint", no_argument, 0, 'L'},
4545 {"enable-checks", no_argument, 0, 'L'},
4546 {"program-headers", no_argument, 0, 'l'},
4547 {"segments", no_argument, 0, 'l'},
4548 {"full-section-name",no_argument, 0, 'N'},
4549 {"notes", no_argument, 0, 'n'},
4550 {"process-links", no_argument, 0, 'P'},
4551 {"string-dump", required_argument, 0, 'p'},
4552 {"relocated-dump", required_argument, 0, 'R'},
4553 {"relocs", no_argument, 0, 'r'},
4554 {"section-headers", no_argument, 0, 'S'},
4555 {"sections", no_argument, 0, 'S'},
4556 {"symbols", no_argument, 0, 's'},
4557 {"syms", no_argument, 0, 's'},
4558 {"silent-truncation",no_argument, 0, 'T'},
4559 {"section-details", no_argument, 0, 't'},
4560 {"unwind", no_argument, 0, 'u'},
4561 {"version-info", no_argument, 0, 'V'},
4562 {"version", no_argument, 0, 'v'},
4563 {"wide", no_argument, 0, 'W'},
4564 {"hex-dump", required_argument, 0, 'x'},
4565 {"decompress", no_argument, 0, 'z'},
4566
4567 {"no-demangle", no_argument, 0, OPTION_NO_DEMANGLING},
4568 {"recurse-limit", no_argument, NULL, OPTION_RECURSE_LIMIT},
4569 {"no-recurse-limit", no_argument, NULL, OPTION_NO_RECURSE_LIMIT},
4570 {"no-recursion-limit", no_argument, NULL, OPTION_NO_RECURSE_LIMIT},
4571 {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS},
4572 {"lto-syms", no_argument, 0, OPTION_LTO_SYMS},
4573 {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP},
4574 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
4575 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
4576 {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK},
4577 #ifdef ENABLE_LIBCTF
4578 {"ctf", required_argument, 0, OPTION_CTF_DUMP},
4579 {"ctf-symbols", required_argument, 0, OPTION_CTF_SYMBOLS},
4580 {"ctf-strings", required_argument, 0, OPTION_CTF_STRINGS},
4581 {"ctf-parent", required_argument, 0, OPTION_CTF_PARENT},
4582 #endif
4583
4584 {0, no_argument, 0, 0}
4585 };
4586
4587 static void
4588 usage (FILE * stream)
4589 {
4590 fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n"));
4591 fprintf (stream, _(" Display information about the contents of ELF format files\n"));
4592 fprintf (stream, _(" Options are:\n\
4593 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
4594 -h --file-header Display the ELF file header\n\
4595 -l --program-headers Display the program headers\n\
4596 --segments An alias for --program-headers\n\
4597 -S --section-headers Display the sections' header\n\
4598 --sections An alias for --section-headers\n\
4599 -g --section-groups Display the section groups\n\
4600 -t --section-details Display the section details\n\
4601 -e --headers Equivalent to: -h -l -S\n\
4602 -s --syms Display the symbol table\n\
4603 --symbols An alias for --syms\n\
4604 --dyn-syms Display the dynamic symbol table\n\
4605 --lto-syms Display LTO symbol tables\n\
4606 -C --demangle[=STYLE] Decode low-level symbol names into user-level names\n\
4607 The STYLE, if specified, can be `auto' (the default),\n\
4608 `gnu', `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
4609 or `gnat'\n\
4610 --no-demangle Do not demangle low-level symbol names. (This is the default)\n\
4611 --recurse-limit Enable a demangling recursion limit. (This is the default)\n\
4612 --no-recurse-limit Disable a demangling recursion limit\n\
4613 -n --notes Display the core notes (if present)\n\
4614 -r --relocs Display the relocations (if present)\n\
4615 -u --unwind Display the unwind info (if present)\n\
4616 -d --dynamic Display the dynamic section (if present)\n\
4617 -V --version-info Display the version sections (if present)\n\
4618 -A --arch-specific Display architecture specific information (if any)\n\
4619 -c --archive-index Display the symbol/file index in an archive\n\
4620 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
4621 -L --lint|--enable-checks Display warning messages for possible problems\n\
4622 -x --hex-dump=<number|name>\n\
4623 Dump the contents of section <number|name> as bytes\n\
4624 -p --string-dump=<number|name>\n\
4625 Dump the contents of section <number|name> as strings\n\
4626 -R --relocated-dump=<number|name>\n\
4627 Dump the contents of section <number|name> as relocated bytes\n\
4628 -z --decompress Decompress section before dumping it\n\
4629 -w[lLiaprmfFsoORtUuTgAc] or\n\
4630 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
4631 =frames-interp,=str,=str-offsets,=loc,=Ranges,=pubtypes,\n\
4632 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
4633 =addr,=cu_index]\n\
4634 Display the contents of DWARF debug sections\n\
4635 -wk,--debug-dump=links Display the contents of sections that link to separate debuginfo files\n\
4636 -P,--process-links Display the contents of non-debug sections in separate debuginfo files. (Implies -wK)\n"));
4637 #if DEFAULT_FOR_FOLLOW_LINKS
4638 fprintf (stream, _("\
4639 -wK,--debug-dump=follow-links Follow links to separate debug info files (default)\n\
4640 -wN,--debug-dump=no-follow-links Do not follow links to separate debug info files\n\
4641 "));
4642 #else
4643 fprintf (stream, _("\
4644 -wK,--debug-dump=follow-links Follow links to separate debug info files\n\
4645 -wN,--debug-dump=no-follow-links Do not follow links to separate debug info files (default)\n\
4646 "));
4647 #endif
4648 fprintf (stream, _("\
4649 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
4650 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
4651 or deeper\n"));
4652 #ifdef ENABLE_LIBCTF
4653 fprintf (stream, _("\
4654 --ctf=<number|name> Display CTF info from section <number|name>\n\
4655 --ctf-parent=<number|name>\n\
4656 Use section <number|name> as the CTF parent\n\n\
4657 --ctf-symbols=<number|name>\n\
4658 Use section <number|name> as the CTF external symtab\n\n\
4659 --ctf-strings=<number|name>\n\
4660 Use section <number|name> as the CTF external strtab\n\n"));
4661 #endif
4662
4663 #ifdef SUPPORT_DISASSEMBLY
4664 fprintf (stream, _("\
4665 -i --instruction-dump=<number|name>\n\
4666 Disassemble the contents of section <number|name>\n"));
4667 #endif
4668 fprintf (stream, _("\
4669 -I --histogram Display histogram of bucket list lengths\n\
4670 -W --wide Allow output width to exceed 80 characters\n\
4671 -T --silent-truncation If a symbol name is truncated, do not add a suffix [...]\n\
4672 @<file> Read options from <file>\n\
4673 -H --help Display this information\n\
4674 -v --version Display the version number of readelf\n"));
4675
4676 if (REPORT_BUGS_TO[0] && stream == stdout)
4677 fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO);
4678
4679 exit (stream == stdout ? 0 : 1);
4680 }
4681
4682 /* Record the fact that the user wants the contents of section number
4683 SECTION to be displayed using the method(s) encoded as flags bits
4684 in TYPE. Note, TYPE can be zero if we are creating the array for
4685 the first time. */
4686
4687 static void
4688 request_dump_bynumber (struct dump_data *dumpdata,
4689 unsigned int section, dump_type type)
4690 {
4691 if (section >= dumpdata->num_dump_sects)
4692 {
4693 dump_type * new_dump_sects;
4694
4695 new_dump_sects = (dump_type *) calloc (section + 1,
4696 sizeof (* new_dump_sects));
4697
4698 if (new_dump_sects == NULL)
4699 error (_("Out of memory allocating dump request table.\n"));
4700 else
4701 {
4702 if (dumpdata->dump_sects)
4703 {
4704 /* Copy current flag settings. */
4705 memcpy (new_dump_sects, dumpdata->dump_sects,
4706 dumpdata->num_dump_sects * sizeof (* new_dump_sects));
4707
4708 free (dumpdata->dump_sects);
4709 }
4710
4711 dumpdata->dump_sects = new_dump_sects;
4712 dumpdata->num_dump_sects = section + 1;
4713 }
4714 }
4715
4716 if (dumpdata->dump_sects)
4717 dumpdata->dump_sects[section] |= type;
4718 }
4719
4720 /* Request a dump by section name. */
4721
4722 static void
4723 request_dump_byname (const char * section, dump_type type)
4724 {
4725 struct dump_list_entry * new_request;
4726
4727 new_request = (struct dump_list_entry *)
4728 malloc (sizeof (struct dump_list_entry));
4729 if (!new_request)
4730 error (_("Out of memory allocating dump request table.\n"));
4731
4732 new_request->name = strdup (section);
4733 if (!new_request->name)
4734 error (_("Out of memory allocating dump request table.\n"));
4735
4736 new_request->type = type;
4737
4738 new_request->next = dump_sects_byname;
4739 dump_sects_byname = new_request;
4740 }
4741
4742 static inline void
4743 request_dump (struct dump_data *dumpdata, dump_type type)
4744 {
4745 int section;
4746 char * cp;
4747
4748 do_dump = true;
4749 section = strtoul (optarg, & cp, 0);
4750
4751 if (! *cp && section >= 0)
4752 request_dump_bynumber (dumpdata, section, type);
4753 else
4754 request_dump_byname (optarg, type);
4755 }
4756
4757 static void
4758 parse_args (struct dump_data *dumpdata, int argc, char ** argv)
4759 {
4760 int c;
4761
4762 if (argc < 2)
4763 usage (stderr);
4764
4765 while ((c = getopt_long
4766 (argc, argv, "ACDHILNPR:STVWacdeghi:lnp:rstuvw::x:z", options, NULL)) != EOF)
4767 {
4768 switch (c)
4769 {
4770 case 0:
4771 /* Long options. */
4772 break;
4773 case 'H':
4774 usage (stdout);
4775 break;
4776
4777 case 'a':
4778 do_syms = true;
4779 do_reloc = true;
4780 do_unwind = true;
4781 do_dynamic = true;
4782 do_header = true;
4783 do_sections = true;
4784 do_section_groups = true;
4785 do_segments = true;
4786 do_version = true;
4787 do_histogram = true;
4788 do_arch = true;
4789 do_notes = true;
4790 break;
4791
4792 case 'g':
4793 do_section_groups = true;
4794 break;
4795 case 't':
4796 case 'N':
4797 do_sections = true;
4798 do_section_details = true;
4799 break;
4800 case 'e':
4801 do_header = true;
4802 do_sections = true;
4803 do_segments = true;
4804 break;
4805 case 'A':
4806 do_arch = true;
4807 break;
4808 case 'D':
4809 do_using_dynamic = true;
4810 break;
4811 case 'r':
4812 do_reloc = true;
4813 break;
4814 case 'u':
4815 do_unwind = true;
4816 break;
4817 case 'h':
4818 do_header = true;
4819 break;
4820 case 'l':
4821 do_segments = true;
4822 break;
4823 case 's':
4824 do_syms = true;
4825 break;
4826 case 'S':
4827 do_sections = true;
4828 break;
4829 case 'd':
4830 do_dynamic = true;
4831 break;
4832 case 'I':
4833 do_histogram = true;
4834 break;
4835 case 'n':
4836 do_notes = true;
4837 break;
4838 case 'c':
4839 do_archive_index = true;
4840 break;
4841 case 'L':
4842 do_checks = true;
4843 break;
4844 case 'P':
4845 process_links = true;
4846 do_follow_links = true;
4847 break;
4848 case 'x':
4849 request_dump (dumpdata, HEX_DUMP);
4850 break;
4851 case 'p':
4852 request_dump (dumpdata, STRING_DUMP);
4853 break;
4854 case 'R':
4855 request_dump (dumpdata, RELOC_DUMP);
4856 break;
4857 case 'z':
4858 decompress_dumps = true;
4859 break;
4860 case 'w':
4861 do_dump = true;
4862 if (optarg == NULL)
4863 {
4864 do_debugging = true;
4865 dwarf_select_sections_all ();
4866 }
4867 else
4868 {
4869 do_debugging = false;
4870 dwarf_select_sections_by_letters (optarg);
4871 }
4872 break;
4873 case OPTION_DEBUG_DUMP:
4874 do_dump = true;
4875 if (optarg == NULL)
4876 do_debugging = true;
4877 else
4878 {
4879 do_debugging = false;
4880 dwarf_select_sections_by_names (optarg);
4881 }
4882 break;
4883 case OPTION_DWARF_DEPTH:
4884 {
4885 char *cp;
4886
4887 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
4888 }
4889 break;
4890 case OPTION_DWARF_START:
4891 {
4892 char *cp;
4893
4894 dwarf_start_die = strtoul (optarg, & cp, 0);
4895 }
4896 break;
4897 case OPTION_DWARF_CHECK:
4898 dwarf_check = true;
4899 break;
4900 case OPTION_CTF_DUMP:
4901 do_ctf = true;
4902 request_dump (dumpdata, CTF_DUMP);
4903 break;
4904 case OPTION_CTF_SYMBOLS:
4905 free (dump_ctf_symtab_name);
4906 dump_ctf_symtab_name = strdup (optarg);
4907 break;
4908 case OPTION_CTF_STRINGS:
4909 free (dump_ctf_strtab_name);
4910 dump_ctf_strtab_name = strdup (optarg);
4911 break;
4912 case OPTION_CTF_PARENT:
4913 free (dump_ctf_parent_name);
4914 dump_ctf_parent_name = strdup (optarg);
4915 break;
4916 case OPTION_DYN_SYMS:
4917 do_dyn_syms = true;
4918 break;
4919 case OPTION_LTO_SYMS:
4920 do_lto_syms = true;
4921 break;
4922 #ifdef SUPPORT_DISASSEMBLY
4923 case 'i':
4924 request_dump (dumpdata, DISASS_DUMP);
4925 break;
4926 #endif
4927 case 'v':
4928 print_version (program_name);
4929 break;
4930 case 'V':
4931 do_version = true;
4932 break;
4933 case 'W':
4934 do_wide = true;
4935 break;
4936 case 'T':
4937 do_not_show_symbol_truncation = true;
4938 break;
4939 case 'C':
4940 do_demangle = true;
4941 if (optarg != NULL)
4942 {
4943 enum demangling_styles style;
4944
4945 style = cplus_demangle_name_to_style (optarg);
4946 if (style == unknown_demangling)
4947 error (_("unknown demangling style `%s'"), optarg);
4948
4949 cplus_demangle_set_style (style);
4950 }
4951 break;
4952 case OPTION_NO_DEMANGLING:
4953 do_demangle = false;
4954 break;
4955 case OPTION_RECURSE_LIMIT:
4956 demangle_flags &= ~ DMGL_NO_RECURSE_LIMIT;
4957 break;
4958 case OPTION_NO_RECURSE_LIMIT:
4959 demangle_flags |= DMGL_NO_RECURSE_LIMIT;
4960 break;
4961 case OPTION_WITH_SYMBOL_VERSIONS:
4962 /* Ignored for backward compatibility. */
4963 break;
4964
4965 default:
4966 /* xgettext:c-format */
4967 error (_("Invalid option '-%c'\n"), c);
4968 /* Fall through. */
4969 case '?':
4970 usage (stderr);
4971 }
4972 }
4973
4974 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
4975 && !do_segments && !do_header && !do_dump && !do_version
4976 && !do_histogram && !do_debugging && !do_arch && !do_notes
4977 && !do_section_groups && !do_archive_index
4978 && !do_dyn_syms && !do_lto_syms)
4979 {
4980 if (do_checks)
4981 {
4982 check_all = true;
4983 do_dynamic = do_syms = do_reloc = do_unwind = do_sections = true;
4984 do_segments = do_header = do_dump = do_version = true;
4985 do_histogram = do_debugging = do_arch = do_notes = true;
4986 do_section_groups = do_archive_index = do_dyn_syms = true;
4987 do_lto_syms = true;
4988 }
4989 else
4990 usage (stderr);
4991 }
4992 }
4993
4994 static const char *
4995 get_elf_class (unsigned int elf_class)
4996 {
4997 static char buff[32];
4998
4999 switch (elf_class)
5000 {
5001 case ELFCLASSNONE: return _("none");
5002 case ELFCLASS32: return "ELF32";
5003 case ELFCLASS64: return "ELF64";
5004 default:
5005 snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class);
5006 return buff;
5007 }
5008 }
5009
5010 static const char *
5011 get_data_encoding (unsigned int encoding)
5012 {
5013 static char buff[32];
5014
5015 switch (encoding)
5016 {
5017 case ELFDATANONE: return _("none");
5018 case ELFDATA2LSB: return _("2's complement, little endian");
5019 case ELFDATA2MSB: return _("2's complement, big endian");
5020 default:
5021 snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding);
5022 return buff;
5023 }
5024 }
5025
5026 /* Decode the data held in 'filedata->file_header'. */
5027
5028 static bool
5029 process_file_header (Filedata * filedata)
5030 {
5031 Elf_Internal_Ehdr * header = & filedata->file_header;
5032
5033 if ( header->e_ident[EI_MAG0] != ELFMAG0
5034 || header->e_ident[EI_MAG1] != ELFMAG1
5035 || header->e_ident[EI_MAG2] != ELFMAG2
5036 || header->e_ident[EI_MAG3] != ELFMAG3)
5037 {
5038 error
5039 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
5040 return false;
5041 }
5042
5043 if (! filedata->is_separate)
5044 init_dwarf_regnames_by_elf_machine_code (header->e_machine);
5045
5046 if (do_header)
5047 {
5048 unsigned i;
5049
5050 if (filedata->is_separate)
5051 printf (_("ELF Header in linked file '%s':\n"), filedata->file_name);
5052 else
5053 printf (_("ELF Header:\n"));
5054 printf (_(" Magic: "));
5055 for (i = 0; i < EI_NIDENT; i++)
5056 printf ("%2.2x ", header->e_ident[i]);
5057 printf ("\n");
5058 printf (_(" Class: %s\n"),
5059 get_elf_class (header->e_ident[EI_CLASS]));
5060 printf (_(" Data: %s\n"),
5061 get_data_encoding (header->e_ident[EI_DATA]));
5062 printf (_(" Version: %d%s\n"),
5063 header->e_ident[EI_VERSION],
5064 (header->e_ident[EI_VERSION] == EV_CURRENT
5065 ? _(" (current)")
5066 : (header->e_ident[EI_VERSION] != EV_NONE
5067 ? _(" <unknown>")
5068 : "")));
5069 printf (_(" OS/ABI: %s\n"),
5070 get_osabi_name (filedata, header->e_ident[EI_OSABI]));
5071 printf (_(" ABI Version: %d\n"),
5072 header->e_ident[EI_ABIVERSION]);
5073 printf (_(" Type: %s\n"),
5074 get_file_type (header->e_type));
5075 printf (_(" Machine: %s\n"),
5076 get_machine_name (header->e_machine));
5077 printf (_(" Version: 0x%lx\n"),
5078 header->e_version);
5079
5080 printf (_(" Entry point address: "));
5081 print_vma (header->e_entry, PREFIX_HEX);
5082 printf (_("\n Start of program headers: "));
5083 print_vma (header->e_phoff, DEC);
5084 printf (_(" (bytes into file)\n Start of section headers: "));
5085 print_vma (header->e_shoff, DEC);
5086 printf (_(" (bytes into file)\n"));
5087
5088 printf (_(" Flags: 0x%lx%s\n"),
5089 header->e_flags,
5090 get_machine_flags (filedata, header->e_flags, header->e_machine));
5091 printf (_(" Size of this header: %u (bytes)\n"),
5092 header->e_ehsize);
5093 printf (_(" Size of program headers: %u (bytes)\n"),
5094 header->e_phentsize);
5095 printf (_(" Number of program headers: %u"),
5096 header->e_phnum);
5097 if (filedata->section_headers != NULL
5098 && header->e_phnum == PN_XNUM
5099 && filedata->section_headers[0].sh_info != 0)
5100 {
5101 header->e_phnum = filedata->section_headers[0].sh_info;
5102 printf (" (%u)", header->e_phnum);
5103 }
5104 putc ('\n', stdout);
5105 printf (_(" Size of section headers: %u (bytes)\n"),
5106 header->e_shentsize);
5107 printf (_(" Number of section headers: %u"),
5108 header->e_shnum);
5109 if (filedata->section_headers != NULL && header->e_shnum == SHN_UNDEF)
5110 {
5111 header->e_shnum = filedata->section_headers[0].sh_size;
5112 printf (" (%u)", header->e_shnum);
5113 }
5114 putc ('\n', stdout);
5115 printf (_(" Section header string table index: %u"),
5116 header->e_shstrndx);
5117 if (filedata->section_headers != NULL
5118 && header->e_shstrndx == (SHN_XINDEX & 0xffff))
5119 {
5120 header->e_shstrndx = filedata->section_headers[0].sh_link;
5121 printf (" (%u)", header->e_shstrndx);
5122 }
5123 if (header->e_shstrndx != SHN_UNDEF
5124 && header->e_shstrndx >= header->e_shnum)
5125 {
5126 header->e_shstrndx = SHN_UNDEF;
5127 printf (_(" <corrupt: out of range>"));
5128 }
5129 putc ('\n', stdout);
5130 }
5131
5132 if (filedata->section_headers != NULL)
5133 {
5134 if (header->e_phnum == PN_XNUM
5135 && filedata->section_headers[0].sh_info != 0)
5136 header->e_phnum = filedata->section_headers[0].sh_info;
5137 if (header->e_shnum == SHN_UNDEF)
5138 header->e_shnum = filedata->section_headers[0].sh_size;
5139 if (header->e_shstrndx == (SHN_XINDEX & 0xffff))
5140 header->e_shstrndx = filedata->section_headers[0].sh_link;
5141 if (header->e_shstrndx >= header->e_shnum)
5142 header->e_shstrndx = SHN_UNDEF;
5143 free (filedata->section_headers);
5144 filedata->section_headers = NULL;
5145 }
5146
5147 return true;
5148 }
5149
5150 /* Read in the program headers from FILEDATA and store them in PHEADERS.
5151 Returns TRUE upon success, FALSE otherwise. Loads 32-bit headers. */
5152
5153 static bool
5154 get_32bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders)
5155 {
5156 Elf32_External_Phdr * phdrs;
5157 Elf32_External_Phdr * external;
5158 Elf_Internal_Phdr * internal;
5159 unsigned int i;
5160 unsigned int size = filedata->file_header.e_phentsize;
5161 unsigned int num = filedata->file_header.e_phnum;
5162
5163 /* PR binutils/17531: Cope with unexpected section header sizes. */
5164 if (size == 0 || num == 0)
5165 return false;
5166 if (size < sizeof * phdrs)
5167 {
5168 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
5169 return false;
5170 }
5171 if (size > sizeof * phdrs)
5172 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
5173
5174 phdrs = (Elf32_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff,
5175 size, num, _("program headers"));
5176 if (phdrs == NULL)
5177 return false;
5178
5179 for (i = 0, internal = pheaders, external = phdrs;
5180 i < filedata->file_header.e_phnum;
5181 i++, internal++, external++)
5182 {
5183 internal->p_type = BYTE_GET (external->p_type);
5184 internal->p_offset = BYTE_GET (external->p_offset);
5185 internal->p_vaddr = BYTE_GET (external->p_vaddr);
5186 internal->p_paddr = BYTE_GET (external->p_paddr);
5187 internal->p_filesz = BYTE_GET (external->p_filesz);
5188 internal->p_memsz = BYTE_GET (external->p_memsz);
5189 internal->p_flags = BYTE_GET (external->p_flags);
5190 internal->p_align = BYTE_GET (external->p_align);
5191 }
5192
5193 free (phdrs);
5194 return true;
5195 }
5196
5197 /* Read in the program headers from FILEDATA and store them in PHEADERS.
5198 Returns TRUE upon success, FALSE otherwise. Loads 64-bit headers. */
5199
5200 static bool
5201 get_64bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders)
5202 {
5203 Elf64_External_Phdr * phdrs;
5204 Elf64_External_Phdr * external;
5205 Elf_Internal_Phdr * internal;
5206 unsigned int i;
5207 unsigned int size = filedata->file_header.e_phentsize;
5208 unsigned int num = filedata->file_header.e_phnum;
5209
5210 /* PR binutils/17531: Cope with unexpected section header sizes. */
5211 if (size == 0 || num == 0)
5212 return false;
5213 if (size < sizeof * phdrs)
5214 {
5215 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
5216 return false;
5217 }
5218 if (size > sizeof * phdrs)
5219 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
5220
5221 phdrs = (Elf64_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff,
5222 size, num, _("program headers"));
5223 if (!phdrs)
5224 return false;
5225
5226 for (i = 0, internal = pheaders, external = phdrs;
5227 i < filedata->file_header.e_phnum;
5228 i++, internal++, external++)
5229 {
5230 internal->p_type = BYTE_GET (external->p_type);
5231 internal->p_flags = BYTE_GET (external->p_flags);
5232 internal->p_offset = BYTE_GET (external->p_offset);
5233 internal->p_vaddr = BYTE_GET (external->p_vaddr);
5234 internal->p_paddr = BYTE_GET (external->p_paddr);
5235 internal->p_filesz = BYTE_GET (external->p_filesz);
5236 internal->p_memsz = BYTE_GET (external->p_memsz);
5237 internal->p_align = BYTE_GET (external->p_align);
5238 }
5239
5240 free (phdrs);
5241 return true;
5242 }
5243
5244 /* Returns TRUE if the program headers were read into `program_headers'. */
5245
5246 static bool
5247 get_program_headers (Filedata * filedata)
5248 {
5249 Elf_Internal_Phdr * phdrs;
5250
5251 /* Check cache of prior read. */
5252 if (filedata->program_headers != NULL)
5253 return true;
5254
5255 /* Be kind to memory checkers by looking for
5256 e_phnum values which we know must be invalid. */
5257 if (filedata->file_header.e_phnum
5258 * (is_32bit_elf ? sizeof (Elf32_External_Phdr) : sizeof (Elf64_External_Phdr))
5259 >= filedata->file_size)
5260 {
5261 error (_("Too many program headers - %#x - the file is not that big\n"),
5262 filedata->file_header.e_phnum);
5263 return false;
5264 }
5265
5266 phdrs = (Elf_Internal_Phdr *) cmalloc (filedata->file_header.e_phnum,
5267 sizeof (Elf_Internal_Phdr));
5268 if (phdrs == NULL)
5269 {
5270 error (_("Out of memory reading %u program headers\n"),
5271 filedata->file_header.e_phnum);
5272 return false;
5273 }
5274
5275 if (is_32bit_elf
5276 ? get_32bit_program_headers (filedata, phdrs)
5277 : get_64bit_program_headers (filedata, phdrs))
5278 {
5279 filedata->program_headers = phdrs;
5280 return true;
5281 }
5282
5283 free (phdrs);
5284 return false;
5285 }
5286
5287 /* Returns TRUE if the program headers were loaded. */
5288
5289 static bool
5290 process_program_headers (Filedata * filedata)
5291 {
5292 Elf_Internal_Phdr * segment;
5293 unsigned int i;
5294 Elf_Internal_Phdr * previous_load = NULL;
5295
5296 filedata->dynamic_addr = 0;
5297 filedata->dynamic_size = 0;
5298
5299 if (filedata->file_header.e_phnum == 0)
5300 {
5301 /* PR binutils/12467. */
5302 if (filedata->file_header.e_phoff != 0)
5303 {
5304 warn (_("possibly corrupt ELF header - it has a non-zero program"
5305 " header offset, but no program headers\n"));
5306 return false;
5307 }
5308 else if (do_segments)
5309 {
5310 if (filedata->is_separate)
5311 printf (_("\nThere are no program headers in linked file '%s'.\n"),
5312 filedata->file_name);
5313 else
5314 printf (_("\nThere are no program headers in this file.\n"));
5315 }
5316 return true;
5317 }
5318
5319 if (do_segments && !do_header)
5320 {
5321 if (filedata->is_separate)
5322 printf ("\nIn linked file '%s' the ELF file type is %s\n",
5323 filedata->file_name,
5324 get_file_type (filedata->file_header.e_type));
5325 else
5326 printf (_("\nElf file type is %s\n"), get_file_type (filedata->file_header.e_type));
5327 printf (_("Entry point 0x%s\n"), bfd_vmatoa ("x", filedata->file_header.e_entry));
5328 printf (ngettext ("There is %d program header, starting at offset %s\n",
5329 "There are %d program headers, starting at offset %s\n",
5330 filedata->file_header.e_phnum),
5331 filedata->file_header.e_phnum,
5332 bfd_vmatoa ("u", filedata->file_header.e_phoff));
5333 }
5334
5335 if (! get_program_headers (filedata))
5336 return true;
5337
5338 if (do_segments)
5339 {
5340 if (filedata->file_header.e_phnum > 1)
5341 printf (_("\nProgram Headers:\n"));
5342 else
5343 printf (_("\nProgram Headers:\n"));
5344
5345 if (is_32bit_elf)
5346 printf
5347 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
5348 else if (do_wide)
5349 printf
5350 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
5351 else
5352 {
5353 printf
5354 (_(" Type Offset VirtAddr PhysAddr\n"));
5355 printf
5356 (_(" FileSiz MemSiz Flags Align\n"));
5357 }
5358 }
5359
5360 for (i = 0, segment = filedata->program_headers;
5361 i < filedata->file_header.e_phnum;
5362 i++, segment++)
5363 {
5364 if (do_segments)
5365 {
5366 printf (" %-14.14s ", get_segment_type (filedata, segment->p_type));
5367
5368 if (is_32bit_elf)
5369 {
5370 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
5371 printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr);
5372 printf ("0x%8.8lx ", (unsigned long) segment->p_paddr);
5373 printf ("0x%5.5lx ", (unsigned long) segment->p_filesz);
5374 printf ("0x%5.5lx ", (unsigned long) segment->p_memsz);
5375 printf ("%c%c%c ",
5376 (segment->p_flags & PF_R ? 'R' : ' '),
5377 (segment->p_flags & PF_W ? 'W' : ' '),
5378 (segment->p_flags & PF_X ? 'E' : ' '));
5379 printf ("%#lx", (unsigned long) segment->p_align);
5380 }
5381 else if (do_wide)
5382 {
5383 if ((unsigned long) segment->p_offset == segment->p_offset)
5384 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
5385 else
5386 {
5387 print_vma (segment->p_offset, FULL_HEX);
5388 putchar (' ');
5389 }
5390
5391 print_vma (segment->p_vaddr, FULL_HEX);
5392 putchar (' ');
5393 print_vma (segment->p_paddr, FULL_HEX);
5394 putchar (' ');
5395
5396 if ((unsigned long) segment->p_filesz == segment->p_filesz)
5397 printf ("0x%6.6lx ", (unsigned long) segment->p_filesz);
5398 else
5399 {
5400 print_vma (segment->p_filesz, FULL_HEX);
5401 putchar (' ');
5402 }
5403
5404 if ((unsigned long) segment->p_memsz == segment->p_memsz)
5405 printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
5406 else
5407 {
5408 print_vma (segment->p_memsz, FULL_HEX);
5409 }
5410
5411 printf (" %c%c%c ",
5412 (segment->p_flags & PF_R ? 'R' : ' '),
5413 (segment->p_flags & PF_W ? 'W' : ' '),
5414 (segment->p_flags & PF_X ? 'E' : ' '));
5415
5416 if ((unsigned long) segment->p_align == segment->p_align)
5417 printf ("%#lx", (unsigned long) segment->p_align);
5418 else
5419 {
5420 print_vma (segment->p_align, PREFIX_HEX);
5421 }
5422 }
5423 else
5424 {
5425 print_vma (segment->p_offset, FULL_HEX);
5426 putchar (' ');
5427 print_vma (segment->p_vaddr, FULL_HEX);
5428 putchar (' ');
5429 print_vma (segment->p_paddr, FULL_HEX);
5430 printf ("\n ");
5431 print_vma (segment->p_filesz, FULL_HEX);
5432 putchar (' ');
5433 print_vma (segment->p_memsz, FULL_HEX);
5434 printf (" %c%c%c ",
5435 (segment->p_flags & PF_R ? 'R' : ' '),
5436 (segment->p_flags & PF_W ? 'W' : ' '),
5437 (segment->p_flags & PF_X ? 'E' : ' '));
5438 print_vma (segment->p_align, PREFIX_HEX);
5439 }
5440
5441 putc ('\n', stdout);
5442 }
5443
5444 switch (segment->p_type)
5445 {
5446 case PT_LOAD:
5447 #if 0 /* Do not warn about out of order PT_LOAD segments. Although officially
5448 required by the ELF standard, several programs, including the Linux
5449 kernel, make use of non-ordered segments. */
5450 if (previous_load
5451 && previous_load->p_vaddr > segment->p_vaddr)
5452 error (_("LOAD segments must be sorted in order of increasing VirtAddr\n"));
5453 #endif
5454 if (segment->p_memsz < segment->p_filesz)
5455 error (_("the segment's file size is larger than its memory size\n"));
5456 previous_load = segment;
5457 break;
5458
5459 case PT_PHDR:
5460 /* PR 20815 - Verify that the program header is loaded into memory. */
5461 if (i > 0 && previous_load != NULL)
5462 error (_("the PHDR segment must occur before any LOAD segment\n"));
5463 if (filedata->file_header.e_machine != EM_PARISC)
5464 {
5465 unsigned int j;
5466
5467 for (j = 1; j < filedata->file_header.e_phnum; j++)
5468 {
5469 Elf_Internal_Phdr *load = filedata->program_headers + j;
5470 if (load->p_type == PT_LOAD
5471 && load->p_offset <= segment->p_offset
5472 && (load->p_offset + load->p_filesz
5473 >= segment->p_offset + segment->p_filesz)
5474 && load->p_vaddr <= segment->p_vaddr
5475 && (load->p_vaddr + load->p_filesz
5476 >= segment->p_vaddr + segment->p_filesz))
5477 break;
5478 }
5479 if (j == filedata->file_header.e_phnum)
5480 error (_("the PHDR segment is not covered by a LOAD segment\n"));
5481 }
5482 break;
5483
5484 case PT_DYNAMIC:
5485 if (filedata->dynamic_addr)
5486 error (_("more than one dynamic segment\n"));
5487
5488 /* By default, assume that the .dynamic section is the first
5489 section in the DYNAMIC segment. */
5490 filedata->dynamic_addr = segment->p_offset;
5491 filedata->dynamic_size = segment->p_filesz;
5492
5493 /* Try to locate the .dynamic section. If there is
5494 a section header table, we can easily locate it. */
5495 if (filedata->section_headers != NULL)
5496 {
5497 Elf_Internal_Shdr * sec;
5498
5499 sec = find_section (filedata, ".dynamic");
5500 if (sec == NULL || sec->sh_size == 0)
5501 {
5502 /* A corresponding .dynamic section is expected, but on
5503 IA-64/OpenVMS it is OK for it to be missing. */
5504 if (!is_ia64_vms (filedata))
5505 error (_("no .dynamic section in the dynamic segment\n"));
5506 break;
5507 }
5508
5509 if (sec->sh_type == SHT_NOBITS)
5510 {
5511 filedata->dynamic_size = 0;
5512 break;
5513 }
5514
5515 filedata->dynamic_addr = sec->sh_offset;
5516 filedata->dynamic_size = sec->sh_size;
5517
5518 /* The PT_DYNAMIC segment, which is used by the run-time
5519 loader, should exactly match the .dynamic section. */
5520 if (do_checks
5521 && (filedata->dynamic_addr != segment->p_offset
5522 || filedata->dynamic_size != segment->p_filesz))
5523 warn (_("\
5524 the .dynamic section is not the same as the dynamic segment\n"));
5525 }
5526
5527 /* PR binutils/17512: Avoid corrupt dynamic section info in the
5528 segment. Check this after matching against the section headers
5529 so we don't warn on debuginfo file (which have NOBITS .dynamic
5530 sections). */
5531 if (filedata->dynamic_addr > filedata->file_size
5532 || (filedata->dynamic_size
5533 > filedata->file_size - filedata->dynamic_addr))
5534 {
5535 error (_("the dynamic segment offset + size exceeds the size of the file\n"));
5536 filedata->dynamic_addr = filedata->dynamic_size = 0;
5537 }
5538 break;
5539
5540 case PT_INTERP:
5541 if (segment->p_offset >= filedata->file_size
5542 || segment->p_filesz > filedata->file_size - segment->p_offset
5543 || segment->p_filesz - 1 >= (size_t) -2
5544 || fseek (filedata->handle,
5545 filedata->archive_file_offset + (long) segment->p_offset,
5546 SEEK_SET))
5547 error (_("Unable to find program interpreter name\n"));
5548 else
5549 {
5550 size_t len = segment->p_filesz;
5551 free (filedata->program_interpreter);
5552 filedata->program_interpreter = xmalloc (len + 1);
5553 len = fread (filedata->program_interpreter, 1, len,
5554 filedata->handle);
5555 filedata->program_interpreter[len] = 0;
5556
5557 if (do_segments)
5558 printf (_(" [Requesting program interpreter: %s]\n"),
5559 filedata->program_interpreter);
5560 }
5561 break;
5562 }
5563 }
5564
5565 if (do_segments
5566 && filedata->section_headers != NULL
5567 && filedata->string_table != NULL)
5568 {
5569 printf (_("\n Section to Segment mapping:\n"));
5570 printf (_(" Segment Sections...\n"));
5571
5572 for (i = 0; i < filedata->file_header.e_phnum; i++)
5573 {
5574 unsigned int j;
5575 Elf_Internal_Shdr * section;
5576
5577 segment = filedata->program_headers + i;
5578 section = filedata->section_headers + 1;
5579
5580 printf (" %2.2d ", i);
5581
5582 for (j = 1; j < filedata->file_header.e_shnum; j++, section++)
5583 {
5584 if (!ELF_TBSS_SPECIAL (section, segment)
5585 && ELF_SECTION_IN_SEGMENT_STRICT (section, segment))
5586 printf ("%s ", printable_section_name (filedata, section));
5587 }
5588
5589 putc ('\n',stdout);
5590 }
5591 }
5592
5593 return true;
5594 }
5595
5596
5597 /* Find the file offset corresponding to VMA by using the program headers. */
5598
5599 static long
5600 offset_from_vma (Filedata * filedata, bfd_vma vma, bfd_size_type size)
5601 {
5602 Elf_Internal_Phdr * seg;
5603
5604 if (! get_program_headers (filedata))
5605 {
5606 warn (_("Cannot interpret virtual addresses without program headers.\n"));
5607 return (long) vma;
5608 }
5609
5610 for (seg = filedata->program_headers;
5611 seg < filedata->program_headers + filedata->file_header.e_phnum;
5612 ++seg)
5613 {
5614 if (seg->p_type != PT_LOAD)
5615 continue;
5616
5617 if (vma >= (seg->p_vaddr & -seg->p_align)
5618 && vma + size <= seg->p_vaddr + seg->p_filesz)
5619 return vma - seg->p_vaddr + seg->p_offset;
5620 }
5621
5622 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
5623 (unsigned long) vma);
5624 return (long) vma;
5625 }
5626
5627
5628 /* Allocate memory and load the sections headers into FILEDATA->filedata->section_headers.
5629 If PROBE is true, this is just a probe and we do not generate any error
5630 messages if the load fails. */
5631
5632 static bool
5633 get_32bit_section_headers (Filedata * filedata, bool probe)
5634 {
5635 Elf32_External_Shdr * shdrs;
5636 Elf_Internal_Shdr * internal;
5637 unsigned int i;
5638 unsigned int size = filedata->file_header.e_shentsize;
5639 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
5640
5641 /* PR binutils/17531: Cope with unexpected section header sizes. */
5642 if (size == 0 || num == 0)
5643 return false;
5644 if (size < sizeof * shdrs)
5645 {
5646 if (! probe)
5647 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
5648 return false;
5649 }
5650 if (!probe && size > sizeof * shdrs)
5651 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
5652
5653 shdrs = (Elf32_External_Shdr *) get_data (NULL, filedata, filedata->file_header.e_shoff,
5654 size, num,
5655 probe ? NULL : _("section headers"));
5656 if (shdrs == NULL)
5657 return false;
5658
5659 free (filedata->section_headers);
5660 filedata->section_headers = (Elf_Internal_Shdr *)
5661 cmalloc (num, sizeof (Elf_Internal_Shdr));
5662 if (filedata->section_headers == NULL)
5663 {
5664 if (!probe)
5665 error (_("Out of memory reading %u section headers\n"), num);
5666 free (shdrs);
5667 return false;
5668 }
5669
5670 for (i = 0, internal = filedata->section_headers;
5671 i < num;
5672 i++, internal++)
5673 {
5674 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
5675 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
5676 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
5677 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
5678 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
5679 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
5680 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
5681 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
5682 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
5683 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
5684 if (!probe && internal->sh_link > num)
5685 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
5686 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
5687 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
5688 }
5689
5690 free (shdrs);
5691 return true;
5692 }
5693
5694 /* Like get_32bit_section_headers, except that it fetches 64-bit headers. */
5695
5696 static bool
5697 get_64bit_section_headers (Filedata * filedata, bool probe)
5698 {
5699 Elf64_External_Shdr * shdrs;
5700 Elf_Internal_Shdr * internal;
5701 unsigned int i;
5702 unsigned int size = filedata->file_header.e_shentsize;
5703 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
5704
5705 /* PR binutils/17531: Cope with unexpected section header sizes. */
5706 if (size == 0 || num == 0)
5707 return false;
5708
5709 if (size < sizeof * shdrs)
5710 {
5711 if (! probe)
5712 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
5713 return false;
5714 }
5715
5716 if (! probe && size > sizeof * shdrs)
5717 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
5718
5719 shdrs = (Elf64_External_Shdr *) get_data (NULL, filedata,
5720 filedata->file_header.e_shoff,
5721 size, num,
5722 probe ? NULL : _("section headers"));
5723 if (shdrs == NULL)
5724 return false;
5725
5726 free (filedata->section_headers);
5727 filedata->section_headers = (Elf_Internal_Shdr *)
5728 cmalloc (num, sizeof (Elf_Internal_Shdr));
5729 if (filedata->section_headers == NULL)
5730 {
5731 if (! probe)
5732 error (_("Out of memory reading %u section headers\n"), num);
5733 free (shdrs);
5734 return false;
5735 }
5736
5737 for (i = 0, internal = filedata->section_headers;
5738 i < num;
5739 i++, internal++)
5740 {
5741 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
5742 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
5743 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
5744 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
5745 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
5746 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
5747 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
5748 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
5749 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
5750 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
5751 if (!probe && internal->sh_link > num)
5752 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
5753 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
5754 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
5755 }
5756
5757 free (shdrs);
5758 return true;
5759 }
5760
5761 static Elf_Internal_Sym *
5762 get_32bit_elf_symbols (Filedata * filedata,
5763 Elf_Internal_Shdr * section,
5764 unsigned long * num_syms_return)
5765 {
5766 unsigned long number = 0;
5767 Elf32_External_Sym * esyms = NULL;
5768 Elf_External_Sym_Shndx * shndx = NULL;
5769 Elf_Internal_Sym * isyms = NULL;
5770 Elf_Internal_Sym * psym;
5771 unsigned int j;
5772 elf_section_list * entry;
5773
5774 if (section->sh_size == 0)
5775 {
5776 if (num_syms_return != NULL)
5777 * num_syms_return = 0;
5778 return NULL;
5779 }
5780
5781 /* Run some sanity checks first. */
5782 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
5783 {
5784 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
5785 printable_section_name (filedata, section),
5786 (unsigned long) section->sh_entsize);
5787 goto exit_point;
5788 }
5789
5790 if (section->sh_size > filedata->file_size)
5791 {
5792 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
5793 printable_section_name (filedata, section),
5794 (unsigned long) section->sh_size);
5795 goto exit_point;
5796 }
5797
5798 number = section->sh_size / section->sh_entsize;
5799
5800 if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1)
5801 {
5802 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5803 (unsigned long) section->sh_size,
5804 printable_section_name (filedata, section),
5805 (unsigned long) section->sh_entsize);
5806 goto exit_point;
5807 }
5808
5809 esyms = (Elf32_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
5810 section->sh_size, _("symbols"));
5811 if (esyms == NULL)
5812 goto exit_point;
5813
5814 shndx = NULL;
5815 for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next)
5816 {
5817 if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers))
5818 continue;
5819
5820 if (shndx != NULL)
5821 {
5822 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5823 free (shndx);
5824 }
5825
5826 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
5827 entry->hdr->sh_offset,
5828 1, entry->hdr->sh_size,
5829 _("symbol table section indices"));
5830 if (shndx == NULL)
5831 goto exit_point;
5832
5833 /* PR17531: file: heap-buffer-overflow */
5834 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5835 {
5836 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5837 printable_section_name (filedata, entry->hdr),
5838 (unsigned long) entry->hdr->sh_size,
5839 (unsigned long) section->sh_size);
5840 goto exit_point;
5841 }
5842 }
5843
5844 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
5845
5846 if (isyms == NULL)
5847 {
5848 error (_("Out of memory reading %lu symbols\n"),
5849 (unsigned long) number);
5850 goto exit_point;
5851 }
5852
5853 for (j = 0, psym = isyms; j < number; j++, psym++)
5854 {
5855 psym->st_name = BYTE_GET (esyms[j].st_name);
5856 psym->st_value = BYTE_GET (esyms[j].st_value);
5857 psym->st_size = BYTE_GET (esyms[j].st_size);
5858 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
5859 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
5860 psym->st_shndx
5861 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
5862 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5863 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
5864 psym->st_info = BYTE_GET (esyms[j].st_info);
5865 psym->st_other = BYTE_GET (esyms[j].st_other);
5866 }
5867
5868 exit_point:
5869 free (shndx);
5870 free (esyms);
5871
5872 if (num_syms_return != NULL)
5873 * num_syms_return = isyms == NULL ? 0 : number;
5874
5875 return isyms;
5876 }
5877
5878 static Elf_Internal_Sym *
5879 get_64bit_elf_symbols (Filedata * filedata,
5880 Elf_Internal_Shdr * section,
5881 unsigned long * num_syms_return)
5882 {
5883 unsigned long number = 0;
5884 Elf64_External_Sym * esyms = NULL;
5885 Elf_External_Sym_Shndx * shndx = NULL;
5886 Elf_Internal_Sym * isyms = NULL;
5887 Elf_Internal_Sym * psym;
5888 unsigned int j;
5889 elf_section_list * entry;
5890
5891 if (section->sh_size == 0)
5892 {
5893 if (num_syms_return != NULL)
5894 * num_syms_return = 0;
5895 return NULL;
5896 }
5897
5898 /* Run some sanity checks first. */
5899 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
5900 {
5901 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
5902 printable_section_name (filedata, section),
5903 (unsigned long) section->sh_entsize);
5904 goto exit_point;
5905 }
5906
5907 if (section->sh_size > filedata->file_size)
5908 {
5909 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
5910 printable_section_name (filedata, section),
5911 (unsigned long) section->sh_size);
5912 goto exit_point;
5913 }
5914
5915 number = section->sh_size / section->sh_entsize;
5916
5917 if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1)
5918 {
5919 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5920 (unsigned long) section->sh_size,
5921 printable_section_name (filedata, section),
5922 (unsigned long) section->sh_entsize);
5923 goto exit_point;
5924 }
5925
5926 esyms = (Elf64_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
5927 section->sh_size, _("symbols"));
5928 if (!esyms)
5929 goto exit_point;
5930
5931 shndx = NULL;
5932 for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next)
5933 {
5934 if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers))
5935 continue;
5936
5937 if (shndx != NULL)
5938 {
5939 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5940 free (shndx);
5941 }
5942
5943 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
5944 entry->hdr->sh_offset,
5945 1, entry->hdr->sh_size,
5946 _("symbol table section indices"));
5947 if (shndx == NULL)
5948 goto exit_point;
5949
5950 /* PR17531: file: heap-buffer-overflow */
5951 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5952 {
5953 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5954 printable_section_name (filedata, entry->hdr),
5955 (unsigned long) entry->hdr->sh_size,
5956 (unsigned long) section->sh_size);
5957 goto exit_point;
5958 }
5959 }
5960
5961 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
5962
5963 if (isyms == NULL)
5964 {
5965 error (_("Out of memory reading %lu symbols\n"),
5966 (unsigned long) number);
5967 goto exit_point;
5968 }
5969
5970 for (j = 0, psym = isyms; j < number; j++, psym++)
5971 {
5972 psym->st_name = BYTE_GET (esyms[j].st_name);
5973 psym->st_info = BYTE_GET (esyms[j].st_info);
5974 psym->st_other = BYTE_GET (esyms[j].st_other);
5975 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
5976
5977 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
5978 psym->st_shndx
5979 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
5980 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5981 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
5982
5983 psym->st_value = BYTE_GET (esyms[j].st_value);
5984 psym->st_size = BYTE_GET (esyms[j].st_size);
5985 }
5986
5987 exit_point:
5988 free (shndx);
5989 free (esyms);
5990
5991 if (num_syms_return != NULL)
5992 * num_syms_return = isyms == NULL ? 0 : number;
5993
5994 return isyms;
5995 }
5996
5997 static const char *
5998 get_elf_section_flags (Filedata * filedata, bfd_vma sh_flags)
5999 {
6000 static char buff[1024];
6001 char * p = buff;
6002 unsigned int field_size = is_32bit_elf ? 8 : 16;
6003 signed int sindex;
6004 unsigned int size = sizeof (buff) - (field_size + 4 + 1);
6005 bfd_vma os_flags = 0;
6006 bfd_vma proc_flags = 0;
6007 bfd_vma unknown_flags = 0;
6008 static const struct
6009 {
6010 const char * str;
6011 unsigned int len;
6012 }
6013 flags [] =
6014 {
6015 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
6016 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
6017 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
6018 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
6019 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
6020 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
6021 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
6022 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
6023 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
6024 /* 9 */ { STRING_COMMA_LEN ("TLS") },
6025 /* IA-64 specific. */
6026 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
6027 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
6028 /* IA-64 OpenVMS specific. */
6029 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
6030 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
6031 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
6032 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
6033 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
6034 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
6035 /* Generic. */
6036 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
6037 /* SPARC specific. */
6038 /* 19 */ { STRING_COMMA_LEN ("ORDERED") },
6039 /* 20 */ { STRING_COMMA_LEN ("COMPRESSED") },
6040 /* ARM specific. */
6041 /* 21 */ { STRING_COMMA_LEN ("ENTRYSECT") },
6042 /* 22 */ { STRING_COMMA_LEN ("ARM_PURECODE") },
6043 /* 23 */ { STRING_COMMA_LEN ("COMDEF") },
6044 /* GNU specific. */
6045 /* 24 */ { STRING_COMMA_LEN ("GNU_MBIND") },
6046 /* VLE specific. */
6047 /* 25 */ { STRING_COMMA_LEN ("VLE") },
6048 /* GNU specific. */
6049 /* 26 */ { STRING_COMMA_LEN ("GNU_RETAIN") },
6050 };
6051
6052 if (do_section_details)
6053 {
6054 sprintf (buff, "[%*.*lx]: ",
6055 field_size, field_size, (unsigned long) sh_flags);
6056 p += field_size + 4;
6057 }
6058
6059 while (sh_flags)
6060 {
6061 bfd_vma flag;
6062
6063 flag = sh_flags & - sh_flags;
6064 sh_flags &= ~ flag;
6065
6066 if (do_section_details)
6067 {
6068 switch (flag)
6069 {
6070 case SHF_WRITE: sindex = 0; break;
6071 case SHF_ALLOC: sindex = 1; break;
6072 case SHF_EXECINSTR: sindex = 2; break;
6073 case SHF_MERGE: sindex = 3; break;
6074 case SHF_STRINGS: sindex = 4; break;
6075 case SHF_INFO_LINK: sindex = 5; break;
6076 case SHF_LINK_ORDER: sindex = 6; break;
6077 case SHF_OS_NONCONFORMING: sindex = 7; break;
6078 case SHF_GROUP: sindex = 8; break;
6079 case SHF_TLS: sindex = 9; break;
6080 case SHF_EXCLUDE: sindex = 18; break;
6081 case SHF_COMPRESSED: sindex = 20; break;
6082
6083 default:
6084 sindex = -1;
6085 switch (filedata->file_header.e_machine)
6086 {
6087 case EM_IA_64:
6088 if (flag == SHF_IA_64_SHORT)
6089 sindex = 10;
6090 else if (flag == SHF_IA_64_NORECOV)
6091 sindex = 11;
6092 #ifdef BFD64
6093 else if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
6094 switch (flag)
6095 {
6096 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
6097 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
6098 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
6099 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
6100 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
6101 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
6102 default: break;
6103 }
6104 #endif
6105 break;
6106
6107 case EM_386:
6108 case EM_IAMCU:
6109 case EM_X86_64:
6110 case EM_L1OM:
6111 case EM_K1OM:
6112 case EM_OLD_SPARCV9:
6113 case EM_SPARC32PLUS:
6114 case EM_SPARCV9:
6115 case EM_SPARC:
6116 if (flag == SHF_ORDERED)
6117 sindex = 19;
6118 break;
6119
6120 case EM_ARM:
6121 switch (flag)
6122 {
6123 case SHF_ENTRYSECT: sindex = 21; break;
6124 case SHF_ARM_PURECODE: sindex = 22; break;
6125 case SHF_COMDEF: sindex = 23; break;
6126 default: break;
6127 }
6128 break;
6129 case EM_PPC:
6130 if (flag == SHF_PPC_VLE)
6131 sindex = 25;
6132 break;
6133 default:
6134 break;
6135 }
6136
6137 switch (filedata->file_header.e_ident[EI_OSABI])
6138 {
6139 case ELFOSABI_GNU:
6140 case ELFOSABI_FREEBSD:
6141 if (flag == SHF_GNU_RETAIN)
6142 sindex = 26;
6143 /* Fall through */
6144 case ELFOSABI_NONE:
6145 if (flag == SHF_GNU_MBIND)
6146 /* We should not recognize SHF_GNU_MBIND for
6147 ELFOSABI_NONE, but binutils as of 2019-07-23 did
6148 not set the EI_OSABI header byte. */
6149 sindex = 24;
6150 break;
6151 default:
6152 break;
6153 }
6154 break;
6155 }
6156
6157 if (sindex != -1)
6158 {
6159 if (p != buff + field_size + 4)
6160 {
6161 if (size < (10 + 2))
6162 {
6163 warn (_("Internal error: not enough buffer room for section flag info"));
6164 return _("<unknown>");
6165 }
6166 size -= 2;
6167 *p++ = ',';
6168 *p++ = ' ';
6169 }
6170
6171 size -= flags [sindex].len;
6172 p = stpcpy (p, flags [sindex].str);
6173 }
6174 else if (flag & SHF_MASKOS)
6175 os_flags |= flag;
6176 else if (flag & SHF_MASKPROC)
6177 proc_flags |= flag;
6178 else
6179 unknown_flags |= flag;
6180 }
6181 else
6182 {
6183 switch (flag)
6184 {
6185 case SHF_WRITE: *p = 'W'; break;
6186 case SHF_ALLOC: *p = 'A'; break;
6187 case SHF_EXECINSTR: *p = 'X'; break;
6188 case SHF_MERGE: *p = 'M'; break;
6189 case SHF_STRINGS: *p = 'S'; break;
6190 case SHF_INFO_LINK: *p = 'I'; break;
6191 case SHF_LINK_ORDER: *p = 'L'; break;
6192 case SHF_OS_NONCONFORMING: *p = 'O'; break;
6193 case SHF_GROUP: *p = 'G'; break;
6194 case SHF_TLS: *p = 'T'; break;
6195 case SHF_EXCLUDE: *p = 'E'; break;
6196 case SHF_COMPRESSED: *p = 'C'; break;
6197
6198 default:
6199 if ((filedata->file_header.e_machine == EM_X86_64
6200 || filedata->file_header.e_machine == EM_L1OM
6201 || filedata->file_header.e_machine == EM_K1OM)
6202 && flag == SHF_X86_64_LARGE)
6203 *p = 'l';
6204 else if (filedata->file_header.e_machine == EM_ARM
6205 && flag == SHF_ARM_PURECODE)
6206 *p = 'y';
6207 else if (filedata->file_header.e_machine == EM_PPC
6208 && flag == SHF_PPC_VLE)
6209 *p = 'v';
6210 else if (flag & SHF_MASKOS)
6211 {
6212 switch (filedata->file_header.e_ident[EI_OSABI])
6213 {
6214 case ELFOSABI_GNU:
6215 case ELFOSABI_FREEBSD:
6216 if (flag == SHF_GNU_RETAIN)
6217 {
6218 *p = 'R';
6219 break;
6220 }
6221 /* Fall through */
6222 case ELFOSABI_NONE:
6223 if (flag == SHF_GNU_MBIND)
6224 {
6225 /* We should not recognize SHF_GNU_MBIND for
6226 ELFOSABI_NONE, but binutils as of 2019-07-23 did
6227 not set the EI_OSABI header byte. */
6228 *p = 'D';
6229 break;
6230 }
6231 /* Fall through */
6232 default:
6233 *p = 'o';
6234 sh_flags &= ~SHF_MASKOS;
6235 break;
6236 }
6237 }
6238 else if (flag & SHF_MASKPROC)
6239 {
6240 *p = 'p';
6241 sh_flags &= ~ SHF_MASKPROC;
6242 }
6243 else
6244 *p = 'x';
6245 break;
6246 }
6247 p++;
6248 }
6249 }
6250
6251 if (do_section_details)
6252 {
6253 if (os_flags)
6254 {
6255 size -= 5 + field_size;
6256 if (p != buff + field_size + 4)
6257 {
6258 if (size < (2 + 1))
6259 {
6260 warn (_("Internal error: not enough buffer room for section flag info"));
6261 return _("<unknown>");
6262 }
6263 size -= 2;
6264 *p++ = ',';
6265 *p++ = ' ';
6266 }
6267 sprintf (p, "OS (%*.*lx)", field_size, field_size,
6268 (unsigned long) os_flags);
6269 p += 5 + field_size;
6270 }
6271 if (proc_flags)
6272 {
6273 size -= 7 + field_size;
6274 if (p != buff + field_size + 4)
6275 {
6276 if (size < (2 + 1))
6277 {
6278 warn (_("Internal error: not enough buffer room for section flag info"));
6279 return _("<unknown>");
6280 }
6281 size -= 2;
6282 *p++ = ',';
6283 *p++ = ' ';
6284 }
6285 sprintf (p, "PROC (%*.*lx)", field_size, field_size,
6286 (unsigned long) proc_flags);
6287 p += 7 + field_size;
6288 }
6289 if (unknown_flags)
6290 {
6291 size -= 10 + field_size;
6292 if (p != buff + field_size + 4)
6293 {
6294 if (size < (2 + 1))
6295 {
6296 warn (_("Internal error: not enough buffer room for section flag info"));
6297 return _("<unknown>");
6298 }
6299 size -= 2;
6300 *p++ = ',';
6301 *p++ = ' ';
6302 }
6303 sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
6304 (unsigned long) unknown_flags);
6305 p += 10 + field_size;
6306 }
6307 }
6308
6309 *p = '\0';
6310 return buff;
6311 }
6312
6313 static unsigned int ATTRIBUTE_WARN_UNUSED_RESULT
6314 get_compression_header (Elf_Internal_Chdr *chdr, unsigned char *buf, bfd_size_type size)
6315 {
6316 if (is_32bit_elf)
6317 {
6318 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) buf;
6319
6320 if (size < sizeof (* echdr))
6321 {
6322 error (_("Compressed section is too small even for a compression header\n"));
6323 return 0;
6324 }
6325
6326 chdr->ch_type = BYTE_GET (echdr->ch_type);
6327 chdr->ch_size = BYTE_GET (echdr->ch_size);
6328 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
6329 return sizeof (*echdr);
6330 }
6331 else
6332 {
6333 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) buf;
6334
6335 if (size < sizeof (* echdr))
6336 {
6337 error (_("Compressed section is too small even for a compression header\n"));
6338 return 0;
6339 }
6340
6341 chdr->ch_type = BYTE_GET (echdr->ch_type);
6342 chdr->ch_size = BYTE_GET (echdr->ch_size);
6343 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
6344 return sizeof (*echdr);
6345 }
6346 }
6347
6348 static bool
6349 process_section_headers (Filedata * filedata)
6350 {
6351 Elf_Internal_Shdr * section;
6352 unsigned int i;
6353
6354 free (filedata->section_headers);
6355 filedata->section_headers = NULL;
6356 free (filedata->dynamic_symbols);
6357 filedata->dynamic_symbols = NULL;
6358 filedata->num_dynamic_syms = 0;
6359 free (filedata->dynamic_strings);
6360 filedata->dynamic_strings = NULL;
6361 filedata->dynamic_strings_length = 0;
6362 free (filedata->dynamic_syminfo);
6363 filedata->dynamic_syminfo = NULL;
6364 while (filedata->symtab_shndx_list != NULL)
6365 {
6366 elf_section_list *next = filedata->symtab_shndx_list->next;
6367 free (filedata->symtab_shndx_list);
6368 filedata->symtab_shndx_list = next;
6369 }
6370
6371 if (filedata->file_header.e_shnum == 0)
6372 {
6373 /* PR binutils/12467. */
6374 if (filedata->file_header.e_shoff != 0)
6375 {
6376 warn (_("possibly corrupt ELF file header - it has a non-zero"
6377 " section header offset, but no section headers\n"));
6378 return false;
6379 }
6380 else if (do_sections)
6381 printf (_("\nThere are no sections in this file.\n"));
6382
6383 return true;
6384 }
6385
6386 if (do_sections && !do_header)
6387 {
6388 if (filedata->is_separate && process_links)
6389 printf (_("In linked file '%s': "), filedata->file_name);
6390 if (! filedata->is_separate || process_links)
6391 printf (ngettext ("There is %d section header, "
6392 "starting at offset 0x%lx:\n",
6393 "There are %d section headers, "
6394 "starting at offset 0x%lx:\n",
6395 filedata->file_header.e_shnum),
6396 filedata->file_header.e_shnum,
6397 (unsigned long) filedata->file_header.e_shoff);
6398 }
6399
6400 if (is_32bit_elf)
6401 {
6402 if (! get_32bit_section_headers (filedata, false))
6403 return false;
6404 }
6405 else
6406 {
6407 if (! get_64bit_section_headers (filedata, false))
6408 return false;
6409 }
6410
6411 /* Read in the string table, so that we have names to display. */
6412 if (filedata->file_header.e_shstrndx != SHN_UNDEF
6413 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
6414 {
6415 section = filedata->section_headers + filedata->file_header.e_shstrndx;
6416
6417 if (section->sh_size != 0)
6418 {
6419 filedata->string_table = (char *) get_data (NULL, filedata, section->sh_offset,
6420 1, section->sh_size,
6421 _("string table"));
6422
6423 filedata->string_table_length = filedata->string_table != NULL ? section->sh_size : 0;
6424 }
6425 }
6426
6427 /* Scan the sections for the dynamic symbol table
6428 and dynamic string table and debug sections. */
6429 eh_addr_size = is_32bit_elf ? 4 : 8;
6430 switch (filedata->file_header.e_machine)
6431 {
6432 case EM_MIPS:
6433 case EM_MIPS_RS3_LE:
6434 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
6435 FDE addresses. However, the ABI also has a semi-official ILP32
6436 variant for which the normal FDE address size rules apply.
6437
6438 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
6439 section, where XX is the size of longs in bits. Unfortunately,
6440 earlier compilers provided no way of distinguishing ILP32 objects
6441 from LP64 objects, so if there's any doubt, we should assume that
6442 the official LP64 form is being used. */
6443 if ((filedata->file_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
6444 && find_section (filedata, ".gcc_compiled_long32") == NULL)
6445 eh_addr_size = 8;
6446 break;
6447
6448 case EM_H8_300:
6449 case EM_H8_300H:
6450 switch (filedata->file_header.e_flags & EF_H8_MACH)
6451 {
6452 case E_H8_MACH_H8300:
6453 case E_H8_MACH_H8300HN:
6454 case E_H8_MACH_H8300SN:
6455 case E_H8_MACH_H8300SXN:
6456 eh_addr_size = 2;
6457 break;
6458 case E_H8_MACH_H8300H:
6459 case E_H8_MACH_H8300S:
6460 case E_H8_MACH_H8300SX:
6461 eh_addr_size = 4;
6462 break;
6463 }
6464 break;
6465
6466 case EM_M32C_OLD:
6467 case EM_M32C:
6468 switch (filedata->file_header.e_flags & EF_M32C_CPU_MASK)
6469 {
6470 case EF_M32C_CPU_M16C:
6471 eh_addr_size = 2;
6472 break;
6473 }
6474 break;
6475 }
6476
6477 #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
6478 do \
6479 { \
6480 bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \
6481 if (section->sh_entsize != expected_entsize) \
6482 { \
6483 char buf[40]; \
6484 sprintf_vma (buf, section->sh_entsize); \
6485 /* Note: coded this way so that there is a single string for \
6486 translation. */ \
6487 error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \
6488 error (_("(Using the expected size of %u for the rest of this dump)\n"), \
6489 (unsigned) expected_entsize); \
6490 section->sh_entsize = expected_entsize; \
6491 } \
6492 } \
6493 while (0)
6494
6495 #define CHECK_ENTSIZE(section, i, type) \
6496 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
6497 sizeof (Elf64_External_##type))
6498
6499 for (i = 0, section = filedata->section_headers;
6500 i < filedata->file_header.e_shnum;
6501 i++, section++)
6502 {
6503 char * name = SECTION_NAME_PRINT (section);
6504
6505 /* Run some sanity checks on the headers and
6506 possibly fill in some file data as well. */
6507 switch (section->sh_type)
6508 {
6509 case SHT_DYNSYM:
6510 if (filedata->dynamic_symbols != NULL)
6511 {
6512 error (_("File contains multiple dynamic symbol tables\n"));
6513 continue;
6514 }
6515
6516 CHECK_ENTSIZE (section, i, Sym);
6517 filedata->dynamic_symbols
6518 = GET_ELF_SYMBOLS (filedata, section, &filedata->num_dynamic_syms);
6519 filedata->dynamic_symtab_section = section;
6520 break;
6521
6522 case SHT_STRTAB:
6523 if (streq (name, ".dynstr"))
6524 {
6525 if (filedata->dynamic_strings != NULL)
6526 {
6527 error (_("File contains multiple dynamic string tables\n"));
6528 continue;
6529 }
6530
6531 filedata->dynamic_strings
6532 = (char *) get_data (NULL, filedata, section->sh_offset,
6533 1, section->sh_size, _("dynamic strings"));
6534 filedata->dynamic_strings_length
6535 = filedata->dynamic_strings == NULL ? 0 : section->sh_size;
6536 filedata->dynamic_strtab_section = section;
6537 }
6538 break;
6539
6540 case SHT_SYMTAB_SHNDX:
6541 {
6542 elf_section_list * entry = xmalloc (sizeof * entry);
6543
6544 entry->hdr = section;
6545 entry->next = filedata->symtab_shndx_list;
6546 filedata->symtab_shndx_list = entry;
6547 }
6548 break;
6549
6550 case SHT_SYMTAB:
6551 CHECK_ENTSIZE (section, i, Sym);
6552 break;
6553
6554 case SHT_GROUP:
6555 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
6556 break;
6557
6558 case SHT_REL:
6559 CHECK_ENTSIZE (section, i, Rel);
6560 if (do_checks && section->sh_size == 0)
6561 warn (_("Section '%s': zero-sized relocation section\n"), name);
6562 break;
6563
6564 case SHT_RELA:
6565 CHECK_ENTSIZE (section, i, Rela);
6566 if (do_checks && section->sh_size == 0)
6567 warn (_("Section '%s': zero-sized relocation section\n"), name);
6568 break;
6569
6570 case SHT_NOTE:
6571 case SHT_PROGBITS:
6572 /* Having a zero sized section is not illegal according to the
6573 ELF standard, but it might be an indication that something
6574 is wrong. So issue a warning if we are running in lint mode. */
6575 if (do_checks && section->sh_size == 0)
6576 warn (_("Section '%s': has a size of zero - is this intended ?\n"), name);
6577 break;
6578
6579 default:
6580 break;
6581 }
6582
6583 if ((do_debugging || do_debug_info || do_debug_abbrevs
6584 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
6585 || do_debug_aranges || do_debug_frames || do_debug_macinfo
6586 || do_debug_str || do_debug_str_offsets || do_debug_loc
6587 || do_debug_ranges
6588 || do_debug_addr || do_debug_cu_index || do_debug_links)
6589 && (startswith (name, ".debug_")
6590 || startswith (name, ".zdebug_")))
6591 {
6592 if (name[1] == 'z')
6593 name += sizeof (".zdebug_") - 1;
6594 else
6595 name += sizeof (".debug_") - 1;
6596
6597 if (do_debugging
6598 || (do_debug_info && startswith (name, "info"))
6599 || (do_debug_info && startswith (name, "types"))
6600 || (do_debug_abbrevs && startswith (name, "abbrev"))
6601 || (do_debug_lines && strcmp (name, "line") == 0)
6602 || (do_debug_lines && startswith (name, "line."))
6603 || (do_debug_pubnames && startswith (name, "pubnames"))
6604 || (do_debug_pubtypes && startswith (name, "pubtypes"))
6605 || (do_debug_pubnames && startswith (name, "gnu_pubnames"))
6606 || (do_debug_pubtypes && startswith (name, "gnu_pubtypes"))
6607 || (do_debug_aranges && startswith (name, "aranges"))
6608 || (do_debug_ranges && startswith (name, "ranges"))
6609 || (do_debug_ranges && startswith (name, "rnglists"))
6610 || (do_debug_frames && startswith (name, "frame"))
6611 || (do_debug_macinfo && startswith (name, "macinfo"))
6612 || (do_debug_macinfo && startswith (name, "macro"))
6613 || (do_debug_str && startswith (name, "str"))
6614 || (do_debug_links && startswith (name, "sup"))
6615 || (do_debug_str_offsets && startswith (name, "str_offsets"))
6616 || (do_debug_loc && startswith (name, "loc"))
6617 || (do_debug_loc && startswith (name, "loclists"))
6618 || (do_debug_addr && startswith (name, "addr"))
6619 || (do_debug_cu_index && startswith (name, "cu_index"))
6620 || (do_debug_cu_index && startswith (name, "tu_index"))
6621 )
6622 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6623 }
6624 /* Linkonce section to be combined with .debug_info at link time. */
6625 else if ((do_debugging || do_debug_info)
6626 && startswith (name, ".gnu.linkonce.wi."))
6627 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6628 else if (do_debug_frames && streq (name, ".eh_frame"))
6629 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6630 else if (do_gdb_index && (streq (name, ".gdb_index")
6631 || streq (name, ".debug_names")))
6632 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6633 /* Trace sections for Itanium VMS. */
6634 else if ((do_debugging || do_trace_info || do_trace_abbrevs
6635 || do_trace_aranges)
6636 && startswith (name, ".trace_"))
6637 {
6638 name += sizeof (".trace_") - 1;
6639
6640 if (do_debugging
6641 || (do_trace_info && streq (name, "info"))
6642 || (do_trace_abbrevs && streq (name, "abbrev"))
6643 || (do_trace_aranges && streq (name, "aranges"))
6644 )
6645 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6646 }
6647 else if ((do_debugging || do_debug_links)
6648 && (startswith (name, ".gnu_debuglink")
6649 || startswith (name, ".gnu_debugaltlink")))
6650 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6651 }
6652
6653 if (! do_sections)
6654 return true;
6655
6656 if (filedata->is_separate && ! process_links)
6657 return true;
6658
6659 if (filedata->is_separate)
6660 printf (_("\nSection Headers in linked file '%s':\n"), filedata->file_name);
6661 else if (filedata->file_header.e_shnum > 1)
6662 printf (_("\nSection Headers:\n"));
6663 else
6664 printf (_("\nSection Header:\n"));
6665
6666 if (is_32bit_elf)
6667 {
6668 if (do_section_details)
6669 {
6670 printf (_(" [Nr] Name\n"));
6671 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
6672 }
6673 else
6674 printf
6675 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
6676 }
6677 else if (do_wide)
6678 {
6679 if (do_section_details)
6680 {
6681 printf (_(" [Nr] Name\n"));
6682 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
6683 }
6684 else
6685 printf
6686 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
6687 }
6688 else
6689 {
6690 if (do_section_details)
6691 {
6692 printf (_(" [Nr] Name\n"));
6693 printf (_(" Type Address Offset Link\n"));
6694 printf (_(" Size EntSize Info Align\n"));
6695 }
6696 else
6697 {
6698 printf (_(" [Nr] Name Type Address Offset\n"));
6699 printf (_(" Size EntSize Flags Link Info Align\n"));
6700 }
6701 }
6702
6703 if (do_section_details)
6704 printf (_(" Flags\n"));
6705
6706 for (i = 0, section = filedata->section_headers;
6707 i < filedata->file_header.e_shnum;
6708 i++, section++)
6709 {
6710 /* Run some sanity checks on the section header. */
6711
6712 /* Check the sh_link field. */
6713 switch (section->sh_type)
6714 {
6715 case SHT_REL:
6716 case SHT_RELA:
6717 if (section->sh_link == 0
6718 && (filedata->file_header.e_type == ET_EXEC
6719 || filedata->file_header.e_type == ET_DYN))
6720 /* A dynamic relocation section where all entries use a
6721 zero symbol index need not specify a symtab section. */
6722 break;
6723 /* Fall through. */
6724 case SHT_SYMTAB_SHNDX:
6725 case SHT_GROUP:
6726 case SHT_HASH:
6727 case SHT_GNU_HASH:
6728 case SHT_GNU_versym:
6729 if (section->sh_link == 0
6730 || section->sh_link >= filedata->file_header.e_shnum
6731 || (filedata->section_headers[section->sh_link].sh_type != SHT_SYMTAB
6732 && filedata->section_headers[section->sh_link].sh_type != SHT_DYNSYM))
6733 warn (_("[%2u]: Link field (%u) should index a symtab section.\n"),
6734 i, section->sh_link);
6735 break;
6736
6737 case SHT_DYNAMIC:
6738 case SHT_SYMTAB:
6739 case SHT_DYNSYM:
6740 case SHT_GNU_verneed:
6741 case SHT_GNU_verdef:
6742 case SHT_GNU_LIBLIST:
6743 if (section->sh_link == 0
6744 || section->sh_link >= filedata->file_header.e_shnum
6745 || filedata->section_headers[section->sh_link].sh_type != SHT_STRTAB)
6746 warn (_("[%2u]: Link field (%u) should index a string section.\n"),
6747 i, section->sh_link);
6748 break;
6749
6750 case SHT_INIT_ARRAY:
6751 case SHT_FINI_ARRAY:
6752 case SHT_PREINIT_ARRAY:
6753 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
6754 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6755 i, section->sh_link);
6756 break;
6757
6758 default:
6759 /* FIXME: Add support for target specific section types. */
6760 #if 0 /* Currently we do not check other section types as there are too
6761 many special cases. Stab sections for example have a type
6762 of SHT_PROGBITS but an sh_link field that links to the .stabstr
6763 section. */
6764 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
6765 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6766 i, section->sh_link);
6767 #endif
6768 break;
6769 }
6770
6771 /* Check the sh_info field. */
6772 switch (section->sh_type)
6773 {
6774 case SHT_REL:
6775 case SHT_RELA:
6776 if (section->sh_info == 0
6777 && (filedata->file_header.e_type == ET_EXEC
6778 || filedata->file_header.e_type == ET_DYN))
6779 /* Dynamic relocations apply to segments, so they do not
6780 need to specify the section they relocate. */
6781 break;
6782 if (section->sh_info == 0
6783 || section->sh_info >= filedata->file_header.e_shnum
6784 || (filedata->section_headers[section->sh_info].sh_type != SHT_PROGBITS
6785 && filedata->section_headers[section->sh_info].sh_type != SHT_NOBITS
6786 && filedata->section_headers[section->sh_info].sh_type != SHT_NOTE
6787 && filedata->section_headers[section->sh_info].sh_type != SHT_INIT_ARRAY
6788 && filedata->section_headers[section->sh_info].sh_type != SHT_FINI_ARRAY
6789 && filedata->section_headers[section->sh_info].sh_type != SHT_PREINIT_ARRAY
6790 /* FIXME: Are other section types valid ? */
6791 && filedata->section_headers[section->sh_info].sh_type < SHT_LOOS))
6792 warn (_("[%2u]: Info field (%u) should index a relocatable section.\n"),
6793 i, section->sh_info);
6794 break;
6795
6796 case SHT_DYNAMIC:
6797 case SHT_HASH:
6798 case SHT_SYMTAB_SHNDX:
6799 case SHT_INIT_ARRAY:
6800 case SHT_FINI_ARRAY:
6801 case SHT_PREINIT_ARRAY:
6802 if (section->sh_info != 0)
6803 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6804 i, section->sh_info);
6805 break;
6806
6807 case SHT_GROUP:
6808 case SHT_SYMTAB:
6809 case SHT_DYNSYM:
6810 /* A symbol index - we assume that it is valid. */
6811 break;
6812
6813 default:
6814 /* FIXME: Add support for target specific section types. */
6815 if (section->sh_type == SHT_NOBITS)
6816 /* NOBITS section headers with non-zero sh_info fields can be
6817 created when a binary is stripped of everything but its debug
6818 information. The stripped sections have their headers
6819 preserved but their types set to SHT_NOBITS. So do not check
6820 this type of section. */
6821 ;
6822 else if (section->sh_flags & SHF_INFO_LINK)
6823 {
6824 if (section->sh_info < 1 || section->sh_info >= filedata->file_header.e_shnum)
6825 warn (_("[%2u]: Expected link to another section in info field"), i);
6826 }
6827 else if (section->sh_type < SHT_LOOS
6828 && (section->sh_flags & SHF_GNU_MBIND) == 0
6829 && section->sh_info != 0)
6830 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6831 i, section->sh_info);
6832 break;
6833 }
6834
6835 /* Check the sh_size field. */
6836 if (section->sh_size > filedata->file_size
6837 && section->sh_type != SHT_NOBITS
6838 && section->sh_type != SHT_NULL
6839 && section->sh_type < SHT_LOOS)
6840 warn (_("Size of section %u is larger than the entire file!\n"), i);
6841
6842 printf (" [%2u] ", i);
6843 if (do_section_details)
6844 printf ("%s\n ", printable_section_name (filedata, section));
6845 else
6846 print_symbol (-17, SECTION_NAME_PRINT (section));
6847
6848 printf (do_wide ? " %-15s " : " %-15.15s ",
6849 get_section_type_name (filedata, section->sh_type));
6850
6851 if (is_32bit_elf)
6852 {
6853 const char * link_too_big = NULL;
6854
6855 print_vma (section->sh_addr, LONG_HEX);
6856
6857 printf ( " %6.6lx %6.6lx %2.2lx",
6858 (unsigned long) section->sh_offset,
6859 (unsigned long) section->sh_size,
6860 (unsigned long) section->sh_entsize);
6861
6862 if (do_section_details)
6863 fputs (" ", stdout);
6864 else
6865 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
6866
6867 if (section->sh_link >= filedata->file_header.e_shnum)
6868 {
6869 link_too_big = "";
6870 /* The sh_link value is out of range. Normally this indicates
6871 an error but it can have special values in Solaris binaries. */
6872 switch (filedata->file_header.e_machine)
6873 {
6874 case EM_386:
6875 case EM_IAMCU:
6876 case EM_X86_64:
6877 case EM_L1OM:
6878 case EM_K1OM:
6879 case EM_OLD_SPARCV9:
6880 case EM_SPARC32PLUS:
6881 case EM_SPARCV9:
6882 case EM_SPARC:
6883 if (section->sh_link == (SHN_BEFORE & 0xffff))
6884 link_too_big = "BEFORE";
6885 else if (section->sh_link == (SHN_AFTER & 0xffff))
6886 link_too_big = "AFTER";
6887 break;
6888 default:
6889 break;
6890 }
6891 }
6892
6893 if (do_section_details)
6894 {
6895 if (link_too_big != NULL && * link_too_big)
6896 printf ("<%s> ", link_too_big);
6897 else
6898 printf ("%2u ", section->sh_link);
6899 printf ("%3u %2lu\n", section->sh_info,
6900 (unsigned long) section->sh_addralign);
6901 }
6902 else
6903 printf ("%2u %3u %2lu\n",
6904 section->sh_link,
6905 section->sh_info,
6906 (unsigned long) section->sh_addralign);
6907
6908 if (link_too_big && ! * link_too_big)
6909 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
6910 i, section->sh_link);
6911 }
6912 else if (do_wide)
6913 {
6914 print_vma (section->sh_addr, LONG_HEX);
6915
6916 if ((long) section->sh_offset == section->sh_offset)
6917 printf (" %6.6lx", (unsigned long) section->sh_offset);
6918 else
6919 {
6920 putchar (' ');
6921 print_vma (section->sh_offset, LONG_HEX);
6922 }
6923
6924 if ((unsigned long) section->sh_size == section->sh_size)
6925 printf (" %6.6lx", (unsigned long) section->sh_size);
6926 else
6927 {
6928 putchar (' ');
6929 print_vma (section->sh_size, LONG_HEX);
6930 }
6931
6932 if ((unsigned long) section->sh_entsize == section->sh_entsize)
6933 printf (" %2.2lx", (unsigned long) section->sh_entsize);
6934 else
6935 {
6936 putchar (' ');
6937 print_vma (section->sh_entsize, LONG_HEX);
6938 }
6939
6940 if (do_section_details)
6941 fputs (" ", stdout);
6942 else
6943 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
6944
6945 printf ("%2u %3u ", section->sh_link, section->sh_info);
6946
6947 if ((unsigned long) section->sh_addralign == section->sh_addralign)
6948 printf ("%2lu\n", (unsigned long) section->sh_addralign);
6949 else
6950 {
6951 print_vma (section->sh_addralign, DEC);
6952 putchar ('\n');
6953 }
6954 }
6955 else if (do_section_details)
6956 {
6957 putchar (' ');
6958 print_vma (section->sh_addr, LONG_HEX);
6959 if ((long) section->sh_offset == section->sh_offset)
6960 printf (" %16.16lx", (unsigned long) section->sh_offset);
6961 else
6962 {
6963 printf (" ");
6964 print_vma (section->sh_offset, LONG_HEX);
6965 }
6966 printf (" %u\n ", section->sh_link);
6967 print_vma (section->sh_size, LONG_HEX);
6968 putchar (' ');
6969 print_vma (section->sh_entsize, LONG_HEX);
6970
6971 printf (" %-16u %lu\n",
6972 section->sh_info,
6973 (unsigned long) section->sh_addralign);
6974 }
6975 else
6976 {
6977 putchar (' ');
6978 print_vma (section->sh_addr, LONG_HEX);
6979 if ((long) section->sh_offset == section->sh_offset)
6980 printf (" %8.8lx", (unsigned long) section->sh_offset);
6981 else
6982 {
6983 printf (" ");
6984 print_vma (section->sh_offset, LONG_HEX);
6985 }
6986 printf ("\n ");
6987 print_vma (section->sh_size, LONG_HEX);
6988 printf (" ");
6989 print_vma (section->sh_entsize, LONG_HEX);
6990
6991 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
6992
6993 printf (" %2u %3u %lu\n",
6994 section->sh_link,
6995 section->sh_info,
6996 (unsigned long) section->sh_addralign);
6997 }
6998
6999 if (do_section_details)
7000 {
7001 printf (" %s\n", get_elf_section_flags (filedata, section->sh_flags));
7002 if ((section->sh_flags & SHF_COMPRESSED) != 0)
7003 {
7004 /* Minimum section size is 12 bytes for 32-bit compression
7005 header + 12 bytes for compressed data header. */
7006 unsigned char buf[24];
7007
7008 assert (sizeof (buf) >= sizeof (Elf64_External_Chdr));
7009 if (get_data (&buf, filedata, section->sh_offset, 1,
7010 sizeof (buf), _("compression header")))
7011 {
7012 Elf_Internal_Chdr chdr;
7013
7014 if (get_compression_header (&chdr, buf, sizeof (buf)) == 0)
7015 printf (_(" [<corrupt>]\n"));
7016 else
7017 {
7018 if (chdr.ch_type == ELFCOMPRESS_ZLIB)
7019 printf (" ZLIB, ");
7020 else
7021 printf (_(" [<unknown>: 0x%x], "),
7022 chdr.ch_type);
7023 print_vma (chdr.ch_size, LONG_HEX);
7024 printf (", %lu\n", (unsigned long) chdr.ch_addralign);
7025 }
7026 }
7027 }
7028 }
7029 }
7030
7031 if (!do_section_details)
7032 {
7033 /* The ordering of the letters shown here matches the ordering of the
7034 corresponding SHF_xxx values, and hence the order in which these
7035 letters will be displayed to the user. */
7036 printf (_("Key to Flags:\n\
7037 W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\n\
7038 L (link order), O (extra OS processing required), G (group), T (TLS),\n\
7039 C (compressed), x (unknown), o (OS specific), E (exclude),\n "));
7040 switch (filedata->file_header.e_ident[EI_OSABI])
7041 {
7042 case ELFOSABI_GNU:
7043 case ELFOSABI_FREEBSD:
7044 printf (_("R (retain), "));
7045 /* Fall through */
7046 case ELFOSABI_NONE:
7047 printf (_("D (mbind), "));
7048 break;
7049 default:
7050 break;
7051 }
7052 if (filedata->file_header.e_machine == EM_X86_64
7053 || filedata->file_header.e_machine == EM_L1OM
7054 || filedata->file_header.e_machine == EM_K1OM)
7055 printf (_("l (large), "));
7056 else if (filedata->file_header.e_machine == EM_ARM)
7057 printf (_("y (purecode), "));
7058 else if (filedata->file_header.e_machine == EM_PPC)
7059 printf (_("v (VLE), "));
7060 printf ("p (processor specific)\n");
7061 }
7062
7063 return true;
7064 }
7065
7066 static bool
7067 get_symtab (Filedata *filedata, Elf_Internal_Shdr *symsec,
7068 Elf_Internal_Sym **symtab, unsigned long *nsyms,
7069 char **strtab, unsigned long *strtablen)
7070 {
7071 *strtab = NULL;
7072 *strtablen = 0;
7073 *symtab = GET_ELF_SYMBOLS (filedata, symsec, nsyms);
7074
7075 if (*symtab == NULL)
7076 return false;
7077
7078 if (symsec->sh_link != 0)
7079 {
7080 Elf_Internal_Shdr *strsec;
7081
7082 if (symsec->sh_link >= filedata->file_header.e_shnum)
7083 {
7084 error (_("Bad sh_link in symbol table section\n"));
7085 free (*symtab);
7086 *symtab = NULL;
7087 *nsyms = 0;
7088 return false;
7089 }
7090
7091 strsec = filedata->section_headers + symsec->sh_link;
7092
7093 *strtab = (char *) get_data (NULL, filedata, strsec->sh_offset,
7094 1, strsec->sh_size, _("string table"));
7095 if (*strtab == NULL)
7096 {
7097 free (*symtab);
7098 *symtab = NULL;
7099 *nsyms = 0;
7100 return false;
7101 }
7102 *strtablen = strsec->sh_size;
7103 }
7104 return true;
7105 }
7106
7107 static const char *
7108 get_group_flags (unsigned int flags)
7109 {
7110 static char buff[128];
7111
7112 if (flags == 0)
7113 return "";
7114 else if (flags == GRP_COMDAT)
7115 return "COMDAT ";
7116
7117 snprintf (buff, sizeof buff, "[0x%x: %s%s%s]",
7118 flags,
7119 flags & GRP_MASKOS ? _("<OS specific>") : "",
7120 flags & GRP_MASKPROC ? _("<PROC specific>") : "",
7121 (flags & ~(GRP_COMDAT | GRP_MASKOS | GRP_MASKPROC)
7122 ? _("<unknown>") : ""));
7123
7124 return buff;
7125 }
7126
7127 static bool
7128 process_section_groups (Filedata * filedata)
7129 {
7130 Elf_Internal_Shdr * section;
7131 unsigned int i;
7132 struct group * group;
7133 Elf_Internal_Shdr * symtab_sec;
7134 Elf_Internal_Shdr * strtab_sec;
7135 Elf_Internal_Sym * symtab;
7136 unsigned long num_syms;
7137 char * strtab;
7138 size_t strtab_size;
7139
7140 /* Don't process section groups unless needed. */
7141 if (!do_unwind && !do_section_groups)
7142 return true;
7143
7144 if (filedata->file_header.e_shnum == 0)
7145 {
7146 if (do_section_groups)
7147 {
7148 if (filedata->is_separate)
7149 printf (_("\nThere are no sections group in linked file '%s'.\n"),
7150 filedata->file_name);
7151 else
7152 printf (_("\nThere are no section groups in this file.\n"));
7153 }
7154 return true;
7155 }
7156
7157 if (filedata->section_headers == NULL)
7158 {
7159 error (_("Section headers are not available!\n"));
7160 /* PR 13622: This can happen with a corrupt ELF header. */
7161 return false;
7162 }
7163
7164 filedata->section_headers_groups
7165 = (struct group **) calloc (filedata->file_header.e_shnum,
7166 sizeof (struct group *));
7167
7168 if (filedata->section_headers_groups == NULL)
7169 {
7170 error (_("Out of memory reading %u section group headers\n"),
7171 filedata->file_header.e_shnum);
7172 return false;
7173 }
7174
7175 /* Scan the sections for the group section. */
7176 filedata->group_count = 0;
7177 for (i = 0, section = filedata->section_headers;
7178 i < filedata->file_header.e_shnum;
7179 i++, section++)
7180 if (section->sh_type == SHT_GROUP)
7181 filedata->group_count++;
7182
7183 if (filedata->group_count == 0)
7184 {
7185 if (do_section_groups)
7186 {
7187 if (filedata->is_separate)
7188 printf (_("\nThere are no section groups in linked file '%s'.\n"),
7189 filedata->file_name);
7190 else
7191 printf (_("\nThere are no section groups in this file.\n"));
7192 }
7193
7194 return true;
7195 }
7196
7197 filedata->section_groups = (struct group *) calloc (filedata->group_count,
7198 sizeof (struct group));
7199
7200 if (filedata->section_groups == NULL)
7201 {
7202 error (_("Out of memory reading %lu groups\n"),
7203 (unsigned long) filedata->group_count);
7204 return false;
7205 }
7206
7207 symtab_sec = NULL;
7208 strtab_sec = NULL;
7209 symtab = NULL;
7210 num_syms = 0;
7211 strtab = NULL;
7212 strtab_size = 0;
7213
7214 if (filedata->is_separate)
7215 printf (_("Section groups in linked file '%s'\n"), filedata->file_name);
7216
7217 for (i = 0, section = filedata->section_headers, group = filedata->section_groups;
7218 i < filedata->file_header.e_shnum;
7219 i++, section++)
7220 {
7221 if (section->sh_type == SHT_GROUP)
7222 {
7223 const char * name = printable_section_name (filedata, section);
7224 const char * group_name;
7225 unsigned char * start;
7226 unsigned char * indices;
7227 unsigned int entry, j, size;
7228 Elf_Internal_Shdr * sec;
7229 Elf_Internal_Sym * sym;
7230
7231 /* Get the symbol table. */
7232 if (section->sh_link >= filedata->file_header.e_shnum
7233 || ((sec = filedata->section_headers + section->sh_link)->sh_type
7234 != SHT_SYMTAB))
7235 {
7236 error (_("Bad sh_link in group section `%s'\n"), name);
7237 continue;
7238 }
7239
7240 if (symtab_sec != sec)
7241 {
7242 symtab_sec = sec;
7243 free (symtab);
7244 symtab = GET_ELF_SYMBOLS (filedata, symtab_sec, & num_syms);
7245 }
7246
7247 if (symtab == NULL)
7248 {
7249 error (_("Corrupt header in group section `%s'\n"), name);
7250 continue;
7251 }
7252
7253 if (section->sh_info >= num_syms)
7254 {
7255 error (_("Bad sh_info in group section `%s'\n"), name);
7256 continue;
7257 }
7258
7259 sym = symtab + section->sh_info;
7260
7261 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
7262 {
7263 if (sym->st_shndx == 0
7264 || sym->st_shndx >= filedata->file_header.e_shnum)
7265 {
7266 error (_("Bad sh_info in group section `%s'\n"), name);
7267 continue;
7268 }
7269
7270 group_name = SECTION_NAME_PRINT (filedata->section_headers
7271 + sym->st_shndx);
7272 strtab_sec = NULL;
7273 free (strtab);
7274 strtab = NULL;
7275 strtab_size = 0;
7276 }
7277 else
7278 {
7279 /* Get the string table. */
7280 if (symtab_sec->sh_link >= filedata->file_header.e_shnum)
7281 {
7282 strtab_sec = NULL;
7283 free (strtab);
7284 strtab = NULL;
7285 strtab_size = 0;
7286 }
7287 else if (strtab_sec
7288 != (sec = filedata->section_headers + symtab_sec->sh_link))
7289 {
7290 strtab_sec = sec;
7291 free (strtab);
7292
7293 strtab = (char *) get_data (NULL, filedata, strtab_sec->sh_offset,
7294 1, strtab_sec->sh_size,
7295 _("string table"));
7296 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
7297 }
7298 group_name = sym->st_name < strtab_size
7299 ? strtab + sym->st_name : _("<corrupt>");
7300 }
7301
7302 /* PR 17531: file: loop. */
7303 if (section->sh_entsize > section->sh_size)
7304 {
7305 error (_("Section %s has sh_entsize (0x%lx) which is larger than its size (0x%lx)\n"),
7306 printable_section_name (filedata, section),
7307 (unsigned long) section->sh_entsize,
7308 (unsigned long) section->sh_size);
7309 continue;
7310 }
7311
7312 start = (unsigned char *) get_data (NULL, filedata, section->sh_offset,
7313 1, section->sh_size,
7314 _("section data"));
7315 if (start == NULL)
7316 continue;
7317
7318 indices = start;
7319 size = (section->sh_size / section->sh_entsize) - 1;
7320 entry = byte_get (indices, 4);
7321 indices += 4;
7322
7323 if (do_section_groups)
7324 {
7325 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
7326 get_group_flags (entry), i, name, group_name, size);
7327
7328 printf (_(" [Index] Name\n"));
7329 }
7330
7331 group->group_index = i;
7332
7333 for (j = 0; j < size; j++)
7334 {
7335 struct group_list * g;
7336
7337 entry = byte_get (indices, 4);
7338 indices += 4;
7339
7340 if (entry >= filedata->file_header.e_shnum)
7341 {
7342 static unsigned num_group_errors = 0;
7343
7344 if (num_group_errors ++ < 10)
7345 {
7346 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
7347 entry, i, filedata->file_header.e_shnum - 1);
7348 if (num_group_errors == 10)
7349 warn (_("Further error messages about overlarge group section indices suppressed\n"));
7350 }
7351 continue;
7352 }
7353
7354 if (filedata->section_headers_groups [entry] != NULL)
7355 {
7356 if (entry)
7357 {
7358 static unsigned num_errs = 0;
7359
7360 if (num_errs ++ < 10)
7361 {
7362 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
7363 entry, i,
7364 filedata->section_headers_groups [entry]->group_index);
7365 if (num_errs == 10)
7366 warn (_("Further error messages about already contained group sections suppressed\n"));
7367 }
7368 continue;
7369 }
7370 else
7371 {
7372 /* Intel C/C++ compiler may put section 0 in a
7373 section group. We just warn it the first time
7374 and ignore it afterwards. */
7375 static bool warned = false;
7376 if (!warned)
7377 {
7378 error (_("section 0 in group section [%5u]\n"),
7379 filedata->section_headers_groups [entry]->group_index);
7380 warned = true;
7381 }
7382 }
7383 }
7384
7385 filedata->section_headers_groups [entry] = group;
7386
7387 if (do_section_groups)
7388 {
7389 sec = filedata->section_headers + entry;
7390 printf (" [%5u] %s\n", entry, printable_section_name (filedata, sec));
7391 }
7392
7393 g = (struct group_list *) xmalloc (sizeof (struct group_list));
7394 g->section_index = entry;
7395 g->next = group->root;
7396 group->root = g;
7397 }
7398
7399 free (start);
7400
7401 group++;
7402 }
7403 }
7404
7405 free (symtab);
7406 free (strtab);
7407 return true;
7408 }
7409
7410 /* Data used to display dynamic fixups. */
7411
7412 struct ia64_vms_dynfixup
7413 {
7414 bfd_vma needed_ident; /* Library ident number. */
7415 bfd_vma needed; /* Index in the dstrtab of the library name. */
7416 bfd_vma fixup_needed; /* Index of the library. */
7417 bfd_vma fixup_rela_cnt; /* Number of fixups. */
7418 bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */
7419 };
7420
7421 /* Data used to display dynamic relocations. */
7422
7423 struct ia64_vms_dynimgrela
7424 {
7425 bfd_vma img_rela_cnt; /* Number of relocations. */
7426 bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */
7427 };
7428
7429 /* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
7430 library). */
7431
7432 static bool
7433 dump_ia64_vms_dynamic_fixups (Filedata * filedata,
7434 struct ia64_vms_dynfixup * fixup,
7435 const char * strtab,
7436 unsigned int strtab_sz)
7437 {
7438 Elf64_External_VMS_IMAGE_FIXUP * imfs;
7439 long i;
7440 const char * lib_name;
7441
7442 imfs = get_data (NULL, filedata,
7443 filedata->dynamic_addr + fixup->fixup_rela_off,
7444 sizeof (*imfs), fixup->fixup_rela_cnt,
7445 _("dynamic section image fixups"));
7446 if (!imfs)
7447 return false;
7448
7449 if (fixup->needed < strtab_sz)
7450 lib_name = strtab + fixup->needed;
7451 else
7452 {
7453 warn (_("corrupt library name index of 0x%lx found in dynamic entry"),
7454 (unsigned long) fixup->needed);
7455 lib_name = "???";
7456 }
7457
7458 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
7459 (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident);
7460 printf
7461 (_("Seg Offset Type SymVec DataType\n"));
7462
7463 for (i = 0; i < (long) fixup->fixup_rela_cnt; i++)
7464 {
7465 unsigned int type;
7466 const char *rtype;
7467
7468 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
7469 printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset));
7470 type = BYTE_GET (imfs [i].type);
7471 rtype = elf_ia64_reloc_type (type);
7472 if (rtype == NULL)
7473 printf (" 0x%08x ", type);
7474 else
7475 printf (" %-32s ", rtype);
7476 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
7477 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
7478 }
7479
7480 free (imfs);
7481 return true;
7482 }
7483
7484 /* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
7485
7486 static bool
7487 dump_ia64_vms_dynamic_relocs (Filedata * filedata, struct ia64_vms_dynimgrela *imgrela)
7488 {
7489 Elf64_External_VMS_IMAGE_RELA *imrs;
7490 long i;
7491
7492 imrs = get_data (NULL, filedata,
7493 filedata->dynamic_addr + imgrela->img_rela_off,
7494 sizeof (*imrs), imgrela->img_rela_cnt,
7495 _("dynamic section image relocations"));
7496 if (!imrs)
7497 return false;
7498
7499 printf (_("\nImage relocs\n"));
7500 printf
7501 (_("Seg Offset Type Addend Seg Sym Off\n"));
7502
7503 for (i = 0; i < (long) imgrela->img_rela_cnt; i++)
7504 {
7505 unsigned int type;
7506 const char *rtype;
7507
7508 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
7509 printf ("%08" BFD_VMA_FMT "x ",
7510 (bfd_vma) BYTE_GET (imrs [i].rela_offset));
7511 type = BYTE_GET (imrs [i].type);
7512 rtype = elf_ia64_reloc_type (type);
7513 if (rtype == NULL)
7514 printf ("0x%08x ", type);
7515 else
7516 printf ("%-31s ", rtype);
7517 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
7518 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
7519 printf ("%08" BFD_VMA_FMT "x\n",
7520 (bfd_vma) BYTE_GET (imrs [i].sym_offset));
7521 }
7522
7523 free (imrs);
7524 return true;
7525 }
7526
7527 /* Display IA-64 OpenVMS dynamic relocations and fixups. */
7528
7529 static bool
7530 process_ia64_vms_dynamic_relocs (Filedata * filedata)
7531 {
7532 struct ia64_vms_dynfixup fixup;
7533 struct ia64_vms_dynimgrela imgrela;
7534 Elf_Internal_Dyn *entry;
7535 bfd_vma strtab_off = 0;
7536 bfd_vma strtab_sz = 0;
7537 char *strtab = NULL;
7538 bool res = true;
7539
7540 memset (&fixup, 0, sizeof (fixup));
7541 memset (&imgrela, 0, sizeof (imgrela));
7542
7543 /* Note: the order of the entries is specified by the OpenVMS specs. */
7544 for (entry = filedata->dynamic_section;
7545 entry < filedata->dynamic_section + filedata->dynamic_nent;
7546 entry++)
7547 {
7548 switch (entry->d_tag)
7549 {
7550 case DT_IA_64_VMS_STRTAB_OFFSET:
7551 strtab_off = entry->d_un.d_val;
7552 break;
7553 case DT_STRSZ:
7554 strtab_sz = entry->d_un.d_val;
7555 if (strtab == NULL)
7556 strtab = get_data (NULL, filedata,
7557 filedata->dynamic_addr + strtab_off,
7558 1, strtab_sz, _("dynamic string section"));
7559 if (strtab == NULL)
7560 strtab_sz = 0;
7561 break;
7562
7563 case DT_IA_64_VMS_NEEDED_IDENT:
7564 fixup.needed_ident = entry->d_un.d_val;
7565 break;
7566 case DT_NEEDED:
7567 fixup.needed = entry->d_un.d_val;
7568 break;
7569 case DT_IA_64_VMS_FIXUP_NEEDED:
7570 fixup.fixup_needed = entry->d_un.d_val;
7571 break;
7572 case DT_IA_64_VMS_FIXUP_RELA_CNT:
7573 fixup.fixup_rela_cnt = entry->d_un.d_val;
7574 break;
7575 case DT_IA_64_VMS_FIXUP_RELA_OFF:
7576 fixup.fixup_rela_off = entry->d_un.d_val;
7577 if (! dump_ia64_vms_dynamic_fixups (filedata, &fixup, strtab, strtab_sz))
7578 res = false;
7579 break;
7580 case DT_IA_64_VMS_IMG_RELA_CNT:
7581 imgrela.img_rela_cnt = entry->d_un.d_val;
7582 break;
7583 case DT_IA_64_VMS_IMG_RELA_OFF:
7584 imgrela.img_rela_off = entry->d_un.d_val;
7585 if (! dump_ia64_vms_dynamic_relocs (filedata, &imgrela))
7586 res = false;
7587 break;
7588
7589 default:
7590 break;
7591 }
7592 }
7593
7594 free (strtab);
7595
7596 return res;
7597 }
7598
7599 static struct
7600 {
7601 const char * name;
7602 int reloc;
7603 int size;
7604 int rela;
7605 }
7606 dynamic_relocations [] =
7607 {
7608 { "REL", DT_REL, DT_RELSZ, false },
7609 { "RELA", DT_RELA, DT_RELASZ, true },
7610 { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN }
7611 };
7612
7613 /* Process the reloc section. */
7614
7615 static bool
7616 process_relocs (Filedata * filedata)
7617 {
7618 unsigned long rel_size;
7619 unsigned long rel_offset;
7620
7621 if (!do_reloc)
7622 return true;
7623
7624 if (do_using_dynamic)
7625 {
7626 int is_rela;
7627 const char * name;
7628 bool has_dynamic_reloc;
7629 unsigned int i;
7630
7631 has_dynamic_reloc = false;
7632
7633 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
7634 {
7635 is_rela = dynamic_relocations [i].rela;
7636 name = dynamic_relocations [i].name;
7637 rel_size = filedata->dynamic_info[dynamic_relocations [i].size];
7638 rel_offset = filedata->dynamic_info[dynamic_relocations [i].reloc];
7639
7640 if (rel_size)
7641 has_dynamic_reloc = true;
7642
7643 if (is_rela == UNKNOWN)
7644 {
7645 if (dynamic_relocations [i].reloc == DT_JMPREL)
7646 switch (filedata->dynamic_info[DT_PLTREL])
7647 {
7648 case DT_REL:
7649 is_rela = false;
7650 break;
7651 case DT_RELA:
7652 is_rela = true;
7653 break;
7654 }
7655 }
7656
7657 if (rel_size)
7658 {
7659 if (filedata->is_separate)
7660 printf
7661 (_("\nIn linked file '%s' section '%s' at offset 0x%lx contains %ld bytes:\n"),
7662 filedata->file_name, name, rel_offset, rel_size);
7663 else
7664 printf
7665 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
7666 name, rel_offset, rel_size);
7667
7668
7669 dump_relocations (filedata,
7670 offset_from_vma (filedata, rel_offset, rel_size),
7671 rel_size,
7672 filedata->dynamic_symbols,
7673 filedata->num_dynamic_syms,
7674 filedata->dynamic_strings,
7675 filedata->dynamic_strings_length,
7676 is_rela, true /* is_dynamic */);
7677 }
7678 }
7679
7680 if (is_ia64_vms (filedata))
7681 if (process_ia64_vms_dynamic_relocs (filedata))
7682 has_dynamic_reloc = true;
7683
7684 if (! has_dynamic_reloc)
7685 {
7686 if (filedata->is_separate)
7687 printf (_("\nThere are no dynamic relocations in linked file '%s'.\n"),
7688 filedata->file_name);
7689 else
7690 printf (_("\nThere are no dynamic relocations in this file.\n"));
7691 }
7692 }
7693 else
7694 {
7695 Elf_Internal_Shdr * section;
7696 unsigned long i;
7697 bool found = false;
7698
7699 for (i = 0, section = filedata->section_headers;
7700 i < filedata->file_header.e_shnum;
7701 i++, section++)
7702 {
7703 if ( section->sh_type != SHT_RELA
7704 && section->sh_type != SHT_REL)
7705 continue;
7706
7707 rel_offset = section->sh_offset;
7708 rel_size = section->sh_size;
7709
7710 if (rel_size)
7711 {
7712 int is_rela;
7713 unsigned long num_rela;
7714
7715 if (filedata->is_separate)
7716 printf (_("\nIn linked file '%s' relocation section "),
7717 filedata->file_name);
7718 else
7719 printf (_("\nRelocation section "));
7720
7721 if (filedata->string_table == NULL)
7722 printf ("%d", section->sh_name);
7723 else
7724 printf ("'%s'", printable_section_name (filedata, section));
7725
7726 num_rela = rel_size / section->sh_entsize;
7727 printf (ngettext (" at offset 0x%lx contains %lu entry:\n",
7728 " at offset 0x%lx contains %lu entries:\n",
7729 num_rela),
7730 rel_offset, num_rela);
7731
7732 is_rela = section->sh_type == SHT_RELA;
7733
7734 if (section->sh_link != 0
7735 && section->sh_link < filedata->file_header.e_shnum)
7736 {
7737 Elf_Internal_Shdr * symsec;
7738 Elf_Internal_Sym * symtab;
7739 unsigned long nsyms;
7740 unsigned long strtablen = 0;
7741 char * strtab = NULL;
7742
7743 symsec = filedata->section_headers + section->sh_link;
7744 if (symsec->sh_type != SHT_SYMTAB
7745 && symsec->sh_type != SHT_DYNSYM)
7746 continue;
7747
7748 if (!get_symtab (filedata, symsec,
7749 &symtab, &nsyms, &strtab, &strtablen))
7750 continue;
7751
7752 dump_relocations (filedata, rel_offset, rel_size,
7753 symtab, nsyms, strtab, strtablen,
7754 is_rela,
7755 symsec->sh_type == SHT_DYNSYM);
7756 free (strtab);
7757 free (symtab);
7758 }
7759 else
7760 dump_relocations (filedata, rel_offset, rel_size,
7761 NULL, 0, NULL, 0, is_rela,
7762 false /* is_dynamic */);
7763
7764 found = true;
7765 }
7766 }
7767
7768 if (! found)
7769 {
7770 /* Users sometimes forget the -D option, so try to be helpful. */
7771 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
7772 {
7773 if (filedata->dynamic_info[dynamic_relocations [i].size])
7774 {
7775 if (filedata->is_separate)
7776 printf (_("\nThere are no static relocations in linked file '%s'."),
7777 filedata->file_name);
7778 else
7779 printf (_("\nThere are no static relocations in this file."));
7780 printf (_("\nTo see the dynamic relocations add --use-dynamic to the command line.\n"));
7781
7782 break;
7783 }
7784 }
7785 if (i == ARRAY_SIZE (dynamic_relocations))
7786 {
7787 if (filedata->is_separate)
7788 printf (_("\nThere are no relocations in linked file '%s'.\n"),
7789 filedata->file_name);
7790 else
7791 printf (_("\nThere are no relocations in this file.\n"));
7792 }
7793 }
7794 }
7795
7796 return true;
7797 }
7798
7799 /* An absolute address consists of a section and an offset. If the
7800 section is NULL, the offset itself is the address, otherwise, the
7801 address equals to LOAD_ADDRESS(section) + offset. */
7802
7803 struct absaddr
7804 {
7805 unsigned short section;
7806 bfd_vma offset;
7807 };
7808
7809 /* Find the nearest symbol at or below ADDR. Returns the symbol
7810 name, if found, and the offset from the symbol to ADDR. */
7811
7812 static void
7813 find_symbol_for_address (Filedata * filedata,
7814 Elf_Internal_Sym * symtab,
7815 unsigned long nsyms,
7816 const char * strtab,
7817 unsigned long strtab_size,
7818 struct absaddr addr,
7819 const char ** symname,
7820 bfd_vma * offset)
7821 {
7822 bfd_vma dist = 0x100000;
7823 Elf_Internal_Sym * sym;
7824 Elf_Internal_Sym * beg;
7825 Elf_Internal_Sym * end;
7826 Elf_Internal_Sym * best = NULL;
7827
7828 REMOVE_ARCH_BITS (addr.offset);
7829 beg = symtab;
7830 end = symtab + nsyms;
7831
7832 while (beg < end)
7833 {
7834 bfd_vma value;
7835
7836 sym = beg + (end - beg) / 2;
7837
7838 value = sym->st_value;
7839 REMOVE_ARCH_BITS (value);
7840
7841 if (sym->st_name != 0
7842 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
7843 && addr.offset >= value
7844 && addr.offset - value < dist)
7845 {
7846 best = sym;
7847 dist = addr.offset - value;
7848 if (!dist)
7849 break;
7850 }
7851
7852 if (addr.offset < value)
7853 end = sym;
7854 else
7855 beg = sym + 1;
7856 }
7857
7858 if (best)
7859 {
7860 *symname = (best->st_name >= strtab_size
7861 ? _("<corrupt>") : strtab + best->st_name);
7862 *offset = dist;
7863 return;
7864 }
7865
7866 *symname = NULL;
7867 *offset = addr.offset;
7868 }
7869
7870 static /* signed */ int
7871 symcmp (const void *p, const void *q)
7872 {
7873 Elf_Internal_Sym *sp = (Elf_Internal_Sym *) p;
7874 Elf_Internal_Sym *sq = (Elf_Internal_Sym *) q;
7875
7876 return sp->st_value > sq->st_value ? 1 : (sp->st_value < sq->st_value ? -1 : 0);
7877 }
7878
7879 /* Process the unwind section. */
7880
7881 #include "unwind-ia64.h"
7882
7883 struct ia64_unw_table_entry
7884 {
7885 struct absaddr start;
7886 struct absaddr end;
7887 struct absaddr info;
7888 };
7889
7890 struct ia64_unw_aux_info
7891 {
7892 struct ia64_unw_table_entry * table; /* Unwind table. */
7893 unsigned long table_len; /* Length of unwind table. */
7894 unsigned char * info; /* Unwind info. */
7895 unsigned long info_size; /* Size of unwind info. */
7896 bfd_vma info_addr; /* Starting address of unwind info. */
7897 bfd_vma seg_base; /* Starting address of segment. */
7898 Elf_Internal_Sym * symtab; /* The symbol table. */
7899 unsigned long nsyms; /* Number of symbols. */
7900 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
7901 unsigned long nfuns; /* Number of entries in funtab. */
7902 char * strtab; /* The string table. */
7903 unsigned long strtab_size; /* Size of string table. */
7904 };
7905
7906 static bool
7907 dump_ia64_unwind (Filedata * filedata, struct ia64_unw_aux_info * aux)
7908 {
7909 struct ia64_unw_table_entry * tp;
7910 unsigned long j, nfuns;
7911 int in_body;
7912 bool res = true;
7913
7914 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
7915 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
7916 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
7917 aux->funtab[nfuns++] = aux->symtab[j];
7918 aux->nfuns = nfuns;
7919 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
7920
7921 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
7922 {
7923 bfd_vma stamp;
7924 bfd_vma offset;
7925 const unsigned char * dp;
7926 const unsigned char * head;
7927 const unsigned char * end;
7928 const char * procname;
7929
7930 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
7931 aux->strtab_size, tp->start, &procname, &offset);
7932
7933 fputs ("\n<", stdout);
7934
7935 if (procname)
7936 {
7937 fputs (procname, stdout);
7938
7939 if (offset)
7940 printf ("+%lx", (unsigned long) offset);
7941 }
7942
7943 fputs (">: [", stdout);
7944 print_vma (tp->start.offset, PREFIX_HEX);
7945 fputc ('-', stdout);
7946 print_vma (tp->end.offset, PREFIX_HEX);
7947 printf ("], info at +0x%lx\n",
7948 (unsigned long) (tp->info.offset - aux->seg_base));
7949
7950 /* PR 17531: file: 86232b32. */
7951 if (aux->info == NULL)
7952 continue;
7953
7954 offset = tp->info.offset;
7955 if (tp->info.section)
7956 {
7957 if (tp->info.section >= filedata->file_header.e_shnum)
7958 {
7959 warn (_("Invalid section %u in table entry %ld\n"),
7960 tp->info.section, (long) (tp - aux->table));
7961 res = false;
7962 continue;
7963 }
7964 offset += filedata->section_headers[tp->info.section].sh_addr;
7965 }
7966 offset -= aux->info_addr;
7967 /* PR 17531: file: 0997b4d1. */
7968 if (offset >= aux->info_size
7969 || aux->info_size - offset < 8)
7970 {
7971 warn (_("Invalid offset %lx in table entry %ld\n"),
7972 (long) tp->info.offset, (long) (tp - aux->table));
7973 res = false;
7974 continue;
7975 }
7976
7977 head = aux->info + offset;
7978 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
7979
7980 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
7981 (unsigned) UNW_VER (stamp),
7982 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
7983 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
7984 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
7985 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
7986
7987 if (UNW_VER (stamp) != 1)
7988 {
7989 printf (_("\tUnknown version.\n"));
7990 continue;
7991 }
7992
7993 in_body = 0;
7994 end = head + 8 + eh_addr_size * UNW_LENGTH (stamp);
7995 /* PR 17531: file: 16ceda89. */
7996 if (end > aux->info + aux->info_size)
7997 end = aux->info + aux->info_size;
7998 for (dp = head + 8; dp < end;)
7999 dp = unw_decode (dp, in_body, & in_body, end);
8000 }
8001
8002 free (aux->funtab);
8003
8004 return res;
8005 }
8006
8007 static bool
8008 slurp_ia64_unwind_table (Filedata * filedata,
8009 struct ia64_unw_aux_info * aux,
8010 Elf_Internal_Shdr * sec)
8011 {
8012 unsigned long size, nrelas, i;
8013 Elf_Internal_Phdr * seg;
8014 struct ia64_unw_table_entry * tep;
8015 Elf_Internal_Shdr * relsec;
8016 Elf_Internal_Rela * rela;
8017 Elf_Internal_Rela * rp;
8018 unsigned char * table;
8019 unsigned char * tp;
8020 Elf_Internal_Sym * sym;
8021 const char * relname;
8022
8023 aux->table_len = 0;
8024
8025 /* First, find the starting address of the segment that includes
8026 this section: */
8027
8028 if (filedata->file_header.e_phnum)
8029 {
8030 if (! get_program_headers (filedata))
8031 return false;
8032
8033 for (seg = filedata->program_headers;
8034 seg < filedata->program_headers + filedata->file_header.e_phnum;
8035 ++seg)
8036 {
8037 if (seg->p_type != PT_LOAD)
8038 continue;
8039
8040 if (sec->sh_addr >= seg->p_vaddr
8041 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
8042 {
8043 aux->seg_base = seg->p_vaddr;
8044 break;
8045 }
8046 }
8047 }
8048
8049 /* Second, build the unwind table from the contents of the unwind section: */
8050 size = sec->sh_size;
8051 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
8052 _("unwind table"));
8053 if (!table)
8054 return false;
8055
8056 aux->table_len = size / (3 * eh_addr_size);
8057 aux->table = (struct ia64_unw_table_entry *)
8058 xcmalloc (aux->table_len, sizeof (aux->table[0]));
8059 tep = aux->table;
8060
8061 for (tp = table; tp <= table + size - (3 * eh_addr_size); ++tep)
8062 {
8063 tep->start.section = SHN_UNDEF;
8064 tep->end.section = SHN_UNDEF;
8065 tep->info.section = SHN_UNDEF;
8066 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
8067 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
8068 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
8069 tep->start.offset += aux->seg_base;
8070 tep->end.offset += aux->seg_base;
8071 tep->info.offset += aux->seg_base;
8072 }
8073 free (table);
8074
8075 /* Third, apply any relocations to the unwind table: */
8076 for (relsec = filedata->section_headers;
8077 relsec < filedata->section_headers + filedata->file_header.e_shnum;
8078 ++relsec)
8079 {
8080 if (relsec->sh_type != SHT_RELA
8081 || relsec->sh_info >= filedata->file_header.e_shnum
8082 || filedata->section_headers + relsec->sh_info != sec)
8083 continue;
8084
8085 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
8086 & rela, & nrelas))
8087 {
8088 free (aux->table);
8089 aux->table = NULL;
8090 aux->table_len = 0;
8091 return false;
8092 }
8093
8094 for (rp = rela; rp < rela + nrelas; ++rp)
8095 {
8096 unsigned int sym_ndx;
8097 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
8098 relname = elf_ia64_reloc_type (r_type);
8099
8100 /* PR 17531: file: 9fa67536. */
8101 if (relname == NULL)
8102 {
8103 warn (_("Skipping unknown relocation type: %u\n"), r_type);
8104 continue;
8105 }
8106
8107 if (! startswith (relname, "R_IA64_SEGREL"))
8108 {
8109 warn (_("Skipping unexpected relocation type: %s\n"), relname);
8110 continue;
8111 }
8112
8113 i = rp->r_offset / (3 * eh_addr_size);
8114
8115 /* PR 17531: file: 5bc8d9bf. */
8116 if (i >= aux->table_len)
8117 {
8118 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
8119 continue;
8120 }
8121
8122 sym_ndx = get_reloc_symindex (rp->r_info);
8123 if (sym_ndx >= aux->nsyms)
8124 {
8125 warn (_("Skipping reloc with invalid symbol index: %u\n"),
8126 sym_ndx);
8127 continue;
8128 }
8129 sym = aux->symtab + sym_ndx;
8130
8131 switch (rp->r_offset / eh_addr_size % 3)
8132 {
8133 case 0:
8134 aux->table[i].start.section = sym->st_shndx;
8135 aux->table[i].start.offset = rp->r_addend + sym->st_value;
8136 break;
8137 case 1:
8138 aux->table[i].end.section = sym->st_shndx;
8139 aux->table[i].end.offset = rp->r_addend + sym->st_value;
8140 break;
8141 case 2:
8142 aux->table[i].info.section = sym->st_shndx;
8143 aux->table[i].info.offset = rp->r_addend + sym->st_value;
8144 break;
8145 default:
8146 break;
8147 }
8148 }
8149
8150 free (rela);
8151 }
8152
8153 return true;
8154 }
8155
8156 static bool
8157 ia64_process_unwind (Filedata * filedata)
8158 {
8159 Elf_Internal_Shdr * sec;
8160 Elf_Internal_Shdr * unwsec = NULL;
8161 unsigned long i, unwcount = 0, unwstart = 0;
8162 struct ia64_unw_aux_info aux;
8163 bool res = true;
8164
8165 memset (& aux, 0, sizeof (aux));
8166
8167 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
8168 {
8169 if (sec->sh_type == SHT_SYMTAB)
8170 {
8171 if (aux.symtab)
8172 {
8173 error (_("Multiple symbol tables encountered\n"));
8174 free (aux.symtab);
8175 aux.symtab = NULL;
8176 free (aux.strtab);
8177 aux.strtab = NULL;
8178 }
8179 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
8180 &aux.strtab, &aux.strtab_size))
8181 return false;
8182 }
8183 else if (sec->sh_type == SHT_IA_64_UNWIND)
8184 unwcount++;
8185 }
8186
8187 if (!unwcount)
8188 printf (_("\nThere are no unwind sections in this file.\n"));
8189
8190 while (unwcount-- > 0)
8191 {
8192 char * suffix;
8193 size_t len, len2;
8194
8195 for (i = unwstart, sec = filedata->section_headers + unwstart, unwsec = NULL;
8196 i < filedata->file_header.e_shnum; ++i, ++sec)
8197 if (sec->sh_type == SHT_IA_64_UNWIND)
8198 {
8199 unwsec = sec;
8200 break;
8201 }
8202 /* We have already counted the number of SHT_IA64_UNWIND
8203 sections so the loop above should never fail. */
8204 assert (unwsec != NULL);
8205
8206 unwstart = i + 1;
8207 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
8208
8209 if ((unwsec->sh_flags & SHF_GROUP) != 0)
8210 {
8211 /* We need to find which section group it is in. */
8212 struct group_list * g;
8213
8214 if (filedata->section_headers_groups == NULL
8215 || filedata->section_headers_groups[i] == NULL)
8216 i = filedata->file_header.e_shnum;
8217 else
8218 {
8219 g = filedata->section_headers_groups[i]->root;
8220
8221 for (; g != NULL; g = g->next)
8222 {
8223 sec = filedata->section_headers + g->section_index;
8224
8225 if (SECTION_NAME_VALID (sec)
8226 && streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info))
8227 break;
8228 }
8229
8230 if (g == NULL)
8231 i = filedata->file_header.e_shnum;
8232 }
8233 }
8234 else if (SECTION_NAME_VALID (unwsec)
8235 && startswith (SECTION_NAME (unwsec),
8236 ELF_STRING_ia64_unwind_once))
8237 {
8238 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
8239 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
8240 suffix = SECTION_NAME (unwsec) + len;
8241 for (i = 0, sec = filedata->section_headers;
8242 i < filedata->file_header.e_shnum;
8243 ++i, ++sec)
8244 if (SECTION_NAME_VALID (sec)
8245 && startswith (SECTION_NAME (sec),
8246 ELF_STRING_ia64_unwind_info_once)
8247 && streq (SECTION_NAME (sec) + len2, suffix))
8248 break;
8249 }
8250 else
8251 {
8252 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
8253 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
8254 len = sizeof (ELF_STRING_ia64_unwind) - 1;
8255 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
8256 suffix = "";
8257 if (SECTION_NAME_VALID (unwsec)
8258 && startswith (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind))
8259 suffix = SECTION_NAME (unwsec) + len;
8260 for (i = 0, sec = filedata->section_headers;
8261 i < filedata->file_header.e_shnum;
8262 ++i, ++sec)
8263 if (SECTION_NAME_VALID (sec)
8264 && startswith (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info)
8265 && streq (SECTION_NAME (sec) + len2, suffix))
8266 break;
8267 }
8268
8269 if (i == filedata->file_header.e_shnum)
8270 {
8271 printf (_("\nCould not find unwind info section for "));
8272
8273 if (filedata->string_table == NULL)
8274 printf ("%d", unwsec->sh_name);
8275 else
8276 printf ("'%s'", printable_section_name (filedata, unwsec));
8277 }
8278 else
8279 {
8280 aux.info_addr = sec->sh_addr;
8281 aux.info = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1,
8282 sec->sh_size,
8283 _("unwind info"));
8284 aux.info_size = aux.info == NULL ? 0 : sec->sh_size;
8285
8286 printf (_("\nUnwind section "));
8287
8288 if (filedata->string_table == NULL)
8289 printf ("%d", unwsec->sh_name);
8290 else
8291 printf ("'%s'", printable_section_name (filedata, unwsec));
8292
8293 printf (_(" at offset 0x%lx contains %lu entries:\n"),
8294 (unsigned long) unwsec->sh_offset,
8295 (unsigned long) (unwsec->sh_size / (3 * eh_addr_size)));
8296
8297 if (slurp_ia64_unwind_table (filedata, & aux, unwsec)
8298 && aux.table_len > 0)
8299 dump_ia64_unwind (filedata, & aux);
8300
8301 free ((char *) aux.table);
8302 free ((char *) aux.info);
8303 aux.table = NULL;
8304 aux.info = NULL;
8305 }
8306 }
8307
8308 free (aux.symtab);
8309 free ((char *) aux.strtab);
8310
8311 return res;
8312 }
8313
8314 struct hppa_unw_table_entry
8315 {
8316 struct absaddr start;
8317 struct absaddr end;
8318 unsigned int Cannot_unwind:1; /* 0 */
8319 unsigned int Millicode:1; /* 1 */
8320 unsigned int Millicode_save_sr0:1; /* 2 */
8321 unsigned int Region_description:2; /* 3..4 */
8322 unsigned int reserved1:1; /* 5 */
8323 unsigned int Entry_SR:1; /* 6 */
8324 unsigned int Entry_FR:4; /* Number saved 7..10 */
8325 unsigned int Entry_GR:5; /* Number saved 11..15 */
8326 unsigned int Args_stored:1; /* 16 */
8327 unsigned int Variable_Frame:1; /* 17 */
8328 unsigned int Separate_Package_Body:1; /* 18 */
8329 unsigned int Frame_Extension_Millicode:1; /* 19 */
8330 unsigned int Stack_Overflow_Check:1; /* 20 */
8331 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
8332 unsigned int Ada_Region:1; /* 22 */
8333 unsigned int cxx_info:1; /* 23 */
8334 unsigned int cxx_try_catch:1; /* 24 */
8335 unsigned int sched_entry_seq:1; /* 25 */
8336 unsigned int reserved2:1; /* 26 */
8337 unsigned int Save_SP:1; /* 27 */
8338 unsigned int Save_RP:1; /* 28 */
8339 unsigned int Save_MRP_in_frame:1; /* 29 */
8340 unsigned int extn_ptr_defined:1; /* 30 */
8341 unsigned int Cleanup_defined:1; /* 31 */
8342
8343 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
8344 unsigned int HP_UX_interrupt_marker:1; /* 1 */
8345 unsigned int Large_frame:1; /* 2 */
8346 unsigned int Pseudo_SP_Set:1; /* 3 */
8347 unsigned int reserved4:1; /* 4 */
8348 unsigned int Total_frame_size:27; /* 5..31 */
8349 };
8350
8351 struct hppa_unw_aux_info
8352 {
8353 struct hppa_unw_table_entry * table; /* Unwind table. */
8354 unsigned long table_len; /* Length of unwind table. */
8355 bfd_vma seg_base; /* Starting address of segment. */
8356 Elf_Internal_Sym * symtab; /* The symbol table. */
8357 unsigned long nsyms; /* Number of symbols. */
8358 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
8359 unsigned long nfuns; /* Number of entries in funtab. */
8360 char * strtab; /* The string table. */
8361 unsigned long strtab_size; /* Size of string table. */
8362 };
8363
8364 static bool
8365 dump_hppa_unwind (Filedata * filedata, struct hppa_unw_aux_info * aux)
8366 {
8367 struct hppa_unw_table_entry * tp;
8368 unsigned long j, nfuns;
8369 bool res = true;
8370
8371 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
8372 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
8373 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
8374 aux->funtab[nfuns++] = aux->symtab[j];
8375 aux->nfuns = nfuns;
8376 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
8377
8378 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
8379 {
8380 bfd_vma offset;
8381 const char * procname;
8382
8383 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
8384 aux->strtab_size, tp->start, &procname,
8385 &offset);
8386
8387 fputs ("\n<", stdout);
8388
8389 if (procname)
8390 {
8391 fputs (procname, stdout);
8392
8393 if (offset)
8394 printf ("+%lx", (unsigned long) offset);
8395 }
8396
8397 fputs (">: [", stdout);
8398 print_vma (tp->start.offset, PREFIX_HEX);
8399 fputc ('-', stdout);
8400 print_vma (tp->end.offset, PREFIX_HEX);
8401 printf ("]\n\t");
8402
8403 #define PF(_m) if (tp->_m) printf (#_m " ");
8404 #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
8405 PF(Cannot_unwind);
8406 PF(Millicode);
8407 PF(Millicode_save_sr0);
8408 /* PV(Region_description); */
8409 PF(Entry_SR);
8410 PV(Entry_FR);
8411 PV(Entry_GR);
8412 PF(Args_stored);
8413 PF(Variable_Frame);
8414 PF(Separate_Package_Body);
8415 PF(Frame_Extension_Millicode);
8416 PF(Stack_Overflow_Check);
8417 PF(Two_Instruction_SP_Increment);
8418 PF(Ada_Region);
8419 PF(cxx_info);
8420 PF(cxx_try_catch);
8421 PF(sched_entry_seq);
8422 PF(Save_SP);
8423 PF(Save_RP);
8424 PF(Save_MRP_in_frame);
8425 PF(extn_ptr_defined);
8426 PF(Cleanup_defined);
8427 PF(MPE_XL_interrupt_marker);
8428 PF(HP_UX_interrupt_marker);
8429 PF(Large_frame);
8430 PF(Pseudo_SP_Set);
8431 PV(Total_frame_size);
8432 #undef PF
8433 #undef PV
8434 }
8435
8436 printf ("\n");
8437
8438 free (aux->funtab);
8439
8440 return res;
8441 }
8442
8443 static bool
8444 slurp_hppa_unwind_table (Filedata * filedata,
8445 struct hppa_unw_aux_info * aux,
8446 Elf_Internal_Shdr * sec)
8447 {
8448 unsigned long size, unw_ent_size, nentries, nrelas, i;
8449 Elf_Internal_Phdr * seg;
8450 struct hppa_unw_table_entry * tep;
8451 Elf_Internal_Shdr * relsec;
8452 Elf_Internal_Rela * rela;
8453 Elf_Internal_Rela * rp;
8454 unsigned char * table;
8455 unsigned char * tp;
8456 Elf_Internal_Sym * sym;
8457 const char * relname;
8458
8459 /* First, find the starting address of the segment that includes
8460 this section. */
8461 if (filedata->file_header.e_phnum)
8462 {
8463 if (! get_program_headers (filedata))
8464 return false;
8465
8466 for (seg = filedata->program_headers;
8467 seg < filedata->program_headers + filedata->file_header.e_phnum;
8468 ++seg)
8469 {
8470 if (seg->p_type != PT_LOAD)
8471 continue;
8472
8473 if (sec->sh_addr >= seg->p_vaddr
8474 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
8475 {
8476 aux->seg_base = seg->p_vaddr;
8477 break;
8478 }
8479 }
8480 }
8481
8482 /* Second, build the unwind table from the contents of the unwind
8483 section. */
8484 size = sec->sh_size;
8485 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
8486 _("unwind table"));
8487 if (!table)
8488 return false;
8489
8490 unw_ent_size = 16;
8491 nentries = size / unw_ent_size;
8492 size = unw_ent_size * nentries;
8493
8494 aux->table_len = nentries;
8495 tep = aux->table = (struct hppa_unw_table_entry *)
8496 xcmalloc (nentries, sizeof (aux->table[0]));
8497
8498 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
8499 {
8500 unsigned int tmp1, tmp2;
8501
8502 tep->start.section = SHN_UNDEF;
8503 tep->end.section = SHN_UNDEF;
8504
8505 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
8506 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
8507 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
8508 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
8509
8510 tep->start.offset += aux->seg_base;
8511 tep->end.offset += aux->seg_base;
8512
8513 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
8514 tep->Millicode = (tmp1 >> 30) & 0x1;
8515 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
8516 tep->Region_description = (tmp1 >> 27) & 0x3;
8517 tep->reserved1 = (tmp1 >> 26) & 0x1;
8518 tep->Entry_SR = (tmp1 >> 25) & 0x1;
8519 tep->Entry_FR = (tmp1 >> 21) & 0xf;
8520 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
8521 tep->Args_stored = (tmp1 >> 15) & 0x1;
8522 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
8523 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
8524 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
8525 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
8526 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
8527 tep->Ada_Region = (tmp1 >> 9) & 0x1;
8528 tep->cxx_info = (tmp1 >> 8) & 0x1;
8529 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
8530 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
8531 tep->reserved2 = (tmp1 >> 5) & 0x1;
8532 tep->Save_SP = (tmp1 >> 4) & 0x1;
8533 tep->Save_RP = (tmp1 >> 3) & 0x1;
8534 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
8535 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
8536 tep->Cleanup_defined = tmp1 & 0x1;
8537
8538 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
8539 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
8540 tep->Large_frame = (tmp2 >> 29) & 0x1;
8541 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
8542 tep->reserved4 = (tmp2 >> 27) & 0x1;
8543 tep->Total_frame_size = tmp2 & 0x7ffffff;
8544 }
8545 free (table);
8546
8547 /* Third, apply any relocations to the unwind table. */
8548 for (relsec = filedata->section_headers;
8549 relsec < filedata->section_headers + filedata->file_header.e_shnum;
8550 ++relsec)
8551 {
8552 if (relsec->sh_type != SHT_RELA
8553 || relsec->sh_info >= filedata->file_header.e_shnum
8554 || filedata->section_headers + relsec->sh_info != sec)
8555 continue;
8556
8557 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
8558 & rela, & nrelas))
8559 return false;
8560
8561 for (rp = rela; rp < rela + nrelas; ++rp)
8562 {
8563 unsigned int sym_ndx;
8564 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
8565 relname = elf_hppa_reloc_type (r_type);
8566
8567 if (relname == NULL)
8568 {
8569 warn (_("Skipping unknown relocation type: %u\n"), r_type);
8570 continue;
8571 }
8572
8573 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
8574 if (! startswith (relname, "R_PARISC_SEGREL"))
8575 {
8576 warn (_("Skipping unexpected relocation type: %s\n"), relname);
8577 continue;
8578 }
8579
8580 i = rp->r_offset / unw_ent_size;
8581 if (i >= aux->table_len)
8582 {
8583 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
8584 continue;
8585 }
8586
8587 sym_ndx = get_reloc_symindex (rp->r_info);
8588 if (sym_ndx >= aux->nsyms)
8589 {
8590 warn (_("Skipping reloc with invalid symbol index: %u\n"),
8591 sym_ndx);
8592 continue;
8593 }
8594 sym = aux->symtab + sym_ndx;
8595
8596 switch ((rp->r_offset % unw_ent_size) / 4)
8597 {
8598 case 0:
8599 aux->table[i].start.section = sym->st_shndx;
8600 aux->table[i].start.offset = sym->st_value + rp->r_addend;
8601 break;
8602 case 1:
8603 aux->table[i].end.section = sym->st_shndx;
8604 aux->table[i].end.offset = sym->st_value + rp->r_addend;
8605 break;
8606 default:
8607 break;
8608 }
8609 }
8610
8611 free (rela);
8612 }
8613
8614 return true;
8615 }
8616
8617 static bool
8618 hppa_process_unwind (Filedata * filedata)
8619 {
8620 struct hppa_unw_aux_info aux;
8621 Elf_Internal_Shdr * unwsec = NULL;
8622 Elf_Internal_Shdr * sec;
8623 unsigned long i;
8624 bool res = true;
8625
8626 if (filedata->string_table == NULL)
8627 return false;
8628
8629 memset (& aux, 0, sizeof (aux));
8630
8631 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
8632 {
8633 if (sec->sh_type == SHT_SYMTAB)
8634 {
8635 if (aux.symtab)
8636 {
8637 error (_("Multiple symbol tables encountered\n"));
8638 free (aux.symtab);
8639 aux.symtab = NULL;
8640 free (aux.strtab);
8641 aux.strtab = NULL;
8642 }
8643 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
8644 &aux.strtab, &aux.strtab_size))
8645 return false;
8646 }
8647 else if (SECTION_NAME_VALID (sec)
8648 && streq (SECTION_NAME (sec), ".PARISC.unwind"))
8649 unwsec = sec;
8650 }
8651
8652 if (!unwsec)
8653 printf (_("\nThere are no unwind sections in this file.\n"));
8654
8655 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
8656 {
8657 if (SECTION_NAME_VALID (sec)
8658 && streq (SECTION_NAME (sec), ".PARISC.unwind"))
8659 {
8660 unsigned long num_unwind = sec->sh_size / 16;
8661
8662 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
8663 "contains %lu entry:\n",
8664 "\nUnwind section '%s' at offset 0x%lx "
8665 "contains %lu entries:\n",
8666 num_unwind),
8667 printable_section_name (filedata, sec),
8668 (unsigned long) sec->sh_offset,
8669 num_unwind);
8670
8671 if (! slurp_hppa_unwind_table (filedata, &aux, sec))
8672 res = false;
8673
8674 if (res && aux.table_len > 0)
8675 {
8676 if (! dump_hppa_unwind (filedata, &aux))
8677 res = false;
8678 }
8679
8680 free ((char *) aux.table);
8681 aux.table = NULL;
8682 }
8683 }
8684
8685 free (aux.symtab);
8686 free ((char *) aux.strtab);
8687
8688 return res;
8689 }
8690
8691 struct arm_section
8692 {
8693 unsigned char * data; /* The unwind data. */
8694 Elf_Internal_Shdr * sec; /* The cached unwind section header. */
8695 Elf_Internal_Rela * rela; /* The cached relocations for this section. */
8696 unsigned long nrelas; /* The number of relocations. */
8697 unsigned int rel_type; /* REL or RELA ? */
8698 Elf_Internal_Rela * next_rela; /* Cyclic pointer to the next reloc to process. */
8699 };
8700
8701 struct arm_unw_aux_info
8702 {
8703 Filedata * filedata; /* The file containing the unwind sections. */
8704 Elf_Internal_Sym * symtab; /* The file's symbol table. */
8705 unsigned long nsyms; /* Number of symbols. */
8706 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
8707 unsigned long nfuns; /* Number of these symbols. */
8708 char * strtab; /* The file's string table. */
8709 unsigned long strtab_size; /* Size of string table. */
8710 };
8711
8712 static const char *
8713 arm_print_vma_and_name (Filedata * filedata,
8714 struct arm_unw_aux_info * aux,
8715 bfd_vma fn,
8716 struct absaddr addr)
8717 {
8718 const char *procname;
8719 bfd_vma sym_offset;
8720
8721 if (addr.section == SHN_UNDEF)
8722 addr.offset = fn;
8723
8724 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
8725 aux->strtab_size, addr, &procname,
8726 &sym_offset);
8727
8728 print_vma (fn, PREFIX_HEX);
8729
8730 if (procname)
8731 {
8732 fputs (" <", stdout);
8733 fputs (procname, stdout);
8734
8735 if (sym_offset)
8736 printf ("+0x%lx", (unsigned long) sym_offset);
8737 fputc ('>', stdout);
8738 }
8739
8740 return procname;
8741 }
8742
8743 static void
8744 arm_free_section (struct arm_section *arm_sec)
8745 {
8746 free (arm_sec->data);
8747 free (arm_sec->rela);
8748 }
8749
8750 /* 1) If SEC does not match the one cached in ARM_SEC, then free the current
8751 cached section and install SEC instead.
8752 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
8753 and return its valued in * WORDP, relocating if necessary.
8754 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
8755 relocation's offset in ADDR.
8756 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
8757 into the string table of the symbol associated with the reloc. If no
8758 reloc was applied store -1 there.
8759 5) Return TRUE upon success, FALSE otherwise. */
8760
8761 static bool
8762 get_unwind_section_word (Filedata * filedata,
8763 struct arm_unw_aux_info * aux,
8764 struct arm_section * arm_sec,
8765 Elf_Internal_Shdr * sec,
8766 bfd_vma word_offset,
8767 unsigned int * wordp,
8768 struct absaddr * addr,
8769 bfd_vma * sym_name)
8770 {
8771 Elf_Internal_Rela *rp;
8772 Elf_Internal_Sym *sym;
8773 const char * relname;
8774 unsigned int word;
8775 bool wrapped;
8776
8777 if (sec == NULL || arm_sec == NULL)
8778 return false;
8779
8780 addr->section = SHN_UNDEF;
8781 addr->offset = 0;
8782
8783 if (sym_name != NULL)
8784 *sym_name = (bfd_vma) -1;
8785
8786 /* If necessary, update the section cache. */
8787 if (sec != arm_sec->sec)
8788 {
8789 Elf_Internal_Shdr *relsec;
8790
8791 arm_free_section (arm_sec);
8792
8793 arm_sec->sec = sec;
8794 arm_sec->data = get_data (NULL, aux->filedata, sec->sh_offset, 1,
8795 sec->sh_size, _("unwind data"));
8796 arm_sec->rela = NULL;
8797 arm_sec->nrelas = 0;
8798
8799 for (relsec = filedata->section_headers;
8800 relsec < filedata->section_headers + filedata->file_header.e_shnum;
8801 ++relsec)
8802 {
8803 if (relsec->sh_info >= filedata->file_header.e_shnum
8804 || filedata->section_headers + relsec->sh_info != sec
8805 /* PR 15745: Check the section type as well. */
8806 || (relsec->sh_type != SHT_REL
8807 && relsec->sh_type != SHT_RELA))
8808 continue;
8809
8810 arm_sec->rel_type = relsec->sh_type;
8811 if (relsec->sh_type == SHT_REL)
8812 {
8813 if (!slurp_rel_relocs (aux->filedata, relsec->sh_offset,
8814 relsec->sh_size,
8815 & arm_sec->rela, & arm_sec->nrelas))
8816 return false;
8817 }
8818 else /* relsec->sh_type == SHT_RELA */
8819 {
8820 if (!slurp_rela_relocs (aux->filedata, relsec->sh_offset,
8821 relsec->sh_size,
8822 & arm_sec->rela, & arm_sec->nrelas))
8823 return false;
8824 }
8825 break;
8826 }
8827
8828 arm_sec->next_rela = arm_sec->rela;
8829 }
8830
8831 /* If there is no unwind data we can do nothing. */
8832 if (arm_sec->data == NULL)
8833 return false;
8834
8835 /* If the offset is invalid then fail. */
8836 if (/* PR 21343 *//* PR 18879 */
8837 sec->sh_size < 4
8838 || word_offset > (sec->sh_size - 4)
8839 || ((bfd_signed_vma) word_offset) < 0)
8840 return false;
8841
8842 /* Get the word at the required offset. */
8843 word = byte_get (arm_sec->data + word_offset, 4);
8844
8845 /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */
8846 if (arm_sec->rela == NULL)
8847 {
8848 * wordp = word;
8849 return true;
8850 }
8851
8852 /* Look through the relocs to find the one that applies to the provided offset. */
8853 wrapped = false;
8854 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
8855 {
8856 bfd_vma prelval, offset;
8857
8858 if (rp->r_offset > word_offset && !wrapped)
8859 {
8860 rp = arm_sec->rela;
8861 wrapped = true;
8862 }
8863 if (rp->r_offset > word_offset)
8864 break;
8865
8866 if (rp->r_offset & 3)
8867 {
8868 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
8869 (unsigned long) rp->r_offset);
8870 continue;
8871 }
8872
8873 if (rp->r_offset < word_offset)
8874 continue;
8875
8876 /* PR 17531: file: 027-161405-0.004 */
8877 if (aux->symtab == NULL)
8878 continue;
8879
8880 if (arm_sec->rel_type == SHT_REL)
8881 {
8882 offset = word & 0x7fffffff;
8883 if (offset & 0x40000000)
8884 offset |= ~ (bfd_vma) 0x7fffffff;
8885 }
8886 else if (arm_sec->rel_type == SHT_RELA)
8887 offset = rp->r_addend;
8888 else
8889 {
8890 error (_("Unknown section relocation type %d encountered\n"),
8891 arm_sec->rel_type);
8892 break;
8893 }
8894
8895 /* PR 17531 file: 027-1241568-0.004. */
8896 if (ELF32_R_SYM (rp->r_info) >= aux->nsyms)
8897 {
8898 error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"),
8899 (unsigned long) ELF32_R_SYM (rp->r_info), aux->nsyms);
8900 break;
8901 }
8902
8903 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
8904 offset += sym->st_value;
8905 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
8906
8907 /* Check that we are processing the expected reloc type. */
8908 if (filedata->file_header.e_machine == EM_ARM)
8909 {
8910 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
8911 if (relname == NULL)
8912 {
8913 warn (_("Skipping unknown ARM relocation type: %d\n"),
8914 (int) ELF32_R_TYPE (rp->r_info));
8915 continue;
8916 }
8917
8918 if (streq (relname, "R_ARM_NONE"))
8919 continue;
8920
8921 if (! streq (relname, "R_ARM_PREL31"))
8922 {
8923 warn (_("Skipping unexpected ARM relocation type %s\n"), relname);
8924 continue;
8925 }
8926 }
8927 else if (filedata->file_header.e_machine == EM_TI_C6000)
8928 {
8929 relname = elf_tic6x_reloc_type (ELF32_R_TYPE (rp->r_info));
8930 if (relname == NULL)
8931 {
8932 warn (_("Skipping unknown C6000 relocation type: %d\n"),
8933 (int) ELF32_R_TYPE (rp->r_info));
8934 continue;
8935 }
8936
8937 if (streq (relname, "R_C6000_NONE"))
8938 continue;
8939
8940 if (! streq (relname, "R_C6000_PREL31"))
8941 {
8942 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname);
8943 continue;
8944 }
8945
8946 prelval >>= 1;
8947 }
8948 else
8949 {
8950 /* This function currently only supports ARM and TI unwinders. */
8951 warn (_("Only TI and ARM unwinders are currently supported\n"));
8952 break;
8953 }
8954
8955 word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff);
8956 addr->section = sym->st_shndx;
8957 addr->offset = offset;
8958
8959 if (sym_name)
8960 * sym_name = sym->st_name;
8961 break;
8962 }
8963
8964 *wordp = word;
8965 arm_sec->next_rela = rp;
8966
8967 return true;
8968 }
8969
8970 static const char *tic6x_unwind_regnames[16] =
8971 {
8972 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
8973 "A14", "A13", "A12", "A11", "A10",
8974 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
8975 };
8976
8977 static void
8978 decode_tic6x_unwind_regmask (unsigned int mask)
8979 {
8980 int i;
8981
8982 for (i = 12; mask; mask >>= 1, i--)
8983 {
8984 if (mask & 1)
8985 {
8986 fputs (tic6x_unwind_regnames[i], stdout);
8987 if (mask > 1)
8988 fputs (", ", stdout);
8989 }
8990 }
8991 }
8992
8993 #define ADVANCE \
8994 if (remaining == 0 && more_words) \
8995 { \
8996 data_offset += 4; \
8997 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, \
8998 data_offset, & word, & addr, NULL)) \
8999 return false; \
9000 remaining = 4; \
9001 more_words--; \
9002 } \
9003
9004 #define GET_OP(OP) \
9005 ADVANCE; \
9006 if (remaining) \
9007 { \
9008 remaining--; \
9009 (OP) = word >> 24; \
9010 word <<= 8; \
9011 } \
9012 else \
9013 { \
9014 printf (_("[Truncated opcode]\n")); \
9015 return false; \
9016 } \
9017 printf ("0x%02x ", OP)
9018
9019 static bool
9020 decode_arm_unwind_bytecode (Filedata * filedata,
9021 struct arm_unw_aux_info * aux,
9022 unsigned int word,
9023 unsigned int remaining,
9024 unsigned int more_words,
9025 bfd_vma data_offset,
9026 Elf_Internal_Shdr * data_sec,
9027 struct arm_section * data_arm_sec)
9028 {
9029 struct absaddr addr;
9030 bool res = true;
9031
9032 /* Decode the unwinding instructions. */
9033 while (1)
9034 {
9035 unsigned int op, op2;
9036
9037 ADVANCE;
9038 if (remaining == 0)
9039 break;
9040 remaining--;
9041 op = word >> 24;
9042 word <<= 8;
9043
9044 printf (" 0x%02x ", op);
9045
9046 if ((op & 0xc0) == 0x00)
9047 {
9048 int offset = ((op & 0x3f) << 2) + 4;
9049
9050 printf (" vsp = vsp + %d", offset);
9051 }
9052 else if ((op & 0xc0) == 0x40)
9053 {
9054 int offset = ((op & 0x3f) << 2) + 4;
9055
9056 printf (" vsp = vsp - %d", offset);
9057 }
9058 else if ((op & 0xf0) == 0x80)
9059 {
9060 GET_OP (op2);
9061 if (op == 0x80 && op2 == 0)
9062 printf (_("Refuse to unwind"));
9063 else
9064 {
9065 unsigned int mask = ((op & 0x0f) << 8) | op2;
9066 bool first = true;
9067 int i;
9068
9069 printf ("pop {");
9070 for (i = 0; i < 12; i++)
9071 if (mask & (1 << i))
9072 {
9073 if (first)
9074 first = false;
9075 else
9076 printf (", ");
9077 printf ("r%d", 4 + i);
9078 }
9079 printf ("}");
9080 }
9081 }
9082 else if ((op & 0xf0) == 0x90)
9083 {
9084 if (op == 0x9d || op == 0x9f)
9085 printf (_(" [Reserved]"));
9086 else
9087 printf (" vsp = r%d", op & 0x0f);
9088 }
9089 else if ((op & 0xf0) == 0xa0)
9090 {
9091 int end = 4 + (op & 0x07);
9092 bool first = true;
9093 int i;
9094
9095 printf (" pop {");
9096 for (i = 4; i <= end; i++)
9097 {
9098 if (first)
9099 first = false;
9100 else
9101 printf (", ");
9102 printf ("r%d", i);
9103 }
9104 if (op & 0x08)
9105 {
9106 if (!first)
9107 printf (", ");
9108 printf ("r14");
9109 }
9110 printf ("}");
9111 }
9112 else if (op == 0xb0)
9113 printf (_(" finish"));
9114 else if (op == 0xb1)
9115 {
9116 GET_OP (op2);
9117 if (op2 == 0 || (op2 & 0xf0) != 0)
9118 printf (_("[Spare]"));
9119 else
9120 {
9121 unsigned int mask = op2 & 0x0f;
9122 bool first = true;
9123 int i;
9124
9125 printf ("pop {");
9126 for (i = 0; i < 12; i++)
9127 if (mask & (1 << i))
9128 {
9129 if (first)
9130 first = false;
9131 else
9132 printf (", ");
9133 printf ("r%d", i);
9134 }
9135 printf ("}");
9136 }
9137 }
9138 else if (op == 0xb2)
9139 {
9140 unsigned char buf[9];
9141 unsigned int i, len;
9142 unsigned long offset;
9143
9144 for (i = 0; i < sizeof (buf); i++)
9145 {
9146 GET_OP (buf[i]);
9147 if ((buf[i] & 0x80) == 0)
9148 break;
9149 }
9150 if (i == sizeof (buf))
9151 {
9152 error (_("corrupt change to vsp\n"));
9153 res = false;
9154 }
9155 else
9156 {
9157 offset = read_leb128 (buf, buf + i + 1, false, &len, NULL);
9158 assert (len == i + 1);
9159 offset = offset * 4 + 0x204;
9160 printf ("vsp = vsp + %ld", offset);
9161 }
9162 }
9163 else if (op == 0xb3 || op == 0xc8 || op == 0xc9)
9164 {
9165 unsigned int first, last;
9166
9167 GET_OP (op2);
9168 first = op2 >> 4;
9169 last = op2 & 0x0f;
9170 if (op == 0xc8)
9171 first = first + 16;
9172 printf ("pop {D%d", first);
9173 if (last)
9174 printf ("-D%d", first + last);
9175 printf ("}");
9176 }
9177 else if ((op & 0xf8) == 0xb8 || (op & 0xf8) == 0xd0)
9178 {
9179 unsigned int count = op & 0x07;
9180
9181 printf ("pop {D8");
9182 if (count)
9183 printf ("-D%d", 8 + count);
9184 printf ("}");
9185 }
9186 else if (op >= 0xc0 && op <= 0xc5)
9187 {
9188 unsigned int count = op & 0x07;
9189
9190 printf (" pop {wR10");
9191 if (count)
9192 printf ("-wR%d", 10 + count);
9193 printf ("}");
9194 }
9195 else if (op == 0xc6)
9196 {
9197 unsigned int first, last;
9198
9199 GET_OP (op2);
9200 first = op2 >> 4;
9201 last = op2 & 0x0f;
9202 printf ("pop {wR%d", first);
9203 if (last)
9204 printf ("-wR%d", first + last);
9205 printf ("}");
9206 }
9207 else if (op == 0xc7)
9208 {
9209 GET_OP (op2);
9210 if (op2 == 0 || (op2 & 0xf0) != 0)
9211 printf (_("[Spare]"));
9212 else
9213 {
9214 unsigned int mask = op2 & 0x0f;
9215 bool first = true;
9216 int i;
9217
9218 printf ("pop {");
9219 for (i = 0; i < 4; i++)
9220 if (mask & (1 << i))
9221 {
9222 if (first)
9223 first = false;
9224 else
9225 printf (", ");
9226 printf ("wCGR%d", i);
9227 }
9228 printf ("}");
9229 }
9230 }
9231 else
9232 {
9233 printf (_(" [unsupported opcode]"));
9234 res = false;
9235 }
9236
9237 printf ("\n");
9238 }
9239
9240 return res;
9241 }
9242
9243 static bool
9244 decode_tic6x_unwind_bytecode (Filedata * filedata,
9245 struct arm_unw_aux_info * aux,
9246 unsigned int word,
9247 unsigned int remaining,
9248 unsigned int more_words,
9249 bfd_vma data_offset,
9250 Elf_Internal_Shdr * data_sec,
9251 struct arm_section * data_arm_sec)
9252 {
9253 struct absaddr addr;
9254
9255 /* Decode the unwinding instructions. */
9256 while (1)
9257 {
9258 unsigned int op, op2;
9259
9260 ADVANCE;
9261 if (remaining == 0)
9262 break;
9263 remaining--;
9264 op = word >> 24;
9265 word <<= 8;
9266
9267 printf (" 0x%02x ", op);
9268
9269 if ((op & 0xc0) == 0x00)
9270 {
9271 int offset = ((op & 0x3f) << 3) + 8;
9272 printf (" sp = sp + %d", offset);
9273 }
9274 else if ((op & 0xc0) == 0x80)
9275 {
9276 GET_OP (op2);
9277 if (op == 0x80 && op2 == 0)
9278 printf (_("Refuse to unwind"));
9279 else
9280 {
9281 unsigned int mask = ((op & 0x1f) << 8) | op2;
9282 if (op & 0x20)
9283 printf ("pop compact {");
9284 else
9285 printf ("pop {");
9286
9287 decode_tic6x_unwind_regmask (mask);
9288 printf("}");
9289 }
9290 }
9291 else if ((op & 0xf0) == 0xc0)
9292 {
9293 unsigned int reg;
9294 unsigned int nregs;
9295 unsigned int i;
9296 const char *name;
9297 struct
9298 {
9299 unsigned int offset;
9300 unsigned int reg;
9301 } regpos[16];
9302
9303 /* Scan entire instruction first so that GET_OP output is not
9304 interleaved with disassembly. */
9305 nregs = 0;
9306 for (i = 0; nregs < (op & 0xf); i++)
9307 {
9308 GET_OP (op2);
9309 reg = op2 >> 4;
9310 if (reg != 0xf)
9311 {
9312 regpos[nregs].offset = i * 2;
9313 regpos[nregs].reg = reg;
9314 nregs++;
9315 }
9316
9317 reg = op2 & 0xf;
9318 if (reg != 0xf)
9319 {
9320 regpos[nregs].offset = i * 2 + 1;
9321 regpos[nregs].reg = reg;
9322 nregs++;
9323 }
9324 }
9325
9326 printf (_("pop frame {"));
9327 if (nregs == 0)
9328 {
9329 printf (_("*corrupt* - no registers specified"));
9330 }
9331 else
9332 {
9333 reg = nregs - 1;
9334 for (i = i * 2; i > 0; i--)
9335 {
9336 if (regpos[reg].offset == i - 1)
9337 {
9338 name = tic6x_unwind_regnames[regpos[reg].reg];
9339 if (reg > 0)
9340 reg--;
9341 }
9342 else
9343 name = _("[pad]");
9344
9345 fputs (name, stdout);
9346 if (i > 1)
9347 printf (", ");
9348 }
9349 }
9350
9351 printf ("}");
9352 }
9353 else if (op == 0xd0)
9354 printf (" MOV FP, SP");
9355 else if (op == 0xd1)
9356 printf (" __c6xabi_pop_rts");
9357 else if (op == 0xd2)
9358 {
9359 unsigned char buf[9];
9360 unsigned int i, len;
9361 unsigned long offset;
9362
9363 for (i = 0; i < sizeof (buf); i++)
9364 {
9365 GET_OP (buf[i]);
9366 if ((buf[i] & 0x80) == 0)
9367 break;
9368 }
9369 /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */
9370 if (i == sizeof (buf))
9371 {
9372 warn (_("Corrupt stack pointer adjustment detected\n"));
9373 return false;
9374 }
9375
9376 offset = read_leb128 (buf, buf + i + 1, false, &len, NULL);
9377 assert (len == i + 1);
9378 offset = offset * 8 + 0x408;
9379 printf (_("sp = sp + %ld"), offset);
9380 }
9381 else if ((op & 0xf0) == 0xe0)
9382 {
9383 if ((op & 0x0f) == 7)
9384 printf (" RETURN");
9385 else
9386 printf (" MV %s, B3", tic6x_unwind_regnames[op & 0x0f]);
9387 }
9388 else
9389 {
9390 printf (_(" [unsupported opcode]"));
9391 }
9392 putchar ('\n');
9393 }
9394
9395 return true;
9396 }
9397
9398 static bfd_vma
9399 arm_expand_prel31 (Filedata * filedata, bfd_vma word, bfd_vma where)
9400 {
9401 bfd_vma offset;
9402
9403 offset = word & 0x7fffffff;
9404 if (offset & 0x40000000)
9405 offset |= ~ (bfd_vma) 0x7fffffff;
9406
9407 if (filedata->file_header.e_machine == EM_TI_C6000)
9408 offset <<= 1;
9409
9410 return offset + where;
9411 }
9412
9413 static bool
9414 decode_arm_unwind (Filedata * filedata,
9415 struct arm_unw_aux_info * aux,
9416 unsigned int word,
9417 unsigned int remaining,
9418 bfd_vma data_offset,
9419 Elf_Internal_Shdr * data_sec,
9420 struct arm_section * data_arm_sec)
9421 {
9422 int per_index;
9423 unsigned int more_words = 0;
9424 struct absaddr addr;
9425 bfd_vma sym_name = (bfd_vma) -1;
9426 bool res = true;
9427
9428 if (remaining == 0)
9429 {
9430 /* Fetch the first word.
9431 Note - when decoding an object file the address extracted
9432 here will always be 0. So we also pass in the sym_name
9433 parameter so that we can find the symbol associated with
9434 the personality routine. */
9435 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, data_offset,
9436 & word, & addr, & sym_name))
9437 return false;
9438
9439 remaining = 4;
9440 }
9441 else
9442 {
9443 addr.section = SHN_UNDEF;
9444 addr.offset = 0;
9445 }
9446
9447 if ((word & 0x80000000) == 0)
9448 {
9449 /* Expand prel31 for personality routine. */
9450 bfd_vma fn;
9451 const char *procname;
9452
9453 fn = arm_expand_prel31 (filedata, word, data_sec->sh_addr + data_offset);
9454 printf (_(" Personality routine: "));
9455 if (fn == 0
9456 && addr.section == SHN_UNDEF && addr.offset == 0
9457 && sym_name != (bfd_vma) -1 && sym_name < aux->strtab_size)
9458 {
9459 procname = aux->strtab + sym_name;
9460 print_vma (fn, PREFIX_HEX);
9461 if (procname)
9462 {
9463 fputs (" <", stdout);
9464 fputs (procname, stdout);
9465 fputc ('>', stdout);
9466 }
9467 }
9468 else
9469 procname = arm_print_vma_and_name (filedata, aux, fn, addr);
9470 fputc ('\n', stdout);
9471
9472 /* The GCC personality routines use the standard compact
9473 encoding, starting with one byte giving the number of
9474 words. */
9475 if (procname != NULL
9476 && (startswith (procname, "__gcc_personality_v0")
9477 || startswith (procname, "__gxx_personality_v0")
9478 || startswith (procname, "__gcj_personality_v0")
9479 || startswith (procname, "__gnu_objc_personality_v0")))
9480 {
9481 remaining = 0;
9482 more_words = 1;
9483 ADVANCE;
9484 if (!remaining)
9485 {
9486 printf (_(" [Truncated data]\n"));
9487 return false;
9488 }
9489 more_words = word >> 24;
9490 word <<= 8;
9491 remaining--;
9492 per_index = -1;
9493 }
9494 else
9495 return true;
9496 }
9497 else
9498 {
9499 /* ARM EHABI Section 6.3:
9500
9501 An exception-handling table entry for the compact model looks like:
9502
9503 31 30-28 27-24 23-0
9504 -- ----- ----- ----
9505 1 0 index Data for personalityRoutine[index] */
9506
9507 if (filedata->file_header.e_machine == EM_ARM
9508 && (word & 0x70000000))
9509 {
9510 warn (_("Corrupt ARM compact model table entry: %x \n"), word);
9511 res = false;
9512 }
9513
9514 per_index = (word >> 24) & 0x7f;
9515 printf (_(" Compact model index: %d\n"), per_index);
9516 if (per_index == 0)
9517 {
9518 more_words = 0;
9519 word <<= 8;
9520 remaining--;
9521 }
9522 else if (per_index < 3)
9523 {
9524 more_words = (word >> 16) & 0xff;
9525 word <<= 16;
9526 remaining -= 2;
9527 }
9528 }
9529
9530 switch (filedata->file_header.e_machine)
9531 {
9532 case EM_ARM:
9533 if (per_index < 3)
9534 {
9535 if (! decode_arm_unwind_bytecode (filedata, aux, word, remaining, more_words,
9536 data_offset, data_sec, data_arm_sec))
9537 res = false;
9538 }
9539 else
9540 {
9541 warn (_("Unknown ARM compact model index encountered\n"));
9542 printf (_(" [reserved]\n"));
9543 res = false;
9544 }
9545 break;
9546
9547 case EM_TI_C6000:
9548 if (per_index < 3)
9549 {
9550 if (! decode_tic6x_unwind_bytecode (filedata, aux, word, remaining, more_words,
9551 data_offset, data_sec, data_arm_sec))
9552 res = false;
9553 }
9554 else if (per_index < 5)
9555 {
9556 if (((word >> 17) & 0x7f) == 0x7f)
9557 printf (_(" Restore stack from frame pointer\n"));
9558 else
9559 printf (_(" Stack increment %d\n"), (word >> 14) & 0x1fc);
9560 printf (_(" Registers restored: "));
9561 if (per_index == 4)
9562 printf (" (compact) ");
9563 decode_tic6x_unwind_regmask ((word >> 4) & 0x1fff);
9564 putchar ('\n');
9565 printf (_(" Return register: %s\n"),
9566 tic6x_unwind_regnames[word & 0xf]);
9567 }
9568 else
9569 printf (_(" [reserved (%d)]\n"), per_index);
9570 break;
9571
9572 default:
9573 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
9574 filedata->file_header.e_machine);
9575 res = false;
9576 }
9577
9578 /* Decode the descriptors. Not implemented. */
9579
9580 return res;
9581 }
9582
9583 static bool
9584 dump_arm_unwind (Filedata * filedata,
9585 struct arm_unw_aux_info * aux,
9586 Elf_Internal_Shdr * exidx_sec)
9587 {
9588 struct arm_section exidx_arm_sec, extab_arm_sec;
9589 unsigned int i, exidx_len;
9590 unsigned long j, nfuns;
9591 bool res = true;
9592
9593 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
9594 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
9595 exidx_len = exidx_sec->sh_size / 8;
9596
9597 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
9598 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
9599 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
9600 aux->funtab[nfuns++] = aux->symtab[j];
9601 aux->nfuns = nfuns;
9602 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
9603
9604 for (i = 0; i < exidx_len; i++)
9605 {
9606 unsigned int exidx_fn, exidx_entry;
9607 struct absaddr fn_addr, entry_addr;
9608 bfd_vma fn;
9609
9610 fputc ('\n', stdout);
9611
9612 if (! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
9613 8 * i, & exidx_fn, & fn_addr, NULL)
9614 || ! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
9615 8 * i + 4, & exidx_entry, & entry_addr, NULL))
9616 {
9617 free (aux->funtab);
9618 arm_free_section (& exidx_arm_sec);
9619 arm_free_section (& extab_arm_sec);
9620 return false;
9621 }
9622
9623 /* ARM EHABI, Section 5:
9624 An index table entry consists of 2 words.
9625 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
9626 if (exidx_fn & 0x80000000)
9627 {
9628 warn (_("corrupt index table entry: %x\n"), exidx_fn);
9629 res = false;
9630 }
9631
9632 fn = arm_expand_prel31 (filedata, exidx_fn, exidx_sec->sh_addr + 8 * i);
9633
9634 arm_print_vma_and_name (filedata, aux, fn, fn_addr);
9635 fputs (": ", stdout);
9636
9637 if (exidx_entry == 1)
9638 {
9639 print_vma (exidx_entry, PREFIX_HEX);
9640 fputs (" [cantunwind]\n", stdout);
9641 }
9642 else if (exidx_entry & 0x80000000)
9643 {
9644 print_vma (exidx_entry, PREFIX_HEX);
9645 fputc ('\n', stdout);
9646 decode_arm_unwind (filedata, aux, exidx_entry, 4, 0, NULL, NULL);
9647 }
9648 else
9649 {
9650 bfd_vma table, table_offset = 0;
9651 Elf_Internal_Shdr *table_sec;
9652
9653 fputs ("@", stdout);
9654 table = arm_expand_prel31 (filedata, exidx_entry, exidx_sec->sh_addr + 8 * i + 4);
9655 print_vma (table, PREFIX_HEX);
9656 printf ("\n");
9657
9658 /* Locate the matching .ARM.extab. */
9659 if (entry_addr.section != SHN_UNDEF
9660 && entry_addr.section < filedata->file_header.e_shnum)
9661 {
9662 table_sec = filedata->section_headers + entry_addr.section;
9663 table_offset = entry_addr.offset;
9664 /* PR 18879 */
9665 if (table_offset > table_sec->sh_size
9666 || ((bfd_signed_vma) table_offset) < 0)
9667 {
9668 warn (_("Unwind entry contains corrupt offset (0x%lx) into section %s\n"),
9669 (unsigned long) table_offset,
9670 printable_section_name (filedata, table_sec));
9671 res = false;
9672 continue;
9673 }
9674 }
9675 else
9676 {
9677 table_sec = find_section_by_address (filedata, table);
9678 if (table_sec != NULL)
9679 table_offset = table - table_sec->sh_addr;
9680 }
9681
9682 if (table_sec == NULL)
9683 {
9684 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
9685 (unsigned long) table);
9686 res = false;
9687 continue;
9688 }
9689
9690 if (! decode_arm_unwind (filedata, aux, 0, 0, table_offset, table_sec,
9691 &extab_arm_sec))
9692 res = false;
9693 }
9694 }
9695
9696 printf ("\n");
9697
9698 free (aux->funtab);
9699 arm_free_section (&exidx_arm_sec);
9700 arm_free_section (&extab_arm_sec);
9701
9702 return res;
9703 }
9704
9705 /* Used for both ARM and C6X unwinding tables. */
9706
9707 static bool
9708 arm_process_unwind (Filedata * filedata)
9709 {
9710 struct arm_unw_aux_info aux;
9711 Elf_Internal_Shdr *unwsec = NULL;
9712 Elf_Internal_Shdr *sec;
9713 unsigned long i;
9714 unsigned int sec_type;
9715 bool res = true;
9716
9717 switch (filedata->file_header.e_machine)
9718 {
9719 case EM_ARM:
9720 sec_type = SHT_ARM_EXIDX;
9721 break;
9722
9723 case EM_TI_C6000:
9724 sec_type = SHT_C6000_UNWIND;
9725 break;
9726
9727 default:
9728 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
9729 filedata->file_header.e_machine);
9730 return false;
9731 }
9732
9733 if (filedata->string_table == NULL)
9734 return false;
9735
9736 memset (& aux, 0, sizeof (aux));
9737 aux.filedata = filedata;
9738
9739 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
9740 {
9741 if (sec->sh_type == SHT_SYMTAB)
9742 {
9743 if (aux.symtab)
9744 {
9745 error (_("Multiple symbol tables encountered\n"));
9746 free (aux.symtab);
9747 aux.symtab = NULL;
9748 free (aux.strtab);
9749 aux.strtab = NULL;
9750 }
9751 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
9752 &aux.strtab, &aux.strtab_size))
9753 return false;
9754 }
9755 else if (sec->sh_type == sec_type)
9756 unwsec = sec;
9757 }
9758
9759 if (unwsec == NULL)
9760 printf (_("\nThere are no unwind sections in this file.\n"));
9761 else
9762 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
9763 {
9764 if (sec->sh_type == sec_type)
9765 {
9766 unsigned long num_unwind = sec->sh_size / (2 * eh_addr_size);
9767 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
9768 "contains %lu entry:\n",
9769 "\nUnwind section '%s' at offset 0x%lx "
9770 "contains %lu entries:\n",
9771 num_unwind),
9772 printable_section_name (filedata, sec),
9773 (unsigned long) sec->sh_offset,
9774 num_unwind);
9775
9776 if (! dump_arm_unwind (filedata, &aux, sec))
9777 res = false;
9778 }
9779 }
9780
9781 free (aux.symtab);
9782 free ((char *) aux.strtab);
9783
9784 return res;
9785 }
9786
9787 static bool
9788 process_unwind (Filedata * filedata)
9789 {
9790 struct unwind_handler
9791 {
9792 unsigned int machtype;
9793 bool (* handler)(Filedata *);
9794 } handlers[] =
9795 {
9796 { EM_ARM, arm_process_unwind },
9797 { EM_IA_64, ia64_process_unwind },
9798 { EM_PARISC, hppa_process_unwind },
9799 { EM_TI_C6000, arm_process_unwind },
9800 { 0, NULL }
9801 };
9802 int i;
9803
9804 if (!do_unwind)
9805 return true;
9806
9807 for (i = 0; handlers[i].handler != NULL; i++)
9808 if (filedata->file_header.e_machine == handlers[i].machtype)
9809 return handlers[i].handler (filedata);
9810
9811 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
9812 get_machine_name (filedata->file_header.e_machine));
9813 return true;
9814 }
9815
9816 static void
9817 dynamic_section_aarch64_val (Elf_Internal_Dyn * entry)
9818 {
9819 switch (entry->d_tag)
9820 {
9821 case DT_AARCH64_BTI_PLT:
9822 case DT_AARCH64_PAC_PLT:
9823 break;
9824 default:
9825 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9826 break;
9827 }
9828 putchar ('\n');
9829 }
9830
9831 static void
9832 dynamic_section_mips_val (Filedata * filedata, Elf_Internal_Dyn * entry)
9833 {
9834 switch (entry->d_tag)
9835 {
9836 case DT_MIPS_FLAGS:
9837 if (entry->d_un.d_val == 0)
9838 printf (_("NONE"));
9839 else
9840 {
9841 static const char * opts[] =
9842 {
9843 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
9844 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
9845 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
9846 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
9847 "RLD_ORDER_SAFE"
9848 };
9849 unsigned int cnt;
9850 bool first = true;
9851
9852 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
9853 if (entry->d_un.d_val & (1 << cnt))
9854 {
9855 printf ("%s%s", first ? "" : " ", opts[cnt]);
9856 first = false;
9857 }
9858 }
9859 break;
9860
9861 case DT_MIPS_IVERSION:
9862 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
9863 printf (_("Interface Version: %s"),
9864 GET_DYNAMIC_NAME (filedata, entry->d_un.d_val));
9865 else
9866 {
9867 char buf[40];
9868 sprintf_vma (buf, entry->d_un.d_ptr);
9869 /* Note: coded this way so that there is a single string for translation. */
9870 printf (_("<corrupt: %s>"), buf);
9871 }
9872 break;
9873
9874 case DT_MIPS_TIME_STAMP:
9875 {
9876 char timebuf[128];
9877 struct tm * tmp;
9878 time_t atime = entry->d_un.d_val;
9879
9880 tmp = gmtime (&atime);
9881 /* PR 17531: file: 6accc532. */
9882 if (tmp == NULL)
9883 snprintf (timebuf, sizeof (timebuf), _("<corrupt>"));
9884 else
9885 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
9886 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
9887 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
9888 printf (_("Time Stamp: %s"), timebuf);
9889 }
9890 break;
9891
9892 case DT_MIPS_RLD_VERSION:
9893 case DT_MIPS_LOCAL_GOTNO:
9894 case DT_MIPS_CONFLICTNO:
9895 case DT_MIPS_LIBLISTNO:
9896 case DT_MIPS_SYMTABNO:
9897 case DT_MIPS_UNREFEXTNO:
9898 case DT_MIPS_HIPAGENO:
9899 case DT_MIPS_DELTA_CLASS_NO:
9900 case DT_MIPS_DELTA_INSTANCE_NO:
9901 case DT_MIPS_DELTA_RELOC_NO:
9902 case DT_MIPS_DELTA_SYM_NO:
9903 case DT_MIPS_DELTA_CLASSSYM_NO:
9904 case DT_MIPS_COMPACT_SIZE:
9905 print_vma (entry->d_un.d_val, DEC);
9906 break;
9907
9908 case DT_MIPS_XHASH:
9909 filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val;
9910 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
9911 /* Falls through. */
9912
9913 default:
9914 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9915 }
9916 putchar ('\n');
9917 }
9918
9919 static void
9920 dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
9921 {
9922 switch (entry->d_tag)
9923 {
9924 case DT_HP_DLD_FLAGS:
9925 {
9926 static struct
9927 {
9928 long int bit;
9929 const char * str;
9930 }
9931 flags[] =
9932 {
9933 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
9934 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
9935 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
9936 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
9937 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
9938 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
9939 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
9940 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
9941 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
9942 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
9943 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
9944 { DT_HP_GST, "HP_GST" },
9945 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
9946 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
9947 { DT_HP_NODELETE, "HP_NODELETE" },
9948 { DT_HP_GROUP, "HP_GROUP" },
9949 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
9950 };
9951 bool first = true;
9952 size_t cnt;
9953 bfd_vma val = entry->d_un.d_val;
9954
9955 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
9956 if (val & flags[cnt].bit)
9957 {
9958 if (! first)
9959 putchar (' ');
9960 fputs (flags[cnt].str, stdout);
9961 first = false;
9962 val ^= flags[cnt].bit;
9963 }
9964
9965 if (val != 0 || first)
9966 {
9967 if (! first)
9968 putchar (' ');
9969 print_vma (val, HEX);
9970 }
9971 }
9972 break;
9973
9974 default:
9975 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9976 break;
9977 }
9978 putchar ('\n');
9979 }
9980
9981 #ifdef BFD64
9982
9983 /* VMS vs Unix time offset and factor. */
9984
9985 #define VMS_EPOCH_OFFSET 35067168000000000LL
9986 #define VMS_GRANULARITY_FACTOR 10000000
9987 #ifndef INT64_MIN
9988 #define INT64_MIN (-9223372036854775807LL - 1)
9989 #endif
9990
9991 /* Display a VMS time in a human readable format. */
9992
9993 static void
9994 print_vms_time (bfd_int64_t vmstime)
9995 {
9996 struct tm *tm = NULL;
9997 time_t unxtime;
9998
9999 if (vmstime >= INT64_MIN + VMS_EPOCH_OFFSET)
10000 {
10001 vmstime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
10002 unxtime = vmstime;
10003 if (unxtime == vmstime)
10004 tm = gmtime (&unxtime);
10005 }
10006 if (tm != NULL)
10007 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
10008 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
10009 tm->tm_hour, tm->tm_min, tm->tm_sec);
10010 }
10011 #endif /* BFD64 */
10012
10013 static void
10014 dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
10015 {
10016 switch (entry->d_tag)
10017 {
10018 case DT_IA_64_PLT_RESERVE:
10019 /* First 3 slots reserved. */
10020 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10021 printf (" -- ");
10022 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
10023 break;
10024
10025 case DT_IA_64_VMS_LINKTIME:
10026 #ifdef BFD64
10027 print_vms_time (entry->d_un.d_val);
10028 #endif
10029 break;
10030
10031 case DT_IA_64_VMS_LNKFLAGS:
10032 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10033 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
10034 printf (" CALL_DEBUG");
10035 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
10036 printf (" NOP0BUFS");
10037 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
10038 printf (" P0IMAGE");
10039 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
10040 printf (" MKTHREADS");
10041 if (entry->d_un.d_val & VMS_LF_UPCALLS)
10042 printf (" UPCALLS");
10043 if (entry->d_un.d_val & VMS_LF_IMGSTA)
10044 printf (" IMGSTA");
10045 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
10046 printf (" INITIALIZE");
10047 if (entry->d_un.d_val & VMS_LF_MAIN)
10048 printf (" MAIN");
10049 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
10050 printf (" EXE_INIT");
10051 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
10052 printf (" TBK_IN_IMG");
10053 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
10054 printf (" DBG_IN_IMG");
10055 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
10056 printf (" TBK_IN_DSF");
10057 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
10058 printf (" DBG_IN_DSF");
10059 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
10060 printf (" SIGNATURES");
10061 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
10062 printf (" REL_SEG_OFF");
10063 break;
10064
10065 default:
10066 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10067 break;
10068 }
10069 putchar ('\n');
10070 }
10071
10072 static bool
10073 get_32bit_dynamic_section (Filedata * filedata)
10074 {
10075 Elf32_External_Dyn * edyn;
10076 Elf32_External_Dyn * ext;
10077 Elf_Internal_Dyn * entry;
10078
10079 edyn = (Elf32_External_Dyn *) get_data (NULL, filedata,
10080 filedata->dynamic_addr, 1,
10081 filedata->dynamic_size,
10082 _("dynamic section"));
10083 if (!edyn)
10084 return false;
10085
10086 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
10087 might not have the luxury of section headers. Look for the DT_NULL
10088 terminator to determine the number of entries. */
10089 for (ext = edyn, filedata->dynamic_nent = 0;
10090 (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size;
10091 ext++)
10092 {
10093 filedata->dynamic_nent++;
10094 if (BYTE_GET (ext->d_tag) == DT_NULL)
10095 break;
10096 }
10097
10098 filedata->dynamic_section
10099 = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry));
10100 if (filedata->dynamic_section == NULL)
10101 {
10102 error (_("Out of memory allocating space for %lu dynamic entries\n"),
10103 (unsigned long) filedata->dynamic_nent);
10104 free (edyn);
10105 return false;
10106 }
10107
10108 for (ext = edyn, entry = filedata->dynamic_section;
10109 entry < filedata->dynamic_section + filedata->dynamic_nent;
10110 ext++, entry++)
10111 {
10112 entry->d_tag = BYTE_GET (ext->d_tag);
10113 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
10114 }
10115
10116 free (edyn);
10117
10118 return true;
10119 }
10120
10121 static bool
10122 get_64bit_dynamic_section (Filedata * filedata)
10123 {
10124 Elf64_External_Dyn * edyn;
10125 Elf64_External_Dyn * ext;
10126 Elf_Internal_Dyn * entry;
10127
10128 /* Read in the data. */
10129 edyn = (Elf64_External_Dyn *) get_data (NULL, filedata,
10130 filedata->dynamic_addr, 1,
10131 filedata->dynamic_size,
10132 _("dynamic section"));
10133 if (!edyn)
10134 return false;
10135
10136 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
10137 might not have the luxury of section headers. Look for the DT_NULL
10138 terminator to determine the number of entries. */
10139 for (ext = edyn, filedata->dynamic_nent = 0;
10140 /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer. */
10141 (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size;
10142 ext++)
10143 {
10144 filedata->dynamic_nent++;
10145 if (BYTE_GET (ext->d_tag) == DT_NULL)
10146 break;
10147 }
10148
10149 filedata->dynamic_section
10150 = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry));
10151 if (filedata->dynamic_section == NULL)
10152 {
10153 error (_("Out of memory allocating space for %lu dynamic entries\n"),
10154 (unsigned long) filedata->dynamic_nent);
10155 free (edyn);
10156 return false;
10157 }
10158
10159 /* Convert from external to internal formats. */
10160 for (ext = edyn, entry = filedata->dynamic_section;
10161 entry < filedata->dynamic_section + filedata->dynamic_nent;
10162 ext++, entry++)
10163 {
10164 entry->d_tag = BYTE_GET (ext->d_tag);
10165 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
10166 }
10167
10168 free (edyn);
10169
10170 return true;
10171 }
10172
10173 static void
10174 print_dynamic_flags (bfd_vma flags)
10175 {
10176 bool first = true;
10177
10178 while (flags)
10179 {
10180 bfd_vma flag;
10181
10182 flag = flags & - flags;
10183 flags &= ~ flag;
10184
10185 if (first)
10186 first = false;
10187 else
10188 putc (' ', stdout);
10189
10190 switch (flag)
10191 {
10192 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
10193 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
10194 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
10195 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
10196 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
10197 default: fputs (_("unknown"), stdout); break;
10198 }
10199 }
10200 puts ("");
10201 }
10202
10203 static bfd_vma *
10204 get_dynamic_data (Filedata * filedata, bfd_size_type number, unsigned int ent_size)
10205 {
10206 unsigned char * e_data;
10207 bfd_vma * i_data;
10208
10209 /* If the size_t type is smaller than the bfd_size_type, eg because
10210 you are building a 32-bit tool on a 64-bit host, then make sure
10211 that when (number) is cast to (size_t) no information is lost. */
10212 if (sizeof (size_t) < sizeof (bfd_size_type)
10213 && (bfd_size_type) ((size_t) number) != number)
10214 {
10215 error (_("Size truncation prevents reading %s elements of size %u\n"),
10216 bfd_vmatoa ("u", number), ent_size);
10217 return NULL;
10218 }
10219
10220 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
10221 attempting to allocate memory when the read is bound to fail. */
10222 if (ent_size * number > filedata->file_size)
10223 {
10224 error (_("Invalid number of dynamic entries: %s\n"),
10225 bfd_vmatoa ("u", number));
10226 return NULL;
10227 }
10228
10229 e_data = (unsigned char *) cmalloc ((size_t) number, ent_size);
10230 if (e_data == NULL)
10231 {
10232 error (_("Out of memory reading %s dynamic entries\n"),
10233 bfd_vmatoa ("u", number));
10234 return NULL;
10235 }
10236
10237 if (fread (e_data, ent_size, (size_t) number, filedata->handle) != number)
10238 {
10239 error (_("Unable to read in %s bytes of dynamic data\n"),
10240 bfd_vmatoa ("u", number * ent_size));
10241 free (e_data);
10242 return NULL;
10243 }
10244
10245 i_data = (bfd_vma *) cmalloc ((size_t) number, sizeof (*i_data));
10246 if (i_data == NULL)
10247 {
10248 error (_("Out of memory allocating space for %s dynamic entries\n"),
10249 bfd_vmatoa ("u", number));
10250 free (e_data);
10251 return NULL;
10252 }
10253
10254 while (number--)
10255 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
10256
10257 free (e_data);
10258
10259 return i_data;
10260 }
10261
10262 static unsigned long
10263 get_num_dynamic_syms (Filedata * filedata)
10264 {
10265 unsigned long num_of_syms = 0;
10266
10267 if (!do_histogram && (!do_using_dynamic || do_dyn_syms))
10268 return num_of_syms;
10269
10270 if (filedata->dynamic_info[DT_HASH])
10271 {
10272 unsigned char nb[8];
10273 unsigned char nc[8];
10274 unsigned int hash_ent_size = 4;
10275
10276 if ((filedata->file_header.e_machine == EM_ALPHA
10277 || filedata->file_header.e_machine == EM_S390
10278 || filedata->file_header.e_machine == EM_S390_OLD)
10279 && filedata->file_header.e_ident[EI_CLASS] == ELFCLASS64)
10280 hash_ent_size = 8;
10281
10282 if (fseek (filedata->handle,
10283 (filedata->archive_file_offset
10284 + offset_from_vma (filedata, filedata->dynamic_info[DT_HASH],
10285 sizeof nb + sizeof nc)),
10286 SEEK_SET))
10287 {
10288 error (_("Unable to seek to start of dynamic information\n"));
10289 goto no_hash;
10290 }
10291
10292 if (fread (nb, hash_ent_size, 1, filedata->handle) != 1)
10293 {
10294 error (_("Failed to read in number of buckets\n"));
10295 goto no_hash;
10296 }
10297
10298 if (fread (nc, hash_ent_size, 1, filedata->handle) != 1)
10299 {
10300 error (_("Failed to read in number of chains\n"));
10301 goto no_hash;
10302 }
10303
10304 filedata->nbuckets = byte_get (nb, hash_ent_size);
10305 filedata->nchains = byte_get (nc, hash_ent_size);
10306
10307 if (filedata->nbuckets != 0 && filedata->nchains != 0)
10308 {
10309 filedata->buckets = get_dynamic_data (filedata, filedata->nbuckets,
10310 hash_ent_size);
10311 filedata->chains = get_dynamic_data (filedata, filedata->nchains,
10312 hash_ent_size);
10313
10314 if (filedata->buckets != NULL && filedata->chains != NULL)
10315 num_of_syms = filedata->nchains;
10316 }
10317 no_hash:
10318 if (num_of_syms == 0)
10319 {
10320 free (filedata->buckets);
10321 filedata->buckets = NULL;
10322 free (filedata->chains);
10323 filedata->chains = NULL;
10324 filedata->nbuckets = 0;
10325 }
10326 }
10327
10328 if (filedata->dynamic_info_DT_GNU_HASH)
10329 {
10330 unsigned char nb[16];
10331 bfd_vma i, maxchain = 0xffffffff, bitmaskwords;
10332 bfd_vma buckets_vma;
10333 unsigned long hn;
10334
10335 if (fseek (filedata->handle,
10336 (filedata->archive_file_offset
10337 + offset_from_vma (filedata,
10338 filedata->dynamic_info_DT_GNU_HASH,
10339 sizeof nb)),
10340 SEEK_SET))
10341 {
10342 error (_("Unable to seek to start of dynamic information\n"));
10343 goto no_gnu_hash;
10344 }
10345
10346 if (fread (nb, 16, 1, filedata->handle) != 1)
10347 {
10348 error (_("Failed to read in number of buckets\n"));
10349 goto no_gnu_hash;
10350 }
10351
10352 filedata->ngnubuckets = byte_get (nb, 4);
10353 filedata->gnusymidx = byte_get (nb + 4, 4);
10354 bitmaskwords = byte_get (nb + 8, 4);
10355 buckets_vma = filedata->dynamic_info_DT_GNU_HASH + 16;
10356 if (is_32bit_elf)
10357 buckets_vma += bitmaskwords * 4;
10358 else
10359 buckets_vma += bitmaskwords * 8;
10360
10361 if (fseek (filedata->handle,
10362 (filedata->archive_file_offset
10363 + offset_from_vma (filedata, buckets_vma, 4)),
10364 SEEK_SET))
10365 {
10366 error (_("Unable to seek to start of dynamic information\n"));
10367 goto no_gnu_hash;
10368 }
10369
10370 filedata->gnubuckets
10371 = get_dynamic_data (filedata, filedata->ngnubuckets, 4);
10372
10373 if (filedata->gnubuckets == NULL)
10374 goto no_gnu_hash;
10375
10376 for (i = 0; i < filedata->ngnubuckets; i++)
10377 if (filedata->gnubuckets[i] != 0)
10378 {
10379 if (filedata->gnubuckets[i] < filedata->gnusymidx)
10380 goto no_gnu_hash;
10381
10382 if (maxchain == 0xffffffff || filedata->gnubuckets[i] > maxchain)
10383 maxchain = filedata->gnubuckets[i];
10384 }
10385
10386 if (maxchain == 0xffffffff)
10387 goto no_gnu_hash;
10388
10389 maxchain -= filedata->gnusymidx;
10390
10391 if (fseek (filedata->handle,
10392 (filedata->archive_file_offset
10393 + offset_from_vma (filedata,
10394 buckets_vma + 4 * (filedata->ngnubuckets
10395 + maxchain),
10396 4)),
10397 SEEK_SET))
10398 {
10399 error (_("Unable to seek to start of dynamic information\n"));
10400 goto no_gnu_hash;
10401 }
10402
10403 do
10404 {
10405 if (fread (nb, 4, 1, filedata->handle) != 1)
10406 {
10407 error (_("Failed to determine last chain length\n"));
10408 goto no_gnu_hash;
10409 }
10410
10411 if (maxchain + 1 == 0)
10412 goto no_gnu_hash;
10413
10414 ++maxchain;
10415 }
10416 while ((byte_get (nb, 4) & 1) == 0);
10417
10418 if (fseek (filedata->handle,
10419 (filedata->archive_file_offset
10420 + offset_from_vma (filedata, (buckets_vma
10421 + 4 * filedata->ngnubuckets),
10422 4)),
10423 SEEK_SET))
10424 {
10425 error (_("Unable to seek to start of dynamic information\n"));
10426 goto no_gnu_hash;
10427 }
10428
10429 filedata->gnuchains = get_dynamic_data (filedata, maxchain, 4);
10430 filedata->ngnuchains = maxchain;
10431
10432 if (filedata->gnuchains == NULL)
10433 goto no_gnu_hash;
10434
10435 if (filedata->dynamic_info_DT_MIPS_XHASH)
10436 {
10437 if (fseek (filedata->handle,
10438 (filedata->archive_file_offset
10439 + offset_from_vma (filedata, (buckets_vma
10440 + 4 * (filedata->ngnubuckets
10441 + maxchain)), 4)),
10442 SEEK_SET))
10443 {
10444 error (_("Unable to seek to start of dynamic information\n"));
10445 goto no_gnu_hash;
10446 }
10447
10448 filedata->mipsxlat = get_dynamic_data (filedata, maxchain, 4);
10449 if (filedata->mipsxlat == NULL)
10450 goto no_gnu_hash;
10451 }
10452
10453 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
10454 if (filedata->gnubuckets[hn] != 0)
10455 {
10456 bfd_vma si = filedata->gnubuckets[hn];
10457 bfd_vma off = si - filedata->gnusymidx;
10458
10459 do
10460 {
10461 if (filedata->dynamic_info_DT_MIPS_XHASH)
10462 {
10463 if (off < filedata->ngnuchains
10464 && filedata->mipsxlat[off] >= num_of_syms)
10465 num_of_syms = filedata->mipsxlat[off] + 1;
10466 }
10467 else
10468 {
10469 if (si >= num_of_syms)
10470 num_of_syms = si + 1;
10471 }
10472 si++;
10473 }
10474 while (off < filedata->ngnuchains
10475 && (filedata->gnuchains[off++] & 1) == 0);
10476 }
10477
10478 if (num_of_syms == 0)
10479 {
10480 no_gnu_hash:
10481 free (filedata->mipsxlat);
10482 filedata->mipsxlat = NULL;
10483 free (filedata->gnuchains);
10484 filedata->gnuchains = NULL;
10485 free (filedata->gnubuckets);
10486 filedata->gnubuckets = NULL;
10487 filedata->ngnubuckets = 0;
10488 filedata->ngnuchains = 0;
10489 }
10490 }
10491
10492 return num_of_syms;
10493 }
10494
10495 /* Parse and display the contents of the dynamic section. */
10496
10497 static bool
10498 process_dynamic_section (Filedata * filedata)
10499 {
10500 Elf_Internal_Dyn * entry;
10501
10502 if (filedata->dynamic_size == 0)
10503 {
10504 if (do_dynamic)
10505 {
10506 if (filedata->is_separate)
10507 printf (_("\nThere is no dynamic section in linked file '%s'.\n"),
10508 filedata->file_name);
10509 else
10510 printf (_("\nThere is no dynamic section in this file.\n"));
10511 }
10512
10513 return true;
10514 }
10515
10516 if (is_32bit_elf)
10517 {
10518 if (! get_32bit_dynamic_section (filedata))
10519 return false;
10520 }
10521 else
10522 {
10523 if (! get_64bit_dynamic_section (filedata))
10524 return false;
10525 }
10526
10527 /* Find the appropriate symbol table. */
10528 if (filedata->dynamic_symbols == NULL || do_histogram)
10529 {
10530 unsigned long num_of_syms;
10531
10532 for (entry = filedata->dynamic_section;
10533 entry < filedata->dynamic_section + filedata->dynamic_nent;
10534 ++entry)
10535 if (entry->d_tag == DT_SYMTAB)
10536 filedata->dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
10537 else if (entry->d_tag == DT_SYMENT)
10538 filedata->dynamic_info[DT_SYMENT] = entry->d_un.d_val;
10539 else if (entry->d_tag == DT_HASH)
10540 filedata->dynamic_info[DT_HASH] = entry->d_un.d_val;
10541 else if (entry->d_tag == DT_GNU_HASH)
10542 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
10543 else if ((filedata->file_header.e_machine == EM_MIPS
10544 || filedata->file_header.e_machine == EM_MIPS_RS3_LE)
10545 && entry->d_tag == DT_MIPS_XHASH)
10546 {
10547 filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val;
10548 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
10549 }
10550
10551 num_of_syms = get_num_dynamic_syms (filedata);
10552
10553 if (num_of_syms != 0
10554 && filedata->dynamic_symbols == NULL
10555 && filedata->dynamic_info[DT_SYMTAB]
10556 && filedata->dynamic_info[DT_SYMENT])
10557 {
10558 Elf_Internal_Phdr *seg;
10559 bfd_vma vma = filedata->dynamic_info[DT_SYMTAB];
10560
10561 if (! get_program_headers (filedata))
10562 {
10563 error (_("Cannot interpret virtual addresses "
10564 "without program headers.\n"));
10565 return false;
10566 }
10567
10568 for (seg = filedata->program_headers;
10569 seg < filedata->program_headers + filedata->file_header.e_phnum;
10570 ++seg)
10571 {
10572 if (seg->p_type != PT_LOAD)
10573 continue;
10574
10575 if (seg->p_offset + seg->p_filesz > filedata->file_size)
10576 {
10577 /* See PR 21379 for a reproducer. */
10578 error (_("Invalid PT_LOAD entry\n"));
10579 return false;
10580 }
10581
10582 if (vma >= (seg->p_vaddr & -seg->p_align)
10583 && vma < seg->p_vaddr + seg->p_filesz)
10584 {
10585 /* Since we do not know how big the symbol table is,
10586 we default to reading in up to the end of PT_LOAD
10587 segment and processing that. This is overkill, I
10588 know, but it should work. */
10589 Elf_Internal_Shdr section;
10590 section.sh_offset = (vma - seg->p_vaddr
10591 + seg->p_offset);
10592 section.sh_size = (num_of_syms
10593 * filedata->dynamic_info[DT_SYMENT]);
10594 section.sh_entsize = filedata->dynamic_info[DT_SYMENT];
10595
10596 if (do_checks
10597 && filedata->dynamic_symtab_section != NULL
10598 && ((filedata->dynamic_symtab_section->sh_offset
10599 != section.sh_offset)
10600 || (filedata->dynamic_symtab_section->sh_size
10601 != section.sh_size)
10602 || (filedata->dynamic_symtab_section->sh_entsize
10603 != section.sh_entsize)))
10604 warn (_("\
10605 the .dynsym section doesn't match the DT_SYMTAB and DT_SYMENT tags\n"));
10606
10607 section.sh_name = filedata->string_table_length;
10608 filedata->dynamic_symbols
10609 = GET_ELF_SYMBOLS (filedata, &section,
10610 &filedata->num_dynamic_syms);
10611 if (filedata->dynamic_symbols == NULL
10612 || filedata->num_dynamic_syms != num_of_syms)
10613 {
10614 error (_("Corrupt DT_SYMTAB dynamic entry\n"));
10615 return false;
10616 }
10617 break;
10618 }
10619 }
10620 }
10621 }
10622
10623 /* Similarly find a string table. */
10624 if (filedata->dynamic_strings == NULL)
10625 for (entry = filedata->dynamic_section;
10626 entry < filedata->dynamic_section + filedata->dynamic_nent;
10627 ++entry)
10628 {
10629 if (entry->d_tag == DT_STRTAB)
10630 filedata->dynamic_info[DT_STRTAB] = entry->d_un.d_val;
10631
10632 if (entry->d_tag == DT_STRSZ)
10633 filedata->dynamic_info[DT_STRSZ] = entry->d_un.d_val;
10634
10635 if (filedata->dynamic_info[DT_STRTAB]
10636 && filedata->dynamic_info[DT_STRSZ])
10637 {
10638 unsigned long offset;
10639 bfd_size_type str_tab_len = filedata->dynamic_info[DT_STRSZ];
10640
10641 offset = offset_from_vma (filedata,
10642 filedata->dynamic_info[DT_STRTAB],
10643 str_tab_len);
10644 if (do_checks
10645 && filedata->dynamic_strtab_section
10646 && ((filedata->dynamic_strtab_section->sh_offset
10647 != (file_ptr) offset)
10648 || (filedata->dynamic_strtab_section->sh_size
10649 != str_tab_len)))
10650 warn (_("\
10651 the .dynstr section doesn't match the DT_STRTAB and DT_STRSZ tags\n"));
10652
10653 filedata->dynamic_strings
10654 = (char *) get_data (NULL, filedata, offset, 1, str_tab_len,
10655 _("dynamic string table"));
10656 if (filedata->dynamic_strings == NULL)
10657 {
10658 error (_("Corrupt DT_STRTAB dynamic entry\n"));
10659 break;
10660 }
10661
10662 filedata->dynamic_strings_length = str_tab_len;
10663 break;
10664 }
10665 }
10666
10667 /* And find the syminfo section if available. */
10668 if (filedata->dynamic_syminfo == NULL)
10669 {
10670 unsigned long syminsz = 0;
10671
10672 for (entry = filedata->dynamic_section;
10673 entry < filedata->dynamic_section + filedata->dynamic_nent;
10674 ++entry)
10675 {
10676 if (entry->d_tag == DT_SYMINENT)
10677 {
10678 /* Note: these braces are necessary to avoid a syntax
10679 error from the SunOS4 C compiler. */
10680 /* PR binutils/17531: A corrupt file can trigger this test.
10681 So do not use an assert, instead generate an error message. */
10682 if (sizeof (Elf_External_Syminfo) != entry->d_un.d_val)
10683 error (_("Bad value (%d) for SYMINENT entry\n"),
10684 (int) entry->d_un.d_val);
10685 }
10686 else if (entry->d_tag == DT_SYMINSZ)
10687 syminsz = entry->d_un.d_val;
10688 else if (entry->d_tag == DT_SYMINFO)
10689 filedata->dynamic_syminfo_offset
10690 = offset_from_vma (filedata, entry->d_un.d_val, syminsz);
10691 }
10692
10693 if (filedata->dynamic_syminfo_offset != 0 && syminsz != 0)
10694 {
10695 Elf_External_Syminfo * extsyminfo;
10696 Elf_External_Syminfo * extsym;
10697 Elf_Internal_Syminfo * syminfo;
10698
10699 /* There is a syminfo section. Read the data. */
10700 extsyminfo = (Elf_External_Syminfo *)
10701 get_data (NULL, filedata, filedata->dynamic_syminfo_offset,
10702 1, syminsz, _("symbol information"));
10703 if (!extsyminfo)
10704 return false;
10705
10706 if (filedata->dynamic_syminfo != NULL)
10707 {
10708 error (_("Multiple dynamic symbol information sections found\n"));
10709 free (filedata->dynamic_syminfo);
10710 }
10711 filedata->dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
10712 if (filedata->dynamic_syminfo == NULL)
10713 {
10714 error (_("Out of memory allocating %lu bytes "
10715 "for dynamic symbol info\n"),
10716 (unsigned long) syminsz);
10717 return false;
10718 }
10719
10720 filedata->dynamic_syminfo_nent
10721 = syminsz / sizeof (Elf_External_Syminfo);
10722 for (syminfo = filedata->dynamic_syminfo, extsym = extsyminfo;
10723 syminfo < (filedata->dynamic_syminfo
10724 + filedata->dynamic_syminfo_nent);
10725 ++syminfo, ++extsym)
10726 {
10727 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
10728 syminfo->si_flags = BYTE_GET (extsym->si_flags);
10729 }
10730
10731 free (extsyminfo);
10732 }
10733 }
10734
10735 if (do_dynamic && filedata->dynamic_addr)
10736 {
10737 if (filedata->dynamic_nent == 1)
10738 {
10739 if (filedata->is_separate)
10740 printf (_("\nIn linked file '%s' the dynamic section at offset 0x%lx contains 1 entry:\n"),
10741 filedata->file_name,
10742 filedata->dynamic_addr);
10743 else
10744 printf (_("\nDynamic section at offset 0x%lx contains 1 entry:\n"),
10745 filedata->dynamic_addr);
10746 }
10747 else
10748 {
10749 if (filedata->is_separate)
10750 printf (_("\nIn linked file '%s' the dynamic section at offset 0x%lx contains %lu entries:\n"),
10751 filedata->file_name,
10752 filedata->dynamic_addr,
10753 (unsigned long) filedata->dynamic_nent);
10754 else
10755 printf (_("\nDynamic section at offset 0x%lx contains %lu entries:\n"),
10756 filedata->dynamic_addr,
10757 (unsigned long) filedata->dynamic_nent);
10758 }
10759 }
10760 if (do_dynamic)
10761 printf (_(" Tag Type Name/Value\n"));
10762
10763 for (entry = filedata->dynamic_section;
10764 entry < filedata->dynamic_section + filedata->dynamic_nent;
10765 entry++)
10766 {
10767 if (do_dynamic)
10768 {
10769 const char * dtype;
10770
10771 putchar (' ');
10772 print_vma (entry->d_tag, FULL_HEX);
10773 dtype = get_dynamic_type (filedata, entry->d_tag);
10774 printf (" (%s)%*s", dtype,
10775 ((is_32bit_elf ? 27 : 19) - (int) strlen (dtype)), " ");
10776 }
10777
10778 switch (entry->d_tag)
10779 {
10780 case DT_FLAGS:
10781 if (do_dynamic)
10782 print_dynamic_flags (entry->d_un.d_val);
10783 break;
10784
10785 case DT_AUXILIARY:
10786 case DT_FILTER:
10787 case DT_CONFIG:
10788 case DT_DEPAUDIT:
10789 case DT_AUDIT:
10790 if (do_dynamic)
10791 {
10792 switch (entry->d_tag)
10793 {
10794 case DT_AUXILIARY:
10795 printf (_("Auxiliary library"));
10796 break;
10797
10798 case DT_FILTER:
10799 printf (_("Filter library"));
10800 break;
10801
10802 case DT_CONFIG:
10803 printf (_("Configuration file"));
10804 break;
10805
10806 case DT_DEPAUDIT:
10807 printf (_("Dependency audit library"));
10808 break;
10809
10810 case DT_AUDIT:
10811 printf (_("Audit library"));
10812 break;
10813 }
10814
10815 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
10816 printf (": [%s]\n",
10817 GET_DYNAMIC_NAME (filedata, entry->d_un.d_val));
10818 else
10819 {
10820 printf (": ");
10821 print_vma (entry->d_un.d_val, PREFIX_HEX);
10822 putchar ('\n');
10823 }
10824 }
10825 break;
10826
10827 case DT_FEATURE:
10828 if (do_dynamic)
10829 {
10830 printf (_("Flags:"));
10831
10832 if (entry->d_un.d_val == 0)
10833 printf (_(" None\n"));
10834 else
10835 {
10836 unsigned long int val = entry->d_un.d_val;
10837
10838 if (val & DTF_1_PARINIT)
10839 {
10840 printf (" PARINIT");
10841 val ^= DTF_1_PARINIT;
10842 }
10843 if (val & DTF_1_CONFEXP)
10844 {
10845 printf (" CONFEXP");
10846 val ^= DTF_1_CONFEXP;
10847 }
10848 if (val != 0)
10849 printf (" %lx", val);
10850 puts ("");
10851 }
10852 }
10853 break;
10854
10855 case DT_POSFLAG_1:
10856 if (do_dynamic)
10857 {
10858 printf (_("Flags:"));
10859
10860 if (entry->d_un.d_val == 0)
10861 printf (_(" None\n"));
10862 else
10863 {
10864 unsigned long int val = entry->d_un.d_val;
10865
10866 if (val & DF_P1_LAZYLOAD)
10867 {
10868 printf (" LAZYLOAD");
10869 val ^= DF_P1_LAZYLOAD;
10870 }
10871 if (val & DF_P1_GROUPPERM)
10872 {
10873 printf (" GROUPPERM");
10874 val ^= DF_P1_GROUPPERM;
10875 }
10876 if (val != 0)
10877 printf (" %lx", val);
10878 puts ("");
10879 }
10880 }
10881 break;
10882
10883 case DT_FLAGS_1:
10884 if (do_dynamic)
10885 {
10886 printf (_("Flags:"));
10887 if (entry->d_un.d_val == 0)
10888 printf (_(" None\n"));
10889 else
10890 {
10891 unsigned long int val = entry->d_un.d_val;
10892
10893 if (val & DF_1_NOW)
10894 {
10895 printf (" NOW");
10896 val ^= DF_1_NOW;
10897 }
10898 if (val & DF_1_GLOBAL)
10899 {
10900 printf (" GLOBAL");
10901 val ^= DF_1_GLOBAL;
10902 }
10903 if (val & DF_1_GROUP)
10904 {
10905 printf (" GROUP");
10906 val ^= DF_1_GROUP;
10907 }
10908 if (val & DF_1_NODELETE)
10909 {
10910 printf (" NODELETE");
10911 val ^= DF_1_NODELETE;
10912 }
10913 if (val & DF_1_LOADFLTR)
10914 {
10915 printf (" LOADFLTR");
10916 val ^= DF_1_LOADFLTR;
10917 }
10918 if (val & DF_1_INITFIRST)
10919 {
10920 printf (" INITFIRST");
10921 val ^= DF_1_INITFIRST;
10922 }
10923 if (val & DF_1_NOOPEN)
10924 {
10925 printf (" NOOPEN");
10926 val ^= DF_1_NOOPEN;
10927 }
10928 if (val & DF_1_ORIGIN)
10929 {
10930 printf (" ORIGIN");
10931 val ^= DF_1_ORIGIN;
10932 }
10933 if (val & DF_1_DIRECT)
10934 {
10935 printf (" DIRECT");
10936 val ^= DF_1_DIRECT;
10937 }
10938 if (val & DF_1_TRANS)
10939 {
10940 printf (" TRANS");
10941 val ^= DF_1_TRANS;
10942 }
10943 if (val & DF_1_INTERPOSE)
10944 {
10945 printf (" INTERPOSE");
10946 val ^= DF_1_INTERPOSE;
10947 }
10948 if (val & DF_1_NODEFLIB)
10949 {
10950 printf (" NODEFLIB");
10951 val ^= DF_1_NODEFLIB;
10952 }
10953 if (val & DF_1_NODUMP)
10954 {
10955 printf (" NODUMP");
10956 val ^= DF_1_NODUMP;
10957 }
10958 if (val & DF_1_CONFALT)
10959 {
10960 printf (" CONFALT");
10961 val ^= DF_1_CONFALT;
10962 }
10963 if (val & DF_1_ENDFILTEE)
10964 {
10965 printf (" ENDFILTEE");
10966 val ^= DF_1_ENDFILTEE;
10967 }
10968 if (val & DF_1_DISPRELDNE)
10969 {
10970 printf (" DISPRELDNE");
10971 val ^= DF_1_DISPRELDNE;
10972 }
10973 if (val & DF_1_DISPRELPND)
10974 {
10975 printf (" DISPRELPND");
10976 val ^= DF_1_DISPRELPND;
10977 }
10978 if (val & DF_1_NODIRECT)
10979 {
10980 printf (" NODIRECT");
10981 val ^= DF_1_NODIRECT;
10982 }
10983 if (val & DF_1_IGNMULDEF)
10984 {
10985 printf (" IGNMULDEF");
10986 val ^= DF_1_IGNMULDEF;
10987 }
10988 if (val & DF_1_NOKSYMS)
10989 {
10990 printf (" NOKSYMS");
10991 val ^= DF_1_NOKSYMS;
10992 }
10993 if (val & DF_1_NOHDR)
10994 {
10995 printf (" NOHDR");
10996 val ^= DF_1_NOHDR;
10997 }
10998 if (val & DF_1_EDITED)
10999 {
11000 printf (" EDITED");
11001 val ^= DF_1_EDITED;
11002 }
11003 if (val & DF_1_NORELOC)
11004 {
11005 printf (" NORELOC");
11006 val ^= DF_1_NORELOC;
11007 }
11008 if (val & DF_1_SYMINTPOSE)
11009 {
11010 printf (" SYMINTPOSE");
11011 val ^= DF_1_SYMINTPOSE;
11012 }
11013 if (val & DF_1_GLOBAUDIT)
11014 {
11015 printf (" GLOBAUDIT");
11016 val ^= DF_1_GLOBAUDIT;
11017 }
11018 if (val & DF_1_SINGLETON)
11019 {
11020 printf (" SINGLETON");
11021 val ^= DF_1_SINGLETON;
11022 }
11023 if (val & DF_1_STUB)
11024 {
11025 printf (" STUB");
11026 val ^= DF_1_STUB;
11027 }
11028 if (val & DF_1_PIE)
11029 {
11030 printf (" PIE");
11031 val ^= DF_1_PIE;
11032 }
11033 if (val & DF_1_KMOD)
11034 {
11035 printf (" KMOD");
11036 val ^= DF_1_KMOD;
11037 }
11038 if (val & DF_1_WEAKFILTER)
11039 {
11040 printf (" WEAKFILTER");
11041 val ^= DF_1_WEAKFILTER;
11042 }
11043 if (val & DF_1_NOCOMMON)
11044 {
11045 printf (" NOCOMMON");
11046 val ^= DF_1_NOCOMMON;
11047 }
11048 if (val != 0)
11049 printf (" %lx", val);
11050 puts ("");
11051 }
11052 }
11053 break;
11054
11055 case DT_PLTREL:
11056 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
11057 if (do_dynamic)
11058 puts (get_dynamic_type (filedata, entry->d_un.d_val));
11059 break;
11060
11061 case DT_NULL :
11062 case DT_NEEDED :
11063 case DT_PLTGOT :
11064 case DT_HASH :
11065 case DT_STRTAB :
11066 case DT_SYMTAB :
11067 case DT_RELA :
11068 case DT_INIT :
11069 case DT_FINI :
11070 case DT_SONAME :
11071 case DT_RPATH :
11072 case DT_SYMBOLIC:
11073 case DT_REL :
11074 case DT_DEBUG :
11075 case DT_TEXTREL :
11076 case DT_JMPREL :
11077 case DT_RUNPATH :
11078 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
11079
11080 if (do_dynamic)
11081 {
11082 char * name;
11083
11084 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
11085 name = GET_DYNAMIC_NAME (filedata, entry->d_un.d_val);
11086 else
11087 name = NULL;
11088
11089 if (name)
11090 {
11091 switch (entry->d_tag)
11092 {
11093 case DT_NEEDED:
11094 printf (_("Shared library: [%s]"), name);
11095
11096 if (filedata->program_interpreter
11097 && streq (name, filedata->program_interpreter))
11098 printf (_(" program interpreter"));
11099 break;
11100
11101 case DT_SONAME:
11102 printf (_("Library soname: [%s]"), name);
11103 break;
11104
11105 case DT_RPATH:
11106 printf (_("Library rpath: [%s]"), name);
11107 break;
11108
11109 case DT_RUNPATH:
11110 printf (_("Library runpath: [%s]"), name);
11111 break;
11112
11113 default:
11114 print_vma (entry->d_un.d_val, PREFIX_HEX);
11115 break;
11116 }
11117 }
11118 else
11119 print_vma (entry->d_un.d_val, PREFIX_HEX);
11120
11121 putchar ('\n');
11122 }
11123 break;
11124
11125 case DT_PLTRELSZ:
11126 case DT_RELASZ :
11127 case DT_STRSZ :
11128 case DT_RELSZ :
11129 case DT_RELAENT :
11130 case DT_SYMENT :
11131 case DT_RELENT :
11132 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
11133 /* Fall through. */
11134 case DT_PLTPADSZ:
11135 case DT_MOVEENT :
11136 case DT_MOVESZ :
11137 case DT_INIT_ARRAYSZ:
11138 case DT_FINI_ARRAYSZ:
11139 case DT_GNU_CONFLICTSZ:
11140 case DT_GNU_LIBLISTSZ:
11141 if (do_dynamic)
11142 {
11143 print_vma (entry->d_un.d_val, UNSIGNED);
11144 printf (_(" (bytes)\n"));
11145 }
11146 break;
11147
11148 case DT_VERDEFNUM:
11149 case DT_VERNEEDNUM:
11150 case DT_RELACOUNT:
11151 case DT_RELCOUNT:
11152 if (do_dynamic)
11153 {
11154 print_vma (entry->d_un.d_val, UNSIGNED);
11155 putchar ('\n');
11156 }
11157 break;
11158
11159 case DT_SYMINSZ:
11160 case DT_SYMINENT:
11161 case DT_SYMINFO:
11162 case DT_USED:
11163 case DT_INIT_ARRAY:
11164 case DT_FINI_ARRAY:
11165 if (do_dynamic)
11166 {
11167 if (entry->d_tag == DT_USED
11168 && VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
11169 {
11170 char * name = GET_DYNAMIC_NAME (filedata, entry->d_un.d_val);
11171
11172 if (*name)
11173 {
11174 printf (_("Not needed object: [%s]\n"), name);
11175 break;
11176 }
11177 }
11178
11179 print_vma (entry->d_un.d_val, PREFIX_HEX);
11180 putchar ('\n');
11181 }
11182 break;
11183
11184 case DT_BIND_NOW:
11185 /* The value of this entry is ignored. */
11186 if (do_dynamic)
11187 putchar ('\n');
11188 break;
11189
11190 case DT_GNU_PRELINKED:
11191 if (do_dynamic)
11192 {
11193 struct tm * tmp;
11194 time_t atime = entry->d_un.d_val;
11195
11196 tmp = gmtime (&atime);
11197 /* PR 17533 file: 041-1244816-0.004. */
11198 if (tmp == NULL)
11199 printf (_("<corrupt time val: %lx"),
11200 (unsigned long) atime);
11201 else
11202 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
11203 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
11204 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
11205
11206 }
11207 break;
11208
11209 case DT_GNU_HASH:
11210 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
11211 if (do_dynamic)
11212 {
11213 print_vma (entry->d_un.d_val, PREFIX_HEX);
11214 putchar ('\n');
11215 }
11216 break;
11217
11218 case DT_GNU_FLAGS_1:
11219 if (do_dynamic)
11220 {
11221 printf (_("Flags:"));
11222 if (entry->d_un.d_val == 0)
11223 printf (_(" None\n"));
11224 else
11225 {
11226 unsigned long int val = entry->d_un.d_val;
11227
11228 if (val & DF_GNU_1_UNIQUE)
11229 {
11230 printf (" UNIQUE");
11231 val ^= DF_GNU_1_UNIQUE;
11232 }
11233 if (val != 0)
11234 printf (" %lx", val);
11235 puts ("");
11236 }
11237 }
11238 break;
11239
11240 default:
11241 if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM))
11242 filedata->version_info[DT_VERSIONTAGIDX (entry->d_tag)]
11243 = entry->d_un.d_val;
11244
11245 if (do_dynamic)
11246 {
11247 switch (filedata->file_header.e_machine)
11248 {
11249 case EM_AARCH64:
11250 dynamic_section_aarch64_val (entry);
11251 break;
11252 case EM_MIPS:
11253 case EM_MIPS_RS3_LE:
11254 dynamic_section_mips_val (filedata, entry);
11255 break;
11256 case EM_PARISC:
11257 dynamic_section_parisc_val (entry);
11258 break;
11259 case EM_IA_64:
11260 dynamic_section_ia64_val (entry);
11261 break;
11262 default:
11263 print_vma (entry->d_un.d_val, PREFIX_HEX);
11264 putchar ('\n');
11265 }
11266 }
11267 break;
11268 }
11269 }
11270
11271 return true;
11272 }
11273
11274 static char *
11275 get_ver_flags (unsigned int flags)
11276 {
11277 static char buff[128];
11278
11279 buff[0] = 0;
11280
11281 if (flags == 0)
11282 return _("none");
11283
11284 if (flags & VER_FLG_BASE)
11285 strcat (buff, "BASE");
11286
11287 if (flags & VER_FLG_WEAK)
11288 {
11289 if (flags & VER_FLG_BASE)
11290 strcat (buff, " | ");
11291
11292 strcat (buff, "WEAK");
11293 }
11294
11295 if (flags & VER_FLG_INFO)
11296 {
11297 if (flags & (VER_FLG_BASE|VER_FLG_WEAK))
11298 strcat (buff, " | ");
11299
11300 strcat (buff, "INFO");
11301 }
11302
11303 if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
11304 {
11305 if (flags & (VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
11306 strcat (buff, " | ");
11307
11308 strcat (buff, _("<unknown>"));
11309 }
11310
11311 return buff;
11312 }
11313
11314 /* Display the contents of the version sections. */
11315
11316 static bool
11317 process_version_sections (Filedata * filedata)
11318 {
11319 Elf_Internal_Shdr * section;
11320 unsigned i;
11321 bool found = false;
11322
11323 if (! do_version)
11324 return true;
11325
11326 for (i = 0, section = filedata->section_headers;
11327 i < filedata->file_header.e_shnum;
11328 i++, section++)
11329 {
11330 switch (section->sh_type)
11331 {
11332 case SHT_GNU_verdef:
11333 {
11334 Elf_External_Verdef * edefs;
11335 unsigned long idx;
11336 unsigned long cnt;
11337 char * endbuf;
11338
11339 found = true;
11340
11341 if (filedata->is_separate)
11342 printf (ngettext ("\nIn linked file '%s' the version definition section '%s' contains %u entry:\n",
11343 "\nIn linked file '%s' the version definition section '%s' contains %u entries:\n",
11344 section->sh_info),
11345 filedata->file_name,
11346 printable_section_name (filedata, section),
11347 section->sh_info);
11348 else
11349 printf (ngettext ("\nVersion definition section '%s' "
11350 "contains %u entry:\n",
11351 "\nVersion definition section '%s' "
11352 "contains %u entries:\n",
11353 section->sh_info),
11354 printable_section_name (filedata, section),
11355 section->sh_info);
11356
11357 printf (_(" Addr: 0x"));
11358 printf_vma (section->sh_addr);
11359 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
11360 (unsigned long) section->sh_offset, section->sh_link,
11361 printable_section_name_from_index (filedata, section->sh_link));
11362
11363 edefs = (Elf_External_Verdef *)
11364 get_data (NULL, filedata, section->sh_offset, 1,section->sh_size,
11365 _("version definition section"));
11366 if (!edefs)
11367 break;
11368 endbuf = (char *) edefs + section->sh_size;
11369
11370 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
11371 {
11372 char * vstart;
11373 Elf_External_Verdef * edef;
11374 Elf_Internal_Verdef ent;
11375 Elf_External_Verdaux * eaux;
11376 Elf_Internal_Verdaux aux;
11377 unsigned long isum;
11378 int j;
11379
11380 vstart = ((char *) edefs) + idx;
11381 if (vstart + sizeof (*edef) > endbuf)
11382 break;
11383
11384 edef = (Elf_External_Verdef *) vstart;
11385
11386 ent.vd_version = BYTE_GET (edef->vd_version);
11387 ent.vd_flags = BYTE_GET (edef->vd_flags);
11388 ent.vd_ndx = BYTE_GET (edef->vd_ndx);
11389 ent.vd_cnt = BYTE_GET (edef->vd_cnt);
11390 ent.vd_hash = BYTE_GET (edef->vd_hash);
11391 ent.vd_aux = BYTE_GET (edef->vd_aux);
11392 ent.vd_next = BYTE_GET (edef->vd_next);
11393
11394 printf (_(" %#06lx: Rev: %d Flags: %s"),
11395 idx, ent.vd_version, get_ver_flags (ent.vd_flags));
11396
11397 printf (_(" Index: %d Cnt: %d "),
11398 ent.vd_ndx, ent.vd_cnt);
11399
11400 /* Check for overflow. */
11401 if (ent.vd_aux > (size_t) (endbuf - vstart))
11402 break;
11403
11404 vstart += ent.vd_aux;
11405
11406 if (vstart + sizeof (*eaux) > endbuf)
11407 break;
11408 eaux = (Elf_External_Verdaux *) vstart;
11409
11410 aux.vda_name = BYTE_GET (eaux->vda_name);
11411 aux.vda_next = BYTE_GET (eaux->vda_next);
11412
11413 if (VALID_DYNAMIC_NAME (filedata, aux.vda_name))
11414 printf (_("Name: %s\n"),
11415 GET_DYNAMIC_NAME (filedata, aux.vda_name));
11416 else
11417 printf (_("Name index: %ld\n"), aux.vda_name);
11418
11419 isum = idx + ent.vd_aux;
11420
11421 for (j = 1; j < ent.vd_cnt; j++)
11422 {
11423 if (aux.vda_next < sizeof (*eaux)
11424 && !(j == ent.vd_cnt - 1 && aux.vda_next == 0))
11425 {
11426 warn (_("Invalid vda_next field of %lx\n"),
11427 aux.vda_next);
11428 j = ent.vd_cnt;
11429 break;
11430 }
11431 /* Check for overflow. */
11432 if (aux.vda_next > (size_t) (endbuf - vstart))
11433 break;
11434
11435 isum += aux.vda_next;
11436 vstart += aux.vda_next;
11437
11438 if (vstart + sizeof (*eaux) > endbuf)
11439 break;
11440 eaux = (Elf_External_Verdaux *) vstart;
11441
11442 aux.vda_name = BYTE_GET (eaux->vda_name);
11443 aux.vda_next = BYTE_GET (eaux->vda_next);
11444
11445 if (VALID_DYNAMIC_NAME (filedata, aux.vda_name))
11446 printf (_(" %#06lx: Parent %d: %s\n"),
11447 isum, j,
11448 GET_DYNAMIC_NAME (filedata, aux.vda_name));
11449 else
11450 printf (_(" %#06lx: Parent %d, name index: %ld\n"),
11451 isum, j, aux.vda_name);
11452 }
11453
11454 if (j < ent.vd_cnt)
11455 printf (_(" Version def aux past end of section\n"));
11456
11457 /* PR 17531:
11458 file: id:000001,src:000172+005151,op:splice,rep:2. */
11459 if (ent.vd_next < sizeof (*edef)
11460 && !(cnt == section->sh_info - 1 && ent.vd_next == 0))
11461 {
11462 warn (_("Invalid vd_next field of %lx\n"), ent.vd_next);
11463 cnt = section->sh_info;
11464 break;
11465 }
11466 if (ent.vd_next > (size_t) (endbuf - ((char *) edefs + idx)))
11467 break;
11468
11469 idx += ent.vd_next;
11470 }
11471
11472 if (cnt < section->sh_info)
11473 printf (_(" Version definition past end of section\n"));
11474
11475 free (edefs);
11476 }
11477 break;
11478
11479 case SHT_GNU_verneed:
11480 {
11481 Elf_External_Verneed * eneed;
11482 unsigned long idx;
11483 unsigned long cnt;
11484 char * endbuf;
11485
11486 found = true;
11487
11488 if (filedata->is_separate)
11489 printf (ngettext ("\nIn linked file '%s' the version needs section '%s' contains %u entry:\n",
11490 "\nIn linked file '%s' the version needs section '%s' contains %u entries:\n",
11491 section->sh_info),
11492 filedata->file_name,
11493 printable_section_name (filedata, section),
11494 section->sh_info);
11495 else
11496 printf (ngettext ("\nVersion needs section '%s' "
11497 "contains %u entry:\n",
11498 "\nVersion needs section '%s' "
11499 "contains %u entries:\n",
11500 section->sh_info),
11501 printable_section_name (filedata, section),
11502 section->sh_info);
11503
11504 printf (_(" Addr: 0x"));
11505 printf_vma (section->sh_addr);
11506 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
11507 (unsigned long) section->sh_offset, section->sh_link,
11508 printable_section_name_from_index (filedata, section->sh_link));
11509
11510 eneed = (Elf_External_Verneed *) get_data (NULL, filedata,
11511 section->sh_offset, 1,
11512 section->sh_size,
11513 _("Version Needs section"));
11514 if (!eneed)
11515 break;
11516 endbuf = (char *) eneed + section->sh_size;
11517
11518 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
11519 {
11520 Elf_External_Verneed * entry;
11521 Elf_Internal_Verneed ent;
11522 unsigned long isum;
11523 int j;
11524 char * vstart;
11525
11526 vstart = ((char *) eneed) + idx;
11527 if (vstart + sizeof (*entry) > endbuf)
11528 break;
11529
11530 entry = (Elf_External_Verneed *) vstart;
11531
11532 ent.vn_version = BYTE_GET (entry->vn_version);
11533 ent.vn_cnt = BYTE_GET (entry->vn_cnt);
11534 ent.vn_file = BYTE_GET (entry->vn_file);
11535 ent.vn_aux = BYTE_GET (entry->vn_aux);
11536 ent.vn_next = BYTE_GET (entry->vn_next);
11537
11538 printf (_(" %#06lx: Version: %d"), idx, ent.vn_version);
11539
11540 if (VALID_DYNAMIC_NAME (filedata, ent.vn_file))
11541 printf (_(" File: %s"),
11542 GET_DYNAMIC_NAME (filedata, ent.vn_file));
11543 else
11544 printf (_(" File: %lx"), ent.vn_file);
11545
11546 printf (_(" Cnt: %d\n"), ent.vn_cnt);
11547
11548 /* Check for overflow. */
11549 if (ent.vn_aux > (size_t) (endbuf - vstart))
11550 break;
11551 vstart += ent.vn_aux;
11552
11553 for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j)
11554 {
11555 Elf_External_Vernaux * eaux;
11556 Elf_Internal_Vernaux aux;
11557
11558 if (vstart + sizeof (*eaux) > endbuf)
11559 break;
11560 eaux = (Elf_External_Vernaux *) vstart;
11561
11562 aux.vna_hash = BYTE_GET (eaux->vna_hash);
11563 aux.vna_flags = BYTE_GET (eaux->vna_flags);
11564 aux.vna_other = BYTE_GET (eaux->vna_other);
11565 aux.vna_name = BYTE_GET (eaux->vna_name);
11566 aux.vna_next = BYTE_GET (eaux->vna_next);
11567
11568 if (VALID_DYNAMIC_NAME (filedata, aux.vna_name))
11569 printf (_(" %#06lx: Name: %s"),
11570 isum, GET_DYNAMIC_NAME (filedata, aux.vna_name));
11571 else
11572 printf (_(" %#06lx: Name index: %lx"),
11573 isum, aux.vna_name);
11574
11575 printf (_(" Flags: %s Version: %d\n"),
11576 get_ver_flags (aux.vna_flags), aux.vna_other);
11577
11578 if (aux.vna_next < sizeof (*eaux)
11579 && !(j == ent.vn_cnt - 1 && aux.vna_next == 0))
11580 {
11581 warn (_("Invalid vna_next field of %lx\n"),
11582 aux.vna_next);
11583 j = ent.vn_cnt;
11584 break;
11585 }
11586 /* Check for overflow. */
11587 if (aux.vna_next > (size_t) (endbuf - vstart))
11588 break;
11589 isum += aux.vna_next;
11590 vstart += aux.vna_next;
11591 }
11592
11593 if (j < ent.vn_cnt)
11594 warn (_("Missing Version Needs auxiliary information\n"));
11595
11596 if (ent.vn_next < sizeof (*entry)
11597 && !(cnt == section->sh_info - 1 && ent.vn_next == 0))
11598 {
11599 warn (_("Invalid vn_next field of %lx\n"), ent.vn_next);
11600 cnt = section->sh_info;
11601 break;
11602 }
11603 if (ent.vn_next > (size_t) (endbuf - ((char *) eneed + idx)))
11604 break;
11605 idx += ent.vn_next;
11606 }
11607
11608 if (cnt < section->sh_info)
11609 warn (_("Missing Version Needs information\n"));
11610
11611 free (eneed);
11612 }
11613 break;
11614
11615 case SHT_GNU_versym:
11616 {
11617 Elf_Internal_Shdr * link_section;
11618 size_t total;
11619 unsigned int cnt;
11620 unsigned char * edata;
11621 unsigned short * data;
11622 char * strtab;
11623 Elf_Internal_Sym * symbols;
11624 Elf_Internal_Shdr * string_sec;
11625 unsigned long num_syms;
11626 long off;
11627
11628 if (section->sh_link >= filedata->file_header.e_shnum)
11629 break;
11630
11631 link_section = filedata->section_headers + section->sh_link;
11632 total = section->sh_size / sizeof (Elf_External_Versym);
11633
11634 if (link_section->sh_link >= filedata->file_header.e_shnum)
11635 break;
11636
11637 found = true;
11638
11639 symbols = GET_ELF_SYMBOLS (filedata, link_section, & num_syms);
11640 if (symbols == NULL)
11641 break;
11642
11643 string_sec = filedata->section_headers + link_section->sh_link;
11644
11645 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
11646 string_sec->sh_size,
11647 _("version string table"));
11648 if (!strtab)
11649 {
11650 free (symbols);
11651 break;
11652 }
11653
11654 if (filedata->is_separate)
11655 printf (ngettext ("\nIn linked file '%s' the version symbols section '%s' contains %lu entry:\n",
11656 "\nIn linked file '%s' the version symbols section '%s' contains %lu entries:\n",
11657 total),
11658 filedata->file_name,
11659 printable_section_name (filedata, section),
11660 (unsigned long) total);
11661 else
11662 printf (ngettext ("\nVersion symbols section '%s' "
11663 "contains %lu entry:\n",
11664 "\nVersion symbols section '%s' "
11665 "contains %lu entries:\n",
11666 total),
11667 printable_section_name (filedata, section),
11668 (unsigned long) total);
11669
11670 printf (_(" Addr: 0x"));
11671 printf_vma (section->sh_addr);
11672 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
11673 (unsigned long) section->sh_offset, section->sh_link,
11674 printable_section_name (filedata, link_section));
11675
11676 off = offset_from_vma (filedata,
11677 filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
11678 total * sizeof (short));
11679 edata = (unsigned char *) get_data (NULL, filedata, off,
11680 sizeof (short), total,
11681 _("version symbol data"));
11682 if (!edata)
11683 {
11684 free (strtab);
11685 free (symbols);
11686 break;
11687 }
11688
11689 data = (short unsigned int *) cmalloc (total, sizeof (short));
11690
11691 for (cnt = total; cnt --;)
11692 data[cnt] = byte_get (edata + cnt * sizeof (short),
11693 sizeof (short));
11694
11695 free (edata);
11696
11697 for (cnt = 0; cnt < total; cnt += 4)
11698 {
11699 int j, nn;
11700 char *name;
11701 char *invalid = _("*invalid*");
11702
11703 printf (" %03x:", cnt);
11704
11705 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
11706 switch (data[cnt + j])
11707 {
11708 case 0:
11709 fputs (_(" 0 (*local*) "), stdout);
11710 break;
11711
11712 case 1:
11713 fputs (_(" 1 (*global*) "), stdout);
11714 break;
11715
11716 default:
11717 nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
11718 data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
11719
11720 /* If this index value is greater than the size of the symbols
11721 array, break to avoid an out-of-bounds read. */
11722 if ((unsigned long)(cnt + j) >= num_syms)
11723 {
11724 warn (_("invalid index into symbol array\n"));
11725 break;
11726 }
11727
11728 name = NULL;
11729 if (filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
11730 {
11731 Elf_Internal_Verneed ivn;
11732 unsigned long offset;
11733
11734 offset = offset_from_vma
11735 (filedata,
11736 filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
11737 sizeof (Elf_External_Verneed));
11738
11739 do
11740 {
11741 Elf_Internal_Vernaux ivna;
11742 Elf_External_Verneed evn;
11743 Elf_External_Vernaux evna;
11744 unsigned long a_off;
11745
11746 if (get_data (&evn, filedata, offset, sizeof (evn), 1,
11747 _("version need")) == NULL)
11748 break;
11749
11750 ivn.vn_aux = BYTE_GET (evn.vn_aux);
11751 ivn.vn_next = BYTE_GET (evn.vn_next);
11752
11753 a_off = offset + ivn.vn_aux;
11754
11755 do
11756 {
11757 if (get_data (&evna, filedata, a_off, sizeof (evna),
11758 1, _("version need aux (2)")) == NULL)
11759 {
11760 ivna.vna_next = 0;
11761 ivna.vna_other = 0;
11762 }
11763 else
11764 {
11765 ivna.vna_next = BYTE_GET (evna.vna_next);
11766 ivna.vna_other = BYTE_GET (evna.vna_other);
11767 }
11768
11769 a_off += ivna.vna_next;
11770 }
11771 while (ivna.vna_other != data[cnt + j]
11772 && ivna.vna_next != 0);
11773
11774 if (ivna.vna_other == data[cnt + j])
11775 {
11776 ivna.vna_name = BYTE_GET (evna.vna_name);
11777
11778 if (ivna.vna_name >= string_sec->sh_size)
11779 name = invalid;
11780 else
11781 name = strtab + ivna.vna_name;
11782 break;
11783 }
11784
11785 offset += ivn.vn_next;
11786 }
11787 while (ivn.vn_next);
11788 }
11789
11790 if (data[cnt + j] != 0x8001
11791 && filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
11792 {
11793 Elf_Internal_Verdef ivd;
11794 Elf_External_Verdef evd;
11795 unsigned long offset;
11796
11797 offset = offset_from_vma
11798 (filedata,
11799 filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
11800 sizeof evd);
11801
11802 do
11803 {
11804 if (get_data (&evd, filedata, offset, sizeof (evd), 1,
11805 _("version def")) == NULL)
11806 {
11807 ivd.vd_next = 0;
11808 /* PR 17531: file: 046-1082287-0.004. */
11809 ivd.vd_ndx = (data[cnt + j] & VERSYM_VERSION) + 1;
11810 break;
11811 }
11812 else
11813 {
11814 ivd.vd_next = BYTE_GET (evd.vd_next);
11815 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
11816 }
11817
11818 offset += ivd.vd_next;
11819 }
11820 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
11821 && ivd.vd_next != 0);
11822
11823 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
11824 {
11825 Elf_External_Verdaux evda;
11826 Elf_Internal_Verdaux ivda;
11827
11828 ivd.vd_aux = BYTE_GET (evd.vd_aux);
11829
11830 if (get_data (&evda, filedata,
11831 offset - ivd.vd_next + ivd.vd_aux,
11832 sizeof (evda), 1,
11833 _("version def aux")) == NULL)
11834 break;
11835
11836 ivda.vda_name = BYTE_GET (evda.vda_name);
11837
11838 if (ivda.vda_name >= string_sec->sh_size)
11839 name = invalid;
11840 else if (name != NULL && name != invalid)
11841 name = _("*both*");
11842 else
11843 name = strtab + ivda.vda_name;
11844 }
11845 }
11846 if (name != NULL)
11847 nn += printf ("(%s%-*s",
11848 name,
11849 12 - (int) strlen (name),
11850 ")");
11851
11852 if (nn < 18)
11853 printf ("%*c", 18 - nn, ' ');
11854 }
11855
11856 putchar ('\n');
11857 }
11858
11859 free (data);
11860 free (strtab);
11861 free (symbols);
11862 }
11863 break;
11864
11865 default:
11866 break;
11867 }
11868 }
11869
11870 if (! found)
11871 {
11872 if (filedata->is_separate)
11873 printf (_("\nNo version information found in linked file '%s'.\n"),
11874 filedata->file_name);
11875 else
11876 printf (_("\nNo version information found in this file.\n"));
11877 }
11878
11879 return true;
11880 }
11881
11882 static const char *
11883 get_symbol_binding (Filedata * filedata, unsigned int binding)
11884 {
11885 static char buff[64];
11886
11887 switch (binding)
11888 {
11889 case STB_LOCAL: return "LOCAL";
11890 case STB_GLOBAL: return "GLOBAL";
11891 case STB_WEAK: return "WEAK";
11892 default:
11893 if (binding >= STB_LOPROC && binding <= STB_HIPROC)
11894 snprintf (buff, sizeof (buff), _("<processor specific>: %d"),
11895 binding);
11896 else if (binding >= STB_LOOS && binding <= STB_HIOS)
11897 {
11898 if (binding == STB_GNU_UNIQUE
11899 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU)
11900 return "UNIQUE";
11901 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding);
11902 }
11903 else
11904 snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding);
11905 return buff;
11906 }
11907 }
11908
11909 static const char *
11910 get_symbol_type (Filedata * filedata, unsigned int type)
11911 {
11912 static char buff[64];
11913
11914 switch (type)
11915 {
11916 case STT_NOTYPE: return "NOTYPE";
11917 case STT_OBJECT: return "OBJECT";
11918 case STT_FUNC: return "FUNC";
11919 case STT_SECTION: return "SECTION";
11920 case STT_FILE: return "FILE";
11921 case STT_COMMON: return "COMMON";
11922 case STT_TLS: return "TLS";
11923 case STT_RELC: return "RELC";
11924 case STT_SRELC: return "SRELC";
11925 default:
11926 if (type >= STT_LOPROC && type <= STT_HIPROC)
11927 {
11928 if (filedata->file_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
11929 return "THUMB_FUNC";
11930
11931 if (filedata->file_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
11932 return "REGISTER";
11933
11934 if (filedata->file_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI)
11935 return "PARISC_MILLI";
11936
11937 snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type);
11938 }
11939 else if (type >= STT_LOOS && type <= STT_HIOS)
11940 {
11941 if (filedata->file_header.e_machine == EM_PARISC)
11942 {
11943 if (type == STT_HP_OPAQUE)
11944 return "HP_OPAQUE";
11945 if (type == STT_HP_STUB)
11946 return "HP_STUB";
11947 }
11948
11949 if (type == STT_GNU_IFUNC
11950 && (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU
11951 || filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_FREEBSD))
11952 return "IFUNC";
11953
11954 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type);
11955 }
11956 else
11957 snprintf (buff, sizeof (buff), _("<unknown>: %d"), type);
11958 return buff;
11959 }
11960 }
11961
11962 static const char *
11963 get_symbol_visibility (unsigned int visibility)
11964 {
11965 switch (visibility)
11966 {
11967 case STV_DEFAULT: return "DEFAULT";
11968 case STV_INTERNAL: return "INTERNAL";
11969 case STV_HIDDEN: return "HIDDEN";
11970 case STV_PROTECTED: return "PROTECTED";
11971 default:
11972 error (_("Unrecognized visibility value: %u\n"), visibility);
11973 return _("<unknown>");
11974 }
11975 }
11976
11977 static const char *
11978 get_alpha_symbol_other (unsigned int other)
11979 {
11980 switch (other)
11981 {
11982 case STO_ALPHA_NOPV: return "NOPV";
11983 case STO_ALPHA_STD_GPLOAD: return "STD GPLOAD";
11984 default:
11985 error (_("Unrecognized alpha specific other value: %u\n"), other);
11986 return _("<unknown>");
11987 }
11988 }
11989
11990 static const char *
11991 get_solaris_symbol_visibility (unsigned int visibility)
11992 {
11993 switch (visibility)
11994 {
11995 case 4: return "EXPORTED";
11996 case 5: return "SINGLETON";
11997 case 6: return "ELIMINATE";
11998 default: return get_symbol_visibility (visibility);
11999 }
12000 }
12001
12002 static const char *
12003 get_aarch64_symbol_other (unsigned int other)
12004 {
12005 static char buf[32];
12006
12007 if (other & STO_AARCH64_VARIANT_PCS)
12008 {
12009 other &= ~STO_AARCH64_VARIANT_PCS;
12010 if (other == 0)
12011 return "VARIANT_PCS";
12012 snprintf (buf, sizeof buf, "VARIANT_PCS | %x", other);
12013 return buf;
12014 }
12015 return NULL;
12016 }
12017
12018 static const char *
12019 get_mips_symbol_other (unsigned int other)
12020 {
12021 switch (other)
12022 {
12023 case STO_OPTIONAL: return "OPTIONAL";
12024 case STO_MIPS_PLT: return "MIPS PLT";
12025 case STO_MIPS_PIC: return "MIPS PIC";
12026 case STO_MICROMIPS: return "MICROMIPS";
12027 case STO_MICROMIPS | STO_MIPS_PIC: return "MICROMIPS, MIPS PIC";
12028 case STO_MIPS16: return "MIPS16";
12029 default: return NULL;
12030 }
12031 }
12032
12033 static const char *
12034 get_ia64_symbol_other (Filedata * filedata, unsigned int other)
12035 {
12036 if (is_ia64_vms (filedata))
12037 {
12038 static char res[32];
12039
12040 res[0] = 0;
12041
12042 /* Function types is for images and .STB files only. */
12043 switch (filedata->file_header.e_type)
12044 {
12045 case ET_DYN:
12046 case ET_EXEC:
12047 switch (VMS_ST_FUNC_TYPE (other))
12048 {
12049 case VMS_SFT_CODE_ADDR:
12050 strcat (res, " CA");
12051 break;
12052 case VMS_SFT_SYMV_IDX:
12053 strcat (res, " VEC");
12054 break;
12055 case VMS_SFT_FD:
12056 strcat (res, " FD");
12057 break;
12058 case VMS_SFT_RESERVE:
12059 strcat (res, " RSV");
12060 break;
12061 default:
12062 warn (_("Unrecognized IA64 VMS ST Function type: %d\n"),
12063 VMS_ST_FUNC_TYPE (other));
12064 strcat (res, " <unknown>");
12065 break;
12066 }
12067 break;
12068 default:
12069 break;
12070 }
12071 switch (VMS_ST_LINKAGE (other))
12072 {
12073 case VMS_STL_IGNORE:
12074 strcat (res, " IGN");
12075 break;
12076 case VMS_STL_RESERVE:
12077 strcat (res, " RSV");
12078 break;
12079 case VMS_STL_STD:
12080 strcat (res, " STD");
12081 break;
12082 case VMS_STL_LNK:
12083 strcat (res, " LNK");
12084 break;
12085 default:
12086 warn (_("Unrecognized IA64 VMS ST Linkage: %d\n"),
12087 VMS_ST_LINKAGE (other));
12088 strcat (res, " <unknown>");
12089 break;
12090 }
12091
12092 if (res[0] != 0)
12093 return res + 1;
12094 else
12095 return res;
12096 }
12097 return NULL;
12098 }
12099
12100 static const char *
12101 get_ppc64_symbol_other (unsigned int other)
12102 {
12103 if ((other & ~STO_PPC64_LOCAL_MASK) != 0)
12104 return NULL;
12105
12106 other >>= STO_PPC64_LOCAL_BIT;
12107 if (other <= 6)
12108 {
12109 static char buf[64];
12110 if (other >= 2)
12111 other = ppc64_decode_local_entry (other);
12112 snprintf (buf, sizeof buf, _("<localentry>: %d"), other);
12113 return buf;
12114 }
12115 return NULL;
12116 }
12117
12118 static const char *
12119 get_symbol_other (Filedata * filedata, unsigned int other)
12120 {
12121 const char * result = NULL;
12122 static char buff [64];
12123
12124 if (other == 0)
12125 return "";
12126
12127 switch (filedata->file_header.e_machine)
12128 {
12129 case EM_ALPHA:
12130 result = get_alpha_symbol_other (other);
12131 break;
12132 case EM_AARCH64:
12133 result = get_aarch64_symbol_other (other);
12134 break;
12135 case EM_MIPS:
12136 result = get_mips_symbol_other (other);
12137 break;
12138 case EM_IA_64:
12139 result = get_ia64_symbol_other (filedata, other);
12140 break;
12141 case EM_PPC64:
12142 result = get_ppc64_symbol_other (other);
12143 break;
12144 default:
12145 result = NULL;
12146 break;
12147 }
12148
12149 if (result)
12150 return result;
12151
12152 snprintf (buff, sizeof buff, _("<other>: %x"), other);
12153 return buff;
12154 }
12155
12156 static const char *
12157 get_symbol_index_type (Filedata * filedata, unsigned int type)
12158 {
12159 static char buff[32];
12160
12161 switch (type)
12162 {
12163 case SHN_UNDEF: return "UND";
12164 case SHN_ABS: return "ABS";
12165 case SHN_COMMON: return "COM";
12166 default:
12167 if (type == SHN_IA_64_ANSI_COMMON
12168 && filedata->file_header.e_machine == EM_IA_64
12169 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX)
12170 return "ANSI_COM";
12171 else if ((filedata->file_header.e_machine == EM_X86_64
12172 || filedata->file_header.e_machine == EM_L1OM
12173 || filedata->file_header.e_machine == EM_K1OM)
12174 && type == SHN_X86_64_LCOMMON)
12175 return "LARGE_COM";
12176 else if ((type == SHN_MIPS_SCOMMON
12177 && filedata->file_header.e_machine == EM_MIPS)
12178 || (type == SHN_TIC6X_SCOMMON
12179 && filedata->file_header.e_machine == EM_TI_C6000))
12180 return "SCOM";
12181 else if (type == SHN_MIPS_SUNDEFINED
12182 && filedata->file_header.e_machine == EM_MIPS)
12183 return "SUND";
12184 else if (type >= SHN_LOPROC && type <= SHN_HIPROC)
12185 sprintf (buff, "PRC[0x%04x]", type & 0xffff);
12186 else if (type >= SHN_LOOS && type <= SHN_HIOS)
12187 sprintf (buff, "OS [0x%04x]", type & 0xffff);
12188 else if (type >= SHN_LORESERVE)
12189 sprintf (buff, "RSV[0x%04x]", type & 0xffff);
12190 else if (filedata->file_header.e_shnum != 0
12191 && type >= filedata->file_header.e_shnum)
12192 sprintf (buff, _("bad section index[%3d]"), type);
12193 else
12194 sprintf (buff, "%3d", type);
12195 break;
12196 }
12197
12198 return buff;
12199 }
12200
12201 static const char *
12202 get_symbol_version_string (Filedata * filedata,
12203 bool is_dynsym,
12204 const char * strtab,
12205 unsigned long int strtab_size,
12206 unsigned int si,
12207 Elf_Internal_Sym * psym,
12208 enum versioned_symbol_info * sym_info,
12209 unsigned short * vna_other)
12210 {
12211 unsigned char data[2];
12212 unsigned short vers_data;
12213 unsigned long offset;
12214 unsigned short max_vd_ndx;
12215
12216 if (!is_dynsym
12217 || filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)] == 0)
12218 return NULL;
12219
12220 offset = offset_from_vma (filedata,
12221 filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
12222 sizeof data + si * sizeof (vers_data));
12223
12224 if (get_data (&data, filedata, offset + si * sizeof (vers_data),
12225 sizeof (data), 1, _("version data")) == NULL)
12226 return NULL;
12227
12228 vers_data = byte_get (data, 2);
12229
12230 if ((vers_data & VERSYM_HIDDEN) == 0 && vers_data == 0)
12231 return NULL;
12232
12233 *sym_info = (vers_data & VERSYM_HIDDEN) != 0 ? symbol_hidden : symbol_public;
12234 max_vd_ndx = 0;
12235
12236 /* Usually we'd only see verdef for defined symbols, and verneed for
12237 undefined symbols. However, symbols defined by the linker in
12238 .dynbss for variables copied from a shared library in order to
12239 avoid text relocations are defined yet have verneed. We could
12240 use a heuristic to detect the special case, for example, check
12241 for verneed first on symbols defined in SHT_NOBITS sections, but
12242 it is simpler and more reliable to just look for both verdef and
12243 verneed. .dynbss might not be mapped to a SHT_NOBITS section. */
12244
12245 if (psym->st_shndx != SHN_UNDEF
12246 && vers_data != 0x8001
12247 && filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
12248 {
12249 Elf_Internal_Verdef ivd;
12250 Elf_Internal_Verdaux ivda;
12251 Elf_External_Verdaux evda;
12252 unsigned long off;
12253
12254 off = offset_from_vma (filedata,
12255 filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
12256 sizeof (Elf_External_Verdef));
12257
12258 do
12259 {
12260 Elf_External_Verdef evd;
12261
12262 if (get_data (&evd, filedata, off, sizeof (evd), 1,
12263 _("version def")) == NULL)
12264 {
12265 ivd.vd_ndx = 0;
12266 ivd.vd_aux = 0;
12267 ivd.vd_next = 0;
12268 ivd.vd_flags = 0;
12269 }
12270 else
12271 {
12272 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
12273 ivd.vd_aux = BYTE_GET (evd.vd_aux);
12274 ivd.vd_next = BYTE_GET (evd.vd_next);
12275 ivd.vd_flags = BYTE_GET (evd.vd_flags);
12276 }
12277
12278 if ((ivd.vd_ndx & VERSYM_VERSION) > max_vd_ndx)
12279 max_vd_ndx = ivd.vd_ndx & VERSYM_VERSION;
12280
12281 off += ivd.vd_next;
12282 }
12283 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION) && ivd.vd_next != 0);
12284
12285 if (ivd.vd_ndx == (vers_data & VERSYM_VERSION))
12286 {
12287 if (ivd.vd_ndx == 1 && ivd.vd_flags == VER_FLG_BASE)
12288 return NULL;
12289
12290 off -= ivd.vd_next;
12291 off += ivd.vd_aux;
12292
12293 if (get_data (&evda, filedata, off, sizeof (evda), 1,
12294 _("version def aux")) != NULL)
12295 {
12296 ivda.vda_name = BYTE_GET (evda.vda_name);
12297
12298 if (psym->st_name != ivda.vda_name)
12299 return (ivda.vda_name < strtab_size
12300 ? strtab + ivda.vda_name : _("<corrupt>"));
12301 }
12302 }
12303 }
12304
12305 if (filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
12306 {
12307 Elf_External_Verneed evn;
12308 Elf_Internal_Verneed ivn;
12309 Elf_Internal_Vernaux ivna;
12310
12311 offset = offset_from_vma (filedata,
12312 filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
12313 sizeof evn);
12314 do
12315 {
12316 unsigned long vna_off;
12317
12318 if (get_data (&evn, filedata, offset, sizeof (evn), 1,
12319 _("version need")) == NULL)
12320 {
12321 ivna.vna_next = 0;
12322 ivna.vna_other = 0;
12323 ivna.vna_name = 0;
12324 break;
12325 }
12326
12327 ivn.vn_aux = BYTE_GET (evn.vn_aux);
12328 ivn.vn_next = BYTE_GET (evn.vn_next);
12329
12330 vna_off = offset + ivn.vn_aux;
12331
12332 do
12333 {
12334 Elf_External_Vernaux evna;
12335
12336 if (get_data (&evna, filedata, vna_off, sizeof (evna), 1,
12337 _("version need aux (3)")) == NULL)
12338 {
12339 ivna.vna_next = 0;
12340 ivna.vna_other = 0;
12341 ivna.vna_name = 0;
12342 }
12343 else
12344 {
12345 ivna.vna_other = BYTE_GET (evna.vna_other);
12346 ivna.vna_next = BYTE_GET (evna.vna_next);
12347 ivna.vna_name = BYTE_GET (evna.vna_name);
12348 }
12349
12350 vna_off += ivna.vna_next;
12351 }
12352 while (ivna.vna_other != vers_data && ivna.vna_next != 0);
12353
12354 if (ivna.vna_other == vers_data)
12355 break;
12356
12357 offset += ivn.vn_next;
12358 }
12359 while (ivn.vn_next != 0);
12360
12361 if (ivna.vna_other == vers_data)
12362 {
12363 *sym_info = symbol_undefined;
12364 *vna_other = ivna.vna_other;
12365 return (ivna.vna_name < strtab_size
12366 ? strtab + ivna.vna_name : _("<corrupt>"));
12367 }
12368 else if ((max_vd_ndx || (vers_data & VERSYM_VERSION) != 1)
12369 && (vers_data & VERSYM_VERSION) > max_vd_ndx)
12370 return _("<corrupt>");
12371 }
12372 return NULL;
12373 }
12374
12375 static void
12376 print_dynamic_symbol (Filedata *filedata, unsigned long si,
12377 Elf_Internal_Sym *symtab,
12378 Elf_Internal_Shdr *section,
12379 char *strtab, size_t strtab_size)
12380 {
12381 const char *version_string;
12382 enum versioned_symbol_info sym_info;
12383 unsigned short vna_other;
12384 Elf_Internal_Sym *psym = symtab + si;
12385
12386 printf ("%6ld: ", si);
12387 print_vma (psym->st_value, LONG_HEX);
12388 putchar (' ');
12389 print_vma (psym->st_size, DEC_5);
12390 printf (" %-7s", get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)));
12391 printf (" %-6s", get_symbol_binding (filedata, ELF_ST_BIND (psym->st_info)));
12392 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
12393 printf (" %-7s", get_solaris_symbol_visibility (psym->st_other));
12394 else
12395 {
12396 unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
12397
12398 printf (" %-7s", get_symbol_visibility (vis));
12399 /* Check to see if any other bits in the st_other field are set.
12400 Note - displaying this information disrupts the layout of the
12401 table being generated, but for the moment this case is very rare. */
12402 if (psym->st_other ^ vis)
12403 printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
12404 }
12405 printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx));
12406
12407 bool is_valid = VALID_SYMBOL_NAME (strtab, strtab_size, psym->st_name);
12408 const char * sstr = is_valid ? strtab + psym->st_name : _("<corrupt>");
12409
12410 version_string
12411 = get_symbol_version_string (filedata,
12412 (section == NULL
12413 || section->sh_type == SHT_DYNSYM),
12414 strtab, strtab_size, si,
12415 psym, &sym_info, &vna_other);
12416
12417 int len_avail = 21;
12418 if (! do_wide && version_string != NULL)
12419 {
12420 char buffer[16];
12421
12422 len_avail -= 1 + strlen (version_string);
12423
12424 if (sym_info == symbol_undefined)
12425 len_avail -= sprintf (buffer," (%d)", vna_other);
12426 else if (sym_info != symbol_hidden)
12427 len_avail -= 1;
12428 }
12429
12430 print_symbol (len_avail, sstr);
12431
12432 if (version_string)
12433 {
12434 if (sym_info == symbol_undefined)
12435 printf ("@%s (%d)", version_string, vna_other);
12436 else
12437 printf (sym_info == symbol_hidden ? "@%s" : "@@%s",
12438 version_string);
12439 }
12440
12441 putchar ('\n');
12442
12443 if (ELF_ST_BIND (psym->st_info) == STB_LOCAL
12444 && section != NULL
12445 && si >= section->sh_info
12446 /* Irix 5 and 6 MIPS binaries are known to ignore this requirement. */
12447 && filedata->file_header.e_machine != EM_MIPS
12448 /* Solaris binaries have been found to violate this requirement as
12449 well. Not sure if this is a bug or an ABI requirement. */
12450 && filedata->file_header.e_ident[EI_OSABI] != ELFOSABI_SOLARIS)
12451 warn (_("local symbol %lu found at index >= %s's sh_info value of %u\n"),
12452 si, printable_section_name (filedata, section), section->sh_info);
12453 }
12454
12455 static const char *
12456 get_lto_kind (unsigned int kind)
12457 {
12458 switch (kind)
12459 {
12460 case 0: return "DEF";
12461 case 1: return "WEAKDEF";
12462 case 2: return "UNDEF";
12463 case 3: return "WEAKUNDEF";
12464 case 4: return "COMMON";
12465 default:
12466 break;
12467 }
12468
12469 static char buffer[30];
12470 error (_("Unknown LTO symbol definition encountered: %u\n"), kind);
12471 sprintf (buffer, "<unknown: %u>", kind);
12472 return buffer;
12473 }
12474
12475 static const char *
12476 get_lto_visibility (unsigned int visibility)
12477 {
12478 switch (visibility)
12479 {
12480 case 0: return "DEFAULT";
12481 case 1: return "PROTECTED";
12482 case 2: return "INTERNAL";
12483 case 3: return "HIDDEN";
12484 default:
12485 break;
12486 }
12487
12488 static char buffer[30];
12489 error (_("Unknown LTO symbol visibility encountered: %u\n"), visibility);
12490 sprintf (buffer, "<unknown: %u>", visibility);
12491 return buffer;
12492 }
12493
12494 static const char *
12495 get_lto_sym_type (unsigned int sym_type)
12496 {
12497 switch (sym_type)
12498 {
12499 case 0: return "UNKNOWN";
12500 case 1: return "FUNCTION";
12501 case 2: return "VARIABLE";
12502 default:
12503 break;
12504 }
12505
12506 static char buffer[30];
12507 error (_("Unknown LTO symbol type encountered: %u\n"), sym_type);
12508 sprintf (buffer, "<unknown: %u>", sym_type);
12509 return buffer;
12510 }
12511
12512 /* Display an LTO format symbol table.
12513 FIXME: The format of LTO symbol tables is not formalized.
12514 So this code could need changing in the future. */
12515
12516 static bool
12517 display_lto_symtab (Filedata * filedata,
12518 Elf_Internal_Shdr * section)
12519 {
12520 if (section->sh_size == 0)
12521 {
12522 if (filedata->is_separate)
12523 printf (_("\nThe LTO Symbol table section '%s' in linked file '%s' is empty!\n"),
12524 printable_section_name (filedata, section),
12525 filedata->file_name);
12526 else
12527 printf (_("\nLTO Symbol table '%s' is empty!\n"),
12528 printable_section_name (filedata, section));
12529
12530 return true;
12531 }
12532
12533 if (section->sh_size > filedata->file_size)
12534 {
12535 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
12536 printable_section_name (filedata, section),
12537 (unsigned long) section->sh_size);
12538 return false;
12539 }
12540
12541 void * alloced_data = get_data (NULL, filedata, section->sh_offset,
12542 section->sh_size, 1, _("LTO symbols"));
12543 if (alloced_data == NULL)
12544 return false;
12545
12546 /* Look for extended data for the symbol table. */
12547 Elf_Internal_Shdr * ext;
12548 void * ext_data_orig = NULL;
12549 char * ext_data = NULL;
12550 char * ext_data_end = NULL;
12551 char * ext_name = NULL;
12552
12553 if (asprintf (& ext_name, ".gnu.lto_.ext_symtab.%s",
12554 SECTION_NAME (section) + sizeof (".gnu.lto_.symtab.") - 1) > 0
12555 && ext_name != NULL /* Paranoia. */
12556 && (ext = find_section (filedata, ext_name)) != NULL)
12557 {
12558 if (ext->sh_size < 3)
12559 error (_("LTO Symbol extension table '%s' is empty!\n"),
12560 printable_section_name (filedata, ext));
12561 else
12562 {
12563 ext_data_orig = ext_data = get_data (NULL, filedata, ext->sh_offset,
12564 ext->sh_size, 1,
12565 _("LTO ext symbol data"));
12566 if (ext_data != NULL)
12567 {
12568 ext_data_end = ext_data + ext->sh_size;
12569 if (* ext_data++ != 1)
12570 error (_("Unexpected version number in symbol extension table\n"));
12571 }
12572 }
12573 }
12574
12575 const unsigned char * data = (const unsigned char *) alloced_data;
12576 const unsigned char * end = data + section->sh_size;
12577
12578 if (filedata->is_separate)
12579 printf (_("\nIn linked file '%s': "), filedata->file_name);
12580 else
12581 printf ("\n");
12582
12583 if (ext_data_orig != NULL)
12584 {
12585 if (do_wide)
12586 printf (_("LTO Symbol table '%s' and extension table '%s' contain:\n"),
12587 printable_section_name (filedata, section),
12588 printable_section_name (filedata, ext));
12589 else
12590 {
12591 printf (_("LTO Symbol table '%s'\n"),
12592 printable_section_name (filedata, section));
12593 printf (_(" and extension table '%s' contain:\n"),
12594 printable_section_name (filedata, ext));
12595 }
12596 }
12597 else
12598 printf (_("LTO Symbol table '%s' contains:\n"),
12599 printable_section_name (filedata, section));
12600
12601 /* FIXME: Add a wide version. */
12602 if (ext_data_orig != NULL)
12603 printf (_(" Comdat_Key Kind Visibility Size Slot Type Section Name\n"));
12604 else
12605 printf (_(" Comdat_Key Kind Visibility Size Slot Name\n"));
12606
12607 /* FIXME: We do not handle style prefixes. */
12608
12609 while (data < end)
12610 {
12611 const unsigned char * sym_name = data;
12612 data += strnlen ((const char *) sym_name, end - data) + 1;
12613 if (data >= end)
12614 goto fail;
12615
12616 const unsigned char * comdat_key = data;
12617 data += strnlen ((const char *) comdat_key, end - data) + 1;
12618 if (data >= end)
12619 goto fail;
12620
12621 if (data + 2 + 8 + 4 > end)
12622 goto fail;
12623
12624 unsigned int kind = *data++;
12625 unsigned int visibility = *data++;
12626
12627 elf_vma size = byte_get (data, 8);
12628 data += 8;
12629
12630 elf_vma slot = byte_get (data, 4);
12631 data += 4;
12632
12633 if (ext_data != NULL)
12634 {
12635 if (ext_data < (ext_data_end - 1))
12636 {
12637 unsigned int sym_type = * ext_data ++;
12638 unsigned int sec_kind = * ext_data ++;
12639
12640 printf (" %10s %10s %11s %08lx %08lx %9s %08lx _",
12641 * comdat_key == 0 ? "-" : (char *) comdat_key,
12642 get_lto_kind (kind),
12643 get_lto_visibility (visibility),
12644 (long) size,
12645 (long) slot,
12646 get_lto_sym_type (sym_type),
12647 (long) sec_kind);
12648 print_symbol (6, (const char *) sym_name);
12649 }
12650 else
12651 {
12652 error (_("Ran out of LTO symbol extension data\n"));
12653 ext_data = NULL;
12654 /* FIXME: return FAIL result ? */
12655 }
12656 }
12657 else
12658 {
12659 printf (" %10s %10s %11s %08lx %08lx _",
12660 * comdat_key == 0 ? "-" : (char *) comdat_key,
12661 get_lto_kind (kind),
12662 get_lto_visibility (visibility),
12663 (long) size,
12664 (long) slot);
12665 print_symbol (21, (const char *) sym_name);
12666 }
12667 putchar ('\n');
12668 }
12669
12670 if (ext_data != NULL && ext_data < ext_data_end)
12671 {
12672 error (_("Data remains in the LTO symbol extension table\n"));
12673 goto fail;
12674 }
12675
12676 free (alloced_data);
12677 free (ext_data_orig);
12678 free (ext_name);
12679 return true;
12680
12681 fail:
12682 error (_("Buffer overrun encountered whilst decoding LTO symbol table\n"));
12683 free (alloced_data);
12684 free (ext_data_orig);
12685 free (ext_name);
12686 return false;
12687 }
12688
12689 /* Display LTO symbol tables. */
12690
12691 static bool
12692 process_lto_symbol_tables (Filedata * filedata)
12693 {
12694 Elf_Internal_Shdr * section;
12695 unsigned int i;
12696 bool res = true;
12697
12698 if (!do_lto_syms)
12699 return true;
12700
12701 if (filedata->section_headers == NULL)
12702 return true;
12703
12704 for (i = 0, section = filedata->section_headers;
12705 i < filedata->file_header.e_shnum;
12706 i++, section++)
12707 if (SECTION_NAME_VALID (section)
12708 && startswith (SECTION_NAME (section), ".gnu.lto_.symtab."))
12709 res &= display_lto_symtab (filedata, section);
12710
12711 return res;
12712 }
12713
12714 /* Dump the symbol table. */
12715
12716 static bool
12717 process_symbol_table (Filedata * filedata)
12718 {
12719 Elf_Internal_Shdr * section;
12720
12721 if (!do_syms && !do_dyn_syms && !do_histogram)
12722 return true;
12723
12724 if ((filedata->dynamic_info[DT_HASH] || filedata->dynamic_info_DT_GNU_HASH)
12725 && do_syms
12726 && do_using_dynamic
12727 && filedata->dynamic_strings != NULL
12728 && filedata->dynamic_symbols != NULL)
12729 {
12730 unsigned long si;
12731
12732 if (filedata->is_separate)
12733 {
12734 printf (ngettext ("\nIn linked file '%s' the dynamic symbol table contains %lu entry:\n",
12735 "\nIn linked file '%s' the dynamic symbol table contains %lu entries:\n",
12736 filedata->num_dynamic_syms),
12737 filedata->file_name,
12738 filedata->num_dynamic_syms);
12739 }
12740 else
12741 {
12742 printf (ngettext ("\nSymbol table for image contains %lu entry:\n",
12743 "\nSymbol table for image contains %lu entries:\n",
12744 filedata->num_dynamic_syms),
12745 filedata->num_dynamic_syms);
12746 }
12747 if (is_32bit_elf)
12748 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
12749 else
12750 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
12751
12752 for (si = 0; si < filedata->num_dynamic_syms; si++)
12753 print_dynamic_symbol (filedata, si, filedata->dynamic_symbols, NULL,
12754 filedata->dynamic_strings,
12755 filedata->dynamic_strings_length);
12756 }
12757 else if ((do_dyn_syms || (do_syms && !do_using_dynamic))
12758 && filedata->section_headers != NULL)
12759 {
12760 unsigned int i;
12761
12762 for (i = 0, section = filedata->section_headers;
12763 i < filedata->file_header.e_shnum;
12764 i++, section++)
12765 {
12766 char * strtab = NULL;
12767 unsigned long int strtab_size = 0;
12768 Elf_Internal_Sym * symtab;
12769 unsigned long si, num_syms;
12770
12771 if ((section->sh_type != SHT_SYMTAB
12772 && section->sh_type != SHT_DYNSYM)
12773 || (!do_syms
12774 && section->sh_type == SHT_SYMTAB))
12775 continue;
12776
12777 if (section->sh_entsize == 0)
12778 {
12779 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
12780 printable_section_name (filedata, section));
12781 continue;
12782 }
12783
12784 num_syms = section->sh_size / section->sh_entsize;
12785
12786 if (filedata->is_separate)
12787 printf (ngettext ("\nIn linked file '%s' symbol section '%s' contains %lu entry:\n",
12788 "\nIn linked file '%s' symbol section '%s' contains %lu entries:\n",
12789 num_syms),
12790 filedata->file_name,
12791 printable_section_name (filedata, section),
12792 num_syms);
12793 else
12794 printf (ngettext ("\nSymbol table '%s' contains %lu entry:\n",
12795 "\nSymbol table '%s' contains %lu entries:\n",
12796 num_syms),
12797 printable_section_name (filedata, section),
12798 num_syms);
12799
12800 if (is_32bit_elf)
12801 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
12802 else
12803 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
12804
12805 symtab = GET_ELF_SYMBOLS (filedata, section, & num_syms);
12806 if (symtab == NULL)
12807 continue;
12808
12809 if (section->sh_link == filedata->file_header.e_shstrndx)
12810 {
12811 strtab = filedata->string_table;
12812 strtab_size = filedata->string_table_length;
12813 }
12814 else if (section->sh_link < filedata->file_header.e_shnum)
12815 {
12816 Elf_Internal_Shdr * string_sec;
12817
12818 string_sec = filedata->section_headers + section->sh_link;
12819
12820 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset,
12821 1, string_sec->sh_size,
12822 _("string table"));
12823 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
12824 }
12825
12826 for (si = 0; si < num_syms; si++)
12827 print_dynamic_symbol (filedata, si, symtab, section,
12828 strtab, strtab_size);
12829
12830 free (symtab);
12831 if (strtab != filedata->string_table)
12832 free (strtab);
12833 }
12834 }
12835 else if (do_syms)
12836 printf
12837 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
12838
12839 if (do_histogram && filedata->buckets != NULL)
12840 {
12841 unsigned long * lengths;
12842 unsigned long * counts;
12843 unsigned long hn;
12844 bfd_vma si;
12845 unsigned long maxlength = 0;
12846 unsigned long nzero_counts = 0;
12847 unsigned long nsyms = 0;
12848 char *visited;
12849
12850 printf (ngettext ("\nHistogram for bucket list length "
12851 "(total of %lu bucket):\n",
12852 "\nHistogram for bucket list length "
12853 "(total of %lu buckets):\n",
12854 (unsigned long) filedata->nbuckets),
12855 (unsigned long) filedata->nbuckets);
12856
12857 lengths = (unsigned long *) calloc (filedata->nbuckets,
12858 sizeof (*lengths));
12859 if (lengths == NULL)
12860 {
12861 error (_("Out of memory allocating space for histogram buckets\n"));
12862 goto err_out;
12863 }
12864 visited = xcmalloc (filedata->nchains, 1);
12865 memset (visited, 0, filedata->nchains);
12866
12867 printf (_(" Length Number %% of total Coverage\n"));
12868 for (hn = 0; hn < filedata->nbuckets; ++hn)
12869 {
12870 for (si = filedata->buckets[hn]; si > 0; si = filedata->chains[si])
12871 {
12872 ++nsyms;
12873 if (maxlength < ++lengths[hn])
12874 ++maxlength;
12875 if (si >= filedata->nchains || visited[si])
12876 {
12877 error (_("histogram chain is corrupt\n"));
12878 break;
12879 }
12880 visited[si] = 1;
12881 }
12882 }
12883 free (visited);
12884
12885 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
12886 if (counts == NULL)
12887 {
12888 free (lengths);
12889 error (_("Out of memory allocating space for histogram counts\n"));
12890 goto err_out;
12891 }
12892
12893 for (hn = 0; hn < filedata->nbuckets; ++hn)
12894 ++counts[lengths[hn]];
12895
12896 if (filedata->nbuckets > 0)
12897 {
12898 unsigned long i;
12899 printf (" 0 %-10lu (%5.1f%%)\n",
12900 counts[0], (counts[0] * 100.0) / filedata->nbuckets);
12901 for (i = 1; i <= maxlength; ++i)
12902 {
12903 nzero_counts += counts[i] * i;
12904 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
12905 i, counts[i], (counts[i] * 100.0) / filedata->nbuckets,
12906 (nzero_counts * 100.0) / nsyms);
12907 }
12908 }
12909
12910 free (counts);
12911 free (lengths);
12912 }
12913
12914 free (filedata->buckets);
12915 filedata->buckets = NULL;
12916 filedata->nbuckets = 0;
12917 free (filedata->chains);
12918 filedata->chains = NULL;
12919
12920 if (do_histogram && filedata->gnubuckets != NULL)
12921 {
12922 unsigned long * lengths;
12923 unsigned long * counts;
12924 unsigned long hn;
12925 unsigned long maxlength = 0;
12926 unsigned long nzero_counts = 0;
12927 unsigned long nsyms = 0;
12928
12929 printf (ngettext ("\nHistogram for `%s' bucket list length "
12930 "(total of %lu bucket):\n",
12931 "\nHistogram for `%s' bucket list length "
12932 "(total of %lu buckets):\n",
12933 (unsigned long) filedata->ngnubuckets),
12934 GNU_HASH_SECTION_NAME (filedata),
12935 (unsigned long) filedata->ngnubuckets);
12936
12937 lengths = (unsigned long *) calloc (filedata->ngnubuckets,
12938 sizeof (*lengths));
12939 if (lengths == NULL)
12940 {
12941 error (_("Out of memory allocating space for gnu histogram buckets\n"));
12942 goto err_out;
12943 }
12944
12945 printf (_(" Length Number %% of total Coverage\n"));
12946
12947 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
12948 if (filedata->gnubuckets[hn] != 0)
12949 {
12950 bfd_vma off, length = 1;
12951
12952 for (off = filedata->gnubuckets[hn] - filedata->gnusymidx;
12953 /* PR 17531 file: 010-77222-0.004. */
12954 off < filedata->ngnuchains
12955 && (filedata->gnuchains[off] & 1) == 0;
12956 ++off)
12957 ++length;
12958 lengths[hn] = length;
12959 if (length > maxlength)
12960 maxlength = length;
12961 nsyms += length;
12962 }
12963
12964 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
12965 if (counts == NULL)
12966 {
12967 free (lengths);
12968 error (_("Out of memory allocating space for gnu histogram counts\n"));
12969 goto err_out;
12970 }
12971
12972 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
12973 ++counts[lengths[hn]];
12974
12975 if (filedata->ngnubuckets > 0)
12976 {
12977 unsigned long j;
12978 printf (" 0 %-10lu (%5.1f%%)\n",
12979 counts[0], (counts[0] * 100.0) / filedata->ngnubuckets);
12980 for (j = 1; j <= maxlength; ++j)
12981 {
12982 nzero_counts += counts[j] * j;
12983 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
12984 j, counts[j], (counts[j] * 100.0) / filedata->ngnubuckets,
12985 (nzero_counts * 100.0) / nsyms);
12986 }
12987 }
12988
12989 free (counts);
12990 free (lengths);
12991 }
12992 free (filedata->gnubuckets);
12993 filedata->gnubuckets = NULL;
12994 filedata->ngnubuckets = 0;
12995 free (filedata->gnuchains);
12996 filedata->gnuchains = NULL;
12997 filedata->ngnuchains = 0;
12998 free (filedata->mipsxlat);
12999 filedata->mipsxlat = NULL;
13000 return true;
13001
13002 err_out:
13003 free (filedata->gnubuckets);
13004 filedata->gnubuckets = NULL;
13005 filedata->ngnubuckets = 0;
13006 free (filedata->gnuchains);
13007 filedata->gnuchains = NULL;
13008 filedata->ngnuchains = 0;
13009 free (filedata->mipsxlat);
13010 filedata->mipsxlat = NULL;
13011 free (filedata->buckets);
13012 filedata->buckets = NULL;
13013 filedata->nbuckets = 0;
13014 free (filedata->chains);
13015 filedata->chains = NULL;
13016 return false;
13017 }
13018
13019 static bool
13020 process_syminfo (Filedata * filedata)
13021 {
13022 unsigned int i;
13023
13024 if (filedata->dynamic_syminfo == NULL
13025 || !do_dynamic)
13026 /* No syminfo, this is ok. */
13027 return true;
13028
13029 /* There better should be a dynamic symbol section. */
13030 if (filedata->dynamic_symbols == NULL || filedata->dynamic_strings == NULL)
13031 return false;
13032
13033 if (filedata->is_separate)
13034 printf (ngettext ("\nIn linked file '%s: the dynamic info segment at offset 0x%lx contains %d entry:\n",
13035 "\nIn linked file '%s: the dynamic info segment at offset 0x%lx contains %d entries:\n",
13036 filedata->dynamic_syminfo_nent),
13037 filedata->file_name,
13038 filedata->dynamic_syminfo_offset,
13039 filedata->dynamic_syminfo_nent);
13040 else
13041 printf (ngettext ("\nDynamic info segment at offset 0x%lx "
13042 "contains %d entry:\n",
13043 "\nDynamic info segment at offset 0x%lx "
13044 "contains %d entries:\n",
13045 filedata->dynamic_syminfo_nent),
13046 filedata->dynamic_syminfo_offset,
13047 filedata->dynamic_syminfo_nent);
13048
13049 printf (_(" Num: Name BoundTo Flags\n"));
13050 for (i = 0; i < filedata->dynamic_syminfo_nent; ++i)
13051 {
13052 unsigned short int flags = filedata->dynamic_syminfo[i].si_flags;
13053
13054 printf ("%4d: ", i);
13055 if (i >= filedata->num_dynamic_syms)
13056 printf (_("<corrupt index>"));
13057 else if (VALID_DYNAMIC_NAME (filedata, filedata->dynamic_symbols[i].st_name))
13058 print_symbol (30, GET_DYNAMIC_NAME (filedata,
13059 filedata->dynamic_symbols[i].st_name));
13060 else
13061 printf (_("<corrupt: %19ld>"), filedata->dynamic_symbols[i].st_name);
13062 putchar (' ');
13063
13064 switch (filedata->dynamic_syminfo[i].si_boundto)
13065 {
13066 case SYMINFO_BT_SELF:
13067 fputs ("SELF ", stdout);
13068 break;
13069 case SYMINFO_BT_PARENT:
13070 fputs ("PARENT ", stdout);
13071 break;
13072 default:
13073 if (filedata->dynamic_syminfo[i].si_boundto > 0
13074 && filedata->dynamic_syminfo[i].si_boundto < filedata->dynamic_nent
13075 && VALID_DYNAMIC_NAME (filedata,
13076 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val))
13077 {
13078 print_symbol (10, GET_DYNAMIC_NAME (filedata,
13079 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val));
13080 putchar (' ' );
13081 }
13082 else
13083 printf ("%-10d ", filedata->dynamic_syminfo[i].si_boundto);
13084 break;
13085 }
13086
13087 if (flags & SYMINFO_FLG_DIRECT)
13088 printf (" DIRECT");
13089 if (flags & SYMINFO_FLG_PASSTHRU)
13090 printf (" PASSTHRU");
13091 if (flags & SYMINFO_FLG_COPY)
13092 printf (" COPY");
13093 if (flags & SYMINFO_FLG_LAZYLOAD)
13094 printf (" LAZYLOAD");
13095
13096 puts ("");
13097 }
13098
13099 return true;
13100 }
13101
13102 /* A macro which evaluates to TRUE if the region ADDR .. ADDR + NELEM
13103 is contained by the region START .. END. The types of ADDR, START
13104 and END should all be the same. Note both ADDR + NELEM and END
13105 point to just beyond the end of the regions that are being tested. */
13106 #define IN_RANGE(START,END,ADDR,NELEM) \
13107 (((ADDR) >= (START)) && ((ADDR) < (END)) && ((ADDR) + (NELEM) <= (END)))
13108
13109 /* Check to see if the given reloc needs to be handled in a target specific
13110 manner. If so then process the reloc and return TRUE otherwise return
13111 FALSE.
13112
13113 If called with reloc == NULL, then this is a signal that reloc processing
13114 for the current section has finished, and any saved state should be
13115 discarded. */
13116
13117 static bool
13118 target_specific_reloc_handling (Filedata * filedata,
13119 Elf_Internal_Rela * reloc,
13120 unsigned char * start,
13121 unsigned char * end,
13122 Elf_Internal_Sym * symtab,
13123 unsigned long num_syms)
13124 {
13125 unsigned int reloc_type = 0;
13126 unsigned long sym_index = 0;
13127
13128 if (reloc)
13129 {
13130 reloc_type = get_reloc_type (filedata, reloc->r_info);
13131 sym_index = get_reloc_symindex (reloc->r_info);
13132 }
13133
13134 switch (filedata->file_header.e_machine)
13135 {
13136 case EM_MSP430:
13137 case EM_MSP430_OLD:
13138 {
13139 static Elf_Internal_Sym * saved_sym = NULL;
13140
13141 if (reloc == NULL)
13142 {
13143 saved_sym = NULL;
13144 return true;
13145 }
13146
13147 switch (reloc_type)
13148 {
13149 case 10: /* R_MSP430_SYM_DIFF */
13150 case 12: /* R_MSP430_GNU_SUB_ULEB128 */
13151 if (uses_msp430x_relocs (filedata))
13152 break;
13153 /* Fall through. */
13154 case 21: /* R_MSP430X_SYM_DIFF */
13155 case 23: /* R_MSP430X_GNU_SUB_ULEB128 */
13156 /* PR 21139. */
13157 if (sym_index >= num_syms)
13158 error (_("MSP430 SYM_DIFF reloc contains invalid symbol index %lu\n"),
13159 sym_index);
13160 else
13161 saved_sym = symtab + sym_index;
13162 return true;
13163
13164 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
13165 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
13166 goto handle_sym_diff;
13167
13168 case 5: /* R_MSP430_16_BYTE */
13169 case 9: /* R_MSP430_8 */
13170 case 11: /* R_MSP430_GNU_SET_ULEB128 */
13171 if (uses_msp430x_relocs (filedata))
13172 break;
13173 goto handle_sym_diff;
13174
13175 case 2: /* R_MSP430_ABS16 */
13176 case 15: /* R_MSP430X_ABS16 */
13177 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
13178 if (! uses_msp430x_relocs (filedata))
13179 break;
13180 goto handle_sym_diff;
13181
13182 handle_sym_diff:
13183 if (saved_sym != NULL)
13184 {
13185 bfd_vma value;
13186 unsigned int reloc_size = 0;
13187 int leb_ret = 0;
13188 switch (reloc_type)
13189 {
13190 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
13191 reloc_size = 4;
13192 break;
13193 case 11: /* R_MSP430_GNU_SET_ULEB128 */
13194 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
13195 if (reloc->r_offset < (size_t) (end - start))
13196 read_leb128 (start + reloc->r_offset, end, false,
13197 &reloc_size, &leb_ret);
13198 break;
13199 default:
13200 reloc_size = 2;
13201 break;
13202 }
13203
13204 if (leb_ret != 0 || reloc_size == 0 || reloc_size > 8)
13205 error (_("MSP430 ULEB128 field at 0x%lx contains invalid "
13206 "ULEB128 value\n"),
13207 (long) reloc->r_offset);
13208 else if (sym_index >= num_syms)
13209 error (_("MSP430 reloc contains invalid symbol index %lu\n"),
13210 sym_index);
13211 else
13212 {
13213 value = reloc->r_addend + (symtab[sym_index].st_value
13214 - saved_sym->st_value);
13215
13216 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
13217 byte_put (start + reloc->r_offset, value, reloc_size);
13218 else
13219 /* PR 21137 */
13220 error (_("MSP430 sym diff reloc contains invalid offset: 0x%lx\n"),
13221 (long) reloc->r_offset);
13222 }
13223
13224 saved_sym = NULL;
13225 return true;
13226 }
13227 break;
13228
13229 default:
13230 if (saved_sym != NULL)
13231 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
13232 break;
13233 }
13234 break;
13235 }
13236
13237 case EM_MN10300:
13238 case EM_CYGNUS_MN10300:
13239 {
13240 static Elf_Internal_Sym * saved_sym = NULL;
13241
13242 if (reloc == NULL)
13243 {
13244 saved_sym = NULL;
13245 return true;
13246 }
13247
13248 switch (reloc_type)
13249 {
13250 case 34: /* R_MN10300_ALIGN */
13251 return true;
13252 case 33: /* R_MN10300_SYM_DIFF */
13253 if (sym_index >= num_syms)
13254 error (_("MN10300_SYM_DIFF reloc contains invalid symbol index %lu\n"),
13255 sym_index);
13256 else
13257 saved_sym = symtab + sym_index;
13258 return true;
13259
13260 case 1: /* R_MN10300_32 */
13261 case 2: /* R_MN10300_16 */
13262 if (saved_sym != NULL)
13263 {
13264 int reloc_size = reloc_type == 1 ? 4 : 2;
13265 bfd_vma value;
13266
13267 if (sym_index >= num_syms)
13268 error (_("MN10300 reloc contains invalid symbol index %lu\n"),
13269 sym_index);
13270 else
13271 {
13272 value = reloc->r_addend + (symtab[sym_index].st_value
13273 - saved_sym->st_value);
13274
13275 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
13276 byte_put (start + reloc->r_offset, value, reloc_size);
13277 else
13278 error (_("MN10300 sym diff reloc contains invalid offset: 0x%lx\n"),
13279 (long) reloc->r_offset);
13280 }
13281
13282 saved_sym = NULL;
13283 return true;
13284 }
13285 break;
13286 default:
13287 if (saved_sym != NULL)
13288 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
13289 break;
13290 }
13291 break;
13292 }
13293
13294 case EM_RL78:
13295 {
13296 static bfd_vma saved_sym1 = 0;
13297 static bfd_vma saved_sym2 = 0;
13298 static bfd_vma value;
13299
13300 if (reloc == NULL)
13301 {
13302 saved_sym1 = saved_sym2 = 0;
13303 return true;
13304 }
13305
13306 switch (reloc_type)
13307 {
13308 case 0x80: /* R_RL78_SYM. */
13309 saved_sym1 = saved_sym2;
13310 if (sym_index >= num_syms)
13311 error (_("RL78_SYM reloc contains invalid symbol index %lu\n"),
13312 sym_index);
13313 else
13314 {
13315 saved_sym2 = symtab[sym_index].st_value;
13316 saved_sym2 += reloc->r_addend;
13317 }
13318 return true;
13319
13320 case 0x83: /* R_RL78_OPsub. */
13321 value = saved_sym1 - saved_sym2;
13322 saved_sym2 = saved_sym1 = 0;
13323 return true;
13324 break;
13325
13326 case 0x41: /* R_RL78_ABS32. */
13327 if (IN_RANGE (start, end, start + reloc->r_offset, 4))
13328 byte_put (start + reloc->r_offset, value, 4);
13329 else
13330 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
13331 (long) reloc->r_offset);
13332 value = 0;
13333 return true;
13334
13335 case 0x43: /* R_RL78_ABS16. */
13336 if (IN_RANGE (start, end, start + reloc->r_offset, 2))
13337 byte_put (start + reloc->r_offset, value, 2);
13338 else
13339 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
13340 (long) reloc->r_offset);
13341 value = 0;
13342 return true;
13343
13344 default:
13345 break;
13346 }
13347 break;
13348 }
13349 }
13350
13351 return false;
13352 }
13353
13354 /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
13355 DWARF debug sections. This is a target specific test. Note - we do not
13356 go through the whole including-target-headers-multiple-times route, (as
13357 we have already done with <elf/h8.h>) because this would become very
13358 messy and even then this function would have to contain target specific
13359 information (the names of the relocs instead of their numeric values).
13360 FIXME: This is not the correct way to solve this problem. The proper way
13361 is to have target specific reloc sizing and typing functions created by
13362 the reloc-macros.h header, in the same way that it already creates the
13363 reloc naming functions. */
13364
13365 static bool
13366 is_32bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13367 {
13368 /* Please keep this table alpha-sorted for ease of visual lookup. */
13369 switch (filedata->file_header.e_machine)
13370 {
13371 case EM_386:
13372 case EM_IAMCU:
13373 return reloc_type == 1; /* R_386_32. */
13374 case EM_68K:
13375 return reloc_type == 1; /* R_68K_32. */
13376 case EM_860:
13377 return reloc_type == 1; /* R_860_32. */
13378 case EM_960:
13379 return reloc_type == 2; /* R_960_32. */
13380 case EM_AARCH64:
13381 return (reloc_type == 258
13382 || reloc_type == 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */
13383 case EM_BPF:
13384 return reloc_type == 11; /* R_BPF_DATA_32 */
13385 case EM_ADAPTEVA_EPIPHANY:
13386 return reloc_type == 3;
13387 case EM_ALPHA:
13388 return reloc_type == 1; /* R_ALPHA_REFLONG. */
13389 case EM_ARC:
13390 return reloc_type == 1; /* R_ARC_32. */
13391 case EM_ARC_COMPACT:
13392 case EM_ARC_COMPACT2:
13393 return reloc_type == 4; /* R_ARC_32. */
13394 case EM_ARM:
13395 return reloc_type == 2; /* R_ARM_ABS32 */
13396 case EM_AVR_OLD:
13397 case EM_AVR:
13398 return reloc_type == 1;
13399 case EM_BLACKFIN:
13400 return reloc_type == 0x12; /* R_byte4_data. */
13401 case EM_CRIS:
13402 return reloc_type == 3; /* R_CRIS_32. */
13403 case EM_CR16:
13404 return reloc_type == 3; /* R_CR16_NUM32. */
13405 case EM_CRX:
13406 return reloc_type == 15; /* R_CRX_NUM32. */
13407 case EM_CSKY:
13408 return reloc_type == 1; /* R_CKCORE_ADDR32. */
13409 case EM_CYGNUS_FRV:
13410 return reloc_type == 1;
13411 case EM_CYGNUS_D10V:
13412 case EM_D10V:
13413 return reloc_type == 6; /* R_D10V_32. */
13414 case EM_CYGNUS_D30V:
13415 case EM_D30V:
13416 return reloc_type == 12; /* R_D30V_32_NORMAL. */
13417 case EM_DLX:
13418 return reloc_type == 3; /* R_DLX_RELOC_32. */
13419 case EM_CYGNUS_FR30:
13420 case EM_FR30:
13421 return reloc_type == 3; /* R_FR30_32. */
13422 case EM_FT32:
13423 return reloc_type == 1; /* R_FT32_32. */
13424 case EM_H8S:
13425 case EM_H8_300:
13426 case EM_H8_300H:
13427 return reloc_type == 1; /* R_H8_DIR32. */
13428 case EM_IA_64:
13429 return (reloc_type == 0x64 /* R_IA64_SECREL32MSB. */
13430 || reloc_type == 0x65 /* R_IA64_SECREL32LSB. */
13431 || reloc_type == 0x24 /* R_IA64_DIR32MSB. */
13432 || reloc_type == 0x25 /* R_IA64_DIR32LSB. */);
13433 case EM_IP2K_OLD:
13434 case EM_IP2K:
13435 return reloc_type == 2; /* R_IP2K_32. */
13436 case EM_IQ2000:
13437 return reloc_type == 2; /* R_IQ2000_32. */
13438 case EM_LATTICEMICO32:
13439 return reloc_type == 3; /* R_LM32_32. */
13440 case EM_M32C_OLD:
13441 case EM_M32C:
13442 return reloc_type == 3; /* R_M32C_32. */
13443 case EM_M32R:
13444 return reloc_type == 34; /* R_M32R_32_RELA. */
13445 case EM_68HC11:
13446 case EM_68HC12:
13447 return reloc_type == 6; /* R_M68HC11_32. */
13448 case EM_S12Z:
13449 return reloc_type == 7 || /* R_S12Z_EXT32 */
13450 reloc_type == 6; /* R_S12Z_CW32. */
13451 case EM_MCORE:
13452 return reloc_type == 1; /* R_MCORE_ADDR32. */
13453 case EM_CYGNUS_MEP:
13454 return reloc_type == 4; /* R_MEP_32. */
13455 case EM_METAG:
13456 return reloc_type == 2; /* R_METAG_ADDR32. */
13457 case EM_MICROBLAZE:
13458 return reloc_type == 1; /* R_MICROBLAZE_32. */
13459 case EM_MIPS:
13460 return reloc_type == 2; /* R_MIPS_32. */
13461 case EM_MMIX:
13462 return reloc_type == 4; /* R_MMIX_32. */
13463 case EM_CYGNUS_MN10200:
13464 case EM_MN10200:
13465 return reloc_type == 1; /* R_MN10200_32. */
13466 case EM_CYGNUS_MN10300:
13467 case EM_MN10300:
13468 return reloc_type == 1; /* R_MN10300_32. */
13469 case EM_MOXIE:
13470 return reloc_type == 1; /* R_MOXIE_32. */
13471 case EM_MSP430_OLD:
13472 case EM_MSP430:
13473 return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */
13474 case EM_MT:
13475 return reloc_type == 2; /* R_MT_32. */
13476 case EM_NDS32:
13477 return reloc_type == 20; /* R_NDS32_RELA. */
13478 case EM_ALTERA_NIOS2:
13479 return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */
13480 case EM_NIOS32:
13481 return reloc_type == 1; /* R_NIOS_32. */
13482 case EM_OR1K:
13483 return reloc_type == 1; /* R_OR1K_32. */
13484 case EM_PARISC:
13485 return (reloc_type == 1 /* R_PARISC_DIR32. */
13486 || reloc_type == 2 /* R_PARISC_DIR21L. */
13487 || reloc_type == 41); /* R_PARISC_SECREL32. */
13488 case EM_PJ:
13489 case EM_PJ_OLD:
13490 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
13491 case EM_PPC64:
13492 return reloc_type == 1; /* R_PPC64_ADDR32. */
13493 case EM_PPC:
13494 return reloc_type == 1; /* R_PPC_ADDR32. */
13495 case EM_TI_PRU:
13496 return reloc_type == 11; /* R_PRU_BFD_RELOC_32. */
13497 case EM_RISCV:
13498 return reloc_type == 1; /* R_RISCV_32. */
13499 case EM_RL78:
13500 return reloc_type == 1; /* R_RL78_DIR32. */
13501 case EM_RX:
13502 return reloc_type == 1; /* R_RX_DIR32. */
13503 case EM_S370:
13504 return reloc_type == 1; /* R_I370_ADDR31. */
13505 case EM_S390_OLD:
13506 case EM_S390:
13507 return reloc_type == 4; /* R_S390_32. */
13508 case EM_SCORE:
13509 return reloc_type == 8; /* R_SCORE_ABS32. */
13510 case EM_SH:
13511 return reloc_type == 1; /* R_SH_DIR32. */
13512 case EM_SPARC32PLUS:
13513 case EM_SPARCV9:
13514 case EM_SPARC:
13515 return reloc_type == 3 /* R_SPARC_32. */
13516 || reloc_type == 23; /* R_SPARC_UA32. */
13517 case EM_SPU:
13518 return reloc_type == 6; /* R_SPU_ADDR32 */
13519 case EM_TI_C6000:
13520 return reloc_type == 1; /* R_C6000_ABS32. */
13521 case EM_TILEGX:
13522 return reloc_type == 2; /* R_TILEGX_32. */
13523 case EM_TILEPRO:
13524 return reloc_type == 1; /* R_TILEPRO_32. */
13525 case EM_CYGNUS_V850:
13526 case EM_V850:
13527 return reloc_type == 6; /* R_V850_ABS32. */
13528 case EM_V800:
13529 return reloc_type == 0x33; /* R_V810_WORD. */
13530 case EM_VAX:
13531 return reloc_type == 1; /* R_VAX_32. */
13532 case EM_VISIUM:
13533 return reloc_type == 3; /* R_VISIUM_32. */
13534 case EM_WEBASSEMBLY:
13535 return reloc_type == 1; /* R_WASM32_32. */
13536 case EM_X86_64:
13537 case EM_L1OM:
13538 case EM_K1OM:
13539 return reloc_type == 10; /* R_X86_64_32. */
13540 case EM_XC16X:
13541 case EM_C166:
13542 return reloc_type == 3; /* R_XC16C_ABS_32. */
13543 case EM_XGATE:
13544 return reloc_type == 4; /* R_XGATE_32. */
13545 case EM_XSTORMY16:
13546 return reloc_type == 1; /* R_XSTROMY16_32. */
13547 case EM_XTENSA_OLD:
13548 case EM_XTENSA:
13549 return reloc_type == 1; /* R_XTENSA_32. */
13550 case EM_Z80:
13551 return reloc_type == 6; /* R_Z80_32. */
13552 default:
13553 {
13554 static unsigned int prev_warn = 0;
13555
13556 /* Avoid repeating the same warning multiple times. */
13557 if (prev_warn != filedata->file_header.e_machine)
13558 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
13559 filedata->file_header.e_machine);
13560 prev_warn = filedata->file_header.e_machine;
13561 return false;
13562 }
13563 }
13564 }
13565
13566 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13567 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
13568
13569 static bool
13570 is_32bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
13571 {
13572 switch (filedata->file_header.e_machine)
13573 /* Please keep this table alpha-sorted for ease of visual lookup. */
13574 {
13575 case EM_386:
13576 case EM_IAMCU:
13577 return reloc_type == 2; /* R_386_PC32. */
13578 case EM_68K:
13579 return reloc_type == 4; /* R_68K_PC32. */
13580 case EM_AARCH64:
13581 return reloc_type == 261; /* R_AARCH64_PREL32 */
13582 case EM_ADAPTEVA_EPIPHANY:
13583 return reloc_type == 6;
13584 case EM_ALPHA:
13585 return reloc_type == 10; /* R_ALPHA_SREL32. */
13586 case EM_ARC_COMPACT:
13587 case EM_ARC_COMPACT2:
13588 return reloc_type == 49; /* R_ARC_32_PCREL. */
13589 case EM_ARM:
13590 return reloc_type == 3; /* R_ARM_REL32 */
13591 case EM_AVR_OLD:
13592 case EM_AVR:
13593 return reloc_type == 36; /* R_AVR_32_PCREL. */
13594 case EM_MICROBLAZE:
13595 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
13596 case EM_OR1K:
13597 return reloc_type == 9; /* R_OR1K_32_PCREL. */
13598 case EM_PARISC:
13599 return reloc_type == 9; /* R_PARISC_PCREL32. */
13600 case EM_PPC:
13601 return reloc_type == 26; /* R_PPC_REL32. */
13602 case EM_PPC64:
13603 return reloc_type == 26; /* R_PPC64_REL32. */
13604 case EM_RISCV:
13605 return reloc_type == 57; /* R_RISCV_32_PCREL. */
13606 case EM_S390_OLD:
13607 case EM_S390:
13608 return reloc_type == 5; /* R_390_PC32. */
13609 case EM_SH:
13610 return reloc_type == 2; /* R_SH_REL32. */
13611 case EM_SPARC32PLUS:
13612 case EM_SPARCV9:
13613 case EM_SPARC:
13614 return reloc_type == 6; /* R_SPARC_DISP32. */
13615 case EM_SPU:
13616 return reloc_type == 13; /* R_SPU_REL32. */
13617 case EM_TILEGX:
13618 return reloc_type == 6; /* R_TILEGX_32_PCREL. */
13619 case EM_TILEPRO:
13620 return reloc_type == 4; /* R_TILEPRO_32_PCREL. */
13621 case EM_VISIUM:
13622 return reloc_type == 6; /* R_VISIUM_32_PCREL */
13623 case EM_X86_64:
13624 case EM_L1OM:
13625 case EM_K1OM:
13626 return reloc_type == 2; /* R_X86_64_PC32. */
13627 case EM_VAX:
13628 return reloc_type == 4; /* R_VAX_PCREL32. */
13629 case EM_XTENSA_OLD:
13630 case EM_XTENSA:
13631 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
13632 default:
13633 /* Do not abort or issue an error message here. Not all targets use
13634 pc-relative 32-bit relocs in their DWARF debug information and we
13635 have already tested for target coverage in is_32bit_abs_reloc. A
13636 more helpful warning message will be generated by apply_relocations
13637 anyway, so just return. */
13638 return false;
13639 }
13640 }
13641
13642 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13643 a 64-bit absolute RELA relocation used in DWARF debug sections. */
13644
13645 static bool
13646 is_64bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13647 {
13648 switch (filedata->file_header.e_machine)
13649 {
13650 case EM_AARCH64:
13651 return reloc_type == 257; /* R_AARCH64_ABS64. */
13652 case EM_ALPHA:
13653 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
13654 case EM_IA_64:
13655 return (reloc_type == 0x26 /* R_IA64_DIR64MSB. */
13656 || reloc_type == 0x27 /* R_IA64_DIR64LSB. */);
13657 case EM_PARISC:
13658 return reloc_type == 80; /* R_PARISC_DIR64. */
13659 case EM_PPC64:
13660 return reloc_type == 38; /* R_PPC64_ADDR64. */
13661 case EM_RISCV:
13662 return reloc_type == 2; /* R_RISCV_64. */
13663 case EM_SPARC32PLUS:
13664 case EM_SPARCV9:
13665 case EM_SPARC:
13666 return reloc_type == 32 /* R_SPARC_64. */
13667 || reloc_type == 54; /* R_SPARC_UA64. */
13668 case EM_X86_64:
13669 case EM_L1OM:
13670 case EM_K1OM:
13671 return reloc_type == 1; /* R_X86_64_64. */
13672 case EM_S390_OLD:
13673 case EM_S390:
13674 return reloc_type == 22; /* R_S390_64. */
13675 case EM_TILEGX:
13676 return reloc_type == 1; /* R_TILEGX_64. */
13677 case EM_MIPS:
13678 return reloc_type == 18; /* R_MIPS_64. */
13679 default:
13680 return false;
13681 }
13682 }
13683
13684 /* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
13685 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
13686
13687 static bool
13688 is_64bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
13689 {
13690 switch (filedata->file_header.e_machine)
13691 {
13692 case EM_AARCH64:
13693 return reloc_type == 260; /* R_AARCH64_PREL64. */
13694 case EM_ALPHA:
13695 return reloc_type == 11; /* R_ALPHA_SREL64. */
13696 case EM_IA_64:
13697 return (reloc_type == 0x4e /* R_IA64_PCREL64MSB. */
13698 || reloc_type == 0x4f /* R_IA64_PCREL64LSB. */);
13699 case EM_PARISC:
13700 return reloc_type == 72; /* R_PARISC_PCREL64. */
13701 case EM_PPC64:
13702 return reloc_type == 44; /* R_PPC64_REL64. */
13703 case EM_SPARC32PLUS:
13704 case EM_SPARCV9:
13705 case EM_SPARC:
13706 return reloc_type == 46; /* R_SPARC_DISP64. */
13707 case EM_X86_64:
13708 case EM_L1OM:
13709 case EM_K1OM:
13710 return reloc_type == 24; /* R_X86_64_PC64. */
13711 case EM_S390_OLD:
13712 case EM_S390:
13713 return reloc_type == 23; /* R_S390_PC64. */
13714 case EM_TILEGX:
13715 return reloc_type == 5; /* R_TILEGX_64_PCREL. */
13716 default:
13717 return false;
13718 }
13719 }
13720
13721 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13722 a 24-bit absolute RELA relocation used in DWARF debug sections. */
13723
13724 static bool
13725 is_24bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13726 {
13727 switch (filedata->file_header.e_machine)
13728 {
13729 case EM_CYGNUS_MN10200:
13730 case EM_MN10200:
13731 return reloc_type == 4; /* R_MN10200_24. */
13732 case EM_FT32:
13733 return reloc_type == 5; /* R_FT32_20. */
13734 case EM_Z80:
13735 return reloc_type == 5; /* R_Z80_24. */
13736 default:
13737 return false;
13738 }
13739 }
13740
13741 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13742 a 16-bit absolute RELA relocation used in DWARF debug sections. */
13743
13744 static bool
13745 is_16bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13746 {
13747 /* Please keep this table alpha-sorted for ease of visual lookup. */
13748 switch (filedata->file_header.e_machine)
13749 {
13750 case EM_ARC:
13751 case EM_ARC_COMPACT:
13752 case EM_ARC_COMPACT2:
13753 return reloc_type == 2; /* R_ARC_16. */
13754 case EM_ADAPTEVA_EPIPHANY:
13755 return reloc_type == 5;
13756 case EM_AVR_OLD:
13757 case EM_AVR:
13758 return reloc_type == 4; /* R_AVR_16. */
13759 case EM_CYGNUS_D10V:
13760 case EM_D10V:
13761 return reloc_type == 3; /* R_D10V_16. */
13762 case EM_FT32:
13763 return reloc_type == 2; /* R_FT32_16. */
13764 case EM_H8S:
13765 case EM_H8_300:
13766 case EM_H8_300H:
13767 return reloc_type == R_H8_DIR16;
13768 case EM_IP2K_OLD:
13769 case EM_IP2K:
13770 return reloc_type == 1; /* R_IP2K_16. */
13771 case EM_M32C_OLD:
13772 case EM_M32C:
13773 return reloc_type == 1; /* R_M32C_16 */
13774 case EM_CYGNUS_MN10200:
13775 case EM_MN10200:
13776 return reloc_type == 2; /* R_MN10200_16. */
13777 case EM_CYGNUS_MN10300:
13778 case EM_MN10300:
13779 return reloc_type == 2; /* R_MN10300_16. */
13780 case EM_MSP430:
13781 if (uses_msp430x_relocs (filedata))
13782 return reloc_type == 2; /* R_MSP430_ABS16. */
13783 /* Fall through. */
13784 case EM_MSP430_OLD:
13785 return reloc_type == 5; /* R_MSP430_16_BYTE. */
13786 case EM_NDS32:
13787 return reloc_type == 19; /* R_NDS32_RELA. */
13788 case EM_ALTERA_NIOS2:
13789 return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */
13790 case EM_NIOS32:
13791 return reloc_type == 9; /* R_NIOS_16. */
13792 case EM_OR1K:
13793 return reloc_type == 2; /* R_OR1K_16. */
13794 case EM_RISCV:
13795 return reloc_type == 55; /* R_RISCV_SET16. */
13796 case EM_TI_PRU:
13797 return reloc_type == 8; /* R_PRU_BFD_RELOC_16. */
13798 case EM_TI_C6000:
13799 return reloc_type == 2; /* R_C6000_ABS16. */
13800 case EM_VISIUM:
13801 return reloc_type == 2; /* R_VISIUM_16. */
13802 case EM_XC16X:
13803 case EM_C166:
13804 return reloc_type == 2; /* R_XC16C_ABS_16. */
13805 case EM_XGATE:
13806 return reloc_type == 3; /* R_XGATE_16. */
13807 case EM_Z80:
13808 return reloc_type == 4; /* R_Z80_16. */
13809 default:
13810 return false;
13811 }
13812 }
13813
13814 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13815 a 8-bit absolute RELA relocation used in DWARF debug sections. */
13816
13817 static bool
13818 is_8bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13819 {
13820 switch (filedata->file_header.e_machine)
13821 {
13822 case EM_RISCV:
13823 return reloc_type == 54; /* R_RISCV_SET8. */
13824 case EM_Z80:
13825 return reloc_type == 1; /* R_Z80_8. */
13826 default:
13827 return false;
13828 }
13829 }
13830
13831 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13832 a 6-bit absolute RELA relocation used in DWARF debug sections. */
13833
13834 static bool
13835 is_6bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13836 {
13837 switch (filedata->file_header.e_machine)
13838 {
13839 case EM_RISCV:
13840 return reloc_type == 53; /* R_RISCV_SET6. */
13841 default:
13842 return false;
13843 }
13844 }
13845
13846 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13847 a 32-bit inplace add RELA relocation used in DWARF debug sections. */
13848
13849 static bool
13850 is_32bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13851 {
13852 /* Please keep this table alpha-sorted for ease of visual lookup. */
13853 switch (filedata->file_header.e_machine)
13854 {
13855 case EM_RISCV:
13856 return reloc_type == 35; /* R_RISCV_ADD32. */
13857 default:
13858 return false;
13859 }
13860 }
13861
13862 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13863 a 32-bit inplace sub RELA relocation used in DWARF debug sections. */
13864
13865 static bool
13866 is_32bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13867 {
13868 /* Please keep this table alpha-sorted for ease of visual lookup. */
13869 switch (filedata->file_header.e_machine)
13870 {
13871 case EM_RISCV:
13872 return reloc_type == 39; /* R_RISCV_SUB32. */
13873 default:
13874 return false;
13875 }
13876 }
13877
13878 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13879 a 64-bit inplace add RELA relocation used in DWARF debug sections. */
13880
13881 static bool
13882 is_64bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13883 {
13884 /* Please keep this table alpha-sorted for ease of visual lookup. */
13885 switch (filedata->file_header.e_machine)
13886 {
13887 case EM_RISCV:
13888 return reloc_type == 36; /* R_RISCV_ADD64. */
13889 default:
13890 return false;
13891 }
13892 }
13893
13894 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13895 a 64-bit inplace sub RELA relocation used in DWARF debug sections. */
13896
13897 static bool
13898 is_64bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13899 {
13900 /* Please keep this table alpha-sorted for ease of visual lookup. */
13901 switch (filedata->file_header.e_machine)
13902 {
13903 case EM_RISCV:
13904 return reloc_type == 40; /* R_RISCV_SUB64. */
13905 default:
13906 return false;
13907 }
13908 }
13909
13910 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13911 a 16-bit inplace add RELA relocation used in DWARF debug sections. */
13912
13913 static bool
13914 is_16bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13915 {
13916 /* Please keep this table alpha-sorted for ease of visual lookup. */
13917 switch (filedata->file_header.e_machine)
13918 {
13919 case EM_RISCV:
13920 return reloc_type == 34; /* R_RISCV_ADD16. */
13921 default:
13922 return false;
13923 }
13924 }
13925
13926 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13927 a 16-bit inplace sub RELA relocation used in DWARF debug sections. */
13928
13929 static bool
13930 is_16bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13931 {
13932 /* Please keep this table alpha-sorted for ease of visual lookup. */
13933 switch (filedata->file_header.e_machine)
13934 {
13935 case EM_RISCV:
13936 return reloc_type == 38; /* R_RISCV_SUB16. */
13937 default:
13938 return false;
13939 }
13940 }
13941
13942 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13943 a 8-bit inplace add RELA relocation used in DWARF debug sections. */
13944
13945 static bool
13946 is_8bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13947 {
13948 /* Please keep this table alpha-sorted for ease of visual lookup. */
13949 switch (filedata->file_header.e_machine)
13950 {
13951 case EM_RISCV:
13952 return reloc_type == 33; /* R_RISCV_ADD8. */
13953 default:
13954 return false;
13955 }
13956 }
13957
13958 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13959 a 8-bit inplace sub RELA relocation used in DWARF debug sections. */
13960
13961 static bool
13962 is_8bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13963 {
13964 /* Please keep this table alpha-sorted for ease of visual lookup. */
13965 switch (filedata->file_header.e_machine)
13966 {
13967 case EM_RISCV:
13968 return reloc_type == 37; /* R_RISCV_SUB8. */
13969 default:
13970 return false;
13971 }
13972 }
13973
13974 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13975 a 6-bit inplace sub RELA relocation used in DWARF debug sections. */
13976
13977 static bool
13978 is_6bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13979 {
13980 switch (filedata->file_header.e_machine)
13981 {
13982 case EM_RISCV:
13983 return reloc_type == 52; /* R_RISCV_SUB6. */
13984 default:
13985 return false;
13986 }
13987 }
13988
13989 /* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
13990 relocation entries (possibly formerly used for SHT_GROUP sections). */
13991
13992 static bool
13993 is_none_reloc (Filedata * filedata, unsigned int reloc_type)
13994 {
13995 switch (filedata->file_header.e_machine)
13996 {
13997 case EM_386: /* R_386_NONE. */
13998 case EM_68K: /* R_68K_NONE. */
13999 case EM_ADAPTEVA_EPIPHANY:
14000 case EM_ALPHA: /* R_ALPHA_NONE. */
14001 case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */
14002 case EM_ARC: /* R_ARC_NONE. */
14003 case EM_ARC_COMPACT2: /* R_ARC_NONE. */
14004 case EM_ARC_COMPACT: /* R_ARC_NONE. */
14005 case EM_ARM: /* R_ARM_NONE. */
14006 case EM_C166: /* R_XC16X_NONE. */
14007 case EM_CRIS: /* R_CRIS_NONE. */
14008 case EM_FT32: /* R_FT32_NONE. */
14009 case EM_IA_64: /* R_IA64_NONE. */
14010 case EM_K1OM: /* R_X86_64_NONE. */
14011 case EM_L1OM: /* R_X86_64_NONE. */
14012 case EM_M32R: /* R_M32R_NONE. */
14013 case EM_MIPS: /* R_MIPS_NONE. */
14014 case EM_MN10300: /* R_MN10300_NONE. */
14015 case EM_MOXIE: /* R_MOXIE_NONE. */
14016 case EM_NIOS32: /* R_NIOS_NONE. */
14017 case EM_OR1K: /* R_OR1K_NONE. */
14018 case EM_PARISC: /* R_PARISC_NONE. */
14019 case EM_PPC64: /* R_PPC64_NONE. */
14020 case EM_PPC: /* R_PPC_NONE. */
14021 case EM_RISCV: /* R_RISCV_NONE. */
14022 case EM_S390: /* R_390_NONE. */
14023 case EM_S390_OLD:
14024 case EM_SH: /* R_SH_NONE. */
14025 case EM_SPARC32PLUS:
14026 case EM_SPARC: /* R_SPARC_NONE. */
14027 case EM_SPARCV9:
14028 case EM_TILEGX: /* R_TILEGX_NONE. */
14029 case EM_TILEPRO: /* R_TILEPRO_NONE. */
14030 case EM_TI_C6000:/* R_C6000_NONE. */
14031 case EM_X86_64: /* R_X86_64_NONE. */
14032 case EM_XC16X:
14033 case EM_Z80: /* R_Z80_NONE. */
14034 case EM_WEBASSEMBLY: /* R_WASM32_NONE. */
14035 return reloc_type == 0;
14036
14037 case EM_AARCH64:
14038 return reloc_type == 0 || reloc_type == 256;
14039 case EM_AVR_OLD:
14040 case EM_AVR:
14041 return (reloc_type == 0 /* R_AVR_NONE. */
14042 || reloc_type == 30 /* R_AVR_DIFF8. */
14043 || reloc_type == 31 /* R_AVR_DIFF16. */
14044 || reloc_type == 32 /* R_AVR_DIFF32. */);
14045 case EM_METAG:
14046 return reloc_type == 3; /* R_METAG_NONE. */
14047 case EM_NDS32:
14048 return (reloc_type == 0 /* R_XTENSA_NONE. */
14049 || reloc_type == 204 /* R_NDS32_DIFF8. */
14050 || reloc_type == 205 /* R_NDS32_DIFF16. */
14051 || reloc_type == 206 /* R_NDS32_DIFF32. */
14052 || reloc_type == 207 /* R_NDS32_ULEB128. */);
14053 case EM_TI_PRU:
14054 return (reloc_type == 0 /* R_PRU_NONE. */
14055 || reloc_type == 65 /* R_PRU_DIFF8. */
14056 || reloc_type == 66 /* R_PRU_DIFF16. */
14057 || reloc_type == 67 /* R_PRU_DIFF32. */);
14058 case EM_XTENSA_OLD:
14059 case EM_XTENSA:
14060 return (reloc_type == 0 /* R_XTENSA_NONE. */
14061 || reloc_type == 17 /* R_XTENSA_DIFF8. */
14062 || reloc_type == 18 /* R_XTENSA_DIFF16. */
14063 || reloc_type == 19 /* R_XTENSA_DIFF32. */
14064 || reloc_type == 57 /* R_XTENSA_PDIFF8. */
14065 || reloc_type == 58 /* R_XTENSA_PDIFF16. */
14066 || reloc_type == 59 /* R_XTENSA_PDIFF32. */
14067 || reloc_type == 60 /* R_XTENSA_NDIFF8. */
14068 || reloc_type == 61 /* R_XTENSA_NDIFF16. */
14069 || reloc_type == 62 /* R_XTENSA_NDIFF32. */);
14070 }
14071 return false;
14072 }
14073
14074 /* Returns TRUE if there is a relocation against
14075 section NAME at OFFSET bytes. */
14076
14077 bool
14078 reloc_at (struct dwarf_section * dsec, dwarf_vma offset)
14079 {
14080 Elf_Internal_Rela * relocs;
14081 Elf_Internal_Rela * rp;
14082
14083 if (dsec == NULL || dsec->reloc_info == NULL)
14084 return false;
14085
14086 relocs = (Elf_Internal_Rela *) dsec->reloc_info;
14087
14088 for (rp = relocs; rp < relocs + dsec->num_relocs; ++rp)
14089 if (rp->r_offset == offset)
14090 return true;
14091
14092 return false;
14093 }
14094
14095 /* Apply relocations to a section.
14096 Returns TRUE upon success, FALSE otherwise.
14097 If RELOCS_RETURN is non-NULL then it is set to point to the loaded relocs.
14098 It is then the caller's responsibility to free them. NUM_RELOCS_RETURN
14099 will be set to the number of relocs loaded.
14100
14101 Note: So far support has been added only for those relocations
14102 which can be found in debug sections. FIXME: Add support for
14103 more relocations ? */
14104
14105 static bool
14106 apply_relocations (Filedata * filedata,
14107 const Elf_Internal_Shdr * section,
14108 unsigned char * start,
14109 bfd_size_type size,
14110 void ** relocs_return,
14111 unsigned long * num_relocs_return)
14112 {
14113 Elf_Internal_Shdr * relsec;
14114 unsigned char * end = start + size;
14115
14116 if (relocs_return != NULL)
14117 {
14118 * (Elf_Internal_Rela **) relocs_return = NULL;
14119 * num_relocs_return = 0;
14120 }
14121
14122 if (filedata->file_header.e_type != ET_REL)
14123 /* No relocs to apply. */
14124 return true;
14125
14126 /* Find the reloc section associated with the section. */
14127 for (relsec = filedata->section_headers;
14128 relsec < filedata->section_headers + filedata->file_header.e_shnum;
14129 ++relsec)
14130 {
14131 bool is_rela;
14132 unsigned long num_relocs;
14133 Elf_Internal_Rela * relocs;
14134 Elf_Internal_Rela * rp;
14135 Elf_Internal_Shdr * symsec;
14136 Elf_Internal_Sym * symtab;
14137 unsigned long num_syms;
14138 Elf_Internal_Sym * sym;
14139
14140 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
14141 || relsec->sh_info >= filedata->file_header.e_shnum
14142 || filedata->section_headers + relsec->sh_info != section
14143 || relsec->sh_size == 0
14144 || relsec->sh_link >= filedata->file_header.e_shnum)
14145 continue;
14146
14147 symsec = filedata->section_headers + relsec->sh_link;
14148 if (symsec->sh_type != SHT_SYMTAB
14149 && symsec->sh_type != SHT_DYNSYM)
14150 return false;
14151
14152 is_rela = relsec->sh_type == SHT_RELA;
14153
14154 if (is_rela)
14155 {
14156 if (!slurp_rela_relocs (filedata, relsec->sh_offset,
14157 relsec->sh_size, & relocs, & num_relocs))
14158 return false;
14159 }
14160 else
14161 {
14162 if (!slurp_rel_relocs (filedata, relsec->sh_offset,
14163 relsec->sh_size, & relocs, & num_relocs))
14164 return false;
14165 }
14166
14167 /* SH uses RELA but uses in place value instead of the addend field. */
14168 if (filedata->file_header.e_machine == EM_SH)
14169 is_rela = false;
14170
14171 symtab = GET_ELF_SYMBOLS (filedata, symsec, & num_syms);
14172
14173 for (rp = relocs; rp < relocs + num_relocs; ++rp)
14174 {
14175 bfd_vma addend;
14176 unsigned int reloc_type;
14177 unsigned int reloc_size;
14178 bool reloc_inplace = false;
14179 bool reloc_subtract = false;
14180 unsigned char *rloc;
14181 unsigned long sym_index;
14182
14183 reloc_type = get_reloc_type (filedata, rp->r_info);
14184
14185 if (target_specific_reloc_handling (filedata, rp, start, end, symtab, num_syms))
14186 continue;
14187 else if (is_none_reloc (filedata, reloc_type))
14188 continue;
14189 else if (is_32bit_abs_reloc (filedata, reloc_type)
14190 || is_32bit_pcrel_reloc (filedata, reloc_type))
14191 reloc_size = 4;
14192 else if (is_64bit_abs_reloc (filedata, reloc_type)
14193 || is_64bit_pcrel_reloc (filedata, reloc_type))
14194 reloc_size = 8;
14195 else if (is_24bit_abs_reloc (filedata, reloc_type))
14196 reloc_size = 3;
14197 else if (is_16bit_abs_reloc (filedata, reloc_type))
14198 reloc_size = 2;
14199 else if (is_8bit_abs_reloc (filedata, reloc_type)
14200 || is_6bit_abs_reloc (filedata, reloc_type))
14201 reloc_size = 1;
14202 else if ((reloc_subtract = is_32bit_inplace_sub_reloc (filedata,
14203 reloc_type))
14204 || is_32bit_inplace_add_reloc (filedata, reloc_type))
14205 {
14206 reloc_size = 4;
14207 reloc_inplace = true;
14208 }
14209 else if ((reloc_subtract = is_64bit_inplace_sub_reloc (filedata,
14210 reloc_type))
14211 || is_64bit_inplace_add_reloc (filedata, reloc_type))
14212 {
14213 reloc_size = 8;
14214 reloc_inplace = true;
14215 }
14216 else if ((reloc_subtract = is_16bit_inplace_sub_reloc (filedata,
14217 reloc_type))
14218 || is_16bit_inplace_add_reloc (filedata, reloc_type))
14219 {
14220 reloc_size = 2;
14221 reloc_inplace = true;
14222 }
14223 else if ((reloc_subtract = is_8bit_inplace_sub_reloc (filedata,
14224 reloc_type))
14225 || is_8bit_inplace_add_reloc (filedata, reloc_type))
14226 {
14227 reloc_size = 1;
14228 reloc_inplace = true;
14229 }
14230 else if ((reloc_subtract = is_6bit_inplace_sub_reloc (filedata,
14231 reloc_type)))
14232 {
14233 reloc_size = 1;
14234 reloc_inplace = true;
14235 }
14236 else
14237 {
14238 static unsigned int prev_reloc = 0;
14239
14240 if (reloc_type != prev_reloc)
14241 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
14242 reloc_type, printable_section_name (filedata, section));
14243 prev_reloc = reloc_type;
14244 continue;
14245 }
14246
14247 rloc = start + rp->r_offset;
14248 if (!IN_RANGE (start, end, rloc, reloc_size))
14249 {
14250 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
14251 (unsigned long) rp->r_offset,
14252 printable_section_name (filedata, section));
14253 continue;
14254 }
14255
14256 sym_index = (unsigned long) get_reloc_symindex (rp->r_info);
14257 if (sym_index >= num_syms)
14258 {
14259 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
14260 sym_index, printable_section_name (filedata, section));
14261 continue;
14262 }
14263 sym = symtab + sym_index;
14264
14265 /* If the reloc has a symbol associated with it,
14266 make sure that it is of an appropriate type.
14267
14268 Relocations against symbols without type can happen.
14269 Gcc -feliminate-dwarf2-dups may generate symbols
14270 without type for debug info.
14271
14272 Icc generates relocations against function symbols
14273 instead of local labels.
14274
14275 Relocations against object symbols can happen, eg when
14276 referencing a global array. For an example of this see
14277 the _clz.o binary in libgcc.a. */
14278 if (sym != symtab
14279 && ELF_ST_TYPE (sym->st_info) != STT_COMMON
14280 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
14281 {
14282 warn (_("skipping unexpected symbol type %s in section %s relocation %ld\n"),
14283 get_symbol_type (filedata, ELF_ST_TYPE (sym->st_info)),
14284 printable_section_name (filedata, relsec),
14285 (long int)(rp - relocs));
14286 continue;
14287 }
14288
14289 addend = 0;
14290 if (is_rela)
14291 addend += rp->r_addend;
14292 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
14293 partial_inplace. */
14294 if (!is_rela
14295 || (filedata->file_header.e_machine == EM_XTENSA
14296 && reloc_type == 1)
14297 || ((filedata->file_header.e_machine == EM_PJ
14298 || filedata->file_header.e_machine == EM_PJ_OLD)
14299 && reloc_type == 1)
14300 || ((filedata->file_header.e_machine == EM_D30V
14301 || filedata->file_header.e_machine == EM_CYGNUS_D30V)
14302 && reloc_type == 12)
14303 || reloc_inplace)
14304 {
14305 if (is_6bit_inplace_sub_reloc (filedata, reloc_type))
14306 addend += byte_get (rloc, reloc_size) & 0x3f;
14307 else
14308 addend += byte_get (rloc, reloc_size);
14309 }
14310
14311 if (is_32bit_pcrel_reloc (filedata, reloc_type)
14312 || is_64bit_pcrel_reloc (filedata, reloc_type))
14313 {
14314 /* On HPPA, all pc-relative relocations are biased by 8. */
14315 if (filedata->file_header.e_machine == EM_PARISC)
14316 addend -= 8;
14317 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
14318 reloc_size);
14319 }
14320 else if (is_6bit_abs_reloc (filedata, reloc_type)
14321 || is_6bit_inplace_sub_reloc (filedata, reloc_type))
14322 {
14323 if (reloc_subtract)
14324 addend -= sym->st_value;
14325 else
14326 addend += sym->st_value;
14327 addend = (addend & 0x3f) | (byte_get (rloc, reloc_size) & 0xc0);
14328 byte_put (rloc, addend, reloc_size);
14329 }
14330 else if (reloc_subtract)
14331 byte_put (rloc, addend - sym->st_value, reloc_size);
14332 else
14333 byte_put (rloc, addend + sym->st_value, reloc_size);
14334 }
14335
14336 free (symtab);
14337 /* Let the target specific reloc processing code know that
14338 we have finished with these relocs. */
14339 target_specific_reloc_handling (filedata, NULL, NULL, NULL, NULL, 0);
14340
14341 if (relocs_return)
14342 {
14343 * (Elf_Internal_Rela **) relocs_return = relocs;
14344 * num_relocs_return = num_relocs;
14345 }
14346 else
14347 free (relocs);
14348
14349 break;
14350 }
14351
14352 return true;
14353 }
14354
14355 #ifdef SUPPORT_DISASSEMBLY
14356 static bool
14357 disassemble_section (Elf_Internal_Shdr * section, Filedata * filedata)
14358 {
14359 printf (_("\nAssembly dump of section %s\n"), printable_section_name (filedata, section));
14360
14361 /* FIXME: XXX -- to be done --- XXX */
14362
14363 return true;
14364 }
14365 #endif
14366
14367 /* Reads in the contents of SECTION from FILE, returning a pointer
14368 to a malloc'ed buffer or NULL if something went wrong. */
14369
14370 static char *
14371 get_section_contents (Elf_Internal_Shdr * section, Filedata * filedata)
14372 {
14373 bfd_size_type num_bytes = section->sh_size;
14374
14375 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
14376 {
14377 printf (_("Section '%s' has no data to dump.\n"),
14378 printable_section_name (filedata, section));
14379 return NULL;
14380 }
14381
14382 return (char *) get_data (NULL, filedata, section->sh_offset, 1, num_bytes,
14383 _("section contents"));
14384 }
14385
14386 /* Uncompresses a section that was compressed using zlib, in place. */
14387
14388 static bool
14389 uncompress_section_contents (unsigned char ** buffer,
14390 dwarf_size_type uncompressed_size,
14391 dwarf_size_type * size)
14392 {
14393 dwarf_size_type compressed_size = *size;
14394 unsigned char * compressed_buffer = *buffer;
14395 unsigned char * uncompressed_buffer;
14396 z_stream strm;
14397 int rc;
14398
14399 /* It is possible the section consists of several compressed
14400 buffers concatenated together, so we uncompress in a loop. */
14401 /* PR 18313: The state field in the z_stream structure is supposed
14402 to be invisible to the user (ie us), but some compilers will
14403 still complain about it being used without initialisation. So
14404 we first zero the entire z_stream structure and then set the fields
14405 that we need. */
14406 memset (& strm, 0, sizeof strm);
14407 strm.avail_in = compressed_size;
14408 strm.next_in = (Bytef *) compressed_buffer;
14409 strm.avail_out = uncompressed_size;
14410 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
14411
14412 rc = inflateInit (& strm);
14413 while (strm.avail_in > 0)
14414 {
14415 if (rc != Z_OK)
14416 break;
14417 strm.next_out = ((Bytef *) uncompressed_buffer
14418 + (uncompressed_size - strm.avail_out));
14419 rc = inflate (&strm, Z_FINISH);
14420 if (rc != Z_STREAM_END)
14421 break;
14422 rc = inflateReset (& strm);
14423 }
14424 if (inflateEnd (& strm) != Z_OK
14425 || rc != Z_OK
14426 || strm.avail_out != 0)
14427 goto fail;
14428
14429 *buffer = uncompressed_buffer;
14430 *size = uncompressed_size;
14431 return true;
14432
14433 fail:
14434 free (uncompressed_buffer);
14435 /* Indicate decompression failure. */
14436 *buffer = NULL;
14437 return false;
14438 }
14439
14440 static bool
14441 dump_section_as_strings (Elf_Internal_Shdr * section, Filedata * filedata)
14442 {
14443 Elf_Internal_Shdr *relsec;
14444 bfd_size_type num_bytes;
14445 unsigned char *data;
14446 unsigned char *end;
14447 unsigned char *real_start;
14448 unsigned char *start;
14449 bool some_strings_shown;
14450
14451 real_start = start = (unsigned char *) get_section_contents (section, filedata);
14452 if (start == NULL)
14453 /* PR 21820: Do not fail if the section was empty. */
14454 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
14455
14456 num_bytes = section->sh_size;
14457
14458 if (filedata->is_separate)
14459 printf (_("\nString dump of section '%s' in linked file %s:\n"),
14460 printable_section_name (filedata, section),
14461 filedata->file_name);
14462 else
14463 printf (_("\nString dump of section '%s':\n"),
14464 printable_section_name (filedata, section));
14465
14466 if (decompress_dumps)
14467 {
14468 dwarf_size_type new_size = num_bytes;
14469 dwarf_size_type uncompressed_size = 0;
14470
14471 if ((section->sh_flags & SHF_COMPRESSED) != 0)
14472 {
14473 Elf_Internal_Chdr chdr;
14474 unsigned int compression_header_size
14475 = get_compression_header (& chdr, (unsigned char *) start,
14476 num_bytes);
14477 if (compression_header_size == 0)
14478 /* An error message will have already been generated
14479 by get_compression_header. */
14480 goto error_out;
14481
14482 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
14483 {
14484 warn (_("section '%s' has unsupported compress type: %d\n"),
14485 printable_section_name (filedata, section), chdr.ch_type);
14486 goto error_out;
14487 }
14488 uncompressed_size = chdr.ch_size;
14489 start += compression_header_size;
14490 new_size -= compression_header_size;
14491 }
14492 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
14493 {
14494 /* Read the zlib header. In this case, it should be "ZLIB"
14495 followed by the uncompressed section size, 8 bytes in
14496 big-endian order. */
14497 uncompressed_size = start[4]; uncompressed_size <<= 8;
14498 uncompressed_size += start[5]; uncompressed_size <<= 8;
14499 uncompressed_size += start[6]; uncompressed_size <<= 8;
14500 uncompressed_size += start[7]; uncompressed_size <<= 8;
14501 uncompressed_size += start[8]; uncompressed_size <<= 8;
14502 uncompressed_size += start[9]; uncompressed_size <<= 8;
14503 uncompressed_size += start[10]; uncompressed_size <<= 8;
14504 uncompressed_size += start[11];
14505 start += 12;
14506 new_size -= 12;
14507 }
14508
14509 if (uncompressed_size)
14510 {
14511 if (uncompress_section_contents (& start,
14512 uncompressed_size, & new_size))
14513 num_bytes = new_size;
14514 else
14515 {
14516 error (_("Unable to decompress section %s\n"),
14517 printable_section_name (filedata, section));
14518 goto error_out;
14519 }
14520 }
14521 else
14522 start = real_start;
14523 }
14524
14525 /* If the section being dumped has relocations against it the user might
14526 be expecting these relocations to have been applied. Check for this
14527 case and issue a warning message in order to avoid confusion.
14528 FIXME: Maybe we ought to have an option that dumps a section with
14529 relocs applied ? */
14530 for (relsec = filedata->section_headers;
14531 relsec < filedata->section_headers + filedata->file_header.e_shnum;
14532 ++relsec)
14533 {
14534 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
14535 || relsec->sh_info >= filedata->file_header.e_shnum
14536 || filedata->section_headers + relsec->sh_info != section
14537 || relsec->sh_size == 0
14538 || relsec->sh_link >= filedata->file_header.e_shnum)
14539 continue;
14540
14541 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
14542 break;
14543 }
14544
14545 data = start;
14546 end = start + num_bytes;
14547 some_strings_shown = false;
14548
14549 #ifdef HAVE_MBSTATE_T
14550 mbstate_t state;
14551 /* Initialise the multibyte conversion state. */
14552 memset (& state, 0, sizeof (state));
14553 #endif
14554
14555 bool continuing = false;
14556
14557 while (data < end)
14558 {
14559 while (!ISPRINT (* data))
14560 if (++ data >= end)
14561 break;
14562
14563 if (data < end)
14564 {
14565 size_t maxlen = end - data;
14566
14567 if (continuing)
14568 {
14569 printf (" ");
14570 continuing = false;
14571 }
14572 else
14573 {
14574 printf (" [%6lx] ", (unsigned long) (data - start));
14575 }
14576
14577 if (maxlen > 0)
14578 {
14579 char c = 0;
14580
14581 while (maxlen)
14582 {
14583 c = *data++;
14584
14585 if (c == 0)
14586 break;
14587
14588 /* PR 25543: Treat new-lines as string-ending characters. */
14589 if (c == '\n')
14590 {
14591 printf ("\\n\n");
14592 if (*data != 0)
14593 continuing = true;
14594 break;
14595 }
14596
14597 /* Do not print control characters directly as they can affect terminal
14598 settings. Such characters usually appear in the names generated
14599 by the assembler for local labels. */
14600 if (ISCNTRL (c))
14601 {
14602 printf ("^%c", c + 0x40);
14603 }
14604 else if (ISPRINT (c))
14605 {
14606 putchar (c);
14607 }
14608 else
14609 {
14610 size_t n;
14611 #ifdef HAVE_MBSTATE_T
14612 wchar_t w;
14613 #endif
14614 /* Let printf do the hard work of displaying multibyte characters. */
14615 printf ("%.1s", data - 1);
14616 #ifdef HAVE_MBSTATE_T
14617 /* Try to find out how many bytes made up the character that was
14618 just printed. Advance the symbol pointer past the bytes that
14619 were displayed. */
14620 n = mbrtowc (& w, (char *)(data - 1), MB_CUR_MAX, & state);
14621 #else
14622 n = 1;
14623 #endif
14624 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
14625 data += (n - 1);
14626 }
14627 }
14628
14629 if (c != '\n')
14630 putchar ('\n');
14631 }
14632 else
14633 {
14634 printf (_("<corrupt>\n"));
14635 data = end;
14636 }
14637 some_strings_shown = true;
14638 }
14639 }
14640
14641 if (! some_strings_shown)
14642 printf (_(" No strings found in this section."));
14643
14644 free (real_start);
14645
14646 putchar ('\n');
14647 return true;
14648
14649 error_out:
14650 free (real_start);
14651 return false;
14652 }
14653
14654 static bool
14655 dump_section_as_bytes (Elf_Internal_Shdr *section,
14656 Filedata *filedata,
14657 bool relocate)
14658 {
14659 Elf_Internal_Shdr * relsec;
14660 bfd_size_type bytes;
14661 bfd_size_type section_size;
14662 bfd_vma addr;
14663 unsigned char * data;
14664 unsigned char * real_start;
14665 unsigned char * start;
14666
14667 real_start = start = (unsigned char *) get_section_contents (section, filedata);
14668 if (start == NULL)
14669 /* PR 21820: Do not fail if the section was empty. */
14670 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
14671
14672 section_size = section->sh_size;
14673
14674 if (filedata->is_separate)
14675 printf (_("\nHex dump of section '%s' in linked file %s:\n"),
14676 printable_section_name (filedata, section),
14677 filedata->file_name);
14678 else
14679 printf (_("\nHex dump of section '%s':\n"),
14680 printable_section_name (filedata, section));
14681
14682 if (decompress_dumps)
14683 {
14684 dwarf_size_type new_size = section_size;
14685 dwarf_size_type uncompressed_size = 0;
14686
14687 if ((section->sh_flags & SHF_COMPRESSED) != 0)
14688 {
14689 Elf_Internal_Chdr chdr;
14690 unsigned int compression_header_size
14691 = get_compression_header (& chdr, start, section_size);
14692
14693 if (compression_header_size == 0)
14694 /* An error message will have already been generated
14695 by get_compression_header. */
14696 goto error_out;
14697
14698 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
14699 {
14700 warn (_("section '%s' has unsupported compress type: %d\n"),
14701 printable_section_name (filedata, section), chdr.ch_type);
14702 goto error_out;
14703 }
14704 uncompressed_size = chdr.ch_size;
14705 start += compression_header_size;
14706 new_size -= compression_header_size;
14707 }
14708 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
14709 {
14710 /* Read the zlib header. In this case, it should be "ZLIB"
14711 followed by the uncompressed section size, 8 bytes in
14712 big-endian order. */
14713 uncompressed_size = start[4]; uncompressed_size <<= 8;
14714 uncompressed_size += start[5]; uncompressed_size <<= 8;
14715 uncompressed_size += start[6]; uncompressed_size <<= 8;
14716 uncompressed_size += start[7]; uncompressed_size <<= 8;
14717 uncompressed_size += start[8]; uncompressed_size <<= 8;
14718 uncompressed_size += start[9]; uncompressed_size <<= 8;
14719 uncompressed_size += start[10]; uncompressed_size <<= 8;
14720 uncompressed_size += start[11];
14721 start += 12;
14722 new_size -= 12;
14723 }
14724
14725 if (uncompressed_size)
14726 {
14727 if (uncompress_section_contents (& start, uncompressed_size,
14728 & new_size))
14729 {
14730 section_size = new_size;
14731 }
14732 else
14733 {
14734 error (_("Unable to decompress section %s\n"),
14735 printable_section_name (filedata, section));
14736 /* FIXME: Print the section anyway ? */
14737 goto error_out;
14738 }
14739 }
14740 else
14741 start = real_start;
14742 }
14743
14744 if (relocate)
14745 {
14746 if (! apply_relocations (filedata, section, start, section_size, NULL, NULL))
14747 goto error_out;
14748 }
14749 else
14750 {
14751 /* If the section being dumped has relocations against it the user might
14752 be expecting these relocations to have been applied. Check for this
14753 case and issue a warning message in order to avoid confusion.
14754 FIXME: Maybe we ought to have an option that dumps a section with
14755 relocs applied ? */
14756 for (relsec = filedata->section_headers;
14757 relsec < filedata->section_headers + filedata->file_header.e_shnum;
14758 ++relsec)
14759 {
14760 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
14761 || relsec->sh_info >= filedata->file_header.e_shnum
14762 || filedata->section_headers + relsec->sh_info != section
14763 || relsec->sh_size == 0
14764 || relsec->sh_link >= filedata->file_header.e_shnum)
14765 continue;
14766
14767 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
14768 break;
14769 }
14770 }
14771
14772 addr = section->sh_addr;
14773 bytes = section_size;
14774 data = start;
14775
14776 while (bytes)
14777 {
14778 int j;
14779 int k;
14780 int lbytes;
14781
14782 lbytes = (bytes > 16 ? 16 : bytes);
14783
14784 printf (" 0x%8.8lx ", (unsigned long) addr);
14785
14786 for (j = 0; j < 16; j++)
14787 {
14788 if (j < lbytes)
14789 printf ("%2.2x", data[j]);
14790 else
14791 printf (" ");
14792
14793 if ((j & 3) == 3)
14794 printf (" ");
14795 }
14796
14797 for (j = 0; j < lbytes; j++)
14798 {
14799 k = data[j];
14800 if (k >= ' ' && k < 0x7f)
14801 printf ("%c", k);
14802 else
14803 printf (".");
14804 }
14805
14806 putchar ('\n');
14807
14808 data += lbytes;
14809 addr += lbytes;
14810 bytes -= lbytes;
14811 }
14812
14813 free (real_start);
14814
14815 putchar ('\n');
14816 return true;
14817
14818 error_out:
14819 free (real_start);
14820 return false;
14821 }
14822
14823 #ifdef ENABLE_LIBCTF
14824 static ctf_sect_t *
14825 shdr_to_ctf_sect (ctf_sect_t *buf, Elf_Internal_Shdr *shdr, Filedata *filedata)
14826 {
14827 buf->cts_name = SECTION_NAME_PRINT (shdr);
14828 buf->cts_size = shdr->sh_size;
14829 buf->cts_entsize = shdr->sh_entsize;
14830
14831 return buf;
14832 }
14833
14834 /* Formatting callback function passed to ctf_dump. Returns either the pointer
14835 it is passed, or a pointer to newly-allocated storage, in which case
14836 dump_ctf() will free it when it no longer needs it. */
14837
14838 static char *
14839 dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED,
14840 char *s, void *arg)
14841 {
14842 const char *blanks = arg;
14843 char *new_s;
14844
14845 if (asprintf (&new_s, "%s%s", blanks, s) < 0)
14846 return s;
14847 return new_s;
14848 }
14849
14850 /* Dump CTF errors/warnings. */
14851 static void
14852 dump_ctf_errs (ctf_dict_t *fp)
14853 {
14854 ctf_next_t *it = NULL;
14855 char *errtext;
14856 int is_warning;
14857 int err;
14858
14859 /* Dump accumulated errors and warnings. */
14860 while ((errtext = ctf_errwarning_next (fp, &it, &is_warning, &err)) != NULL)
14861 {
14862 error (_("%s: %s"), is_warning ? _("warning"): _("error"),
14863 errtext);
14864 free (errtext);
14865 }
14866 if (err != ECTF_NEXT_END)
14867 error (_("CTF error: cannot get CTF errors: `%s'"), ctf_errmsg (err));
14868 }
14869
14870 /* Dump one CTF archive member. */
14871
14872 static int
14873 dump_ctf_archive_member (ctf_dict_t *ctf, const char *name, void *arg)
14874 {
14875 ctf_dict_t *parent = (ctf_dict_t *) arg;
14876 const char *things[] = {"Header", "Labels", "Data objects",
14877 "Function objects", "Variables", "Types", "Strings",
14878 ""};
14879 const char **thing;
14880 size_t i;
14881 int err = 0;
14882
14883 /* Only print out the name of non-default-named archive members.
14884 The name .ctf appears everywhere, even for things that aren't
14885 really archives, so printing it out is liable to be confusing.
14886
14887 The parent, if there is one, is the default-owned archive member:
14888 avoid importing it into itself. (This does no harm, but looks
14889 confusing.) */
14890
14891 if (strcmp (name, ".ctf") != 0)
14892 {
14893 printf (_("\nCTF archive member: %s:\n"), name);
14894 ctf_import (ctf, parent);
14895 }
14896
14897 for (i = 0, thing = things; *thing[0]; thing++, i++)
14898 {
14899 ctf_dump_state_t *s = NULL;
14900 char *item;
14901
14902 printf ("\n %s:\n", *thing);
14903 while ((item = ctf_dump (ctf, &s, i, dump_ctf_indent_lines,
14904 (void *) " ")) != NULL)
14905 {
14906 printf ("%s\n", item);
14907 free (item);
14908 }
14909
14910 if (ctf_errno (ctf))
14911 {
14912 error (_("Iteration failed: %s, %s\n"), *thing,
14913 ctf_errmsg (ctf_errno (ctf)));
14914 err = 1;
14915 goto out;
14916 }
14917 }
14918
14919 out:
14920 dump_ctf_errs (ctf);
14921 return err;
14922 }
14923
14924 static bool
14925 dump_section_as_ctf (Elf_Internal_Shdr * section, Filedata * filedata)
14926 {
14927 Elf_Internal_Shdr * parent_sec = NULL;
14928 Elf_Internal_Shdr * symtab_sec = NULL;
14929 Elf_Internal_Shdr * strtab_sec = NULL;
14930 void * data = NULL;
14931 void * symdata = NULL;
14932 void * strdata = NULL;
14933 void * parentdata = NULL;
14934 ctf_sect_t ctfsect, symsect, strsect, parentsect;
14935 ctf_sect_t * symsectp = NULL;
14936 ctf_sect_t * strsectp = NULL;
14937 ctf_archive_t * ctfa = NULL;
14938 ctf_archive_t * parenta = NULL, *lookparent;
14939 ctf_dict_t * parent = NULL;
14940
14941 int err;
14942 bool ret = false;
14943
14944 shdr_to_ctf_sect (&ctfsect, section, filedata);
14945 data = get_section_contents (section, filedata);
14946 ctfsect.cts_data = data;
14947
14948 if (!dump_ctf_symtab_name)
14949 dump_ctf_symtab_name = strdup (".dynsym");
14950
14951 if (!dump_ctf_strtab_name)
14952 dump_ctf_strtab_name = strdup (".dynstr");
14953
14954 if (dump_ctf_symtab_name && dump_ctf_symtab_name[0] != 0)
14955 {
14956 if ((symtab_sec = find_section (filedata, dump_ctf_symtab_name)) == NULL)
14957 {
14958 error (_("No symbol section named %s\n"), dump_ctf_symtab_name);
14959 goto fail;
14960 }
14961 if ((symdata = (void *) get_data (NULL, filedata,
14962 symtab_sec->sh_offset, 1,
14963 symtab_sec->sh_size,
14964 _("symbols"))) == NULL)
14965 goto fail;
14966 symsectp = shdr_to_ctf_sect (&symsect, symtab_sec, filedata);
14967 symsect.cts_data = symdata;
14968 }
14969
14970 if (dump_ctf_strtab_name && dump_ctf_strtab_name[0] != 0)
14971 {
14972 if ((strtab_sec = find_section (filedata, dump_ctf_strtab_name)) == NULL)
14973 {
14974 error (_("No string table section named %s\n"),
14975 dump_ctf_strtab_name);
14976 goto fail;
14977 }
14978 if ((strdata = (void *) get_data (NULL, filedata,
14979 strtab_sec->sh_offset, 1,
14980 strtab_sec->sh_size,
14981 _("strings"))) == NULL)
14982 goto fail;
14983 strsectp = shdr_to_ctf_sect (&strsect, strtab_sec, filedata);
14984 strsect.cts_data = strdata;
14985 }
14986
14987 if (dump_ctf_parent_name)
14988 {
14989 if ((parent_sec = find_section (filedata, dump_ctf_parent_name)) == NULL)
14990 {
14991 error (_("No CTF parent section named %s\n"), dump_ctf_parent_name);
14992 goto fail;
14993 }
14994 if ((parentdata = (void *) get_data (NULL, filedata,
14995 parent_sec->sh_offset, 1,
14996 parent_sec->sh_size,
14997 _("CTF parent"))) == NULL)
14998 goto fail;
14999 shdr_to_ctf_sect (&parentsect, parent_sec, filedata);
15000 parentsect.cts_data = parentdata;
15001 }
15002
15003 /* Load the CTF file and dump it. It may be a raw CTF section, or an archive:
15004 libctf papers over the difference, so we can pretend it is always an
15005 archive. Possibly open the parent as well, if one was specified. */
15006
15007 if ((ctfa = ctf_arc_bufopen (&ctfsect, symsectp, strsectp, &err)) == NULL)
15008 {
15009 dump_ctf_errs (NULL);
15010 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15011 goto fail;
15012 }
15013
15014 ctf_arc_symsect_endianness (ctfa, filedata->file_header.e_ident[EI_DATA]
15015 != ELFDATA2MSB);
15016
15017 if (parentdata)
15018 {
15019 if ((parenta = ctf_arc_bufopen (&parentsect, symsectp, strsectp,
15020 &err)) == NULL)
15021 {
15022 dump_ctf_errs (NULL);
15023 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15024 goto fail;
15025 }
15026 lookparent = parenta;
15027 }
15028 else
15029 lookparent = ctfa;
15030
15031 /* Assume that the applicable parent archive member is the default one.
15032 (This is what all known implementations are expected to do, if they
15033 put CTFs and their parents in archives together.) */
15034 if ((parent = ctf_dict_open (lookparent, NULL, &err)) == NULL)
15035 {
15036 dump_ctf_errs (NULL);
15037 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15038 goto fail;
15039 }
15040
15041 ret = true;
15042
15043 if (filedata->is_separate)
15044 printf (_("\nDump of CTF section '%s' in linked file %s:\n"),
15045 printable_section_name (filedata, section),
15046 filedata->file_name);
15047 else
15048 printf (_("\nDump of CTF section '%s':\n"),
15049 printable_section_name (filedata, section));
15050
15051 if ((err = ctf_archive_iter (ctfa, dump_ctf_archive_member, parent)) != 0)
15052 {
15053 dump_ctf_errs (NULL);
15054 error (_("CTF member open failure: %s\n"), ctf_errmsg (err));
15055 ret = false;
15056 }
15057
15058 fail:
15059 ctf_dict_close (parent);
15060 ctf_close (ctfa);
15061 ctf_close (parenta);
15062 free (parentdata);
15063 free (data);
15064 free (symdata);
15065 free (strdata);
15066 return ret;
15067 }
15068 #endif
15069
15070 static bool
15071 load_specific_debug_section (enum dwarf_section_display_enum debug,
15072 const Elf_Internal_Shdr * sec,
15073 void * data)
15074 {
15075 struct dwarf_section * section = &debug_displays [debug].section;
15076 char buf [64];
15077 Filedata * filedata = (Filedata *) data;
15078
15079 if (section->start != NULL)
15080 {
15081 /* If it is already loaded, do nothing. */
15082 if (streq (section->filename, filedata->file_name))
15083 return true;
15084 free (section->start);
15085 }
15086
15087 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
15088 section->address = sec->sh_addr;
15089 section->filename = filedata->file_name;
15090 section->start = (unsigned char *) get_data (NULL, filedata,
15091 sec->sh_offset, 1,
15092 sec->sh_size, buf);
15093 if (section->start == NULL)
15094 section->size = 0;
15095 else
15096 {
15097 unsigned char *start = section->start;
15098 dwarf_size_type size = sec->sh_size;
15099 dwarf_size_type uncompressed_size = 0;
15100
15101 if ((sec->sh_flags & SHF_COMPRESSED) != 0)
15102 {
15103 Elf_Internal_Chdr chdr;
15104 unsigned int compression_header_size;
15105
15106 if (size < (is_32bit_elf
15107 ? sizeof (Elf32_External_Chdr)
15108 : sizeof (Elf64_External_Chdr)))
15109 {
15110 warn (_("compressed section %s is too small to contain a compression header\n"),
15111 section->name);
15112 return false;
15113 }
15114
15115 compression_header_size = get_compression_header (&chdr, start, size);
15116 if (compression_header_size == 0)
15117 /* An error message will have already been generated
15118 by get_compression_header. */
15119 return false;
15120
15121 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
15122 {
15123 warn (_("section '%s' has unsupported compress type: %d\n"),
15124 section->name, chdr.ch_type);
15125 return false;
15126 }
15127 uncompressed_size = chdr.ch_size;
15128 start += compression_header_size;
15129 size -= compression_header_size;
15130 }
15131 else if (size > 12 && streq ((char *) start, "ZLIB"))
15132 {
15133 /* Read the zlib header. In this case, it should be "ZLIB"
15134 followed by the uncompressed section size, 8 bytes in
15135 big-endian order. */
15136 uncompressed_size = start[4]; uncompressed_size <<= 8;
15137 uncompressed_size += start[5]; uncompressed_size <<= 8;
15138 uncompressed_size += start[6]; uncompressed_size <<= 8;
15139 uncompressed_size += start[7]; uncompressed_size <<= 8;
15140 uncompressed_size += start[8]; uncompressed_size <<= 8;
15141 uncompressed_size += start[9]; uncompressed_size <<= 8;
15142 uncompressed_size += start[10]; uncompressed_size <<= 8;
15143 uncompressed_size += start[11];
15144 start += 12;
15145 size -= 12;
15146 }
15147
15148 if (uncompressed_size)
15149 {
15150 if (uncompress_section_contents (&start, uncompressed_size,
15151 &size))
15152 {
15153 /* Free the compressed buffer, update the section buffer
15154 and the section size if uncompress is successful. */
15155 free (section->start);
15156 section->start = start;
15157 }
15158 else
15159 {
15160 error (_("Unable to decompress section %s\n"),
15161 printable_section_name (filedata, sec));
15162 return false;
15163 }
15164 }
15165
15166 section->size = size;
15167 }
15168
15169 if (section->start == NULL)
15170 return false;
15171
15172 if (debug_displays [debug].relocate)
15173 {
15174 if (! apply_relocations (filedata, sec, section->start, section->size,
15175 & section->reloc_info, & section->num_relocs))
15176 return false;
15177 }
15178 else
15179 {
15180 section->reloc_info = NULL;
15181 section->num_relocs = 0;
15182 }
15183
15184 return true;
15185 }
15186
15187 #if HAVE_LIBDEBUGINFOD
15188 /* Return a hex string representation of the build-id. */
15189 unsigned char *
15190 get_build_id (void * data)
15191 {
15192 Filedata * filedata = (Filedata *) data;
15193 Elf_Internal_Shdr * shdr;
15194 unsigned long i;
15195
15196 /* Iterate through notes to find note.gnu.build-id.
15197 FIXME: Only the first note in any note section is examined. */
15198 for (i = 0, shdr = filedata->section_headers;
15199 i < filedata->file_header.e_shnum && shdr != NULL;
15200 i++, shdr++)
15201 {
15202 if (shdr->sh_type != SHT_NOTE)
15203 continue;
15204
15205 char * next;
15206 char * end;
15207 size_t data_remaining;
15208 size_t min_notesz;
15209 Elf_External_Note * enote;
15210 Elf_Internal_Note inote;
15211
15212 bfd_vma offset = shdr->sh_offset;
15213 bfd_vma align = shdr->sh_addralign;
15214 bfd_vma length = shdr->sh_size;
15215
15216 enote = (Elf_External_Note *) get_section_contents (shdr, filedata);
15217 if (enote == NULL)
15218 continue;
15219
15220 if (align < 4)
15221 align = 4;
15222 else if (align != 4 && align != 8)
15223 {
15224 free (enote);
15225 continue;
15226 }
15227
15228 end = (char *) enote + length;
15229 data_remaining = end - (char *) enote;
15230
15231 if (!is_ia64_vms (filedata))
15232 {
15233 min_notesz = offsetof (Elf_External_Note, name);
15234 if (data_remaining < min_notesz)
15235 {
15236 warn (_("\
15237 malformed note encountered in section %s whilst scanning for build-id note\n"),
15238 printable_section_name (filedata, shdr));
15239 free (enote);
15240 continue;
15241 }
15242 data_remaining -= min_notesz;
15243
15244 inote.type = BYTE_GET (enote->type);
15245 inote.namesz = BYTE_GET (enote->namesz);
15246 inote.namedata = enote->name;
15247 inote.descsz = BYTE_GET (enote->descsz);
15248 inote.descdata = ((char *) enote
15249 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
15250 inote.descpos = offset + (inote.descdata - (char *) enote);
15251 next = ((char *) enote
15252 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
15253 }
15254 else
15255 {
15256 Elf64_External_VMS_Note *vms_enote;
15257
15258 /* PR binutils/15191
15259 Make sure that there is enough data to read. */
15260 min_notesz = offsetof (Elf64_External_VMS_Note, name);
15261 if (data_remaining < min_notesz)
15262 {
15263 warn (_("\
15264 malformed note encountered in section %s whilst scanning for build-id note\n"),
15265 printable_section_name (filedata, shdr));
15266 free (enote);
15267 continue;
15268 }
15269 data_remaining -= min_notesz;
15270
15271 vms_enote = (Elf64_External_VMS_Note *) enote;
15272 inote.type = BYTE_GET (vms_enote->type);
15273 inote.namesz = BYTE_GET (vms_enote->namesz);
15274 inote.namedata = vms_enote->name;
15275 inote.descsz = BYTE_GET (vms_enote->descsz);
15276 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
15277 inote.descpos = offset + (inote.descdata - (char *) enote);
15278 next = inote.descdata + align_power (inote.descsz, 3);
15279 }
15280
15281 /* Skip malformed notes. */
15282 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
15283 || (size_t) (inote.descdata - inote.namedata) > data_remaining
15284 || (size_t) (next - inote.descdata) < inote.descsz
15285 || ((size_t) (next - inote.descdata)
15286 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
15287 {
15288 warn (_("\
15289 malformed note encountered in section %s whilst scanning for build-id note\n"),
15290 printable_section_name (filedata, shdr));
15291 free (enote);
15292 continue;
15293 }
15294
15295 /* Check if this is the build-id note. If so then convert the build-id
15296 bytes to a hex string. */
15297 if (inote.namesz > 0
15298 && startswith (inote.namedata, "GNU")
15299 && inote.type == NT_GNU_BUILD_ID)
15300 {
15301 unsigned long j;
15302 char * build_id;
15303
15304 build_id = malloc (inote.descsz * 2 + 1);
15305 if (build_id == NULL)
15306 {
15307 free (enote);
15308 return NULL;
15309 }
15310
15311 for (j = 0; j < inote.descsz; ++j)
15312 sprintf (build_id + (j * 2), "%02x", inote.descdata[j] & 0xff);
15313 build_id[inote.descsz * 2] = '\0';
15314 free (enote);
15315
15316 return (unsigned char *) build_id;
15317 }
15318 free (enote);
15319 }
15320
15321 return NULL;
15322 }
15323 #endif /* HAVE_LIBDEBUGINFOD */
15324
15325 /* If this is not NULL, load_debug_section will only look for sections
15326 within the list of sections given here. */
15327 static unsigned int * section_subset = NULL;
15328
15329 bool
15330 load_debug_section (enum dwarf_section_display_enum debug, void * data)
15331 {
15332 struct dwarf_section * section = &debug_displays [debug].section;
15333 Elf_Internal_Shdr * sec;
15334 Filedata * filedata = (Filedata *) data;
15335
15336 /* Without section headers we cannot find any sections. */
15337 if (filedata->section_headers == NULL)
15338 return false;
15339
15340 if (filedata->string_table == NULL
15341 && filedata->file_header.e_shstrndx != SHN_UNDEF
15342 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
15343 {
15344 Elf_Internal_Shdr * strs;
15345
15346 /* Read in the string table, so that we have section names to scan. */
15347 strs = filedata->section_headers + filedata->file_header.e_shstrndx;
15348
15349 if (strs != NULL && strs->sh_size != 0)
15350 {
15351 filedata->string_table
15352 = (char *) get_data (NULL, filedata, strs->sh_offset,
15353 1, strs->sh_size, _("string table"));
15354
15355 filedata->string_table_length
15356 = filedata->string_table != NULL ? strs->sh_size : 0;
15357 }
15358 }
15359
15360 /* Locate the debug section. */
15361 sec = find_section_in_set (filedata, section->uncompressed_name, section_subset);
15362 if (sec != NULL)
15363 section->name = section->uncompressed_name;
15364 else
15365 {
15366 sec = find_section_in_set (filedata, section->compressed_name, section_subset);
15367 if (sec != NULL)
15368 section->name = section->compressed_name;
15369 }
15370 if (sec == NULL)
15371 return false;
15372
15373 /* If we're loading from a subset of sections, and we've loaded
15374 a section matching this name before, it's likely that it's a
15375 different one. */
15376 if (section_subset != NULL)
15377 free_debug_section (debug);
15378
15379 return load_specific_debug_section (debug, sec, data);
15380 }
15381
15382 void
15383 free_debug_section (enum dwarf_section_display_enum debug)
15384 {
15385 struct dwarf_section * section = &debug_displays [debug].section;
15386
15387 if (section->start == NULL)
15388 return;
15389
15390 free ((char *) section->start);
15391 section->start = NULL;
15392 section->address = 0;
15393 section->size = 0;
15394
15395 free (section->reloc_info);
15396 section->reloc_info = NULL;
15397 section->num_relocs = 0;
15398 }
15399
15400 static bool
15401 display_debug_section (int shndx, Elf_Internal_Shdr * section, Filedata * filedata)
15402 {
15403 char * name = SECTION_NAME_VALID (section) ? SECTION_NAME (section) : "";
15404 const char * print_name = printable_section_name (filedata, section);
15405 bfd_size_type length;
15406 bool result = true;
15407 int i;
15408
15409 length = section->sh_size;
15410 if (length == 0)
15411 {
15412 printf (_("\nSection '%s' has no debugging data.\n"), print_name);
15413 return true;
15414 }
15415 if (section->sh_type == SHT_NOBITS)
15416 {
15417 /* There is no point in dumping the contents of a debugging section
15418 which has the NOBITS type - the bits in the file will be random.
15419 This can happen when a file containing a .eh_frame section is
15420 stripped with the --only-keep-debug command line option. */
15421 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
15422 print_name);
15423 return false;
15424 }
15425
15426 if (startswith (name, ".gnu.linkonce.wi."))
15427 name = ".debug_info";
15428
15429 /* See if we know how to display the contents of this section. */
15430 for (i = 0; i < max; i++)
15431 {
15432 enum dwarf_section_display_enum id = (enum dwarf_section_display_enum) i;
15433 struct dwarf_section_display * display = debug_displays + i;
15434 struct dwarf_section * sec = & display->section;
15435
15436 if (streq (sec->uncompressed_name, name)
15437 || (id == line && startswith (name, ".debug_line."))
15438 || streq (sec->compressed_name, name))
15439 {
15440 bool secondary = (section != find_section (filedata, name));
15441
15442 if (secondary)
15443 free_debug_section (id);
15444
15445 if (i == line && startswith (name, ".debug_line."))
15446 sec->name = name;
15447 else if (streq (sec->uncompressed_name, name))
15448 sec->name = sec->uncompressed_name;
15449 else
15450 sec->name = sec->compressed_name;
15451
15452 if (load_specific_debug_section (id, section, filedata))
15453 {
15454 /* If this debug section is part of a CU/TU set in a .dwp file,
15455 restrict load_debug_section to the sections in that set. */
15456 section_subset = find_cu_tu_set (filedata, shndx);
15457
15458 result &= display->display (sec, filedata);
15459
15460 section_subset = NULL;
15461
15462 if (secondary || (id != info && id != abbrev && id != debug_addr))
15463 free_debug_section (id);
15464 }
15465 break;
15466 }
15467 }
15468
15469 if (i == max)
15470 {
15471 printf (_("Unrecognized debug section: %s\n"), print_name);
15472 result = false;
15473 }
15474
15475 return result;
15476 }
15477
15478 /* Set DUMP_SECTS for all sections where dumps were requested
15479 based on section name. */
15480
15481 static void
15482 initialise_dumps_byname (Filedata * filedata)
15483 {
15484 struct dump_list_entry * cur;
15485
15486 for (cur = dump_sects_byname; cur; cur = cur->next)
15487 {
15488 unsigned int i;
15489 bool any = false;
15490
15491 for (i = 0; i < filedata->file_header.e_shnum; i++)
15492 if (SECTION_NAME_VALID (filedata->section_headers + i)
15493 && streq (SECTION_NAME (filedata->section_headers + i), cur->name))
15494 {
15495 request_dump_bynumber (&filedata->dump, i, cur->type);
15496 any = true;
15497 }
15498
15499 if (!any && !filedata->is_separate)
15500 warn (_("Section '%s' was not dumped because it does not exist\n"),
15501 cur->name);
15502 }
15503 }
15504
15505 static bool
15506 process_section_contents (Filedata * filedata)
15507 {
15508 Elf_Internal_Shdr * section;
15509 unsigned int i;
15510 bool res = true;
15511
15512 if (! do_dump)
15513 return true;
15514
15515 initialise_dumps_byname (filedata);
15516
15517 for (i = 0, section = filedata->section_headers;
15518 i < filedata->file_header.e_shnum && i < filedata->dump.num_dump_sects;
15519 i++, section++)
15520 {
15521 dump_type dump = filedata->dump.dump_sects[i];
15522
15523 if (filedata->is_separate && ! process_links)
15524 dump &= DEBUG_DUMP;
15525
15526 #ifdef SUPPORT_DISASSEMBLY
15527 if (dump & DISASS_DUMP)
15528 {
15529 if (! disassemble_section (section, filedata))
15530 res = false;
15531 }
15532 #endif
15533 if (dump & HEX_DUMP)
15534 {
15535 if (! dump_section_as_bytes (section, filedata, false))
15536 res = false;
15537 }
15538
15539 if (dump & RELOC_DUMP)
15540 {
15541 if (! dump_section_as_bytes (section, filedata, true))
15542 res = false;
15543 }
15544
15545 if (dump & STRING_DUMP)
15546 {
15547 if (! dump_section_as_strings (section, filedata))
15548 res = false;
15549 }
15550
15551 if (dump & DEBUG_DUMP)
15552 {
15553 if (! display_debug_section (i, section, filedata))
15554 res = false;
15555 }
15556
15557 #ifdef ENABLE_LIBCTF
15558 if (dump & CTF_DUMP)
15559 {
15560 if (! dump_section_as_ctf (section, filedata))
15561 res = false;
15562 }
15563 #endif
15564 }
15565
15566 if (! filedata->is_separate)
15567 {
15568 /* Check to see if the user requested a
15569 dump of a section that does not exist. */
15570 for (; i < filedata->dump.num_dump_sects; i++)
15571 if (filedata->dump.dump_sects[i])
15572 {
15573 warn (_("Section %d was not dumped because it does not exist!\n"), i);
15574 res = false;
15575 }
15576 }
15577
15578 return res;
15579 }
15580
15581 static void
15582 process_mips_fpe_exception (int mask)
15583 {
15584 if (mask)
15585 {
15586 bool first = true;
15587
15588 if (mask & OEX_FPU_INEX)
15589 fputs ("INEX", stdout), first = false;
15590 if (mask & OEX_FPU_UFLO)
15591 printf ("%sUFLO", first ? "" : "|"), first = false;
15592 if (mask & OEX_FPU_OFLO)
15593 printf ("%sOFLO", first ? "" : "|"), first = false;
15594 if (mask & OEX_FPU_DIV0)
15595 printf ("%sDIV0", first ? "" : "|"), first = false;
15596 if (mask & OEX_FPU_INVAL)
15597 printf ("%sINVAL", first ? "" : "|");
15598 }
15599 else
15600 fputs ("0", stdout);
15601 }
15602
15603 /* Display's the value of TAG at location P. If TAG is
15604 greater than 0 it is assumed to be an unknown tag, and
15605 a message is printed to this effect. Otherwise it is
15606 assumed that a message has already been printed.
15607
15608 If the bottom bit of TAG is set it assumed to have a
15609 string value, otherwise it is assumed to have an integer
15610 value.
15611
15612 Returns an updated P pointing to the first unread byte
15613 beyond the end of TAG's value.
15614
15615 Reads at or beyond END will not be made. */
15616
15617 static unsigned char *
15618 display_tag_value (signed int tag,
15619 unsigned char * p,
15620 const unsigned char * const end)
15621 {
15622 unsigned long val;
15623
15624 if (tag > 0)
15625 printf (" Tag_unknown_%d: ", tag);
15626
15627 if (p >= end)
15628 {
15629 warn (_("<corrupt tag>\n"));
15630 }
15631 else if (tag & 1)
15632 {
15633 /* PR 17531 file: 027-19978-0.004. */
15634 size_t maxlen = (end - p) - 1;
15635
15636 putchar ('"');
15637 if (maxlen > 0)
15638 {
15639 print_symbol ((int) maxlen, (const char *) p);
15640 p += strnlen ((char *) p, maxlen) + 1;
15641 }
15642 else
15643 {
15644 printf (_("<corrupt string tag>"));
15645 p = (unsigned char *) end;
15646 }
15647 printf ("\"\n");
15648 }
15649 else
15650 {
15651 READ_ULEB (val, p, end);
15652 printf ("%ld (0x%lx)\n", val, val);
15653 }
15654
15655 assert (p <= end);
15656 return p;
15657 }
15658
15659 /* ARC ABI attributes section. */
15660
15661 static unsigned char *
15662 display_arc_attribute (unsigned char * p,
15663 const unsigned char * const end)
15664 {
15665 unsigned int tag;
15666 unsigned int val;
15667
15668 READ_ULEB (tag, p, end);
15669
15670 switch (tag)
15671 {
15672 case Tag_ARC_PCS_config:
15673 READ_ULEB (val, p, end);
15674 printf (" Tag_ARC_PCS_config: ");
15675 switch (val)
15676 {
15677 case 0:
15678 printf (_("Absent/Non standard\n"));
15679 break;
15680 case 1:
15681 printf (_("Bare metal/mwdt\n"));
15682 break;
15683 case 2:
15684 printf (_("Bare metal/newlib\n"));
15685 break;
15686 case 3:
15687 printf (_("Linux/uclibc\n"));
15688 break;
15689 case 4:
15690 printf (_("Linux/glibc\n"));
15691 break;
15692 default:
15693 printf (_("Unknown\n"));
15694 break;
15695 }
15696 break;
15697
15698 case Tag_ARC_CPU_base:
15699 READ_ULEB (val, p, end);
15700 printf (" Tag_ARC_CPU_base: ");
15701 switch (val)
15702 {
15703 default:
15704 case TAG_CPU_NONE:
15705 printf (_("Absent\n"));
15706 break;
15707 case TAG_CPU_ARC6xx:
15708 printf ("ARC6xx\n");
15709 break;
15710 case TAG_CPU_ARC7xx:
15711 printf ("ARC7xx\n");
15712 break;
15713 case TAG_CPU_ARCEM:
15714 printf ("ARCEM\n");
15715 break;
15716 case TAG_CPU_ARCHS:
15717 printf ("ARCHS\n");
15718 break;
15719 }
15720 break;
15721
15722 case Tag_ARC_CPU_variation:
15723 READ_ULEB (val, p, end);
15724 printf (" Tag_ARC_CPU_variation: ");
15725 switch (val)
15726 {
15727 default:
15728 if (val > 0 && val < 16)
15729 printf ("Core%d\n", val);
15730 else
15731 printf ("Unknown\n");
15732 break;
15733
15734 case 0:
15735 printf (_("Absent\n"));
15736 break;
15737 }
15738 break;
15739
15740 case Tag_ARC_CPU_name:
15741 printf (" Tag_ARC_CPU_name: ");
15742 p = display_tag_value (-1, p, end);
15743 break;
15744
15745 case Tag_ARC_ABI_rf16:
15746 READ_ULEB (val, p, end);
15747 printf (" Tag_ARC_ABI_rf16: %s\n", val ? _("yes") : _("no"));
15748 break;
15749
15750 case Tag_ARC_ABI_osver:
15751 READ_ULEB (val, p, end);
15752 printf (" Tag_ARC_ABI_osver: v%d\n", val);
15753 break;
15754
15755 case Tag_ARC_ABI_pic:
15756 case Tag_ARC_ABI_sda:
15757 READ_ULEB (val, p, end);
15758 printf (tag == Tag_ARC_ABI_sda ? " Tag_ARC_ABI_sda: "
15759 : " Tag_ARC_ABI_pic: ");
15760 switch (val)
15761 {
15762 case 0:
15763 printf (_("Absent\n"));
15764 break;
15765 case 1:
15766 printf ("MWDT\n");
15767 break;
15768 case 2:
15769 printf ("GNU\n");
15770 break;
15771 default:
15772 printf (_("Unknown\n"));
15773 break;
15774 }
15775 break;
15776
15777 case Tag_ARC_ABI_tls:
15778 READ_ULEB (val, p, end);
15779 printf (" Tag_ARC_ABI_tls: %s\n", val ? "r25": "none");
15780 break;
15781
15782 case Tag_ARC_ABI_enumsize:
15783 READ_ULEB (val, p, end);
15784 printf (" Tag_ARC_ABI_enumsize: %s\n", val ? _("default") :
15785 _("smallest"));
15786 break;
15787
15788 case Tag_ARC_ABI_exceptions:
15789 READ_ULEB (val, p, end);
15790 printf (" Tag_ARC_ABI_exceptions: %s\n", val ? _("OPTFP")
15791 : _("default"));
15792 break;
15793
15794 case Tag_ARC_ABI_double_size:
15795 READ_ULEB (val, p, end);
15796 printf (" Tag_ARC_ABI_double_size: %d\n", val);
15797 break;
15798
15799 case Tag_ARC_ISA_config:
15800 printf (" Tag_ARC_ISA_config: ");
15801 p = display_tag_value (-1, p, end);
15802 break;
15803
15804 case Tag_ARC_ISA_apex:
15805 printf (" Tag_ARC_ISA_apex: ");
15806 p = display_tag_value (-1, p, end);
15807 break;
15808
15809 case Tag_ARC_ISA_mpy_option:
15810 READ_ULEB (val, p, end);
15811 printf (" Tag_ARC_ISA_mpy_option: %d\n", val);
15812 break;
15813
15814 case Tag_ARC_ATR_version:
15815 READ_ULEB (val, p, end);
15816 printf (" Tag_ARC_ATR_version: %d\n", val);
15817 break;
15818
15819 default:
15820 return display_tag_value (tag & 1, p, end);
15821 }
15822
15823 return p;
15824 }
15825
15826 /* ARM EABI attributes section. */
15827 typedef struct
15828 {
15829 unsigned int tag;
15830 const char * name;
15831 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
15832 unsigned int type;
15833 const char *const *table;
15834 } arm_attr_public_tag;
15835
15836 static const char *const arm_attr_tag_CPU_arch[] =
15837 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
15838 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "v8-R", "v8-M.baseline",
15839 "v8-M.mainline", "", "", "", "v8.1-M.mainline"};
15840 static const char *const arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
15841 static const char *const arm_attr_tag_THUMB_ISA_use[] =
15842 {"No", "Thumb-1", "Thumb-2", "Yes"};
15843 static const char *const arm_attr_tag_FP_arch[] =
15844 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
15845 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
15846 static const char *const arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
15847 static const char *const arm_attr_tag_Advanced_SIMD_arch[] =
15848 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8",
15849 "NEON for ARMv8.1"};
15850 static const char *const arm_attr_tag_PCS_config[] =
15851 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
15852 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
15853 static const char *const arm_attr_tag_ABI_PCS_R9_use[] =
15854 {"V6", "SB", "TLS", "Unused"};
15855 static const char *const arm_attr_tag_ABI_PCS_RW_data[] =
15856 {"Absolute", "PC-relative", "SB-relative", "None"};
15857 static const char *const arm_attr_tag_ABI_PCS_RO_data[] =
15858 {"Absolute", "PC-relative", "None"};
15859 static const char *const arm_attr_tag_ABI_PCS_GOT_use[] =
15860 {"None", "direct", "GOT-indirect"};
15861 static const char *const arm_attr_tag_ABI_PCS_wchar_t[] =
15862 {"None", "??? 1", "2", "??? 3", "4"};
15863 static const char *const arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
15864 static const char *const arm_attr_tag_ABI_FP_denormal[] =
15865 {"Unused", "Needed", "Sign only"};
15866 static const char *const arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
15867 static const char *const arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
15868 static const char *const arm_attr_tag_ABI_FP_number_model[] =
15869 {"Unused", "Finite", "RTABI", "IEEE 754"};
15870 static const char *const arm_attr_tag_ABI_enum_size[] =
15871 {"Unused", "small", "int", "forced to int"};
15872 static const char *const arm_attr_tag_ABI_HardFP_use[] =
15873 {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"};
15874 static const char *const arm_attr_tag_ABI_VFP_args[] =
15875 {"AAPCS", "VFP registers", "custom", "compatible"};
15876 static const char *const arm_attr_tag_ABI_WMMX_args[] =
15877 {"AAPCS", "WMMX registers", "custom"};
15878 static const char *const arm_attr_tag_ABI_optimization_goals[] =
15879 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
15880 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
15881 static const char *const arm_attr_tag_ABI_FP_optimization_goals[] =
15882 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
15883 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
15884 static const char *const arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
15885 static const char *const arm_attr_tag_FP_HP_extension[] =
15886 {"Not Allowed", "Allowed"};
15887 static const char *const arm_attr_tag_ABI_FP_16bit_format[] =
15888 {"None", "IEEE 754", "Alternative Format"};
15889 static const char *const arm_attr_tag_DSP_extension[] =
15890 {"Follow architecture", "Allowed"};
15891 static const char *const arm_attr_tag_MPextension_use[] =
15892 {"Not Allowed", "Allowed"};
15893 static const char *const arm_attr_tag_DIV_use[] =
15894 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
15895 "Allowed in v7-A with integer division extension"};
15896 static const char *const arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
15897 static const char *const arm_attr_tag_Virtualization_use[] =
15898 {"Not Allowed", "TrustZone", "Virtualization Extensions",
15899 "TrustZone and Virtualization Extensions"};
15900 static const char *const arm_attr_tag_MPextension_use_legacy[] =
15901 {"Not Allowed", "Allowed"};
15902
15903 static const char *const arm_attr_tag_MVE_arch[] =
15904 {"No MVE", "MVE Integer only", "MVE Integer and FP"};
15905
15906 #define LOOKUP(id, name) \
15907 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
15908 static arm_attr_public_tag arm_attr_public_tags[] =
15909 {
15910 {4, "CPU_raw_name", 1, NULL},
15911 {5, "CPU_name", 1, NULL},
15912 LOOKUP(6, CPU_arch),
15913 {7, "CPU_arch_profile", 0, NULL},
15914 LOOKUP(8, ARM_ISA_use),
15915 LOOKUP(9, THUMB_ISA_use),
15916 LOOKUP(10, FP_arch),
15917 LOOKUP(11, WMMX_arch),
15918 LOOKUP(12, Advanced_SIMD_arch),
15919 LOOKUP(13, PCS_config),
15920 LOOKUP(14, ABI_PCS_R9_use),
15921 LOOKUP(15, ABI_PCS_RW_data),
15922 LOOKUP(16, ABI_PCS_RO_data),
15923 LOOKUP(17, ABI_PCS_GOT_use),
15924 LOOKUP(18, ABI_PCS_wchar_t),
15925 LOOKUP(19, ABI_FP_rounding),
15926 LOOKUP(20, ABI_FP_denormal),
15927 LOOKUP(21, ABI_FP_exceptions),
15928 LOOKUP(22, ABI_FP_user_exceptions),
15929 LOOKUP(23, ABI_FP_number_model),
15930 {24, "ABI_align_needed", 0, NULL},
15931 {25, "ABI_align_preserved", 0, NULL},
15932 LOOKUP(26, ABI_enum_size),
15933 LOOKUP(27, ABI_HardFP_use),
15934 LOOKUP(28, ABI_VFP_args),
15935 LOOKUP(29, ABI_WMMX_args),
15936 LOOKUP(30, ABI_optimization_goals),
15937 LOOKUP(31, ABI_FP_optimization_goals),
15938 {32, "compatibility", 0, NULL},
15939 LOOKUP(34, CPU_unaligned_access),
15940 LOOKUP(36, FP_HP_extension),
15941 LOOKUP(38, ABI_FP_16bit_format),
15942 LOOKUP(42, MPextension_use),
15943 LOOKUP(44, DIV_use),
15944 LOOKUP(46, DSP_extension),
15945 LOOKUP(48, MVE_arch),
15946 {64, "nodefaults", 0, NULL},
15947 {65, "also_compatible_with", 0, NULL},
15948 LOOKUP(66, T2EE_use),
15949 {67, "conformance", 1, NULL},
15950 LOOKUP(68, Virtualization_use),
15951 LOOKUP(70, MPextension_use_legacy)
15952 };
15953 #undef LOOKUP
15954
15955 static unsigned char *
15956 display_arm_attribute (unsigned char * p,
15957 const unsigned char * const end)
15958 {
15959 unsigned int tag;
15960 unsigned int val;
15961 arm_attr_public_tag * attr;
15962 unsigned i;
15963 unsigned int type;
15964
15965 READ_ULEB (tag, p, end);
15966 attr = NULL;
15967 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
15968 {
15969 if (arm_attr_public_tags[i].tag == tag)
15970 {
15971 attr = &arm_attr_public_tags[i];
15972 break;
15973 }
15974 }
15975
15976 if (attr)
15977 {
15978 printf (" Tag_%s: ", attr->name);
15979 switch (attr->type)
15980 {
15981 case 0:
15982 switch (tag)
15983 {
15984 case 7: /* Tag_CPU_arch_profile. */
15985 READ_ULEB (val, p, end);
15986 switch (val)
15987 {
15988 case 0: printf (_("None\n")); break;
15989 case 'A': printf (_("Application\n")); break;
15990 case 'R': printf (_("Realtime\n")); break;
15991 case 'M': printf (_("Microcontroller\n")); break;
15992 case 'S': printf (_("Application or Realtime\n")); break;
15993 default: printf ("??? (%d)\n", val); break;
15994 }
15995 break;
15996
15997 case 24: /* Tag_align_needed. */
15998 READ_ULEB (val, p, end);
15999 switch (val)
16000 {
16001 case 0: printf (_("None\n")); break;
16002 case 1: printf (_("8-byte\n")); break;
16003 case 2: printf (_("4-byte\n")); break;
16004 case 3: printf ("??? 3\n"); break;
16005 default:
16006 if (val <= 12)
16007 printf (_("8-byte and up to %d-byte extended\n"),
16008 1 << val);
16009 else
16010 printf ("??? (%d)\n", val);
16011 break;
16012 }
16013 break;
16014
16015 case 25: /* Tag_align_preserved. */
16016 READ_ULEB (val, p, end);
16017 switch (val)
16018 {
16019 case 0: printf (_("None\n")); break;
16020 case 1: printf (_("8-byte, except leaf SP\n")); break;
16021 case 2: printf (_("8-byte\n")); break;
16022 case 3: printf ("??? 3\n"); break;
16023 default:
16024 if (val <= 12)
16025 printf (_("8-byte and up to %d-byte extended\n"),
16026 1 << val);
16027 else
16028 printf ("??? (%d)\n", val);
16029 break;
16030 }
16031 break;
16032
16033 case 32: /* Tag_compatibility. */
16034 {
16035 READ_ULEB (val, p, end);
16036 printf (_("flag = %d, vendor = "), val);
16037 if (p < end - 1)
16038 {
16039 size_t maxlen = (end - p) - 1;
16040
16041 print_symbol ((int) maxlen, (const char *) p);
16042 p += strnlen ((char *) p, maxlen) + 1;
16043 }
16044 else
16045 {
16046 printf (_("<corrupt>"));
16047 p = (unsigned char *) end;
16048 }
16049 putchar ('\n');
16050 }
16051 break;
16052
16053 case 64: /* Tag_nodefaults. */
16054 /* PR 17531: file: 001-505008-0.01. */
16055 if (p < end)
16056 p++;
16057 printf (_("True\n"));
16058 break;
16059
16060 case 65: /* Tag_also_compatible_with. */
16061 READ_ULEB (val, p, end);
16062 if (val == 6 /* Tag_CPU_arch. */)
16063 {
16064 READ_ULEB (val, p, end);
16065 if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
16066 printf ("??? (%d)\n", val);
16067 else
16068 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
16069 }
16070 else
16071 printf ("???\n");
16072 while (p < end && *(p++) != '\0' /* NUL terminator. */)
16073 ;
16074 break;
16075
16076 default:
16077 printf (_("<unknown: %d>\n"), tag);
16078 break;
16079 }
16080 return p;
16081
16082 case 1:
16083 return display_tag_value (-1, p, end);
16084 case 2:
16085 return display_tag_value (0, p, end);
16086
16087 default:
16088 assert (attr->type & 0x80);
16089 READ_ULEB (val, p, end);
16090 type = attr->type & 0x7f;
16091 if (val >= type)
16092 printf ("??? (%d)\n", val);
16093 else
16094 printf ("%s\n", attr->table[val]);
16095 return p;
16096 }
16097 }
16098
16099 return display_tag_value (tag, p, end);
16100 }
16101
16102 static unsigned char *
16103 display_gnu_attribute (unsigned char * p,
16104 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const),
16105 const unsigned char * const end)
16106 {
16107 unsigned int tag;
16108 unsigned int val;
16109
16110 READ_ULEB (tag, p, end);
16111
16112 /* Tag_compatibility is the only generic GNU attribute defined at
16113 present. */
16114 if (tag == 32)
16115 {
16116 READ_ULEB (val, p, end);
16117
16118 printf (_("flag = %d, vendor = "), val);
16119 if (p == end)
16120 {
16121 printf (_("<corrupt>\n"));
16122 warn (_("corrupt vendor attribute\n"));
16123 }
16124 else
16125 {
16126 if (p < end - 1)
16127 {
16128 size_t maxlen = (end - p) - 1;
16129
16130 print_symbol ((int) maxlen, (const char *) p);
16131 p += strnlen ((char *) p, maxlen) + 1;
16132 }
16133 else
16134 {
16135 printf (_("<corrupt>"));
16136 p = (unsigned char *) end;
16137 }
16138 putchar ('\n');
16139 }
16140 return p;
16141 }
16142
16143 if ((tag & 2) == 0 && display_proc_gnu_attribute)
16144 return display_proc_gnu_attribute (p, tag, end);
16145
16146 return display_tag_value (tag, p, end);
16147 }
16148
16149 static unsigned char *
16150 display_m68k_gnu_attribute (unsigned char * p,
16151 unsigned int tag,
16152 const unsigned char * const end)
16153 {
16154 unsigned int val;
16155
16156 if (tag == Tag_GNU_M68K_ABI_FP)
16157 {
16158 printf (" Tag_GNU_M68K_ABI_FP: ");
16159 if (p == end)
16160 {
16161 printf (_("<corrupt>\n"));
16162 return p;
16163 }
16164 READ_ULEB (val, p, end);
16165
16166 if (val > 3)
16167 printf ("(%#x), ", val);
16168
16169 switch (val & 3)
16170 {
16171 case 0:
16172 printf (_("unspecified hard/soft float\n"));
16173 break;
16174 case 1:
16175 printf (_("hard float\n"));
16176 break;
16177 case 2:
16178 printf (_("soft float\n"));
16179 break;
16180 }
16181 return p;
16182 }
16183
16184 return display_tag_value (tag & 1, p, end);
16185 }
16186
16187 static unsigned char *
16188 display_power_gnu_attribute (unsigned char * p,
16189 unsigned int tag,
16190 const unsigned char * const end)
16191 {
16192 unsigned int val;
16193
16194 if (tag == Tag_GNU_Power_ABI_FP)
16195 {
16196 printf (" Tag_GNU_Power_ABI_FP: ");
16197 if (p == end)
16198 {
16199 printf (_("<corrupt>\n"));
16200 return p;
16201 }
16202 READ_ULEB (val, p, end);
16203
16204 if (val > 15)
16205 printf ("(%#x), ", val);
16206
16207 switch (val & 3)
16208 {
16209 case 0:
16210 printf (_("unspecified hard/soft float, "));
16211 break;
16212 case 1:
16213 printf (_("hard float, "));
16214 break;
16215 case 2:
16216 printf (_("soft float, "));
16217 break;
16218 case 3:
16219 printf (_("single-precision hard float, "));
16220 break;
16221 }
16222
16223 switch (val & 0xC)
16224 {
16225 case 0:
16226 printf (_("unspecified long double\n"));
16227 break;
16228 case 4:
16229 printf (_("128-bit IBM long double\n"));
16230 break;
16231 case 8:
16232 printf (_("64-bit long double\n"));
16233 break;
16234 case 12:
16235 printf (_("128-bit IEEE long double\n"));
16236 break;
16237 }
16238 return p;
16239 }
16240
16241 if (tag == Tag_GNU_Power_ABI_Vector)
16242 {
16243 printf (" Tag_GNU_Power_ABI_Vector: ");
16244 if (p == end)
16245 {
16246 printf (_("<corrupt>\n"));
16247 return p;
16248 }
16249 READ_ULEB (val, p, end);
16250
16251 if (val > 3)
16252 printf ("(%#x), ", val);
16253
16254 switch (val & 3)
16255 {
16256 case 0:
16257 printf (_("unspecified\n"));
16258 break;
16259 case 1:
16260 printf (_("generic\n"));
16261 break;
16262 case 2:
16263 printf ("AltiVec\n");
16264 break;
16265 case 3:
16266 printf ("SPE\n");
16267 break;
16268 }
16269 return p;
16270 }
16271
16272 if (tag == Tag_GNU_Power_ABI_Struct_Return)
16273 {
16274 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
16275 if (p == end)
16276 {
16277 printf (_("<corrupt>\n"));
16278 return p;
16279 }
16280 READ_ULEB (val, p, end);
16281
16282 if (val > 2)
16283 printf ("(%#x), ", val);
16284
16285 switch (val & 3)
16286 {
16287 case 0:
16288 printf (_("unspecified\n"));
16289 break;
16290 case 1:
16291 printf ("r3/r4\n");
16292 break;
16293 case 2:
16294 printf (_("memory\n"));
16295 break;
16296 case 3:
16297 printf ("???\n");
16298 break;
16299 }
16300 return p;
16301 }
16302
16303 return display_tag_value (tag & 1, p, end);
16304 }
16305
16306 static unsigned char *
16307 display_s390_gnu_attribute (unsigned char * p,
16308 unsigned int tag,
16309 const unsigned char * const end)
16310 {
16311 unsigned int val;
16312
16313 if (tag == Tag_GNU_S390_ABI_Vector)
16314 {
16315 printf (" Tag_GNU_S390_ABI_Vector: ");
16316 READ_ULEB (val, p, end);
16317
16318 switch (val)
16319 {
16320 case 0:
16321 printf (_("any\n"));
16322 break;
16323 case 1:
16324 printf (_("software\n"));
16325 break;
16326 case 2:
16327 printf (_("hardware\n"));
16328 break;
16329 default:
16330 printf ("??? (%d)\n", val);
16331 break;
16332 }
16333 return p;
16334 }
16335
16336 return display_tag_value (tag & 1, p, end);
16337 }
16338
16339 static void
16340 display_sparc_hwcaps (unsigned int mask)
16341 {
16342 if (mask)
16343 {
16344 bool first = true;
16345
16346 if (mask & ELF_SPARC_HWCAP_MUL32)
16347 fputs ("mul32", stdout), first = false;
16348 if (mask & ELF_SPARC_HWCAP_DIV32)
16349 printf ("%sdiv32", first ? "" : "|"), first = false;
16350 if (mask & ELF_SPARC_HWCAP_FSMULD)
16351 printf ("%sfsmuld", first ? "" : "|"), first = false;
16352 if (mask & ELF_SPARC_HWCAP_V8PLUS)
16353 printf ("%sv8plus", first ? "" : "|"), first = false;
16354 if (mask & ELF_SPARC_HWCAP_POPC)
16355 printf ("%spopc", first ? "" : "|"), first = false;
16356 if (mask & ELF_SPARC_HWCAP_VIS)
16357 printf ("%svis", first ? "" : "|"), first = false;
16358 if (mask & ELF_SPARC_HWCAP_VIS2)
16359 printf ("%svis2", first ? "" : "|"), first = false;
16360 if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT)
16361 printf ("%sASIBlkInit", first ? "" : "|"), first = false;
16362 if (mask & ELF_SPARC_HWCAP_FMAF)
16363 printf ("%sfmaf", first ? "" : "|"), first = false;
16364 if (mask & ELF_SPARC_HWCAP_VIS3)
16365 printf ("%svis3", first ? "" : "|"), first = false;
16366 if (mask & ELF_SPARC_HWCAP_HPC)
16367 printf ("%shpc", first ? "" : "|"), first = false;
16368 if (mask & ELF_SPARC_HWCAP_RANDOM)
16369 printf ("%srandom", first ? "" : "|"), first = false;
16370 if (mask & ELF_SPARC_HWCAP_TRANS)
16371 printf ("%strans", first ? "" : "|"), first = false;
16372 if (mask & ELF_SPARC_HWCAP_FJFMAU)
16373 printf ("%sfjfmau", first ? "" : "|"), first = false;
16374 if (mask & ELF_SPARC_HWCAP_IMA)
16375 printf ("%sima", first ? "" : "|"), first = false;
16376 if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING)
16377 printf ("%scspare", first ? "" : "|"), first = false;
16378 }
16379 else
16380 fputc ('0', stdout);
16381 fputc ('\n', stdout);
16382 }
16383
16384 static void
16385 display_sparc_hwcaps2 (unsigned int mask)
16386 {
16387 if (mask)
16388 {
16389 bool first = true;
16390
16391 if (mask & ELF_SPARC_HWCAP2_FJATHPLUS)
16392 fputs ("fjathplus", stdout), first = false;
16393 if (mask & ELF_SPARC_HWCAP2_VIS3B)
16394 printf ("%svis3b", first ? "" : "|"), first = false;
16395 if (mask & ELF_SPARC_HWCAP2_ADP)
16396 printf ("%sadp", first ? "" : "|"), first = false;
16397 if (mask & ELF_SPARC_HWCAP2_SPARC5)
16398 printf ("%ssparc5", first ? "" : "|"), first = false;
16399 if (mask & ELF_SPARC_HWCAP2_MWAIT)
16400 printf ("%smwait", first ? "" : "|"), first = false;
16401 if (mask & ELF_SPARC_HWCAP2_XMPMUL)
16402 printf ("%sxmpmul", first ? "" : "|"), first = false;
16403 if (mask & ELF_SPARC_HWCAP2_XMONT)
16404 printf ("%sxmont2", first ? "" : "|"), first = false;
16405 if (mask & ELF_SPARC_HWCAP2_NSEC)
16406 printf ("%snsec", first ? "" : "|"), first = false;
16407 if (mask & ELF_SPARC_HWCAP2_FJATHHPC)
16408 printf ("%sfjathhpc", first ? "" : "|"), first = false;
16409 if (mask & ELF_SPARC_HWCAP2_FJDES)
16410 printf ("%sfjdes", first ? "" : "|"), first = false;
16411 if (mask & ELF_SPARC_HWCAP2_FJAES)
16412 printf ("%sfjaes", first ? "" : "|"), first = false;
16413 }
16414 else
16415 fputc ('0', stdout);
16416 fputc ('\n', stdout);
16417 }
16418
16419 static unsigned char *
16420 display_sparc_gnu_attribute (unsigned char * p,
16421 unsigned int tag,
16422 const unsigned char * const end)
16423 {
16424 unsigned int val;
16425
16426 if (tag == Tag_GNU_Sparc_HWCAPS)
16427 {
16428 READ_ULEB (val, p, end);
16429 printf (" Tag_GNU_Sparc_HWCAPS: ");
16430 display_sparc_hwcaps (val);
16431 return p;
16432 }
16433 if (tag == Tag_GNU_Sparc_HWCAPS2)
16434 {
16435 READ_ULEB (val, p, end);
16436 printf (" Tag_GNU_Sparc_HWCAPS2: ");
16437 display_sparc_hwcaps2 (val);
16438 return p;
16439 }
16440
16441 return display_tag_value (tag, p, end);
16442 }
16443
16444 static void
16445 print_mips_fp_abi_value (unsigned int val)
16446 {
16447 switch (val)
16448 {
16449 case Val_GNU_MIPS_ABI_FP_ANY:
16450 printf (_("Hard or soft float\n"));
16451 break;
16452 case Val_GNU_MIPS_ABI_FP_DOUBLE:
16453 printf (_("Hard float (double precision)\n"));
16454 break;
16455 case Val_GNU_MIPS_ABI_FP_SINGLE:
16456 printf (_("Hard float (single precision)\n"));
16457 break;
16458 case Val_GNU_MIPS_ABI_FP_SOFT:
16459 printf (_("Soft float\n"));
16460 break;
16461 case Val_GNU_MIPS_ABI_FP_OLD_64:
16462 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
16463 break;
16464 case Val_GNU_MIPS_ABI_FP_XX:
16465 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
16466 break;
16467 case Val_GNU_MIPS_ABI_FP_64:
16468 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
16469 break;
16470 case Val_GNU_MIPS_ABI_FP_64A:
16471 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
16472 break;
16473 case Val_GNU_MIPS_ABI_FP_NAN2008:
16474 printf (_("NaN 2008 compatibility\n"));
16475 break;
16476 default:
16477 printf ("??? (%d)\n", val);
16478 break;
16479 }
16480 }
16481
16482 static unsigned char *
16483 display_mips_gnu_attribute (unsigned char * p,
16484 unsigned int tag,
16485 const unsigned char * const end)
16486 {
16487 if (tag == Tag_GNU_MIPS_ABI_FP)
16488 {
16489 unsigned int val;
16490
16491 printf (" Tag_GNU_MIPS_ABI_FP: ");
16492 READ_ULEB (val, p, end);
16493 print_mips_fp_abi_value (val);
16494 return p;
16495 }
16496
16497 if (tag == Tag_GNU_MIPS_ABI_MSA)
16498 {
16499 unsigned int val;
16500
16501 printf (" Tag_GNU_MIPS_ABI_MSA: ");
16502 READ_ULEB (val, p, end);
16503
16504 switch (val)
16505 {
16506 case Val_GNU_MIPS_ABI_MSA_ANY:
16507 printf (_("Any MSA or not\n"));
16508 break;
16509 case Val_GNU_MIPS_ABI_MSA_128:
16510 printf (_("128-bit MSA\n"));
16511 break;
16512 default:
16513 printf ("??? (%d)\n", val);
16514 break;
16515 }
16516 return p;
16517 }
16518
16519 return display_tag_value (tag & 1, p, end);
16520 }
16521
16522 static unsigned char *
16523 display_tic6x_attribute (unsigned char * p,
16524 const unsigned char * const end)
16525 {
16526 unsigned int tag;
16527 unsigned int val;
16528
16529 READ_ULEB (tag, p, end);
16530
16531 switch (tag)
16532 {
16533 case Tag_ISA:
16534 printf (" Tag_ISA: ");
16535 READ_ULEB (val, p, end);
16536
16537 switch (val)
16538 {
16539 case C6XABI_Tag_ISA_none:
16540 printf (_("None\n"));
16541 break;
16542 case C6XABI_Tag_ISA_C62X:
16543 printf ("C62x\n");
16544 break;
16545 case C6XABI_Tag_ISA_C67X:
16546 printf ("C67x\n");
16547 break;
16548 case C6XABI_Tag_ISA_C67XP:
16549 printf ("C67x+\n");
16550 break;
16551 case C6XABI_Tag_ISA_C64X:
16552 printf ("C64x\n");
16553 break;
16554 case C6XABI_Tag_ISA_C64XP:
16555 printf ("C64x+\n");
16556 break;
16557 case C6XABI_Tag_ISA_C674X:
16558 printf ("C674x\n");
16559 break;
16560 default:
16561 printf ("??? (%d)\n", val);
16562 break;
16563 }
16564 return p;
16565
16566 case Tag_ABI_wchar_t:
16567 printf (" Tag_ABI_wchar_t: ");
16568 READ_ULEB (val, p, end);
16569 switch (val)
16570 {
16571 case 0:
16572 printf (_("Not used\n"));
16573 break;
16574 case 1:
16575 printf (_("2 bytes\n"));
16576 break;
16577 case 2:
16578 printf (_("4 bytes\n"));
16579 break;
16580 default:
16581 printf ("??? (%d)\n", val);
16582 break;
16583 }
16584 return p;
16585
16586 case Tag_ABI_stack_align_needed:
16587 printf (" Tag_ABI_stack_align_needed: ");
16588 READ_ULEB (val, p, end);
16589 switch (val)
16590 {
16591 case 0:
16592 printf (_("8-byte\n"));
16593 break;
16594 case 1:
16595 printf (_("16-byte\n"));
16596 break;
16597 default:
16598 printf ("??? (%d)\n", val);
16599 break;
16600 }
16601 return p;
16602
16603 case Tag_ABI_stack_align_preserved:
16604 READ_ULEB (val, p, end);
16605 printf (" Tag_ABI_stack_align_preserved: ");
16606 switch (val)
16607 {
16608 case 0:
16609 printf (_("8-byte\n"));
16610 break;
16611 case 1:
16612 printf (_("16-byte\n"));
16613 break;
16614 default:
16615 printf ("??? (%d)\n", val);
16616 break;
16617 }
16618 return p;
16619
16620 case Tag_ABI_DSBT:
16621 READ_ULEB (val, p, end);
16622 printf (" Tag_ABI_DSBT: ");
16623 switch (val)
16624 {
16625 case 0:
16626 printf (_("DSBT addressing not used\n"));
16627 break;
16628 case 1:
16629 printf (_("DSBT addressing used\n"));
16630 break;
16631 default:
16632 printf ("??? (%d)\n", val);
16633 break;
16634 }
16635 return p;
16636
16637 case Tag_ABI_PID:
16638 READ_ULEB (val, p, end);
16639 printf (" Tag_ABI_PID: ");
16640 switch (val)
16641 {
16642 case 0:
16643 printf (_("Data addressing position-dependent\n"));
16644 break;
16645 case 1:
16646 printf (_("Data addressing position-independent, GOT near DP\n"));
16647 break;
16648 case 2:
16649 printf (_("Data addressing position-independent, GOT far from DP\n"));
16650 break;
16651 default:
16652 printf ("??? (%d)\n", val);
16653 break;
16654 }
16655 return p;
16656
16657 case Tag_ABI_PIC:
16658 READ_ULEB (val, p, end);
16659 printf (" Tag_ABI_PIC: ");
16660 switch (val)
16661 {
16662 case 0:
16663 printf (_("Code addressing position-dependent\n"));
16664 break;
16665 case 1:
16666 printf (_("Code addressing position-independent\n"));
16667 break;
16668 default:
16669 printf ("??? (%d)\n", val);
16670 break;
16671 }
16672 return p;
16673
16674 case Tag_ABI_array_object_alignment:
16675 READ_ULEB (val, p, end);
16676 printf (" Tag_ABI_array_object_alignment: ");
16677 switch (val)
16678 {
16679 case 0:
16680 printf (_("8-byte\n"));
16681 break;
16682 case 1:
16683 printf (_("4-byte\n"));
16684 break;
16685 case 2:
16686 printf (_("16-byte\n"));
16687 break;
16688 default:
16689 printf ("??? (%d)\n", val);
16690 break;
16691 }
16692 return p;
16693
16694 case Tag_ABI_array_object_align_expected:
16695 READ_ULEB (val, p, end);
16696 printf (" Tag_ABI_array_object_align_expected: ");
16697 switch (val)
16698 {
16699 case 0:
16700 printf (_("8-byte\n"));
16701 break;
16702 case 1:
16703 printf (_("4-byte\n"));
16704 break;
16705 case 2:
16706 printf (_("16-byte\n"));
16707 break;
16708 default:
16709 printf ("??? (%d)\n", val);
16710 break;
16711 }
16712 return p;
16713
16714 case Tag_ABI_compatibility:
16715 {
16716 READ_ULEB (val, p, end);
16717 printf (" Tag_ABI_compatibility: ");
16718 printf (_("flag = %d, vendor = "), val);
16719 if (p < end - 1)
16720 {
16721 size_t maxlen = (end - p) - 1;
16722
16723 print_symbol ((int) maxlen, (const char *) p);
16724 p += strnlen ((char *) p, maxlen) + 1;
16725 }
16726 else
16727 {
16728 printf (_("<corrupt>"));
16729 p = (unsigned char *) end;
16730 }
16731 putchar ('\n');
16732 return p;
16733 }
16734
16735 case Tag_ABI_conformance:
16736 {
16737 printf (" Tag_ABI_conformance: \"");
16738 if (p < end - 1)
16739 {
16740 size_t maxlen = (end - p) - 1;
16741
16742 print_symbol ((int) maxlen, (const char *) p);
16743 p += strnlen ((char *) p, maxlen) + 1;
16744 }
16745 else
16746 {
16747 printf (_("<corrupt>"));
16748 p = (unsigned char *) end;
16749 }
16750 printf ("\"\n");
16751 return p;
16752 }
16753 }
16754
16755 return display_tag_value (tag, p, end);
16756 }
16757
16758 static void
16759 display_raw_attribute (unsigned char * p, unsigned char const * const end)
16760 {
16761 unsigned long addr = 0;
16762 size_t bytes = end - p;
16763
16764 assert (end >= p);
16765 while (bytes)
16766 {
16767 int j;
16768 int k;
16769 int lbytes = (bytes > 16 ? 16 : bytes);
16770
16771 printf (" 0x%8.8lx ", addr);
16772
16773 for (j = 0; j < 16; j++)
16774 {
16775 if (j < lbytes)
16776 printf ("%2.2x", p[j]);
16777 else
16778 printf (" ");
16779
16780 if ((j & 3) == 3)
16781 printf (" ");
16782 }
16783
16784 for (j = 0; j < lbytes; j++)
16785 {
16786 k = p[j];
16787 if (k >= ' ' && k < 0x7f)
16788 printf ("%c", k);
16789 else
16790 printf (".");
16791 }
16792
16793 putchar ('\n');
16794
16795 p += lbytes;
16796 bytes -= lbytes;
16797 addr += lbytes;
16798 }
16799
16800 putchar ('\n');
16801 }
16802
16803 static unsigned char *
16804 display_msp430_attribute (unsigned char * p,
16805 const unsigned char * const end)
16806 {
16807 unsigned int val;
16808 unsigned int tag;
16809
16810 READ_ULEB (tag, p, end);
16811
16812 switch (tag)
16813 {
16814 case OFBA_MSPABI_Tag_ISA:
16815 printf (" Tag_ISA: ");
16816 READ_ULEB (val, p, end);
16817 switch (val)
16818 {
16819 case 0: printf (_("None\n")); break;
16820 case 1: printf (_("MSP430\n")); break;
16821 case 2: printf (_("MSP430X\n")); break;
16822 default: printf ("??? (%d)\n", val); break;
16823 }
16824 break;
16825
16826 case OFBA_MSPABI_Tag_Code_Model:
16827 printf (" Tag_Code_Model: ");
16828 READ_ULEB (val, p, end);
16829 switch (val)
16830 {
16831 case 0: printf (_("None\n")); break;
16832 case 1: printf (_("Small\n")); break;
16833 case 2: printf (_("Large\n")); break;
16834 default: printf ("??? (%d)\n", val); break;
16835 }
16836 break;
16837
16838 case OFBA_MSPABI_Tag_Data_Model:
16839 printf (" Tag_Data_Model: ");
16840 READ_ULEB (val, p, end);
16841 switch (val)
16842 {
16843 case 0: printf (_("None\n")); break;
16844 case 1: printf (_("Small\n")); break;
16845 case 2: printf (_("Large\n")); break;
16846 case 3: printf (_("Restricted Large\n")); break;
16847 default: printf ("??? (%d)\n", val); break;
16848 }
16849 break;
16850
16851 default:
16852 printf (_(" <unknown tag %d>: "), tag);
16853
16854 if (tag & 1)
16855 {
16856 putchar ('"');
16857 if (p < end - 1)
16858 {
16859 size_t maxlen = (end - p) - 1;
16860
16861 print_symbol ((int) maxlen, (const char *) p);
16862 p += strnlen ((char *) p, maxlen) + 1;
16863 }
16864 else
16865 {
16866 printf (_("<corrupt>"));
16867 p = (unsigned char *) end;
16868 }
16869 printf ("\"\n");
16870 }
16871 else
16872 {
16873 READ_ULEB (val, p, end);
16874 printf ("%d (0x%x)\n", val, val);
16875 }
16876 break;
16877 }
16878
16879 assert (p <= end);
16880 return p;
16881 }
16882
16883 static unsigned char *
16884 display_msp430_gnu_attribute (unsigned char * p,
16885 unsigned int tag,
16886 const unsigned char * const end)
16887 {
16888 if (tag == Tag_GNU_MSP430_Data_Region)
16889 {
16890 unsigned int val;
16891
16892 printf (" Tag_GNU_MSP430_Data_Region: ");
16893 READ_ULEB (val, p, end);
16894
16895 switch (val)
16896 {
16897 case Val_GNU_MSP430_Data_Region_Any:
16898 printf (_("Any Region\n"));
16899 break;
16900 case Val_GNU_MSP430_Data_Region_Lower:
16901 printf (_("Lower Region Only\n"));
16902 break;
16903 default:
16904 printf ("??? (%u)\n", val);
16905 }
16906 return p;
16907 }
16908 return display_tag_value (tag & 1, p, end);
16909 }
16910
16911 struct riscv_attr_tag_t {
16912 const char *name;
16913 unsigned int tag;
16914 };
16915
16916 static struct riscv_attr_tag_t riscv_attr_tag[] =
16917 {
16918 #define T(tag) {"Tag_RISCV_" #tag, Tag_RISCV_##tag}
16919 T(arch),
16920 T(priv_spec),
16921 T(priv_spec_minor),
16922 T(priv_spec_revision),
16923 T(unaligned_access),
16924 T(stack_align),
16925 #undef T
16926 };
16927
16928 static unsigned char *
16929 display_riscv_attribute (unsigned char *p,
16930 const unsigned char * const end)
16931 {
16932 unsigned int val;
16933 unsigned int tag;
16934 struct riscv_attr_tag_t *attr = NULL;
16935 unsigned i;
16936
16937 READ_ULEB (tag, p, end);
16938
16939 /* Find the name of attribute. */
16940 for (i = 0; i < ARRAY_SIZE (riscv_attr_tag); i++)
16941 {
16942 if (riscv_attr_tag[i].tag == tag)
16943 {
16944 attr = &riscv_attr_tag[i];
16945 break;
16946 }
16947 }
16948
16949 if (attr)
16950 printf (" %s: ", attr->name);
16951 else
16952 return display_tag_value (tag, p, end);
16953
16954 switch (tag)
16955 {
16956 case Tag_RISCV_priv_spec:
16957 case Tag_RISCV_priv_spec_minor:
16958 case Tag_RISCV_priv_spec_revision:
16959 READ_ULEB (val, p, end);
16960 printf (_("%u\n"), val);
16961 break;
16962 case Tag_RISCV_unaligned_access:
16963 READ_ULEB (val, p, end);
16964 switch (val)
16965 {
16966 case 0:
16967 printf (_("No unaligned access\n"));
16968 break;
16969 case 1:
16970 printf (_("Unaligned access\n"));
16971 break;
16972 }
16973 break;
16974 case Tag_RISCV_stack_align:
16975 READ_ULEB (val, p, end);
16976 printf (_("%u-bytes\n"), val);
16977 break;
16978 case Tag_RISCV_arch:
16979 p = display_tag_value (-1, p, end);
16980 break;
16981 default:
16982 return display_tag_value (tag, p, end);
16983 }
16984
16985 return p;
16986 }
16987
16988 static unsigned char *
16989 display_csky_attribute (unsigned char * p,
16990 const unsigned char * const end)
16991 {
16992 unsigned int tag;
16993 unsigned int val;
16994 READ_ULEB (tag, p, end);
16995
16996 if (tag >= Tag_CSKY_MAX)
16997 {
16998 return display_tag_value (-1, p, end);
16999 }
17000
17001 switch (tag)
17002 {
17003 case Tag_CSKY_ARCH_NAME:
17004 printf (" Tag_CSKY_ARCH_NAME:\t\t");
17005 return display_tag_value (-1, p, end);
17006 case Tag_CSKY_CPU_NAME:
17007 printf (" Tag_CSKY_CPU_NAME:\t\t");
17008 return display_tag_value (-1, p, end);
17009
17010 case Tag_CSKY_ISA_FLAGS:
17011 printf (" Tag_CSKY_ISA_FLAGS:\t\t");
17012 return display_tag_value (0, p, end);
17013 case Tag_CSKY_ISA_EXT_FLAGS:
17014 printf (" Tag_CSKY_ISA_EXT_FLAGS:\t");
17015 return display_tag_value (0, p, end);
17016
17017 case Tag_CSKY_DSP_VERSION:
17018 printf (" Tag_CSKY_DSP_VERSION:\t\t");
17019 READ_ULEB (val, p, end);
17020 if (val == VAL_CSKY_DSP_VERSION_EXTENSION)
17021 printf ("DSP Extension\n");
17022 else if (val == VAL_CSKY_DSP_VERSION_2)
17023 printf ("DSP 2.0\n");
17024 break;
17025
17026 case Tag_CSKY_VDSP_VERSION:
17027 printf (" Tag_CSKY_VDSP_VERSION:\t");
17028 READ_ULEB (val, p, end);
17029 printf ("VDSP Version %d\n", val);
17030 break;
17031
17032 case Tag_CSKY_FPU_VERSION:
17033 printf (" Tag_CSKY_FPU_VERSION:\t\t");
17034 READ_ULEB (val, p, end);
17035 if (val == VAL_CSKY_FPU_VERSION_1)
17036 printf ("ABIV1 FPU Version 1\n");
17037 else if (val == VAL_CSKY_FPU_VERSION_2)
17038 printf ("FPU Version 2\n");
17039 break;
17040
17041 case Tag_CSKY_FPU_ABI:
17042 printf (" Tag_CSKY_FPU_ABI:\t\t");
17043 READ_ULEB (val, p, end);
17044 if (val == VAL_CSKY_FPU_ABI_HARD)
17045 printf ("Hard\n");
17046 else if (val == VAL_CSKY_FPU_ABI_SOFTFP)
17047 printf ("SoftFP\n");
17048 else if (val == VAL_CSKY_FPU_ABI_SOFT)
17049 printf ("Soft\n");
17050 break;
17051 case Tag_CSKY_FPU_ROUNDING:
17052 READ_ULEB (val, p, end);
17053 if (val == 1) {
17054 printf (" Tag_CSKY_FPU_ROUNDING:\t");
17055 printf ("Needed\n");
17056 }
17057 break;
17058 case Tag_CSKY_FPU_DENORMAL:
17059 READ_ULEB (val, p, end);
17060 if (val == 1) {
17061 printf (" Tag_CSKY_FPU_DENORMAL:\t");
17062 printf ("Needed\n");
17063 }
17064 break;
17065 case Tag_CSKY_FPU_Exception:
17066 READ_ULEB (val, p, end);
17067 if (val == 1) {
17068 printf (" Tag_CSKY_FPU_Exception:\t");
17069 printf ("Needed\n");
17070 }
17071 break;
17072 case Tag_CSKY_FPU_NUMBER_MODULE:
17073 printf (" Tag_CSKY_FPU_NUMBER_MODULE:\t");
17074 return display_tag_value (-1, p, end);
17075 case Tag_CSKY_FPU_HARDFP:
17076 printf (" Tag_CSKY_FPU_HARDFP:\t\t");
17077 READ_ULEB (val, p, end);
17078 if (val & VAL_CSKY_FPU_HARDFP_HALF)
17079 printf (" Half");
17080 if (val & VAL_CSKY_FPU_HARDFP_SINGLE)
17081 printf (" Single");
17082 if (val & VAL_CSKY_FPU_HARDFP_DOUBLE)
17083 printf (" Double");
17084 printf ("\n");
17085 break;
17086 default:
17087 return display_tag_value (tag, p, end);
17088 }
17089 return p;
17090 }
17091
17092 static bool
17093 process_attributes (Filedata * filedata,
17094 const char * public_name,
17095 unsigned int proc_type,
17096 unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const),
17097 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const))
17098 {
17099 Elf_Internal_Shdr * sect;
17100 unsigned i;
17101 bool res = true;
17102
17103 /* Find the section header so that we get the size. */
17104 for (i = 0, sect = filedata->section_headers;
17105 i < filedata->file_header.e_shnum;
17106 i++, sect++)
17107 {
17108 unsigned char * contents;
17109 unsigned char * p;
17110
17111 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
17112 continue;
17113
17114 contents = (unsigned char *) get_data (NULL, filedata, sect->sh_offset, 1,
17115 sect->sh_size, _("attributes"));
17116 if (contents == NULL)
17117 {
17118 res = false;
17119 continue;
17120 }
17121
17122 p = contents;
17123 /* The first character is the version of the attributes.
17124 Currently only version 1, (aka 'A') is recognised here. */
17125 if (*p != 'A')
17126 {
17127 printf (_("Unknown attributes version '%c'(%d) - expecting 'A'\n"), *p, *p);
17128 res = false;
17129 }
17130 else
17131 {
17132 bfd_vma section_len;
17133
17134 section_len = sect->sh_size - 1;
17135 p++;
17136
17137 while (section_len > 0)
17138 {
17139 bfd_vma attr_len;
17140 unsigned int namelen;
17141 bool public_section;
17142 bool gnu_section;
17143
17144 if (section_len <= 4)
17145 {
17146 error (_("Tag section ends prematurely\n"));
17147 res = false;
17148 break;
17149 }
17150 attr_len = byte_get (p, 4);
17151 p += 4;
17152
17153 if (attr_len > section_len)
17154 {
17155 error (_("Bad attribute length (%u > %u)\n"),
17156 (unsigned) attr_len, (unsigned) section_len);
17157 attr_len = section_len;
17158 res = false;
17159 }
17160 /* PR 17531: file: 001-101425-0.004 */
17161 else if (attr_len < 5)
17162 {
17163 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len);
17164 res = false;
17165 break;
17166 }
17167
17168 section_len -= attr_len;
17169 attr_len -= 4;
17170
17171 namelen = strnlen ((char *) p, attr_len) + 1;
17172 if (namelen == 0 || namelen >= attr_len)
17173 {
17174 error (_("Corrupt attribute section name\n"));
17175 res = false;
17176 break;
17177 }
17178
17179 printf (_("Attribute Section: "));
17180 print_symbol (INT_MAX, (const char *) p);
17181 putchar ('\n');
17182
17183 if (public_name && streq ((char *) p, public_name))
17184 public_section = true;
17185 else
17186 public_section = false;
17187
17188 if (streq ((char *) p, "gnu"))
17189 gnu_section = true;
17190 else
17191 gnu_section = false;
17192
17193 p += namelen;
17194 attr_len -= namelen;
17195
17196 while (attr_len > 0 && p < contents + sect->sh_size)
17197 {
17198 int tag;
17199 unsigned int val;
17200 bfd_vma size;
17201 unsigned char * end;
17202
17203 /* PR binutils/17531: Safe handling of corrupt files. */
17204 if (attr_len < 6)
17205 {
17206 error (_("Unused bytes at end of section\n"));
17207 res = false;
17208 section_len = 0;
17209 break;
17210 }
17211
17212 tag = *(p++);
17213 size = byte_get (p, 4);
17214 if (size > attr_len)
17215 {
17216 error (_("Bad subsection length (%u > %u)\n"),
17217 (unsigned) size, (unsigned) attr_len);
17218 res = false;
17219 size = attr_len;
17220 }
17221 /* PR binutils/17531: Safe handling of corrupt files. */
17222 if (size < 6)
17223 {
17224 error (_("Bad subsection length (%u < 6)\n"),
17225 (unsigned) size);
17226 res = false;
17227 section_len = 0;
17228 break;
17229 }
17230
17231 attr_len -= size;
17232 end = p + size - 1;
17233 assert (end <= contents + sect->sh_size);
17234 p += 4;
17235
17236 switch (tag)
17237 {
17238 case 1:
17239 printf (_("File Attributes\n"));
17240 break;
17241 case 2:
17242 printf (_("Section Attributes:"));
17243 goto do_numlist;
17244 case 3:
17245 printf (_("Symbol Attributes:"));
17246 /* Fall through. */
17247 do_numlist:
17248 for (;;)
17249 {
17250 READ_ULEB (val, p, end);
17251 if (val == 0)
17252 break;
17253 printf (" %d", val);
17254 }
17255 printf ("\n");
17256 break;
17257 default:
17258 printf (_("Unknown tag: %d\n"), tag);
17259 public_section = false;
17260 break;
17261 }
17262
17263 if (public_section && display_pub_attribute != NULL)
17264 {
17265 while (p < end)
17266 p = display_pub_attribute (p, end);
17267 assert (p == end);
17268 }
17269 else if (gnu_section && display_proc_gnu_attribute != NULL)
17270 {
17271 while (p < end)
17272 p = display_gnu_attribute (p,
17273 display_proc_gnu_attribute,
17274 end);
17275 assert (p == end);
17276 }
17277 else if (p < end)
17278 {
17279 printf (_(" Unknown attribute:\n"));
17280 display_raw_attribute (p, end);
17281 p = end;
17282 }
17283 else
17284 attr_len = 0;
17285 }
17286 }
17287 }
17288
17289 free (contents);
17290 }
17291
17292 return res;
17293 }
17294
17295 /* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
17296 Print the Address, Access and Initial fields of an entry at VMA ADDR
17297 and return the VMA of the next entry, or -1 if there was a problem.
17298 Does not read from DATA_END or beyond. */
17299
17300 static bfd_vma
17301 print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr,
17302 unsigned char * data_end)
17303 {
17304 printf (" ");
17305 print_vma (addr, LONG_HEX);
17306 printf (" ");
17307 if (addr < pltgot + 0xfff0)
17308 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
17309 else
17310 printf ("%10s", "");
17311 printf (" ");
17312 if (data == NULL)
17313 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
17314 else
17315 {
17316 bfd_vma entry;
17317 unsigned char * from = data + addr - pltgot;
17318
17319 if (from + (is_32bit_elf ? 4 : 8) > data_end)
17320 {
17321 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
17322 printf ("%*s", is_32bit_elf ? 8 : 16, _("<corrupt>"));
17323 return (bfd_vma) -1;
17324 }
17325 else
17326 {
17327 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
17328 print_vma (entry, LONG_HEX);
17329 }
17330 }
17331 return addr + (is_32bit_elf ? 4 : 8);
17332 }
17333
17334 /* DATA points to the contents of a MIPS PLT GOT that starts at VMA
17335 PLTGOT. Print the Address and Initial fields of an entry at VMA
17336 ADDR and return the VMA of the next entry. */
17337
17338 static bfd_vma
17339 print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
17340 {
17341 printf (" ");
17342 print_vma (addr, LONG_HEX);
17343 printf (" ");
17344 if (data == NULL)
17345 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
17346 else
17347 {
17348 bfd_vma entry;
17349
17350 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
17351 print_vma (entry, LONG_HEX);
17352 }
17353 return addr + (is_32bit_elf ? 4 : 8);
17354 }
17355
17356 static void
17357 print_mips_ases (unsigned int mask)
17358 {
17359 if (mask & AFL_ASE_DSP)
17360 fputs ("\n\tDSP ASE", stdout);
17361 if (mask & AFL_ASE_DSPR2)
17362 fputs ("\n\tDSP R2 ASE", stdout);
17363 if (mask & AFL_ASE_DSPR3)
17364 fputs ("\n\tDSP R3 ASE", stdout);
17365 if (mask & AFL_ASE_EVA)
17366 fputs ("\n\tEnhanced VA Scheme", stdout);
17367 if (mask & AFL_ASE_MCU)
17368 fputs ("\n\tMCU (MicroController) ASE", stdout);
17369 if (mask & AFL_ASE_MDMX)
17370 fputs ("\n\tMDMX ASE", stdout);
17371 if (mask & AFL_ASE_MIPS3D)
17372 fputs ("\n\tMIPS-3D ASE", stdout);
17373 if (mask & AFL_ASE_MT)
17374 fputs ("\n\tMT ASE", stdout);
17375 if (mask & AFL_ASE_SMARTMIPS)
17376 fputs ("\n\tSmartMIPS ASE", stdout);
17377 if (mask & AFL_ASE_VIRT)
17378 fputs ("\n\tVZ ASE", stdout);
17379 if (mask & AFL_ASE_MSA)
17380 fputs ("\n\tMSA ASE", stdout);
17381 if (mask & AFL_ASE_MIPS16)
17382 fputs ("\n\tMIPS16 ASE", stdout);
17383 if (mask & AFL_ASE_MICROMIPS)
17384 fputs ("\n\tMICROMIPS ASE", stdout);
17385 if (mask & AFL_ASE_XPA)
17386 fputs ("\n\tXPA ASE", stdout);
17387 if (mask & AFL_ASE_MIPS16E2)
17388 fputs ("\n\tMIPS16e2 ASE", stdout);
17389 if (mask & AFL_ASE_CRC)
17390 fputs ("\n\tCRC ASE", stdout);
17391 if (mask & AFL_ASE_GINV)
17392 fputs ("\n\tGINV ASE", stdout);
17393 if (mask & AFL_ASE_LOONGSON_MMI)
17394 fputs ("\n\tLoongson MMI ASE", stdout);
17395 if (mask & AFL_ASE_LOONGSON_CAM)
17396 fputs ("\n\tLoongson CAM ASE", stdout);
17397 if (mask & AFL_ASE_LOONGSON_EXT)
17398 fputs ("\n\tLoongson EXT ASE", stdout);
17399 if (mask & AFL_ASE_LOONGSON_EXT2)
17400 fputs ("\n\tLoongson EXT2 ASE", stdout);
17401 if (mask == 0)
17402 fprintf (stdout, "\n\t%s", _("None"));
17403 else if ((mask & ~AFL_ASE_MASK) != 0)
17404 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
17405 }
17406
17407 static void
17408 print_mips_isa_ext (unsigned int isa_ext)
17409 {
17410 switch (isa_ext)
17411 {
17412 case 0:
17413 fputs (_("None"), stdout);
17414 break;
17415 case AFL_EXT_XLR:
17416 fputs ("RMI XLR", stdout);
17417 break;
17418 case AFL_EXT_OCTEON3:
17419 fputs ("Cavium Networks Octeon3", stdout);
17420 break;
17421 case AFL_EXT_OCTEON2:
17422 fputs ("Cavium Networks Octeon2", stdout);
17423 break;
17424 case AFL_EXT_OCTEONP:
17425 fputs ("Cavium Networks OcteonP", stdout);
17426 break;
17427 case AFL_EXT_OCTEON:
17428 fputs ("Cavium Networks Octeon", stdout);
17429 break;
17430 case AFL_EXT_5900:
17431 fputs ("Toshiba R5900", stdout);
17432 break;
17433 case AFL_EXT_4650:
17434 fputs ("MIPS R4650", stdout);
17435 break;
17436 case AFL_EXT_4010:
17437 fputs ("LSI R4010", stdout);
17438 break;
17439 case AFL_EXT_4100:
17440 fputs ("NEC VR4100", stdout);
17441 break;
17442 case AFL_EXT_3900:
17443 fputs ("Toshiba R3900", stdout);
17444 break;
17445 case AFL_EXT_10000:
17446 fputs ("MIPS R10000", stdout);
17447 break;
17448 case AFL_EXT_SB1:
17449 fputs ("Broadcom SB-1", stdout);
17450 break;
17451 case AFL_EXT_4111:
17452 fputs ("NEC VR4111/VR4181", stdout);
17453 break;
17454 case AFL_EXT_4120:
17455 fputs ("NEC VR4120", stdout);
17456 break;
17457 case AFL_EXT_5400:
17458 fputs ("NEC VR5400", stdout);
17459 break;
17460 case AFL_EXT_5500:
17461 fputs ("NEC VR5500", stdout);
17462 break;
17463 case AFL_EXT_LOONGSON_2E:
17464 fputs ("ST Microelectronics Loongson 2E", stdout);
17465 break;
17466 case AFL_EXT_LOONGSON_2F:
17467 fputs ("ST Microelectronics Loongson 2F", stdout);
17468 break;
17469 case AFL_EXT_INTERAPTIV_MR2:
17470 fputs ("Imagination interAptiv MR2", stdout);
17471 break;
17472 default:
17473 fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext);
17474 }
17475 }
17476
17477 static signed int
17478 get_mips_reg_size (int reg_size)
17479 {
17480 return (reg_size == AFL_REG_NONE) ? 0
17481 : (reg_size == AFL_REG_32) ? 32
17482 : (reg_size == AFL_REG_64) ? 64
17483 : (reg_size == AFL_REG_128) ? 128
17484 : -1;
17485 }
17486
17487 static bool
17488 process_mips_specific (Filedata * filedata)
17489 {
17490 Elf_Internal_Dyn * entry;
17491 Elf_Internal_Shdr *sect = NULL;
17492 size_t liblist_offset = 0;
17493 size_t liblistno = 0;
17494 size_t conflictsno = 0;
17495 size_t options_offset = 0;
17496 size_t conflicts_offset = 0;
17497 size_t pltrelsz = 0;
17498 size_t pltrel = 0;
17499 bfd_vma pltgot = 0;
17500 bfd_vma mips_pltgot = 0;
17501 bfd_vma jmprel = 0;
17502 bfd_vma local_gotno = 0;
17503 bfd_vma gotsym = 0;
17504 bfd_vma symtabno = 0;
17505 bool res = true;
17506
17507 if (! process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
17508 display_mips_gnu_attribute))
17509 res = false;
17510
17511 sect = find_section (filedata, ".MIPS.abiflags");
17512
17513 if (sect != NULL)
17514 {
17515 Elf_External_ABIFlags_v0 *abiflags_ext;
17516 Elf_Internal_ABIFlags_v0 abiflags_in;
17517
17518 if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size)
17519 {
17520 error (_("Corrupt MIPS ABI Flags section.\n"));
17521 res = false;
17522 }
17523 else
17524 {
17525 abiflags_ext = get_data (NULL, filedata, sect->sh_offset, 1,
17526 sect->sh_size, _("MIPS ABI Flags section"));
17527 if (abiflags_ext)
17528 {
17529 abiflags_in.version = BYTE_GET (abiflags_ext->version);
17530 abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level);
17531 abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev);
17532 abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size);
17533 abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size);
17534 abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size);
17535 abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi);
17536 abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext);
17537 abiflags_in.ases = BYTE_GET (abiflags_ext->ases);
17538 abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1);
17539 abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2);
17540
17541 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version);
17542 printf ("\nISA: MIPS%d", abiflags_in.isa_level);
17543 if (abiflags_in.isa_rev > 1)
17544 printf ("r%d", abiflags_in.isa_rev);
17545 printf ("\nGPR size: %d",
17546 get_mips_reg_size (abiflags_in.gpr_size));
17547 printf ("\nCPR1 size: %d",
17548 get_mips_reg_size (abiflags_in.cpr1_size));
17549 printf ("\nCPR2 size: %d",
17550 get_mips_reg_size (abiflags_in.cpr2_size));
17551 fputs ("\nFP ABI: ", stdout);
17552 print_mips_fp_abi_value (abiflags_in.fp_abi);
17553 fputs ("ISA Extension: ", stdout);
17554 print_mips_isa_ext (abiflags_in.isa_ext);
17555 fputs ("\nASEs:", stdout);
17556 print_mips_ases (abiflags_in.ases);
17557 printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1);
17558 printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2);
17559 fputc ('\n', stdout);
17560 free (abiflags_ext);
17561 }
17562 }
17563 }
17564
17565 /* We have a lot of special sections. Thanks SGI! */
17566 if (filedata->dynamic_section == NULL)
17567 {
17568 /* No dynamic information available. See if there is static GOT. */
17569 sect = find_section (filedata, ".got");
17570 if (sect != NULL)
17571 {
17572 unsigned char *data_end;
17573 unsigned char *data;
17574 bfd_vma ent, end;
17575 int addr_size;
17576
17577 pltgot = sect->sh_addr;
17578
17579 ent = pltgot;
17580 addr_size = (is_32bit_elf ? 4 : 8);
17581 end = pltgot + sect->sh_size;
17582
17583 data = (unsigned char *) get_data (NULL, filedata, sect->sh_offset,
17584 end - pltgot, 1,
17585 _("Global Offset Table data"));
17586 /* PR 12855: Null data is handled gracefully throughout. */
17587 data_end = data + (end - pltgot);
17588
17589 printf (_("\nStatic GOT:\n"));
17590 printf (_(" Canonical gp value: "));
17591 print_vma (ent + 0x7ff0, LONG_HEX);
17592 printf ("\n\n");
17593
17594 /* In a dynamic binary GOT[0] is reserved for the dynamic
17595 loader to store the lazy resolver pointer, however in
17596 a static binary it may well have been omitted and GOT
17597 reduced to a table of addresses.
17598 PR 21344: Check for the entry being fully available
17599 before fetching it. */
17600 if (data
17601 && data + ent - pltgot + addr_size <= data_end
17602 && byte_get (data + ent - pltgot, addr_size) == 0)
17603 {
17604 printf (_(" Reserved entries:\n"));
17605 printf (_(" %*s %10s %*s\n"),
17606 addr_size * 2, _("Address"), _("Access"),
17607 addr_size * 2, _("Value"));
17608 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17609 printf ("\n");
17610 if (ent == (bfd_vma) -1)
17611 goto sgot_print_fail;
17612
17613 /* Check for the MSB of GOT[1] being set, identifying a
17614 GNU object. This entry will be used by some runtime
17615 loaders, to store the module pointer. Otherwise this
17616 is an ordinary local entry.
17617 PR 21344: Check for the entry being fully available
17618 before fetching it. */
17619 if (data
17620 && data + ent - pltgot + addr_size <= data_end
17621 && (byte_get (data + ent - pltgot, addr_size)
17622 >> (addr_size * 8 - 1)) != 0)
17623 {
17624 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17625 printf ("\n");
17626 if (ent == (bfd_vma) -1)
17627 goto sgot_print_fail;
17628 }
17629 printf ("\n");
17630 }
17631
17632 if (data != NULL && ent < end)
17633 {
17634 printf (_(" Local entries:\n"));
17635 printf (" %*s %10s %*s\n",
17636 addr_size * 2, _("Address"), _("Access"),
17637 addr_size * 2, _("Value"));
17638 while (ent < end)
17639 {
17640 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17641 printf ("\n");
17642 if (ent == (bfd_vma) -1)
17643 goto sgot_print_fail;
17644 }
17645 printf ("\n");
17646 }
17647
17648 sgot_print_fail:
17649 free (data);
17650 }
17651 return res;
17652 }
17653
17654 for (entry = filedata->dynamic_section;
17655 /* PR 17531 file: 012-50589-0.004. */
17656 (entry < filedata->dynamic_section + filedata->dynamic_nent
17657 && entry->d_tag != DT_NULL);
17658 ++entry)
17659 switch (entry->d_tag)
17660 {
17661 case DT_MIPS_LIBLIST:
17662 liblist_offset
17663 = offset_from_vma (filedata, entry->d_un.d_val,
17664 liblistno * sizeof (Elf32_External_Lib));
17665 break;
17666 case DT_MIPS_LIBLISTNO:
17667 liblistno = entry->d_un.d_val;
17668 break;
17669 case DT_MIPS_OPTIONS:
17670 options_offset = offset_from_vma (filedata, entry->d_un.d_val, 0);
17671 break;
17672 case DT_MIPS_CONFLICT:
17673 conflicts_offset
17674 = offset_from_vma (filedata, entry->d_un.d_val,
17675 conflictsno * sizeof (Elf32_External_Conflict));
17676 break;
17677 case DT_MIPS_CONFLICTNO:
17678 conflictsno = entry->d_un.d_val;
17679 break;
17680 case DT_PLTGOT:
17681 pltgot = entry->d_un.d_ptr;
17682 break;
17683 case DT_MIPS_LOCAL_GOTNO:
17684 local_gotno = entry->d_un.d_val;
17685 break;
17686 case DT_MIPS_GOTSYM:
17687 gotsym = entry->d_un.d_val;
17688 break;
17689 case DT_MIPS_SYMTABNO:
17690 symtabno = entry->d_un.d_val;
17691 break;
17692 case DT_MIPS_PLTGOT:
17693 mips_pltgot = entry->d_un.d_ptr;
17694 break;
17695 case DT_PLTREL:
17696 pltrel = entry->d_un.d_val;
17697 break;
17698 case DT_PLTRELSZ:
17699 pltrelsz = entry->d_un.d_val;
17700 break;
17701 case DT_JMPREL:
17702 jmprel = entry->d_un.d_ptr;
17703 break;
17704 default:
17705 break;
17706 }
17707
17708 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
17709 {
17710 Elf32_External_Lib * elib;
17711 size_t cnt;
17712
17713 elib = (Elf32_External_Lib *) get_data (NULL, filedata, liblist_offset,
17714 sizeof (Elf32_External_Lib),
17715 liblistno,
17716 _("liblist section data"));
17717 if (elib)
17718 {
17719 printf (ngettext ("\nSection '.liblist' contains %lu entry:\n",
17720 "\nSection '.liblist' contains %lu entries:\n",
17721 (unsigned long) liblistno),
17722 (unsigned long) liblistno);
17723 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
17724 stdout);
17725
17726 for (cnt = 0; cnt < liblistno; ++cnt)
17727 {
17728 Elf32_Lib liblist;
17729 time_t atime;
17730 char timebuf[128];
17731 struct tm * tmp;
17732
17733 liblist.l_name = BYTE_GET (elib[cnt].l_name);
17734 atime = BYTE_GET (elib[cnt].l_time_stamp);
17735 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
17736 liblist.l_version = BYTE_GET (elib[cnt].l_version);
17737 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
17738
17739 tmp = gmtime (&atime);
17740 snprintf (timebuf, sizeof (timebuf),
17741 "%04u-%02u-%02uT%02u:%02u:%02u",
17742 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
17743 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
17744
17745 printf ("%3lu: ", (unsigned long) cnt);
17746 if (VALID_DYNAMIC_NAME (filedata, liblist.l_name))
17747 print_symbol (20, GET_DYNAMIC_NAME (filedata, liblist.l_name));
17748 else
17749 printf (_("<corrupt: %9ld>"), liblist.l_name);
17750 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
17751 liblist.l_version);
17752
17753 if (liblist.l_flags == 0)
17754 puts (_(" NONE"));
17755 else
17756 {
17757 static const struct
17758 {
17759 const char * name;
17760 int bit;
17761 }
17762 l_flags_vals[] =
17763 {
17764 { " EXACT_MATCH", LL_EXACT_MATCH },
17765 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
17766 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
17767 { " EXPORTS", LL_EXPORTS },
17768 { " DELAY_LOAD", LL_DELAY_LOAD },
17769 { " DELTA", LL_DELTA }
17770 };
17771 int flags = liblist.l_flags;
17772 size_t fcnt;
17773
17774 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
17775 if ((flags & l_flags_vals[fcnt].bit) != 0)
17776 {
17777 fputs (l_flags_vals[fcnt].name, stdout);
17778 flags ^= l_flags_vals[fcnt].bit;
17779 }
17780 if (flags != 0)
17781 printf (" %#x", (unsigned int) flags);
17782
17783 puts ("");
17784 }
17785 }
17786
17787 free (elib);
17788 }
17789 else
17790 res = false;
17791 }
17792
17793 if (options_offset != 0)
17794 {
17795 Elf_External_Options * eopt;
17796 size_t offset;
17797 int cnt;
17798 sect = filedata->section_headers;
17799
17800 /* Find the section header so that we get the size. */
17801 sect = find_section_by_type (filedata, SHT_MIPS_OPTIONS);
17802 /* PR 17533 file: 012-277276-0.004. */
17803 if (sect == NULL)
17804 {
17805 error (_("No MIPS_OPTIONS header found\n"));
17806 return false;
17807 }
17808 /* PR 24243 */
17809 if (sect->sh_size < sizeof (* eopt))
17810 {
17811 error (_("The MIPS options section is too small.\n"));
17812 return false;
17813 }
17814
17815 eopt = (Elf_External_Options *) get_data (NULL, filedata, options_offset, 1,
17816 sect->sh_size, _("options"));
17817 if (eopt)
17818 {
17819 Elf_Internal_Options option;
17820
17821 offset = cnt = 0;
17822 while (offset <= sect->sh_size - sizeof (* eopt))
17823 {
17824 Elf_External_Options * eoption;
17825 unsigned int optsize;
17826
17827 eoption = (Elf_External_Options *) ((char *) eopt + offset);
17828
17829 optsize = BYTE_GET (eoption->size);
17830
17831 /* PR 17531: file: ffa0fa3b. */
17832 if (optsize < sizeof (* eopt)
17833 || optsize > sect->sh_size - offset)
17834 {
17835 error (_("Invalid size (%u) for MIPS option\n"),
17836 optsize);
17837 free (eopt);
17838 return false;
17839 }
17840 offset += optsize;
17841 ++cnt;
17842 }
17843
17844 printf (ngettext ("\nSection '%s' contains %d entry:\n",
17845 "\nSection '%s' contains %d entries:\n",
17846 cnt),
17847 printable_section_name (filedata, sect), cnt);
17848
17849 offset = 0;
17850 while (cnt-- > 0)
17851 {
17852 size_t len;
17853 Elf_External_Options * eoption;
17854
17855 eoption = (Elf_External_Options *) ((char *) eopt + offset);
17856
17857 option.kind = BYTE_GET (eoption->kind);
17858 option.size = BYTE_GET (eoption->size);
17859 option.section = BYTE_GET (eoption->section);
17860 option.info = BYTE_GET (eoption->info);
17861
17862 switch (option.kind)
17863 {
17864 case ODK_NULL:
17865 /* This shouldn't happen. */
17866 printf (" NULL %" PRId16 " %" PRIx32,
17867 option.section, option.info);
17868 break;
17869
17870 case ODK_REGINFO:
17871 printf (" REGINFO ");
17872 if (filedata->file_header.e_machine == EM_MIPS)
17873 {
17874 Elf32_External_RegInfo * ereg;
17875 Elf32_RegInfo reginfo;
17876
17877 /* 32bit form. */
17878 if (option.size < (sizeof (Elf_External_Options)
17879 + sizeof (Elf32_External_RegInfo)))
17880 {
17881 printf (_("<corrupt>\n"));
17882 error (_("Truncated MIPS REGINFO option\n"));
17883 cnt = 0;
17884 break;
17885 }
17886
17887 ereg = (Elf32_External_RegInfo *) (eoption + 1);
17888
17889 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
17890 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
17891 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
17892 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
17893 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
17894 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
17895
17896 printf ("GPR %08" PRIx32 " GP 0x%" PRIx32 "\n",
17897 reginfo.ri_gprmask, reginfo.ri_gp_value);
17898 printf (" "
17899 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
17900 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
17901 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
17902 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
17903 }
17904 else
17905 {
17906 /* 64 bit form. */
17907 Elf64_External_RegInfo * ereg;
17908 Elf64_Internal_RegInfo reginfo;
17909
17910 if (option.size < (sizeof (Elf_External_Options)
17911 + sizeof (Elf64_External_RegInfo)))
17912 {
17913 printf (_("<corrupt>\n"));
17914 error (_("Truncated MIPS REGINFO option\n"));
17915 cnt = 0;
17916 break;
17917 }
17918
17919 ereg = (Elf64_External_RegInfo *) (eoption + 1);
17920 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
17921 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
17922 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
17923 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
17924 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
17925 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
17926
17927 printf ("GPR %08" PRIx32 " GP 0x%" PRIx64 "\n",
17928 reginfo.ri_gprmask, reginfo.ri_gp_value);
17929 printf (" "
17930 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
17931 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
17932 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
17933 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
17934 }
17935 offset += option.size;
17936 continue;
17937
17938 case ODK_EXCEPTIONS:
17939 fputs (" EXCEPTIONS fpe_min(", stdout);
17940 process_mips_fpe_exception (option.info & OEX_FPU_MIN);
17941 fputs (") fpe_max(", stdout);
17942 process_mips_fpe_exception ((option.info & OEX_FPU_MAX) >> 8);
17943 fputs (")", stdout);
17944
17945 if (option.info & OEX_PAGE0)
17946 fputs (" PAGE0", stdout);
17947 if (option.info & OEX_SMM)
17948 fputs (" SMM", stdout);
17949 if (option.info & OEX_FPDBUG)
17950 fputs (" FPDBUG", stdout);
17951 if (option.info & OEX_DISMISS)
17952 fputs (" DISMISS", stdout);
17953 break;
17954
17955 case ODK_PAD:
17956 fputs (" PAD ", stdout);
17957 if (option.info & OPAD_PREFIX)
17958 fputs (" PREFIX", stdout);
17959 if (option.info & OPAD_POSTFIX)
17960 fputs (" POSTFIX", stdout);
17961 if (option.info & OPAD_SYMBOL)
17962 fputs (" SYMBOL", stdout);
17963 break;
17964
17965 case ODK_HWPATCH:
17966 fputs (" HWPATCH ", stdout);
17967 if (option.info & OHW_R4KEOP)
17968 fputs (" R4KEOP", stdout);
17969 if (option.info & OHW_R8KPFETCH)
17970 fputs (" R8KPFETCH", stdout);
17971 if (option.info & OHW_R5KEOP)
17972 fputs (" R5KEOP", stdout);
17973 if (option.info & OHW_R5KCVTL)
17974 fputs (" R5KCVTL", stdout);
17975 break;
17976
17977 case ODK_FILL:
17978 fputs (" FILL ", stdout);
17979 /* XXX Print content of info word? */
17980 break;
17981
17982 case ODK_TAGS:
17983 fputs (" TAGS ", stdout);
17984 /* XXX Print content of info word? */
17985 break;
17986
17987 case ODK_HWAND:
17988 fputs (" HWAND ", stdout);
17989 if (option.info & OHWA0_R4KEOP_CHECKED)
17990 fputs (" R4KEOP_CHECKED", stdout);
17991 if (option.info & OHWA0_R4KEOP_CLEAN)
17992 fputs (" R4KEOP_CLEAN", stdout);
17993 break;
17994
17995 case ODK_HWOR:
17996 fputs (" HWOR ", stdout);
17997 if (option.info & OHWA0_R4KEOP_CHECKED)
17998 fputs (" R4KEOP_CHECKED", stdout);
17999 if (option.info & OHWA0_R4KEOP_CLEAN)
18000 fputs (" R4KEOP_CLEAN", stdout);
18001 break;
18002
18003 case ODK_GP_GROUP:
18004 printf (" GP_GROUP %#06x self-contained %#06x",
18005 option.info & OGP_GROUP,
18006 (option.info & OGP_SELF) >> 16);
18007 break;
18008
18009 case ODK_IDENT:
18010 printf (" IDENT %#06x self-contained %#06x",
18011 option.info & OGP_GROUP,
18012 (option.info & OGP_SELF) >> 16);
18013 break;
18014
18015 default:
18016 /* This shouldn't happen. */
18017 printf (" %3d ??? %" PRId16 " %" PRIx32,
18018 option.kind, option.section, option.info);
18019 break;
18020 }
18021
18022 len = sizeof (* eopt);
18023 while (len < option.size)
18024 {
18025 unsigned char datum = *((unsigned char *) eoption + len);
18026
18027 if (ISPRINT (datum))
18028 printf ("%c", datum);
18029 else
18030 printf ("\\%03o", datum);
18031 len ++;
18032 }
18033 fputs ("\n", stdout);
18034
18035 offset += option.size;
18036 }
18037 free (eopt);
18038 }
18039 else
18040 res = false;
18041 }
18042
18043 if (conflicts_offset != 0 && conflictsno != 0)
18044 {
18045 Elf32_Conflict * iconf;
18046 size_t cnt;
18047
18048 if (filedata->dynamic_symbols == NULL)
18049 {
18050 error (_("conflict list found without a dynamic symbol table\n"));
18051 return false;
18052 }
18053
18054 /* PR 21345 - print a slightly more helpful error message
18055 if we are sure that the cmalloc will fail. */
18056 if (conflictsno > filedata->file_size / sizeof (* iconf))
18057 {
18058 error (_("Overlarge number of conflicts detected: %lx\n"),
18059 (long) conflictsno);
18060 return false;
18061 }
18062
18063 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
18064 if (iconf == NULL)
18065 {
18066 error (_("Out of memory allocating space for dynamic conflicts\n"));
18067 return false;
18068 }
18069
18070 if (is_32bit_elf)
18071 {
18072 Elf32_External_Conflict * econf32;
18073
18074 econf32 = (Elf32_External_Conflict *)
18075 get_data (NULL, filedata, conflicts_offset,
18076 sizeof (*econf32), conflictsno, _("conflict"));
18077 if (!econf32)
18078 {
18079 free (iconf);
18080 return false;
18081 }
18082
18083 for (cnt = 0; cnt < conflictsno; ++cnt)
18084 iconf[cnt] = BYTE_GET (econf32[cnt]);
18085
18086 free (econf32);
18087 }
18088 else
18089 {
18090 Elf64_External_Conflict * econf64;
18091
18092 econf64 = (Elf64_External_Conflict *)
18093 get_data (NULL, filedata, conflicts_offset,
18094 sizeof (*econf64), conflictsno, _("conflict"));
18095 if (!econf64)
18096 {
18097 free (iconf);
18098 return false;
18099 }
18100
18101 for (cnt = 0; cnt < conflictsno; ++cnt)
18102 iconf[cnt] = BYTE_GET (econf64[cnt]);
18103
18104 free (econf64);
18105 }
18106
18107 printf (ngettext ("\nSection '.conflict' contains %lu entry:\n",
18108 "\nSection '.conflict' contains %lu entries:\n",
18109 (unsigned long) conflictsno),
18110 (unsigned long) conflictsno);
18111 puts (_(" Num: Index Value Name"));
18112
18113 for (cnt = 0; cnt < conflictsno; ++cnt)
18114 {
18115 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
18116
18117 if (iconf[cnt] >= filedata->num_dynamic_syms)
18118 printf (_("<corrupt symbol index>"));
18119 else
18120 {
18121 Elf_Internal_Sym * psym;
18122
18123 psym = & filedata->dynamic_symbols[iconf[cnt]];
18124 print_vma (psym->st_value, FULL_HEX);
18125 putchar (' ');
18126 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18127 print_symbol (25, GET_DYNAMIC_NAME (filedata, psym->st_name));
18128 else
18129 printf (_("<corrupt: %14ld>"), psym->st_name);
18130 }
18131 putchar ('\n');
18132 }
18133
18134 free (iconf);
18135 }
18136
18137 if (pltgot != 0 && local_gotno != 0)
18138 {
18139 bfd_vma ent, local_end, global_end;
18140 size_t i, offset;
18141 unsigned char * data;
18142 unsigned char * data_end;
18143 int addr_size;
18144
18145 ent = pltgot;
18146 addr_size = (is_32bit_elf ? 4 : 8);
18147 local_end = pltgot + local_gotno * addr_size;
18148
18149 /* PR binutils/17533 file: 012-111227-0.004 */
18150 if (symtabno < gotsym)
18151 {
18152 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
18153 (unsigned long) gotsym, (unsigned long) symtabno);
18154 return false;
18155 }
18156
18157 global_end = local_end + (symtabno - gotsym) * addr_size;
18158 /* PR 17531: file: 54c91a34. */
18159 if (global_end < local_end)
18160 {
18161 error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno);
18162 return false;
18163 }
18164
18165 offset = offset_from_vma (filedata, pltgot, global_end - pltgot);
18166 data = (unsigned char *) get_data (NULL, filedata, offset,
18167 global_end - pltgot, 1,
18168 _("Global Offset Table data"));
18169 /* PR 12855: Null data is handled gracefully throughout. */
18170 data_end = data + (global_end - pltgot);
18171
18172 printf (_("\nPrimary GOT:\n"));
18173 printf (_(" Canonical gp value: "));
18174 print_vma (pltgot + 0x7ff0, LONG_HEX);
18175 printf ("\n\n");
18176
18177 printf (_(" Reserved entries:\n"));
18178 printf (_(" %*s %10s %*s Purpose\n"),
18179 addr_size * 2, _("Address"), _("Access"),
18180 addr_size * 2, _("Initial"));
18181 ent = print_mips_got_entry (data, pltgot, ent, data_end);
18182 printf (_(" Lazy resolver\n"));
18183 if (ent == (bfd_vma) -1)
18184 goto got_print_fail;
18185
18186 /* Check for the MSB of GOT[1] being set, denoting a GNU object.
18187 This entry will be used by some runtime loaders, to store the
18188 module pointer. Otherwise this is an ordinary local entry.
18189 PR 21344: Check for the entry being fully available before
18190 fetching it. */
18191 if (data
18192 && data + ent - pltgot + addr_size <= data_end
18193 && (byte_get (data + ent - pltgot, addr_size)
18194 >> (addr_size * 8 - 1)) != 0)
18195 {
18196 ent = print_mips_got_entry (data, pltgot, ent, data_end);
18197 printf (_(" Module pointer (GNU extension)\n"));
18198 if (ent == (bfd_vma) -1)
18199 goto got_print_fail;
18200 }
18201 printf ("\n");
18202
18203 if (data != NULL && ent < local_end)
18204 {
18205 printf (_(" Local entries:\n"));
18206 printf (" %*s %10s %*s\n",
18207 addr_size * 2, _("Address"), _("Access"),
18208 addr_size * 2, _("Initial"));
18209 while (ent < local_end)
18210 {
18211 ent = print_mips_got_entry (data, pltgot, ent, data_end);
18212 printf ("\n");
18213 if (ent == (bfd_vma) -1)
18214 goto got_print_fail;
18215 }
18216 printf ("\n");
18217 }
18218
18219 if (data != NULL && gotsym < symtabno)
18220 {
18221 int sym_width;
18222
18223 printf (_(" Global entries:\n"));
18224 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
18225 addr_size * 2, _("Address"),
18226 _("Access"),
18227 addr_size * 2, _("Initial"),
18228 addr_size * 2, _("Sym.Val."),
18229 _("Type"),
18230 /* Note for translators: "Ndx" = abbreviated form of "Index". */
18231 _("Ndx"), _("Name"));
18232
18233 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
18234
18235 for (i = gotsym; i < symtabno; i++)
18236 {
18237 ent = print_mips_got_entry (data, pltgot, ent, data_end);
18238 printf (" ");
18239
18240 if (filedata->dynamic_symbols == NULL)
18241 printf (_("<no dynamic symbols>"));
18242 else if (i < filedata->num_dynamic_syms)
18243 {
18244 Elf_Internal_Sym * psym = filedata->dynamic_symbols + i;
18245
18246 print_vma (psym->st_value, LONG_HEX);
18247 printf (" %-7s %3s ",
18248 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
18249 get_symbol_index_type (filedata, psym->st_shndx));
18250
18251 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18252 print_symbol (sym_width,
18253 GET_DYNAMIC_NAME (filedata, psym->st_name));
18254 else
18255 printf (_("<corrupt: %14ld>"), psym->st_name);
18256 }
18257 else
18258 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
18259 (unsigned long) i);
18260
18261 printf ("\n");
18262 if (ent == (bfd_vma) -1)
18263 break;
18264 }
18265 printf ("\n");
18266 }
18267
18268 got_print_fail:
18269 free (data);
18270 }
18271
18272 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
18273 {
18274 bfd_vma ent, end;
18275 size_t offset, rel_offset;
18276 unsigned long count, i;
18277 unsigned char * data;
18278 int addr_size, sym_width;
18279 Elf_Internal_Rela * rels;
18280
18281 rel_offset = offset_from_vma (filedata, jmprel, pltrelsz);
18282 if (pltrel == DT_RELA)
18283 {
18284 if (!slurp_rela_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
18285 return false;
18286 }
18287 else
18288 {
18289 if (!slurp_rel_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
18290 return false;
18291 }
18292
18293 ent = mips_pltgot;
18294 addr_size = (is_32bit_elf ? 4 : 8);
18295 end = mips_pltgot + (2 + count) * addr_size;
18296
18297 offset = offset_from_vma (filedata, mips_pltgot, end - mips_pltgot);
18298 data = (unsigned char *) get_data (NULL, filedata, offset, end - mips_pltgot,
18299 1, _("Procedure Linkage Table data"));
18300 if (data == NULL)
18301 {
18302 free (rels);
18303 return false;
18304 }
18305
18306 printf ("\nPLT GOT:\n\n");
18307 printf (_(" Reserved entries:\n"));
18308 printf (_(" %*s %*s Purpose\n"),
18309 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
18310 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
18311 printf (_(" PLT lazy resolver\n"));
18312 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
18313 printf (_(" Module pointer\n"));
18314 printf ("\n");
18315
18316 printf (_(" Entries:\n"));
18317 printf (" %*s %*s %*s %-7s %3s %s\n",
18318 addr_size * 2, _("Address"),
18319 addr_size * 2, _("Initial"),
18320 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
18321 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
18322 for (i = 0; i < count; i++)
18323 {
18324 unsigned long idx = get_reloc_symindex (rels[i].r_info);
18325
18326 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
18327 printf (" ");
18328
18329 if (idx >= filedata->num_dynamic_syms)
18330 printf (_("<corrupt symbol index: %lu>"), idx);
18331 else
18332 {
18333 Elf_Internal_Sym * psym = filedata->dynamic_symbols + idx;
18334
18335 print_vma (psym->st_value, LONG_HEX);
18336 printf (" %-7s %3s ",
18337 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
18338 get_symbol_index_type (filedata, psym->st_shndx));
18339 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18340 print_symbol (sym_width,
18341 GET_DYNAMIC_NAME (filedata, psym->st_name));
18342 else
18343 printf (_("<corrupt: %14ld>"), psym->st_name);
18344 }
18345 printf ("\n");
18346 }
18347 printf ("\n");
18348
18349 free (data);
18350 free (rels);
18351 }
18352
18353 return res;
18354 }
18355
18356 static bool
18357 process_nds32_specific (Filedata * filedata)
18358 {
18359 Elf_Internal_Shdr *sect = NULL;
18360
18361 sect = find_section (filedata, ".nds32_e_flags");
18362 if (sect != NULL && sect->sh_size >= 4)
18363 {
18364 unsigned char *buf;
18365 unsigned int flag;
18366
18367 printf ("\nNDS32 elf flags section:\n");
18368 buf = get_data (NULL, filedata, sect->sh_offset, 1, 4,
18369 _("NDS32 elf flags section"));
18370
18371 if (buf == NULL)
18372 return false;
18373
18374 flag = byte_get (buf, 4);
18375 free (buf);
18376 switch (flag & 0x3)
18377 {
18378 case 0:
18379 printf ("(VEC_SIZE):\tNo entry.\n");
18380 break;
18381 case 1:
18382 printf ("(VEC_SIZE):\t4 bytes\n");
18383 break;
18384 case 2:
18385 printf ("(VEC_SIZE):\t16 bytes\n");
18386 break;
18387 case 3:
18388 printf ("(VEC_SIZE):\treserved\n");
18389 break;
18390 }
18391 }
18392
18393 return true;
18394 }
18395
18396 static bool
18397 process_gnu_liblist (Filedata * filedata)
18398 {
18399 Elf_Internal_Shdr * section;
18400 Elf_Internal_Shdr * string_sec;
18401 Elf32_External_Lib * elib;
18402 char * strtab;
18403 size_t strtab_size;
18404 size_t cnt;
18405 unsigned long num_liblist;
18406 unsigned i;
18407 bool res = true;
18408
18409 if (! do_arch)
18410 return true;
18411
18412 for (i = 0, section = filedata->section_headers;
18413 i < filedata->file_header.e_shnum;
18414 i++, section++)
18415 {
18416 switch (section->sh_type)
18417 {
18418 case SHT_GNU_LIBLIST:
18419 if (section->sh_link >= filedata->file_header.e_shnum)
18420 break;
18421
18422 elib = (Elf32_External_Lib *)
18423 get_data (NULL, filedata, section->sh_offset, 1, section->sh_size,
18424 _("liblist section data"));
18425
18426 if (elib == NULL)
18427 {
18428 res = false;
18429 break;
18430 }
18431
18432 string_sec = filedata->section_headers + section->sh_link;
18433 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
18434 string_sec->sh_size,
18435 _("liblist string table"));
18436 if (strtab == NULL
18437 || section->sh_entsize != sizeof (Elf32_External_Lib))
18438 {
18439 free (elib);
18440 free (strtab);
18441 res = false;
18442 break;
18443 }
18444 strtab_size = string_sec->sh_size;
18445
18446 num_liblist = section->sh_size / sizeof (Elf32_External_Lib);
18447 printf (ngettext ("\nLibrary list section '%s' contains %lu entries:\n",
18448 "\nLibrary list section '%s' contains %lu entries:\n",
18449 num_liblist),
18450 printable_section_name (filedata, section),
18451 num_liblist);
18452
18453 puts (_(" Library Time Stamp Checksum Version Flags"));
18454
18455 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
18456 ++cnt)
18457 {
18458 Elf32_Lib liblist;
18459 time_t atime;
18460 char timebuf[128];
18461 struct tm * tmp;
18462
18463 liblist.l_name = BYTE_GET (elib[cnt].l_name);
18464 atime = BYTE_GET (elib[cnt].l_time_stamp);
18465 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
18466 liblist.l_version = BYTE_GET (elib[cnt].l_version);
18467 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
18468
18469 tmp = gmtime (&atime);
18470 snprintf (timebuf, sizeof (timebuf),
18471 "%04u-%02u-%02uT%02u:%02u:%02u",
18472 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
18473 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
18474
18475 printf ("%3lu: ", (unsigned long) cnt);
18476 if (do_wide)
18477 printf ("%-20s", liblist.l_name < strtab_size
18478 ? strtab + liblist.l_name : _("<corrupt>"));
18479 else
18480 printf ("%-20.20s", liblist.l_name < strtab_size
18481 ? strtab + liblist.l_name : _("<corrupt>"));
18482 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
18483 liblist.l_version, liblist.l_flags);
18484 }
18485
18486 free (elib);
18487 free (strtab);
18488 }
18489 }
18490
18491 return res;
18492 }
18493
18494 static const char *
18495 get_note_type (Filedata * filedata, unsigned e_type)
18496 {
18497 static char buff[64];
18498
18499 if (filedata->file_header.e_type == ET_CORE)
18500 switch (e_type)
18501 {
18502 case NT_AUXV:
18503 return _("NT_AUXV (auxiliary vector)");
18504 case NT_PRSTATUS:
18505 return _("NT_PRSTATUS (prstatus structure)");
18506 case NT_FPREGSET:
18507 return _("NT_FPREGSET (floating point registers)");
18508 case NT_PRPSINFO:
18509 return _("NT_PRPSINFO (prpsinfo structure)");
18510 case NT_TASKSTRUCT:
18511 return _("NT_TASKSTRUCT (task structure)");
18512 case NT_GDB_TDESC:
18513 return _("NT_GDB_TDESC (GDB XML target description)");
18514 case NT_PRXFPREG:
18515 return _("NT_PRXFPREG (user_xfpregs structure)");
18516 case NT_PPC_VMX:
18517 return _("NT_PPC_VMX (ppc Altivec registers)");
18518 case NT_PPC_VSX:
18519 return _("NT_PPC_VSX (ppc VSX registers)");
18520 case NT_PPC_TAR:
18521 return _("NT_PPC_TAR (ppc TAR register)");
18522 case NT_PPC_PPR:
18523 return _("NT_PPC_PPR (ppc PPR register)");
18524 case NT_PPC_DSCR:
18525 return _("NT_PPC_DSCR (ppc DSCR register)");
18526 case NT_PPC_EBB:
18527 return _("NT_PPC_EBB (ppc EBB registers)");
18528 case NT_PPC_PMU:
18529 return _("NT_PPC_PMU (ppc PMU registers)");
18530 case NT_PPC_TM_CGPR:
18531 return _("NT_PPC_TM_CGPR (ppc checkpointed GPR registers)");
18532 case NT_PPC_TM_CFPR:
18533 return _("NT_PPC_TM_CFPR (ppc checkpointed floating point registers)");
18534 case NT_PPC_TM_CVMX:
18535 return _("NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)");
18536 case NT_PPC_TM_CVSX:
18537 return _("NT_PPC_TM_CVSX (ppc checkpointed VSX registers)");
18538 case NT_PPC_TM_SPR:
18539 return _("NT_PPC_TM_SPR (ppc TM special purpose registers)");
18540 case NT_PPC_TM_CTAR:
18541 return _("NT_PPC_TM_CTAR (ppc checkpointed TAR register)");
18542 case NT_PPC_TM_CPPR:
18543 return _("NT_PPC_TM_CPPR (ppc checkpointed PPR register)");
18544 case NT_PPC_TM_CDSCR:
18545 return _("NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)");
18546 case NT_386_TLS:
18547 return _("NT_386_TLS (x86 TLS information)");
18548 case NT_386_IOPERM:
18549 return _("NT_386_IOPERM (x86 I/O permissions)");
18550 case NT_X86_XSTATE:
18551 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
18552 case NT_X86_CET:
18553 return _("NT_X86_CET (x86 CET state)");
18554 case NT_S390_HIGH_GPRS:
18555 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
18556 case NT_S390_TIMER:
18557 return _("NT_S390_TIMER (s390 timer register)");
18558 case NT_S390_TODCMP:
18559 return _("NT_S390_TODCMP (s390 TOD comparator register)");
18560 case NT_S390_TODPREG:
18561 return _("NT_S390_TODPREG (s390 TOD programmable register)");
18562 case NT_S390_CTRS:
18563 return _("NT_S390_CTRS (s390 control registers)");
18564 case NT_S390_PREFIX:
18565 return _("NT_S390_PREFIX (s390 prefix register)");
18566 case NT_S390_LAST_BREAK:
18567 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
18568 case NT_S390_SYSTEM_CALL:
18569 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
18570 case NT_S390_TDB:
18571 return _("NT_S390_TDB (s390 transaction diagnostic block)");
18572 case NT_S390_VXRS_LOW:
18573 return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)");
18574 case NT_S390_VXRS_HIGH:
18575 return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)");
18576 case NT_S390_GS_CB:
18577 return _("NT_S390_GS_CB (s390 guarded-storage registers)");
18578 case NT_S390_GS_BC:
18579 return _("NT_S390_GS_BC (s390 guarded-storage broadcast control)");
18580 case NT_ARM_VFP:
18581 return _("NT_ARM_VFP (arm VFP registers)");
18582 case NT_ARM_TLS:
18583 return _("NT_ARM_TLS (AArch TLS registers)");
18584 case NT_ARM_HW_BREAK:
18585 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
18586 case NT_ARM_HW_WATCH:
18587 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
18588 case NT_ARC_V2:
18589 return _("NT_ARC_V2 (ARC HS accumulator/extra registers)");
18590 case NT_RISCV_CSR:
18591 return _("NT_RISCV_CSR (RISC-V control and status registers)");
18592 case NT_PSTATUS:
18593 return _("NT_PSTATUS (pstatus structure)");
18594 case NT_FPREGS:
18595 return _("NT_FPREGS (floating point registers)");
18596 case NT_PSINFO:
18597 return _("NT_PSINFO (psinfo structure)");
18598 case NT_LWPSTATUS:
18599 return _("NT_LWPSTATUS (lwpstatus_t structure)");
18600 case NT_LWPSINFO:
18601 return _("NT_LWPSINFO (lwpsinfo_t structure)");
18602 case NT_WIN32PSTATUS:
18603 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
18604 case NT_SIGINFO:
18605 return _("NT_SIGINFO (siginfo_t data)");
18606 case NT_FILE:
18607 return _("NT_FILE (mapped files)");
18608 default:
18609 break;
18610 }
18611 else
18612 switch (e_type)
18613 {
18614 case NT_VERSION:
18615 return _("NT_VERSION (version)");
18616 case NT_ARCH:
18617 return _("NT_ARCH (architecture)");
18618 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
18619 return _("OPEN");
18620 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
18621 return _("func");
18622 default:
18623 break;
18624 }
18625
18626 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
18627 return buff;
18628 }
18629
18630 static bool
18631 print_core_note (Elf_Internal_Note *pnote)
18632 {
18633 unsigned int addr_size = is_32bit_elf ? 4 : 8;
18634 bfd_vma count, page_size;
18635 unsigned char *descdata, *filenames, *descend;
18636
18637 if (pnote->type != NT_FILE)
18638 {
18639 if (do_wide)
18640 printf ("\n");
18641 return true;
18642 }
18643
18644 #ifndef BFD64
18645 if (!is_32bit_elf)
18646 {
18647 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
18648 /* Still "successful". */
18649 return true;
18650 }
18651 #endif
18652
18653 if (pnote->descsz < 2 * addr_size)
18654 {
18655 error (_(" Malformed note - too short for header\n"));
18656 return false;
18657 }
18658
18659 descdata = (unsigned char *) pnote->descdata;
18660 descend = descdata + pnote->descsz;
18661
18662 if (descdata[pnote->descsz - 1] != '\0')
18663 {
18664 error (_(" Malformed note - does not end with \\0\n"));
18665 return false;
18666 }
18667
18668 count = byte_get (descdata, addr_size);
18669 descdata += addr_size;
18670
18671 page_size = byte_get (descdata, addr_size);
18672 descdata += addr_size;
18673
18674 if (count > ((bfd_vma) -1 - 2 * addr_size) / (3 * addr_size)
18675 || pnote->descsz < 2 * addr_size + count * 3 * addr_size)
18676 {
18677 error (_(" Malformed note - too short for supplied file count\n"));
18678 return false;
18679 }
18680
18681 printf (_(" Page size: "));
18682 print_vma (page_size, DEC);
18683 printf ("\n");
18684
18685 printf (_(" %*s%*s%*s\n"),
18686 (int) (2 + 2 * addr_size), _("Start"),
18687 (int) (4 + 2 * addr_size), _("End"),
18688 (int) (4 + 2 * addr_size), _("Page Offset"));
18689 filenames = descdata + count * 3 * addr_size;
18690 while (count-- > 0)
18691 {
18692 bfd_vma start, end, file_ofs;
18693
18694 if (filenames == descend)
18695 {
18696 error (_(" Malformed note - filenames end too early\n"));
18697 return false;
18698 }
18699
18700 start = byte_get (descdata, addr_size);
18701 descdata += addr_size;
18702 end = byte_get (descdata, addr_size);
18703 descdata += addr_size;
18704 file_ofs = byte_get (descdata, addr_size);
18705 descdata += addr_size;
18706
18707 printf (" ");
18708 print_vma (start, FULL_HEX);
18709 printf (" ");
18710 print_vma (end, FULL_HEX);
18711 printf (" ");
18712 print_vma (file_ofs, FULL_HEX);
18713 printf ("\n %s\n", filenames);
18714
18715 filenames += 1 + strlen ((char *) filenames);
18716 }
18717
18718 return true;
18719 }
18720
18721 static const char *
18722 get_gnu_elf_note_type (unsigned e_type)
18723 {
18724 /* NB/ Keep this switch statement in sync with print_gnu_note (). */
18725 switch (e_type)
18726 {
18727 case NT_GNU_ABI_TAG:
18728 return _("NT_GNU_ABI_TAG (ABI version tag)");
18729 case NT_GNU_HWCAP:
18730 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
18731 case NT_GNU_BUILD_ID:
18732 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
18733 case NT_GNU_GOLD_VERSION:
18734 return _("NT_GNU_GOLD_VERSION (gold version)");
18735 case NT_GNU_PROPERTY_TYPE_0:
18736 return _("NT_GNU_PROPERTY_TYPE_0");
18737 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
18738 return _("NT_GNU_BUILD_ATTRIBUTE_OPEN");
18739 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
18740 return _("NT_GNU_BUILD_ATTRIBUTE_FUNC");
18741 default:
18742 {
18743 static char buff[64];
18744
18745 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
18746 return buff;
18747 }
18748 }
18749 }
18750
18751 static void
18752 decode_x86_compat_isa (unsigned int bitmask)
18753 {
18754 while (bitmask)
18755 {
18756 unsigned int bit = bitmask & (- bitmask);
18757
18758 bitmask &= ~ bit;
18759 switch (bit)
18760 {
18761 case GNU_PROPERTY_X86_COMPAT_ISA_1_486:
18762 printf ("i486");
18763 break;
18764 case GNU_PROPERTY_X86_COMPAT_ISA_1_586:
18765 printf ("586");
18766 break;
18767 case GNU_PROPERTY_X86_COMPAT_ISA_1_686:
18768 printf ("686");
18769 break;
18770 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE:
18771 printf ("SSE");
18772 break;
18773 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE2:
18774 printf ("SSE2");
18775 break;
18776 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE3:
18777 printf ("SSE3");
18778 break;
18779 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSSE3:
18780 printf ("SSSE3");
18781 break;
18782 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_1:
18783 printf ("SSE4_1");
18784 break;
18785 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_2:
18786 printf ("SSE4_2");
18787 break;
18788 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX:
18789 printf ("AVX");
18790 break;
18791 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX2:
18792 printf ("AVX2");
18793 break;
18794 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512F:
18795 printf ("AVX512F");
18796 break;
18797 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512CD:
18798 printf ("AVX512CD");
18799 break;
18800 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512ER:
18801 printf ("AVX512ER");
18802 break;
18803 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512PF:
18804 printf ("AVX512PF");
18805 break;
18806 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512VL:
18807 printf ("AVX512VL");
18808 break;
18809 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512DQ:
18810 printf ("AVX512DQ");
18811 break;
18812 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512BW:
18813 printf ("AVX512BW");
18814 break;
18815 default:
18816 printf (_("<unknown: %x>"), bit);
18817 break;
18818 }
18819 if (bitmask)
18820 printf (", ");
18821 }
18822 }
18823
18824 static void
18825 decode_x86_compat_2_isa (unsigned int bitmask)
18826 {
18827 if (!bitmask)
18828 {
18829 printf (_("<None>"));
18830 return;
18831 }
18832
18833 while (bitmask)
18834 {
18835 unsigned int bit = bitmask & (- bitmask);
18836
18837 bitmask &= ~ bit;
18838 switch (bit)
18839 {
18840 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_CMOV:
18841 printf ("CMOV");
18842 break;
18843 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE:
18844 printf ("SSE");
18845 break;
18846 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE2:
18847 printf ("SSE2");
18848 break;
18849 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE3:
18850 printf ("SSE3");
18851 break;
18852 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSSE3:
18853 printf ("SSSE3");
18854 break;
18855 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_1:
18856 printf ("SSE4_1");
18857 break;
18858 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_2:
18859 printf ("SSE4_2");
18860 break;
18861 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX:
18862 printf ("AVX");
18863 break;
18864 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX2:
18865 printf ("AVX2");
18866 break;
18867 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_FMA:
18868 printf ("FMA");
18869 break;
18870 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512F:
18871 printf ("AVX512F");
18872 break;
18873 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512CD:
18874 printf ("AVX512CD");
18875 break;
18876 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512ER:
18877 printf ("AVX512ER");
18878 break;
18879 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512PF:
18880 printf ("AVX512PF");
18881 break;
18882 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512VL:
18883 printf ("AVX512VL");
18884 break;
18885 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512DQ:
18886 printf ("AVX512DQ");
18887 break;
18888 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512BW:
18889 printf ("AVX512BW");
18890 break;
18891 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4FMAPS:
18892 printf ("AVX512_4FMAPS");
18893 break;
18894 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4VNNIW:
18895 printf ("AVX512_4VNNIW");
18896 break;
18897 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BITALG:
18898 printf ("AVX512_BITALG");
18899 break;
18900 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_IFMA:
18901 printf ("AVX512_IFMA");
18902 break;
18903 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI:
18904 printf ("AVX512_VBMI");
18905 break;
18906 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI2:
18907 printf ("AVX512_VBMI2");
18908 break;
18909 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VNNI:
18910 printf ("AVX512_VNNI");
18911 break;
18912 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BF16:
18913 printf ("AVX512_BF16");
18914 break;
18915 default:
18916 printf (_("<unknown: %x>"), bit);
18917 break;
18918 }
18919 if (bitmask)
18920 printf (", ");
18921 }
18922 }
18923
18924 static void
18925 decode_x86_isa (unsigned int bitmask)
18926 {
18927 while (bitmask)
18928 {
18929 unsigned int bit = bitmask & (- bitmask);
18930
18931 bitmask &= ~ bit;
18932 switch (bit)
18933 {
18934 case GNU_PROPERTY_X86_ISA_1_BASELINE:
18935 printf ("x86-64-baseline");
18936 break;
18937 case GNU_PROPERTY_X86_ISA_1_V2:
18938 printf ("x86-64-v2");
18939 break;
18940 case GNU_PROPERTY_X86_ISA_1_V3:
18941 printf ("x86-64-v3");
18942 break;
18943 case GNU_PROPERTY_X86_ISA_1_V4:
18944 printf ("x86-64-v4");
18945 break;
18946 default:
18947 printf (_("<unknown: %x>"), bit);
18948 break;
18949 }
18950 if (bitmask)
18951 printf (", ");
18952 }
18953 }
18954
18955 static void
18956 decode_x86_feature_1 (unsigned int bitmask)
18957 {
18958 if (!bitmask)
18959 {
18960 printf (_("<None>"));
18961 return;
18962 }
18963
18964 while (bitmask)
18965 {
18966 unsigned int bit = bitmask & (- bitmask);
18967
18968 bitmask &= ~ bit;
18969 switch (bit)
18970 {
18971 case GNU_PROPERTY_X86_FEATURE_1_IBT:
18972 printf ("IBT");
18973 break;
18974 case GNU_PROPERTY_X86_FEATURE_1_SHSTK:
18975 printf ("SHSTK");
18976 break;
18977 case GNU_PROPERTY_X86_FEATURE_1_LAM_U48:
18978 printf ("LAM_U48");
18979 break;
18980 case GNU_PROPERTY_X86_FEATURE_1_LAM_U57:
18981 printf ("LAM_U57");
18982 break;
18983 default:
18984 printf (_("<unknown: %x>"), bit);
18985 break;
18986 }
18987 if (bitmask)
18988 printf (", ");
18989 }
18990 }
18991
18992 static void
18993 decode_x86_feature_2 (unsigned int bitmask)
18994 {
18995 if (!bitmask)
18996 {
18997 printf (_("<None>"));
18998 return;
18999 }
19000
19001 while (bitmask)
19002 {
19003 unsigned int bit = bitmask & (- bitmask);
19004
19005 bitmask &= ~ bit;
19006 switch (bit)
19007 {
19008 case GNU_PROPERTY_X86_FEATURE_2_X86:
19009 printf ("x86");
19010 break;
19011 case GNU_PROPERTY_X86_FEATURE_2_X87:
19012 printf ("x87");
19013 break;
19014 case GNU_PROPERTY_X86_FEATURE_2_MMX:
19015 printf ("MMX");
19016 break;
19017 case GNU_PROPERTY_X86_FEATURE_2_XMM:
19018 printf ("XMM");
19019 break;
19020 case GNU_PROPERTY_X86_FEATURE_2_YMM:
19021 printf ("YMM");
19022 break;
19023 case GNU_PROPERTY_X86_FEATURE_2_ZMM:
19024 printf ("ZMM");
19025 break;
19026 case GNU_PROPERTY_X86_FEATURE_2_TMM:
19027 printf ("TMM");
19028 break;
19029 case GNU_PROPERTY_X86_FEATURE_2_MASK:
19030 printf ("MASK");
19031 break;
19032 case GNU_PROPERTY_X86_FEATURE_2_FXSR:
19033 printf ("FXSR");
19034 break;
19035 case GNU_PROPERTY_X86_FEATURE_2_XSAVE:
19036 printf ("XSAVE");
19037 break;
19038 case GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT:
19039 printf ("XSAVEOPT");
19040 break;
19041 case GNU_PROPERTY_X86_FEATURE_2_XSAVEC:
19042 printf ("XSAVEC");
19043 break;
19044 default:
19045 printf (_("<unknown: %x>"), bit);
19046 break;
19047 }
19048 if (bitmask)
19049 printf (", ");
19050 }
19051 }
19052
19053 static void
19054 decode_aarch64_feature_1_and (unsigned int bitmask)
19055 {
19056 while (bitmask)
19057 {
19058 unsigned int bit = bitmask & (- bitmask);
19059
19060 bitmask &= ~ bit;
19061 switch (bit)
19062 {
19063 case GNU_PROPERTY_AARCH64_FEATURE_1_BTI:
19064 printf ("BTI");
19065 break;
19066
19067 case GNU_PROPERTY_AARCH64_FEATURE_1_PAC:
19068 printf ("PAC");
19069 break;
19070
19071 default:
19072 printf (_("<unknown: %x>"), bit);
19073 break;
19074 }
19075 if (bitmask)
19076 printf (", ");
19077 }
19078 }
19079
19080 static void
19081 print_gnu_property_note (Filedata * filedata, Elf_Internal_Note * pnote)
19082 {
19083 unsigned char * ptr = (unsigned char *) pnote->descdata;
19084 unsigned char * ptr_end = ptr + pnote->descsz;
19085 unsigned int size = is_32bit_elf ? 4 : 8;
19086
19087 printf (_(" Properties: "));
19088
19089 if (pnote->descsz < 8 || (pnote->descsz % size) != 0)
19090 {
19091 printf (_("<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n"), pnote->descsz);
19092 return;
19093 }
19094
19095 while (ptr < ptr_end)
19096 {
19097 unsigned int j;
19098 unsigned int type;
19099 unsigned int datasz;
19100
19101 if ((size_t) (ptr_end - ptr) < 8)
19102 {
19103 printf (_("<corrupt descsz: %#lx>\n"), pnote->descsz);
19104 break;
19105 }
19106
19107 type = byte_get (ptr, 4);
19108 datasz = byte_get (ptr + 4, 4);
19109
19110 ptr += 8;
19111
19112 if (datasz > (size_t) (ptr_end - ptr))
19113 {
19114 printf (_("<corrupt type (%#x) datasz: %#x>\n"),
19115 type, datasz);
19116 break;
19117 }
19118
19119 if (type >= GNU_PROPERTY_LOPROC && type <= GNU_PROPERTY_HIPROC)
19120 {
19121 if (filedata->file_header.e_machine == EM_X86_64
19122 || filedata->file_header.e_machine == EM_IAMCU
19123 || filedata->file_header.e_machine == EM_386)
19124 {
19125 unsigned int bitmask;
19126
19127 if (datasz == 4)
19128 bitmask = byte_get (ptr, 4);
19129 else
19130 bitmask = 0;
19131
19132 switch (type)
19133 {
19134 case GNU_PROPERTY_X86_ISA_1_USED:
19135 if (datasz != 4)
19136 printf (_("x86 ISA used: <corrupt length: %#x> "),
19137 datasz);
19138 else
19139 {
19140 printf ("x86 ISA used: ");
19141 decode_x86_isa (bitmask);
19142 }
19143 goto next;
19144
19145 case GNU_PROPERTY_X86_ISA_1_NEEDED:
19146 if (datasz != 4)
19147 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19148 datasz);
19149 else
19150 {
19151 printf ("x86 ISA needed: ");
19152 decode_x86_isa (bitmask);
19153 }
19154 goto next;
19155
19156 case GNU_PROPERTY_X86_FEATURE_1_AND:
19157 if (datasz != 4)
19158 printf (_("x86 feature: <corrupt length: %#x> "),
19159 datasz);
19160 else
19161 {
19162 printf ("x86 feature: ");
19163 decode_x86_feature_1 (bitmask);
19164 }
19165 goto next;
19166
19167 case GNU_PROPERTY_X86_FEATURE_2_USED:
19168 if (datasz != 4)
19169 printf (_("x86 feature used: <corrupt length: %#x> "),
19170 datasz);
19171 else
19172 {
19173 printf ("x86 feature used: ");
19174 decode_x86_feature_2 (bitmask);
19175 }
19176 goto next;
19177
19178 case GNU_PROPERTY_X86_FEATURE_2_NEEDED:
19179 if (datasz != 4)
19180 printf (_("x86 feature needed: <corrupt length: %#x> "), datasz);
19181 else
19182 {
19183 printf ("x86 feature needed: ");
19184 decode_x86_feature_2 (bitmask);
19185 }
19186 goto next;
19187
19188 case GNU_PROPERTY_X86_COMPAT_ISA_1_USED:
19189 if (datasz != 4)
19190 printf (_("x86 ISA used: <corrupt length: %#x> "),
19191 datasz);
19192 else
19193 {
19194 printf ("x86 ISA used: ");
19195 decode_x86_compat_isa (bitmask);
19196 }
19197 goto next;
19198
19199 case GNU_PROPERTY_X86_COMPAT_ISA_1_NEEDED:
19200 if (datasz != 4)
19201 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19202 datasz);
19203 else
19204 {
19205 printf ("x86 ISA needed: ");
19206 decode_x86_compat_isa (bitmask);
19207 }
19208 goto next;
19209
19210 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_USED:
19211 if (datasz != 4)
19212 printf (_("x86 ISA used: <corrupt length: %#x> "),
19213 datasz);
19214 else
19215 {
19216 printf ("x86 ISA used: ");
19217 decode_x86_compat_2_isa (bitmask);
19218 }
19219 goto next;
19220
19221 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_NEEDED:
19222 if (datasz != 4)
19223 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19224 datasz);
19225 else
19226 {
19227 printf ("x86 ISA needed: ");
19228 decode_x86_compat_2_isa (bitmask);
19229 }
19230 goto next;
19231
19232 default:
19233 break;
19234 }
19235 }
19236 else if (filedata->file_header.e_machine == EM_AARCH64)
19237 {
19238 if (type == GNU_PROPERTY_AARCH64_FEATURE_1_AND)
19239 {
19240 printf ("AArch64 feature: ");
19241 if (datasz != 4)
19242 printf (_("<corrupt length: %#x> "), datasz);
19243 else
19244 decode_aarch64_feature_1_and (byte_get (ptr, 4));
19245 goto next;
19246 }
19247 }
19248 }
19249 else
19250 {
19251 switch (type)
19252 {
19253 case GNU_PROPERTY_STACK_SIZE:
19254 printf (_("stack size: "));
19255 if (datasz != size)
19256 printf (_("<corrupt length: %#x> "), datasz);
19257 else
19258 printf ("%#lx", (unsigned long) byte_get (ptr, size));
19259 goto next;
19260
19261 case GNU_PROPERTY_NO_COPY_ON_PROTECTED:
19262 printf ("no copy on protected ");
19263 if (datasz)
19264 printf (_("<corrupt length: %#x> "), datasz);
19265 goto next;
19266
19267 default:
19268 break;
19269 }
19270 }
19271
19272 if (type < GNU_PROPERTY_LOPROC)
19273 printf (_("<unknown type %#x data: "), type);
19274 else if (type < GNU_PROPERTY_LOUSER)
19275 printf (_("<processor-specific type %#x data: "), type);
19276 else
19277 printf (_("<application-specific type %#x data: "), type);
19278 for (j = 0; j < datasz; ++j)
19279 printf ("%02x ", ptr[j] & 0xff);
19280 printf (">");
19281
19282 next:
19283 ptr += ((datasz + (size - 1)) & ~ (size - 1));
19284 if (ptr == ptr_end)
19285 break;
19286
19287 if (do_wide)
19288 printf (", ");
19289 else
19290 printf ("\n\t");
19291 }
19292
19293 printf ("\n");
19294 }
19295
19296 static bool
19297 print_gnu_note (Filedata * filedata, Elf_Internal_Note *pnote)
19298 {
19299 /* NB/ Keep this switch statement in sync with get_gnu_elf_note_type (). */
19300 switch (pnote->type)
19301 {
19302 case NT_GNU_BUILD_ID:
19303 {
19304 unsigned long i;
19305
19306 printf (_(" Build ID: "));
19307 for (i = 0; i < pnote->descsz; ++i)
19308 printf ("%02x", pnote->descdata[i] & 0xff);
19309 printf ("\n");
19310 }
19311 break;
19312
19313 case NT_GNU_ABI_TAG:
19314 {
19315 unsigned long os, major, minor, subminor;
19316 const char *osname;
19317
19318 /* PR 17531: file: 030-599401-0.004. */
19319 if (pnote->descsz < 16)
19320 {
19321 printf (_(" <corrupt GNU_ABI_TAG>\n"));
19322 break;
19323 }
19324
19325 os = byte_get ((unsigned char *) pnote->descdata, 4);
19326 major = byte_get ((unsigned char *) pnote->descdata + 4, 4);
19327 minor = byte_get ((unsigned char *) pnote->descdata + 8, 4);
19328 subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4);
19329
19330 switch (os)
19331 {
19332 case GNU_ABI_TAG_LINUX:
19333 osname = "Linux";
19334 break;
19335 case GNU_ABI_TAG_HURD:
19336 osname = "Hurd";
19337 break;
19338 case GNU_ABI_TAG_SOLARIS:
19339 osname = "Solaris";
19340 break;
19341 case GNU_ABI_TAG_FREEBSD:
19342 osname = "FreeBSD";
19343 break;
19344 case GNU_ABI_TAG_NETBSD:
19345 osname = "NetBSD";
19346 break;
19347 case GNU_ABI_TAG_SYLLABLE:
19348 osname = "Syllable";
19349 break;
19350 case GNU_ABI_TAG_NACL:
19351 osname = "NaCl";
19352 break;
19353 default:
19354 osname = "Unknown";
19355 break;
19356 }
19357
19358 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname,
19359 major, minor, subminor);
19360 }
19361 break;
19362
19363 case NT_GNU_GOLD_VERSION:
19364 {
19365 unsigned long i;
19366
19367 printf (_(" Version: "));
19368 for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i)
19369 printf ("%c", pnote->descdata[i]);
19370 printf ("\n");
19371 }
19372 break;
19373
19374 case NT_GNU_HWCAP:
19375 {
19376 unsigned long num_entries, mask;
19377
19378 /* Hardware capabilities information. Word 0 is the number of entries.
19379 Word 1 is a bitmask of enabled entries. The rest of the descriptor
19380 is a series of entries, where each entry is a single byte followed
19381 by a nul terminated string. The byte gives the bit number to test
19382 if enabled in the bitmask. */
19383 printf (_(" Hardware Capabilities: "));
19384 if (pnote->descsz < 8)
19385 {
19386 error (_("<corrupt GNU_HWCAP>\n"));
19387 return false;
19388 }
19389 num_entries = byte_get ((unsigned char *) pnote->descdata, 4);
19390 mask = byte_get ((unsigned char *) pnote->descdata + 4, 4);
19391 printf (_("num entries: %ld, enabled mask: %lx\n"), num_entries, mask);
19392 /* FIXME: Add code to display the entries... */
19393 }
19394 break;
19395
19396 case NT_GNU_PROPERTY_TYPE_0:
19397 print_gnu_property_note (filedata, pnote);
19398 break;
19399
19400 default:
19401 /* Handle unrecognised types. An error message should have already been
19402 created by get_gnu_elf_note_type(), so all that we need to do is to
19403 display the data. */
19404 {
19405 unsigned long i;
19406
19407 printf (_(" Description data: "));
19408 for (i = 0; i < pnote->descsz; ++i)
19409 printf ("%02x ", pnote->descdata[i] & 0xff);
19410 printf ("\n");
19411 }
19412 break;
19413 }
19414
19415 return true;
19416 }
19417
19418 static const char *
19419 get_v850_elf_note_type (enum v850_notes n_type)
19420 {
19421 static char buff[64];
19422
19423 switch (n_type)
19424 {
19425 case V850_NOTE_ALIGNMENT: return _("Alignment of 8-byte objects");
19426 case V850_NOTE_DATA_SIZE: return _("Sizeof double and long double");
19427 case V850_NOTE_FPU_INFO: return _("Type of FPU support needed");
19428 case V850_NOTE_SIMD_INFO: return _("Use of SIMD instructions");
19429 case V850_NOTE_CACHE_INFO: return _("Use of cache");
19430 case V850_NOTE_MMU_INFO: return _("Use of MMU");
19431 default:
19432 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), n_type);
19433 return buff;
19434 }
19435 }
19436
19437 static bool
19438 print_v850_note (Elf_Internal_Note * pnote)
19439 {
19440 unsigned int val;
19441
19442 if (pnote->descsz != 4)
19443 return false;
19444
19445 val = byte_get ((unsigned char *) pnote->descdata, pnote->descsz);
19446
19447 if (val == 0)
19448 {
19449 printf (_("not set\n"));
19450 return true;
19451 }
19452
19453 switch (pnote->type)
19454 {
19455 case V850_NOTE_ALIGNMENT:
19456 switch (val)
19457 {
19458 case EF_RH850_DATA_ALIGN4: printf (_("4-byte\n")); return true;
19459 case EF_RH850_DATA_ALIGN8: printf (_("8-byte\n")); return true;
19460 }
19461 break;
19462
19463 case V850_NOTE_DATA_SIZE:
19464 switch (val)
19465 {
19466 case EF_RH850_DOUBLE32: printf (_("4-bytes\n")); return true;
19467 case EF_RH850_DOUBLE64: printf (_("8-bytes\n")); return true;
19468 }
19469 break;
19470
19471 case V850_NOTE_FPU_INFO:
19472 switch (val)
19473 {
19474 case EF_RH850_FPU20: printf (_("FPU-2.0\n")); return true;
19475 case EF_RH850_FPU30: printf (_("FPU-3.0\n")); return true;
19476 }
19477 break;
19478
19479 case V850_NOTE_MMU_INFO:
19480 case V850_NOTE_CACHE_INFO:
19481 case V850_NOTE_SIMD_INFO:
19482 if (val == EF_RH850_SIMD)
19483 {
19484 printf (_("yes\n"));
19485 return true;
19486 }
19487 break;
19488
19489 default:
19490 /* An 'unknown note type' message will already have been displayed. */
19491 break;
19492 }
19493
19494 printf (_("unknown value: %x\n"), val);
19495 return false;
19496 }
19497
19498 static bool
19499 process_netbsd_elf_note (Elf_Internal_Note * pnote)
19500 {
19501 unsigned int version;
19502
19503 switch (pnote->type)
19504 {
19505 case NT_NETBSD_IDENT:
19506 if (pnote->descsz < 1)
19507 break;
19508 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
19509 if ((version / 10000) % 100)
19510 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote->descsz,
19511 version, version / 100000000, (version / 1000000) % 100,
19512 (version / 10000) % 100 > 26 ? "Z" : "",
19513 'A' + (version / 10000) % 26);
19514 else
19515 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote->descsz,
19516 version, version / 100000000, (version / 1000000) % 100,
19517 (version / 100) % 100);
19518 return true;
19519
19520 case NT_NETBSD_MARCH:
19521 printf (" NetBSD\t\t0x%08lx\tMARCH <%s>\n", pnote->descsz,
19522 pnote->descdata);
19523 return true;
19524
19525 case NT_NETBSD_PAX:
19526 if (pnote->descsz < 1)
19527 break;
19528 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
19529 printf (" NetBSD\t\t0x%08lx\tPaX <%s%s%s%s%s%s>\n", pnote->descsz,
19530 ((version & NT_NETBSD_PAX_MPROTECT) ? "+mprotect" : ""),
19531 ((version & NT_NETBSD_PAX_NOMPROTECT) ? "-mprotect" : ""),
19532 ((version & NT_NETBSD_PAX_GUARD) ? "+guard" : ""),
19533 ((version & NT_NETBSD_PAX_NOGUARD) ? "-guard" : ""),
19534 ((version & NT_NETBSD_PAX_ASLR) ? "+ASLR" : ""),
19535 ((version & NT_NETBSD_PAX_NOASLR) ? "-ASLR" : ""));
19536 return true;
19537 }
19538
19539 printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n",
19540 pnote->descsz, pnote->type);
19541 return false;
19542 }
19543
19544 static const char *
19545 get_freebsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
19546 {
19547 switch (e_type)
19548 {
19549 case NT_FREEBSD_THRMISC:
19550 return _("NT_THRMISC (thrmisc structure)");
19551 case NT_FREEBSD_PROCSTAT_PROC:
19552 return _("NT_PROCSTAT_PROC (proc data)");
19553 case NT_FREEBSD_PROCSTAT_FILES:
19554 return _("NT_PROCSTAT_FILES (files data)");
19555 case NT_FREEBSD_PROCSTAT_VMMAP:
19556 return _("NT_PROCSTAT_VMMAP (vmmap data)");
19557 case NT_FREEBSD_PROCSTAT_GROUPS:
19558 return _("NT_PROCSTAT_GROUPS (groups data)");
19559 case NT_FREEBSD_PROCSTAT_UMASK:
19560 return _("NT_PROCSTAT_UMASK (umask data)");
19561 case NT_FREEBSD_PROCSTAT_RLIMIT:
19562 return _("NT_PROCSTAT_RLIMIT (rlimit data)");
19563 case NT_FREEBSD_PROCSTAT_OSREL:
19564 return _("NT_PROCSTAT_OSREL (osreldate data)");
19565 case NT_FREEBSD_PROCSTAT_PSSTRINGS:
19566 return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)");
19567 case NT_FREEBSD_PROCSTAT_AUXV:
19568 return _("NT_PROCSTAT_AUXV (auxv data)");
19569 case NT_FREEBSD_PTLWPINFO:
19570 return _("NT_PTLWPINFO (ptrace_lwpinfo structure)");
19571 }
19572 return get_note_type (filedata, e_type);
19573 }
19574
19575 static const char *
19576 get_netbsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
19577 {
19578 static char buff[64];
19579
19580 switch (e_type)
19581 {
19582 case NT_NETBSDCORE_PROCINFO:
19583 /* NetBSD core "procinfo" structure. */
19584 return _("NetBSD procinfo structure");
19585
19586 case NT_NETBSDCORE_AUXV:
19587 return _("NetBSD ELF auxiliary vector data");
19588
19589 case NT_NETBSDCORE_LWPSTATUS:
19590 return _("PT_LWPSTATUS (ptrace_lwpstatus structure)");
19591
19592 default:
19593 /* As of Jan 2020 there are no other machine-independent notes
19594 defined for NetBSD core files. If the note type is less
19595 than the start of the machine-dependent note types, we don't
19596 understand it. */
19597
19598 if (e_type < NT_NETBSDCORE_FIRSTMACH)
19599 {
19600 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19601 return buff;
19602 }
19603 break;
19604 }
19605
19606 switch (filedata->file_header.e_machine)
19607 {
19608 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
19609 and PT_GETFPREGS == mach+2. */
19610
19611 case EM_OLD_ALPHA:
19612 case EM_ALPHA:
19613 case EM_SPARC:
19614 case EM_SPARC32PLUS:
19615 case EM_SPARCV9:
19616 switch (e_type)
19617 {
19618 case NT_NETBSDCORE_FIRSTMACH + 0:
19619 return _("PT_GETREGS (reg structure)");
19620 case NT_NETBSDCORE_FIRSTMACH + 2:
19621 return _("PT_GETFPREGS (fpreg structure)");
19622 default:
19623 break;
19624 }
19625 break;
19626
19627 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
19628 There's also old PT___GETREGS40 == mach + 1 for old reg
19629 structure which lacks GBR. */
19630 case EM_SH:
19631 switch (e_type)
19632 {
19633 case NT_NETBSDCORE_FIRSTMACH + 1:
19634 return _("PT___GETREGS40 (old reg structure)");
19635 case NT_NETBSDCORE_FIRSTMACH + 3:
19636 return _("PT_GETREGS (reg structure)");
19637 case NT_NETBSDCORE_FIRSTMACH + 5:
19638 return _("PT_GETFPREGS (fpreg structure)");
19639 default:
19640 break;
19641 }
19642 break;
19643
19644 /* On all other arch's, PT_GETREGS == mach+1 and
19645 PT_GETFPREGS == mach+3. */
19646 default:
19647 switch (e_type)
19648 {
19649 case NT_NETBSDCORE_FIRSTMACH + 1:
19650 return _("PT_GETREGS (reg structure)");
19651 case NT_NETBSDCORE_FIRSTMACH + 3:
19652 return _("PT_GETFPREGS (fpreg structure)");
19653 default:
19654 break;
19655 }
19656 }
19657
19658 snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d",
19659 e_type - NT_NETBSDCORE_FIRSTMACH);
19660 return buff;
19661 }
19662
19663 static const char *
19664 get_stapsdt_note_type (unsigned e_type)
19665 {
19666 static char buff[64];
19667
19668 switch (e_type)
19669 {
19670 case NT_STAPSDT:
19671 return _("NT_STAPSDT (SystemTap probe descriptors)");
19672
19673 default:
19674 break;
19675 }
19676
19677 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19678 return buff;
19679 }
19680
19681 static bool
19682 print_stapsdt_note (Elf_Internal_Note *pnote)
19683 {
19684 size_t len, maxlen;
19685 unsigned long addr_size = is_32bit_elf ? 4 : 8;
19686 char *data = pnote->descdata;
19687 char *data_end = pnote->descdata + pnote->descsz;
19688 bfd_vma pc, base_addr, semaphore;
19689 char *provider, *probe, *arg_fmt;
19690
19691 if (pnote->descsz < (addr_size * 3))
19692 goto stapdt_note_too_small;
19693
19694 pc = byte_get ((unsigned char *) data, addr_size);
19695 data += addr_size;
19696
19697 base_addr = byte_get ((unsigned char *) data, addr_size);
19698 data += addr_size;
19699
19700 semaphore = byte_get ((unsigned char *) data, addr_size);
19701 data += addr_size;
19702
19703 if (data >= data_end)
19704 goto stapdt_note_too_small;
19705 maxlen = data_end - data;
19706 len = strnlen (data, maxlen);
19707 if (len < maxlen)
19708 {
19709 provider = data;
19710 data += len + 1;
19711 }
19712 else
19713 goto stapdt_note_too_small;
19714
19715 if (data >= data_end)
19716 goto stapdt_note_too_small;
19717 maxlen = data_end - data;
19718 len = strnlen (data, maxlen);
19719 if (len < maxlen)
19720 {
19721 probe = data;
19722 data += len + 1;
19723 }
19724 else
19725 goto stapdt_note_too_small;
19726
19727 if (data >= data_end)
19728 goto stapdt_note_too_small;
19729 maxlen = data_end - data;
19730 len = strnlen (data, maxlen);
19731 if (len < maxlen)
19732 {
19733 arg_fmt = data;
19734 data += len + 1;
19735 }
19736 else
19737 goto stapdt_note_too_small;
19738
19739 printf (_(" Provider: %s\n"), provider);
19740 printf (_(" Name: %s\n"), probe);
19741 printf (_(" Location: "));
19742 print_vma (pc, FULL_HEX);
19743 printf (_(", Base: "));
19744 print_vma (base_addr, FULL_HEX);
19745 printf (_(", Semaphore: "));
19746 print_vma (semaphore, FULL_HEX);
19747 printf ("\n");
19748 printf (_(" Arguments: %s\n"), arg_fmt);
19749
19750 return data == data_end;
19751
19752 stapdt_note_too_small:
19753 printf (_(" <corrupt - note is too small>\n"));
19754 error (_("corrupt stapdt note - the data size is too small\n"));
19755 return false;
19756 }
19757
19758 static const char *
19759 get_ia64_vms_note_type (unsigned e_type)
19760 {
19761 static char buff[64];
19762
19763 switch (e_type)
19764 {
19765 case NT_VMS_MHD:
19766 return _("NT_VMS_MHD (module header)");
19767 case NT_VMS_LNM:
19768 return _("NT_VMS_LNM (language name)");
19769 case NT_VMS_SRC:
19770 return _("NT_VMS_SRC (source files)");
19771 case NT_VMS_TITLE:
19772 return "NT_VMS_TITLE";
19773 case NT_VMS_EIDC:
19774 return _("NT_VMS_EIDC (consistency check)");
19775 case NT_VMS_FPMODE:
19776 return _("NT_VMS_FPMODE (FP mode)");
19777 case NT_VMS_LINKTIME:
19778 return "NT_VMS_LINKTIME";
19779 case NT_VMS_IMGNAM:
19780 return _("NT_VMS_IMGNAM (image name)");
19781 case NT_VMS_IMGID:
19782 return _("NT_VMS_IMGID (image id)");
19783 case NT_VMS_LINKID:
19784 return _("NT_VMS_LINKID (link id)");
19785 case NT_VMS_IMGBID:
19786 return _("NT_VMS_IMGBID (build id)");
19787 case NT_VMS_GSTNAM:
19788 return _("NT_VMS_GSTNAM (sym table name)");
19789 case NT_VMS_ORIG_DYN:
19790 return "NT_VMS_ORIG_DYN";
19791 case NT_VMS_PATCHTIME:
19792 return "NT_VMS_PATCHTIME";
19793 default:
19794 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19795 return buff;
19796 }
19797 }
19798
19799 static bool
19800 print_ia64_vms_note (Elf_Internal_Note * pnote)
19801 {
19802 int maxlen = pnote->descsz;
19803
19804 if (maxlen < 2 || (unsigned long) maxlen != pnote->descsz)
19805 goto desc_size_fail;
19806
19807 switch (pnote->type)
19808 {
19809 case NT_VMS_MHD:
19810 if (maxlen <= 36)
19811 goto desc_size_fail;
19812
19813 int l = (int) strnlen (pnote->descdata + 34, maxlen - 34);
19814
19815 printf (_(" Creation date : %.17s\n"), pnote->descdata);
19816 printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17);
19817 if (l + 34 < maxlen)
19818 {
19819 printf (_(" Module name : %s\n"), pnote->descdata + 34);
19820 if (l + 35 < maxlen)
19821 printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1);
19822 else
19823 printf (_(" Module version : <missing>\n"));
19824 }
19825 else
19826 {
19827 printf (_(" Module name : <missing>\n"));
19828 printf (_(" Module version : <missing>\n"));
19829 }
19830 break;
19831
19832 case NT_VMS_LNM:
19833 printf (_(" Language: %.*s\n"), maxlen, pnote->descdata);
19834 break;
19835
19836 #ifdef BFD64
19837 case NT_VMS_FPMODE:
19838 printf (_(" Floating Point mode: "));
19839 if (maxlen < 8)
19840 goto desc_size_fail;
19841 /* FIXME: Generate an error if descsz > 8 ? */
19842
19843 printf ("0x%016" BFD_VMA_FMT "x\n",
19844 (bfd_vma) byte_get ((unsigned char *)pnote->descdata, 8));
19845 break;
19846
19847 case NT_VMS_LINKTIME:
19848 printf (_(" Link time: "));
19849 if (maxlen < 8)
19850 goto desc_size_fail;
19851 /* FIXME: Generate an error if descsz > 8 ? */
19852
19853 print_vms_time
19854 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
19855 printf ("\n");
19856 break;
19857
19858 case NT_VMS_PATCHTIME:
19859 printf (_(" Patch time: "));
19860 if (maxlen < 8)
19861 goto desc_size_fail;
19862 /* FIXME: Generate an error if descsz > 8 ? */
19863
19864 print_vms_time
19865 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
19866 printf ("\n");
19867 break;
19868
19869 case NT_VMS_ORIG_DYN:
19870 if (maxlen < 34)
19871 goto desc_size_fail;
19872
19873 printf (_(" Major id: %u, minor id: %u\n"),
19874 (unsigned) byte_get ((unsigned char *)pnote->descdata, 4),
19875 (unsigned) byte_get ((unsigned char *)pnote->descdata + 4, 4));
19876 printf (_(" Last modified : "));
19877 print_vms_time
19878 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata + 8, 8));
19879 printf (_("\n Link flags : "));
19880 printf ("0x%016" BFD_VMA_FMT "x\n",
19881 (bfd_vma) byte_get ((unsigned char *)pnote->descdata + 16, 8));
19882 printf (_(" Header flags: 0x%08x\n"),
19883 (unsigned) byte_get ((unsigned char *)pnote->descdata + 24, 4));
19884 printf (_(" Image id : %.*s\n"), maxlen - 32, pnote->descdata + 32);
19885 break;
19886 #endif
19887
19888 case NT_VMS_IMGNAM:
19889 printf (_(" Image name: %.*s\n"), maxlen, pnote->descdata);
19890 break;
19891
19892 case NT_VMS_GSTNAM:
19893 printf (_(" Global symbol table name: %.*s\n"), maxlen, pnote->descdata);
19894 break;
19895
19896 case NT_VMS_IMGID:
19897 printf (_(" Image id: %.*s\n"), maxlen, pnote->descdata);
19898 break;
19899
19900 case NT_VMS_LINKID:
19901 printf (_(" Linker id: %.*s\n"), maxlen, pnote->descdata);
19902 break;
19903
19904 default:
19905 return false;
19906 }
19907
19908 return true;
19909
19910 desc_size_fail:
19911 printf (_(" <corrupt - data size is too small>\n"));
19912 error (_("corrupt IA64 note: data size is too small\n"));
19913 return false;
19914 }
19915
19916 struct build_attr_cache {
19917 Filedata *filedata;
19918 char *strtab;
19919 unsigned long strtablen;
19920 Elf_Internal_Sym *symtab;
19921 unsigned long nsyms;
19922 } ba_cache;
19923
19924 /* Find the symbol associated with a build attribute that is attached
19925 to address OFFSET. If PNAME is non-NULL then store the name of
19926 the symbol (if found) in the provided pointer, Returns NULL if a
19927 symbol could not be found. */
19928
19929 static Elf_Internal_Sym *
19930 get_symbol_for_build_attribute (Filedata *filedata,
19931 unsigned long offset,
19932 bool is_open_attr,
19933 const char **pname)
19934 {
19935 Elf_Internal_Sym *saved_sym = NULL;
19936 Elf_Internal_Sym *sym;
19937
19938 if (filedata->section_headers != NULL
19939 && (ba_cache.filedata == NULL || filedata != ba_cache.filedata))
19940 {
19941 Elf_Internal_Shdr * symsec;
19942
19943 free (ba_cache.strtab);
19944 ba_cache.strtab = NULL;
19945 free (ba_cache.symtab);
19946 ba_cache.symtab = NULL;
19947
19948 /* Load the symbol and string sections. */
19949 for (symsec = filedata->section_headers;
19950 symsec < filedata->section_headers + filedata->file_header.e_shnum;
19951 symsec ++)
19952 {
19953 if (symsec->sh_type == SHT_SYMTAB
19954 && get_symtab (filedata, symsec,
19955 &ba_cache.symtab, &ba_cache.nsyms,
19956 &ba_cache.strtab, &ba_cache.strtablen))
19957 break;
19958 }
19959 ba_cache.filedata = filedata;
19960 }
19961
19962 if (ba_cache.symtab == NULL)
19963 return NULL;
19964
19965 /* Find a symbol whose value matches offset. */
19966 for (sym = ba_cache.symtab; sym < ba_cache.symtab + ba_cache.nsyms; sym ++)
19967 if (sym->st_value == offset)
19968 {
19969 if (sym->st_name >= ba_cache.strtablen)
19970 /* Huh ? This should not happen. */
19971 continue;
19972
19973 if (ba_cache.strtab[sym->st_name] == 0)
19974 continue;
19975
19976 /* The AArch64 and ARM architectures define mapping symbols
19977 (eg $d, $x, $t) which we want to ignore. */
19978 if (ba_cache.strtab[sym->st_name] == '$'
19979 && ba_cache.strtab[sym->st_name + 1] != 0
19980 && ba_cache.strtab[sym->st_name + 2] == 0)
19981 continue;
19982
19983 if (is_open_attr)
19984 {
19985 /* For OPEN attributes we prefer GLOBAL over LOCAL symbols
19986 and FILE or OBJECT symbols over NOTYPE symbols. We skip
19987 FUNC symbols entirely. */
19988 switch (ELF_ST_TYPE (sym->st_info))
19989 {
19990 case STT_OBJECT:
19991 case STT_FILE:
19992 saved_sym = sym;
19993 if (sym->st_size)
19994 {
19995 /* If the symbol has a size associated
19996 with it then we can stop searching. */
19997 sym = ba_cache.symtab + ba_cache.nsyms;
19998 }
19999 continue;
20000
20001 case STT_FUNC:
20002 /* Ignore function symbols. */
20003 continue;
20004
20005 default:
20006 break;
20007 }
20008
20009 switch (ELF_ST_BIND (sym->st_info))
20010 {
20011 case STB_GLOBAL:
20012 if (saved_sym == NULL
20013 || ELF_ST_TYPE (saved_sym->st_info) != STT_OBJECT)
20014 saved_sym = sym;
20015 break;
20016
20017 case STB_LOCAL:
20018 if (saved_sym == NULL)
20019 saved_sym = sym;
20020 break;
20021
20022 default:
20023 break;
20024 }
20025 }
20026 else
20027 {
20028 if (ELF_ST_TYPE (sym->st_info) != STT_FUNC)
20029 continue;
20030
20031 saved_sym = sym;
20032 break;
20033 }
20034 }
20035
20036 if (saved_sym && pname)
20037 * pname = ba_cache.strtab + saved_sym->st_name;
20038
20039 return saved_sym;
20040 }
20041
20042 /* Returns true iff addr1 and addr2 are in the same section. */
20043
20044 static bool
20045 same_section (Filedata * filedata, unsigned long addr1, unsigned long addr2)
20046 {
20047 Elf_Internal_Shdr * a1;
20048 Elf_Internal_Shdr * a2;
20049
20050 a1 = find_section_by_address (filedata, addr1);
20051 a2 = find_section_by_address (filedata, addr2);
20052
20053 return a1 == a2 && a1 != NULL;
20054 }
20055
20056 static bool
20057 print_gnu_build_attribute_description (Elf_Internal_Note * pnote,
20058 Filedata * filedata)
20059 {
20060 static unsigned long global_offset = 0;
20061 static unsigned long global_end = 0;
20062 static unsigned long func_offset = 0;
20063 static unsigned long func_end = 0;
20064
20065 Elf_Internal_Sym *sym;
20066 const char *name;
20067 unsigned long start;
20068 unsigned long end;
20069 bool is_open_attr = pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN;
20070
20071 switch (pnote->descsz)
20072 {
20073 case 0:
20074 /* A zero-length description means that the range of
20075 the previous note of the same type should be used. */
20076 if (is_open_attr)
20077 {
20078 if (global_end > global_offset)
20079 printf (_(" Applies to region from %#lx to %#lx\n"),
20080 global_offset, global_end);
20081 else
20082 printf (_(" Applies to region from %#lx\n"), global_offset);
20083 }
20084 else
20085 {
20086 if (func_end > func_offset)
20087 printf (_(" Applies to region from %#lx to %#lx\n"), func_offset, func_end);
20088 else
20089 printf (_(" Applies to region from %#lx\n"), func_offset);
20090 }
20091 return true;
20092
20093 case 4:
20094 start = byte_get ((unsigned char *) pnote->descdata, 4);
20095 end = 0;
20096 break;
20097
20098 case 8:
20099 start = byte_get ((unsigned char *) pnote->descdata, 4);
20100 end = byte_get ((unsigned char *) pnote->descdata + 4, 4);
20101 break;
20102
20103 case 16:
20104 start = byte_get ((unsigned char *) pnote->descdata, 8);
20105 end = byte_get ((unsigned char *) pnote->descdata + 8, 8);
20106 break;
20107
20108 default:
20109 error (_(" <invalid description size: %lx>\n"), pnote->descsz);
20110 printf (_(" <invalid descsz>"));
20111 return false;
20112 }
20113
20114 name = NULL;
20115 sym = get_symbol_for_build_attribute (filedata, start, is_open_attr, & name);
20116 /* As of version 5 of the annobin plugin, filename symbols are biased by 2
20117 in order to avoid them being confused with the start address of the
20118 first function in the file... */
20119 if (sym == NULL && is_open_attr)
20120 sym = get_symbol_for_build_attribute (filedata, start + 2, is_open_attr,
20121 & name);
20122
20123 if (end == 0 && sym != NULL && sym->st_size > 0)
20124 end = start + sym->st_size;
20125
20126 if (is_open_attr)
20127 {
20128 /* FIXME: Need to properly allow for section alignment.
20129 16 is just the alignment used on x86_64. */
20130 if (global_end > 0
20131 && start > BFD_ALIGN (global_end, 16)
20132 /* Build notes are not guaranteed to be organised in order of
20133 increasing address, but we should find the all of the notes
20134 for one section in the same place. */
20135 && same_section (filedata, start, global_end))
20136 warn (_("Gap in build notes detected from %#lx to %#lx\n"),
20137 global_end + 1, start - 1);
20138
20139 printf (_(" Applies to region from %#lx"), start);
20140 global_offset = start;
20141
20142 if (end)
20143 {
20144 printf (_(" to %#lx"), end);
20145 global_end = end;
20146 }
20147 }
20148 else
20149 {
20150 printf (_(" Applies to region from %#lx"), start);
20151 func_offset = start;
20152
20153 if (end)
20154 {
20155 printf (_(" to %#lx"), end);
20156 func_end = end;
20157 }
20158 }
20159
20160 if (sym && name)
20161 printf (_(" (%s)"), name);
20162
20163 printf ("\n");
20164 return true;
20165 }
20166
20167 static bool
20168 print_gnu_build_attribute_name (Elf_Internal_Note * pnote)
20169 {
20170 static const char string_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_STRING, 0 };
20171 static const char number_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC, 0 };
20172 static const char bool_expected [3] = { GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE, GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE, 0 };
20173 char name_type;
20174 char name_attribute;
20175 const char * expected_types;
20176 const char * name = pnote->namedata;
20177 const char * text;
20178 signed int left;
20179
20180 if (name == NULL || pnote->namesz < 2)
20181 {
20182 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
20183 print_symbol (-20, _(" <corrupt name>"));
20184 return false;
20185 }
20186
20187 if (do_wide)
20188 left = 28;
20189 else
20190 left = 20;
20191
20192 /* Version 2 of the spec adds a "GA" prefix to the name field. */
20193 if (name[0] == 'G' && name[1] == 'A')
20194 {
20195 if (pnote->namesz < 4)
20196 {
20197 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
20198 print_symbol (-20, _(" <corrupt name>"));
20199 return false;
20200 }
20201
20202 printf ("GA");
20203 name += 2;
20204 left -= 2;
20205 }
20206
20207 switch ((name_type = * name))
20208 {
20209 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
20210 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
20211 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
20212 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
20213 printf ("%c", * name);
20214 left --;
20215 break;
20216 default:
20217 error (_("unrecognised attribute type in name field: %d\n"), name_type);
20218 print_symbol (-20, _("<unknown name type>"));
20219 return false;
20220 }
20221
20222 ++ name;
20223 text = NULL;
20224
20225 switch ((name_attribute = * name))
20226 {
20227 case GNU_BUILD_ATTRIBUTE_VERSION:
20228 text = _("<version>");
20229 expected_types = string_expected;
20230 ++ name;
20231 break;
20232 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
20233 text = _("<stack prot>");
20234 expected_types = "!+*";
20235 ++ name;
20236 break;
20237 case GNU_BUILD_ATTRIBUTE_RELRO:
20238 text = _("<relro>");
20239 expected_types = bool_expected;
20240 ++ name;
20241 break;
20242 case GNU_BUILD_ATTRIBUTE_STACK_SIZE:
20243 text = _("<stack size>");
20244 expected_types = number_expected;
20245 ++ name;
20246 break;
20247 case GNU_BUILD_ATTRIBUTE_TOOL:
20248 text = _("<tool>");
20249 expected_types = string_expected;
20250 ++ name;
20251 break;
20252 case GNU_BUILD_ATTRIBUTE_ABI:
20253 text = _("<ABI>");
20254 expected_types = "$*";
20255 ++ name;
20256 break;
20257 case GNU_BUILD_ATTRIBUTE_PIC:
20258 text = _("<PIC>");
20259 expected_types = number_expected;
20260 ++ name;
20261 break;
20262 case GNU_BUILD_ATTRIBUTE_SHORT_ENUM:
20263 text = _("<short enum>");
20264 expected_types = bool_expected;
20265 ++ name;
20266 break;
20267 default:
20268 if (ISPRINT (* name))
20269 {
20270 int len = strnlen (name, pnote->namesz - (name - pnote->namedata)) + 1;
20271
20272 if (len > left && ! do_wide)
20273 len = left;
20274 printf ("%.*s:", len, name);
20275 left -= len;
20276 name += len;
20277 }
20278 else
20279 {
20280 static char tmpbuf [128];
20281
20282 error (_("unrecognised byte in name field: %d\n"), * name);
20283 sprintf (tmpbuf, _("<unknown:_%d>"), * name);
20284 text = tmpbuf;
20285 name ++;
20286 }
20287 expected_types = "*$!+";
20288 break;
20289 }
20290
20291 if (text)
20292 left -= printf ("%s", text);
20293
20294 if (strchr (expected_types, name_type) == NULL)
20295 warn (_("attribute does not have an expected type (%c)\n"), name_type);
20296
20297 if ((unsigned long)(name - pnote->namedata) > pnote->namesz)
20298 {
20299 error (_("corrupt name field: namesz: %lu but parsing gets to %ld\n"),
20300 (unsigned long) pnote->namesz,
20301 (long) (name - pnote->namedata));
20302 return false;
20303 }
20304
20305 if (left < 1 && ! do_wide)
20306 return true;
20307
20308 switch (name_type)
20309 {
20310 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
20311 {
20312 unsigned int bytes;
20313 unsigned long long val = 0;
20314 unsigned int shift = 0;
20315 char * decoded = NULL;
20316
20317 bytes = pnote->namesz - (name - pnote->namedata);
20318 if (bytes > 0)
20319 /* The -1 is because the name field is always 0 terminated, and we
20320 want to be able to ensure that the shift in the while loop below
20321 will not overflow. */
20322 -- bytes;
20323
20324 if (bytes > sizeof (val))
20325 {
20326 error (_("corrupt numeric name field: too many bytes in the value: %x\n"),
20327 bytes);
20328 bytes = sizeof (val);
20329 }
20330 /* We do not bother to warn if bytes == 0 as this can
20331 happen with some early versions of the gcc plugin. */
20332
20333 while (bytes --)
20334 {
20335 unsigned long long byte = *name++ & 0xff;
20336
20337 val |= byte << shift;
20338 shift += 8;
20339 }
20340
20341 switch (name_attribute)
20342 {
20343 case GNU_BUILD_ATTRIBUTE_PIC:
20344 switch (val)
20345 {
20346 case 0: decoded = "static"; break;
20347 case 1: decoded = "pic"; break;
20348 case 2: decoded = "PIC"; break;
20349 case 3: decoded = "pie"; break;
20350 case 4: decoded = "PIE"; break;
20351 default: break;
20352 }
20353 break;
20354 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
20355 switch (val)
20356 {
20357 /* Based upon the SPCT_FLAG_xxx enum values in gcc/cfgexpand.c. */
20358 case 0: decoded = "off"; break;
20359 case 1: decoded = "on"; break;
20360 case 2: decoded = "all"; break;
20361 case 3: decoded = "strong"; break;
20362 case 4: decoded = "explicit"; break;
20363 default: break;
20364 }
20365 break;
20366 default:
20367 break;
20368 }
20369
20370 if (decoded != NULL)
20371 {
20372 print_symbol (-left, decoded);
20373 left = 0;
20374 }
20375 else if (val == 0)
20376 {
20377 printf ("0x0");
20378 left -= 3;
20379 }
20380 else
20381 {
20382 if (do_wide)
20383 left -= printf ("0x%llx", val);
20384 else
20385 left -= printf ("0x%-.*llx", left, val);
20386 }
20387 }
20388 break;
20389 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
20390 left -= print_symbol (- left, name);
20391 break;
20392 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
20393 left -= print_symbol (- left, "true");
20394 break;
20395 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
20396 left -= print_symbol (- left, "false");
20397 break;
20398 }
20399
20400 if (do_wide && left > 0)
20401 printf ("%-*s", left, " ");
20402
20403 return true;
20404 }
20405
20406 /* Note that by the ELF standard, the name field is already null byte
20407 terminated, and namesz includes the terminating null byte.
20408 I.E. the value of namesz for the name "FSF" is 4.
20409
20410 If the value of namesz is zero, there is no name present. */
20411
20412 static bool
20413 process_note (Elf_Internal_Note * pnote,
20414 Filedata * filedata)
20415 {
20416 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
20417 const char * nt;
20418
20419 if (pnote->namesz == 0)
20420 /* If there is no note name, then use the default set of
20421 note type strings. */
20422 nt = get_note_type (filedata, pnote->type);
20423
20424 else if (startswith (pnote->namedata, "GNU"))
20425 /* GNU-specific object file notes. */
20426 nt = get_gnu_elf_note_type (pnote->type);
20427
20428 else if (startswith (pnote->namedata, "FreeBSD"))
20429 /* FreeBSD-specific core file notes. */
20430 nt = get_freebsd_elfcore_note_type (filedata, pnote->type);
20431
20432 else if (startswith (pnote->namedata, "NetBSD-CORE"))
20433 /* NetBSD-specific core file notes. */
20434 nt = get_netbsd_elfcore_note_type (filedata, pnote->type);
20435
20436 else if (startswith (pnote->namedata, "NetBSD"))
20437 /* NetBSD-specific core file notes. */
20438 return process_netbsd_elf_note (pnote);
20439
20440 else if (startswith (pnote->namedata, "PaX"))
20441 /* NetBSD-specific core file notes. */
20442 return process_netbsd_elf_note (pnote);
20443
20444 else if (startswith (pnote->namedata, "SPU/"))
20445 {
20446 /* SPU-specific core file notes. */
20447 nt = pnote->namedata + 4;
20448 name = "SPU";
20449 }
20450
20451 else if (startswith (pnote->namedata, "IPF/VMS"))
20452 /* VMS/ia64-specific file notes. */
20453 nt = get_ia64_vms_note_type (pnote->type);
20454
20455 else if (startswith (pnote->namedata, "stapsdt"))
20456 nt = get_stapsdt_note_type (pnote->type);
20457
20458 else
20459 /* Don't recognize this note name; just use the default set of
20460 note type strings. */
20461 nt = get_note_type (filedata, pnote->type);
20462
20463 printf (" ");
20464
20465 if (((startswith (pnote->namedata, "GA")
20466 && strchr ("*$!+", pnote->namedata[2]) != NULL)
20467 || strchr ("*$!+", pnote->namedata[0]) != NULL)
20468 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
20469 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
20470 print_gnu_build_attribute_name (pnote);
20471 else
20472 print_symbol (-20, name);
20473
20474 if (do_wide)
20475 printf (" 0x%08lx\t%s\t", pnote->descsz, nt);
20476 else
20477 printf (" 0x%08lx\t%s\n", pnote->descsz, nt);
20478
20479 if (startswith (pnote->namedata, "IPF/VMS"))
20480 return print_ia64_vms_note (pnote);
20481 else if (startswith (pnote->namedata, "GNU"))
20482 return print_gnu_note (filedata, pnote);
20483 else if (startswith (pnote->namedata, "stapsdt"))
20484 return print_stapsdt_note (pnote);
20485 else if (startswith (pnote->namedata, "CORE"))
20486 return print_core_note (pnote);
20487 else if (((startswith (pnote->namedata, "GA")
20488 && strchr ("*$!+", pnote->namedata[2]) != NULL)
20489 || strchr ("*$!+", pnote->namedata[0]) != NULL)
20490 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
20491 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
20492 return print_gnu_build_attribute_description (pnote, filedata);
20493
20494 if (pnote->descsz)
20495 {
20496 unsigned long i;
20497
20498 printf (_(" description data: "));
20499 for (i = 0; i < pnote->descsz; i++)
20500 printf ("%02x ", pnote->descdata[i] & 0xff);
20501 if (!do_wide)
20502 printf ("\n");
20503 }
20504
20505 if (do_wide)
20506 printf ("\n");
20507
20508 return true;
20509 }
20510
20511 static bool
20512 process_notes_at (Filedata * filedata,
20513 Elf_Internal_Shdr * section,
20514 bfd_vma offset,
20515 bfd_vma length,
20516 bfd_vma align)
20517 {
20518 Elf_External_Note *pnotes;
20519 Elf_External_Note *external;
20520 char *end;
20521 bool res = true;
20522
20523 if (length <= 0)
20524 return false;
20525
20526 if (section)
20527 {
20528 pnotes = (Elf_External_Note *) get_section_contents (section, filedata);
20529 if (pnotes)
20530 {
20531 if (! apply_relocations (filedata, section, (unsigned char *) pnotes, length, NULL, NULL))
20532 {
20533 free (pnotes);
20534 return false;
20535 }
20536 }
20537 }
20538 else
20539 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
20540 _("notes"));
20541
20542 if (pnotes == NULL)
20543 return false;
20544
20545 external = pnotes;
20546
20547 if (filedata->is_separate)
20548 printf (_("In linked file '%s': "), filedata->file_name);
20549 else
20550 printf ("\n");
20551 if (section)
20552 printf (_("Displaying notes found in: %s\n"), printable_section_name (filedata, section));
20553 else
20554 printf (_("Displaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
20555 (unsigned long) offset, (unsigned long) length);
20556
20557 /* NB: Some note sections may have alignment value of 0 or 1. gABI
20558 specifies that notes should be aligned to 4 bytes in 32-bit
20559 objects and to 8 bytes in 64-bit objects. As a Linux extension,
20560 we also support 4 byte alignment in 64-bit objects. If section
20561 alignment is less than 4, we treate alignment as 4 bytes. */
20562 if (align < 4)
20563 align = 4;
20564 else if (align != 4 && align != 8)
20565 {
20566 warn (_("Corrupt note: alignment %ld, expecting 4 or 8\n"),
20567 (long) align);
20568 free (pnotes);
20569 return false;
20570 }
20571
20572 printf (_(" %-20s %-10s\tDescription\n"), _("Owner"), _("Data size"));
20573
20574 end = (char *) pnotes + length;
20575 while ((char *) external < end)
20576 {
20577 Elf_Internal_Note inote;
20578 size_t min_notesz;
20579 char * next;
20580 char * temp = NULL;
20581 size_t data_remaining = end - (char *) external;
20582
20583 if (!is_ia64_vms (filedata))
20584 {
20585 /* PR binutils/15191
20586 Make sure that there is enough data to read. */
20587 min_notesz = offsetof (Elf_External_Note, name);
20588 if (data_remaining < min_notesz)
20589 {
20590 warn (ngettext ("Corrupt note: only %ld byte remains, "
20591 "not enough for a full note\n",
20592 "Corrupt note: only %ld bytes remain, "
20593 "not enough for a full note\n",
20594 data_remaining),
20595 (long) data_remaining);
20596 break;
20597 }
20598 data_remaining -= min_notesz;
20599
20600 inote.type = BYTE_GET (external->type);
20601 inote.namesz = BYTE_GET (external->namesz);
20602 inote.namedata = external->name;
20603 inote.descsz = BYTE_GET (external->descsz);
20604 inote.descdata = ((char *) external
20605 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
20606 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20607 next = ((char *) external
20608 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
20609 }
20610 else
20611 {
20612 Elf64_External_VMS_Note *vms_external;
20613
20614 /* PR binutils/15191
20615 Make sure that there is enough data to read. */
20616 min_notesz = offsetof (Elf64_External_VMS_Note, name);
20617 if (data_remaining < min_notesz)
20618 {
20619 warn (ngettext ("Corrupt note: only %ld byte remains, "
20620 "not enough for a full note\n",
20621 "Corrupt note: only %ld bytes remain, "
20622 "not enough for a full note\n",
20623 data_remaining),
20624 (long) data_remaining);
20625 break;
20626 }
20627 data_remaining -= min_notesz;
20628
20629 vms_external = (Elf64_External_VMS_Note *) external;
20630 inote.type = BYTE_GET (vms_external->type);
20631 inote.namesz = BYTE_GET (vms_external->namesz);
20632 inote.namedata = vms_external->name;
20633 inote.descsz = BYTE_GET (vms_external->descsz);
20634 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
20635 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20636 next = inote.descdata + align_power (inote.descsz, 3);
20637 }
20638
20639 /* PR 17531: file: 3443835e. */
20640 /* PR 17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
20641 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
20642 || (size_t) (inote.descdata - inote.namedata) > data_remaining
20643 || (size_t) (next - inote.descdata) < inote.descsz
20644 || ((size_t) (next - inote.descdata)
20645 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
20646 {
20647 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
20648 (unsigned long) ((char *) external - (char *) pnotes));
20649 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx, alignment: %u\n"),
20650 inote.type, inote.namesz, inote.descsz, (int) align);
20651 break;
20652 }
20653
20654 external = (Elf_External_Note *) next;
20655
20656 /* Verify that name is null terminated. It appears that at least
20657 one version of Linux (RedHat 6.0) generates corefiles that don't
20658 comply with the ELF spec by failing to include the null byte in
20659 namesz. */
20660 if (inote.namesz > 0 && inote.namedata[inote.namesz - 1] != '\0')
20661 {
20662 if ((size_t) (inote.descdata - inote.namedata) == inote.namesz)
20663 {
20664 temp = (char *) malloc (inote.namesz + 1);
20665 if (temp == NULL)
20666 {
20667 error (_("Out of memory allocating space for inote name\n"));
20668 res = false;
20669 break;
20670 }
20671
20672 memcpy (temp, inote.namedata, inote.namesz);
20673 inote.namedata = temp;
20674 }
20675 inote.namedata[inote.namesz] = 0;
20676 }
20677
20678 if (! process_note (& inote, filedata))
20679 res = false;
20680
20681 free (temp);
20682 temp = NULL;
20683 }
20684
20685 free (pnotes);
20686
20687 return res;
20688 }
20689
20690 static bool
20691 process_corefile_note_segments (Filedata * filedata)
20692 {
20693 Elf_Internal_Phdr *segment;
20694 unsigned int i;
20695 bool res = true;
20696
20697 if (! get_program_headers (filedata))
20698 return true;
20699
20700 for (i = 0, segment = filedata->program_headers;
20701 i < filedata->file_header.e_phnum;
20702 i++, segment++)
20703 {
20704 if (segment->p_type == PT_NOTE)
20705 if (! process_notes_at (filedata, NULL,
20706 (bfd_vma) segment->p_offset,
20707 (bfd_vma) segment->p_filesz,
20708 (bfd_vma) segment->p_align))
20709 res = false;
20710 }
20711
20712 return res;
20713 }
20714
20715 static bool
20716 process_v850_notes (Filedata * filedata, bfd_vma offset, bfd_vma length)
20717 {
20718 Elf_External_Note * pnotes;
20719 Elf_External_Note * external;
20720 char * end;
20721 bool res = true;
20722
20723 if (length <= 0)
20724 return false;
20725
20726 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
20727 _("v850 notes"));
20728 if (pnotes == NULL)
20729 return false;
20730
20731 external = pnotes;
20732 end = (char*) pnotes + length;
20733
20734 printf (_("\nDisplaying contents of Renesas V850 notes section at offset 0x%lx with length 0x%lx:\n"),
20735 (unsigned long) offset, (unsigned long) length);
20736
20737 while ((char *) external + sizeof (Elf_External_Note) < end)
20738 {
20739 Elf_External_Note * next;
20740 Elf_Internal_Note inote;
20741
20742 inote.type = BYTE_GET (external->type);
20743 inote.namesz = BYTE_GET (external->namesz);
20744 inote.namedata = external->name;
20745 inote.descsz = BYTE_GET (external->descsz);
20746 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
20747 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20748
20749 if (inote.descdata < (char *) pnotes || inote.descdata >= end)
20750 {
20751 warn (_("Corrupt note: name size is too big: %lx\n"), inote.namesz);
20752 inote.descdata = inote.namedata;
20753 inote.namesz = 0;
20754 }
20755
20756 next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2));
20757
20758 if ( ((char *) next > end)
20759 || ((char *) next < (char *) pnotes))
20760 {
20761 warn (_("corrupt descsz found in note at offset 0x%lx\n"),
20762 (unsigned long) ((char *) external - (char *) pnotes));
20763 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
20764 inote.type, inote.namesz, inote.descsz);
20765 break;
20766 }
20767
20768 external = next;
20769
20770 /* Prevent out-of-bounds indexing. */
20771 if ( inote.namedata + inote.namesz > end
20772 || inote.namedata + inote.namesz < inote.namedata)
20773 {
20774 warn (_("corrupt namesz found in note at offset 0x%lx\n"),
20775 (unsigned long) ((char *) external - (char *) pnotes));
20776 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
20777 inote.type, inote.namesz, inote.descsz);
20778 break;
20779 }
20780
20781 printf (" %s: ", get_v850_elf_note_type (inote.type));
20782
20783 if (! print_v850_note (& inote))
20784 {
20785 res = false;
20786 printf ("<corrupt sizes: namesz: %lx, descsz: %lx>\n",
20787 inote.namesz, inote.descsz);
20788 }
20789 }
20790
20791 free (pnotes);
20792
20793 return res;
20794 }
20795
20796 static bool
20797 process_note_sections (Filedata * filedata)
20798 {
20799 Elf_Internal_Shdr *section;
20800 unsigned long i;
20801 unsigned int n = 0;
20802 bool res = true;
20803
20804 for (i = 0, section = filedata->section_headers;
20805 i < filedata->file_header.e_shnum && section != NULL;
20806 i++, section++)
20807 {
20808 if (section->sh_type == SHT_NOTE)
20809 {
20810 if (! process_notes_at (filedata, section,
20811 (bfd_vma) section->sh_offset,
20812 (bfd_vma) section->sh_size,
20813 (bfd_vma) section->sh_addralign))
20814 res = false;
20815 n++;
20816 }
20817
20818 if (( filedata->file_header.e_machine == EM_V800
20819 || filedata->file_header.e_machine == EM_V850
20820 || filedata->file_header.e_machine == EM_CYGNUS_V850)
20821 && section->sh_type == SHT_RENESAS_INFO)
20822 {
20823 if (! process_v850_notes (filedata,
20824 (bfd_vma) section->sh_offset,
20825 (bfd_vma) section->sh_size))
20826 res = false;
20827 n++;
20828 }
20829 }
20830
20831 if (n == 0)
20832 /* Try processing NOTE segments instead. */
20833 return process_corefile_note_segments (filedata);
20834
20835 return res;
20836 }
20837
20838 static bool
20839 process_notes (Filedata * filedata)
20840 {
20841 /* If we have not been asked to display the notes then do nothing. */
20842 if (! do_notes)
20843 return true;
20844
20845 if (filedata->file_header.e_type != ET_CORE)
20846 return process_note_sections (filedata);
20847
20848 /* No program headers means no NOTE segment. */
20849 if (filedata->file_header.e_phnum > 0)
20850 return process_corefile_note_segments (filedata);
20851
20852 if (filedata->is_separate)
20853 printf (_("No notes found in linked file '%s'.\n"),
20854 filedata->file_name);
20855 else
20856 printf (_("No notes found file.\n"));
20857
20858 return true;
20859 }
20860
20861 static unsigned char *
20862 display_public_gnu_attributes (unsigned char * start,
20863 const unsigned char * const end)
20864 {
20865 printf (_(" Unknown GNU attribute: %s\n"), start);
20866
20867 start += strnlen ((char *) start, end - start);
20868 display_raw_attribute (start, end);
20869
20870 return (unsigned char *) end;
20871 }
20872
20873 static unsigned char *
20874 display_generic_attribute (unsigned char * start,
20875 unsigned int tag,
20876 const unsigned char * const end)
20877 {
20878 if (tag == 0)
20879 return (unsigned char *) end;
20880
20881 return display_tag_value (tag, start, end);
20882 }
20883
20884 static bool
20885 process_arch_specific (Filedata * filedata)
20886 {
20887 if (! do_arch)
20888 return true;
20889
20890 switch (filedata->file_header.e_machine)
20891 {
20892 case EM_ARC:
20893 case EM_ARC_COMPACT:
20894 case EM_ARC_COMPACT2:
20895 return process_attributes (filedata, "ARC", SHT_ARC_ATTRIBUTES,
20896 display_arc_attribute,
20897 display_generic_attribute);
20898 case EM_ARM:
20899 return process_attributes (filedata, "aeabi", SHT_ARM_ATTRIBUTES,
20900 display_arm_attribute,
20901 display_generic_attribute);
20902
20903 case EM_MIPS:
20904 case EM_MIPS_RS3_LE:
20905 return process_mips_specific (filedata);
20906
20907 case EM_MSP430:
20908 return process_attributes (filedata, "mspabi", SHT_MSP430_ATTRIBUTES,
20909 display_msp430_attribute,
20910 display_msp430_gnu_attribute);
20911
20912 case EM_RISCV:
20913 return process_attributes (filedata, "riscv", SHT_RISCV_ATTRIBUTES,
20914 display_riscv_attribute,
20915 display_generic_attribute);
20916
20917 case EM_NDS32:
20918 return process_nds32_specific (filedata);
20919
20920 case EM_68K:
20921 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
20922 display_m68k_gnu_attribute);
20923
20924 case EM_PPC:
20925 case EM_PPC64:
20926 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
20927 display_power_gnu_attribute);
20928
20929 case EM_S390:
20930 case EM_S390_OLD:
20931 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
20932 display_s390_gnu_attribute);
20933
20934 case EM_SPARC:
20935 case EM_SPARC32PLUS:
20936 case EM_SPARCV9:
20937 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
20938 display_sparc_gnu_attribute);
20939
20940 case EM_TI_C6000:
20941 return process_attributes (filedata, "c6xabi", SHT_C6000_ATTRIBUTES,
20942 display_tic6x_attribute,
20943 display_generic_attribute);
20944
20945 case EM_CSKY:
20946 return process_attributes (filedata, "csky", SHT_CSKY_ATTRIBUTES,
20947 display_csky_attribute, NULL);
20948
20949 default:
20950 return process_attributes (filedata, "gnu", SHT_GNU_ATTRIBUTES,
20951 display_public_gnu_attributes,
20952 display_generic_attribute);
20953 }
20954 }
20955
20956 static bool
20957 get_file_header (Filedata * filedata)
20958 {
20959 /* Read in the identity array. */
20960 if (fread (filedata->file_header.e_ident, EI_NIDENT, 1, filedata->handle) != 1)
20961 return false;
20962
20963 /* Determine how to read the rest of the header. */
20964 switch (filedata->file_header.e_ident[EI_DATA])
20965 {
20966 default:
20967 case ELFDATANONE:
20968 case ELFDATA2LSB:
20969 byte_get = byte_get_little_endian;
20970 byte_put = byte_put_little_endian;
20971 break;
20972 case ELFDATA2MSB:
20973 byte_get = byte_get_big_endian;
20974 byte_put = byte_put_big_endian;
20975 break;
20976 }
20977
20978 /* For now we only support 32 bit and 64 bit ELF files. */
20979 is_32bit_elf = (filedata->file_header.e_ident[EI_CLASS] != ELFCLASS64);
20980
20981 /* Read in the rest of the header. */
20982 if (is_32bit_elf)
20983 {
20984 Elf32_External_Ehdr ehdr32;
20985
20986 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, filedata->handle) != 1)
20987 return false;
20988
20989 filedata->file_header.e_type = BYTE_GET (ehdr32.e_type);
20990 filedata->file_header.e_machine = BYTE_GET (ehdr32.e_machine);
20991 filedata->file_header.e_version = BYTE_GET (ehdr32.e_version);
20992 filedata->file_header.e_entry = BYTE_GET (ehdr32.e_entry);
20993 filedata->file_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
20994 filedata->file_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
20995 filedata->file_header.e_flags = BYTE_GET (ehdr32.e_flags);
20996 filedata->file_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
20997 filedata->file_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
20998 filedata->file_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
20999 filedata->file_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
21000 filedata->file_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
21001 filedata->file_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
21002 }
21003 else
21004 {
21005 Elf64_External_Ehdr ehdr64;
21006
21007 /* If we have been compiled with sizeof (bfd_vma) == 4, then
21008 we will not be able to cope with the 64bit data found in
21009 64 ELF files. Detect this now and abort before we start
21010 overwriting things. */
21011 if (sizeof (bfd_vma) < 8)
21012 {
21013 error (_("This instance of readelf has been built without support for a\n\
21014 64 bit data type and so it cannot read 64 bit ELF files.\n"));
21015 return false;
21016 }
21017
21018 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, filedata->handle) != 1)
21019 return false;
21020
21021 filedata->file_header.e_type = BYTE_GET (ehdr64.e_type);
21022 filedata->file_header.e_machine = BYTE_GET (ehdr64.e_machine);
21023 filedata->file_header.e_version = BYTE_GET (ehdr64.e_version);
21024 filedata->file_header.e_entry = BYTE_GET (ehdr64.e_entry);
21025 filedata->file_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
21026 filedata->file_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
21027 filedata->file_header.e_flags = BYTE_GET (ehdr64.e_flags);
21028 filedata->file_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
21029 filedata->file_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
21030 filedata->file_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
21031 filedata->file_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
21032 filedata->file_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
21033 filedata->file_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
21034 }
21035
21036 if (filedata->file_header.e_shoff)
21037 {
21038 /* There may be some extensions in the first section header. Don't
21039 bomb if we can't read it. */
21040 if (is_32bit_elf)
21041 get_32bit_section_headers (filedata, true);
21042 else
21043 get_64bit_section_headers (filedata, true);
21044 }
21045
21046 return true;
21047 }
21048
21049 static void
21050 free_filedata (Filedata *filedata)
21051 {
21052 free (filedata->program_interpreter);
21053 filedata->program_interpreter = NULL;
21054
21055 free (filedata->program_headers);
21056 filedata->program_headers = NULL;
21057
21058 free (filedata->section_headers);
21059 filedata->section_headers = NULL;
21060
21061 free (filedata->string_table);
21062 filedata->string_table = NULL;
21063 filedata->string_table_length = 0;
21064
21065 free (filedata->dump.dump_sects);
21066 filedata->dump.dump_sects = NULL;
21067 filedata->dump.num_dump_sects = 0;
21068
21069 free (filedata->dynamic_strings);
21070 filedata->dynamic_strings = NULL;
21071 filedata->dynamic_strings_length = 0;
21072
21073 free (filedata->dynamic_symbols);
21074 filedata->dynamic_symbols = NULL;
21075 filedata->num_dynamic_syms = 0;
21076
21077 free (filedata->dynamic_syminfo);
21078 filedata->dynamic_syminfo = NULL;
21079
21080 free (filedata->dynamic_section);
21081 filedata->dynamic_section = NULL;
21082
21083 while (filedata->symtab_shndx_list != NULL)
21084 {
21085 elf_section_list *next = filedata->symtab_shndx_list->next;
21086 free (filedata->symtab_shndx_list);
21087 filedata->symtab_shndx_list = next;
21088 }
21089
21090 free (filedata->section_headers_groups);
21091 filedata->section_headers_groups = NULL;
21092
21093 if (filedata->section_groups)
21094 {
21095 size_t i;
21096 struct group_list * g;
21097 struct group_list * next;
21098
21099 for (i = 0; i < filedata->group_count; i++)
21100 {
21101 for (g = filedata->section_groups [i].root; g != NULL; g = next)
21102 {
21103 next = g->next;
21104 free (g);
21105 }
21106 }
21107
21108 free (filedata->section_groups);
21109 filedata->section_groups = NULL;
21110 }
21111 }
21112
21113 static void
21114 close_file (Filedata * filedata)
21115 {
21116 if (filedata)
21117 {
21118 if (filedata->handle)
21119 fclose (filedata->handle);
21120 free (filedata);
21121 }
21122 }
21123
21124 void
21125 close_debug_file (void * data)
21126 {
21127 free_filedata ((Filedata *) data);
21128 close_file ((Filedata *) data);
21129 }
21130
21131 static Filedata *
21132 open_file (const char * pathname, bool is_separate)
21133 {
21134 struct stat statbuf;
21135 Filedata * filedata = NULL;
21136
21137 if (stat (pathname, & statbuf) < 0
21138 || ! S_ISREG (statbuf.st_mode))
21139 goto fail;
21140
21141 filedata = calloc (1, sizeof * filedata);
21142 if (filedata == NULL)
21143 goto fail;
21144
21145 filedata->handle = fopen (pathname, "rb");
21146 if (filedata->handle == NULL)
21147 goto fail;
21148
21149 filedata->file_size = (bfd_size_type) statbuf.st_size;
21150 filedata->file_name = pathname;
21151 filedata->is_separate = is_separate;
21152
21153 if (! get_file_header (filedata))
21154 goto fail;
21155
21156 if (filedata->file_header.e_shoff)
21157 {
21158 bool res;
21159
21160 /* Read the section headers again, this time for real. */
21161 if (is_32bit_elf)
21162 res = get_32bit_section_headers (filedata, false);
21163 else
21164 res = get_64bit_section_headers (filedata, false);
21165
21166 if (!res)
21167 goto fail;
21168 }
21169
21170 return filedata;
21171
21172 fail:
21173 if (filedata)
21174 {
21175 if (filedata->handle)
21176 fclose (filedata->handle);
21177 free (filedata);
21178 }
21179 return NULL;
21180 }
21181
21182 void *
21183 open_debug_file (const char * pathname)
21184 {
21185 return open_file (pathname, true);
21186 }
21187
21188 static void
21189 initialise_dump_sects (Filedata * filedata)
21190 {
21191 /* Initialise the dump_sects array from the cmdline_dump_sects array.
21192 Note we do this even if cmdline_dump_sects is empty because we
21193 must make sure that the dump_sets array is zeroed out before each
21194 object file is processed. */
21195 if (filedata->dump.num_dump_sects > cmdline.num_dump_sects)
21196 memset (filedata->dump.dump_sects, 0,
21197 filedata->dump.num_dump_sects * sizeof (*filedata->dump.dump_sects));
21198
21199 if (cmdline.num_dump_sects > 0)
21200 {
21201 if (filedata->dump.num_dump_sects == 0)
21202 /* A sneaky way of allocating the dump_sects array. */
21203 request_dump_bynumber (&filedata->dump, cmdline.num_dump_sects, 0);
21204
21205 assert (filedata->dump.num_dump_sects >= cmdline.num_dump_sects);
21206 memcpy (filedata->dump.dump_sects, cmdline.dump_sects,
21207 cmdline.num_dump_sects * sizeof (*filedata->dump.dump_sects));
21208 }
21209 }
21210
21211 /* Process one ELF object file according to the command line options.
21212 This file may actually be stored in an archive. The file is
21213 positioned at the start of the ELF object. Returns TRUE if no
21214 problems were encountered, FALSE otherwise. */
21215
21216 static bool
21217 process_object (Filedata * filedata)
21218 {
21219 bool have_separate_files;
21220 unsigned int i;
21221 bool res;
21222
21223 if (! get_file_header (filedata))
21224 {
21225 error (_("%s: Failed to read file header\n"), filedata->file_name);
21226 return false;
21227 }
21228
21229 /* Initialise per file variables. */
21230 for (i = ARRAY_SIZE (filedata->version_info); i--;)
21231 filedata->version_info[i] = 0;
21232
21233 for (i = ARRAY_SIZE (filedata->dynamic_info); i--;)
21234 filedata->dynamic_info[i] = 0;
21235 filedata->dynamic_info_DT_GNU_HASH = 0;
21236 filedata->dynamic_info_DT_MIPS_XHASH = 0;
21237
21238 /* Process the file. */
21239 if (show_name)
21240 printf (_("\nFile: %s\n"), filedata->file_name);
21241
21242 initialise_dump_sects (filedata);
21243
21244 if (! process_file_header (filedata))
21245 return false;
21246
21247 if (! process_section_headers (filedata))
21248 {
21249 /* Without loaded section headers we cannot process lots of things. */
21250 do_unwind = do_version = do_dump = do_arch = false;
21251
21252 if (! do_using_dynamic)
21253 do_syms = do_dyn_syms = do_reloc = false;
21254 }
21255
21256 if (! process_section_groups (filedata))
21257 /* Without loaded section groups we cannot process unwind. */
21258 do_unwind = false;
21259
21260 res = process_program_headers (filedata);
21261 if (res)
21262 res = process_dynamic_section (filedata);
21263
21264 if (! process_relocs (filedata))
21265 res = false;
21266
21267 if (! process_unwind (filedata))
21268 res = false;
21269
21270 if (! process_symbol_table (filedata))
21271 res = false;
21272
21273 if (! process_lto_symbol_tables (filedata))
21274 res = false;
21275
21276 if (! process_syminfo (filedata))
21277 res = false;
21278
21279 if (! process_version_sections (filedata))
21280 res = false;
21281
21282 if (filedata->file_header.e_shstrndx != SHN_UNDEF)
21283 have_separate_files = load_separate_debug_files (filedata, filedata->file_name);
21284 else
21285 have_separate_files = false;
21286
21287 if (! process_section_contents (filedata))
21288 res = false;
21289
21290 if (have_separate_files)
21291 {
21292 separate_info * d;
21293
21294 for (d = first_separate_info; d != NULL; d = d->next)
21295 {
21296 initialise_dump_sects (d->handle);
21297
21298 if (process_links && ! process_file_header (d->handle))
21299 res = false;
21300 else if (! process_section_headers (d->handle))
21301 res = false;
21302 else if (! process_section_contents (d->handle))
21303 res = false;
21304 else if (process_links)
21305 {
21306 if (! process_section_groups (d->handle))
21307 res = false;
21308 if (! process_program_headers (d->handle))
21309 res = false;
21310 if (! process_dynamic_section (d->handle))
21311 res = false;
21312 if (! process_relocs (d->handle))
21313 res = false;
21314 if (! process_unwind (d->handle))
21315 res = false;
21316 if (! process_symbol_table (d->handle))
21317 res = false;
21318 if (! process_lto_symbol_tables (d->handle))
21319 res = false;
21320 if (! process_syminfo (d->handle))
21321 res = false;
21322 if (! process_version_sections (d->handle))
21323 res = false;
21324 if (! process_notes (d->handle))
21325 res = false;
21326 }
21327 }
21328
21329 /* The file handles are closed by the call to free_debug_memory() below. */
21330 }
21331
21332 if (! process_notes (filedata))
21333 res = false;
21334
21335 if (! process_gnu_liblist (filedata))
21336 res = false;
21337
21338 if (! process_arch_specific (filedata))
21339 res = false;
21340
21341 free_filedata (filedata);
21342
21343 free_debug_memory ();
21344
21345 return res;
21346 }
21347
21348 /* Process an ELF archive.
21349 On entry the file is positioned just after the ARMAG string.
21350 Returns TRUE upon success, FALSE otherwise. */
21351
21352 static bool
21353 process_archive (Filedata * filedata, bool is_thin_archive)
21354 {
21355 struct archive_info arch;
21356 struct archive_info nested_arch;
21357 size_t got;
21358 bool ret = true;
21359
21360 show_name = true;
21361
21362 /* The ARCH structure is used to hold information about this archive. */
21363 arch.file_name = NULL;
21364 arch.file = NULL;
21365 arch.index_array = NULL;
21366 arch.sym_table = NULL;
21367 arch.longnames = NULL;
21368
21369 /* The NESTED_ARCH structure is used as a single-item cache of information
21370 about a nested archive (when members of a thin archive reside within
21371 another regular archive file). */
21372 nested_arch.file_name = NULL;
21373 nested_arch.file = NULL;
21374 nested_arch.index_array = NULL;
21375 nested_arch.sym_table = NULL;
21376 nested_arch.longnames = NULL;
21377
21378 if (setup_archive (&arch, filedata->file_name, filedata->handle,
21379 filedata->file_size, is_thin_archive,
21380 do_archive_index) != 0)
21381 {
21382 ret = false;
21383 goto out;
21384 }
21385
21386 if (do_archive_index)
21387 {
21388 if (arch.sym_table == NULL)
21389 error (_("%s: unable to dump the index as none was found\n"),
21390 filedata->file_name);
21391 else
21392 {
21393 unsigned long i, l;
21394 unsigned long current_pos;
21395
21396 printf (_("Index of archive %s: (%lu entries, 0x%lx bytes "
21397 "in the symbol table)\n"),
21398 filedata->file_name, (unsigned long) arch.index_num,
21399 arch.sym_size);
21400
21401 current_pos = ftell (filedata->handle);
21402
21403 for (i = l = 0; i < arch.index_num; i++)
21404 {
21405 if (i == 0
21406 || (i > 0 && arch.index_array[i] != arch.index_array[i - 1]))
21407 {
21408 char * member_name
21409 = get_archive_member_name_at (&arch, arch.index_array[i],
21410 &nested_arch);
21411
21412 if (member_name != NULL)
21413 {
21414 char * qualified_name
21415 = make_qualified_name (&arch, &nested_arch,
21416 member_name);
21417
21418 if (qualified_name != NULL)
21419 {
21420 printf (_("Contents of binary %s at offset "),
21421 qualified_name);
21422 (void) print_vma (arch.index_array[i], PREFIX_HEX);
21423 putchar ('\n');
21424 free (qualified_name);
21425 }
21426 free (member_name);
21427 }
21428 }
21429
21430 if (l >= arch.sym_size)
21431 {
21432 error (_("%s: end of the symbol table reached "
21433 "before the end of the index\n"),
21434 filedata->file_name);
21435 ret = false;
21436 break;
21437 }
21438 /* PR 17531: file: 0b6630b2. */
21439 printf ("\t%.*s\n",
21440 (int) (arch.sym_size - l), arch.sym_table + l);
21441 l += strnlen (arch.sym_table + l, arch.sym_size - l) + 1;
21442 }
21443
21444 if (arch.uses_64bit_indices)
21445 l = (l + 7) & ~ 7;
21446 else
21447 l += l & 1;
21448
21449 if (l < arch.sym_size)
21450 {
21451 error (ngettext ("%s: %ld byte remains in the symbol table, "
21452 "but without corresponding entries in "
21453 "the index table\n",
21454 "%s: %ld bytes remain in the symbol table, "
21455 "but without corresponding entries in "
21456 "the index table\n",
21457 arch.sym_size - l),
21458 filedata->file_name, arch.sym_size - l);
21459 ret = false;
21460 }
21461
21462 if (fseek (filedata->handle, current_pos, SEEK_SET) != 0)
21463 {
21464 error (_("%s: failed to seek back to start of object files "
21465 "in the archive\n"),
21466 filedata->file_name);
21467 ret = false;
21468 goto out;
21469 }
21470 }
21471
21472 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
21473 && !do_segments && !do_header && !do_dump && !do_version
21474 && !do_histogram && !do_debugging && !do_arch && !do_notes
21475 && !do_section_groups && !do_dyn_syms)
21476 {
21477 ret = true; /* Archive index only. */
21478 goto out;
21479 }
21480 }
21481
21482 while (1)
21483 {
21484 char * name;
21485 size_t namelen;
21486 char * qualified_name;
21487
21488 /* Read the next archive header. */
21489 if (fseek (filedata->handle, arch.next_arhdr_offset, SEEK_SET) != 0)
21490 {
21491 error (_("%s: failed to seek to next archive header\n"),
21492 arch.file_name);
21493 ret = false;
21494 break;
21495 }
21496 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, filedata->handle);
21497 if (got != sizeof arch.arhdr)
21498 {
21499 if (got == 0)
21500 break;
21501 /* PR 24049 - we cannot use filedata->file_name as this will
21502 have already been freed. */
21503 error (_("%s: failed to read archive header\n"), arch.file_name);
21504
21505 ret = false;
21506 break;
21507 }
21508 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
21509 {
21510 error (_("%s: did not find a valid archive header\n"),
21511 arch.file_name);
21512 ret = false;
21513 break;
21514 }
21515
21516 arch.next_arhdr_offset += sizeof arch.arhdr;
21517
21518 filedata->archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
21519 if (filedata->archive_file_size & 01)
21520 ++filedata->archive_file_size;
21521
21522 name = get_archive_member_name (&arch, &nested_arch);
21523 if (name == NULL)
21524 {
21525 error (_("%s: bad archive file name\n"), arch.file_name);
21526 ret = false;
21527 break;
21528 }
21529 namelen = strlen (name);
21530
21531 qualified_name = make_qualified_name (&arch, &nested_arch, name);
21532 if (qualified_name == NULL)
21533 {
21534 error (_("%s: bad archive file name\n"), arch.file_name);
21535 free (name);
21536 ret = false;
21537 break;
21538 }
21539
21540 if (is_thin_archive && arch.nested_member_origin == 0)
21541 {
21542 /* This is a proxy for an external member of a thin archive. */
21543 Filedata * member_filedata;
21544 char * member_file_name = adjust_relative_path
21545 (filedata->file_name, name, namelen);
21546
21547 free (name);
21548 if (member_file_name == NULL)
21549 {
21550 free (qualified_name);
21551 ret = false;
21552 break;
21553 }
21554
21555 member_filedata = open_file (member_file_name, false);
21556 if (member_filedata == NULL)
21557 {
21558 error (_("Input file '%s' is not readable.\n"), member_file_name);
21559 free (member_file_name);
21560 free (qualified_name);
21561 ret = false;
21562 break;
21563 }
21564
21565 filedata->archive_file_offset = arch.nested_member_origin;
21566 member_filedata->file_name = qualified_name;
21567
21568 if (! process_object (member_filedata))
21569 ret = false;
21570
21571 close_file (member_filedata);
21572 free (member_file_name);
21573 }
21574 else if (is_thin_archive)
21575 {
21576 Filedata thin_filedata;
21577
21578 memset (&thin_filedata, 0, sizeof (thin_filedata));
21579
21580 /* PR 15140: Allow for corrupt thin archives. */
21581 if (nested_arch.file == NULL)
21582 {
21583 error (_("%s: contains corrupt thin archive: %s\n"),
21584 qualified_name, name);
21585 free (qualified_name);
21586 free (name);
21587 ret = false;
21588 break;
21589 }
21590 free (name);
21591
21592 /* This is a proxy for a member of a nested archive. */
21593 filedata->archive_file_offset
21594 = arch.nested_member_origin + sizeof arch.arhdr;
21595
21596 /* The nested archive file will have been opened and setup by
21597 get_archive_member_name. */
21598 if (fseek (nested_arch.file, filedata->archive_file_offset,
21599 SEEK_SET) != 0)
21600 {
21601 error (_("%s: failed to seek to archive member.\n"),
21602 nested_arch.file_name);
21603 free (qualified_name);
21604 ret = false;
21605 break;
21606 }
21607
21608 thin_filedata.handle = nested_arch.file;
21609 thin_filedata.file_name = qualified_name;
21610
21611 if (! process_object (& thin_filedata))
21612 ret = false;
21613 }
21614 else
21615 {
21616 free (name);
21617 filedata->archive_file_offset = arch.next_arhdr_offset;
21618 filedata->file_name = qualified_name;
21619 if (! process_object (filedata))
21620 ret = false;
21621 arch.next_arhdr_offset += filedata->archive_file_size;
21622 /* Stop looping with "negative" archive_file_size. */
21623 if (arch.next_arhdr_offset < filedata->archive_file_size)
21624 arch.next_arhdr_offset = -1ul;
21625 }
21626
21627 free (qualified_name);
21628 }
21629
21630 out:
21631 if (nested_arch.file != NULL)
21632 fclose (nested_arch.file);
21633 release_archive (&nested_arch);
21634 release_archive (&arch);
21635
21636 return ret;
21637 }
21638
21639 static bool
21640 process_file (char * file_name)
21641 {
21642 Filedata * filedata = NULL;
21643 struct stat statbuf;
21644 char armag[SARMAG];
21645 bool ret = true;
21646
21647 if (stat (file_name, &statbuf) < 0)
21648 {
21649 if (errno == ENOENT)
21650 error (_("'%s': No such file\n"), file_name);
21651 else
21652 error (_("Could not locate '%s'. System error message: %s\n"),
21653 file_name, strerror (errno));
21654 return false;
21655 }
21656
21657 if (! S_ISREG (statbuf.st_mode))
21658 {
21659 error (_("'%s' is not an ordinary file\n"), file_name);
21660 return false;
21661 }
21662
21663 filedata = calloc (1, sizeof * filedata);
21664 if (filedata == NULL)
21665 {
21666 error (_("Out of memory allocating file data structure\n"));
21667 return false;
21668 }
21669
21670 filedata->file_name = file_name;
21671 filedata->handle = fopen (file_name, "rb");
21672 if (filedata->handle == NULL)
21673 {
21674 error (_("Input file '%s' is not readable.\n"), file_name);
21675 free (filedata);
21676 return false;
21677 }
21678
21679 if (fread (armag, SARMAG, 1, filedata->handle) != 1)
21680 {
21681 error (_("%s: Failed to read file's magic number\n"), file_name);
21682 fclose (filedata->handle);
21683 free (filedata);
21684 return false;
21685 }
21686
21687 filedata->file_size = (bfd_size_type) statbuf.st_size;
21688 filedata->is_separate = false;
21689
21690 if (memcmp (armag, ARMAG, SARMAG) == 0)
21691 {
21692 if (! process_archive (filedata, false))
21693 ret = false;
21694 }
21695 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
21696 {
21697 if ( ! process_archive (filedata, true))
21698 ret = false;
21699 }
21700 else
21701 {
21702 if (do_archive_index && !check_all)
21703 error (_("File %s is not an archive so its index cannot be displayed.\n"),
21704 file_name);
21705
21706 rewind (filedata->handle);
21707 filedata->archive_file_size = filedata->archive_file_offset = 0;
21708
21709 if (! process_object (filedata))
21710 ret = false;
21711 }
21712
21713 fclose (filedata->handle);
21714 free (filedata->section_headers);
21715 free (filedata->program_headers);
21716 free (filedata->string_table);
21717 free (filedata->dump.dump_sects);
21718 free (filedata);
21719
21720 free (ba_cache.strtab);
21721 ba_cache.strtab = NULL;
21722 free (ba_cache.symtab);
21723 ba_cache.symtab = NULL;
21724 ba_cache.filedata = NULL;
21725
21726 return ret;
21727 }
21728
21729 #ifdef SUPPORT_DISASSEMBLY
21730 /* Needed by the i386 disassembler. For extra credit, someone could
21731 fix this so that we insert symbolic addresses here, esp for GOT/PLT
21732 symbols. */
21733
21734 void
21735 print_address (unsigned int addr, FILE * outfile)
21736 {
21737 fprintf (outfile,"0x%8.8x", addr);
21738 }
21739
21740 /* Needed by the i386 disassembler. */
21741
21742 void
21743 db_task_printsym (unsigned int addr)
21744 {
21745 print_address (addr, stderr);
21746 }
21747 #endif
21748
21749 int
21750 main (int argc, char ** argv)
21751 {
21752 int err;
21753
21754 #ifdef HAVE_LC_MESSAGES
21755 setlocale (LC_MESSAGES, "");
21756 #endif
21757 setlocale (LC_CTYPE, "");
21758 bindtextdomain (PACKAGE, LOCALEDIR);
21759 textdomain (PACKAGE);
21760
21761 expandargv (&argc, &argv);
21762
21763 parse_args (& cmdline, argc, argv);
21764
21765 if (optind < (argc - 1))
21766 /* When displaying information for more than one file,
21767 prefix the information with the file name. */
21768 show_name = true;
21769 else if (optind >= argc)
21770 {
21771 /* Ensure that the warning is always displayed. */
21772 do_checks = true;
21773
21774 warn (_("Nothing to do.\n"));
21775 usage (stderr);
21776 }
21777
21778 err = false;
21779 while (optind < argc)
21780 if (! process_file (argv[optind++]))
21781 err = true;
21782
21783 free (cmdline.dump_sects);
21784
21785 free (dump_ctf_symtab_name);
21786 free (dump_ctf_strtab_name);
21787 free (dump_ctf_parent_name);
21788
21789 return err ? EXIT_FAILURE : EXIT_SUCCESS;
21790 }
This page took 0.450519 seconds and 5 git commands to generate.