]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/dwarf.c
PR29362, some binutils memory leaks
[thirdparty/binutils-gdb.git] / binutils / dwarf.c
1 /* dwarf.c -- display DWARF contents of a BFD binary file
2 Copyright (C) 2005-2022 Free Software Foundation, Inc.
3
4 This file is part of GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
20
21 #include "sysdep.h"
22 #include "libiberty.h"
23 #include "bfd.h"
24 #include <stdint.h>
25 #include "bucomm.h"
26 #include "elfcomm.h"
27 #include "elf/common.h"
28 #include "dwarf2.h"
29 #include "dwarf.h"
30 #include "gdb/gdb-index.h"
31 #include "filenames.h"
32 #include "safe-ctype.h"
33 #include <assert.h>
34
35 #ifdef HAVE_LIBDEBUGINFOD
36 #include <elfutils/debuginfod.h>
37 #endif
38
39 #include <limits.h>
40 #ifndef CHAR_BIT
41 #define CHAR_BIT 8
42 #endif
43
44 #ifndef ENABLE_CHECKING
45 #define ENABLE_CHECKING 0
46 #endif
47
48 #undef MAX
49 #undef MIN
50 #define MAX(a, b) ((a) > (b) ? (a) : (b))
51 #define MIN(a, b) ((a) < (b) ? (a) : (b))
52
53 static const char *regname (unsigned int regno, int row);
54 static const char *regname_internal_by_table_only (unsigned int regno);
55
56 static int have_frame_base;
57 static int need_base_address;
58
59 static unsigned int num_debug_info_entries = 0;
60 static unsigned int alloc_num_debug_info_entries = 0;
61 static debug_info *debug_information = NULL;
62 /* Special value for num_debug_info_entries to indicate
63 that the .debug_info section could not be loaded/parsed. */
64 #define DEBUG_INFO_UNAVAILABLE (unsigned int) -1
65
66 /* A .debug_info section can contain multiple links to separate
67 DWO object files. We use these structures to record these links. */
68 typedef enum dwo_type
69 {
70 DWO_NAME,
71 DWO_DIR,
72 DWO_ID
73 } dwo_type;
74
75 typedef struct dwo_info
76 {
77 dwo_type type;
78 const char * value;
79 uint64_t cu_offset;
80 struct dwo_info * next;
81 } dwo_info;
82
83 static dwo_info *first_dwo_info = NULL;
84 static bool need_dwo_info;
85
86 separate_info * first_separate_info = NULL;
87
88 unsigned int eh_addr_size;
89
90 int do_debug_info;
91 int do_debug_abbrevs;
92 int do_debug_lines;
93 int do_debug_pubnames;
94 int do_debug_pubtypes;
95 int do_debug_aranges;
96 int do_debug_ranges;
97 int do_debug_frames;
98 int do_debug_frames_interp;
99 int do_debug_macinfo;
100 int do_debug_str;
101 int do_debug_str_offsets;
102 int do_debug_loc;
103 int do_gdb_index;
104 int do_trace_info;
105 int do_trace_abbrevs;
106 int do_trace_aranges;
107 int do_debug_addr;
108 int do_debug_cu_index;
109 int do_wide;
110 int do_debug_links;
111 int do_follow_links = DEFAULT_FOR_FOLLOW_LINKS;
112 #ifdef HAVE_LIBDEBUGINFOD
113 int use_debuginfod = 1;
114 #endif
115 bool do_checks;
116
117 int dwarf_cutoff_level = -1;
118 unsigned long dwarf_start_die;
119
120 int dwarf_check = 0;
121
122 /* Collection of CU/TU section sets from .debug_cu_index and .debug_tu_index
123 sections. For version 1 package files, each set is stored in SHNDX_POOL
124 as a zero-terminated list of section indexes comprising one set of debug
125 sections from a .dwo file. */
126
127 static unsigned int *shndx_pool = NULL;
128 static unsigned int shndx_pool_size = 0;
129 static unsigned int shndx_pool_used = 0;
130
131 /* For version 2 package files, each set contains an array of section offsets
132 and an array of section sizes, giving the offset and size of the
133 contribution from a CU or TU within one of the debug sections.
134 When displaying debug info from a package file, we need to use these
135 tables to locate the corresponding contributions to each section. */
136
137 struct cu_tu_set
138 {
139 uint64_t signature;
140 uint64_t section_offsets[DW_SECT_MAX];
141 size_t section_sizes[DW_SECT_MAX];
142 };
143
144 static int cu_count = 0;
145 static int tu_count = 0;
146 static struct cu_tu_set *cu_sets = NULL;
147 static struct cu_tu_set *tu_sets = NULL;
148
149 static bool load_cu_tu_indexes (void *);
150
151 /* An array that indicates for a given level of CU nesting whether
152 the latest DW_AT_type seen for that level was a signed type or
153 an unsigned type. */
154 #define MAX_CU_NESTING (1 << 8)
155 static bool level_type_signed[MAX_CU_NESTING];
156
157 /* Values for do_debug_lines. */
158 #define FLAG_DEBUG_LINES_RAW 1
159 #define FLAG_DEBUG_LINES_DECODED 2
160
161 static unsigned int
162 size_of_encoded_value (int encoding)
163 {
164 switch (encoding & 0x7)
165 {
166 default: /* ??? */
167 case 0: return eh_addr_size;
168 case 2: return 2;
169 case 3: return 4;
170 case 4: return 8;
171 }
172 }
173
174 static uint64_t
175 get_encoded_value (unsigned char **pdata,
176 int encoding,
177 struct dwarf_section *section,
178 unsigned char * end)
179 {
180 unsigned char * data = * pdata;
181 unsigned int size = size_of_encoded_value (encoding);
182 uint64_t val;
183
184 if (data >= end || size > (size_t) (end - data))
185 {
186 warn (_("Encoded value extends past end of section\n"));
187 * pdata = end;
188 return 0;
189 }
190
191 /* PR 17512: file: 002-829853-0.004. */
192 if (size > 8)
193 {
194 warn (_("Encoded size of %d is too large to read\n"), size);
195 * pdata = end;
196 return 0;
197 }
198
199 /* PR 17512: file: 1085-5603-0.004. */
200 if (size == 0)
201 {
202 warn (_("Encoded size of 0 is too small to read\n"));
203 * pdata = end;
204 return 0;
205 }
206
207 if (encoding & DW_EH_PE_signed)
208 val = byte_get_signed (data, size);
209 else
210 val = byte_get (data, size);
211
212 if ((encoding & 0x70) == DW_EH_PE_pcrel)
213 val += section->address + (data - section->start);
214
215 * pdata = data + size;
216 return val;
217 }
218
219 /* Print a uint64_t value (typically an address, offset or length) in
220 hexadecimal format, followed by a space. The precision displayed is
221 determined by the NUM_BYTES parameter. */
222
223 static void
224 print_hex (uint64_t value, unsigned num_bytes)
225 {
226 if (num_bytes == 0)
227 num_bytes = 2;
228
229 printf ("%0*" PRIx64 " ", num_bytes * 2,
230 value & ~(~(uint64_t) 0 << num_bytes * 4 << num_bytes * 4));
231 }
232
233 /* Like print_hex, but no trailing space. */
234
235 static void
236 print_hex_ns (uint64_t value, unsigned num_bytes)
237 {
238 if (num_bytes == 0)
239 num_bytes = 2;
240
241 printf ("%0*" PRIx64, num_bytes * 2,
242 value & ~(~(uint64_t) 0 << num_bytes * 4 << num_bytes * 4));
243 }
244
245 /* Print a view number in hexadecimal value, with the same width as
246 print_hex would have printed it. */
247
248 static void
249 print_view (uint64_t value, unsigned num_bytes)
250 {
251 if (num_bytes == 0)
252 num_bytes = 2;
253
254 printf ("v%0*" PRIx64 " ", num_bytes * 2 - 1,
255 value & ~(~(uint64_t) 0 << num_bytes * 4 << num_bytes * 4));
256 }
257
258 /* Read in a LEB128 encoded value starting at address DATA.
259 If SIGN is true, return a signed LEB128 value.
260 If LENGTH_RETURN is not NULL, return in it the number of bytes read.
261 If STATUS_RETURN is not NULL, return with bit 0 (LSB) set if the
262 terminating byte was not found and with bit 1 set if the value
263 overflows a uint64_t.
264 No bytes will be read at address END or beyond. */
265
266 uint64_t
267 read_leb128 (unsigned char *data,
268 const unsigned char *const end,
269 bool sign,
270 unsigned int *length_return,
271 int *status_return)
272 {
273 uint64_t result = 0;
274 unsigned int num_read = 0;
275 unsigned int shift = 0;
276 int status = 1;
277
278 while (data < end)
279 {
280 unsigned char byte = *data++;
281 unsigned char lost, mask;
282
283 num_read++;
284
285 if (shift < CHAR_BIT * sizeof (result))
286 {
287 result |= ((uint64_t) (byte & 0x7f)) << shift;
288 /* These bits overflowed. */
289 lost = byte ^ (result >> shift);
290 /* And this is the mask of possible overflow bits. */
291 mask = 0x7f ^ ((uint64_t) 0x7f << shift >> shift);
292 shift += 7;
293 }
294 else
295 {
296 lost = byte;
297 mask = 0x7f;
298 }
299 if ((lost & mask) != (sign && (int64_t) result < 0 ? mask : 0))
300 status |= 2;
301
302 if ((byte & 0x80) == 0)
303 {
304 status &= ~1;
305 if (sign && shift < CHAR_BIT * sizeof (result) && (byte & 0x40))
306 result |= -((uint64_t) 1 << shift);
307 break;
308 }
309 }
310
311 if (length_return != NULL)
312 *length_return = num_read;
313 if (status_return != NULL)
314 *status_return = status;
315
316 return result;
317 }
318
319 /* Read AMOUNT bytes from PTR and store them in VAL.
320 Checks to make sure that the read will not reach or pass END.
321 FUNC chooses whether the value read is unsigned or signed, and may
322 be either byte_get or byte_get_signed. If INC is true, PTR is
323 incremented after reading the value.
324 This macro cannot protect against PTR values derived from user input.
325 The C standard sections 6.5.6 and 6.5.8 say attempts to do so using
326 pointers is undefined behaviour. */
327 #define SAFE_BYTE_GET_INTERNAL(VAL, PTR, AMOUNT, END, FUNC, INC) \
328 do \
329 { \
330 size_t amount = (AMOUNT); \
331 if (sizeof (VAL) < amount) \
332 { \
333 error (ngettext ("internal error: attempt to read %d byte " \
334 "of data in to %d sized variable", \
335 "internal error: attempt to read %d bytes " \
336 "of data in to %d sized variable", \
337 amount), \
338 (int) amount, (int) sizeof (VAL)); \
339 amount = sizeof (VAL); \
340 } \
341 if (ENABLE_CHECKING) \
342 assert ((PTR) <= (END)); \
343 size_t avail = (END) - (PTR); \
344 if ((PTR) > (END)) \
345 avail = 0; \
346 if (amount > avail) \
347 amount = avail; \
348 if (amount == 0) \
349 (VAL) = 0; \
350 else \
351 (VAL) = (FUNC) ((PTR), amount); \
352 if (INC) \
353 (PTR) += amount; \
354 } \
355 while (0)
356
357 #define SAFE_BYTE_GET(VAL, PTR, AMOUNT, END) \
358 SAFE_BYTE_GET_INTERNAL (VAL, PTR, AMOUNT, END, byte_get, false)
359
360 #define SAFE_BYTE_GET_AND_INC(VAL, PTR, AMOUNT, END) \
361 SAFE_BYTE_GET_INTERNAL (VAL, PTR, AMOUNT, END, byte_get, true)
362
363 #define SAFE_SIGNED_BYTE_GET(VAL, PTR, AMOUNT, END) \
364 SAFE_BYTE_GET_INTERNAL (VAL, PTR, AMOUNT, END, byte_get_signed, false)
365
366 #define SAFE_SIGNED_BYTE_GET_AND_INC(VAL, PTR, AMOUNT, END) \
367 SAFE_BYTE_GET_INTERNAL (VAL, PTR, AMOUNT, END, byte_get_signed, true)
368
369 typedef struct State_Machine_Registers
370 {
371 uint64_t address;
372 unsigned int view;
373 unsigned int file;
374 unsigned int line;
375 unsigned int column;
376 int is_stmt;
377 int basic_block;
378 unsigned char op_index;
379 unsigned char end_sequence;
380 /* This variable hold the number of the last entry seen
381 in the File Table. */
382 unsigned int last_file_entry;
383 } SMR;
384
385 static SMR state_machine_regs;
386
387 static void
388 reset_state_machine (int is_stmt)
389 {
390 state_machine_regs.address = 0;
391 state_machine_regs.view = 0;
392 state_machine_regs.op_index = 0;
393 state_machine_regs.file = 1;
394 state_machine_regs.line = 1;
395 state_machine_regs.column = 0;
396 state_machine_regs.is_stmt = is_stmt;
397 state_machine_regs.basic_block = 0;
398 state_machine_regs.end_sequence = 0;
399 state_machine_regs.last_file_entry = 0;
400 }
401
402 /* Handled an extend line op.
403 Returns the number of bytes read. */
404
405 static size_t
406 process_extended_line_op (unsigned char * data,
407 int is_stmt,
408 unsigned char * end)
409 {
410 unsigned char op_code;
411 size_t len, header_len;
412 unsigned char *name;
413 unsigned char *orig_data = data;
414 uint64_t adr, val;
415
416 READ_ULEB (len, data, end);
417 header_len = data - orig_data;
418
419 if (len == 0 || data >= end || len > (size_t) (end - data))
420 {
421 warn (_("Badly formed extended line op encountered!\n"));
422 return header_len;
423 }
424
425 op_code = *data++;
426
427 printf (_(" Extended opcode %d: "), op_code);
428
429 switch (op_code)
430 {
431 case DW_LNE_end_sequence:
432 printf (_("End of Sequence\n\n"));
433 reset_state_machine (is_stmt);
434 break;
435
436 case DW_LNE_set_address:
437 /* PR 17512: file: 002-100480-0.004. */
438 if (len - 1 > 8)
439 {
440 warn (_("Length (%zu) of DW_LNE_set_address op is too long\n"),
441 len - 1);
442 adr = 0;
443 }
444 else
445 SAFE_BYTE_GET (adr, data, len - 1, end);
446 printf (_("set Address to %#" PRIx64 "\n"), adr);
447 state_machine_regs.address = adr;
448 state_machine_regs.view = 0;
449 state_machine_regs.op_index = 0;
450 break;
451
452 case DW_LNE_define_file:
453 printf (_("define new File Table entry\n"));
454 printf (_(" Entry\tDir\tTime\tSize\tName\n"));
455 printf (" %d\t", ++state_machine_regs.last_file_entry);
456
457 {
458 size_t l;
459
460 name = data;
461 l = strnlen ((char *) data, end - data);
462 data += l;
463 if (data < end)
464 data++;
465 READ_ULEB (val, data, end);
466 printf ("%" PRIu64 "\t", val);
467 READ_ULEB (val, data, end);
468 printf ("%" PRIu64 "\t", val);
469 READ_ULEB (val, data, end);
470 printf ("%" PRIu64 "\t", val);
471 printf ("%.*s\n\n", (int) l, name);
472 }
473
474 if (((size_t) (data - orig_data) != len + header_len) || data >= end)
475 warn (_("DW_LNE_define_file: Bad opcode length\n"));
476 break;
477
478 case DW_LNE_set_discriminator:
479 READ_ULEB (val, data, end);
480 printf (_("set Discriminator to %" PRIu64 "\n"), val);
481 break;
482
483 /* HP extensions. */
484 case DW_LNE_HP_negate_is_UV_update:
485 printf ("DW_LNE_HP_negate_is_UV_update\n");
486 break;
487 case DW_LNE_HP_push_context:
488 printf ("DW_LNE_HP_push_context\n");
489 break;
490 case DW_LNE_HP_pop_context:
491 printf ("DW_LNE_HP_pop_context\n");
492 break;
493 case DW_LNE_HP_set_file_line_column:
494 printf ("DW_LNE_HP_set_file_line_column\n");
495 break;
496 case DW_LNE_HP_set_routine_name:
497 printf ("DW_LNE_HP_set_routine_name\n");
498 break;
499 case DW_LNE_HP_set_sequence:
500 printf ("DW_LNE_HP_set_sequence\n");
501 break;
502 case DW_LNE_HP_negate_post_semantics:
503 printf ("DW_LNE_HP_negate_post_semantics\n");
504 break;
505 case DW_LNE_HP_negate_function_exit:
506 printf ("DW_LNE_HP_negate_function_exit\n");
507 break;
508 case DW_LNE_HP_negate_front_end_logical:
509 printf ("DW_LNE_HP_negate_front_end_logical\n");
510 break;
511 case DW_LNE_HP_define_proc:
512 printf ("DW_LNE_HP_define_proc\n");
513 break;
514 case DW_LNE_HP_source_file_correlation:
515 {
516 unsigned char *edata = data + len - 1;
517
518 printf ("DW_LNE_HP_source_file_correlation\n");
519
520 while (data < edata)
521 {
522 unsigned int opc;
523
524 READ_ULEB (opc, data, edata);
525
526 switch (opc)
527 {
528 case DW_LNE_HP_SFC_formfeed:
529 printf (" DW_LNE_HP_SFC_formfeed\n");
530 break;
531 case DW_LNE_HP_SFC_set_listing_line:
532 READ_ULEB (val, data, edata);
533 printf (" DW_LNE_HP_SFC_set_listing_line (%" PRIu64 ")\n",
534 val);
535 break;
536 case DW_LNE_HP_SFC_associate:
537 printf (" DW_LNE_HP_SFC_associate ");
538 READ_ULEB (val, data, edata);
539 printf ("(%" PRIu64 , val);
540 READ_ULEB (val, data, edata);
541 printf (",%" PRIu64, val);
542 READ_ULEB (val, data, edata);
543 printf (",%" PRIu64 ")\n", val);
544 break;
545 default:
546 printf (_(" UNKNOWN DW_LNE_HP_SFC opcode (%u)\n"), opc);
547 data = edata;
548 break;
549 }
550 }
551 }
552 break;
553
554 default:
555 {
556 unsigned int rlen = len - 1;
557
558 if (op_code >= DW_LNE_lo_user
559 /* The test against DW_LNW_hi_user is redundant due to
560 the limited range of the unsigned char data type used
561 for op_code. */
562 /*&& op_code <= DW_LNE_hi_user*/)
563 printf (_("user defined: "));
564 else
565 printf (_("UNKNOWN: "));
566 printf (_("length %d ["), rlen);
567 for (; rlen; rlen--)
568 printf (" %02x", *data++);
569 printf ("]\n");
570 }
571 break;
572 }
573
574 return len + header_len;
575 }
576
577 static const unsigned char *
578 fetch_indirect_string (uint64_t offset)
579 {
580 struct dwarf_section *section = &debug_displays [str].section;
581 const unsigned char * ret;
582
583 if (section->start == NULL)
584 return (const unsigned char *) _("<no .debug_str section>");
585
586 if (offset >= section->size)
587 {
588 warn (_("DW_FORM_strp offset too big: %#" PRIx64 "\n"), offset);
589 return (const unsigned char *) _("<offset is too big>");
590 }
591
592 ret = section->start + offset;
593 /* Unfortunately we cannot rely upon the .debug_str section ending with a
594 NUL byte. Since our caller is expecting to receive a well formed C
595 string we test for the lack of a terminating byte here. */
596 if (strnlen ((const char *) ret, section->size - offset)
597 == section->size - offset)
598 ret = (const unsigned char *)
599 _("<no NUL byte at end of .debug_str section>");
600
601 return ret;
602 }
603
604 static const unsigned char *
605 fetch_indirect_line_string (uint64_t offset)
606 {
607 struct dwarf_section *section = &debug_displays [line_str].section;
608 const unsigned char * ret;
609
610 if (section->start == NULL)
611 return (const unsigned char *) _("<no .debug_line_str section>");
612
613 if (offset >= section->size)
614 {
615 warn (_("DW_FORM_line_strp offset too big: %#" PRIx64 "\n"), offset);
616 return (const unsigned char *) _("<offset is too big>");
617 }
618
619 ret = section->start + offset;
620 /* Unfortunately we cannot rely upon the .debug_line_str section ending
621 with a NUL byte. Since our caller is expecting to receive a well formed
622 C string we test for the lack of a terminating byte here. */
623 if (strnlen ((const char *) ret, section->size - offset)
624 == section->size - offset)
625 ret = (const unsigned char *)
626 _("<no NUL byte at end of .debug_line_str section>");
627
628 return ret;
629 }
630
631 static const char *
632 fetch_indexed_string (uint64_t idx,
633 struct cu_tu_set *this_set,
634 uint64_t offset_size,
635 bool dwo,
636 uint64_t str_offsets_base)
637 {
638 enum dwarf_section_display_enum str_sec_idx = dwo ? str_dwo : str;
639 enum dwarf_section_display_enum idx_sec_idx = dwo ? str_index_dwo : str_index;
640 struct dwarf_section *index_section = &debug_displays [idx_sec_idx].section;
641 struct dwarf_section *str_section = &debug_displays [str_sec_idx].section;
642 uint64_t index_offset;
643 uint64_t str_offset;
644 const char * ret;
645
646 if (index_section->start == NULL)
647 return (dwo ? _("<no .debug_str_offsets.dwo section>")
648 : _("<no .debug_str_offsets section>"));
649
650 if (str_section->start == NULL)
651 return (dwo ? _("<no .debug_str.dwo section>")
652 : _("<no .debug_str section>"));
653
654 index_offset = idx * offset_size;
655
656 if (this_set != NULL)
657 index_offset += this_set->section_offsets [DW_SECT_STR_OFFSETS];
658
659 index_offset += str_offsets_base;
660
661 if (index_offset + offset_size > index_section->size)
662 {
663 warn (_("string index of %" PRIu64 " converts to an offset of %#" PRIx64
664 " which is too big for section %s"),
665 idx, index_offset, str_section->name);
666
667 return _("<string index too big>");
668 }
669
670 /* FIXME: If we are being paranoid then we should also check to see if
671 IDX references an entry beyond the end of the string table pointed to
672 by STR_OFFSETS_BASE. (Since there can be more than one string table
673 in a DWARF string section). */
674
675 str_offset = byte_get (index_section->start + index_offset, offset_size);
676
677 str_offset -= str_section->address;
678 if (str_offset >= str_section->size)
679 {
680 warn (_("indirect offset too big: %#" PRIx64 "\n"), str_offset);
681 return _("<indirect index offset is too big>");
682 }
683
684 ret = (const char *) str_section->start + str_offset;
685
686 /* Unfortunately we cannot rely upon str_section ending with a NUL byte.
687 Since our caller is expecting to receive a well formed C string we test
688 for the lack of a terminating byte here. */
689 if (strnlen (ret, str_section->size - str_offset)
690 == str_section->size - str_offset)
691 return _("<no NUL byte at end of section>");
692
693 return ret;
694 }
695
696 static uint64_t
697 fetch_indexed_addr (uint64_t offset, uint32_t num_bytes)
698 {
699 struct dwarf_section *section = &debug_displays [debug_addr].section;
700
701 if (section->start == NULL)
702 {
703 warn (_("Cannot fetch indexed address: the .debug_addr section is missing\n"));
704 return 0;
705 }
706
707 if (offset + num_bytes > section->size)
708 {
709 warn (_("Offset into section %s too big: %#" PRIx64 "\n"),
710 section->name, offset);
711 return 0;
712 }
713
714 return byte_get (section->start + offset, num_bytes);
715 }
716
717 /* Fetch a value from a debug section that has been indexed by
718 something in another section (eg DW_FORM_loclistx or DW_FORM_rnglistx).
719 Returns -1 if the value could not be found. */
720
721 static uint64_t
722 fetch_indexed_value (uint64_t idx,
723 enum dwarf_section_display_enum sec_enum,
724 uint64_t base_address)
725 {
726 struct dwarf_section *section = &debug_displays [sec_enum].section;
727
728 if (section->start == NULL)
729 {
730 warn (_("Unable to locate %s section\n"), section->uncompressed_name);
731 return -1;
732 }
733
734 uint32_t pointer_size, bias;
735
736 if (byte_get (section->start, 4) == 0xffffffff)
737 {
738 pointer_size = 8;
739 bias = 20;
740 }
741 else
742 {
743 pointer_size = 4;
744 bias = 12;
745 }
746
747 uint64_t offset = idx * pointer_size;
748
749 /* Offsets are biased by the size of the section header
750 or base address. */
751 if (base_address)
752 offset += base_address;
753 else
754 offset += bias;
755
756 if (offset + pointer_size > section->size)
757 {
758 warn (_("Offset into section %s too big: %#" PRIx64 "\n"),
759 section->name, offset);
760 return -1;
761 }
762
763 return byte_get (section->start + offset, pointer_size);
764 }
765
766 /* FIXME: There are better and more efficient ways to handle
767 these structures. For now though, I just want something that
768 is simple to implement. */
769 /* Records a single attribute in an abbrev. */
770 typedef struct abbrev_attr
771 {
772 unsigned long attribute;
773 unsigned long form;
774 int64_t implicit_const;
775 struct abbrev_attr *next;
776 }
777 abbrev_attr;
778
779 /* Records a single abbrev. */
780 typedef struct abbrev_entry
781 {
782 unsigned long number;
783 unsigned long tag;
784 int children;
785 struct abbrev_attr * first_attr;
786 struct abbrev_attr * last_attr;
787 struct abbrev_entry * next;
788 }
789 abbrev_entry;
790
791 /* Records a set of abbreviations. */
792 typedef struct abbrev_list
793 {
794 abbrev_entry * first_abbrev;
795 abbrev_entry * last_abbrev;
796 unsigned char * raw;
797 struct abbrev_list * next;
798 unsigned char * start_of_next_abbrevs;
799 }
800 abbrev_list;
801
802 /* Records all the abbrevs found so far. */
803 static struct abbrev_list * abbrev_lists = NULL;
804
805 typedef struct abbrev_map
806 {
807 uint64_t start;
808 uint64_t end;
809 abbrev_list *list;
810 } abbrev_map;
811
812 /* Maps between CU offsets and abbrev sets. */
813 static abbrev_map * cu_abbrev_map = NULL;
814 static unsigned long num_abbrev_map_entries = 0;
815 static unsigned long next_free_abbrev_map_entry = 0;
816
817 #define INITIAL_NUM_ABBREV_MAP_ENTRIES 8
818 #define ABBREV_MAP_ENTRIES_INCREMENT 8
819
820 static void
821 record_abbrev_list_for_cu (uint64_t start, uint64_t end,
822 abbrev_list *list, abbrev_list *free_list)
823 {
824 if (free_list != NULL)
825 {
826 list->next = abbrev_lists;
827 abbrev_lists = list;
828 }
829
830 if (cu_abbrev_map == NULL)
831 {
832 num_abbrev_map_entries = INITIAL_NUM_ABBREV_MAP_ENTRIES;
833 cu_abbrev_map = xmalloc (num_abbrev_map_entries * sizeof (* cu_abbrev_map));
834 }
835 else if (next_free_abbrev_map_entry == num_abbrev_map_entries)
836 {
837 num_abbrev_map_entries += ABBREV_MAP_ENTRIES_INCREMENT;
838 cu_abbrev_map = xrealloc (cu_abbrev_map, num_abbrev_map_entries * sizeof (* cu_abbrev_map));
839 }
840
841 cu_abbrev_map[next_free_abbrev_map_entry].start = start;
842 cu_abbrev_map[next_free_abbrev_map_entry].end = end;
843 cu_abbrev_map[next_free_abbrev_map_entry].list = list;
844 next_free_abbrev_map_entry ++;
845 }
846
847 static abbrev_list *
848 free_abbrev_list (abbrev_list *list)
849 {
850 abbrev_entry *abbrv = list->first_abbrev;
851
852 while (abbrv)
853 {
854 abbrev_attr *attr = abbrv->first_attr;
855
856 while (attr)
857 {
858 abbrev_attr *next_attr = attr->next;
859 free (attr);
860 attr = next_attr;
861 }
862
863 abbrev_entry *next_abbrev = abbrv->next;
864 free (abbrv);
865 abbrv = next_abbrev;
866 }
867
868 abbrev_list *next = list->next;
869 free (list);
870 return next;
871 }
872
873 static void
874 free_all_abbrevs (void)
875 {
876 while (abbrev_lists)
877 abbrev_lists = free_abbrev_list (abbrev_lists);
878
879 free (cu_abbrev_map);
880 cu_abbrev_map = NULL;
881 next_free_abbrev_map_entry = 0;
882 }
883
884 static abbrev_list *
885 find_abbrev_list_by_raw_abbrev (unsigned char *raw)
886 {
887 abbrev_list * list;
888
889 for (list = abbrev_lists; list != NULL; list = list->next)
890 if (list->raw == raw)
891 return list;
892
893 return NULL;
894 }
895
896 /* Find the abbreviation map for the CU that includes OFFSET.
897 OFFSET is an absolute offset from the start of the .debug_info section. */
898 /* FIXME: This function is going to slow down readelf & objdump.
899 Not caching abbrevs is likely the answer. */
900
901 static abbrev_map *
902 find_abbrev_map_by_offset (uint64_t offset)
903 {
904 unsigned long i;
905
906 for (i = 0; i < next_free_abbrev_map_entry; i++)
907 if (cu_abbrev_map[i].start <= offset
908 && cu_abbrev_map[i].end > offset)
909 return cu_abbrev_map + i;
910
911 return NULL;
912 }
913
914 static void
915 add_abbrev (unsigned long number,
916 unsigned long tag,
917 int children,
918 abbrev_list * list)
919 {
920 abbrev_entry * entry;
921
922 entry = (abbrev_entry *) xmalloc (sizeof (*entry));
923
924 entry->number = number;
925 entry->tag = tag;
926 entry->children = children;
927 entry->first_attr = NULL;
928 entry->last_attr = NULL;
929 entry->next = NULL;
930
931 assert (list != NULL);
932
933 if (list->first_abbrev == NULL)
934 list->first_abbrev = entry;
935 else
936 list->last_abbrev->next = entry;
937
938 list->last_abbrev = entry;
939 }
940
941 static void
942 add_abbrev_attr (unsigned long attribute,
943 unsigned long form,
944 int64_t implicit_const,
945 abbrev_list *list)
946 {
947 abbrev_attr *attr;
948
949 attr = (abbrev_attr *) xmalloc (sizeof (*attr));
950
951 attr->attribute = attribute;
952 attr->form = form;
953 attr->implicit_const = implicit_const;
954 attr->next = NULL;
955
956 assert (list != NULL && list->last_abbrev != NULL);
957
958 if (list->last_abbrev->first_attr == NULL)
959 list->last_abbrev->first_attr = attr;
960 else
961 list->last_abbrev->last_attr->next = attr;
962
963 list->last_abbrev->last_attr = attr;
964 }
965
966 /* Return processed (partial) contents of a .debug_abbrev section.
967 Returns NULL on errors. */
968
969 static abbrev_list *
970 process_abbrev_set (struct dwarf_section *section,
971 unsigned char *start,
972 unsigned char *end)
973 {
974 abbrev_list *list = xmalloc (sizeof (*list));
975 list->first_abbrev = NULL;
976 list->last_abbrev = NULL;
977 list->raw = start;
978
979 while (start < end)
980 {
981 unsigned long entry;
982 unsigned long tag;
983 unsigned long attribute;
984 int children;
985
986 READ_ULEB (entry, start, end);
987
988 /* A single zero is supposed to end the set according
989 to the standard. If there's more, then signal that to
990 the caller. */
991 if (start == end || entry == 0)
992 {
993 list->next = NULL;
994 list->start_of_next_abbrevs = start != end ? start : NULL;
995 return list;
996 }
997
998 READ_ULEB (tag, start, end);
999 if (start == end)
1000 {
1001 free (list);
1002 return NULL;
1003 }
1004
1005 children = *start++;
1006
1007 add_abbrev (entry, tag, children, list);
1008
1009 do
1010 {
1011 unsigned long form;
1012 /* Initialize it due to a false compiler warning. */
1013 int64_t implicit_const = -1;
1014
1015 READ_ULEB (attribute, start, end);
1016 if (start == end)
1017 break;
1018
1019 READ_ULEB (form, start, end);
1020 if (start == end)
1021 break;
1022
1023 if (form == DW_FORM_implicit_const)
1024 {
1025 READ_SLEB (implicit_const, start, end);
1026 if (start == end)
1027 break;
1028 }
1029
1030 add_abbrev_attr (attribute, form, implicit_const, list);
1031 }
1032 while (attribute != 0);
1033 }
1034
1035 /* Report the missing single zero which ends the section. */
1036 error (_("%s section not zero terminated\n"), section->name);
1037
1038 free (list);
1039 return NULL;
1040 }
1041
1042 /* Return a sequence of abbrevs in SECTION starting at ABBREV_BASE
1043 plus ABBREV_OFFSET and finishing at ABBREV_BASE + ABBREV_SIZE.
1044 If FREE_LIST is non-NULL search the already decoded abbrevs on
1045 abbrev_lists first and if found set *FREE_LIST to NULL. If
1046 searching doesn't find a matching abbrev, set *FREE_LIST to the
1047 newly allocated list. If FREE_LIST is NULL, no search is done and
1048 the returned abbrev_list is always newly allocated. */
1049
1050 static abbrev_list *
1051 find_and_process_abbrev_set (struct dwarf_section *section,
1052 uint64_t abbrev_base,
1053 uint64_t abbrev_size,
1054 uint64_t abbrev_offset,
1055 abbrev_list **free_list)
1056 {
1057 if (free_list)
1058 *free_list = NULL;
1059
1060 if (abbrev_base >= section->size
1061 || abbrev_size > section->size - abbrev_base)
1062 {
1063 /* PR 17531: file:4bcd9ce9. */
1064 warn (_("Debug info is corrupted, abbrev size (%#" PRIx64 ")"
1065 " is larger than abbrev section size (%#" PRIx64 ")\n"),
1066 abbrev_base + abbrev_size, section->size);
1067 return NULL;
1068 }
1069 if (abbrev_offset >= abbrev_size)
1070 {
1071 warn (_("Debug info is corrupted, abbrev offset (%#" PRIx64 ")"
1072 " is larger than abbrev section size (%#" PRIx64 ")\n"),
1073 abbrev_offset, abbrev_size);
1074 return NULL;
1075 }
1076
1077 unsigned char *start = section->start + abbrev_base + abbrev_offset;
1078 unsigned char *end = section->start + abbrev_base + abbrev_size;
1079 abbrev_list *list = NULL;
1080 if (free_list)
1081 list = find_abbrev_list_by_raw_abbrev (start);
1082 if (list == NULL)
1083 {
1084 list = process_abbrev_set (section, start, end);
1085 if (free_list)
1086 *free_list = list;
1087 }
1088 return list;
1089 }
1090
1091 static const char *
1092 get_TAG_name (uint64_t tag)
1093 {
1094 const char *name = NULL;
1095
1096 if ((unsigned int) tag == tag)
1097 name = get_DW_TAG_name ((unsigned int) tag);
1098 if (name == NULL)
1099 {
1100 static char buffer[100];
1101
1102 if (tag >= DW_TAG_lo_user && tag <= DW_TAG_hi_user)
1103 snprintf (buffer, sizeof (buffer),
1104 _("User TAG value: %#" PRIx64), tag);
1105 else
1106 snprintf (buffer, sizeof (buffer),
1107 _("Unknown TAG value: %#" PRIx64), tag);
1108 return buffer;
1109 }
1110
1111 return name;
1112 }
1113
1114 static const char *
1115 get_FORM_name (unsigned long form)
1116 {
1117 const char *name = NULL;
1118
1119 if (form == 0)
1120 return "DW_FORM value: 0";
1121
1122 if ((unsigned int) form == form)
1123 name = get_DW_FORM_name ((unsigned int) form);
1124 if (name == NULL)
1125 {
1126 static char buffer[100];
1127
1128 snprintf (buffer, sizeof (buffer), _("Unknown FORM value: %lx"), form);
1129 return buffer;
1130 }
1131
1132 return name;
1133 }
1134
1135 static const char *
1136 get_IDX_name (unsigned long idx)
1137 {
1138 const char *name = NULL;
1139
1140 if ((unsigned int) idx == idx)
1141 name = get_DW_IDX_name ((unsigned int) idx);
1142 if (name == NULL)
1143 {
1144 static char buffer[100];
1145
1146 snprintf (buffer, sizeof (buffer), _("Unknown IDX value: %lx"), idx);
1147 return buffer;
1148 }
1149
1150 return name;
1151 }
1152
1153 static unsigned char *
1154 display_block (unsigned char *data,
1155 uint64_t length,
1156 const unsigned char * const end, char delimiter)
1157 {
1158 size_t maxlen;
1159
1160 printf (_("%c%" PRIu64 " byte block: "), delimiter, length);
1161 if (data > end)
1162 return (unsigned char *) end;
1163
1164 maxlen = end - data;
1165 length = length > maxlen ? maxlen : length;
1166
1167 while (length --)
1168 printf ("%" PRIx64 " ", byte_get (data++, 1));
1169
1170 return data;
1171 }
1172
1173 static int
1174 decode_location_expression (unsigned char * data,
1175 unsigned int pointer_size,
1176 unsigned int offset_size,
1177 int dwarf_version,
1178 uint64_t length,
1179 uint64_t cu_offset,
1180 struct dwarf_section * section)
1181 {
1182 unsigned op;
1183 uint64_t uvalue;
1184 int64_t svalue;
1185 unsigned char *end = data + length;
1186 int need_frame_base = 0;
1187
1188 while (data < end)
1189 {
1190 op = *data++;
1191
1192 switch (op)
1193 {
1194 case DW_OP_addr:
1195 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1196 printf ("DW_OP_addr: %" PRIx64, uvalue);
1197 break;
1198 case DW_OP_deref:
1199 printf ("DW_OP_deref");
1200 break;
1201 case DW_OP_const1u:
1202 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1203 printf ("DW_OP_const1u: %" PRIu64, uvalue);
1204 break;
1205 case DW_OP_const1s:
1206 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 1, end);
1207 printf ("DW_OP_const1s: %" PRId64, svalue);
1208 break;
1209 case DW_OP_const2u:
1210 SAFE_BYTE_GET_AND_INC (uvalue, data, 2, end);
1211 printf ("DW_OP_const2u: %" PRIu64, uvalue);
1212 break;
1213 case DW_OP_const2s:
1214 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
1215 printf ("DW_OP_const2s: %" PRId64, svalue);
1216 break;
1217 case DW_OP_const4u:
1218 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
1219 printf ("DW_OP_const4u: %" PRIu64, uvalue);
1220 break;
1221 case DW_OP_const4s:
1222 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end);
1223 printf ("DW_OP_const4s: %" PRId64, svalue);
1224 break;
1225 case DW_OP_const8u:
1226 SAFE_BYTE_GET_AND_INC (uvalue, data, 8, end);
1227 printf ("DW_OP_const8u: %" PRIu64, uvalue);
1228 break;
1229 case DW_OP_const8s:
1230 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 8, end);
1231 printf ("DW_OP_const8s: %" PRId64, svalue);
1232 break;
1233 case DW_OP_constu:
1234 READ_ULEB (uvalue, data, end);
1235 printf ("DW_OP_constu: %" PRIu64, uvalue);
1236 break;
1237 case DW_OP_consts:
1238 READ_SLEB (svalue, data, end);
1239 printf ("DW_OP_consts: %" PRId64, svalue);
1240 break;
1241 case DW_OP_dup:
1242 printf ("DW_OP_dup");
1243 break;
1244 case DW_OP_drop:
1245 printf ("DW_OP_drop");
1246 break;
1247 case DW_OP_over:
1248 printf ("DW_OP_over");
1249 break;
1250 case DW_OP_pick:
1251 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1252 printf ("DW_OP_pick: %" PRIu64, uvalue);
1253 break;
1254 case DW_OP_swap:
1255 printf ("DW_OP_swap");
1256 break;
1257 case DW_OP_rot:
1258 printf ("DW_OP_rot");
1259 break;
1260 case DW_OP_xderef:
1261 printf ("DW_OP_xderef");
1262 break;
1263 case DW_OP_abs:
1264 printf ("DW_OP_abs");
1265 break;
1266 case DW_OP_and:
1267 printf ("DW_OP_and");
1268 break;
1269 case DW_OP_div:
1270 printf ("DW_OP_div");
1271 break;
1272 case DW_OP_minus:
1273 printf ("DW_OP_minus");
1274 break;
1275 case DW_OP_mod:
1276 printf ("DW_OP_mod");
1277 break;
1278 case DW_OP_mul:
1279 printf ("DW_OP_mul");
1280 break;
1281 case DW_OP_neg:
1282 printf ("DW_OP_neg");
1283 break;
1284 case DW_OP_not:
1285 printf ("DW_OP_not");
1286 break;
1287 case DW_OP_or:
1288 printf ("DW_OP_or");
1289 break;
1290 case DW_OP_plus:
1291 printf ("DW_OP_plus");
1292 break;
1293 case DW_OP_plus_uconst:
1294 READ_ULEB (uvalue, data, end);
1295 printf ("DW_OP_plus_uconst: %" PRIu64, uvalue);
1296 break;
1297 case DW_OP_shl:
1298 printf ("DW_OP_shl");
1299 break;
1300 case DW_OP_shr:
1301 printf ("DW_OP_shr");
1302 break;
1303 case DW_OP_shra:
1304 printf ("DW_OP_shra");
1305 break;
1306 case DW_OP_xor:
1307 printf ("DW_OP_xor");
1308 break;
1309 case DW_OP_bra:
1310 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
1311 printf ("DW_OP_bra: %" PRId64, svalue);
1312 break;
1313 case DW_OP_eq:
1314 printf ("DW_OP_eq");
1315 break;
1316 case DW_OP_ge:
1317 printf ("DW_OP_ge");
1318 break;
1319 case DW_OP_gt:
1320 printf ("DW_OP_gt");
1321 break;
1322 case DW_OP_le:
1323 printf ("DW_OP_le");
1324 break;
1325 case DW_OP_lt:
1326 printf ("DW_OP_lt");
1327 break;
1328 case DW_OP_ne:
1329 printf ("DW_OP_ne");
1330 break;
1331 case DW_OP_skip:
1332 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
1333 printf ("DW_OP_skip: %" PRId64, svalue);
1334 break;
1335
1336 case DW_OP_lit0:
1337 case DW_OP_lit1:
1338 case DW_OP_lit2:
1339 case DW_OP_lit3:
1340 case DW_OP_lit4:
1341 case DW_OP_lit5:
1342 case DW_OP_lit6:
1343 case DW_OP_lit7:
1344 case DW_OP_lit8:
1345 case DW_OP_lit9:
1346 case DW_OP_lit10:
1347 case DW_OP_lit11:
1348 case DW_OP_lit12:
1349 case DW_OP_lit13:
1350 case DW_OP_lit14:
1351 case DW_OP_lit15:
1352 case DW_OP_lit16:
1353 case DW_OP_lit17:
1354 case DW_OP_lit18:
1355 case DW_OP_lit19:
1356 case DW_OP_lit20:
1357 case DW_OP_lit21:
1358 case DW_OP_lit22:
1359 case DW_OP_lit23:
1360 case DW_OP_lit24:
1361 case DW_OP_lit25:
1362 case DW_OP_lit26:
1363 case DW_OP_lit27:
1364 case DW_OP_lit28:
1365 case DW_OP_lit29:
1366 case DW_OP_lit30:
1367 case DW_OP_lit31:
1368 printf ("DW_OP_lit%d", op - DW_OP_lit0);
1369 break;
1370
1371 case DW_OP_reg0:
1372 case DW_OP_reg1:
1373 case DW_OP_reg2:
1374 case DW_OP_reg3:
1375 case DW_OP_reg4:
1376 case DW_OP_reg5:
1377 case DW_OP_reg6:
1378 case DW_OP_reg7:
1379 case DW_OP_reg8:
1380 case DW_OP_reg9:
1381 case DW_OP_reg10:
1382 case DW_OP_reg11:
1383 case DW_OP_reg12:
1384 case DW_OP_reg13:
1385 case DW_OP_reg14:
1386 case DW_OP_reg15:
1387 case DW_OP_reg16:
1388 case DW_OP_reg17:
1389 case DW_OP_reg18:
1390 case DW_OP_reg19:
1391 case DW_OP_reg20:
1392 case DW_OP_reg21:
1393 case DW_OP_reg22:
1394 case DW_OP_reg23:
1395 case DW_OP_reg24:
1396 case DW_OP_reg25:
1397 case DW_OP_reg26:
1398 case DW_OP_reg27:
1399 case DW_OP_reg28:
1400 case DW_OP_reg29:
1401 case DW_OP_reg30:
1402 case DW_OP_reg31:
1403 printf ("DW_OP_reg%d (%s)", op - DW_OP_reg0,
1404 regname (op - DW_OP_reg0, 1));
1405 break;
1406
1407 case DW_OP_breg0:
1408 case DW_OP_breg1:
1409 case DW_OP_breg2:
1410 case DW_OP_breg3:
1411 case DW_OP_breg4:
1412 case DW_OP_breg5:
1413 case DW_OP_breg6:
1414 case DW_OP_breg7:
1415 case DW_OP_breg8:
1416 case DW_OP_breg9:
1417 case DW_OP_breg10:
1418 case DW_OP_breg11:
1419 case DW_OP_breg12:
1420 case DW_OP_breg13:
1421 case DW_OP_breg14:
1422 case DW_OP_breg15:
1423 case DW_OP_breg16:
1424 case DW_OP_breg17:
1425 case DW_OP_breg18:
1426 case DW_OP_breg19:
1427 case DW_OP_breg20:
1428 case DW_OP_breg21:
1429 case DW_OP_breg22:
1430 case DW_OP_breg23:
1431 case DW_OP_breg24:
1432 case DW_OP_breg25:
1433 case DW_OP_breg26:
1434 case DW_OP_breg27:
1435 case DW_OP_breg28:
1436 case DW_OP_breg29:
1437 case DW_OP_breg30:
1438 case DW_OP_breg31:
1439 READ_SLEB (svalue, data, end);
1440 printf ("DW_OP_breg%d (%s): %" PRId64,
1441 op - DW_OP_breg0, regname (op - DW_OP_breg0, 1), svalue);
1442 break;
1443
1444 case DW_OP_regx:
1445 READ_ULEB (uvalue, data, end);
1446 printf ("DW_OP_regx: %" PRIu64 " (%s)",
1447 uvalue, regname (uvalue, 1));
1448 break;
1449 case DW_OP_fbreg:
1450 need_frame_base = 1;
1451 READ_SLEB (svalue, data, end);
1452 printf ("DW_OP_fbreg: %" PRId64, svalue);
1453 break;
1454 case DW_OP_bregx:
1455 READ_ULEB (uvalue, data, end);
1456 READ_SLEB (svalue, data, end);
1457 printf ("DW_OP_bregx: %" PRIu64 " (%s) %" PRId64,
1458 uvalue, regname (uvalue, 1), svalue);
1459 break;
1460 case DW_OP_piece:
1461 READ_ULEB (uvalue, data, end);
1462 printf ("DW_OP_piece: %" PRIu64, uvalue);
1463 break;
1464 case DW_OP_deref_size:
1465 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1466 printf ("DW_OP_deref_size: %" PRIu64, uvalue);
1467 break;
1468 case DW_OP_xderef_size:
1469 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1470 printf ("DW_OP_xderef_size: %" PRIu64, uvalue);
1471 break;
1472 case DW_OP_nop:
1473 printf ("DW_OP_nop");
1474 break;
1475
1476 /* DWARF 3 extensions. */
1477 case DW_OP_push_object_address:
1478 printf ("DW_OP_push_object_address");
1479 break;
1480 case DW_OP_call2:
1481 /* FIXME: Strictly speaking for 64-bit DWARF3 files
1482 this ought to be an 8-byte wide computation. */
1483 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
1484 printf ("DW_OP_call2: <%#" PRIx64 ">", svalue + cu_offset);
1485 break;
1486 case DW_OP_call4:
1487 /* FIXME: Strictly speaking for 64-bit DWARF3 files
1488 this ought to be an 8-byte wide computation. */
1489 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end);
1490 printf ("DW_OP_call4: <%#" PRIx64 ">", svalue + cu_offset);
1491 break;
1492 case DW_OP_call_ref:
1493 /* FIXME: Strictly speaking for 64-bit DWARF3 files
1494 this ought to be an 8-byte wide computation. */
1495 if (dwarf_version == -1)
1496 {
1497 printf (_("(DW_OP_call_ref in frame info)"));
1498 /* No way to tell where the next op is, so just bail. */
1499 return need_frame_base;
1500 }
1501 if (dwarf_version == 2)
1502 {
1503 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1504 }
1505 else
1506 {
1507 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1508 }
1509 printf ("DW_OP_call_ref: <%#" PRIx64 ">", uvalue);
1510 break;
1511 case DW_OP_form_tls_address:
1512 printf ("DW_OP_form_tls_address");
1513 break;
1514 case DW_OP_call_frame_cfa:
1515 printf ("DW_OP_call_frame_cfa");
1516 break;
1517 case DW_OP_bit_piece:
1518 printf ("DW_OP_bit_piece: ");
1519 READ_ULEB (uvalue, data, end);
1520 printf (_("size: %" PRIu64 " "), uvalue);
1521 READ_ULEB (uvalue, data, end);
1522 printf (_("offset: %" PRIu64 " "), uvalue);
1523 break;
1524
1525 /* DWARF 4 extensions. */
1526 case DW_OP_stack_value:
1527 printf ("DW_OP_stack_value");
1528 break;
1529
1530 case DW_OP_implicit_value:
1531 printf ("DW_OP_implicit_value");
1532 READ_ULEB (uvalue, data, end);
1533 data = display_block (data, uvalue, end, ' ');
1534 break;
1535
1536 /* GNU extensions. */
1537 case DW_OP_GNU_push_tls_address:
1538 printf (_("DW_OP_GNU_push_tls_address or DW_OP_HP_unknown"));
1539 break;
1540 case DW_OP_GNU_uninit:
1541 printf ("DW_OP_GNU_uninit");
1542 /* FIXME: Is there data associated with this OP ? */
1543 break;
1544 case DW_OP_GNU_encoded_addr:
1545 {
1546 int encoding = 0;
1547 uint64_t addr;
1548
1549 if (data < end)
1550 encoding = *data++;
1551 addr = get_encoded_value (&data, encoding, section, end);
1552
1553 printf ("DW_OP_GNU_encoded_addr: fmt:%02x addr:", encoding);
1554 print_hex_ns (addr, pointer_size);
1555 }
1556 break;
1557 case DW_OP_implicit_pointer:
1558 case DW_OP_GNU_implicit_pointer:
1559 /* FIXME: Strictly speaking for 64-bit DWARF3 files
1560 this ought to be an 8-byte wide computation. */
1561 if (dwarf_version == -1)
1562 {
1563 printf (_("(%s in frame info)"),
1564 (op == DW_OP_implicit_pointer
1565 ? "DW_OP_implicit_pointer"
1566 : "DW_OP_GNU_implicit_pointer"));
1567 /* No way to tell where the next op is, so just bail. */
1568 return need_frame_base;
1569 }
1570 if (dwarf_version == 2)
1571 {
1572 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1573 }
1574 else
1575 {
1576 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1577 }
1578 READ_SLEB (svalue, data, end);
1579 printf ("%s: <%#" PRIx64 "> %" PRId64,
1580 (op == DW_OP_implicit_pointer
1581 ? "DW_OP_implicit_pointer" : "DW_OP_GNU_implicit_pointer"),
1582 uvalue, svalue);
1583 break;
1584 case DW_OP_entry_value:
1585 case DW_OP_GNU_entry_value:
1586 READ_ULEB (uvalue, data, end);
1587 /* PR 17531: file: 0cc9cd00. */
1588 if (uvalue > (size_t) (end - data))
1589 uvalue = end - data;
1590 printf ("%s: (", (op == DW_OP_entry_value ? "DW_OP_entry_value"
1591 : "DW_OP_GNU_entry_value"));
1592 if (decode_location_expression (data, pointer_size, offset_size,
1593 dwarf_version, uvalue,
1594 cu_offset, section))
1595 need_frame_base = 1;
1596 putchar (')');
1597 data += uvalue;
1598 break;
1599 case DW_OP_const_type:
1600 case DW_OP_GNU_const_type:
1601 READ_ULEB (uvalue, data, end);
1602 printf ("%s: <%#" PRIx64 "> ",
1603 (op == DW_OP_const_type ? "DW_OP_const_type"
1604 : "DW_OP_GNU_const_type"),
1605 cu_offset + uvalue);
1606 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1607 data = display_block (data, uvalue, end, ' ');
1608 break;
1609 case DW_OP_regval_type:
1610 case DW_OP_GNU_regval_type:
1611 READ_ULEB (uvalue, data, end);
1612 printf ("%s: %" PRIu64 " (%s)",
1613 (op == DW_OP_regval_type ? "DW_OP_regval_type"
1614 : "DW_OP_GNU_regval_type"),
1615 uvalue, regname (uvalue, 1));
1616 READ_ULEB (uvalue, data, end);
1617 printf (" <%#" PRIx64 ">", cu_offset + uvalue);
1618 break;
1619 case DW_OP_deref_type:
1620 case DW_OP_GNU_deref_type:
1621 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1622 printf ("%s: %" PRId64,
1623 (op == DW_OP_deref_type ? "DW_OP_deref_type"
1624 : "DW_OP_GNU_deref_type"),
1625 uvalue);
1626 READ_ULEB (uvalue, data, end);
1627 printf (" <%#" PRIx64 ">", cu_offset + uvalue);
1628 break;
1629 case DW_OP_convert:
1630 case DW_OP_GNU_convert:
1631 READ_ULEB (uvalue, data, end);
1632 printf ("%s <%#" PRIx64 ">",
1633 (op == DW_OP_convert ? "DW_OP_convert" : "DW_OP_GNU_convert"),
1634 uvalue ? cu_offset + uvalue : uvalue);
1635 break;
1636 case DW_OP_reinterpret:
1637 case DW_OP_GNU_reinterpret:
1638 READ_ULEB (uvalue, data, end);
1639 printf ("%s <%#" PRIx64 ">",
1640 (op == DW_OP_reinterpret ? "DW_OP_reinterpret"
1641 : "DW_OP_GNU_reinterpret"),
1642 uvalue ? cu_offset + uvalue : uvalue);
1643 break;
1644 case DW_OP_GNU_parameter_ref:
1645 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
1646 printf ("DW_OP_GNU_parameter_ref: <%#" PRIx64 ">",
1647 cu_offset + uvalue);
1648 break;
1649 case DW_OP_addrx:
1650 READ_ULEB (uvalue, data, end);
1651 printf ("DW_OP_addrx <%#" PRIx64 ">", uvalue);
1652 break;
1653 case DW_OP_GNU_addr_index:
1654 READ_ULEB (uvalue, data, end);
1655 printf ("DW_OP_GNU_addr_index <%#" PRIx64 ">", uvalue);
1656 break;
1657 case DW_OP_GNU_const_index:
1658 READ_ULEB (uvalue, data, end);
1659 printf ("DW_OP_GNU_const_index <%#" PRIx64 ">", uvalue);
1660 break;
1661 case DW_OP_GNU_variable_value:
1662 /* FIXME: Strictly speaking for 64-bit DWARF3 files
1663 this ought to be an 8-byte wide computation. */
1664 if (dwarf_version == -1)
1665 {
1666 printf (_("(DW_OP_GNU_variable_value in frame info)"));
1667 /* No way to tell where the next op is, so just bail. */
1668 return need_frame_base;
1669 }
1670 if (dwarf_version == 2)
1671 {
1672 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1673 }
1674 else
1675 {
1676 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1677 }
1678 printf ("DW_OP_GNU_variable_value: <%#" PRIx64 ">", uvalue);
1679 break;
1680
1681 /* HP extensions. */
1682 case DW_OP_HP_is_value:
1683 printf ("DW_OP_HP_is_value");
1684 /* FIXME: Is there data associated with this OP ? */
1685 break;
1686 case DW_OP_HP_fltconst4:
1687 printf ("DW_OP_HP_fltconst4");
1688 /* FIXME: Is there data associated with this OP ? */
1689 break;
1690 case DW_OP_HP_fltconst8:
1691 printf ("DW_OP_HP_fltconst8");
1692 /* FIXME: Is there data associated with this OP ? */
1693 break;
1694 case DW_OP_HP_mod_range:
1695 printf ("DW_OP_HP_mod_range");
1696 /* FIXME: Is there data associated with this OP ? */
1697 break;
1698 case DW_OP_HP_unmod_range:
1699 printf ("DW_OP_HP_unmod_range");
1700 /* FIXME: Is there data associated with this OP ? */
1701 break;
1702 case DW_OP_HP_tls:
1703 printf ("DW_OP_HP_tls");
1704 /* FIXME: Is there data associated with this OP ? */
1705 break;
1706
1707 /* PGI (STMicroelectronics) extensions. */
1708 case DW_OP_PGI_omp_thread_num:
1709 /* Pushes the thread number for the current thread as it would be
1710 returned by the standard OpenMP library function:
1711 omp_get_thread_num(). The "current thread" is the thread for
1712 which the expression is being evaluated. */
1713 printf ("DW_OP_PGI_omp_thread_num");
1714 break;
1715
1716 default:
1717 if (op >= DW_OP_lo_user
1718 && op <= DW_OP_hi_user)
1719 printf (_("(User defined location op %#x)"), op);
1720 else
1721 printf (_("(Unknown location op %#x)"), op);
1722 /* No way to tell where the next op is, so just bail. */
1723 return need_frame_base;
1724 }
1725
1726 /* Separate the ops. */
1727 if (data < end)
1728 printf ("; ");
1729 }
1730
1731 return need_frame_base;
1732 }
1733
1734 /* Find the CU or TU set corresponding to the given CU_OFFSET.
1735 This is used for DWARF package files. */
1736
1737 static struct cu_tu_set *
1738 find_cu_tu_set_v2 (uint64_t cu_offset, int do_types)
1739 {
1740 struct cu_tu_set *p;
1741 unsigned int nsets;
1742 unsigned int dw_sect;
1743
1744 if (do_types)
1745 {
1746 p = tu_sets;
1747 nsets = tu_count;
1748 dw_sect = DW_SECT_TYPES;
1749 }
1750 else
1751 {
1752 p = cu_sets;
1753 nsets = cu_count;
1754 dw_sect = DW_SECT_INFO;
1755 }
1756 while (nsets > 0)
1757 {
1758 if (p->section_offsets [dw_sect] == cu_offset)
1759 return p;
1760 p++;
1761 nsets--;
1762 }
1763 return NULL;
1764 }
1765
1766 static const char *
1767 fetch_alt_indirect_string (uint64_t offset)
1768 {
1769 separate_info * i;
1770
1771 if (! do_follow_links)
1772 return "";
1773
1774 if (first_separate_info == NULL)
1775 return _("<no links available>");
1776
1777 for (i = first_separate_info; i != NULL; i = i->next)
1778 {
1779 struct dwarf_section * section;
1780 const char * ret;
1781
1782 if (! load_debug_section (separate_debug_str, i->handle))
1783 continue;
1784
1785 section = &debug_displays [separate_debug_str].section;
1786
1787 if (section->start == NULL)
1788 continue;
1789
1790 if (offset >= section->size)
1791 continue;
1792
1793 ret = (const char *) (section->start + offset);
1794 /* Unfortunately we cannot rely upon the .debug_str section ending with a
1795 NUL byte. Since our caller is expecting to receive a well formed C
1796 string we test for the lack of a terminating byte here. */
1797 if (strnlen ((const char *) ret, section->size - offset)
1798 == section->size - offset)
1799 return _("<no NUL byte at end of alt .debug_str section>");
1800
1801 return ret;
1802 }
1803
1804 warn (_("DW_FORM_GNU_strp_alt offset (%#" PRIx64 ")"
1805 " too big or no string sections available\n"), offset);
1806 return _("<offset is too big>");
1807 }
1808
1809 static const char *
1810 get_AT_name (unsigned long attribute)
1811 {
1812 const char *name;
1813
1814 if (attribute == 0)
1815 return "DW_AT value: 0";
1816
1817 /* One value is shared by the MIPS and HP extensions: */
1818 if (attribute == DW_AT_MIPS_fde)
1819 return "DW_AT_MIPS_fde or DW_AT_HP_unmodifiable";
1820
1821 name = get_DW_AT_name (attribute);
1822
1823 if (name == NULL)
1824 {
1825 static char buffer[100];
1826
1827 snprintf (buffer, sizeof (buffer), _("Unknown AT value: %lx"),
1828 attribute);
1829 return buffer;
1830 }
1831
1832 return name;
1833 }
1834
1835 static void
1836 add_dwo_info (const char * value, uint64_t cu_offset, dwo_type type)
1837 {
1838 dwo_info * dwinfo = xmalloc (sizeof * dwinfo);
1839
1840 dwinfo->type = type;
1841 dwinfo->value = value;
1842 dwinfo->cu_offset = cu_offset;
1843 dwinfo->next = first_dwo_info;
1844 first_dwo_info = dwinfo;
1845 }
1846
1847 static void
1848 add_dwo_name (const char * name, uint64_t cu_offset)
1849 {
1850 add_dwo_info (name, cu_offset, DWO_NAME);
1851 }
1852
1853 static void
1854 add_dwo_dir (const char * dir, uint64_t cu_offset)
1855 {
1856 add_dwo_info (dir, cu_offset, DWO_DIR);
1857 }
1858
1859 static void
1860 add_dwo_id (const char * id, uint64_t cu_offset)
1861 {
1862 add_dwo_info (id, cu_offset, DWO_ID);
1863 }
1864
1865 static void
1866 free_dwo_info (void)
1867 {
1868 dwo_info * dwinfo;
1869 dwo_info * next;
1870
1871 for (dwinfo = first_dwo_info; dwinfo != NULL; dwinfo = next)
1872 {
1873 next = dwinfo->next;
1874 free (dwinfo);
1875 }
1876 first_dwo_info = NULL;
1877 }
1878
1879 /* Ensure that START + UVALUE is less than END.
1880 Return an adjusted UVALUE if necessary to ensure this relationship. */
1881
1882 static inline uint64_t
1883 check_uvalue (const unsigned char *start,
1884 uint64_t uvalue,
1885 const unsigned char *end)
1886 {
1887 uint64_t max_uvalue = end - start;
1888
1889 /* See PR 17512: file: 008-103549-0.001:0.1.
1890 and PR 24829 for examples of where these tests are triggered. */
1891 if (uvalue > max_uvalue)
1892 {
1893 warn (_("Corrupt attribute block length: %#" PRIx64 "\n"), uvalue);
1894 uvalue = max_uvalue;
1895 }
1896
1897 return uvalue;
1898 }
1899
1900 static unsigned char *
1901 skip_attr_bytes (unsigned long form,
1902 unsigned char *data,
1903 unsigned char *end,
1904 uint64_t pointer_size,
1905 uint64_t offset_size,
1906 int dwarf_version,
1907 uint64_t *value_return)
1908 {
1909 int64_t svalue;
1910 uint64_t uvalue = 0;
1911 uint64_t inc = 0;
1912
1913 * value_return = 0;
1914
1915 switch (form)
1916 {
1917 case DW_FORM_ref_addr:
1918 if (dwarf_version == 2)
1919 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1920 else if (dwarf_version > 2)
1921 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1922 else
1923 return NULL;
1924 break;
1925
1926 case DW_FORM_addr:
1927 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1928 break;
1929
1930 case DW_FORM_strp:
1931 case DW_FORM_line_strp:
1932 case DW_FORM_sec_offset:
1933 case DW_FORM_GNU_ref_alt:
1934 case DW_FORM_GNU_strp_alt:
1935 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1936 break;
1937
1938 case DW_FORM_flag_present:
1939 uvalue = 1;
1940 break;
1941
1942 case DW_FORM_ref1:
1943 case DW_FORM_flag:
1944 case DW_FORM_data1:
1945 case DW_FORM_strx1:
1946 case DW_FORM_addrx1:
1947 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1948 break;
1949
1950 case DW_FORM_strx3:
1951 case DW_FORM_addrx3:
1952 SAFE_BYTE_GET_AND_INC (uvalue, data, 3, end);
1953 break;
1954
1955 case DW_FORM_ref2:
1956 case DW_FORM_data2:
1957 case DW_FORM_strx2:
1958 case DW_FORM_addrx2:
1959 SAFE_BYTE_GET_AND_INC (uvalue, data, 2, end);
1960 break;
1961
1962 case DW_FORM_ref4:
1963 case DW_FORM_data4:
1964 case DW_FORM_strx4:
1965 case DW_FORM_addrx4:
1966 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
1967 break;
1968
1969 case DW_FORM_sdata:
1970 READ_SLEB (svalue, data, end);
1971 uvalue = svalue;
1972 break;
1973
1974 case DW_FORM_ref_udata:
1975 case DW_FORM_udata:
1976 case DW_FORM_GNU_str_index:
1977 case DW_FORM_strx:
1978 case DW_FORM_GNU_addr_index:
1979 case DW_FORM_addrx:
1980 case DW_FORM_loclistx:
1981 case DW_FORM_rnglistx:
1982 READ_ULEB (uvalue, data, end);
1983 break;
1984
1985 case DW_FORM_ref8:
1986 SAFE_BYTE_GET_AND_INC (uvalue, data, 8, end);
1987 break;
1988
1989 case DW_FORM_data8:
1990 case DW_FORM_ref_sig8:
1991 inc = 8;
1992 break;
1993
1994 case DW_FORM_data16:
1995 inc = 16;
1996 break;
1997
1998 case DW_FORM_string:
1999 inc = strnlen ((char *) data, end - data) + 1;
2000 break;
2001
2002 case DW_FORM_block:
2003 case DW_FORM_exprloc:
2004 READ_ULEB (uvalue, data, end);
2005 inc = uvalue;
2006 break;
2007
2008 case DW_FORM_block1:
2009 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
2010 inc = uvalue;
2011 break;
2012
2013 case DW_FORM_block2:
2014 SAFE_BYTE_GET_AND_INC (uvalue, data, 2, end);
2015 inc = uvalue;
2016 break;
2017
2018 case DW_FORM_block4:
2019 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
2020 inc = uvalue;
2021 break;
2022
2023 case DW_FORM_indirect:
2024 READ_ULEB (form, data, end);
2025 if (form == DW_FORM_implicit_const)
2026 SKIP_ULEB (data, end);
2027 return skip_attr_bytes (form, data, end, pointer_size, offset_size,
2028 dwarf_version, value_return);
2029
2030 default:
2031 return NULL;
2032 }
2033
2034 * value_return = uvalue;
2035 if (inc <= (size_t) (end - data))
2036 data += inc;
2037 else
2038 data = end;
2039 return data;
2040 }
2041
2042 /* Given form FORM with value UVALUE, locate and return the abbreviation
2043 associated with it. */
2044
2045 static abbrev_entry *
2046 get_type_abbrev_from_form (unsigned long form,
2047 unsigned long uvalue,
2048 uint64_t cu_offset,
2049 unsigned char *cu_end,
2050 const struct dwarf_section *section,
2051 unsigned long *abbrev_num_return,
2052 unsigned char **data_return,
2053 abbrev_map **map_return)
2054 {
2055 unsigned long abbrev_number;
2056 abbrev_map * map;
2057 abbrev_entry * entry;
2058 unsigned char * data;
2059
2060 if (abbrev_num_return != NULL)
2061 * abbrev_num_return = 0;
2062 if (data_return != NULL)
2063 * data_return = NULL;
2064
2065 switch (form)
2066 {
2067 case DW_FORM_GNU_ref_alt:
2068 case DW_FORM_ref_sig8:
2069 /* FIXME: We are unable to handle this form at the moment. */
2070 return NULL;
2071
2072 case DW_FORM_ref_addr:
2073 if (uvalue >= section->size)
2074 {
2075 warn (_("Unable to resolve ref_addr form: uvalue %lx "
2076 "> section size %" PRIx64 " (%s)\n"),
2077 uvalue, section->size, section->name);
2078 return NULL;
2079 }
2080 break;
2081
2082 case DW_FORM_ref_sup4:
2083 case DW_FORM_ref_sup8:
2084 break;
2085
2086 case DW_FORM_ref1:
2087 case DW_FORM_ref2:
2088 case DW_FORM_ref4:
2089 case DW_FORM_ref8:
2090 case DW_FORM_ref_udata:
2091 if (uvalue + cu_offset < uvalue
2092 || uvalue + cu_offset > (size_t) (cu_end - section->start))
2093 {
2094 warn (_("Unable to resolve ref form: uvalue %lx + cu_offset %" PRIx64
2095 " > CU size %tx\n"),
2096 uvalue, cu_offset, cu_end - section->start);
2097 return NULL;
2098 }
2099 uvalue += cu_offset;
2100 break;
2101
2102 /* FIXME: Are there other DW_FORMs that can be used by types ? */
2103
2104 default:
2105 warn (_("Unexpected form %lx encountered whilst finding abbreviation for type\n"), form);
2106 return NULL;
2107 }
2108
2109 data = (unsigned char *) section->start + uvalue;
2110 map = find_abbrev_map_by_offset (uvalue);
2111
2112 if (map == NULL)
2113 {
2114 warn (_("Unable to find abbreviations for CU offset %#lx\n"), uvalue);
2115 return NULL;
2116 }
2117 if (map->list == NULL)
2118 {
2119 warn (_("Empty abbreviation list encountered for CU offset %lx\n"), uvalue);
2120 return NULL;
2121 }
2122
2123 if (map_return != NULL)
2124 {
2125 if (form == DW_FORM_ref_addr)
2126 *map_return = map;
2127 else
2128 *map_return = NULL;
2129 }
2130
2131 READ_ULEB (abbrev_number, data, section->start + section->size);
2132
2133 for (entry = map->list->first_abbrev; entry != NULL; entry = entry->next)
2134 if (entry->number == abbrev_number)
2135 break;
2136
2137 if (abbrev_num_return != NULL)
2138 * abbrev_num_return = abbrev_number;
2139
2140 if (data_return != NULL)
2141 * data_return = data;
2142
2143 if (entry == NULL)
2144 warn (_("Unable to find entry for abbreviation %lu\n"), abbrev_number);
2145
2146 return entry;
2147 }
2148
2149 /* Return IS_SIGNED set to TRUE if the type using abbreviation ENTRY
2150 can be determined to be a signed type. The data for ENTRY can be
2151 found starting at DATA. */
2152
2153 static void
2154 get_type_signedness (abbrev_entry *entry,
2155 const struct dwarf_section *section,
2156 unsigned char *data,
2157 unsigned char *end,
2158 uint64_t cu_offset,
2159 uint64_t pointer_size,
2160 uint64_t offset_size,
2161 int dwarf_version,
2162 bool *is_signed,
2163 unsigned int nesting)
2164 {
2165 abbrev_attr * attr;
2166
2167 * is_signed = false;
2168
2169 #define MAX_NESTING 20
2170 if (nesting > MAX_NESTING)
2171 {
2172 /* FIXME: Warn - or is this expected ?
2173 NB/ We need to avoid infinite recursion. */
2174 return;
2175 }
2176
2177 for (attr = entry->first_attr;
2178 attr != NULL && attr->attribute;
2179 attr = attr->next)
2180 {
2181 unsigned char * orig_data = data;
2182 uint64_t uvalue = 0;
2183
2184 data = skip_attr_bytes (attr->form, data, end, pointer_size,
2185 offset_size, dwarf_version, & uvalue);
2186 if (data == NULL)
2187 return;
2188
2189 switch (attr->attribute)
2190 {
2191 case DW_AT_linkage_name:
2192 case DW_AT_name:
2193 if (do_wide)
2194 {
2195 if (attr->form == DW_FORM_strp)
2196 printf (", %s", fetch_indirect_string (uvalue));
2197 else if (attr->form == DW_FORM_string)
2198 printf (", %.*s", (int) (end - orig_data), orig_data);
2199 }
2200 break;
2201
2202 case DW_AT_type:
2203 /* Recurse. */
2204 {
2205 abbrev_entry *type_abbrev;
2206 unsigned char *type_data;
2207 abbrev_map *map;
2208
2209 type_abbrev = get_type_abbrev_from_form (attr->form,
2210 uvalue,
2211 cu_offset,
2212 end,
2213 section,
2214 NULL /* abbrev num return */,
2215 &type_data,
2216 &map);
2217 if (type_abbrev == NULL)
2218 break;
2219
2220 get_type_signedness (type_abbrev, section, type_data,
2221 map ? section->start + map->end : end,
2222 map ? map->start : cu_offset,
2223 pointer_size, offset_size, dwarf_version,
2224 is_signed, nesting + 1);
2225 }
2226 break;
2227
2228 case DW_AT_encoding:
2229 /* Determine signness. */
2230 switch (uvalue)
2231 {
2232 case DW_ATE_address:
2233 /* FIXME - some architectures have signed addresses. */
2234 case DW_ATE_boolean:
2235 case DW_ATE_unsigned:
2236 case DW_ATE_unsigned_char:
2237 case DW_ATE_unsigned_fixed:
2238 * is_signed = false;
2239 break;
2240
2241 default:
2242 case DW_ATE_complex_float:
2243 case DW_ATE_float:
2244 case DW_ATE_signed:
2245 case DW_ATE_signed_char:
2246 case DW_ATE_imaginary_float:
2247 case DW_ATE_decimal_float:
2248 case DW_ATE_signed_fixed:
2249 * is_signed = true;
2250 break;
2251 }
2252 break;
2253 }
2254 }
2255 }
2256
2257 static void
2258 read_and_print_leb128 (unsigned char *data,
2259 unsigned int *bytes_read,
2260 unsigned const char *end,
2261 bool is_signed)
2262 {
2263 int status;
2264 uint64_t val = read_leb128 (data, end, is_signed, bytes_read, &status);
2265 if (status != 0)
2266 report_leb_status (status);
2267 else if (is_signed)
2268 printf ("%" PRId64, val);
2269 else
2270 printf ("%" PRIu64, val);
2271 }
2272
2273 static void
2274 display_discr_list (unsigned long form,
2275 uint64_t uvalue,
2276 unsigned char *data,
2277 int level)
2278 {
2279 unsigned char *end = data;
2280
2281 if (uvalue == 0)
2282 {
2283 printf ("[default]");
2284 return;
2285 }
2286
2287 switch (form)
2288 {
2289 case DW_FORM_block:
2290 case DW_FORM_block1:
2291 case DW_FORM_block2:
2292 case DW_FORM_block4:
2293 /* Move data pointer back to the start of the byte array. */
2294 data -= uvalue;
2295 break;
2296 default:
2297 printf ("<corrupt>\n");
2298 warn (_("corrupt discr_list - not using a block form\n"));
2299 return;
2300 }
2301
2302 if (uvalue < 2)
2303 {
2304 printf ("<corrupt>\n");
2305 warn (_("corrupt discr_list - block not long enough\n"));
2306 return;
2307 }
2308
2309 bool is_signed = (level > 0 && level <= MAX_CU_NESTING
2310 ? level_type_signed [level - 1] : false);
2311
2312 printf ("(");
2313 while (data < end)
2314 {
2315 unsigned char discriminant;
2316 unsigned int bytes_read;
2317
2318 SAFE_BYTE_GET_AND_INC (discriminant, data, 1, end);
2319
2320 switch (discriminant)
2321 {
2322 case DW_DSC_label:
2323 printf ("label ");
2324 read_and_print_leb128 (data, & bytes_read, end, is_signed);
2325 data += bytes_read;
2326 break;
2327
2328 case DW_DSC_range:
2329 printf ("range ");
2330 read_and_print_leb128 (data, & bytes_read, end, is_signed);
2331 data += bytes_read;
2332
2333 printf ("..");
2334 read_and_print_leb128 (data, & bytes_read, end, is_signed);
2335 data += bytes_read;
2336 break;
2337
2338 default:
2339 printf ("<corrupt>\n");
2340 warn (_("corrupt discr_list - unrecognized discriminant byte %#x\n"),
2341 discriminant);
2342 return;
2343 }
2344
2345 if (data < end)
2346 printf (", ");
2347 }
2348
2349 if (is_signed)
2350 printf (")(signed)");
2351 else
2352 printf (")(unsigned)");
2353 }
2354
2355 static unsigned char *
2356 read_and_display_attr_value (unsigned long attribute,
2357 unsigned long form,
2358 int64_t implicit_const,
2359 unsigned char *start,
2360 unsigned char *data,
2361 unsigned char *end,
2362 uint64_t cu_offset,
2363 uint64_t pointer_size,
2364 uint64_t offset_size,
2365 int dwarf_version,
2366 debug_info *debug_info_p,
2367 int do_loc,
2368 struct dwarf_section *section,
2369 struct cu_tu_set *this_set,
2370 char delimiter,
2371 int level)
2372 {
2373 int64_t svalue;
2374 uint64_t uvalue = 0;
2375 uint64_t uvalue_hi = 0;
2376 unsigned char *block_start = NULL;
2377 unsigned char *orig_data = data;
2378
2379 if (data > end || (data == end && form != DW_FORM_flag_present))
2380 {
2381 warn (_("Corrupt attribute\n"));
2382 return data;
2383 }
2384
2385 if (do_wide && ! do_loc)
2386 {
2387 /* PR 26847: Display the name of the form. */
2388 const char * name = get_FORM_name (form);
2389
2390 /* For convenience we skip the DW_FORM_ prefix to the name. */
2391 if (name[0] == 'D')
2392 name += 8; /* strlen ("DW_FORM_") */
2393 printf ("%c(%s)", delimiter, name);
2394 }
2395
2396 switch (form)
2397 {
2398 case DW_FORM_ref_addr:
2399 if (dwarf_version == 2)
2400 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
2401 else if (dwarf_version > 2)
2402 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
2403 else
2404 error (_("Internal error: DW_FORM_ref_addr is not supported in DWARF version 1.\n"));
2405 break;
2406
2407 case DW_FORM_addr:
2408 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
2409 break;
2410
2411 case DW_FORM_strp_sup:
2412 case DW_FORM_strp:
2413 case DW_FORM_line_strp:
2414 case DW_FORM_sec_offset:
2415 case DW_FORM_GNU_ref_alt:
2416 case DW_FORM_GNU_strp_alt:
2417 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
2418 break;
2419
2420 case DW_FORM_flag_present:
2421 uvalue = 1;
2422 break;
2423
2424 case DW_FORM_ref1:
2425 case DW_FORM_flag:
2426 case DW_FORM_data1:
2427 case DW_FORM_strx1:
2428 case DW_FORM_addrx1:
2429 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
2430 break;
2431
2432 case DW_FORM_ref2:
2433 case DW_FORM_data2:
2434 case DW_FORM_strx2:
2435 case DW_FORM_addrx2:
2436 SAFE_BYTE_GET_AND_INC (uvalue, data, 2, end);
2437 break;
2438
2439 case DW_FORM_strx3:
2440 case DW_FORM_addrx3:
2441 SAFE_BYTE_GET_AND_INC (uvalue, data, 3, end);
2442 break;
2443
2444 case DW_FORM_ref_sup4:
2445 case DW_FORM_ref4:
2446 case DW_FORM_data4:
2447 case DW_FORM_strx4:
2448 case DW_FORM_addrx4:
2449 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
2450 break;
2451
2452 case DW_FORM_ref_sup8:
2453 case DW_FORM_ref8:
2454 case DW_FORM_data8:
2455 case DW_FORM_ref_sig8:
2456 SAFE_BYTE_GET_AND_INC (uvalue, data, 8, end);
2457 break;
2458
2459 case DW_FORM_data16:
2460 SAFE_BYTE_GET_AND_INC (uvalue, data, 8, end);
2461 SAFE_BYTE_GET_AND_INC (uvalue_hi, data, 8, end);
2462 if (byte_get != byte_get_little_endian)
2463 {
2464 uint64_t utmp = uvalue;
2465 uvalue = uvalue_hi;
2466 uvalue_hi = utmp;
2467 }
2468 break;
2469
2470 case DW_FORM_sdata:
2471 READ_SLEB (svalue, data, end);
2472 uvalue = svalue;
2473 break;
2474
2475 case DW_FORM_GNU_str_index:
2476 case DW_FORM_strx:
2477 case DW_FORM_ref_udata:
2478 case DW_FORM_udata:
2479 case DW_FORM_GNU_addr_index:
2480 case DW_FORM_addrx:
2481 case DW_FORM_loclistx:
2482 case DW_FORM_rnglistx:
2483 READ_ULEB (uvalue, data, end);
2484 break;
2485
2486 case DW_FORM_indirect:
2487 READ_ULEB (form, data, end);
2488 if (!do_loc)
2489 printf ("%c%s", delimiter, get_FORM_name (form));
2490 if (form == DW_FORM_implicit_const)
2491 READ_SLEB (implicit_const, data, end);
2492 return read_and_display_attr_value (attribute, form, implicit_const,
2493 start, data, end,
2494 cu_offset, pointer_size,
2495 offset_size, dwarf_version,
2496 debug_info_p, do_loc,
2497 section, this_set, delimiter, level);
2498
2499 case DW_FORM_implicit_const:
2500 uvalue = implicit_const;
2501 break;
2502
2503 default:
2504 break;
2505 }
2506
2507 switch (form)
2508 {
2509 case DW_FORM_ref_addr:
2510 if (!do_loc)
2511 printf ("%c<%#" PRIx64 ">", delimiter, uvalue);
2512 break;
2513
2514 case DW_FORM_GNU_ref_alt:
2515 if (!do_loc)
2516 {
2517 if (do_wide)
2518 /* We have already printed the form name. */
2519 printf ("%c<%#" PRIx64 ">", delimiter, uvalue);
2520 else
2521 printf ("%c<alt %#" PRIx64 ">", delimiter, uvalue);
2522 }
2523 /* FIXME: Follow the reference... */
2524 break;
2525
2526 case DW_FORM_ref1:
2527 case DW_FORM_ref2:
2528 case DW_FORM_ref4:
2529 case DW_FORM_ref_sup4:
2530 case DW_FORM_ref_udata:
2531 if (!do_loc)
2532 printf ("%c<%#" PRIx64 ">", delimiter, uvalue + cu_offset);
2533 break;
2534
2535 case DW_FORM_data4:
2536 case DW_FORM_addr:
2537 case DW_FORM_sec_offset:
2538 if (!do_loc)
2539 printf ("%c%#" PRIx64, delimiter, uvalue);
2540 break;
2541
2542 case DW_FORM_flag_present:
2543 case DW_FORM_flag:
2544 case DW_FORM_data1:
2545 case DW_FORM_data2:
2546 case DW_FORM_sdata:
2547 if (!do_loc)
2548 printf ("%c%" PRId64, delimiter, uvalue);
2549 break;
2550
2551 case DW_FORM_udata:
2552 if (!do_loc)
2553 printf ("%c%" PRIu64, delimiter, uvalue);
2554 break;
2555
2556 case DW_FORM_implicit_const:
2557 if (!do_loc)
2558 printf ("%c%" PRId64, delimiter, implicit_const);
2559 break;
2560
2561 case DW_FORM_ref_sup8:
2562 case DW_FORM_ref8:
2563 case DW_FORM_data8:
2564 if (!do_loc)
2565 {
2566 uint64_t utmp = uvalue;
2567 if (form == DW_FORM_ref8)
2568 utmp += cu_offset;
2569 printf ("%c%#" PRIx64, delimiter, utmp);
2570 }
2571 break;
2572
2573 case DW_FORM_data16:
2574 if (!do_loc)
2575 {
2576 if (uvalue_hi == 0)
2577 printf (" %#" PRIx64, uvalue);
2578 else
2579 printf (" %#" PRIx64 "%016" PRIx64, uvalue_hi, uvalue);
2580 }
2581 break;
2582
2583 case DW_FORM_string:
2584 if (!do_loc)
2585 printf ("%c%.*s", delimiter, (int) (end - data), data);
2586 data += strnlen ((char *) data, end - data);
2587 if (data < end)
2588 data++;
2589 break;
2590
2591 case DW_FORM_block:
2592 case DW_FORM_exprloc:
2593 READ_ULEB (uvalue, data, end);
2594 do_block:
2595 block_start = data;
2596 if (block_start >= end)
2597 {
2598 warn (_("Block ends prematurely\n"));
2599 uvalue = 0;
2600 block_start = end;
2601 }
2602
2603 uvalue = check_uvalue (block_start, uvalue, end);
2604
2605 data = block_start + uvalue;
2606 if (!do_loc)
2607 {
2608 unsigned char op;
2609
2610 SAFE_BYTE_GET (op, block_start, sizeof (op), end);
2611 if (op != DW_OP_addrx)
2612 data = display_block (block_start, uvalue, end, delimiter);
2613 }
2614 break;
2615
2616 case DW_FORM_block1:
2617 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
2618 goto do_block;
2619
2620 case DW_FORM_block2:
2621 SAFE_BYTE_GET_AND_INC (uvalue, data, 2, end);
2622 goto do_block;
2623
2624 case DW_FORM_block4:
2625 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
2626 goto do_block;
2627
2628 case DW_FORM_strp:
2629 if (!do_loc)
2630 {
2631 if (do_wide)
2632 /* We have already displayed the form name. */
2633 printf (_("%c(offset: %#" PRIx64 "): %s"),
2634 delimiter, uvalue, fetch_indirect_string (uvalue));
2635 else
2636 printf (_("%c(indirect string, offset: %#" PRIx64 "): %s"),
2637 delimiter, uvalue, fetch_indirect_string (uvalue));
2638 }
2639 break;
2640
2641 case DW_FORM_line_strp:
2642 if (!do_loc)
2643 {
2644 if (do_wide)
2645 /* We have already displayed the form name. */
2646 printf (_("%c(offset: %#" PRIx64 "): %s"),
2647 delimiter, uvalue, fetch_indirect_line_string (uvalue));
2648 else
2649 printf (_("%c(indirect line string, offset: %#" PRIx64 "): %s"),
2650 delimiter, uvalue, fetch_indirect_line_string (uvalue));
2651 }
2652 break;
2653
2654 case DW_FORM_GNU_str_index:
2655 case DW_FORM_strx:
2656 case DW_FORM_strx1:
2657 case DW_FORM_strx2:
2658 case DW_FORM_strx3:
2659 case DW_FORM_strx4:
2660 if (!do_loc)
2661 {
2662 const char *suffix = section ? strrchr (section->name, '.') : NULL;
2663 bool dwo = suffix && strcmp (suffix, ".dwo") == 0;
2664 const char *strng;
2665
2666 strng = fetch_indexed_string (uvalue, this_set, offset_size, dwo,
2667 debug_info_p ? debug_info_p->str_offsets_base : 0);
2668 if (do_wide)
2669 /* We have already displayed the form name. */
2670 printf (_("%c(offset: %#" PRIx64 "): %s"),
2671 delimiter, uvalue, strng);
2672 else
2673 printf (_("%c(indexed string: %#" PRIx64 "): %s"),
2674 delimiter, uvalue, strng);
2675 }
2676 break;
2677
2678 case DW_FORM_GNU_strp_alt:
2679 if (!do_loc)
2680 {
2681 if (do_wide)
2682 /* We have already displayed the form name. */
2683 printf (_("%c(offset: %#" PRIx64 ") %s"),
2684 delimiter, uvalue, fetch_alt_indirect_string (uvalue));
2685 else
2686 printf (_("%c(alt indirect string, offset: %#" PRIx64 ") %s"),
2687 delimiter, uvalue, fetch_alt_indirect_string (uvalue));
2688 }
2689 break;
2690
2691 case DW_FORM_indirect:
2692 /* Handled above. */
2693 break;
2694
2695 case DW_FORM_ref_sig8:
2696 if (!do_loc)
2697 printf ("%c%s: %#" PRIx64, delimiter, do_wide ? "" : "signature",
2698 uvalue);
2699 break;
2700
2701 case DW_FORM_GNU_addr_index:
2702 case DW_FORM_addrx:
2703 case DW_FORM_addrx1:
2704 case DW_FORM_addrx2:
2705 case DW_FORM_addrx3:
2706 case DW_FORM_addrx4:
2707 case DW_FORM_loclistx:
2708 case DW_FORM_rnglistx:
2709 if (!do_loc)
2710 {
2711 uint64_t base, idx;
2712 const char *suffix = strrchr (section->name, '.');
2713 bool dwo = suffix && strcmp (suffix, ".dwo") == 0;
2714
2715 if (form == DW_FORM_loclistx)
2716 {
2717 if (dwo)
2718 {
2719 idx = fetch_indexed_value (uvalue, loclists_dwo, 0);
2720 if (idx != (uint64_t) -1)
2721 idx += (offset_size == 8) ? 20 : 12;
2722 }
2723 else if (debug_info_p == NULL)
2724 {
2725 idx = fetch_indexed_value (uvalue, loclists, 0);
2726 }
2727 else
2728 {
2729 /* We want to compute:
2730 idx = fetch_indexed_value (uvalue, loclists, debug_info_p->loclists_base);
2731 idx += debug_info_p->loclists_base;
2732 Fortunately we already have that sum cached in the
2733 loc_offsets array. */
2734 if (uvalue < debug_info_p->num_loc_offsets)
2735 idx = debug_info_p->loc_offsets [uvalue];
2736 else
2737 {
2738 warn (_("loc_offset %" PRIu64 " too big\n"), uvalue);
2739 idx = -1;
2740 }
2741 }
2742 }
2743 else if (form == DW_FORM_rnglistx)
2744 {
2745 if (dwo)
2746 {
2747 idx = fetch_indexed_value (uvalue, rnglists_dwo, 0);
2748 if (idx != (uint64_t) -1)
2749 idx += (offset_size == 8) ? 20 : 12;
2750 }
2751 else
2752 {
2753 if (debug_info_p == NULL)
2754 base = 0;
2755 else
2756 base = debug_info_p->rnglists_base;
2757 /* We do not have a cached value this time, so we perform the
2758 computation manually. */
2759 idx = fetch_indexed_value (uvalue, rnglists, base);
2760 if (idx != (uint64_t) -1)
2761 idx += base;
2762 }
2763 }
2764 else
2765 {
2766 if (debug_info_p == NULL)
2767 base = 0;
2768 else if (debug_info_p->addr_base == DEBUG_INFO_UNAVAILABLE)
2769 base = 0;
2770 else
2771 base = debug_info_p->addr_base;
2772
2773 base += uvalue * pointer_size;
2774 idx = fetch_indexed_addr (base, pointer_size);
2775 }
2776
2777 /* We have already displayed the form name. */
2778 if (idx != (uint64_t) -1)
2779 printf (_("%c(index: %#" PRIx64 "): %#" PRIx64),
2780 delimiter, uvalue, idx);
2781 }
2782 break;
2783
2784 case DW_FORM_strp_sup:
2785 if (!do_loc)
2786 printf ("%c<%#" PRIx64 ">", delimiter, uvalue + cu_offset);
2787 break;
2788
2789 default:
2790 warn (_("Unrecognized form: %#lx\n"), form);
2791 /* What to do? Consume a byte maybe? */
2792 ++data;
2793 break;
2794 }
2795
2796 if ((do_loc || do_debug_loc || do_debug_ranges || do_debug_info)
2797 && num_debug_info_entries == 0
2798 && debug_info_p != NULL)
2799 {
2800 switch (attribute)
2801 {
2802 case DW_AT_loclists_base:
2803 if (debug_info_p->loclists_base)
2804 warn (_("CU @ %#" PRIx64 " has multiple loclists_base values "
2805 "(%#" PRIx64 " and %#" PRIx64 ")"),
2806 debug_info_p->cu_offset,
2807 debug_info_p->loclists_base, uvalue);
2808 debug_info_p->loclists_base = uvalue;
2809 break;
2810 case DW_AT_rnglists_base:
2811 if (debug_info_p->rnglists_base)
2812 warn (_("CU @ %#" PRIx64 " has multiple rnglists_base values "
2813 "(%#" PRIx64 " and %#" PRIx64 ")"),
2814 debug_info_p->cu_offset,
2815 debug_info_p->rnglists_base, uvalue);
2816 debug_info_p->rnglists_base = uvalue;
2817 break;
2818 case DW_AT_str_offsets_base:
2819 if (debug_info_p->str_offsets_base)
2820 warn (_("CU @ %#" PRIx64 " has multiple str_offsets_base values "
2821 "%#" PRIx64 " and %#" PRIx64 ")"),
2822 debug_info_p->cu_offset,
2823 debug_info_p->str_offsets_base, uvalue);
2824 debug_info_p->str_offsets_base = uvalue;
2825 break;
2826
2827 case DW_AT_frame_base:
2828 have_frame_base = 1;
2829 /* Fall through. */
2830 case DW_AT_location:
2831 case DW_AT_GNU_locviews:
2832 case DW_AT_string_length:
2833 case DW_AT_return_addr:
2834 case DW_AT_data_member_location:
2835 case DW_AT_vtable_elem_location:
2836 case DW_AT_segment:
2837 case DW_AT_static_link:
2838 case DW_AT_use_location:
2839 case DW_AT_call_value:
2840 case DW_AT_GNU_call_site_value:
2841 case DW_AT_call_data_value:
2842 case DW_AT_GNU_call_site_data_value:
2843 case DW_AT_call_target:
2844 case DW_AT_GNU_call_site_target:
2845 case DW_AT_call_target_clobbered:
2846 case DW_AT_GNU_call_site_target_clobbered:
2847 if ((dwarf_version < 4
2848 && (form == DW_FORM_data4 || form == DW_FORM_data8))
2849 || form == DW_FORM_sec_offset
2850 || form == DW_FORM_loclistx)
2851 {
2852 /* Process location list. */
2853 unsigned int lmax = debug_info_p->max_loc_offsets;
2854 unsigned int num = debug_info_p->num_loc_offsets;
2855
2856 if (lmax == 0 || num >= lmax)
2857 {
2858 lmax += 1024;
2859 debug_info_p->loc_offsets = (uint64_t *)
2860 xcrealloc (debug_info_p->loc_offsets,
2861 lmax, sizeof (*debug_info_p->loc_offsets));
2862 debug_info_p->loc_views = (uint64_t *)
2863 xcrealloc (debug_info_p->loc_views,
2864 lmax, sizeof (*debug_info_p->loc_views));
2865 debug_info_p->have_frame_base = (int *)
2866 xcrealloc (debug_info_p->have_frame_base,
2867 lmax, sizeof (*debug_info_p->have_frame_base));
2868 debug_info_p->max_loc_offsets = lmax;
2869 }
2870 if (form == DW_FORM_loclistx)
2871 uvalue = fetch_indexed_value (num, loclists, debug_info_p->loclists_base);
2872 else if (this_set != NULL)
2873 uvalue += this_set->section_offsets [DW_SECT_LOC];
2874
2875 debug_info_p->have_frame_base [num] = have_frame_base;
2876 if (attribute != DW_AT_GNU_locviews)
2877 {
2878 uvalue += debug_info_p->loclists_base;
2879
2880 /* Corrupt DWARF info can produce more offsets than views.
2881 See PR 23062 for an example. */
2882 if (debug_info_p->num_loc_offsets
2883 > debug_info_p->num_loc_views)
2884 warn (_("More location offset attributes than DW_AT_GNU_locview attributes\n"));
2885 else
2886 {
2887 debug_info_p->loc_offsets [num] = uvalue;
2888 debug_info_p->num_loc_offsets++;
2889 }
2890 }
2891 else
2892 {
2893 assert (debug_info_p->num_loc_views <= num);
2894 num = debug_info_p->num_loc_views;
2895 if (num > debug_info_p->num_loc_offsets)
2896 warn (_("More DW_AT_GNU_locview attributes than location offset attributes\n"));
2897 else
2898 {
2899 debug_info_p->loc_views [num] = uvalue;
2900 debug_info_p->num_loc_views++;
2901 }
2902 }
2903 }
2904 break;
2905
2906 case DW_AT_low_pc:
2907 if (need_base_address)
2908 debug_info_p->base_address = uvalue;
2909 break;
2910
2911 case DW_AT_GNU_addr_base:
2912 case DW_AT_addr_base:
2913 debug_info_p->addr_base = uvalue;
2914 break;
2915
2916 case DW_AT_GNU_ranges_base:
2917 debug_info_p->ranges_base = uvalue;
2918 break;
2919
2920 case DW_AT_ranges:
2921 if ((dwarf_version < 4
2922 && (form == DW_FORM_data4 || form == DW_FORM_data8))
2923 || form == DW_FORM_sec_offset
2924 || form == DW_FORM_rnglistx)
2925 {
2926 /* Process range list. */
2927 unsigned int lmax = debug_info_p->max_range_lists;
2928 unsigned int num = debug_info_p->num_range_lists;
2929
2930 if (lmax == 0 || num >= lmax)
2931 {
2932 lmax += 1024;
2933 debug_info_p->range_lists = (uint64_t *)
2934 xcrealloc (debug_info_p->range_lists,
2935 lmax, sizeof (*debug_info_p->range_lists));
2936 debug_info_p->max_range_lists = lmax;
2937 }
2938
2939 if (form == DW_FORM_rnglistx)
2940 uvalue = fetch_indexed_value (uvalue, rnglists, 0);
2941
2942 debug_info_p->range_lists [num] = uvalue;
2943 debug_info_p->num_range_lists++;
2944 }
2945 break;
2946
2947 case DW_AT_GNU_dwo_name:
2948 case DW_AT_dwo_name:
2949 if (need_dwo_info)
2950 switch (form)
2951 {
2952 case DW_FORM_strp:
2953 add_dwo_name ((const char *) fetch_indirect_string (uvalue), cu_offset);
2954 break;
2955 case DW_FORM_GNU_strp_alt:
2956 add_dwo_name ((const char *) fetch_alt_indirect_string (uvalue), cu_offset);
2957 break;
2958 case DW_FORM_GNU_str_index:
2959 case DW_FORM_strx:
2960 case DW_FORM_strx1:
2961 case DW_FORM_strx2:
2962 case DW_FORM_strx3:
2963 case DW_FORM_strx4:
2964 add_dwo_name (fetch_indexed_string (uvalue, this_set, offset_size, false,
2965 debug_info_p->str_offsets_base),
2966 cu_offset);
2967 break;
2968 case DW_FORM_string:
2969 add_dwo_name ((const char *) orig_data, cu_offset);
2970 break;
2971 default:
2972 warn (_("Unsupported form (%s) for attribute %s\n"),
2973 get_FORM_name (form), get_AT_name (attribute));
2974 break;
2975 }
2976 break;
2977
2978 case DW_AT_comp_dir:
2979 /* FIXME: Also extract a build-id in a CU/TU. */
2980 if (need_dwo_info)
2981 switch (form)
2982 {
2983 case DW_FORM_strp:
2984 add_dwo_dir ((const char *) fetch_indirect_string (uvalue), cu_offset);
2985 break;
2986 case DW_FORM_GNU_strp_alt:
2987 add_dwo_dir (fetch_alt_indirect_string (uvalue), cu_offset);
2988 break;
2989 case DW_FORM_line_strp:
2990 add_dwo_dir ((const char *) fetch_indirect_line_string (uvalue), cu_offset);
2991 break;
2992 case DW_FORM_GNU_str_index:
2993 case DW_FORM_strx:
2994 case DW_FORM_strx1:
2995 case DW_FORM_strx2:
2996 case DW_FORM_strx3:
2997 case DW_FORM_strx4:
2998 add_dwo_dir (fetch_indexed_string (uvalue, this_set, offset_size, false,
2999 debug_info_p->str_offsets_base),
3000 cu_offset);
3001 break;
3002 case DW_FORM_string:
3003 add_dwo_dir ((const char *) orig_data, cu_offset);
3004 break;
3005 default:
3006 warn (_("Unsupported form (%s) for attribute %s\n"),
3007 get_FORM_name (form), get_AT_name (attribute));
3008 break;
3009 }
3010 break;
3011
3012 case DW_AT_GNU_dwo_id:
3013 if (need_dwo_info)
3014 switch (form)
3015 {
3016 case DW_FORM_data8:
3017 /* FIXME: Record the length of the ID as well ? */
3018 add_dwo_id ((const char *) (data - 8), cu_offset);
3019 break;
3020 default:
3021 warn (_("Unsupported form (%s) for attribute %s\n"),
3022 get_FORM_name (form), get_AT_name (attribute));
3023 break;
3024 }
3025 break;
3026
3027 default:
3028 break;
3029 }
3030 }
3031
3032 if (do_loc || attribute == 0)
3033 return data;
3034
3035 /* For some attributes we can display further information. */
3036 switch (attribute)
3037 {
3038 case DW_AT_type:
3039 if (level >= 0 && level < MAX_CU_NESTING
3040 && uvalue < (size_t) (end - start))
3041 {
3042 bool is_signed = false;
3043 abbrev_entry *type_abbrev;
3044 unsigned char *type_data;
3045 abbrev_map *map;
3046
3047 type_abbrev = get_type_abbrev_from_form (form, uvalue,
3048 cu_offset, end,
3049 section, NULL,
3050 &type_data, &map);
3051 if (type_abbrev != NULL)
3052 {
3053 get_type_signedness (type_abbrev, section, type_data,
3054 map ? section->start + map->end : end,
3055 map ? map->start : cu_offset,
3056 pointer_size, offset_size, dwarf_version,
3057 & is_signed, 0);
3058 }
3059 level_type_signed[level] = is_signed;
3060 }
3061 break;
3062
3063 case DW_AT_inline:
3064 printf ("\t");
3065 switch (uvalue)
3066 {
3067 case DW_INL_not_inlined:
3068 printf (_("(not inlined)"));
3069 break;
3070 case DW_INL_inlined:
3071 printf (_("(inlined)"));
3072 break;
3073 case DW_INL_declared_not_inlined:
3074 printf (_("(declared as inline but ignored)"));
3075 break;
3076 case DW_INL_declared_inlined:
3077 printf (_("(declared as inline and inlined)"));
3078 break;
3079 default:
3080 printf (_(" (Unknown inline attribute value: %#" PRIx64 ")"),
3081 uvalue);
3082 break;
3083 }
3084 break;
3085
3086 case DW_AT_language:
3087 printf ("\t");
3088 switch (uvalue)
3089 {
3090 /* Ordered by the numeric value of these constants. */
3091 case DW_LANG_C89: printf ("(ANSI C)"); break;
3092 case DW_LANG_C: printf ("(non-ANSI C)"); break;
3093 case DW_LANG_Ada83: printf ("(Ada)"); break;
3094 case DW_LANG_C_plus_plus: printf ("(C++)"); break;
3095 case DW_LANG_Cobol74: printf ("(Cobol 74)"); break;
3096 case DW_LANG_Cobol85: printf ("(Cobol 85)"); break;
3097 case DW_LANG_Fortran77: printf ("(FORTRAN 77)"); break;
3098 case DW_LANG_Fortran90: printf ("(Fortran 90)"); break;
3099 case DW_LANG_Pascal83: printf ("(ANSI Pascal)"); break;
3100 case DW_LANG_Modula2: printf ("(Modula 2)"); break;
3101 /* DWARF 2.1 values. */
3102 case DW_LANG_Java: printf ("(Java)"); break;
3103 case DW_LANG_C99: printf ("(ANSI C99)"); break;
3104 case DW_LANG_Ada95: printf ("(ADA 95)"); break;
3105 case DW_LANG_Fortran95: printf ("(Fortran 95)"); break;
3106 /* DWARF 3 values. */
3107 case DW_LANG_PLI: printf ("(PLI)"); break;
3108 case DW_LANG_ObjC: printf ("(Objective C)"); break;
3109 case DW_LANG_ObjC_plus_plus: printf ("(Objective C++)"); break;
3110 case DW_LANG_UPC: printf ("(Unified Parallel C)"); break;
3111 case DW_LANG_D: printf ("(D)"); break;
3112 /* DWARF 4 values. */
3113 case DW_LANG_Python: printf ("(Python)"); break;
3114 /* DWARF 5 values. */
3115 case DW_LANG_OpenCL: printf ("(OpenCL)"); break;
3116 case DW_LANG_Go: printf ("(Go)"); break;
3117 case DW_LANG_Modula3: printf ("(Modula 3)"); break;
3118 case DW_LANG_Haskell: printf ("(Haskell)"); break;
3119 case DW_LANG_C_plus_plus_03: printf ("(C++03)"); break;
3120 case DW_LANG_C_plus_plus_11: printf ("(C++11)"); break;
3121 case DW_LANG_OCaml: printf ("(OCaml)"); break;
3122 case DW_LANG_Rust: printf ("(Rust)"); break;
3123 case DW_LANG_C11: printf ("(C11)"); break;
3124 case DW_LANG_Swift: printf ("(Swift)"); break;
3125 case DW_LANG_Julia: printf ("(Julia)"); break;
3126 case DW_LANG_Dylan: printf ("(Dylan)"); break;
3127 case DW_LANG_C_plus_plus_14: printf ("(C++14)"); break;
3128 case DW_LANG_Fortran03: printf ("(Fortran 03)"); break;
3129 case DW_LANG_Fortran08: printf ("(Fortran 08)"); break;
3130 case DW_LANG_RenderScript: printf ("(RenderScript)"); break;
3131 /* MIPS extension. */
3132 case DW_LANG_Mips_Assembler: printf ("(MIPS assembler)"); break;
3133 /* UPC extension. */
3134 case DW_LANG_Upc: printf ("(Unified Parallel C)"); break;
3135 default:
3136 if (uvalue >= DW_LANG_lo_user && uvalue <= DW_LANG_hi_user)
3137 printf (_("(implementation defined: %#" PRIx64 ")"), uvalue);
3138 else
3139 printf (_("(unknown: %#" PRIx64 ")"), uvalue);
3140 break;
3141 }
3142 break;
3143
3144 case DW_AT_encoding:
3145 printf ("\t");
3146 switch (uvalue)
3147 {
3148 case DW_ATE_void: printf ("(void)"); break;
3149 case DW_ATE_address: printf ("(machine address)"); break;
3150 case DW_ATE_boolean: printf ("(boolean)"); break;
3151 case DW_ATE_complex_float: printf ("(complex float)"); break;
3152 case DW_ATE_float: printf ("(float)"); break;
3153 case DW_ATE_signed: printf ("(signed)"); break;
3154 case DW_ATE_signed_char: printf ("(signed char)"); break;
3155 case DW_ATE_unsigned: printf ("(unsigned)"); break;
3156 case DW_ATE_unsigned_char: printf ("(unsigned char)"); break;
3157 /* DWARF 2.1 values: */
3158 case DW_ATE_imaginary_float: printf ("(imaginary float)"); break;
3159 case DW_ATE_decimal_float: printf ("(decimal float)"); break;
3160 /* DWARF 3 values: */
3161 case DW_ATE_packed_decimal: printf ("(packed_decimal)"); break;
3162 case DW_ATE_numeric_string: printf ("(numeric_string)"); break;
3163 case DW_ATE_edited: printf ("(edited)"); break;
3164 case DW_ATE_signed_fixed: printf ("(signed_fixed)"); break;
3165 case DW_ATE_unsigned_fixed: printf ("(unsigned_fixed)"); break;
3166 /* DWARF 4 values: */
3167 case DW_ATE_UTF: printf ("(unicode string)"); break;
3168 /* DWARF 5 values: */
3169 case DW_ATE_UCS: printf ("(UCS)"); break;
3170 case DW_ATE_ASCII: printf ("(ASCII)"); break;
3171
3172 /* HP extensions: */
3173 case DW_ATE_HP_float80: printf ("(HP_float80)"); break;
3174 case DW_ATE_HP_complex_float80: printf ("(HP_complex_float80)"); break;
3175 case DW_ATE_HP_float128: printf ("(HP_float128)"); break;
3176 case DW_ATE_HP_complex_float128:printf ("(HP_complex_float128)"); break;
3177 case DW_ATE_HP_floathpintel: printf ("(HP_floathpintel)"); break;
3178 case DW_ATE_HP_imaginary_float80: printf ("(HP_imaginary_float80)"); break;
3179 case DW_ATE_HP_imaginary_float128: printf ("(HP_imaginary_float128)"); break;
3180
3181 default:
3182 if (uvalue >= DW_ATE_lo_user
3183 && uvalue <= DW_ATE_hi_user)
3184 printf (_("(user defined type)"));
3185 else
3186 printf (_("(unknown type)"));
3187 break;
3188 }
3189 break;
3190
3191 case DW_AT_accessibility:
3192 printf ("\t");
3193 switch (uvalue)
3194 {
3195 case DW_ACCESS_public: printf ("(public)"); break;
3196 case DW_ACCESS_protected: printf ("(protected)"); break;
3197 case DW_ACCESS_private: printf ("(private)"); break;
3198 default:
3199 printf (_("(unknown accessibility)"));
3200 break;
3201 }
3202 break;
3203
3204 case DW_AT_visibility:
3205 printf ("\t");
3206 switch (uvalue)
3207 {
3208 case DW_VIS_local: printf ("(local)"); break;
3209 case DW_VIS_exported: printf ("(exported)"); break;
3210 case DW_VIS_qualified: printf ("(qualified)"); break;
3211 default: printf (_("(unknown visibility)")); break;
3212 }
3213 break;
3214
3215 case DW_AT_endianity:
3216 printf ("\t");
3217 switch (uvalue)
3218 {
3219 case DW_END_default: printf ("(default)"); break;
3220 case DW_END_big: printf ("(big)"); break;
3221 case DW_END_little: printf ("(little)"); break;
3222 default:
3223 if (uvalue >= DW_END_lo_user && uvalue <= DW_END_hi_user)
3224 printf (_("(user specified)"));
3225 else
3226 printf (_("(unknown endianity)"));
3227 break;
3228 }
3229 break;
3230
3231 case DW_AT_virtuality:
3232 printf ("\t");
3233 switch (uvalue)
3234 {
3235 case DW_VIRTUALITY_none: printf ("(none)"); break;
3236 case DW_VIRTUALITY_virtual: printf ("(virtual)"); break;
3237 case DW_VIRTUALITY_pure_virtual:printf ("(pure_virtual)"); break;
3238 default: printf (_("(unknown virtuality)")); break;
3239 }
3240 break;
3241
3242 case DW_AT_identifier_case:
3243 printf ("\t");
3244 switch (uvalue)
3245 {
3246 case DW_ID_case_sensitive: printf ("(case_sensitive)"); break;
3247 case DW_ID_up_case: printf ("(up_case)"); break;
3248 case DW_ID_down_case: printf ("(down_case)"); break;
3249 case DW_ID_case_insensitive: printf ("(case_insensitive)"); break;
3250 default: printf (_("(unknown case)")); break;
3251 }
3252 break;
3253
3254 case DW_AT_calling_convention:
3255 printf ("\t");
3256 switch (uvalue)
3257 {
3258 case DW_CC_normal: printf ("(normal)"); break;
3259 case DW_CC_program: printf ("(program)"); break;
3260 case DW_CC_nocall: printf ("(nocall)"); break;
3261 case DW_CC_pass_by_reference: printf ("(pass by ref)"); break;
3262 case DW_CC_pass_by_value: printf ("(pass by value)"); break;
3263 case DW_CC_GNU_renesas_sh: printf ("(Rensas SH)"); break;
3264 case DW_CC_GNU_borland_fastcall_i386: printf ("(Borland fastcall i386)"); break;
3265 default:
3266 if (uvalue >= DW_CC_lo_user
3267 && uvalue <= DW_CC_hi_user)
3268 printf (_("(user defined)"));
3269 else
3270 printf (_("(unknown convention)"));
3271 }
3272 break;
3273
3274 case DW_AT_ordering:
3275 printf ("\t");
3276 switch (uvalue)
3277 {
3278 case 255:
3279 case -1: printf (_("(undefined)")); break;
3280 case 0: printf ("(row major)"); break;
3281 case 1: printf ("(column major)"); break;
3282 }
3283 break;
3284
3285 case DW_AT_decimal_sign:
3286 printf ("\t");
3287 switch (uvalue)
3288 {
3289 case DW_DS_unsigned: printf (_("(unsigned)")); break;
3290 case DW_DS_leading_overpunch: printf (_("(leading overpunch)")); break;
3291 case DW_DS_trailing_overpunch: printf (_("(trailing overpunch)")); break;
3292 case DW_DS_leading_separate: printf (_("(leading separate)")); break;
3293 case DW_DS_trailing_separate: printf (_("(trailing separate)")); break;
3294 default: printf (_("(unrecognised)")); break;
3295 }
3296 break;
3297
3298 case DW_AT_defaulted:
3299 printf ("\t");
3300 switch (uvalue)
3301 {
3302 case DW_DEFAULTED_no: printf (_("(no)")); break;
3303 case DW_DEFAULTED_in_class: printf (_("(in class)")); break;
3304 case DW_DEFAULTED_out_of_class: printf (_("(out of class)")); break;
3305 default: printf (_("(unrecognised)")); break;
3306 }
3307 break;
3308
3309 case DW_AT_discr_list:
3310 printf ("\t");
3311 display_discr_list (form, uvalue, data, level);
3312 break;
3313
3314 case DW_AT_frame_base:
3315 have_frame_base = 1;
3316 /* Fall through. */
3317 case DW_AT_location:
3318 case DW_AT_loclists_base:
3319 case DW_AT_rnglists_base:
3320 case DW_AT_str_offsets_base:
3321 case DW_AT_string_length:
3322 case DW_AT_return_addr:
3323 case DW_AT_data_member_location:
3324 case DW_AT_vtable_elem_location:
3325 case DW_AT_segment:
3326 case DW_AT_static_link:
3327 case DW_AT_use_location:
3328 case DW_AT_call_value:
3329 case DW_AT_GNU_call_site_value:
3330 case DW_AT_call_data_value:
3331 case DW_AT_GNU_call_site_data_value:
3332 case DW_AT_call_target:
3333 case DW_AT_GNU_call_site_target:
3334 case DW_AT_call_target_clobbered:
3335 case DW_AT_GNU_call_site_target_clobbered:
3336 if ((dwarf_version < 4
3337 && (form == DW_FORM_data4 || form == DW_FORM_data8))
3338 || form == DW_FORM_sec_offset
3339 || form == DW_FORM_loclistx)
3340 {
3341 if (attribute != DW_AT_rnglists_base
3342 && attribute != DW_AT_str_offsets_base)
3343 printf (_(" (location list)"));
3344 }
3345 /* Fall through. */
3346 case DW_AT_allocated:
3347 case DW_AT_associated:
3348 case DW_AT_data_location:
3349 case DW_AT_stride:
3350 case DW_AT_upper_bound:
3351 case DW_AT_lower_bound:
3352 case DW_AT_rank:
3353 if (block_start)
3354 {
3355 int need_frame_base;
3356
3357 printf ("\t(");
3358 need_frame_base = decode_location_expression (block_start,
3359 pointer_size,
3360 offset_size,
3361 dwarf_version,
3362 uvalue,
3363 cu_offset, section);
3364 printf (")");
3365 if (need_frame_base && !have_frame_base)
3366 printf (_(" [without DW_AT_frame_base]"));
3367 }
3368 break;
3369
3370 case DW_AT_data_bit_offset:
3371 case DW_AT_byte_size:
3372 case DW_AT_bit_size:
3373 case DW_AT_string_length_byte_size:
3374 case DW_AT_string_length_bit_size:
3375 case DW_AT_bit_stride:
3376 if (form == DW_FORM_exprloc)
3377 {
3378 printf ("\t(");
3379 (void) decode_location_expression (block_start, pointer_size,
3380 offset_size, dwarf_version,
3381 uvalue, cu_offset, section);
3382 printf (")");
3383 }
3384 break;
3385
3386 case DW_AT_import:
3387 {
3388 unsigned long abbrev_number;
3389 abbrev_entry *entry;
3390
3391 entry = get_type_abbrev_from_form (form, uvalue, cu_offset, end,
3392 section, & abbrev_number, NULL, NULL);
3393 if (entry == NULL)
3394 {
3395 if (form != DW_FORM_GNU_ref_alt)
3396 warn (_("Offset %#" PRIx64 " used as value for DW_AT_import attribute of DIE at offset %#tx is too big.\n"),
3397 uvalue,
3398 orig_data - section->start);
3399 }
3400 else
3401 {
3402 printf (_("\t[Abbrev Number: %ld"), abbrev_number);
3403 printf (" (%s)", get_TAG_name (entry->tag));
3404 printf ("]");
3405 }
3406 }
3407 break;
3408
3409 default:
3410 break;
3411 }
3412
3413 return data;
3414 }
3415
3416 static unsigned char *
3417 read_and_display_attr (unsigned long attribute,
3418 unsigned long form,
3419 int64_t implicit_const,
3420 unsigned char *start,
3421 unsigned char *data,
3422 unsigned char *end,
3423 uint64_t cu_offset,
3424 uint64_t pointer_size,
3425 uint64_t offset_size,
3426 int dwarf_version,
3427 debug_info *debug_info_p,
3428 int do_loc,
3429 struct dwarf_section *section,
3430 struct cu_tu_set *this_set,
3431 int level)
3432 {
3433 if (!do_loc)
3434 printf (" %-18s:", get_AT_name (attribute));
3435 data = read_and_display_attr_value (attribute, form, implicit_const,
3436 start, data, end,
3437 cu_offset, pointer_size, offset_size,
3438 dwarf_version, debug_info_p,
3439 do_loc, section, this_set, ' ', level);
3440 if (!do_loc)
3441 printf ("\n");
3442 return data;
3443 }
3444
3445 /* Like load_debug_section, but if the ordinary call fails, and we are
3446 following debug links, then attempt to load the requested section
3447 from one of the separate debug info files. */
3448
3449 static bool
3450 load_debug_section_with_follow (enum dwarf_section_display_enum sec_enum,
3451 void * handle)
3452 {
3453 if (load_debug_section (sec_enum, handle))
3454 {
3455 if (debug_displays[sec_enum].section.filename == NULL)
3456 {
3457 /* See if we can associate a filename with this section. */
3458 separate_info * i;
3459
3460 for (i = first_separate_info; i != NULL; i = i->next)
3461 if (i->handle == handle)
3462 {
3463 debug_displays[sec_enum].section.filename = i->filename;
3464 break;
3465 }
3466 }
3467
3468 return true;
3469 }
3470
3471 if (do_follow_links)
3472 {
3473 separate_info * i;
3474
3475 for (i = first_separate_info; i != NULL; i = i->next)
3476 {
3477 if (load_debug_section (sec_enum, i->handle))
3478 {
3479 debug_displays[sec_enum].section.filename = i->filename;
3480
3481 /* FIXME: We should check to see if any of the remaining debug info
3482 files also contain this section, and, umm, do something about it. */
3483 return true;
3484 }
3485 }
3486 }
3487
3488 return false;
3489 }
3490
3491 static void
3492 introduce (struct dwarf_section * section, bool raw)
3493 {
3494 if (raw)
3495 {
3496 if (do_follow_links && section->filename)
3497 printf (_("Raw dump of debug contents of section %s (loaded from %s):\n\n"),
3498 section->name, section->filename);
3499 else
3500 printf (_("Raw dump of debug contents of section %s:\n\n"), section->name);
3501 }
3502 else
3503 {
3504 if (do_follow_links && section->filename)
3505 printf (_("Contents of the %s section (loaded from %s):\n\n"),
3506 section->name, section->filename);
3507 else
3508 printf (_("Contents of the %s section:\n\n"), section->name);
3509 }
3510 }
3511
3512 /* Free memory allocated for one unit in debug_information. */
3513
3514 static void
3515 free_debug_information (debug_info *ent)
3516 {
3517 if (ent->max_loc_offsets)
3518 {
3519 free (ent->loc_offsets);
3520 free (ent->loc_views);
3521 free (ent->have_frame_base);
3522 }
3523 if (ent->max_range_lists)
3524 free (ent->range_lists);
3525 }
3526
3527 /* Process the contents of a .debug_info section.
3528 If do_loc is TRUE then we are scanning for location lists and dwo tags
3529 and we do not want to display anything to the user.
3530 If do_types is TRUE, we are processing a .debug_types section instead of
3531 a .debug_info section.
3532 The information displayed is restricted by the values in DWARF_START_DIE
3533 and DWARF_CUTOFF_LEVEL.
3534 Returns TRUE upon success. Otherwise an error or warning message is
3535 printed and FALSE is returned. */
3536
3537 static bool
3538 process_debug_info (struct dwarf_section * section,
3539 void *file,
3540 enum dwarf_section_display_enum abbrev_sec,
3541 bool do_loc,
3542 bool do_types)
3543 {
3544 unsigned char *start = section->start;
3545 unsigned char *end = start + section->size;
3546 unsigned char *section_begin;
3547 unsigned int unit;
3548 unsigned int num_units = 0;
3549
3550 /* First scan the section to get the number of comp units.
3551 Length sanity checks are done here. */
3552 for (section_begin = start, num_units = 0; section_begin < end;
3553 num_units ++)
3554 {
3555 uint64_t length;
3556
3557 /* Read the first 4 bytes. For a 32-bit DWARF section, this
3558 will be the length. For a 64-bit DWARF section, it'll be
3559 the escape code 0xffffffff followed by an 8 byte length. */
3560 SAFE_BYTE_GET_AND_INC (length, section_begin, 4, end);
3561
3562 if (length == 0xffffffff)
3563 SAFE_BYTE_GET_AND_INC (length, section_begin, 8, end);
3564 else if (length >= 0xfffffff0 && length < 0xffffffff)
3565 {
3566 warn (_("Reserved length value (%#" PRIx64 ") found in section %s\n"),
3567 length, section->name);
3568 return false;
3569 }
3570
3571 /* Negative values are illegal, they may even cause infinite
3572 looping. This can happen if we can't accurately apply
3573 relocations to an object file, or if the file is corrupt. */
3574 if (length > (size_t) (end - section_begin))
3575 {
3576 warn (_("Corrupt unit length (got %#" PRIx64
3577 " expected at most %#tx) in section %s\n"),
3578 length, end - section_begin, section->name);
3579 return false;
3580 }
3581 section_begin += length;
3582 }
3583
3584 if (num_units == 0)
3585 {
3586 error (_("No comp units in %s section ?\n"), section->name);
3587 return false;
3588 }
3589
3590 if ((do_loc || do_debug_loc || do_debug_ranges || do_debug_info)
3591 && num_debug_info_entries == 0
3592 && ! do_types)
3593 {
3594
3595 /* Then allocate an array to hold the information. */
3596 debug_information = (debug_info *) cmalloc (num_units,
3597 sizeof (* debug_information));
3598 if (debug_information == NULL)
3599 {
3600 error (_("Not enough memory for a debug info array of %u entries\n"),
3601 num_units);
3602 alloc_num_debug_info_entries = num_debug_info_entries = 0;
3603 return false;
3604 }
3605
3606 /* PR 17531: file: 92ca3797.
3607 We cannot rely upon the debug_information array being initialised
3608 before it is used. A corrupt file could easily contain references
3609 to a unit for which information has not been made available. So
3610 we ensure that the array is zeroed here. */
3611 memset (debug_information, 0, num_units * sizeof (*debug_information));
3612
3613 alloc_num_debug_info_entries = num_units;
3614 }
3615
3616 if (!do_loc)
3617 {
3618 load_debug_section_with_follow (str, file);
3619 load_debug_section_with_follow (line_str, file);
3620 load_debug_section_with_follow (str_dwo, file);
3621 load_debug_section_with_follow (str_index, file);
3622 load_debug_section_with_follow (str_index_dwo, file);
3623 load_debug_section_with_follow (debug_addr, file);
3624 }
3625
3626 load_debug_section_with_follow (abbrev_sec, file);
3627 load_debug_section_with_follow (loclists, file);
3628 load_debug_section_with_follow (rnglists, file);
3629 load_debug_section_with_follow (loclists_dwo, file);
3630 load_debug_section_with_follow (rnglists_dwo, file);
3631
3632 if (debug_displays [abbrev_sec].section.start == NULL)
3633 {
3634 warn (_("Unable to locate %s section!\n"),
3635 debug_displays [abbrev_sec].section.uncompressed_name);
3636 return false;
3637 }
3638
3639 if (!do_loc && dwarf_start_die == 0)
3640 introduce (section, false);
3641
3642 free_all_abbrevs ();
3643
3644 /* In order to be able to resolve DW_FORM_ref_addr forms we need
3645 to load *all* of the abbrevs for all CUs in this .debug_info
3646 section. This does effectively mean that we (partially) read
3647 every CU header twice. */
3648 for (section_begin = start; start < end;)
3649 {
3650 DWARF2_Internal_CompUnit compunit;
3651 unsigned char *hdrptr;
3652 uint64_t abbrev_base;
3653 size_t abbrev_size;
3654 uint64_t cu_offset;
3655 unsigned int offset_size;
3656 struct cu_tu_set *this_set;
3657 unsigned char *end_cu;
3658
3659 hdrptr = start;
3660 cu_offset = start - section_begin;
3661
3662 SAFE_BYTE_GET_AND_INC (compunit.cu_length, hdrptr, 4, end);
3663
3664 if (compunit.cu_length == 0xffffffff)
3665 {
3666 SAFE_BYTE_GET_AND_INC (compunit.cu_length, hdrptr, 8, end);
3667 offset_size = 8;
3668 }
3669 else
3670 offset_size = 4;
3671 end_cu = hdrptr + compunit.cu_length;
3672
3673 SAFE_BYTE_GET_AND_INC (compunit.cu_version, hdrptr, 2, end_cu);
3674
3675 this_set = find_cu_tu_set_v2 (cu_offset, do_types);
3676
3677 if (compunit.cu_version < 5)
3678 {
3679 compunit.cu_unit_type = DW_UT_compile;
3680 /* Initialize it due to a false compiler warning. */
3681 compunit.cu_pointer_size = -1;
3682 }
3683 else
3684 {
3685 SAFE_BYTE_GET_AND_INC (compunit.cu_unit_type, hdrptr, 1, end_cu);
3686 do_types = (compunit.cu_unit_type == DW_UT_type);
3687
3688 SAFE_BYTE_GET_AND_INC (compunit.cu_pointer_size, hdrptr, 1, end_cu);
3689 }
3690
3691 SAFE_BYTE_GET_AND_INC (compunit.cu_abbrev_offset, hdrptr, offset_size,
3692 end_cu);
3693
3694 if (compunit.cu_unit_type == DW_UT_split_compile
3695 || compunit.cu_unit_type == DW_UT_skeleton)
3696 {
3697 uint64_t dwo_id;
3698 SAFE_BYTE_GET_AND_INC (dwo_id, hdrptr, 8, end_cu);
3699 }
3700
3701 if (this_set == NULL)
3702 {
3703 abbrev_base = 0;
3704 abbrev_size = debug_displays [abbrev_sec].section.size;
3705 }
3706 else
3707 {
3708 abbrev_base = this_set->section_offsets [DW_SECT_ABBREV];
3709 abbrev_size = this_set->section_sizes [DW_SECT_ABBREV];
3710 }
3711
3712 abbrev_list *list;
3713 abbrev_list *free_list;
3714 list = find_and_process_abbrev_set (&debug_displays[abbrev_sec].section,
3715 abbrev_base, abbrev_size,
3716 compunit.cu_abbrev_offset,
3717 &free_list);
3718 start = end_cu;
3719 if (list != NULL && list->first_abbrev != NULL)
3720 record_abbrev_list_for_cu (cu_offset, start - section_begin,
3721 list, free_list);
3722 else if (free_list != NULL)
3723 free_abbrev_list (free_list);
3724 }
3725
3726 for (start = section_begin, unit = 0; start < end; unit++)
3727 {
3728 DWARF2_Internal_CompUnit compunit;
3729 unsigned char *hdrptr;
3730 unsigned char *tags;
3731 int level, last_level, saved_level;
3732 uint64_t cu_offset;
3733 unsigned int offset_size;
3734 uint64_t signature = 0;
3735 uint64_t type_offset = 0;
3736 struct cu_tu_set *this_set;
3737 uint64_t abbrev_base;
3738 size_t abbrev_size;
3739 unsigned char *end_cu;
3740
3741 hdrptr = start;
3742 cu_offset = start - section_begin;
3743
3744 SAFE_BYTE_GET_AND_INC (compunit.cu_length, hdrptr, 4, end);
3745
3746 if (compunit.cu_length == 0xffffffff)
3747 {
3748 SAFE_BYTE_GET_AND_INC (compunit.cu_length, hdrptr, 8, end);
3749 offset_size = 8;
3750 }
3751 else
3752 offset_size = 4;
3753 end_cu = hdrptr + compunit.cu_length;
3754
3755 SAFE_BYTE_GET_AND_INC (compunit.cu_version, hdrptr, 2, end_cu);
3756
3757 this_set = find_cu_tu_set_v2 (cu_offset, do_types);
3758
3759 if (compunit.cu_version < 5)
3760 {
3761 compunit.cu_unit_type = DW_UT_compile;
3762 /* Initialize it due to a false compiler warning. */
3763 compunit.cu_pointer_size = -1;
3764 }
3765 else
3766 {
3767 SAFE_BYTE_GET_AND_INC (compunit.cu_unit_type, hdrptr, 1, end_cu);
3768 do_types = (compunit.cu_unit_type == DW_UT_type);
3769
3770 SAFE_BYTE_GET_AND_INC (compunit.cu_pointer_size, hdrptr, 1, end_cu);
3771 }
3772
3773 SAFE_BYTE_GET_AND_INC (compunit.cu_abbrev_offset, hdrptr, offset_size, end_cu);
3774
3775 if (this_set == NULL)
3776 {
3777 abbrev_base = 0;
3778 abbrev_size = debug_displays [abbrev_sec].section.size;
3779 }
3780 else
3781 {
3782 abbrev_base = this_set->section_offsets [DW_SECT_ABBREV];
3783 abbrev_size = this_set->section_sizes [DW_SECT_ABBREV];
3784 }
3785
3786 if (compunit.cu_version < 5)
3787 SAFE_BYTE_GET_AND_INC (compunit.cu_pointer_size, hdrptr, 1, end_cu);
3788
3789 bool do_dwo_id = false;
3790 uint64_t dwo_id = 0;
3791 if (compunit.cu_unit_type == DW_UT_split_compile
3792 || compunit.cu_unit_type == DW_UT_skeleton)
3793 {
3794 SAFE_BYTE_GET_AND_INC (dwo_id, hdrptr, 8, end_cu);
3795 do_dwo_id = true;
3796 }
3797
3798 /* PR 17512: file: 001-108546-0.001:0.1. */
3799 if (compunit.cu_pointer_size < 2 || compunit.cu_pointer_size > 8)
3800 {
3801 warn (_("Invalid pointer size (%d) in compunit header, using %d instead\n"),
3802 compunit.cu_pointer_size, offset_size);
3803 compunit.cu_pointer_size = offset_size;
3804 }
3805
3806 if (do_types)
3807 {
3808 SAFE_BYTE_GET_AND_INC (signature, hdrptr, 8, end_cu);
3809 SAFE_BYTE_GET_AND_INC (type_offset, hdrptr, offset_size, end_cu);
3810 }
3811
3812 if (dwarf_start_die >= (size_t) (end_cu - section_begin))
3813 {
3814 start = end_cu;
3815 continue;
3816 }
3817
3818 if ((do_loc || do_debug_loc || do_debug_ranges || do_debug_info)
3819 && num_debug_info_entries == 0
3820 && alloc_num_debug_info_entries > unit
3821 && ! do_types)
3822 {
3823 free_debug_information (&debug_information[unit]);
3824 memset (&debug_information[unit], 0, sizeof (*debug_information));
3825 debug_information[unit].pointer_size = compunit.cu_pointer_size;
3826 debug_information[unit].offset_size = offset_size;
3827 debug_information[unit].dwarf_version = compunit.cu_version;
3828 debug_information[unit].cu_offset = cu_offset;
3829 debug_information[unit].addr_base = DEBUG_INFO_UNAVAILABLE;
3830 debug_information[unit].ranges_base = DEBUG_INFO_UNAVAILABLE;
3831 }
3832
3833 if (!do_loc && dwarf_start_die == 0)
3834 {
3835 printf (_(" Compilation Unit @ offset %#" PRIx64 ":\n"),
3836 cu_offset);
3837 printf (_(" Length: %#" PRIx64 " (%s)\n"),
3838 compunit.cu_length,
3839 offset_size == 8 ? "64-bit" : "32-bit");
3840 printf (_(" Version: %d\n"), compunit.cu_version);
3841 if (compunit.cu_version >= 5)
3842 {
3843 const char *name = get_DW_UT_name (compunit.cu_unit_type);
3844
3845 printf (_(" Unit Type: %s (%x)\n"),
3846 name ? name : "???",
3847 compunit.cu_unit_type);
3848 }
3849 printf (_(" Abbrev Offset: %#" PRIx64 "\n"),
3850 compunit.cu_abbrev_offset);
3851 printf (_(" Pointer Size: %d\n"), compunit.cu_pointer_size);
3852 if (do_types)
3853 {
3854 printf (_(" Signature: %#" PRIx64 "\n"), signature);
3855 printf (_(" Type Offset: %#" PRIx64 "\n"), type_offset);
3856 }
3857 if (do_dwo_id)
3858 printf (_(" DWO ID: %#" PRIx64 "\n"), dwo_id);
3859 if (this_set != NULL)
3860 {
3861 uint64_t *offsets = this_set->section_offsets;
3862 size_t *sizes = this_set->section_sizes;
3863
3864 printf (_(" Section contributions:\n"));
3865 printf (_(" .debug_abbrev.dwo: %#" PRIx64 " %#zx\n"),
3866 offsets[DW_SECT_ABBREV], sizes[DW_SECT_ABBREV]);
3867 printf (_(" .debug_line.dwo: %#" PRIx64 " %#zx\n"),
3868 offsets[DW_SECT_LINE], sizes[DW_SECT_LINE]);
3869 printf (_(" .debug_loc.dwo: %#" PRIx64 " %#zx\n"),
3870 offsets[DW_SECT_LOC], sizes[DW_SECT_LOC]);
3871 printf (_(" .debug_str_offsets.dwo: %#" PRIx64 " %#zx\n"),
3872 offsets[DW_SECT_STR_OFFSETS], sizes[DW_SECT_STR_OFFSETS]);
3873 }
3874 }
3875
3876 tags = hdrptr;
3877 start = end_cu;
3878
3879 if (compunit.cu_version < 2 || compunit.cu_version > 5)
3880 {
3881 warn (_("CU at offset %#" PRIx64 " contains corrupt or "
3882 "unsupported version number: %d.\n"),
3883 cu_offset, compunit.cu_version);
3884 continue;
3885 }
3886
3887 if (compunit.cu_unit_type != DW_UT_compile
3888 && compunit.cu_unit_type != DW_UT_partial
3889 && compunit.cu_unit_type != DW_UT_type
3890 && compunit.cu_unit_type != DW_UT_split_compile
3891 && compunit.cu_unit_type != DW_UT_skeleton)
3892 {
3893 warn (_("CU at offset %#" PRIx64 " contains corrupt or "
3894 "unsupported unit type: %d.\n"),
3895 cu_offset, compunit.cu_unit_type);
3896 continue;
3897 }
3898
3899 /* Process the abbrevs used by this compilation unit. */
3900 abbrev_list *list;
3901 list = find_and_process_abbrev_set (&debug_displays[abbrev_sec].section,
3902 abbrev_base, abbrev_size,
3903 compunit.cu_abbrev_offset, NULL);
3904 level = 0;
3905 last_level = level;
3906 saved_level = -1;
3907 while (tags < start)
3908 {
3909 unsigned long abbrev_number;
3910 unsigned long die_offset;
3911 abbrev_entry *entry;
3912 abbrev_attr *attr;
3913 int do_printing = 1;
3914
3915 die_offset = tags - section_begin;
3916
3917 READ_ULEB (abbrev_number, tags, start);
3918
3919 /* A null DIE marks the end of a list of siblings or it may also be
3920 a section padding. */
3921 if (abbrev_number == 0)
3922 {
3923 /* Check if it can be a section padding for the last CU. */
3924 if (level == 0 && start == end)
3925 {
3926 unsigned char *chk;
3927
3928 for (chk = tags; chk < start; chk++)
3929 if (*chk != 0)
3930 break;
3931 if (chk == start)
3932 break;
3933 }
3934
3935 if (!do_loc && die_offset >= dwarf_start_die
3936 && (dwarf_cutoff_level == -1
3937 || level < dwarf_cutoff_level))
3938 printf (_(" <%d><%lx>: Abbrev Number: 0\n"),
3939 level, die_offset);
3940
3941 --level;
3942 if (level < 0)
3943 {
3944 static unsigned num_bogus_warns = 0;
3945
3946 if (num_bogus_warns < 3)
3947 {
3948 warn (_("Bogus end-of-siblings marker detected at offset %lx in %s section\n"),
3949 die_offset, section->name);
3950 num_bogus_warns ++;
3951 if (num_bogus_warns == 3)
3952 warn (_("Further warnings about bogus end-of-sibling markers suppressed\n"));
3953 }
3954 }
3955 if (dwarf_start_die != 0 && level < saved_level)
3956 return true;
3957 continue;
3958 }
3959
3960 if (!do_loc)
3961 {
3962 if (dwarf_start_die != 0 && die_offset < dwarf_start_die)
3963 do_printing = 0;
3964 else
3965 {
3966 if (dwarf_start_die != 0 && die_offset == dwarf_start_die)
3967 saved_level = level;
3968 do_printing = (dwarf_cutoff_level == -1
3969 || level < dwarf_cutoff_level);
3970 if (do_printing)
3971 printf (_(" <%d><%lx>: Abbrev Number: %lu"),
3972 level, die_offset, abbrev_number);
3973 else if (dwarf_cutoff_level == -1
3974 || last_level < dwarf_cutoff_level)
3975 printf (_(" <%d><%lx>: ...\n"), level, die_offset);
3976 last_level = level;
3977 }
3978 }
3979
3980 /* Scan through the abbreviation list until we reach the
3981 correct entry. */
3982 entry = NULL;
3983 if (list != NULL)
3984 for (entry = list->first_abbrev; entry != NULL; entry = entry->next)
3985 if (entry->number == abbrev_number)
3986 break;
3987
3988 if (entry == NULL)
3989 {
3990 if (!do_loc && do_printing)
3991 {
3992 printf ("\n");
3993 fflush (stdout);
3994 }
3995 warn (_("DIE at offset %#lx refers to abbreviation number %lu which does not exist\n"),
3996 die_offset, abbrev_number);
3997 return false;
3998 }
3999
4000 if (!do_loc && do_printing)
4001 printf (" (%s)\n", get_TAG_name (entry->tag));
4002
4003 switch (entry->tag)
4004 {
4005 default:
4006 need_base_address = 0;
4007 break;
4008 case DW_TAG_compile_unit:
4009 case DW_TAG_skeleton_unit:
4010 need_base_address = 1;
4011 need_dwo_info = do_loc;
4012 break;
4013 case DW_TAG_entry_point:
4014 case DW_TAG_subprogram:
4015 need_base_address = 0;
4016 /* Assuming that there is no DW_AT_frame_base. */
4017 have_frame_base = 0;
4018 break;
4019 }
4020
4021 debug_info *debug_info_p =
4022 (debug_information && unit < alloc_num_debug_info_entries)
4023 ? debug_information + unit : NULL;
4024
4025 assert (!debug_info_p
4026 || (debug_info_p->num_loc_offsets
4027 == debug_info_p->num_loc_views));
4028
4029 for (attr = entry->first_attr;
4030 attr && attr->attribute;
4031 attr = attr->next)
4032 {
4033 if (! do_loc && do_printing)
4034 /* Show the offset from where the tag was extracted. */
4035 printf (" <%tx>", tags - section_begin);
4036 tags = read_and_display_attr (attr->attribute,
4037 attr->form,
4038 attr->implicit_const,
4039 section_begin,
4040 tags,
4041 start,
4042 cu_offset,
4043 compunit.cu_pointer_size,
4044 offset_size,
4045 compunit.cu_version,
4046 debug_info_p,
4047 do_loc || ! do_printing,
4048 section,
4049 this_set,
4050 level);
4051 }
4052
4053 /* If a locview attribute appears before a location one,
4054 make sure we don't associate it with an earlier
4055 loclist. */
4056 if (debug_info_p)
4057 switch (debug_info_p->num_loc_offsets - debug_info_p->num_loc_views)
4058 {
4059 case 1:
4060 debug_info_p->loc_views [debug_info_p->num_loc_views] = -1;
4061 debug_info_p->num_loc_views++;
4062 assert (debug_info_p->num_loc_views
4063 == debug_info_p->num_loc_offsets);
4064 break;
4065
4066 case 0:
4067 break;
4068
4069 case -1:
4070 warn(_("DIE has locviews without loclist\n"));
4071 debug_info_p->num_loc_views--;
4072 break;
4073
4074 default:
4075 assert (0);
4076 }
4077
4078 if (entry->children)
4079 ++level;
4080 }
4081 if (list != NULL)
4082 free_abbrev_list (list);
4083 }
4084
4085 /* Set num_debug_info_entries here so that it can be used to check if
4086 we need to process .debug_loc and .debug_ranges sections. */
4087 if ((do_loc || do_debug_loc || do_debug_ranges || do_debug_info)
4088 && num_debug_info_entries == 0
4089 && ! do_types)
4090 {
4091 if (num_units > alloc_num_debug_info_entries)
4092 num_debug_info_entries = alloc_num_debug_info_entries;
4093 else
4094 num_debug_info_entries = num_units;
4095 }
4096
4097 if (!do_loc)
4098 printf ("\n");
4099
4100 return true;
4101 }
4102
4103 /* Locate and scan the .debug_info section in the file and record the pointer
4104 sizes and offsets for the compilation units in it. Usually an executable
4105 will have just one pointer size, but this is not guaranteed, and so we try
4106 not to make any assumptions. Returns zero upon failure, or the number of
4107 compilation units upon success. */
4108
4109 static unsigned int
4110 load_debug_info (void * file)
4111 {
4112 /* If we have already tried and failed to load the .debug_info
4113 section then do not bother to repeat the task. */
4114 if (num_debug_info_entries == DEBUG_INFO_UNAVAILABLE)
4115 return 0;
4116
4117 /* If we already have the information there is nothing else to do. */
4118 if (num_debug_info_entries > 0)
4119 return num_debug_info_entries;
4120
4121 /* If this is a DWARF package file, load the CU and TU indexes. */
4122 (void) load_cu_tu_indexes (file);
4123
4124 if (load_debug_section_with_follow (info, file)
4125 && process_debug_info (&debug_displays [info].section, file, abbrev, true, false))
4126 return num_debug_info_entries;
4127
4128 if (load_debug_section_with_follow (info_dwo, file)
4129 && process_debug_info (&debug_displays [info_dwo].section, file,
4130 abbrev_dwo, true, false))
4131 return num_debug_info_entries;
4132
4133 num_debug_info_entries = DEBUG_INFO_UNAVAILABLE;
4134 return 0;
4135 }
4136
4137 /* Read a DWARF .debug_line section header starting at DATA.
4138 Upon success returns an updated DATA pointer and the LINFO
4139 structure and the END_OF_SEQUENCE pointer will be filled in.
4140 Otherwise returns NULL. */
4141
4142 static unsigned char *
4143 read_debug_line_header (struct dwarf_section * section,
4144 unsigned char * data,
4145 unsigned char * end,
4146 DWARF2_Internal_LineInfo * linfo,
4147 unsigned char ** end_of_sequence)
4148 {
4149 unsigned char *hdrptr;
4150
4151 /* Extract information from the Line Number Program Header.
4152 (section 6.2.4 in the Dwarf3 doc). */
4153 hdrptr = data;
4154
4155 /* Get and check the length of the block. */
4156 SAFE_BYTE_GET_AND_INC (linfo->li_length, hdrptr, 4, end);
4157
4158 if (linfo->li_length == 0xffffffff)
4159 {
4160 /* This section is 64-bit DWARF 3. */
4161 SAFE_BYTE_GET_AND_INC (linfo->li_length, hdrptr, 8, end);
4162 linfo->li_offset_size = 8;
4163 }
4164 else
4165 linfo->li_offset_size = 4;
4166
4167 if (linfo->li_length > (size_t) (end - hdrptr))
4168 {
4169 /* If the length field has a relocation against it, then we should
4170 not complain if it is inaccurate (and probably negative). This
4171 happens in object files when the .debug_line section is actually
4172 comprised of several different .debug_line.* sections, (some of
4173 which may be removed by linker garbage collection), and a relocation
4174 is used to compute the correct length once that is done. */
4175 if (reloc_at (section, (hdrptr - section->start) - linfo->li_offset_size))
4176 {
4177 linfo->li_length = end - hdrptr;
4178 }
4179 else
4180 {
4181 warn (_("The length field (%#" PRIx64 ")"
4182 " in the debug_line header is wrong"
4183 " - the section is too small\n"),
4184 linfo->li_length);
4185 return NULL;
4186 }
4187 }
4188 end = hdrptr + linfo->li_length;
4189
4190 /* Get and check the version number. */
4191 SAFE_BYTE_GET_AND_INC (linfo->li_version, hdrptr, 2, end);
4192
4193 if (linfo->li_version != 2
4194 && linfo->li_version != 3
4195 && linfo->li_version != 4
4196 && linfo->li_version != 5)
4197 {
4198 warn (_("Only DWARF version 2, 3, 4 and 5 line info "
4199 "is currently supported.\n"));
4200 return NULL;
4201 }
4202
4203 if (linfo->li_version >= 5)
4204 {
4205 SAFE_BYTE_GET_AND_INC (linfo->li_address_size, hdrptr, 1, end);
4206
4207 SAFE_BYTE_GET_AND_INC (linfo->li_segment_size, hdrptr, 1, end);
4208 if (linfo->li_segment_size != 0)
4209 {
4210 warn (_("The %s section contains "
4211 "unsupported segment selector size: %d.\n"),
4212 section->name, linfo->li_segment_size);
4213 return NULL;
4214 }
4215 }
4216
4217 SAFE_BYTE_GET_AND_INC (linfo->li_prologue_length, hdrptr,
4218 linfo->li_offset_size, end);
4219 SAFE_BYTE_GET_AND_INC (linfo->li_min_insn_length, hdrptr, 1, end);
4220
4221 if (linfo->li_version >= 4)
4222 {
4223 SAFE_BYTE_GET_AND_INC (linfo->li_max_ops_per_insn, hdrptr, 1, end);
4224
4225 if (linfo->li_max_ops_per_insn == 0)
4226 {
4227 warn (_("Invalid maximum operations per insn.\n"));
4228 return NULL;
4229 }
4230 }
4231 else
4232 linfo->li_max_ops_per_insn = 1;
4233
4234 SAFE_BYTE_GET_AND_INC (linfo->li_default_is_stmt, hdrptr, 1, end);
4235 SAFE_SIGNED_BYTE_GET_AND_INC (linfo->li_line_base, hdrptr, 1, end);
4236 SAFE_BYTE_GET_AND_INC (linfo->li_line_range, hdrptr, 1, end);
4237 SAFE_BYTE_GET_AND_INC (linfo->li_opcode_base, hdrptr, 1, end);
4238
4239 *end_of_sequence = end;
4240 return hdrptr;
4241 }
4242
4243 static unsigned char *
4244 display_formatted_table (unsigned char *data,
4245 unsigned char *start,
4246 unsigned char *end,
4247 const DWARF2_Internal_LineInfo *linfo,
4248 struct dwarf_section *section,
4249 bool is_dir)
4250 {
4251 unsigned char *format_start, format_count, *format, formati;
4252 uint64_t data_count, datai;
4253 unsigned int namepass, last_entry = 0;
4254 const char * table_name = is_dir ? N_("Directory Table") : N_("File Name Table");
4255
4256 SAFE_BYTE_GET_AND_INC (format_count, data, 1, end);
4257 if (do_checks && format_count > 5)
4258 warn (_("Unexpectedly large number of columns in the %s (%u)\n"),
4259 table_name, format_count);
4260
4261 format_start = data;
4262 for (formati = 0; formati < format_count; formati++)
4263 {
4264 SKIP_ULEB (data, end);
4265 SKIP_ULEB (data, end);
4266 if (data >= end)
4267 {
4268 warn (_("%s: Corrupt format description entry\n"), table_name);
4269 return data;
4270 }
4271 }
4272
4273 READ_ULEB (data_count, data, end);
4274 if (data_count == 0)
4275 {
4276 printf (_("\n The %s is empty.\n"), table_name);
4277 return data;
4278 }
4279 else if (data >= end)
4280 {
4281 warn (_("%s: Corrupt entry count - expected %#" PRIx64
4282 " but none found\n"), table_name, data_count);
4283 return data;
4284 }
4285
4286 else if (format_count == 0)
4287 {
4288 warn (_("%s: format count is zero, but the table is not empty\n"),
4289 table_name);
4290 return end;
4291 }
4292
4293 printf (_("\n The %s (offset %#tx, lines %" PRIu64 ", columns %u):\n"),
4294 table_name, data - start, data_count, format_count);
4295
4296 printf (_(" Entry"));
4297 /* Delay displaying name as the last entry for better screen layout. */
4298 for (namepass = 0; namepass < 2; namepass++)
4299 {
4300 format = format_start;
4301 for (formati = 0; formati < format_count; formati++)
4302 {
4303 uint64_t content_type;
4304
4305 READ_ULEB (content_type, format, end);
4306 if ((content_type == DW_LNCT_path) == (namepass == 1))
4307 switch (content_type)
4308 {
4309 case DW_LNCT_path:
4310 printf (_("\tName"));
4311 break;
4312 case DW_LNCT_directory_index:
4313 printf (_("\tDir"));
4314 break;
4315 case DW_LNCT_timestamp:
4316 printf (_("\tTime"));
4317 break;
4318 case DW_LNCT_size:
4319 printf (_("\tSize"));
4320 break;
4321 case DW_LNCT_MD5:
4322 printf (_("\tMD5\t\t\t"));
4323 break;
4324 default:
4325 printf (_("\t(Unknown format content type %" PRIu64 ")"),
4326 content_type);
4327 }
4328 SKIP_ULEB (format, end);
4329 }
4330 }
4331 putchar ('\n');
4332
4333 for (datai = 0; datai < data_count; datai++)
4334 {
4335 unsigned char *datapass = data;
4336
4337 printf (" %d", last_entry++);
4338 /* Delay displaying name as the last entry for better screen layout. */
4339 for (namepass = 0; namepass < 2; namepass++)
4340 {
4341 format = format_start;
4342 data = datapass;
4343 for (formati = 0; formati < format_count; formati++)
4344 {
4345 uint64_t content_type, form;
4346
4347 READ_ULEB (content_type, format, end);
4348 READ_ULEB (form, format, end);
4349 data = read_and_display_attr_value (0, form, 0, start, data, end,
4350 0, 0, linfo->li_offset_size,
4351 linfo->li_version, NULL,
4352 ((content_type == DW_LNCT_path) != (namepass == 1)),
4353 section, NULL, '\t', -1);
4354 }
4355 }
4356
4357 if (data >= end && (datai < data_count - 1))
4358 {
4359 warn (_("\n%s: Corrupt entries list\n"), table_name);
4360 return data;
4361 }
4362 putchar ('\n');
4363 }
4364 return data;
4365 }
4366
4367 static int
4368 display_debug_sup (struct dwarf_section * section,
4369 void * file ATTRIBUTE_UNUSED)
4370 {
4371 unsigned char * start = section->start;
4372 unsigned char * end = section->start + section->size;
4373 unsigned int version;
4374 char is_supplementary;
4375 const unsigned char * sup_filename;
4376 size_t sup_filename_len;
4377 unsigned int num_read;
4378 int status;
4379 uint64_t checksum_len;
4380
4381
4382 introduce (section, true);
4383 if (section->size < 4)
4384 {
4385 error (_("corrupt .debug_sup section: size is too small\n"));
4386 return 0;
4387 }
4388
4389 /* Read the data. */
4390 SAFE_BYTE_GET_AND_INC (version, start, 2, end);
4391 if (version < 5)
4392 warn (_("corrupt .debug_sup section: version < 5"));
4393
4394 SAFE_BYTE_GET_AND_INC (is_supplementary, start, 1, end);
4395 if (is_supplementary != 0 && is_supplementary != 1)
4396 warn (_("corrupt .debug_sup section: is_supplementary not 0 or 1\n"));
4397
4398 sup_filename = start;
4399 if (is_supplementary && sup_filename[0] != 0)
4400 warn (_("corrupt .debug_sup section: filename not empty in supplementary section\n"));
4401
4402 sup_filename_len = strnlen ((const char *) start, end - start);
4403 if (sup_filename_len == (size_t) (end - start))
4404 {
4405 error (_("corrupt .debug_sup section: filename is not NUL terminated\n"));
4406 return 0;
4407 }
4408 start += sup_filename_len + 1;
4409
4410 checksum_len = read_leb128 (start, end, false /* unsigned */, & num_read, & status);
4411 if (status)
4412 {
4413 error (_("corrupt .debug_sup section: bad LEB128 field for checksum length\n"));
4414 checksum_len = 0;
4415 }
4416 start += num_read;
4417 if (checksum_len > (size_t) (end - start))
4418 {
4419 error (_("corrupt .debug_sup section: checksum length is longer than the remaining section length\n"));
4420 checksum_len = end - start;
4421 }
4422 else if (checksum_len < (size_t) (end - start))
4423 {
4424 warn (_("corrupt .debug_sup section: there are %#" PRIx64
4425 " extra, unused bytes at the end of the section\n"),
4426 (end - start) - checksum_len);
4427 }
4428
4429 printf (_(" Version: %u\n"), version);
4430 printf (_(" Is Supp: %u\n"), is_supplementary);
4431 printf (_(" Filename: %s\n"), sup_filename);
4432 printf (_(" Checksum Len: %" PRIu64 "\n"), checksum_len);
4433 if (checksum_len > 0)
4434 {
4435 printf (_(" Checksum: "));
4436 while (checksum_len--)
4437 printf ("0x%x ", * start++ );
4438 printf ("\n");
4439 }
4440 return 1;
4441 }
4442
4443 static int
4444 display_debug_lines_raw (struct dwarf_section * section,
4445 unsigned char * data,
4446 unsigned char * end,
4447 void * file)
4448 {
4449 unsigned char *start = section->start;
4450 int verbose_view = 0;
4451
4452 introduce (section, true);
4453
4454 while (data < end)
4455 {
4456 static DWARF2_Internal_LineInfo saved_linfo;
4457 DWARF2_Internal_LineInfo linfo;
4458 unsigned char *standard_opcodes;
4459 unsigned char *end_of_sequence;
4460 int i;
4461
4462 if (startswith (section->name, ".debug_line.")
4463 /* Note: the following does not apply to .debug_line.dwo sections.
4464 These are full debug_line sections. */
4465 && strcmp (section->name, ".debug_line.dwo") != 0)
4466 {
4467 /* Sections named .debug_line.<foo> are fragments of a .debug_line
4468 section containing just the Line Number Statements. They are
4469 created by the assembler and intended to be used alongside gcc's
4470 -ffunction-sections command line option. When the linker's
4471 garbage collection decides to discard a .text.<foo> section it
4472 can then also discard the line number information in .debug_line.<foo>.
4473
4474 Since the section is a fragment it does not have the details
4475 needed to fill out a LineInfo structure, so instead we use the
4476 details from the last full debug_line section that we processed. */
4477 end_of_sequence = end;
4478 standard_opcodes = NULL;
4479 linfo = saved_linfo;
4480 /* PR 17531: file: 0522b371. */
4481 if (linfo.li_line_range == 0)
4482 {
4483 warn (_("Partial .debug_line. section encountered without a prior full .debug_line section\n"));
4484 return 0;
4485 }
4486 reset_state_machine (linfo.li_default_is_stmt);
4487 }
4488 else
4489 {
4490 unsigned char * hdrptr;
4491
4492 if ((hdrptr = read_debug_line_header (section, data, end, & linfo,
4493 & end_of_sequence)) == NULL)
4494 return 0;
4495
4496 printf (_(" Offset: %#tx\n"), data - start);
4497 printf (_(" Length: %" PRId64 "\n"), linfo.li_length);
4498 printf (_(" DWARF Version: %d\n"), linfo.li_version);
4499 if (linfo.li_version >= 5)
4500 {
4501 printf (_(" Address size (bytes): %d\n"), linfo.li_address_size);
4502 printf (_(" Segment selector (bytes): %d\n"), linfo.li_segment_size);
4503 }
4504 printf (_(" Prologue Length: %d\n"), (int) linfo.li_prologue_length);
4505 printf (_(" Minimum Instruction Length: %d\n"), linfo.li_min_insn_length);
4506 if (linfo.li_version >= 4)
4507 printf (_(" Maximum Ops per Instruction: %d\n"), linfo.li_max_ops_per_insn);
4508 printf (_(" Initial value of 'is_stmt': %d\n"), linfo.li_default_is_stmt);
4509 printf (_(" Line Base: %d\n"), linfo.li_line_base);
4510 printf (_(" Line Range: %d\n"), linfo.li_line_range);
4511 printf (_(" Opcode Base: %d\n"), linfo.li_opcode_base);
4512
4513 /* PR 17512: file: 1665-6428-0.004. */
4514 if (linfo.li_line_range == 0)
4515 {
4516 warn (_("Line range of 0 is invalid, using 1 instead\n"));
4517 linfo.li_line_range = 1;
4518 }
4519
4520 reset_state_machine (linfo.li_default_is_stmt);
4521
4522 /* Display the contents of the Opcodes table. */
4523 standard_opcodes = hdrptr;
4524
4525 /* PR 17512: file: 002-417945-0.004. */
4526 if (standard_opcodes + linfo.li_opcode_base >= end)
4527 {
4528 warn (_("Line Base extends beyond end of section\n"));
4529 return 0;
4530 }
4531
4532 printf (_("\n Opcodes:\n"));
4533
4534 for (i = 1; i < linfo.li_opcode_base; i++)
4535 printf (ngettext (" Opcode %d has %d arg\n",
4536 " Opcode %d has %d args\n",
4537 standard_opcodes[i - 1]),
4538 i, standard_opcodes[i - 1]);
4539
4540 /* Display the contents of the Directory table. */
4541 data = standard_opcodes + linfo.li_opcode_base - 1;
4542
4543 if (linfo.li_version >= 5)
4544 {
4545 load_debug_section_with_follow (line_str, file);
4546
4547 data = display_formatted_table (data, start, end, &linfo, section,
4548 true);
4549 data = display_formatted_table (data, start, end, &linfo, section,
4550 false);
4551 }
4552 else
4553 {
4554 if (*data == 0)
4555 printf (_("\n The Directory Table is empty.\n"));
4556 else
4557 {
4558 unsigned int last_dir_entry = 0;
4559
4560 printf (_("\n The Directory Table (offset %#tx):\n"),
4561 data - start);
4562
4563 while (data < end && *data != 0)
4564 {
4565 printf (" %d\t%.*s\n", ++last_dir_entry, (int) (end - data), data);
4566
4567 data += strnlen ((char *) data, end - data);
4568 if (data < end)
4569 data++;
4570 }
4571
4572 /* PR 17512: file: 002-132094-0.004. */
4573 if (data >= end - 1)
4574 break;
4575 }
4576
4577 /* Skip the NUL at the end of the table. */
4578 if (data < end)
4579 data++;
4580
4581 /* Display the contents of the File Name table. */
4582 if (data >= end || *data == 0)
4583 printf (_("\n The File Name Table is empty.\n"));
4584 else
4585 {
4586 printf (_("\n The File Name Table (offset %#tx):\n"),
4587 data - start);
4588 printf (_(" Entry\tDir\tTime\tSize\tName\n"));
4589
4590 while (data < end && *data != 0)
4591 {
4592 unsigned char *name;
4593 uint64_t val;
4594
4595 printf (" %d\t", ++state_machine_regs.last_file_entry);
4596 name = data;
4597 data += strnlen ((char *) data, end - data);
4598 if (data < end)
4599 data++;
4600
4601 READ_ULEB (val, data, end);
4602 printf ("%" PRIu64 "\t", val);
4603 READ_ULEB (val, data, end);
4604 printf ("%" PRIu64 "\t", val);
4605 READ_ULEB (val, data, end);
4606 printf ("%" PRIu64 "\t", val);
4607 printf ("%.*s\n", (int)(end - name), name);
4608
4609 if (data >= end)
4610 {
4611 warn (_("Corrupt file name table entry\n"));
4612 break;
4613 }
4614 }
4615 }
4616
4617 /* Skip the NUL at the end of the table. */
4618 if (data < end)
4619 data++;
4620 }
4621
4622 putchar ('\n');
4623 saved_linfo = linfo;
4624 }
4625
4626 /* Now display the statements. */
4627 if (data >= end_of_sequence)
4628 printf (_(" No Line Number Statements.\n"));
4629 else
4630 {
4631 printf (_(" Line Number Statements:\n"));
4632
4633 while (data < end_of_sequence)
4634 {
4635 unsigned char op_code;
4636 int64_t adv;
4637 uint64_t uladv;
4638
4639 printf (" [0x%08tx]", data - start);
4640
4641 op_code = *data++;
4642
4643 if (op_code >= linfo.li_opcode_base)
4644 {
4645 op_code -= linfo.li_opcode_base;
4646 uladv = (op_code / linfo.li_line_range);
4647 if (linfo.li_max_ops_per_insn == 1)
4648 {
4649 uladv *= linfo.li_min_insn_length;
4650 state_machine_regs.address += uladv;
4651 if (uladv)
4652 state_machine_regs.view = 0;
4653 printf (_(" Special opcode %d: "
4654 "advance Address by %" PRIu64
4655 " to %#" PRIx64 "%s"),
4656 op_code, uladv, state_machine_regs.address,
4657 verbose_view && uladv
4658 ? _(" (reset view)") : "");
4659 }
4660 else
4661 {
4662 unsigned addrdelta
4663 = ((state_machine_regs.op_index + uladv)
4664 / linfo.li_max_ops_per_insn)
4665 * linfo.li_min_insn_length;
4666
4667 state_machine_regs.address += addrdelta;
4668 state_machine_regs.op_index
4669 = (state_machine_regs.op_index + uladv)
4670 % linfo.li_max_ops_per_insn;
4671 if (addrdelta)
4672 state_machine_regs.view = 0;
4673 printf (_(" Special opcode %d: "
4674 "advance Address by %" PRIu64
4675 " to %#" PRIx64 "[%d]%s"),
4676 op_code, uladv, state_machine_regs.address,
4677 state_machine_regs.op_index,
4678 verbose_view && addrdelta
4679 ? _(" (reset view)") : "");
4680 }
4681 adv = (op_code % linfo.li_line_range) + linfo.li_line_base;
4682 state_machine_regs.line += adv;
4683 printf (_(" and Line by %" PRId64 " to %d"),
4684 adv, state_machine_regs.line);
4685 if (verbose_view || state_machine_regs.view)
4686 printf (_(" (view %u)\n"), state_machine_regs.view);
4687 else
4688 putchar ('\n');
4689 state_machine_regs.view++;
4690 }
4691 else
4692 switch (op_code)
4693 {
4694 case DW_LNS_extended_op:
4695 data += process_extended_line_op (data,
4696 linfo.li_default_is_stmt,
4697 end);
4698 break;
4699
4700 case DW_LNS_copy:
4701 printf (_(" Copy"));
4702 if (verbose_view || state_machine_regs.view)
4703 printf (_(" (view %u)\n"), state_machine_regs.view);
4704 else
4705 putchar ('\n');
4706 state_machine_regs.view++;
4707 break;
4708
4709 case DW_LNS_advance_pc:
4710 READ_ULEB (uladv, data, end);
4711 if (linfo.li_max_ops_per_insn == 1)
4712 {
4713 uladv *= linfo.li_min_insn_length;
4714 state_machine_regs.address += uladv;
4715 if (uladv)
4716 state_machine_regs.view = 0;
4717 printf (_(" Advance PC by %" PRIu64
4718 " to %#" PRIx64 "%s\n"),
4719 uladv, state_machine_regs.address,
4720 verbose_view && uladv
4721 ? _(" (reset view)") : "");
4722 }
4723 else
4724 {
4725 unsigned addrdelta
4726 = ((state_machine_regs.op_index + uladv)
4727 / linfo.li_max_ops_per_insn)
4728 * linfo.li_min_insn_length;
4729 state_machine_regs.address
4730 += addrdelta;
4731 state_machine_regs.op_index
4732 = (state_machine_regs.op_index + uladv)
4733 % linfo.li_max_ops_per_insn;
4734 if (addrdelta)
4735 state_machine_regs.view = 0;
4736 printf (_(" Advance PC by %" PRIu64
4737 " to %#" PRIx64 "[%d]%s\n"),
4738 uladv, state_machine_regs.address,
4739 state_machine_regs.op_index,
4740 verbose_view && addrdelta
4741 ? _(" (reset view)") : "");
4742 }
4743 break;
4744
4745 case DW_LNS_advance_line:
4746 READ_SLEB (adv, data, end);
4747 state_machine_regs.line += adv;
4748 printf (_(" Advance Line by %" PRId64 " to %d\n"),
4749 adv, state_machine_regs.line);
4750 break;
4751
4752 case DW_LNS_set_file:
4753 READ_ULEB (uladv, data, end);
4754 printf (_(" Set File Name to entry %" PRIu64
4755 " in the File Name Table\n"), uladv);
4756 state_machine_regs.file = uladv;
4757 break;
4758
4759 case DW_LNS_set_column:
4760 READ_ULEB (uladv, data, end);
4761 printf (_(" Set column to %" PRIu64 "\n"), uladv);
4762 state_machine_regs.column = uladv;
4763 break;
4764
4765 case DW_LNS_negate_stmt:
4766 adv = state_machine_regs.is_stmt;
4767 adv = ! adv;
4768 printf (_(" Set is_stmt to %" PRId64 "\n"), adv);
4769 state_machine_regs.is_stmt = adv;
4770 break;
4771
4772 case DW_LNS_set_basic_block:
4773 printf (_(" Set basic block\n"));
4774 state_machine_regs.basic_block = 1;
4775 break;
4776
4777 case DW_LNS_const_add_pc:
4778 uladv = ((255 - linfo.li_opcode_base) / linfo.li_line_range);
4779 if (linfo.li_max_ops_per_insn)
4780 {
4781 uladv *= linfo.li_min_insn_length;
4782 state_machine_regs.address += uladv;
4783 if (uladv)
4784 state_machine_regs.view = 0;
4785 printf (_(" Advance PC by constant %" PRIu64
4786 " to %#" PRIx64 "%s\n"),
4787 uladv, state_machine_regs.address,
4788 verbose_view && uladv
4789 ? _(" (reset view)") : "");
4790 }
4791 else
4792 {
4793 unsigned addrdelta
4794 = ((state_machine_regs.op_index + uladv)
4795 / linfo.li_max_ops_per_insn)
4796 * linfo.li_min_insn_length;
4797 state_machine_regs.address
4798 += addrdelta;
4799 state_machine_regs.op_index
4800 = (state_machine_regs.op_index + uladv)
4801 % linfo.li_max_ops_per_insn;
4802 if (addrdelta)
4803 state_machine_regs.view = 0;
4804 printf (_(" Advance PC by constant %" PRIu64
4805 " to %#" PRIx64 "[%d]%s\n"),
4806 uladv, state_machine_regs.address,
4807 state_machine_regs.op_index,
4808 verbose_view && addrdelta
4809 ? _(" (reset view)") : "");
4810 }
4811 break;
4812
4813 case DW_LNS_fixed_advance_pc:
4814 SAFE_BYTE_GET_AND_INC (uladv, data, 2, end);
4815 state_machine_regs.address += uladv;
4816 state_machine_regs.op_index = 0;
4817 printf (_(" Advance PC by fixed size amount %" PRIu64
4818 " to %#" PRIx64 "\n"),
4819 uladv, state_machine_regs.address);
4820 /* Do NOT reset view. */
4821 break;
4822
4823 case DW_LNS_set_prologue_end:
4824 printf (_(" Set prologue_end to true\n"));
4825 break;
4826
4827 case DW_LNS_set_epilogue_begin:
4828 printf (_(" Set epilogue_begin to true\n"));
4829 break;
4830
4831 case DW_LNS_set_isa:
4832 READ_ULEB (uladv, data, end);
4833 printf (_(" Set ISA to %" PRIu64 "\n"), uladv);
4834 break;
4835
4836 default:
4837 printf (_(" Unknown opcode %d with operands: "), op_code);
4838
4839 if (standard_opcodes != NULL)
4840 for (i = standard_opcodes[op_code - 1]; i > 0 ; --i)
4841 {
4842 READ_ULEB (uladv, data, end);
4843 printf ("%#" PRIx64 "%s", uladv, i == 1 ? "" : ", ");
4844 }
4845 putchar ('\n');
4846 break;
4847 }
4848 }
4849 putchar ('\n');
4850 }
4851 }
4852
4853 return 1;
4854 }
4855
4856 typedef struct
4857 {
4858 unsigned char *name;
4859 unsigned int directory_index;
4860 unsigned int modification_date;
4861 unsigned int length;
4862 } File_Entry;
4863
4864 /* Output a decoded representation of the .debug_line section. */
4865
4866 static int
4867 display_debug_lines_decoded (struct dwarf_section * section,
4868 unsigned char * start,
4869 unsigned char * data,
4870 unsigned char * end,
4871 void * fileptr)
4872 {
4873 static DWARF2_Internal_LineInfo saved_linfo;
4874
4875 introduce (section, false);
4876
4877 while (data < end)
4878 {
4879 /* This loop amounts to one iteration per compilation unit. */
4880 DWARF2_Internal_LineInfo linfo;
4881 unsigned char *standard_opcodes;
4882 unsigned char *end_of_sequence;
4883 int i;
4884 File_Entry *file_table = NULL;
4885 unsigned int n_files = 0;
4886 unsigned char **directory_table = NULL;
4887 uint64_t n_directories = 0;
4888
4889 if (startswith (section->name, ".debug_line.")
4890 /* Note: the following does not apply to .debug_line.dwo sections.
4891 These are full debug_line sections. */
4892 && strcmp (section->name, ".debug_line.dwo") != 0)
4893 {
4894 /* See comment in display_debug_lines_raw(). */
4895 end_of_sequence = end;
4896 standard_opcodes = NULL;
4897 linfo = saved_linfo;
4898 /* PR 17531: file: 0522b371. */
4899 if (linfo.li_line_range == 0)
4900 {
4901 warn (_("Partial .debug_line. section encountered without a prior full .debug_line section\n"));
4902 return 0;
4903 }
4904 reset_state_machine (linfo.li_default_is_stmt);
4905 }
4906 else
4907 {
4908 unsigned char *hdrptr;
4909
4910 if ((hdrptr = read_debug_line_header (section, data, end, & linfo,
4911 & end_of_sequence)) == NULL)
4912 return 0;
4913
4914 /* PR 17531: file: 0522b371. */
4915 if (linfo.li_line_range == 0)
4916 {
4917 warn (_("Line range of 0 is invalid, using 1 instead\n"));
4918 linfo.li_line_range = 1;
4919 }
4920 reset_state_machine (linfo.li_default_is_stmt);
4921
4922 /* Save a pointer to the contents of the Opcodes table. */
4923 standard_opcodes = hdrptr;
4924
4925 /* Traverse the Directory table just to count entries. */
4926 data = standard_opcodes + linfo.li_opcode_base - 1;
4927 /* PR 20440 */
4928 if (data >= end)
4929 {
4930 warn (_("opcode base of %d extends beyond end of section\n"),
4931 linfo.li_opcode_base);
4932 return 0;
4933 }
4934
4935 if (linfo.li_version >= 5)
4936 {
4937 unsigned char *format_start, format_count, *format;
4938 uint64_t formati, entryi;
4939
4940 load_debug_section_with_follow (line_str, fileptr);
4941
4942 /* Skip directories format. */
4943 SAFE_BYTE_GET_AND_INC (format_count, data, 1, end);
4944 if (do_checks && format_count > 1)
4945 warn (_("Unexpectedly large number of columns in the directory name table (%u)\n"),
4946 format_count);
4947 format_start = data;
4948 for (formati = 0; formati < format_count; formati++)
4949 {
4950 SKIP_ULEB (data, end);
4951 SKIP_ULEB (data, end);
4952 }
4953
4954 READ_ULEB (n_directories, data, end);
4955 if (data >= end)
4956 {
4957 warn (_("Corrupt directories list\n"));
4958 break;
4959 }
4960
4961 if (n_directories == 0)
4962 directory_table = NULL;
4963 else
4964 directory_table = (unsigned char **)
4965 xmalloc (n_directories * sizeof (unsigned char *));
4966
4967 for (entryi = 0; entryi < n_directories; entryi++)
4968 {
4969 unsigned char **pathp = &directory_table[entryi];
4970
4971 format = format_start;
4972 for (formati = 0; formati < format_count; formati++)
4973 {
4974 uint64_t content_type, form;
4975 uint64_t uvalue;
4976
4977 READ_ULEB (content_type, format, end);
4978 READ_ULEB (form, format, end);
4979 if (data >= end)
4980 {
4981 warn (_("Corrupt directories list\n"));
4982 break;
4983 }
4984 switch (content_type)
4985 {
4986 case DW_LNCT_path:
4987 switch (form)
4988 {
4989 case DW_FORM_string:
4990 *pathp = data;
4991 break;
4992 case DW_FORM_line_strp:
4993 SAFE_BYTE_GET (uvalue, data, linfo.li_offset_size,
4994 end);
4995 /* Remove const by the cast. */
4996 *pathp = (unsigned char *)
4997 fetch_indirect_line_string (uvalue);
4998 break;
4999 }
5000 break;
5001 }
5002 data = read_and_display_attr_value (0, form, 0, start,
5003 data, end, 0, 0,
5004 linfo.li_offset_size,
5005 linfo.li_version,
5006 NULL, 1, section,
5007 NULL, '\t', -1);
5008 }
5009 if (data >= end)
5010 {
5011 warn (_("Corrupt directories list\n"));
5012 break;
5013 }
5014 }
5015
5016 /* Skip files format. */
5017 SAFE_BYTE_GET_AND_INC (format_count, data, 1, end);
5018 if (do_checks && format_count > 5)
5019 warn (_("Unexpectedly large number of columns in the file name table (%u)\n"),
5020 format_count);
5021 format_start = data;
5022 for (formati = 0; formati < format_count; formati++)
5023 {
5024 SKIP_ULEB (data, end);
5025 SKIP_ULEB (data, end);
5026 }
5027
5028 READ_ULEB (n_files, data, end);
5029 if (data >= end && n_files > 0)
5030 {
5031 warn (_("Corrupt file name list\n"));
5032 break;
5033 }
5034
5035 if (n_files == 0)
5036 file_table = NULL;
5037 else
5038 file_table = (File_Entry *) xcalloc (1, n_files
5039 * sizeof (File_Entry));
5040
5041 for (entryi = 0; entryi < n_files; entryi++)
5042 {
5043 File_Entry *file = &file_table[entryi];
5044
5045 format = format_start;
5046 for (formati = 0; formati < format_count; formati++)
5047 {
5048 uint64_t content_type, form;
5049 uint64_t uvalue;
5050 unsigned char *tmp;
5051
5052 READ_ULEB (content_type, format, end);
5053 READ_ULEB (form, format, end);
5054 if (data >= end)
5055 {
5056 warn (_("Corrupt file name list\n"));
5057 break;
5058 }
5059 switch (content_type)
5060 {
5061 case DW_LNCT_path:
5062 switch (form)
5063 {
5064 case DW_FORM_string:
5065 file->name = data;
5066 break;
5067 case DW_FORM_line_strp:
5068 SAFE_BYTE_GET (uvalue, data, linfo.li_offset_size,
5069 end);
5070 /* Remove const by the cast. */
5071 file->name = (unsigned char *)
5072 fetch_indirect_line_string (uvalue);
5073 break;
5074 }
5075 break;
5076 case DW_LNCT_directory_index:
5077 switch (form)
5078 {
5079 case DW_FORM_data1:
5080 SAFE_BYTE_GET (file->directory_index, data, 1,
5081 end);
5082 break;
5083 case DW_FORM_data2:
5084 SAFE_BYTE_GET (file->directory_index, data, 2,
5085 end);
5086 break;
5087 case DW_FORM_udata:
5088 tmp = data;
5089 READ_ULEB (file->directory_index, tmp, end);
5090 break;
5091 }
5092 break;
5093 }
5094 data = read_and_display_attr_value (0, form, 0, start,
5095 data, end, 0, 0,
5096 linfo.li_offset_size,
5097 linfo.li_version,
5098 NULL, 1, section,
5099 NULL, '\t', -1);
5100 }
5101 if (data >= end)
5102 {
5103 warn (_("Corrupt file name list\n"));
5104 break;
5105 }
5106 }
5107 }
5108 else
5109 {
5110 if (*data != 0)
5111 {
5112 unsigned char *ptr_directory_table = data;
5113
5114 while (data < end && *data != 0)
5115 {
5116 data += strnlen ((char *) data, end - data);
5117 if (data < end)
5118 data++;
5119 n_directories++;
5120 }
5121
5122 /* PR 20440 */
5123 if (data >= end)
5124 {
5125 warn (_("directory table ends unexpectedly\n"));
5126 n_directories = 0;
5127 break;
5128 }
5129
5130 /* Go through the directory table again to save the directories. */
5131 directory_table = (unsigned char **)
5132 xmalloc (n_directories * sizeof (unsigned char *));
5133
5134 i = 0;
5135 while (*ptr_directory_table != 0)
5136 {
5137 directory_table[i] = ptr_directory_table;
5138 ptr_directory_table
5139 += strlen ((char *) ptr_directory_table) + 1;
5140 i++;
5141 }
5142 }
5143 /* Skip the NUL at the end of the table. */
5144 data++;
5145
5146 /* Traverse the File Name table just to count the entries. */
5147 if (data < end && *data != 0)
5148 {
5149 unsigned char *ptr_file_name_table = data;
5150
5151 while (data < end && *data != 0)
5152 {
5153 /* Skip Name, directory index, last modification
5154 time and length of file. */
5155 data += strnlen ((char *) data, end - data);
5156 if (data < end)
5157 data++;
5158 SKIP_ULEB (data, end);
5159 SKIP_ULEB (data, end);
5160 SKIP_ULEB (data, end);
5161 n_files++;
5162 }
5163
5164 if (data >= end)
5165 {
5166 warn (_("file table ends unexpectedly\n"));
5167 n_files = 0;
5168 break;
5169 }
5170
5171 /* Go through the file table again to save the strings. */
5172 file_table = (File_Entry *) xmalloc (n_files * sizeof (File_Entry));
5173
5174 i = 0;
5175 while (*ptr_file_name_table != 0)
5176 {
5177 file_table[i].name = ptr_file_name_table;
5178 ptr_file_name_table
5179 += strlen ((char *) ptr_file_name_table) + 1;
5180
5181 /* We are not interested in directory, time or size. */
5182 READ_ULEB (file_table[i].directory_index,
5183 ptr_file_name_table, end);
5184 READ_ULEB (file_table[i].modification_date,
5185 ptr_file_name_table, end);
5186 READ_ULEB (file_table[i].length,
5187 ptr_file_name_table, end);
5188 i++;
5189 }
5190 i = 0;
5191 }
5192
5193 /* Skip the NUL at the end of the table. */
5194 data++;
5195 }
5196
5197 /* Print the Compilation Unit's name and a header. */
5198 if (file_table == NULL)
5199 printf (_("CU: No directory table\n"));
5200 else if (directory_table == NULL)
5201 printf (_("CU: %s:\n"), file_table[0].name);
5202 else
5203 {
5204 unsigned int ix = file_table[0].directory_index;
5205 const char *directory;
5206
5207 if (ix == 0)
5208 directory = ".";
5209 /* PR 20439 */
5210 else if (n_directories == 0)
5211 directory = _("<unknown>");
5212 else if (ix > n_directories)
5213 {
5214 warn (_("directory index %u > number of directories %" PRIu64 "\n"),
5215 ix, n_directories);
5216 directory = _("<corrupt>");
5217 }
5218 else
5219 directory = (char *) directory_table[ix - 1];
5220
5221 if (do_wide)
5222 printf (_("CU: %s/%s:\n"), directory, file_table[0].name);
5223 else
5224 printf ("%s:\n", file_table[0].name);
5225 }
5226
5227 if (n_files > 0)
5228 printf (_("File name Line number Starting address View Stmt\n"));
5229 else
5230 printf (_("CU: Empty file name table\n"));
5231 saved_linfo = linfo;
5232 }
5233
5234 /* This loop iterates through the Dwarf Line Number Program. */
5235 while (data < end_of_sequence)
5236 {
5237 unsigned char op_code;
5238 int xop;
5239 int adv;
5240 unsigned long int uladv;
5241 int is_special_opcode = 0;
5242
5243 op_code = *data++;
5244 xop = op_code;
5245
5246 if (op_code >= linfo.li_opcode_base)
5247 {
5248 op_code -= linfo.li_opcode_base;
5249 uladv = (op_code / linfo.li_line_range);
5250 if (linfo.li_max_ops_per_insn == 1)
5251 {
5252 uladv *= linfo.li_min_insn_length;
5253 state_machine_regs.address += uladv;
5254 if (uladv)
5255 state_machine_regs.view = 0;
5256 }
5257 else
5258 {
5259 unsigned addrdelta
5260 = ((state_machine_regs.op_index + uladv)
5261 / linfo.li_max_ops_per_insn)
5262 * linfo.li_min_insn_length;
5263 state_machine_regs.address
5264 += addrdelta;
5265 state_machine_regs.op_index
5266 = (state_machine_regs.op_index + uladv)
5267 % linfo.li_max_ops_per_insn;
5268 if (addrdelta)
5269 state_machine_regs.view = 0;
5270 }
5271
5272 adv = (op_code % linfo.li_line_range) + linfo.li_line_base;
5273 state_machine_regs.line += adv;
5274 is_special_opcode = 1;
5275 /* Increment view after printing this row. */
5276 }
5277 else
5278 switch (op_code)
5279 {
5280 case DW_LNS_extended_op:
5281 {
5282 unsigned int ext_op_code_len;
5283 unsigned char ext_op_code;
5284 unsigned char *op_code_end;
5285 unsigned char *op_code_data = data;
5286
5287 READ_ULEB (ext_op_code_len, op_code_data, end_of_sequence);
5288 op_code_end = op_code_data + ext_op_code_len;
5289 if (ext_op_code_len == 0 || op_code_end > end_of_sequence)
5290 {
5291 warn (_("Badly formed extended line op encountered!\n"));
5292 break;
5293 }
5294 ext_op_code = *op_code_data++;
5295 xop = ext_op_code;
5296 xop = -xop;
5297
5298 switch (ext_op_code)
5299 {
5300 case DW_LNE_end_sequence:
5301 /* Reset stuff after printing this row. */
5302 break;
5303 case DW_LNE_set_address:
5304 SAFE_BYTE_GET_AND_INC (state_machine_regs.address,
5305 op_code_data,
5306 op_code_end - op_code_data,
5307 op_code_end);
5308 state_machine_regs.op_index = 0;
5309 state_machine_regs.view = 0;
5310 break;
5311 case DW_LNE_define_file:
5312 file_table = (File_Entry *) xrealloc
5313 (file_table, (n_files + 1) * sizeof (File_Entry));
5314
5315 ++state_machine_regs.last_file_entry;
5316 /* Source file name. */
5317 file_table[n_files].name = op_code_data;
5318 op_code_data += strlen ((char *) op_code_data) + 1;
5319 /* Directory index. */
5320 READ_ULEB (file_table[n_files].directory_index,
5321 op_code_data, op_code_end);
5322 /* Last modification time. */
5323 READ_ULEB (file_table[n_files].modification_date,
5324 op_code_data, op_code_end);
5325 /* File length. */
5326 READ_ULEB (file_table[n_files].length,
5327 op_code_data, op_code_end);
5328 n_files++;
5329 break;
5330
5331 case DW_LNE_set_discriminator:
5332 case DW_LNE_HP_set_sequence:
5333 /* Simply ignored. */
5334 break;
5335
5336 default:
5337 printf (_("UNKNOWN (%u): length %ld\n"),
5338 ext_op_code, (long int) (op_code_data - data));
5339 break;
5340 }
5341 data = op_code_end;
5342 break;
5343 }
5344 case DW_LNS_copy:
5345 /* Increment view after printing this row. */
5346 break;
5347
5348 case DW_LNS_advance_pc:
5349 READ_ULEB (uladv, data, end);
5350 if (linfo.li_max_ops_per_insn == 1)
5351 {
5352 uladv *= linfo.li_min_insn_length;
5353 state_machine_regs.address += uladv;
5354 if (uladv)
5355 state_machine_regs.view = 0;
5356 }
5357 else
5358 {
5359 unsigned addrdelta
5360 = ((state_machine_regs.op_index + uladv)
5361 / linfo.li_max_ops_per_insn)
5362 * linfo.li_min_insn_length;
5363 state_machine_regs.address
5364 += addrdelta;
5365 state_machine_regs.op_index
5366 = (state_machine_regs.op_index + uladv)
5367 % linfo.li_max_ops_per_insn;
5368 if (addrdelta)
5369 state_machine_regs.view = 0;
5370 }
5371 break;
5372
5373 case DW_LNS_advance_line:
5374 READ_SLEB (adv, data, end);
5375 state_machine_regs.line += adv;
5376 break;
5377
5378 case DW_LNS_set_file:
5379 READ_ULEB (uladv, data, end);
5380 state_machine_regs.file = uladv;
5381
5382 {
5383 unsigned file = state_machine_regs.file;
5384 unsigned dir;
5385
5386 if (linfo.li_version < 5)
5387 --file;
5388 if (file_table == NULL || n_files == 0)
5389 printf (_("\n [Use file table entry %d]\n"), file);
5390 /* PR 20439 */
5391 else if (file >= n_files)
5392 {
5393 warn (_("file index %u > number of files %u\n"), file, n_files);
5394 printf (_("\n <over large file table index %u>"), file);
5395 }
5396 else if ((dir = file_table[file].directory_index) == 0)
5397 /* If directory index is 0, that means current directory. */
5398 printf ("\n./%s:[++]\n", file_table[file].name);
5399 else if (directory_table == NULL || n_directories == 0)
5400 printf (_("\n [Use file %s in directory table entry %d]\n"),
5401 file_table[file].name, dir);
5402 /* PR 20439 */
5403 else if (dir > n_directories)
5404 {
5405 warn (_("directory index %u > number of directories %" PRIu64 "\n"),
5406 dir, n_directories);
5407 printf (_("\n <over large directory table entry %u>\n"), dir);
5408 }
5409 else
5410 printf ("\n%s/%s:\n",
5411 /* The directory index starts counting at 1. */
5412 directory_table[dir - 1], file_table[file].name);
5413 }
5414 break;
5415
5416 case DW_LNS_set_column:
5417 READ_ULEB (uladv, data, end);
5418 state_machine_regs.column = uladv;
5419 break;
5420
5421 case DW_LNS_negate_stmt:
5422 adv = state_machine_regs.is_stmt;
5423 adv = ! adv;
5424 state_machine_regs.is_stmt = adv;
5425 break;
5426
5427 case DW_LNS_set_basic_block:
5428 state_machine_regs.basic_block = 1;
5429 break;
5430
5431 case DW_LNS_const_add_pc:
5432 uladv = ((255 - linfo.li_opcode_base) / linfo.li_line_range);
5433 if (linfo.li_max_ops_per_insn == 1)
5434 {
5435 uladv *= linfo.li_min_insn_length;
5436 state_machine_regs.address += uladv;
5437 if (uladv)
5438 state_machine_regs.view = 0;
5439 }
5440 else
5441 {
5442 unsigned addrdelta
5443 = ((state_machine_regs.op_index + uladv)
5444 / linfo.li_max_ops_per_insn)
5445 * linfo.li_min_insn_length;
5446 state_machine_regs.address
5447 += addrdelta;
5448 state_machine_regs.op_index
5449 = (state_machine_regs.op_index + uladv)
5450 % linfo.li_max_ops_per_insn;
5451 if (addrdelta)
5452 state_machine_regs.view = 0;
5453 }
5454 break;
5455
5456 case DW_LNS_fixed_advance_pc:
5457 SAFE_BYTE_GET_AND_INC (uladv, data, 2, end);
5458 state_machine_regs.address += uladv;
5459 state_machine_regs.op_index = 0;
5460 /* Do NOT reset view. */
5461 break;
5462
5463 case DW_LNS_set_prologue_end:
5464 break;
5465
5466 case DW_LNS_set_epilogue_begin:
5467 break;
5468
5469 case DW_LNS_set_isa:
5470 READ_ULEB (uladv, data, end);
5471 printf (_(" Set ISA to %lu\n"), uladv);
5472 break;
5473
5474 default:
5475 printf (_(" Unknown opcode %d with operands: "), op_code);
5476
5477 if (standard_opcodes != NULL)
5478 for (i = standard_opcodes[op_code - 1]; i > 0 ; --i)
5479 {
5480 uint64_t val;
5481
5482 READ_ULEB (val, data, end);
5483 printf ("%#" PRIx64 "%s", val, i == 1 ? "" : ", ");
5484 }
5485 putchar ('\n');
5486 break;
5487 }
5488
5489 /* Only Special opcodes, DW_LNS_copy and DW_LNE_end_sequence adds a row
5490 to the DWARF address/line matrix. */
5491 if ((is_special_opcode) || (xop == -DW_LNE_end_sequence)
5492 || (xop == DW_LNS_copy))
5493 {
5494 const unsigned int MAX_FILENAME_LENGTH = 35;
5495 char *fileName;
5496 char *newFileName = NULL;
5497 size_t fileNameLength;
5498
5499 if (file_table)
5500 {
5501 unsigned indx = state_machine_regs.file;
5502
5503 if (linfo.li_version < 5)
5504 --indx;
5505 /* PR 20439 */
5506 if (indx >= n_files)
5507 {
5508 warn (_("corrupt file index %u encountered\n"), indx);
5509 fileName = _("<corrupt>");
5510 }
5511 else
5512 fileName = (char *) file_table[indx].name;
5513 }
5514 else
5515 fileName = _("<unknown>");
5516
5517 fileNameLength = strlen (fileName);
5518 newFileName = fileName;
5519 if (fileNameLength > MAX_FILENAME_LENGTH && !do_wide)
5520 {
5521 newFileName = (char *) xmalloc (MAX_FILENAME_LENGTH + 1);
5522 /* Truncate file name */
5523 memcpy (newFileName,
5524 fileName + fileNameLength - MAX_FILENAME_LENGTH,
5525 MAX_FILENAME_LENGTH);
5526 newFileName[MAX_FILENAME_LENGTH] = 0;
5527 }
5528
5529 /* A row with end_seq set to true has a meaningful address, but
5530 the other information in the same row is not significant.
5531 In such a row, print line as "-", and don't print
5532 view/is_stmt. */
5533 if (!do_wide || fileNameLength <= MAX_FILENAME_LENGTH)
5534 {
5535 if (linfo.li_max_ops_per_insn == 1)
5536 {
5537 if (xop == -DW_LNE_end_sequence)
5538 printf ("%-35s %11s %#18" PRIx64,
5539 newFileName, "-",
5540 state_machine_regs.address);
5541 else
5542 printf ("%-35s %11d %#18" PRIx64,
5543 newFileName, state_machine_regs.line,
5544 state_machine_regs.address);
5545 }
5546 else
5547 {
5548 if (xop == -DW_LNE_end_sequence)
5549 printf ("%-35s %11s %#18" PRIx64 "[%d]",
5550 newFileName, "-",
5551 state_machine_regs.address,
5552 state_machine_regs.op_index);
5553 else
5554 printf ("%-35s %11d %#18" PRIx64 "[%d]",
5555 newFileName, state_machine_regs.line,
5556 state_machine_regs.address,
5557 state_machine_regs.op_index);
5558 }
5559 }
5560 else
5561 {
5562 if (linfo.li_max_ops_per_insn == 1)
5563 {
5564 if (xop == -DW_LNE_end_sequence)
5565 printf ("%s %11s %#18" PRIx64,
5566 newFileName, "-",
5567 state_machine_regs.address);
5568 else
5569 printf ("%s %11d %#18" PRIx64,
5570 newFileName, state_machine_regs.line,
5571 state_machine_regs.address);
5572 }
5573 else
5574 {
5575 if (xop == -DW_LNE_end_sequence)
5576 printf ("%s %11s %#18" PRIx64 "[%d]",
5577 newFileName, "-",
5578 state_machine_regs.address,
5579 state_machine_regs.op_index);
5580 else
5581 printf ("%s %11d %#18" PRIx64 "[%d]",
5582 newFileName, state_machine_regs.line,
5583 state_machine_regs.address,
5584 state_machine_regs.op_index);
5585 }
5586 }
5587
5588 if (xop != -DW_LNE_end_sequence)
5589 {
5590 if (state_machine_regs.view)
5591 printf (" %6u", state_machine_regs.view);
5592 else
5593 printf (" ");
5594
5595 if (state_machine_regs.is_stmt)
5596 printf (" x");
5597 }
5598
5599 putchar ('\n');
5600 state_machine_regs.view++;
5601
5602 if (xop == -DW_LNE_end_sequence)
5603 {
5604 reset_state_machine (linfo.li_default_is_stmt);
5605 putchar ('\n');
5606 }
5607
5608 if (newFileName != fileName)
5609 free (newFileName);
5610 }
5611 }
5612
5613 if (file_table)
5614 {
5615 free (file_table);
5616 file_table = NULL;
5617 n_files = 0;
5618 }
5619
5620 if (directory_table)
5621 {
5622 free (directory_table);
5623 directory_table = NULL;
5624 n_directories = 0;
5625 }
5626
5627 putchar ('\n');
5628 }
5629
5630 return 1;
5631 }
5632
5633 static int
5634 display_debug_lines (struct dwarf_section *section, void *file)
5635 {
5636 unsigned char *data = section->start;
5637 unsigned char *end = data + section->size;
5638 int retValRaw = 1;
5639 int retValDecoded = 1;
5640
5641 if (do_debug_lines == 0)
5642 do_debug_lines |= FLAG_DEBUG_LINES_RAW;
5643
5644 if (do_debug_lines & FLAG_DEBUG_LINES_RAW)
5645 retValRaw = display_debug_lines_raw (section, data, end, file);
5646
5647 if (do_debug_lines & FLAG_DEBUG_LINES_DECODED)
5648 retValDecoded = display_debug_lines_decoded (section, data, data, end, file);
5649
5650 if (!retValRaw || !retValDecoded)
5651 return 0;
5652
5653 return 1;
5654 }
5655
5656 static debug_info *
5657 find_debug_info_for_offset (uint64_t offset)
5658 {
5659 unsigned int i;
5660
5661 if (num_debug_info_entries == DEBUG_INFO_UNAVAILABLE)
5662 return NULL;
5663
5664 for (i = 0; i < num_debug_info_entries; i++)
5665 if (debug_information[i].cu_offset == offset)
5666 return debug_information + i;
5667
5668 return NULL;
5669 }
5670
5671 static const char *
5672 get_gdb_index_symbol_kind_name (gdb_index_symbol_kind kind)
5673 {
5674 /* See gdb/gdb-index.h. */
5675 static const char * const kinds[] =
5676 {
5677 N_ ("no info"),
5678 N_ ("type"),
5679 N_ ("variable"),
5680 N_ ("function"),
5681 N_ ("other"),
5682 N_ ("unused5"),
5683 N_ ("unused6"),
5684 N_ ("unused7")
5685 };
5686
5687 return _ (kinds[kind]);
5688 }
5689
5690 static int
5691 display_debug_pubnames_worker (struct dwarf_section *section,
5692 void *file ATTRIBUTE_UNUSED,
5693 int is_gnu)
5694 {
5695 DWARF2_Internal_PubNames names;
5696 unsigned char *start = section->start;
5697 unsigned char *end = start + section->size;
5698
5699 /* It does not matter if this load fails,
5700 we test for that later on. */
5701 load_debug_info (file);
5702
5703 introduce (section, false);
5704
5705 while (start < end)
5706 {
5707 unsigned char *data;
5708 unsigned long sec_off = start - section->start;
5709 unsigned int offset_size;
5710
5711 SAFE_BYTE_GET_AND_INC (names.pn_length, start, 4, end);
5712 if (names.pn_length == 0xffffffff)
5713 {
5714 SAFE_BYTE_GET_AND_INC (names.pn_length, start, 8, end);
5715 offset_size = 8;
5716 }
5717 else
5718 offset_size = 4;
5719
5720 if (names.pn_length > (size_t) (end - start))
5721 {
5722 warn (_("Debug info is corrupted, "
5723 "%s header at %#lx has length %#" PRIx64 "\n"),
5724 section->name, sec_off, names.pn_length);
5725 break;
5726 }
5727
5728 data = start;
5729 start += names.pn_length;
5730
5731 SAFE_BYTE_GET_AND_INC (names.pn_version, data, 2, start);
5732 SAFE_BYTE_GET_AND_INC (names.pn_offset, data, offset_size, start);
5733
5734 if (num_debug_info_entries != DEBUG_INFO_UNAVAILABLE
5735 && num_debug_info_entries > 0
5736 && find_debug_info_for_offset (names.pn_offset) == NULL)
5737 warn (_(".debug_info offset of %#" PRIx64
5738 " in %s section does not point to a CU header.\n"),
5739 names.pn_offset, section->name);
5740
5741 SAFE_BYTE_GET_AND_INC (names.pn_size, data, offset_size, start);
5742
5743 printf (_(" Length: %" PRId64 "\n"),
5744 names.pn_length);
5745 printf (_(" Version: %d\n"),
5746 names.pn_version);
5747 printf (_(" Offset into .debug_info section: %#" PRIx64 "\n"),
5748 names.pn_offset);
5749 printf (_(" Size of area in .debug_info section: %" PRId64 "\n"),
5750 names.pn_size);
5751
5752 if (names.pn_version != 2 && names.pn_version != 3)
5753 {
5754 static int warned = 0;
5755
5756 if (! warned)
5757 {
5758 warn (_("Only DWARF 2 and 3 pubnames are currently supported\n"));
5759 warned = 1;
5760 }
5761
5762 continue;
5763 }
5764
5765 if (is_gnu)
5766 printf (_("\n Offset Kind Name\n"));
5767 else
5768 printf (_("\n Offset\tName\n"));
5769
5770 while (1)
5771 {
5772 size_t maxprint;
5773 uint64_t offset;
5774
5775 SAFE_BYTE_GET_AND_INC (offset, data, offset_size, start);
5776
5777 if (offset == 0)
5778 break;
5779
5780 if (data >= start)
5781 break;
5782 maxprint = (start - data) - 1;
5783
5784 if (is_gnu)
5785 {
5786 unsigned int kind_data;
5787 gdb_index_symbol_kind kind;
5788 const char *kind_name;
5789 int is_static;
5790
5791 SAFE_BYTE_GET_AND_INC (kind_data, data, 1, start);
5792 maxprint --;
5793 /* GCC computes the kind as the upper byte in the CU index
5794 word, and then right shifts it by the CU index size.
5795 Left shift KIND to where the gdb-index.h accessor macros
5796 can use it. */
5797 kind_data <<= GDB_INDEX_CU_BITSIZE;
5798 kind = GDB_INDEX_SYMBOL_KIND_VALUE (kind_data);
5799 kind_name = get_gdb_index_symbol_kind_name (kind);
5800 is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (kind_data);
5801 printf (" %-6" PRIx64 " %s,%-10s %.*s\n",
5802 offset, is_static ? _("s") : _("g"),
5803 kind_name, (int) maxprint, data);
5804 }
5805 else
5806 printf (" %-6" PRIx64 "\t%.*s\n",
5807 offset, (int) maxprint, data);
5808
5809 data += strnlen ((char *) data, maxprint);
5810 if (data < start)
5811 data++;
5812 if (data >= start)
5813 break;
5814 }
5815 }
5816
5817 printf ("\n");
5818 return 1;
5819 }
5820
5821 static int
5822 display_debug_pubnames (struct dwarf_section *section, void *file)
5823 {
5824 return display_debug_pubnames_worker (section, file, 0);
5825 }
5826
5827 static int
5828 display_debug_gnu_pubnames (struct dwarf_section *section, void *file)
5829 {
5830 return display_debug_pubnames_worker (section, file, 1);
5831 }
5832
5833 static int
5834 display_debug_macinfo (struct dwarf_section *section,
5835 void *file ATTRIBUTE_UNUSED)
5836 {
5837 unsigned char *start = section->start;
5838 unsigned char *end = start + section->size;
5839 unsigned char *curr = start;
5840 enum dwarf_macinfo_record_type op;
5841
5842 introduce (section, false);
5843
5844 while (curr < end)
5845 {
5846 unsigned int lineno;
5847 const unsigned char *string;
5848
5849 op = (enum dwarf_macinfo_record_type) *curr;
5850 curr++;
5851
5852 switch (op)
5853 {
5854 case DW_MACINFO_start_file:
5855 {
5856 unsigned int filenum;
5857
5858 READ_ULEB (lineno, curr, end);
5859 READ_ULEB (filenum, curr, end);
5860 printf (_(" DW_MACINFO_start_file - lineno: %d filenum: %d\n"),
5861 lineno, filenum);
5862 }
5863 break;
5864
5865 case DW_MACINFO_end_file:
5866 printf (_(" DW_MACINFO_end_file\n"));
5867 break;
5868
5869 case DW_MACINFO_define:
5870 READ_ULEB (lineno, curr, end);
5871 string = curr;
5872 curr += strnlen ((char *) string, end - string);
5873 printf (_(" DW_MACINFO_define - lineno : %d macro : %*s\n"),
5874 lineno, (int) (curr - string), string);
5875 if (curr < end)
5876 curr++;
5877 break;
5878
5879 case DW_MACINFO_undef:
5880 READ_ULEB (lineno, curr, end);
5881 string = curr;
5882 curr += strnlen ((char *) string, end - string);
5883 printf (_(" DW_MACINFO_undef - lineno : %d macro : %*s\n"),
5884 lineno, (int) (curr - string), string);
5885 if (curr < end)
5886 curr++;
5887 break;
5888
5889 case DW_MACINFO_vendor_ext:
5890 {
5891 unsigned int constant;
5892
5893 READ_ULEB (constant, curr, end);
5894 string = curr;
5895 curr += strnlen ((char *) string, end - string);
5896 printf (_(" DW_MACINFO_vendor_ext - constant : %d string : %*s\n"),
5897 constant, (int) (curr - string), string);
5898 if (curr < end)
5899 curr++;
5900 }
5901 break;
5902 }
5903 }
5904
5905 return 1;
5906 }
5907
5908 /* Given LINE_OFFSET into the .debug_line section, attempt to return
5909 filename and dirname corresponding to file name table entry with index
5910 FILEIDX. Return NULL on failure. */
5911
5912 static unsigned char *
5913 get_line_filename_and_dirname (uint64_t line_offset,
5914 uint64_t fileidx,
5915 unsigned char **dir_name)
5916 {
5917 struct dwarf_section *section = &debug_displays [line].section;
5918 unsigned char *hdrptr, *dirtable, *file_name;
5919 unsigned int offset_size;
5920 unsigned int version, opcode_base;
5921 uint64_t length, diridx;
5922 const unsigned char * end;
5923
5924 *dir_name = NULL;
5925 if (section->start == NULL
5926 || line_offset >= section->size
5927 || fileidx == 0)
5928 return NULL;
5929
5930 hdrptr = section->start + line_offset;
5931 end = section->start + section->size;
5932
5933 SAFE_BYTE_GET_AND_INC (length, hdrptr, 4, end);
5934 if (length == 0xffffffff)
5935 {
5936 /* This section is 64-bit DWARF 3. */
5937 SAFE_BYTE_GET_AND_INC (length, hdrptr, 8, end);
5938 offset_size = 8;
5939 }
5940 else
5941 offset_size = 4;
5942
5943 if (length > (size_t) (end - hdrptr)
5944 || length < 2 + offset_size + 1 + 3 + 1)
5945 return NULL;
5946 end = hdrptr + length;
5947
5948 SAFE_BYTE_GET_AND_INC (version, hdrptr, 2, end);
5949 if (version != 2 && version != 3 && version != 4)
5950 return NULL;
5951 hdrptr += offset_size + 1;/* Skip prologue_length and min_insn_length. */
5952 if (version >= 4)
5953 hdrptr++; /* Skip max_ops_per_insn. */
5954 hdrptr += 3; /* Skip default_is_stmt, line_base, line_range. */
5955
5956 SAFE_BYTE_GET_AND_INC (opcode_base, hdrptr, 1, end);
5957 if (opcode_base == 0
5958 || opcode_base - 1 >= (size_t) (end - hdrptr))
5959 return NULL;
5960
5961 hdrptr += opcode_base - 1;
5962
5963 dirtable = hdrptr;
5964 /* Skip over dirname table. */
5965 while (*hdrptr != '\0')
5966 {
5967 hdrptr += strnlen ((char *) hdrptr, end - hdrptr);
5968 if (hdrptr < end)
5969 hdrptr++;
5970 if (hdrptr >= end)
5971 return NULL;
5972 }
5973 hdrptr++; /* Skip the NUL at the end of the table. */
5974
5975 /* Now skip over preceding filename table entries. */
5976 for (; hdrptr < end && *hdrptr != '\0' && fileidx > 1; fileidx--)
5977 {
5978 hdrptr += strnlen ((char *) hdrptr, end - hdrptr);
5979 if (hdrptr < end)
5980 hdrptr++;
5981 SKIP_ULEB (hdrptr, end);
5982 SKIP_ULEB (hdrptr, end);
5983 SKIP_ULEB (hdrptr, end);
5984 }
5985 if (hdrptr >= end || *hdrptr == '\0')
5986 return NULL;
5987
5988 file_name = hdrptr;
5989 hdrptr += strnlen ((char *) hdrptr, end - hdrptr);
5990 if (hdrptr < end)
5991 hdrptr++;
5992 if (hdrptr >= end)
5993 return NULL;
5994 READ_ULEB (diridx, hdrptr, end);
5995 if (diridx == 0)
5996 return file_name;
5997 for (; dirtable < end && *dirtable != '\0' && diridx > 1; diridx--)
5998 {
5999 dirtable += strnlen ((char *) dirtable, end - dirtable);
6000 if (dirtable < end)
6001 dirtable++;
6002 }
6003 if (dirtable >= end || *dirtable == '\0')
6004 return NULL;
6005 *dir_name = dirtable;
6006 return file_name;
6007 }
6008
6009 static int
6010 display_debug_macro (struct dwarf_section *section,
6011 void *file)
6012 {
6013 unsigned char *start = section->start;
6014 unsigned char *end = start + section->size;
6015 unsigned char *curr = start;
6016 unsigned char *extended_op_buf[256];
6017 bool is_dwo = false;
6018 const char *suffix = strrchr (section->name, '.');
6019
6020 if (suffix && strcmp (suffix, ".dwo") == 0)
6021 is_dwo = true;
6022
6023 load_debug_section_with_follow (str, file);
6024 load_debug_section_with_follow (line, file);
6025 load_debug_section_with_follow (str_index, file);
6026
6027 introduce (section, false);
6028
6029 while (curr < end)
6030 {
6031 unsigned int lineno, version, flags;
6032 unsigned int offset_size;
6033 const unsigned char *string;
6034 uint64_t line_offset = 0, sec_offset = curr - start, offset;
6035 unsigned char **extended_ops = NULL;
6036
6037 SAFE_BYTE_GET_AND_INC (version, curr, 2, end);
6038 if (version != 4 && version != 5)
6039 {
6040 error (_("Expected to find a version number of 4 or 5 in section %s but found %d instead\n"),
6041 section->name, version);
6042 return 0;
6043 }
6044
6045 SAFE_BYTE_GET_AND_INC (flags, curr, 1, end);
6046 offset_size = (flags & 1) ? 8 : 4;
6047 printf (_(" Offset: %#" PRIx64 "\n"), sec_offset);
6048 printf (_(" Version: %d\n"), version);
6049 printf (_(" Offset size: %d\n"), offset_size);
6050 if (flags & 2)
6051 {
6052 SAFE_BYTE_GET_AND_INC (line_offset, curr, offset_size, end);
6053 printf (_(" Offset into .debug_line: %#" PRIx64 "\n"),
6054 line_offset);
6055 }
6056 if (flags & 4)
6057 {
6058 unsigned int i, count, op;
6059 uint64_t nargs, n;
6060
6061 SAFE_BYTE_GET_AND_INC (count, curr, 1, end);
6062
6063 memset (extended_op_buf, 0, sizeof (extended_op_buf));
6064 extended_ops = extended_op_buf;
6065 if (count)
6066 {
6067 printf (_(" Extension opcode arguments:\n"));
6068 for (i = 0; i < count; i++)
6069 {
6070 SAFE_BYTE_GET_AND_INC (op, curr, 1, end);
6071 extended_ops[op] = curr;
6072 READ_ULEB (nargs, curr, end);
6073 if (nargs == 0)
6074 printf (_(" DW_MACRO_%02x has no arguments\n"), op);
6075 else
6076 {
6077 printf (_(" DW_MACRO_%02x arguments: "), op);
6078 for (n = 0; n < nargs; n++)
6079 {
6080 unsigned int form;
6081
6082 SAFE_BYTE_GET_AND_INC (form, curr, 1, end);
6083 printf ("%s%s", get_FORM_name (form),
6084 n == nargs - 1 ? "\n" : ", ");
6085 switch (form)
6086 {
6087 case DW_FORM_data1:
6088 case DW_FORM_data2:
6089 case DW_FORM_data4:
6090 case DW_FORM_data8:
6091 case DW_FORM_sdata:
6092 case DW_FORM_udata:
6093 case DW_FORM_block:
6094 case DW_FORM_block1:
6095 case DW_FORM_block2:
6096 case DW_FORM_block4:
6097 case DW_FORM_flag:
6098 case DW_FORM_string:
6099 case DW_FORM_strp:
6100 case DW_FORM_sec_offset:
6101 break;
6102 default:
6103 error (_("Invalid extension opcode form %s\n"),
6104 get_FORM_name (form));
6105 return 0;
6106 }
6107 }
6108 }
6109 }
6110 }
6111 }
6112 printf ("\n");
6113
6114 while (1)
6115 {
6116 unsigned int op;
6117
6118 if (curr >= end)
6119 {
6120 error (_(".debug_macro section not zero terminated\n"));
6121 return 0;
6122 }
6123
6124 SAFE_BYTE_GET_AND_INC (op, curr, 1, end);
6125 if (op == 0)
6126 break;
6127
6128 switch (op)
6129 {
6130 case DW_MACRO_define:
6131 READ_ULEB (lineno, curr, end);
6132 string = curr;
6133 curr += strnlen ((char *) string, end - string);
6134 printf (_(" DW_MACRO_define - lineno : %d macro : %*s\n"),
6135 lineno, (int) (curr - string), string);
6136 if (curr < end)
6137 curr++;
6138 break;
6139
6140 case DW_MACRO_undef:
6141 READ_ULEB (lineno, curr, end);
6142 string = curr;
6143 curr += strnlen ((char *) string, end - string);
6144 printf (_(" DW_MACRO_undef - lineno : %d macro : %*s\n"),
6145 lineno, (int) (curr - string), string);
6146 if (curr < end)
6147 curr++;
6148 break;
6149
6150 case DW_MACRO_start_file:
6151 {
6152 unsigned int filenum;
6153 unsigned char *file_name = NULL, *dir_name = NULL;
6154
6155 READ_ULEB (lineno, curr, end);
6156 READ_ULEB (filenum, curr, end);
6157
6158 if ((flags & 2) == 0)
6159 error (_("DW_MACRO_start_file used, but no .debug_line offset provided.\n"));
6160 else
6161 file_name
6162 = get_line_filename_and_dirname (line_offset, filenum,
6163 &dir_name);
6164 if (file_name == NULL)
6165 printf (_(" DW_MACRO_start_file - lineno: %d filenum: %d\n"),
6166 lineno, filenum);
6167 else
6168 printf (_(" DW_MACRO_start_file - lineno: %d filenum: %d filename: %s%s%s\n"),
6169 lineno, filenum,
6170 dir_name != NULL ? (const char *) dir_name : "",
6171 dir_name != NULL ? "/" : "", file_name);
6172 }
6173 break;
6174
6175 case DW_MACRO_end_file:
6176 printf (_(" DW_MACRO_end_file\n"));
6177 break;
6178
6179 case DW_MACRO_define_strp:
6180 READ_ULEB (lineno, curr, end);
6181 if (version == 4 && is_dwo)
6182 READ_ULEB (offset, curr, end);
6183 else
6184 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
6185 string = fetch_indirect_string (offset);
6186 printf (_(" DW_MACRO_define_strp - lineno : %d macro : %s\n"),
6187 lineno, string);
6188 break;
6189
6190 case DW_MACRO_undef_strp:
6191 READ_ULEB (lineno, curr, end);
6192 if (version == 4 && is_dwo)
6193 READ_ULEB (offset, curr, end);
6194 else
6195 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
6196 string = fetch_indirect_string (offset);
6197 printf (_(" DW_MACRO_undef_strp - lineno : %d macro : %s\n"),
6198 lineno, string);
6199 break;
6200
6201 case DW_MACRO_import:
6202 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
6203 printf (_(" DW_MACRO_import - offset : %#" PRIx64 "\n"),
6204 offset);
6205 break;
6206
6207 case DW_MACRO_define_sup:
6208 READ_ULEB (lineno, curr, end);
6209 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
6210 printf (_(" DW_MACRO_define_sup - lineno : %d"
6211 " macro offset : %#" PRIx64 "\n"),
6212 lineno, offset);
6213 break;
6214
6215 case DW_MACRO_undef_sup:
6216 READ_ULEB (lineno, curr, end);
6217 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
6218 printf (_(" DW_MACRO_undef_sup - lineno : %d"
6219 " macro offset : %#" PRIx64 "\n"),
6220 lineno, offset);
6221 break;
6222
6223 case DW_MACRO_import_sup:
6224 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
6225 printf (_(" DW_MACRO_import_sup - offset : %#" PRIx64 "\n"),
6226 offset);
6227 break;
6228
6229 case DW_MACRO_define_strx:
6230 case DW_MACRO_undef_strx:
6231 READ_ULEB (lineno, curr, end);
6232 READ_ULEB (offset, curr, end);
6233 string = (const unsigned char *)
6234 fetch_indexed_string (offset, NULL, offset_size, false, 0);
6235 if (op == DW_MACRO_define_strx)
6236 printf (" DW_MACRO_define_strx ");
6237 else
6238 printf (" DW_MACRO_undef_strx ");
6239 if (do_wide)
6240 printf (_("(with offset %#" PRIx64 ") "), offset);
6241 printf (_("lineno : %d macro : %s\n"),
6242 lineno, string);
6243 break;
6244
6245 default:
6246 if (op >= DW_MACRO_lo_user && op <= DW_MACRO_hi_user)
6247 {
6248 printf (_(" <Target Specific macro op: %#x - UNHANDLED"), op);
6249 break;
6250 }
6251
6252 if (extended_ops == NULL || extended_ops[op] == NULL)
6253 {
6254 error (_(" Unknown macro opcode %02x seen\n"), op);
6255 return 0;
6256 }
6257 else
6258 {
6259 /* Skip over unhandled opcodes. */
6260 uint64_t nargs, n;
6261 unsigned char *desc = extended_ops[op];
6262 READ_ULEB (nargs, desc, end);
6263 if (nargs == 0)
6264 {
6265 printf (_(" DW_MACRO_%02x\n"), op);
6266 break;
6267 }
6268 printf (_(" DW_MACRO_%02x -"), op);
6269 for (n = 0; n < nargs; n++)
6270 {
6271 int val;
6272
6273 /* DW_FORM_implicit_const is not expected here. */
6274 SAFE_BYTE_GET_AND_INC (val, desc, 1, end);
6275 curr
6276 = read_and_display_attr_value (0, val, 0,
6277 start, curr, end, 0, 0,
6278 offset_size, version,
6279 NULL, 0, section,
6280 NULL, ' ', -1);
6281 if (n != nargs - 1)
6282 printf (",");
6283 }
6284 printf ("\n");
6285 }
6286 break;
6287 }
6288 }
6289
6290 printf ("\n");
6291 }
6292
6293 return 1;
6294 }
6295
6296 static int
6297 display_debug_abbrev (struct dwarf_section *section,
6298 void *file ATTRIBUTE_UNUSED)
6299 {
6300 abbrev_entry *entry;
6301 unsigned char *start = section->start;
6302
6303 introduce (section, false);
6304
6305 do
6306 {
6307 uint64_t offset = start - section->start;
6308 abbrev_list *list = find_and_process_abbrev_set (section, 0,
6309 section->size, offset,
6310 NULL);
6311 if (list == NULL)
6312 break;
6313
6314 if (list->first_abbrev)
6315 printf (_(" Number TAG (%#" PRIx64 ")\n"), offset);
6316
6317 for (entry = list->first_abbrev; entry; entry = entry->next)
6318 {
6319 abbrev_attr *attr;
6320
6321 printf (" %ld %s [%s]\n",
6322 entry->number,
6323 get_TAG_name (entry->tag),
6324 entry->children ? _("has children") : _("no children"));
6325
6326 for (attr = entry->first_attr; attr; attr = attr->next)
6327 {
6328 printf (" %-18s %s",
6329 get_AT_name (attr->attribute),
6330 get_FORM_name (attr->form));
6331 if (attr->form == DW_FORM_implicit_const)
6332 printf (": %" PRId64, attr->implicit_const);
6333 putchar ('\n');
6334 }
6335 }
6336 start = list->start_of_next_abbrevs;
6337 free_abbrev_list (list);
6338 }
6339 while (start);
6340
6341 printf ("\n");
6342
6343 return 1;
6344 }
6345
6346 /* Return true when ADDR is the maximum address, when addresses are
6347 POINTER_SIZE bytes long. */
6348
6349 static bool
6350 is_max_address (uint64_t addr, unsigned int pointer_size)
6351 {
6352 uint64_t mask = ~(~(uint64_t) 0 << 1 << (pointer_size * 8 - 1));
6353 return ((addr & mask) == mask);
6354 }
6355
6356 /* Display a view pair list starting at *VSTART_PTR and ending at
6357 VLISTEND within SECTION. */
6358
6359 static void
6360 display_view_pair_list (struct dwarf_section *section,
6361 unsigned char **vstart_ptr,
6362 unsigned int debug_info_entry,
6363 unsigned char *vlistend)
6364 {
6365 unsigned char *vstart = *vstart_ptr;
6366 unsigned char *section_end = section->start + section->size;
6367 unsigned int pointer_size = debug_information [debug_info_entry].pointer_size;
6368
6369 if (vlistend < section_end)
6370 section_end = vlistend;
6371
6372 putchar ('\n');
6373
6374 while (vstart < section_end)
6375 {
6376 uint64_t off = vstart - section->start;
6377 uint64_t vbegin, vend;
6378
6379 READ_ULEB (vbegin, vstart, section_end);
6380 if (vstart == section_end)
6381 break;
6382
6383 READ_ULEB (vend, vstart, section_end);
6384 printf (" %8.8" PRIx64 " ", off);
6385
6386 print_view (vbegin, pointer_size);
6387 print_view (vend, pointer_size);
6388 printf (_("location view pair\n"));
6389 }
6390
6391 putchar ('\n');
6392 *vstart_ptr = vstart;
6393 }
6394
6395 /* Display a location list from a normal (ie, non-dwo) .debug_loc section. */
6396
6397 static void
6398 display_loc_list (struct dwarf_section *section,
6399 unsigned char **start_ptr,
6400 unsigned int debug_info_entry,
6401 uint64_t offset,
6402 uint64_t base_address,
6403 unsigned char **vstart_ptr,
6404 int has_frame_base)
6405 {
6406 unsigned char *start = *start_ptr, *vstart = *vstart_ptr;
6407 unsigned char *section_end = section->start + section->size;
6408 uint64_t cu_offset;
6409 unsigned int pointer_size;
6410 unsigned int offset_size;
6411 int dwarf_version;
6412 uint64_t begin;
6413 uint64_t end;
6414 unsigned short length;
6415 int need_frame_base;
6416
6417 if (debug_info_entry >= num_debug_info_entries)
6418 {
6419 warn (_("No debug information available for loc lists of entry: %u\n"),
6420 debug_info_entry);
6421 return;
6422 }
6423
6424 cu_offset = debug_information [debug_info_entry].cu_offset;
6425 pointer_size = debug_information [debug_info_entry].pointer_size;
6426 offset_size = debug_information [debug_info_entry].offset_size;
6427 dwarf_version = debug_information [debug_info_entry].dwarf_version;
6428
6429 if (pointer_size < 2 || pointer_size > 8)
6430 {
6431 warn (_("Invalid pointer size (%d) in debug info for entry %d\n"),
6432 pointer_size, debug_info_entry);
6433 return;
6434 }
6435
6436 while (1)
6437 {
6438 uint64_t off = offset + (start - *start_ptr);
6439 uint64_t vbegin = -1, vend = -1;
6440
6441 if (2 * pointer_size > (size_t) (section_end - start))
6442 {
6443 warn (_("Location list starting at offset %#" PRIx64
6444 " is not terminated.\n"), offset);
6445 break;
6446 }
6447
6448 printf (" ");
6449 print_hex (off, 4);
6450
6451 SAFE_BYTE_GET_AND_INC (begin, start, pointer_size, section_end);
6452 SAFE_BYTE_GET_AND_INC (end, start, pointer_size, section_end);
6453
6454 if (begin == 0 && end == 0)
6455 {
6456 /* PR 18374: In a object file we can have a location list that
6457 starts with a begin and end of 0 because there are relocations
6458 that need to be applied to the addresses. Actually applying
6459 the relocations now does not help as they will probably resolve
6460 to 0, since the object file has not been fully linked. Real
6461 end of list markers will not have any relocations against them. */
6462 if (! reloc_at (section, off)
6463 && ! reloc_at (section, off + pointer_size))
6464 {
6465 printf (_("<End of list>\n"));
6466 break;
6467 }
6468 }
6469
6470 /* Check base address specifiers. */
6471 if (is_max_address (begin, pointer_size)
6472 && !is_max_address (end, pointer_size))
6473 {
6474 base_address = end;
6475 print_hex (begin, pointer_size);
6476 print_hex (end, pointer_size);
6477 printf (_("(base address)\n"));
6478 continue;
6479 }
6480
6481 if (vstart)
6482 {
6483 off = offset + (vstart - *start_ptr);
6484
6485 READ_ULEB (vbegin, vstart, section_end);
6486 print_view (vbegin, pointer_size);
6487
6488 READ_ULEB (vend, vstart, section_end);
6489 print_view (vend, pointer_size);
6490
6491 printf (_("views at %8.8" PRIx64 " for:\n %*s "), off, 8, "");
6492 }
6493
6494 if (2 > (size_t) (section_end - start))
6495 {
6496 warn (_("Location list starting at offset %#" PRIx64
6497 " is not terminated.\n"), offset);
6498 break;
6499 }
6500
6501 SAFE_BYTE_GET_AND_INC (length, start, 2, section_end);
6502
6503 if (length > (size_t) (section_end - start))
6504 {
6505 warn (_("Location list starting at offset %#" PRIx64
6506 " is not terminated.\n"), offset);
6507 break;
6508 }
6509
6510 print_hex (begin + base_address, pointer_size);
6511 print_hex (end + base_address, pointer_size);
6512
6513 putchar ('(');
6514 need_frame_base = decode_location_expression (start,
6515 pointer_size,
6516 offset_size,
6517 dwarf_version,
6518 length,
6519 cu_offset, section);
6520 putchar (')');
6521
6522 if (need_frame_base && !has_frame_base)
6523 printf (_(" [without DW_AT_frame_base]"));
6524
6525 if (begin == end && vbegin == vend)
6526 fputs (_(" (start == end)"), stdout);
6527 else if (begin > end || (begin == end && vbegin > vend))
6528 fputs (_(" (start > end)"), stdout);
6529
6530 putchar ('\n');
6531
6532 start += length;
6533 }
6534
6535 *start_ptr = start;
6536 *vstart_ptr = vstart;
6537 }
6538
6539 /* Display a location list from a normal (ie, non-dwo) .debug_loclists section. */
6540
6541 static void
6542 display_loclists_list (struct dwarf_section * section,
6543 unsigned char ** start_ptr,
6544 unsigned int debug_info_entry,
6545 uint64_t offset,
6546 uint64_t base_address,
6547 unsigned char ** vstart_ptr,
6548 int has_frame_base)
6549 {
6550 unsigned char *start = *start_ptr;
6551 unsigned char *vstart = *vstart_ptr;
6552 unsigned char *section_end = section->start + section->size;
6553 uint64_t cu_offset;
6554 unsigned int pointer_size;
6555 unsigned int offset_size;
6556 unsigned int dwarf_version;
6557
6558 /* Initialize it due to a false compiler warning. */
6559 uint64_t begin = -1, vbegin = -1;
6560 uint64_t end = -1, vend = -1;
6561 uint64_t length;
6562 int need_frame_base;
6563
6564 if (debug_info_entry >= num_debug_info_entries)
6565 {
6566 warn (_("No debug information available for "
6567 "loclists lists of entry: %u\n"),
6568 debug_info_entry);
6569 return;
6570 }
6571
6572 cu_offset = debug_information [debug_info_entry].cu_offset;
6573 pointer_size = debug_information [debug_info_entry].pointer_size;
6574 offset_size = debug_information [debug_info_entry].offset_size;
6575 dwarf_version = debug_information [debug_info_entry].dwarf_version;
6576
6577 if (pointer_size < 2 || pointer_size > 8)
6578 {
6579 warn (_("Invalid pointer size (%d) in debug info for entry %d\n"),
6580 pointer_size, debug_info_entry);
6581 return;
6582 }
6583
6584 while (1)
6585 {
6586 uint64_t off = offset + (start - *start_ptr);
6587 enum dwarf_location_list_entry_type llet;
6588
6589 if (start + 1 > section_end)
6590 {
6591 warn (_("Location list starting at offset %#" PRIx64
6592 " is not terminated.\n"), offset);
6593 break;
6594 }
6595
6596 printf (" ");
6597 print_hex (off, 4);
6598
6599 SAFE_BYTE_GET_AND_INC (llet, start, 1, section_end);
6600
6601 if (vstart && (llet == DW_LLE_offset_pair
6602 || llet == DW_LLE_start_end
6603 || llet == DW_LLE_start_length))
6604 {
6605 off = offset + (vstart - *start_ptr);
6606
6607 READ_ULEB (vbegin, vstart, section_end);
6608 print_view (vbegin, pointer_size);
6609
6610 READ_ULEB (vend, vstart, section_end);
6611 print_view (vend, pointer_size);
6612
6613 printf (_("views at %8.8" PRIx64 " for:\n %*s "), off, 8, "");
6614 }
6615
6616 switch (llet)
6617 {
6618 case DW_LLE_end_of_list:
6619 printf (_("<End of list>\n"));
6620 break;
6621
6622 case DW_LLE_base_addressx:
6623 READ_ULEB (base_address, start, section_end);
6624 print_hex (base_address, pointer_size);
6625 printf (_("(index into .debug_addr) "));
6626 base_address = fetch_indexed_addr (base_address, pointer_size);
6627 print_hex (base_address, pointer_size);
6628 printf (_("(base address)\n"));
6629 break;
6630
6631 case DW_LLE_startx_endx:
6632 READ_ULEB (begin, start, section_end);
6633 begin = fetch_indexed_addr (begin, pointer_size);
6634 READ_ULEB (end, start, section_end);
6635 end = fetch_indexed_addr (end, pointer_size);
6636 break;
6637
6638 case DW_LLE_startx_length:
6639 READ_ULEB (begin, start, section_end);
6640 begin = fetch_indexed_addr (begin, pointer_size);
6641 READ_ULEB (end, start, section_end);
6642 end += begin;
6643 break;
6644
6645 case DW_LLE_default_location:
6646 begin = end = 0;
6647 break;
6648
6649 case DW_LLE_offset_pair:
6650 READ_ULEB (begin, start, section_end);
6651 begin += base_address;
6652 READ_ULEB (end, start, section_end);
6653 end += base_address;
6654 break;
6655
6656 case DW_LLE_base_address:
6657 SAFE_BYTE_GET_AND_INC (base_address, start, pointer_size,
6658 section_end);
6659 print_hex (base_address, pointer_size);
6660 printf (_("(base address)\n"));
6661 break;
6662
6663 case DW_LLE_start_end:
6664 SAFE_BYTE_GET_AND_INC (begin, start, pointer_size, section_end);
6665 SAFE_BYTE_GET_AND_INC (end, start, pointer_size, section_end);
6666 break;
6667
6668 case DW_LLE_start_length:
6669 SAFE_BYTE_GET_AND_INC (begin, start, pointer_size, section_end);
6670 READ_ULEB (end, start, section_end);
6671 end += begin;
6672 break;
6673
6674 #ifdef DW_LLE_view_pair
6675 case DW_LLE_view_pair:
6676 if (vstart)
6677 printf (_("View pair entry in loclist with locviews attribute\n"));
6678 READ_ULEB (vbegin, start, section_end);
6679 print_view (vbegin, pointer_size);
6680
6681 READ_ULEB (vend, start, section_end);
6682 print_view (vend, pointer_size);
6683
6684 printf (_("views for:\n"));
6685 continue;
6686 #endif
6687
6688 default:
6689 error (_("Invalid location list entry type %d\n"), llet);
6690 return;
6691 }
6692
6693 if (llet == DW_LLE_end_of_list)
6694 break;
6695
6696 if (llet == DW_LLE_base_address
6697 || llet == DW_LLE_base_addressx)
6698 continue;
6699
6700 if (start == section_end)
6701 {
6702 warn (_("Location list starting at offset %#" PRIx64
6703 " is not terminated.\n"), offset);
6704 break;
6705 }
6706 READ_ULEB (length, start, section_end);
6707
6708 if (length > (size_t) (section_end - start))
6709 {
6710 warn (_("Location list starting at offset %#" PRIx64
6711 " is not terminated.\n"), offset);
6712 break;
6713 }
6714
6715 print_hex (begin, pointer_size);
6716 print_hex (end, pointer_size);
6717
6718 putchar ('(');
6719 need_frame_base = decode_location_expression (start,
6720 pointer_size,
6721 offset_size,
6722 dwarf_version,
6723 length,
6724 cu_offset, section);
6725 putchar (')');
6726
6727 if (need_frame_base && !has_frame_base)
6728 printf (_(" [without DW_AT_frame_base]"));
6729
6730 if (begin == end && vbegin == vend)
6731 fputs (_(" (start == end)"), stdout);
6732 else if (begin > end || (begin == end && vbegin > vend))
6733 fputs (_(" (start > end)"), stdout);
6734
6735 putchar ('\n');
6736
6737 start += length;
6738 vbegin = vend = -1;
6739 }
6740
6741 if (vbegin != (uint64_t) -1 || vend != (uint64_t) -1)
6742 printf (_("Trailing view pair not used in a range"));
6743
6744 *start_ptr = start;
6745 *vstart_ptr = vstart;
6746 }
6747
6748 /* Print a .debug_addr table index in decimal, surrounded by square brackets,
6749 right-adjusted in a field of length LEN, and followed by a space. */
6750
6751 static void
6752 print_addr_index (unsigned int idx, unsigned int len)
6753 {
6754 static char buf[15];
6755 snprintf (buf, sizeof (buf), "[%d]", idx);
6756 printf ("%*s ", len, buf);
6757 }
6758
6759 /* Display a location list from a .dwo section. It uses address indexes rather
6760 than embedded addresses. This code closely follows display_loc_list, but the
6761 two are sufficiently different that combining things is very ugly. */
6762
6763 static void
6764 display_loc_list_dwo (struct dwarf_section *section,
6765 unsigned char **start_ptr,
6766 unsigned int debug_info_entry,
6767 uint64_t offset,
6768 unsigned char **vstart_ptr,
6769 int has_frame_base)
6770 {
6771 unsigned char *start = *start_ptr, *vstart = *vstart_ptr;
6772 unsigned char *section_end = section->start + section->size;
6773 uint64_t cu_offset;
6774 unsigned int pointer_size;
6775 unsigned int offset_size;
6776 int dwarf_version;
6777 int entry_type;
6778 unsigned short length;
6779 int need_frame_base;
6780 unsigned int idx;
6781
6782 if (debug_info_entry >= num_debug_info_entries)
6783 {
6784 warn (_("No debug information for loc lists of entry: %u\n"),
6785 debug_info_entry);
6786 return;
6787 }
6788
6789 cu_offset = debug_information [debug_info_entry].cu_offset;
6790 pointer_size = debug_information [debug_info_entry].pointer_size;
6791 offset_size = debug_information [debug_info_entry].offset_size;
6792 dwarf_version = debug_information [debug_info_entry].dwarf_version;
6793
6794 if (pointer_size < 2 || pointer_size > 8)
6795 {
6796 warn (_("Invalid pointer size (%d) in debug info for entry %d\n"),
6797 pointer_size, debug_info_entry);
6798 return;
6799 }
6800
6801 while (1)
6802 {
6803 printf (" ");
6804 print_hex (offset + (start - *start_ptr), 4);
6805
6806 if (start >= section_end)
6807 {
6808 warn (_("Location list starting at offset %#" PRIx64
6809 " is not terminated.\n"), offset);
6810 break;
6811 }
6812
6813 SAFE_BYTE_GET_AND_INC (entry_type, start, 1, section_end);
6814
6815 if (vstart)
6816 switch (entry_type)
6817 {
6818 default:
6819 break;
6820
6821 case 2:
6822 case 3:
6823 case 4:
6824 {
6825 uint64_t view;
6826 uint64_t off = offset + (vstart - *start_ptr);
6827
6828 READ_ULEB (view, vstart, section_end);
6829 print_view (view, 8);
6830
6831 READ_ULEB (view, vstart, section_end);
6832 print_view (view, 8);
6833
6834 printf (_("views at %8.8" PRIx64 " for:\n %*s "), off, 8, "");
6835
6836 }
6837 break;
6838 }
6839
6840 switch (entry_type)
6841 {
6842 case 0: /* A terminating entry. */
6843 *start_ptr = start;
6844 *vstart_ptr = vstart;
6845 printf (_("<End of list>\n"));
6846 return;
6847 case 1: /* A base-address entry. */
6848 READ_ULEB (idx, start, section_end);
6849 print_addr_index (idx, 8);
6850 printf ("%*s", 9 + (vstart ? 2 * 6 : 0), "");
6851 printf (_("(base address selection entry)\n"));
6852 continue;
6853 case 2: /* A start/end entry. */
6854 READ_ULEB (idx, start, section_end);
6855 print_addr_index (idx, 8);
6856 READ_ULEB (idx, start, section_end);
6857 print_addr_index (idx, 8);
6858 break;
6859 case 3: /* A start/length entry. */
6860 READ_ULEB (idx, start, section_end);
6861 print_addr_index (idx, 8);
6862 SAFE_BYTE_GET_AND_INC (idx, start, 4, section_end);
6863 printf ("%08x ", idx);
6864 break;
6865 case 4: /* An offset pair entry. */
6866 SAFE_BYTE_GET_AND_INC (idx, start, 4, section_end);
6867 printf ("%08x ", idx);
6868 SAFE_BYTE_GET_AND_INC (idx, start, 4, section_end);
6869 printf ("%08x ", idx);
6870 break;
6871 default:
6872 warn (_("Unknown location list entry type 0x%x.\n"), entry_type);
6873 *start_ptr = start;
6874 *vstart_ptr = vstart;
6875 return;
6876 }
6877
6878 if (2 > (size_t) (section_end - start))
6879 {
6880 warn (_("Location list starting at offset %#" PRIx64
6881 " is not terminated.\n"), offset);
6882 break;
6883 }
6884
6885 SAFE_BYTE_GET_AND_INC (length, start, 2, section_end);
6886 if (length > (size_t) (section_end - start))
6887 {
6888 warn (_("Location list starting at offset %#" PRIx64
6889 " is not terminated.\n"), offset);
6890 break;
6891 }
6892
6893 putchar ('(');
6894 need_frame_base = decode_location_expression (start,
6895 pointer_size,
6896 offset_size,
6897 dwarf_version,
6898 length,
6899 cu_offset, section);
6900 putchar (')');
6901
6902 if (need_frame_base && !has_frame_base)
6903 printf (_(" [without DW_AT_frame_base]"));
6904
6905 putchar ('\n');
6906
6907 start += length;
6908 }
6909
6910 *start_ptr = start;
6911 *vstart_ptr = vstart;
6912 }
6913
6914 /* Sort array of indexes in ascending order of loc_offsets[idx] and
6915 loc_views. */
6916
6917 static uint64_t *loc_offsets, *loc_views;
6918
6919 static int
6920 loc_offsets_compar (const void *ap, const void *bp)
6921 {
6922 uint64_t a = loc_offsets[*(const unsigned int *) ap];
6923 uint64_t b = loc_offsets[*(const unsigned int *) bp];
6924
6925 int ret = (a > b) - (b > a);
6926 if (ret)
6927 return ret;
6928
6929 a = loc_views[*(const unsigned int *) ap];
6930 b = loc_views[*(const unsigned int *) bp];
6931
6932 ret = (a > b) - (b > a);
6933
6934 return ret;
6935 }
6936
6937 static int
6938 display_offset_entry_loclists (struct dwarf_section *section)
6939 {
6940 unsigned char * start = section->start;
6941 unsigned char * const end = start + section->size;
6942
6943 introduce (section, false);
6944
6945 do
6946 {
6947 uint64_t length;
6948 unsigned short version;
6949 unsigned char address_size;
6950 unsigned char segment_selector_size;
6951 uint32_t offset_entry_count;
6952 uint32_t i;
6953 bool is_64bit;
6954
6955 printf (_("Table at Offset %#tx\n"), start - section->start);
6956
6957 SAFE_BYTE_GET_AND_INC (length, start, 4, end);
6958 if (length == 0xffffffff)
6959 {
6960 is_64bit = true;
6961 SAFE_BYTE_GET_AND_INC (length, start, 8, end);
6962 }
6963 else
6964 is_64bit = false;
6965
6966 SAFE_BYTE_GET_AND_INC (version, start, 2, end);
6967 SAFE_BYTE_GET_AND_INC (address_size, start, 1, end);
6968 SAFE_BYTE_GET_AND_INC (segment_selector_size, start, 1, end);
6969 SAFE_BYTE_GET_AND_INC (offset_entry_count, start, 4, end);
6970
6971 printf (_(" Length: %#" PRIx64 "\n"), length);
6972 printf (_(" DWARF version: %u\n"), version);
6973 printf (_(" Address size: %u\n"), address_size);
6974 printf (_(" Segment size: %u\n"), segment_selector_size);
6975 printf (_(" Offset entries: %u\n"), offset_entry_count);
6976
6977 if (version < 5)
6978 {
6979 warn (_("The %s section contains a corrupt or "
6980 "unsupported version number: %d.\n"),
6981 section->name, version);
6982 return 0;
6983 }
6984
6985 if (segment_selector_size != 0)
6986 {
6987 warn (_("The %s section contains an "
6988 "unsupported segment selector size: %d.\n"),
6989 section->name, segment_selector_size);
6990 return 0;
6991 }
6992
6993 if (offset_entry_count == 0)
6994 {
6995 warn (_("The %s section contains a table without offset\n"),
6996 section->name);
6997 return 0;
6998 }
6999
7000 printf (_("\n Offset Entries starting at %#tx:\n"),
7001 start - section->start);
7002
7003 for (i = 0; i < offset_entry_count; i++)
7004 {
7005 uint64_t entry;
7006
7007 SAFE_BYTE_GET_AND_INC (entry, start, is_64bit ? 8 : 4, end);
7008 printf (_(" [%6u] %#" PRIx64 "\n"), i, entry);
7009 }
7010
7011 putchar ('\n');
7012
7013 uint32_t j;
7014
7015 for (j = 1, i = 0; i < offset_entry_count;)
7016 {
7017 unsigned char lle;
7018 uint64_t base_address = 0;
7019 uint64_t begin;
7020 uint64_t finish;
7021 uint64_t off = start - section->start;
7022
7023 if (j != i)
7024 {
7025 printf (_(" Offset Entry %u\n"), i);
7026 j = i;
7027 }
7028
7029 printf (" ");
7030 print_hex (off, 4);
7031
7032 SAFE_BYTE_GET_AND_INC (lle, start, 1, end);
7033
7034 switch (lle)
7035 {
7036 case DW_LLE_end_of_list:
7037 printf (_("<End of list>\n\n"));
7038 i ++;
7039 continue;
7040
7041 case DW_LLE_base_addressx:
7042 READ_ULEB (base_address, start, end);
7043 print_hex (base_address, address_size);
7044 printf (_("(index into .debug_addr) "));
7045 base_address = fetch_indexed_addr (base_address, address_size);
7046 print_hex (base_address, address_size);
7047 printf (_("(base address)\n"));
7048 continue;
7049
7050 case DW_LLE_startx_endx:
7051 READ_ULEB (begin, start, end);
7052 begin = fetch_indexed_addr (begin, address_size);
7053 READ_ULEB (finish, start, end);
7054 finish = fetch_indexed_addr (finish, address_size);
7055 break;
7056
7057 case DW_LLE_startx_length:
7058 READ_ULEB (begin, start, end);
7059 begin = fetch_indexed_addr (begin, address_size);
7060 READ_ULEB (finish, start, end);
7061 finish += begin;
7062 break;
7063
7064 case DW_LLE_offset_pair:
7065 READ_ULEB (begin, start, end);
7066 begin += base_address;
7067 READ_ULEB (finish, start, end);
7068 finish += base_address;
7069 break;
7070
7071 case DW_LLE_default_location:
7072 begin = finish = 0;
7073 break;
7074
7075 case DW_LLE_base_address:
7076 SAFE_BYTE_GET_AND_INC (base_address, start, address_size, end);
7077 print_hex (base_address, address_size);
7078 printf (_("(base address)\n"));
7079 continue;
7080
7081 case DW_LLE_start_end:
7082 SAFE_BYTE_GET_AND_INC (begin, start, address_size, end);
7083 SAFE_BYTE_GET_AND_INC (finish, start, address_size, end);
7084 break;
7085
7086 case DW_LLE_start_length:
7087 SAFE_BYTE_GET_AND_INC (begin, start, address_size, end);
7088 READ_ULEB (finish, start, end);
7089 finish += begin;
7090 break;
7091
7092 default:
7093 error (_("Invalid location list entry type %d\n"), lle);
7094 return 0;
7095 }
7096
7097 if (start == end)
7098 {
7099 warn (_("Location list starting at offset %#" PRIx64
7100 " is not terminated.\n"), off);
7101 break;
7102 }
7103
7104 print_hex (begin, address_size);
7105 print_hex (finish, address_size);
7106
7107 if (begin == finish)
7108 fputs (_("(start == end)"), stdout);
7109 else if (begin > finish)
7110 fputs (_("(start > end)"), stdout);
7111
7112 /* Read the counted location descriptions. */
7113 READ_ULEB (length, start, end);
7114
7115 if (length > (size_t) (end - start))
7116 {
7117 warn (_("Location list starting at offset %#" PRIx64
7118 " is not terminated.\n"), off);
7119 break;
7120 }
7121
7122 (void) decode_location_expression (start, address_size, address_size,
7123 version, length, 0, section);
7124 start += length;
7125 putchar ('\n');
7126 }
7127
7128 putchar ('\n');
7129 }
7130 while (start < end);
7131
7132 return 1;
7133 }
7134
7135 static int
7136 display_debug_loc (struct dwarf_section *section, void *file)
7137 {
7138 unsigned char *start = section->start, *vstart = NULL;
7139 uint64_t bytes;
7140 unsigned char *section_begin = start;
7141 unsigned int num_loc_list = 0;
7142 uint64_t last_offset = 0;
7143 uint64_t last_view = 0;
7144 unsigned int first = 0;
7145 unsigned int i;
7146 unsigned int j;
7147 int seen_first_offset = 0;
7148 int locs_sorted = 1;
7149 unsigned char *next = start, *vnext = vstart;
7150 unsigned int *array = NULL;
7151 const char *suffix = strrchr (section->name, '.');
7152 bool is_dwo = false;
7153 int is_loclists = strstr (section->name, "debug_loclists") != NULL;
7154 uint64_t expected_start = 0;
7155
7156 if (suffix && strcmp (suffix, ".dwo") == 0)
7157 is_dwo = true;
7158
7159 bytes = section->size;
7160
7161 if (bytes == 0)
7162 {
7163 printf (_("\nThe %s section is empty.\n"), section->name);
7164 return 0;
7165 }
7166
7167 if (is_loclists)
7168 {
7169 unsigned char *hdrptr = section_begin;
7170 uint64_t ll_length;
7171 unsigned short ll_version;
7172 unsigned char *end = section_begin + section->size;
7173 unsigned char address_size, segment_selector_size;
7174 uint32_t offset_entry_count;
7175
7176 SAFE_BYTE_GET_AND_INC (ll_length, hdrptr, 4, end);
7177 if (ll_length == 0xffffffff)
7178 SAFE_BYTE_GET_AND_INC (ll_length, hdrptr, 8, end);
7179
7180 SAFE_BYTE_GET_AND_INC (ll_version, hdrptr, 2, end);
7181 if (ll_version != 5)
7182 {
7183 warn (_("The %s section contains corrupt or "
7184 "unsupported version number: %d.\n"),
7185 section->name, ll_version);
7186 return 0;
7187 }
7188
7189 SAFE_BYTE_GET_AND_INC (address_size, hdrptr, 1, end);
7190
7191 SAFE_BYTE_GET_AND_INC (segment_selector_size, hdrptr, 1, end);
7192 if (segment_selector_size != 0)
7193 {
7194 warn (_("The %s section contains "
7195 "unsupported segment selector size: %d.\n"),
7196 section->name, segment_selector_size);
7197 return 0;
7198 }
7199
7200 SAFE_BYTE_GET_AND_INC (offset_entry_count, hdrptr, 4, end);
7201
7202 if (offset_entry_count != 0)
7203 return display_offset_entry_loclists (section);
7204
7205 expected_start = hdrptr - section_begin;
7206 }
7207
7208 if (load_debug_info (file) == 0)
7209 {
7210 warn (_("Unable to load/parse the .debug_info section, so cannot interpret the %s section.\n"),
7211 section->name);
7212 return 0;
7213 }
7214
7215 /* Check the order of location list in .debug_info section. If
7216 offsets of location lists are in the ascending order, we can
7217 use `debug_information' directly. */
7218 for (i = 0; i < num_debug_info_entries; i++)
7219 {
7220 unsigned int num;
7221
7222 num = debug_information [i].num_loc_offsets;
7223 if (num > num_loc_list)
7224 num_loc_list = num;
7225
7226 /* Check if we can use `debug_information' directly. */
7227 if (locs_sorted && num != 0)
7228 {
7229 if (!seen_first_offset)
7230 {
7231 /* This is the first location list. */
7232 last_offset = debug_information [i].loc_offsets [0];
7233 last_view = debug_information [i].loc_views [0];
7234 first = i;
7235 seen_first_offset = 1;
7236 j = 1;
7237 }
7238 else
7239 j = 0;
7240
7241 for (; j < num; j++)
7242 {
7243 if (last_offset >
7244 debug_information [i].loc_offsets [j]
7245 || (last_offset == debug_information [i].loc_offsets [j]
7246 && last_view > debug_information [i].loc_views [j]))
7247 {
7248 locs_sorted = 0;
7249 break;
7250 }
7251 last_offset = debug_information [i].loc_offsets [j];
7252 last_view = debug_information [i].loc_views [j];
7253 }
7254 }
7255 }
7256
7257 if (!seen_first_offset)
7258 error (_("No location lists in .debug_info section!\n"));
7259
7260 if (debug_information [first].num_loc_offsets > 0
7261 && debug_information [first].loc_offsets [0] != expected_start
7262 && debug_information [first].loc_views [0] != expected_start)
7263 warn (_("Location lists in %s section start at %#" PRIx64
7264 " rather than %#" PRIx64 "\n"),
7265 section->name, debug_information [first].loc_offsets [0],
7266 expected_start);
7267
7268 if (!locs_sorted)
7269 array = (unsigned int *) xcmalloc (num_loc_list, sizeof (unsigned int));
7270
7271 introduce (section, false);
7272
7273 if (reloc_at (section, 0))
7274 printf (_(" Warning: This section has relocations - addresses seen here may not be accurate.\n\n"));
7275
7276 printf (_(" Offset Begin End Expression\n"));
7277
7278 seen_first_offset = 0;
7279 for (i = first; i < num_debug_info_entries; i++)
7280 {
7281 uint64_t offset, voffset;
7282 uint64_t base_address;
7283 unsigned int k;
7284 int has_frame_base;
7285
7286 if (!locs_sorted)
7287 {
7288 for (k = 0; k < debug_information [i].num_loc_offsets; k++)
7289 array[k] = k;
7290 loc_offsets = debug_information [i].loc_offsets;
7291 loc_views = debug_information [i].loc_views;
7292 qsort (array, debug_information [i].num_loc_offsets,
7293 sizeof (*array), loc_offsets_compar);
7294 }
7295
7296 int adjacent_view_loclists = 1;
7297 for (k = 0; k < debug_information [i].num_loc_offsets; k++)
7298 {
7299 j = locs_sorted ? k : array[k];
7300 if (k
7301 && (debug_information [i].loc_offsets [locs_sorted
7302 ? k - 1 : array [k - 1]]
7303 == debug_information [i].loc_offsets [j])
7304 && (debug_information [i].loc_views [locs_sorted
7305 ? k - 1 : array [k - 1]]
7306 == debug_information [i].loc_views [j]))
7307 continue;
7308 has_frame_base = debug_information [i].have_frame_base [j];
7309 offset = debug_information [i].loc_offsets [j];
7310 next = section_begin + offset;
7311 voffset = debug_information [i].loc_views [j];
7312 if (voffset != (uint64_t) -1)
7313 vnext = section_begin + voffset;
7314 else
7315 vnext = NULL;
7316 base_address = debug_information [i].base_address;
7317
7318 if (vnext && vnext < next)
7319 {
7320 vstart = vnext;
7321 display_view_pair_list (section, &vstart, i, next);
7322 if (start == vnext)
7323 start = vstart;
7324 }
7325
7326 if (!seen_first_offset || !adjacent_view_loclists)
7327 seen_first_offset = 1;
7328 else
7329 {
7330 if (start < next)
7331 warn (_("There is a hole [%#tx - %#" PRIx64 "]"
7332 " in %s section.\n"),
7333 start - section_begin, offset, section->name);
7334 else if (start > next)
7335 warn (_("There is an overlap [%#tx - %#" PRIx64 "]"
7336 " in %s section.\n"),
7337 start - section_begin, offset, section->name);
7338 }
7339 start = next;
7340 vstart = vnext;
7341
7342 if (offset >= bytes)
7343 {
7344 warn (_("Offset %#" PRIx64 " is bigger than %s section size.\n"),
7345 offset, section->name);
7346 continue;
7347 }
7348
7349 if (vnext && voffset >= bytes)
7350 {
7351 warn (_("View Offset %#" PRIx64 " is bigger than %s section size.\n"),
7352 voffset, section->name);
7353 continue;
7354 }
7355
7356 if (!is_loclists)
7357 {
7358 if (is_dwo)
7359 display_loc_list_dwo (section, &start, i, offset,
7360 &vstart, has_frame_base);
7361 else
7362 display_loc_list (section, &start, i, offset, base_address,
7363 &vstart, has_frame_base);
7364 }
7365 else
7366 {
7367 if (is_dwo)
7368 warn (_("DWO is not yet supported.\n"));
7369 else
7370 display_loclists_list (section, &start, i, offset, base_address,
7371 &vstart, has_frame_base);
7372 }
7373
7374 /* FIXME: this arrangement is quite simplistic. Nothing
7375 requires locview lists to be adjacent to corresponding
7376 loclists, and a single loclist could be augmented by
7377 different locview lists, and vice-versa, unlikely as it
7378 is that it would make sense to do so. Hopefully we'll
7379 have view pair support built into loclists before we ever
7380 need to address all these possibilities. */
7381 if (adjacent_view_loclists && vnext
7382 && vnext != start && vstart != next)
7383 {
7384 adjacent_view_loclists = 0;
7385 warn (_("Hole and overlap detection requires adjacent view lists and loclists.\n"));
7386 }
7387
7388 if (vnext && vnext == start)
7389 display_view_pair_list (section, &start, i, vstart);
7390 }
7391 }
7392
7393 if (start < section->start + section->size)
7394 warn (ngettext ("There is %ld unused byte at the end of section %s\n",
7395 "There are %ld unused bytes at the end of section %s\n",
7396 (long) (section->start + section->size - start)),
7397 (long) (section->start + section->size - start), section->name);
7398 putchar ('\n');
7399 free (array);
7400 return 1;
7401 }
7402
7403 static int
7404 display_debug_str (struct dwarf_section *section,
7405 void *file ATTRIBUTE_UNUSED)
7406 {
7407 unsigned char *start = section->start;
7408 uint64_t bytes = section->size;
7409 uint64_t addr = section->address;
7410
7411 if (bytes == 0)
7412 {
7413 printf (_("\nThe %s section is empty.\n"), section->name);
7414 return 0;
7415 }
7416
7417 introduce (section, false);
7418
7419 while (bytes)
7420 {
7421 int j;
7422 int k;
7423 int lbytes;
7424
7425 lbytes = (bytes > 16 ? 16 : bytes);
7426
7427 printf (" 0x%8.8" PRIx64 " ", addr);
7428
7429 for (j = 0; j < 16; j++)
7430 {
7431 if (j < lbytes)
7432 printf ("%2.2x", start[j]);
7433 else
7434 printf (" ");
7435
7436 if ((j & 3) == 3)
7437 printf (" ");
7438 }
7439
7440 for (j = 0; j < lbytes; j++)
7441 {
7442 k = start[j];
7443 if (k >= ' ' && k < 0x80)
7444 printf ("%c", k);
7445 else
7446 printf (".");
7447 }
7448
7449 putchar ('\n');
7450
7451 start += lbytes;
7452 addr += lbytes;
7453 bytes -= lbytes;
7454 }
7455
7456 putchar ('\n');
7457
7458 return 1;
7459 }
7460
7461 static int
7462 display_debug_info (struct dwarf_section *section, void *file)
7463 {
7464 return process_debug_info (section, file, section->abbrev_sec, false, false);
7465 }
7466
7467 static int
7468 display_debug_types (struct dwarf_section *section, void *file)
7469 {
7470 return process_debug_info (section, file, section->abbrev_sec, false, true);
7471 }
7472
7473 static int
7474 display_trace_info (struct dwarf_section *section, void *file)
7475 {
7476 return process_debug_info (section, file, section->abbrev_sec, false, true);
7477 }
7478
7479 static int
7480 display_debug_aranges (struct dwarf_section *section,
7481 void *file ATTRIBUTE_UNUSED)
7482 {
7483 unsigned char *start = section->start;
7484 unsigned char *end = start + section->size;
7485
7486 introduce (section, false);
7487
7488 /* It does not matter if this load fails,
7489 we test for that later on. */
7490 load_debug_info (file);
7491
7492 while (start < end)
7493 {
7494 unsigned char *hdrptr;
7495 DWARF2_Internal_ARange arange;
7496 unsigned char *addr_ranges;
7497 uint64_t length;
7498 uint64_t address;
7499 uint64_t sec_off;
7500 unsigned char address_size;
7501 unsigned int offset_size;
7502 unsigned char *end_ranges;
7503
7504 hdrptr = start;
7505 sec_off = hdrptr - section->start;
7506
7507 SAFE_BYTE_GET_AND_INC (arange.ar_length, hdrptr, 4, end);
7508 if (arange.ar_length == 0xffffffff)
7509 {
7510 SAFE_BYTE_GET_AND_INC (arange.ar_length, hdrptr, 8, end);
7511 offset_size = 8;
7512 }
7513 else
7514 offset_size = 4;
7515
7516 if (arange.ar_length > (size_t) (end - hdrptr))
7517 {
7518 warn (_("Debug info is corrupted, %s header at %#" PRIx64
7519 " has length %#" PRIx64 "\n"),
7520 section->name, sec_off, arange.ar_length);
7521 break;
7522 }
7523 end_ranges = hdrptr + arange.ar_length;
7524
7525 SAFE_BYTE_GET_AND_INC (arange.ar_version, hdrptr, 2, end_ranges);
7526 SAFE_BYTE_GET_AND_INC (arange.ar_info_offset, hdrptr, offset_size,
7527 end_ranges);
7528
7529 if (num_debug_info_entries != DEBUG_INFO_UNAVAILABLE
7530 && num_debug_info_entries > 0
7531 && find_debug_info_for_offset (arange.ar_info_offset) == NULL)
7532 warn (_(".debug_info offset of %#" PRIx64
7533 " in %s section does not point to a CU header.\n"),
7534 arange.ar_info_offset, section->name);
7535
7536 SAFE_BYTE_GET_AND_INC (arange.ar_pointer_size, hdrptr, 1, end_ranges);
7537 SAFE_BYTE_GET_AND_INC (arange.ar_segment_size, hdrptr, 1, end_ranges);
7538
7539 if (arange.ar_version != 2 && arange.ar_version != 3)
7540 {
7541 /* PR 19872: A version number of 0 probably means that there is
7542 padding at the end of the .debug_aranges section. Gold puts
7543 it there when performing an incremental link, for example.
7544 So do not generate a warning in this case. */
7545 if (arange.ar_version)
7546 warn (_("Only DWARF 2 and 3 aranges are currently supported.\n"));
7547 break;
7548 }
7549
7550 printf (_(" Length: %" PRId64 "\n"), arange.ar_length);
7551 printf (_(" Version: %d\n"), arange.ar_version);
7552 printf (_(" Offset into .debug_info: %#" PRIx64 "\n"),
7553 arange.ar_info_offset);
7554 printf (_(" Pointer Size: %d\n"), arange.ar_pointer_size);
7555 printf (_(" Segment Size: %d\n"), arange.ar_segment_size);
7556
7557 address_size = arange.ar_pointer_size + arange.ar_segment_size;
7558
7559 /* PR 17512: file: 001-108546-0.001:0.1. */
7560 if (address_size == 0 || address_size > 8)
7561 {
7562 error (_("Invalid address size in %s section!\n"),
7563 section->name);
7564 break;
7565 }
7566
7567 /* The DWARF spec does not require that the address size be a power
7568 of two, but we do. This will have to change if we ever encounter
7569 an uneven architecture. */
7570 if ((address_size & (address_size - 1)) != 0)
7571 {
7572 warn (_("Pointer size + Segment size is not a power of two.\n"));
7573 break;
7574 }
7575
7576 if (address_size > 4)
7577 printf (_("\n Address Length\n"));
7578 else
7579 printf (_("\n Address Length\n"));
7580
7581 addr_ranges = hdrptr;
7582
7583 /* Must pad to an alignment boundary that is twice the address size. */
7584 addr_ranges += (2 * address_size - 1
7585 - (hdrptr - start - 1) % (2 * address_size));
7586
7587 while (2 * address_size <= end_ranges - addr_ranges)
7588 {
7589 SAFE_BYTE_GET_AND_INC (address, addr_ranges, address_size,
7590 end_ranges);
7591 SAFE_BYTE_GET_AND_INC (length, addr_ranges, address_size,
7592 end_ranges);
7593 printf (" ");
7594 print_hex (address, address_size);
7595 print_hex_ns (length, address_size);
7596 putchar ('\n');
7597 }
7598
7599 start = end_ranges;
7600 }
7601
7602 printf ("\n");
7603
7604 return 1;
7605 }
7606
7607 /* Comparison function for qsort. */
7608 static int
7609 comp_addr_base (const void * v0, const void * v1)
7610 {
7611 debug_info *info0 = *(debug_info **) v0;
7612 debug_info *info1 = *(debug_info **) v1;
7613 return info0->addr_base - info1->addr_base;
7614 }
7615
7616 /* Display the debug_addr section. */
7617 static int
7618 display_debug_addr (struct dwarf_section *section,
7619 void *file)
7620 {
7621 debug_info **debug_addr_info;
7622 unsigned char *entry;
7623 unsigned char *end;
7624 unsigned int i;
7625 unsigned int count;
7626 unsigned char * header;
7627
7628 if (section->size == 0)
7629 {
7630 printf (_("\nThe %s section is empty.\n"), section->name);
7631 return 0;
7632 }
7633
7634 if (load_debug_info (file) == 0)
7635 {
7636 warn (_("Unable to load/parse the .debug_info section, so cannot interpret the %s section.\n"),
7637 section->name);
7638 return 0;
7639 }
7640
7641 introduce (section, false);
7642
7643 /* PR 17531: file: cf38d01b.
7644 We use xcalloc because a corrupt file may not have initialised all of the
7645 fields in the debug_info structure, which means that the sort below might
7646 try to move uninitialised data. */
7647 debug_addr_info = (debug_info **) xcalloc ((num_debug_info_entries + 1),
7648 sizeof (debug_info *));
7649
7650 count = 0;
7651 for (i = 0; i < num_debug_info_entries; i++)
7652 if (debug_information [i].addr_base != DEBUG_INFO_UNAVAILABLE)
7653 {
7654 /* PR 17531: file: cf38d01b. */
7655 if (debug_information[i].addr_base >= section->size)
7656 warn (_("Corrupt address base (%#" PRIx64 ")"
7657 " found in debug section %u\n"),
7658 debug_information[i].addr_base, i);
7659 else
7660 debug_addr_info [count++] = debug_information + i;
7661 }
7662
7663 /* Add a sentinel to make iteration convenient. */
7664 debug_addr_info [count] = (debug_info *) xmalloc (sizeof (debug_info));
7665 debug_addr_info [count]->addr_base = section->size;
7666 qsort (debug_addr_info, count, sizeof (debug_info *), comp_addr_base);
7667
7668 header = section->start;
7669 for (i = 0; i < count; i++)
7670 {
7671 unsigned int idx;
7672 unsigned int address_size = debug_addr_info [i]->pointer_size;
7673
7674 printf (_(" For compilation unit at offset %#" PRIx64 ":\n"),
7675 debug_addr_info [i]->cu_offset);
7676
7677 printf (_("\tIndex\tAddress\n"));
7678 entry = section->start + debug_addr_info [i]->addr_base;
7679 if (debug_addr_info [i]->dwarf_version >= 5)
7680 {
7681 size_t header_size = entry - header;
7682 unsigned char *curr_header = header;
7683 uint64_t length;
7684 int version;
7685 int segment_selector_size;
7686
7687 if (header_size != 8 && header_size != 16)
7688 {
7689 warn (_("Corrupt %s section: expecting header size of 8 or 16, but found %zd instead\n"),
7690 section->name, header_size);
7691 return 0;
7692 }
7693
7694 SAFE_BYTE_GET_AND_INC (length, curr_header, 4, entry);
7695 if (length == 0xffffffff)
7696 SAFE_BYTE_GET_AND_INC (length, curr_header, 8, entry);
7697 end = curr_header + length;
7698
7699 SAFE_BYTE_GET_AND_INC (version, curr_header, 2, entry);
7700 if (version != 5)
7701 warn (_("Corrupt %s section: expecting version number 5 in header but found %d instead\n"),
7702 section->name, version);
7703
7704 SAFE_BYTE_GET_AND_INC (address_size, curr_header, 1, entry);
7705 SAFE_BYTE_GET_AND_INC (segment_selector_size, curr_header, 1, entry);
7706 address_size += segment_selector_size;
7707 }
7708 else
7709 end = section->start + debug_addr_info [i + 1]->addr_base;
7710 header = end;
7711 idx = 0;
7712 while (entry < end)
7713 {
7714 uint64_t base = byte_get (entry, address_size);
7715 printf (_("\t%d:\t"), idx);
7716 print_hex_ns (base, address_size);
7717 printf ("\n");
7718 entry += address_size;
7719 idx++;
7720 }
7721 }
7722 printf ("\n");
7723
7724 free (debug_addr_info);
7725 return 1;
7726 }
7727
7728 /* Display the .debug_str_offsets and .debug_str_offsets.dwo sections. */
7729
7730 static int
7731 display_debug_str_offsets (struct dwarf_section *section,
7732 void *file ATTRIBUTE_UNUSED)
7733 {
7734 unsigned long idx;
7735
7736 if (section->size == 0)
7737 {
7738 printf (_("\nThe %s section is empty.\n"), section->name);
7739 return 0;
7740 }
7741
7742 unsigned char *start = section->start;
7743 unsigned char *end = start + section->size;
7744 unsigned char *curr = start;
7745 uint64_t debug_str_offsets_hdr_len;
7746
7747 const char *suffix = strrchr (section->name, '.');
7748 bool dwo = suffix && strcmp (suffix, ".dwo") == 0;
7749
7750 if (dwo)
7751 load_debug_section_with_follow (str_dwo, file);
7752 else
7753 load_debug_section_with_follow (str, file);
7754
7755 introduce (section, false);
7756
7757 while (curr < end)
7758 {
7759 uint64_t length;
7760 uint64_t entry_length;
7761
7762 SAFE_BYTE_GET_AND_INC (length, curr, 4, end);
7763 /* FIXME: We assume that this means 64-bit DWARF is being used. */
7764 if (length == 0xffffffff)
7765 {
7766 SAFE_BYTE_GET_AND_INC (length, curr, 8, end);
7767 entry_length = 8;
7768 debug_str_offsets_hdr_len = 16;
7769 }
7770 else
7771 {
7772 entry_length = 4;
7773 debug_str_offsets_hdr_len = 8;
7774 }
7775
7776 unsigned char *entries_end;
7777 if (length == 0)
7778 {
7779 /* This is probably an old style .debug_str_offset section which
7780 just contains offsets and no header (and the first offset is 0). */
7781 length = section->size;
7782 curr = section->start;
7783 entries_end = end;
7784
7785 printf (_(" Length: %#" PRIx64 "\n"), length);
7786 printf (_(" Index Offset [String]\n"));
7787 }
7788 else
7789 {
7790 if (length <= (size_t) (end - curr))
7791 entries_end = curr + length;
7792 else
7793 {
7794 warn (_("Section %s is too small %#" PRIx64 "\n"),
7795 section->name, section->size);
7796 entries_end = end;
7797 }
7798
7799 int version;
7800 SAFE_BYTE_GET_AND_INC (version, curr, 2, entries_end);
7801 if (version != 5)
7802 warn (_("Unexpected version number in str_offset header: %#x\n"), version);
7803
7804 int padding;
7805 SAFE_BYTE_GET_AND_INC (padding, curr, 2, entries_end);
7806 if (padding != 0)
7807 warn (_("Unexpected value in str_offset header's padding field: %#x\n"), padding);
7808
7809 printf (_(" Length: %#" PRIx64 "\n"), length);
7810 printf (_(" Version: %#x\n"), version);
7811 printf (_(" Index Offset [String]\n"));
7812 }
7813
7814 for (idx = 0; curr < entries_end; idx++)
7815 {
7816 uint64_t offset;
7817 const unsigned char * string;
7818
7819 if ((size_t) (entries_end - curr) < entry_length)
7820 /* Not enough space to read one entry_length, give up. */
7821 return 0;
7822
7823 SAFE_BYTE_GET_AND_INC (offset, curr, entry_length, entries_end);
7824 if (dwo)
7825 string = (const unsigned char *)
7826 fetch_indexed_string (idx, NULL, entry_length, dwo, debug_str_offsets_hdr_len);
7827 else
7828 string = fetch_indirect_string (offset);
7829
7830 printf (" %8lu ", idx);
7831 print_hex (offset, entry_length);
7832 printf (" %s\n", string);
7833 }
7834 }
7835
7836 return 1;
7837 }
7838
7839 /* Each debug_information[x].range_lists[y] gets this representation for
7840 sorting purposes. */
7841
7842 struct range_entry
7843 {
7844 /* The debug_information[x].range_lists[y] value. */
7845 uint64_t ranges_offset;
7846
7847 /* Original debug_information to find parameters of the data. */
7848 debug_info *debug_info_p;
7849 };
7850
7851 /* Sort struct range_entry in ascending order of its RANGES_OFFSET. */
7852
7853 static int
7854 range_entry_compar (const void *ap, const void *bp)
7855 {
7856 const struct range_entry *a_re = (const struct range_entry *) ap;
7857 const struct range_entry *b_re = (const struct range_entry *) bp;
7858 const uint64_t a = a_re->ranges_offset;
7859 const uint64_t b = b_re->ranges_offset;
7860
7861 return (a > b) - (b > a);
7862 }
7863
7864 static void
7865 display_debug_ranges_list (unsigned char * start,
7866 unsigned char * finish,
7867 unsigned int pointer_size,
7868 uint64_t offset,
7869 uint64_t base_address)
7870 {
7871 while (start < finish)
7872 {
7873 uint64_t begin;
7874 uint64_t end;
7875
7876 SAFE_BYTE_GET_AND_INC (begin, start, pointer_size, finish);
7877 if (start >= finish)
7878 break;
7879 SAFE_SIGNED_BYTE_GET_AND_INC (end, start, pointer_size, finish);
7880
7881 printf (" ");
7882 print_hex (offset, 4);
7883
7884 if (begin == 0 && end == 0)
7885 {
7886 printf (_("<End of list>\n"));
7887 break;
7888 }
7889
7890 /* Check base address specifiers. */
7891 if (is_max_address (begin, pointer_size)
7892 && !is_max_address (end, pointer_size))
7893 {
7894 base_address = end;
7895 print_hex (begin, pointer_size);
7896 print_hex (end, pointer_size);
7897 printf ("(base address)\n");
7898 continue;
7899 }
7900
7901 print_hex (begin + base_address, pointer_size);
7902 print_hex_ns (end + base_address, pointer_size);
7903
7904 if (begin == end)
7905 fputs (_(" (start == end)"), stdout);
7906 else if (begin > end)
7907 fputs (_(" (start > end)"), stdout);
7908
7909 putchar ('\n');
7910 }
7911 }
7912
7913 static unsigned char *
7914 display_debug_rnglists_list (unsigned char * start,
7915 unsigned char * finish,
7916 unsigned int pointer_size,
7917 uint64_t offset,
7918 uint64_t base_address,
7919 unsigned int offset_size)
7920 {
7921 unsigned char *next = start;
7922 unsigned int debug_addr_section_hdr_len;
7923
7924 if (offset_size == 4)
7925 debug_addr_section_hdr_len = 8;
7926 else
7927 debug_addr_section_hdr_len = 16;
7928
7929 while (1)
7930 {
7931 uint64_t off = offset + (start - next);
7932 enum dwarf_range_list_entry rlet;
7933 /* Initialize it due to a false compiler warning. */
7934 uint64_t begin = -1, length, end = -1;
7935
7936 if (start >= finish)
7937 {
7938 warn (_("Range list starting at offset %#" PRIx64
7939 " is not terminated.\n"), offset);
7940 break;
7941 }
7942
7943 printf (" ");
7944 print_hex (off, 4);
7945
7946 SAFE_BYTE_GET_AND_INC (rlet, start, 1, finish);
7947
7948 switch (rlet)
7949 {
7950 case DW_RLE_end_of_list:
7951 printf (_("<End of list>\n"));
7952 break;
7953 case DW_RLE_base_addressx:
7954 READ_ULEB (base_address, start, finish);
7955 print_hex (base_address, pointer_size);
7956 printf (_("(base address index) "));
7957 base_address = fetch_indexed_addr ((base_address * pointer_size)
7958 + debug_addr_section_hdr_len, pointer_size);
7959 print_hex (base_address, pointer_size);
7960 printf (_("(base address)\n"));
7961 break;
7962 case DW_RLE_startx_endx:
7963 READ_ULEB (begin, start, finish);
7964 READ_ULEB (end, start, finish);
7965 begin = fetch_indexed_addr ((begin * pointer_size)
7966 + debug_addr_section_hdr_len, pointer_size);
7967 end = fetch_indexed_addr ((begin * pointer_size)
7968 + debug_addr_section_hdr_len, pointer_size);
7969 break;
7970 case DW_RLE_startx_length:
7971 READ_ULEB (begin, start, finish);
7972 READ_ULEB (length, start, finish);
7973 begin = fetch_indexed_addr ((begin * pointer_size)
7974 + debug_addr_section_hdr_len, pointer_size);
7975 end = begin + length;
7976 break;
7977 case DW_RLE_offset_pair:
7978 READ_ULEB (begin, start, finish);
7979 READ_ULEB (end, start, finish);
7980 break;
7981 case DW_RLE_base_address:
7982 SAFE_BYTE_GET_AND_INC (base_address, start, pointer_size, finish);
7983 print_hex (base_address, pointer_size);
7984 printf (_("(base address)\n"));
7985 break;
7986 case DW_RLE_start_end:
7987 SAFE_BYTE_GET_AND_INC (begin, start, pointer_size, finish);
7988 SAFE_BYTE_GET_AND_INC (end, start, pointer_size, finish);
7989 break;
7990 case DW_RLE_start_length:
7991 SAFE_BYTE_GET_AND_INC (begin, start, pointer_size, finish);
7992 READ_ULEB (length, start, finish);
7993 end = begin + length;
7994 break;
7995 default:
7996 error (_("Invalid range list entry type %d\n"), rlet);
7997 rlet = DW_RLE_end_of_list;
7998 break;
7999 }
8000
8001 if (rlet == DW_RLE_end_of_list)
8002 break;
8003 if (rlet == DW_RLE_base_address || rlet == DW_RLE_base_addressx)
8004 continue;
8005
8006 /* Only a DW_RLE_offset_pair needs the base address added. */
8007 if (rlet == DW_RLE_offset_pair)
8008 {
8009 begin += base_address;
8010 end += base_address;
8011 }
8012
8013 print_hex (begin, pointer_size);
8014 print_hex (end, pointer_size);
8015
8016 if (begin == end)
8017 fputs (_(" (start == end)"), stdout);
8018 else if (begin > end)
8019 fputs (_(" (start > end)"), stdout);
8020
8021 putchar ('\n');
8022 }
8023
8024 return start;
8025 }
8026
8027 static int
8028 display_debug_rnglists (struct dwarf_section *section)
8029 {
8030 unsigned char *start = section->start;
8031 unsigned char *finish = start + section->size;
8032
8033 while (start < finish)
8034 {
8035 unsigned char *table_start;
8036 uint64_t offset = start - section->start;
8037 unsigned char *end;
8038 uint64_t initial_length;
8039 unsigned char segment_selector_size;
8040 unsigned int offset_entry_count;
8041 unsigned int i;
8042 unsigned short version;
8043 unsigned char address_size = 0;
8044 unsigned char offset_size;
8045
8046 /* Get and check the length of the block. */
8047 SAFE_BYTE_GET_AND_INC (initial_length, start, 4, finish);
8048
8049 if (initial_length == 0xffffffff)
8050 {
8051 /* This section is 64-bit DWARF 3. */
8052 SAFE_BYTE_GET_AND_INC (initial_length, start, 8, finish);
8053 offset_size = 8;
8054 }
8055 else
8056 offset_size = 4;
8057
8058 if (initial_length > (size_t) (finish - start))
8059 {
8060 /* If the length field has a relocation against it, then we should
8061 not complain if it is inaccurate (and probably negative).
8062 It is copied from .debug_line handling code. */
8063 if (reloc_at (section, (start - section->start) - offset_size))
8064 initial_length = finish - start;
8065 else
8066 {
8067 warn (_("The length field (%#" PRIx64
8068 ") in the debug_rnglists header is wrong"
8069 " - the section is too small\n"),
8070 initial_length);
8071 return 0;
8072 }
8073 }
8074
8075 end = start + initial_length;
8076
8077 /* Get the other fields in the header. */
8078 SAFE_BYTE_GET_AND_INC (version, start, 2, finish);
8079 SAFE_BYTE_GET_AND_INC (address_size, start, 1, finish);
8080 SAFE_BYTE_GET_AND_INC (segment_selector_size, start, 1, finish);
8081 SAFE_BYTE_GET_AND_INC (offset_entry_count, start, 4, finish);
8082
8083 printf (_(" Table at Offset: %#" PRIx64 ":\n"), offset);
8084 printf (_(" Length: %#" PRIx64 "\n"), initial_length);
8085 printf (_(" DWARF version: %u\n"), version);
8086 printf (_(" Address size: %u\n"), address_size);
8087 printf (_(" Segment size: %u\n"), segment_selector_size);
8088 printf (_(" Offset entries: %u\n"), offset_entry_count);
8089
8090 /* Check the fields. */
8091 if (segment_selector_size != 0)
8092 {
8093 warn (_("The %s section contains "
8094 "unsupported segment selector size: %d.\n"),
8095 section->name, segment_selector_size);
8096 return 0;
8097 }
8098
8099 if (version < 5)
8100 {
8101 warn (_("Only DWARF version 5+ debug_rnglists info "
8102 "is currently supported.\n"));
8103 return 0;
8104 }
8105
8106 table_start = start;
8107
8108 if (offset_entry_count != 0)
8109 {
8110 printf (_("\n Offsets starting at %#tx:\n"),
8111 start - section->start);
8112
8113 for (i = 0; i < offset_entry_count; i++)
8114 {
8115 uint64_t entry;
8116
8117 SAFE_BYTE_GET_AND_INC (entry, start, offset_size, finish);
8118 printf (_(" [%6u] %#" PRIx64 "\n"), i, entry);
8119 }
8120 }
8121 else
8122 offset_entry_count = 1;
8123
8124 for (i = 0; i < offset_entry_count; i++)
8125 {
8126 uint64_t indx = start - table_start;
8127
8128 offset = start - section->start;
8129 printf (_("\n Offset: %#" PRIx64 ", Index: %#" PRIx64 "\n"),
8130 offset, indx);
8131 printf (_(" Offset Begin End\n"));
8132 start = display_debug_rnglists_list
8133 (start, end, address_size, offset, 0, offset_size);
8134 if (start >= end)
8135 break;
8136 }
8137
8138 start = end;
8139
8140 if (start < finish)
8141 putchar ('\n');
8142 }
8143
8144 putchar ('\n');
8145 return 1;
8146 }
8147
8148 static int
8149 display_debug_ranges (struct dwarf_section *section,
8150 void *file ATTRIBUTE_UNUSED)
8151 {
8152 unsigned char *start = section->start;
8153 unsigned char *last_start = start;
8154 uint64_t bytes = section->size;
8155 unsigned char *section_begin = start;
8156 unsigned char *finish = start + bytes;
8157 unsigned int num_range_list, i;
8158 struct range_entry *range_entries;
8159 struct range_entry *range_entry_fill;
8160 int is_rnglists = strstr (section->name, "debug_rnglists") != NULL;
8161 /* Initialize it due to a false compiler warning. */
8162 unsigned char address_size = 0;
8163 uint64_t last_offset = 0;
8164
8165 if (bytes == 0)
8166 {
8167 printf (_("\nThe %s section is empty.\n"), section->name);
8168 return 0;
8169 }
8170
8171 introduce (section, false);
8172
8173 if (is_rnglists)
8174 return display_debug_rnglists (section);
8175
8176 if (load_debug_info (file) == 0)
8177 {
8178 warn (_("Unable to load/parse the .debug_info section, so cannot interpret the %s section.\n"),
8179 section->name);
8180 return 0;
8181 }
8182
8183 num_range_list = 0;
8184 for (i = 0; i < num_debug_info_entries; i++)
8185 num_range_list += debug_information [i].num_range_lists;
8186
8187 if (num_range_list == 0)
8188 {
8189 /* This can happen when the file was compiled with -gsplit-debug
8190 which removes references to range lists from the primary .o file. */
8191 printf (_("No range lists in .debug_info section.\n"));
8192 return 1;
8193 }
8194
8195 range_entries = (struct range_entry *)
8196 xmalloc (sizeof (*range_entries) * num_range_list);
8197 range_entry_fill = range_entries;
8198
8199 for (i = 0; i < num_debug_info_entries; i++)
8200 {
8201 debug_info *debug_info_p = &debug_information[i];
8202 unsigned int j;
8203
8204 for (j = 0; j < debug_info_p->num_range_lists; j++)
8205 {
8206 range_entry_fill->ranges_offset = debug_info_p->range_lists[j];
8207 range_entry_fill->debug_info_p = debug_info_p;
8208 range_entry_fill++;
8209 }
8210 }
8211
8212 qsort (range_entries, num_range_list, sizeof (*range_entries),
8213 range_entry_compar);
8214
8215 if (dwarf_check != 0 && range_entries[0].ranges_offset != 0)
8216 warn (_("Range lists in %s section start at %#" PRIx64 "\n"),
8217 section->name, range_entries[0].ranges_offset);
8218
8219 putchar ('\n');
8220 printf (_(" Offset Begin End\n"));
8221
8222 for (i = 0; i < num_range_list; i++)
8223 {
8224 struct range_entry *range_entry = &range_entries[i];
8225 debug_info *debug_info_p = range_entry->debug_info_p;
8226 unsigned int pointer_size;
8227 uint64_t offset;
8228 unsigned char *next;
8229 uint64_t base_address;
8230
8231 pointer_size = (is_rnglists ? address_size : debug_info_p->pointer_size);
8232 offset = range_entry->ranges_offset;
8233 base_address = debug_info_p->base_address;
8234
8235 /* PR 17512: file: 001-101485-0.001:0.1. */
8236 if (pointer_size < 2 || pointer_size > 8)
8237 {
8238 warn (_("Corrupt pointer size (%d) in debug entry at offset %#" PRIx64 "\n"),
8239 pointer_size, offset);
8240 continue;
8241 }
8242
8243 if (offset > (size_t) (finish - section_begin))
8244 {
8245 warn (_("Corrupt offset (%#" PRIx64 ") in range entry %u\n"),
8246 offset, i);
8247 continue;
8248 }
8249
8250 next = section_begin + offset + debug_info_p->rnglists_base;
8251
8252 /* If multiple DWARF entities reference the same range then we will
8253 have multiple entries in the `range_entries' list for the same
8254 offset. Thanks to the sort above these will all be consecutive in
8255 the `range_entries' list, so we can easily ignore duplicates
8256 here. */
8257 if (i > 0 && last_offset == offset)
8258 continue;
8259 last_offset = offset;
8260
8261 if (dwarf_check != 0 && i > 0)
8262 {
8263 if (start < next)
8264 warn (_("There is a hole [%#tx - %#tx] in %s section.\n"),
8265 start - section_begin, next - section_begin, section->name);
8266 else if (start > next)
8267 {
8268 if (next == last_start)
8269 continue;
8270 warn (_("There is an overlap [%#tx - %#tx] in %s section.\n"),
8271 start - section_begin, next - section_begin, section->name);
8272 }
8273 }
8274
8275 start = next;
8276 last_start = next;
8277
8278 display_debug_ranges_list
8279 (start, finish, pointer_size, offset, base_address);
8280 }
8281 putchar ('\n');
8282
8283 free (range_entries);
8284
8285 return 1;
8286 }
8287
8288 typedef struct Frame_Chunk
8289 {
8290 struct Frame_Chunk *next;
8291 unsigned char *chunk_start;
8292 unsigned int ncols;
8293 /* DW_CFA_{undefined,same_value,offset,register,unreferenced} */
8294 short int *col_type;
8295 int *col_offset;
8296 char *augmentation;
8297 unsigned int code_factor;
8298 int data_factor;
8299 uint64_t pc_begin;
8300 uint64_t pc_range;
8301 unsigned int cfa_reg;
8302 uint64_t cfa_offset;
8303 unsigned int ra;
8304 unsigned char fde_encoding;
8305 unsigned char cfa_exp;
8306 unsigned char ptr_size;
8307 unsigned char segment_size;
8308 }
8309 Frame_Chunk;
8310
8311 typedef const char *(*dwarf_regname_lookup_ftype) (unsigned int);
8312 static dwarf_regname_lookup_ftype dwarf_regnames_lookup_func;
8313 static const char *const *dwarf_regnames;
8314 static unsigned int dwarf_regnames_count;
8315 static bool is_aarch64;
8316
8317 /* A marker for a col_type that means this column was never referenced
8318 in the frame info. */
8319 #define DW_CFA_unreferenced (-1)
8320
8321 /* Return 0 if no more space is needed, 1 if more space is needed,
8322 -1 for invalid reg. */
8323
8324 static int
8325 frame_need_space (Frame_Chunk *fc, unsigned int reg)
8326 {
8327 unsigned int prev = fc->ncols;
8328
8329 if (reg < (unsigned int) fc->ncols)
8330 return 0;
8331
8332 if (dwarf_regnames_count > 0
8333 && reg > dwarf_regnames_count)
8334 return -1;
8335
8336 fc->ncols = reg + 1;
8337 /* PR 17512: file: 10450-2643-0.004.
8338 If reg == -1 then this can happen... */
8339 if (fc->ncols == 0)
8340 return -1;
8341
8342 /* PR 17512: file: 2844a11d. */
8343 if (fc->ncols > 1024 && dwarf_regnames_count == 0)
8344 {
8345 error (_("Unfeasibly large register number: %u\n"), reg);
8346 fc->ncols = 0;
8347 /* FIXME: 1024 is an arbitrary limit. Increase it if
8348 we ever encounter a valid binary that exceeds it. */
8349 return -1;
8350 }
8351
8352 fc->col_type = (short int *) xcrealloc (fc->col_type, fc->ncols,
8353 sizeof (short int));
8354 fc->col_offset = (int *) xcrealloc (fc->col_offset, fc->ncols, sizeof (int));
8355 /* PR 17512: file:002-10025-0.005. */
8356 if (fc->col_type == NULL || fc->col_offset == NULL)
8357 {
8358 error (_("Out of memory allocating %u columns in dwarf frame arrays\n"),
8359 fc->ncols);
8360 fc->ncols = 0;
8361 return -1;
8362 }
8363
8364 while (prev < fc->ncols)
8365 {
8366 fc->col_type[prev] = DW_CFA_unreferenced;
8367 fc->col_offset[prev] = 0;
8368 prev++;
8369 }
8370 return 1;
8371 }
8372
8373 static const char *const dwarf_regnames_i386[] =
8374 {
8375 "eax", "ecx", "edx", "ebx", /* 0 - 3 */
8376 "esp", "ebp", "esi", "edi", /* 4 - 7 */
8377 "eip", "eflags", NULL, /* 8 - 10 */
8378 "st0", "st1", "st2", "st3", /* 11 - 14 */
8379 "st4", "st5", "st6", "st7", /* 15 - 18 */
8380 NULL, NULL, /* 19 - 20 */
8381 "xmm0", "xmm1", "xmm2", "xmm3", /* 21 - 24 */
8382 "xmm4", "xmm5", "xmm6", "xmm7", /* 25 - 28 */
8383 "mm0", "mm1", "mm2", "mm3", /* 29 - 32 */
8384 "mm4", "mm5", "mm6", "mm7", /* 33 - 36 */
8385 "fcw", "fsw", "mxcsr", /* 37 - 39 */
8386 "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL, /* 40 - 47 */
8387 "tr", "ldtr", /* 48 - 49 */
8388 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 50 - 57 */
8389 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 58 - 65 */
8390 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 66 - 73 */
8391 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 74 - 81 */
8392 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 82 - 89 */
8393 NULL, NULL, NULL, /* 90 - 92 */
8394 "k0", "k1", "k2", "k3", "k4", "k5", "k6", "k7" /* 93 - 100 */
8395 };
8396
8397 static const char *const dwarf_regnames_iamcu[] =
8398 {
8399 "eax", "ecx", "edx", "ebx", /* 0 - 3 */
8400 "esp", "ebp", "esi", "edi", /* 4 - 7 */
8401 "eip", "eflags", NULL, /* 8 - 10 */
8402 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 11 - 18 */
8403 NULL, NULL, /* 19 - 20 */
8404 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 21 - 28 */
8405 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 29 - 36 */
8406 NULL, NULL, NULL, /* 37 - 39 */
8407 "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL, /* 40 - 47 */
8408 "tr", "ldtr", /* 48 - 49 */
8409 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 50 - 57 */
8410 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 58 - 65 */
8411 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 66 - 73 */
8412 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 74 - 81 */
8413 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 82 - 89 */
8414 NULL, NULL, NULL, /* 90 - 92 */
8415 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL /* 93 - 100 */
8416 };
8417
8418 static void
8419 init_dwarf_regnames_i386 (void)
8420 {
8421 dwarf_regnames = dwarf_regnames_i386;
8422 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_i386);
8423 dwarf_regnames_lookup_func = regname_internal_by_table_only;
8424 }
8425
8426 static void
8427 init_dwarf_regnames_iamcu (void)
8428 {
8429 dwarf_regnames = dwarf_regnames_iamcu;
8430 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_iamcu);
8431 dwarf_regnames_lookup_func = regname_internal_by_table_only;
8432 }
8433
8434 static const char *const DW_CFA_GNU_window_save_name[] =
8435 {
8436 "DW_CFA_GNU_window_save",
8437 "DW_CFA_AARCH64_negate_ra_state"
8438 };
8439
8440 static const char *const dwarf_regnames_x86_64[] =
8441 {
8442 "rax", "rdx", "rcx", "rbx",
8443 "rsi", "rdi", "rbp", "rsp",
8444 "r8", "r9", "r10", "r11",
8445 "r12", "r13", "r14", "r15",
8446 "rip",
8447 "xmm0", "xmm1", "xmm2", "xmm3",
8448 "xmm4", "xmm5", "xmm6", "xmm7",
8449 "xmm8", "xmm9", "xmm10", "xmm11",
8450 "xmm12", "xmm13", "xmm14", "xmm15",
8451 "st0", "st1", "st2", "st3",
8452 "st4", "st5", "st6", "st7",
8453 "mm0", "mm1", "mm2", "mm3",
8454 "mm4", "mm5", "mm6", "mm7",
8455 "rflags",
8456 "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL,
8457 "fs.base", "gs.base", NULL, NULL,
8458 "tr", "ldtr",
8459 "mxcsr", "fcw", "fsw",
8460 "xmm16", "xmm17", "xmm18", "xmm19",
8461 "xmm20", "xmm21", "xmm22", "xmm23",
8462 "xmm24", "xmm25", "xmm26", "xmm27",
8463 "xmm28", "xmm29", "xmm30", "xmm31",
8464 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 83 - 90 */
8465 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 91 - 98 */
8466 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 99 - 106 */
8467 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, /* 107 - 114 */
8468 NULL, NULL, NULL, /* 115 - 117 */
8469 "k0", "k1", "k2", "k3", "k4", "k5", "k6", "k7"
8470 };
8471
8472 static void
8473 init_dwarf_regnames_x86_64 (void)
8474 {
8475 dwarf_regnames = dwarf_regnames_x86_64;
8476 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_x86_64);
8477 dwarf_regnames_lookup_func = regname_internal_by_table_only;
8478 }
8479
8480 static const char *const dwarf_regnames_aarch64[] =
8481 {
8482 "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7",
8483 "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15",
8484 "x16", "x17", "x18", "x19", "x20", "x21", "x22", "x23",
8485 "x24", "x25", "x26", "x27", "x28", "x29", "x30", "sp",
8486 NULL, "elr", NULL, NULL, NULL, NULL, NULL, NULL,
8487 NULL, NULL, NULL, NULL, NULL, NULL, "vg", "ffr",
8488 "p0", "p1", "p2", "p3", "p4", "p5", "p6", "p7",
8489 "p8", "p9", "p10", "p11", "p12", "p13", "p14", "p15",
8490 "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7",
8491 "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15",
8492 "v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23",
8493 "v24", "v25", "v26", "v27", "v28", "v29", "v30", "v31",
8494 "z0", "z1", "z2", "z3", "z4", "z5", "z6", "z7",
8495 "z8", "z9", "z10", "z11", "z12", "z13", "z14", "z15",
8496 "z16", "z17", "z18", "z19", "z20", "z21", "z22", "z23",
8497 "z24", "z25", "z26", "z27", "z28", "z29", "z30", "z31",
8498 };
8499
8500 static void
8501 init_dwarf_regnames_aarch64 (void)
8502 {
8503 dwarf_regnames = dwarf_regnames_aarch64;
8504 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_aarch64);
8505 dwarf_regnames_lookup_func = regname_internal_by_table_only;
8506 is_aarch64 = true;
8507 }
8508
8509 static const char *const dwarf_regnames_s390[] =
8510 {
8511 /* Avoid saying "r5 (r5)", so omit the names of r0-r15. */
8512 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
8513 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
8514 "f0", "f2", "f4", "f6", "f1", "f3", "f5", "f7",
8515 "f8", "f10", "f12", "f14", "f9", "f11", "f13", "f15",
8516 "cr0", "cr1", "cr2", "cr3", "cr4", "cr5", "cr6", "cr7",
8517 "cr8", "cr9", "cr10", "cr11", "cr12", "cr13", "cr14", "cr15",
8518 "a0", "a1", "a2", "a3", "a4", "a5", "a6", "a7",
8519 "a8", "a9", "a10", "a11", "a12", "a13", "a14", "a15",
8520 "pswm", "pswa",
8521 NULL, NULL,
8522 "v16", "v18", "v20", "v22", "v17", "v19", "v21", "v23",
8523 "v24", "v26", "v28", "v30", "v25", "v27", "v29", "v31",
8524 };
8525
8526 static void
8527 init_dwarf_regnames_s390 (void)
8528 {
8529 dwarf_regnames = dwarf_regnames_s390;
8530 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_s390);
8531 dwarf_regnames_lookup_func = regname_internal_by_table_only;
8532 }
8533
8534 static const char *const dwarf_regnames_riscv[] =
8535 {
8536 "zero", "ra", "sp", "gp", "tp", "t0", "t1", "t2", /* 0 - 7 */
8537 "s0", "s1", "a0", "a1", "a2", "a3", "a4", "a5", /* 8 - 15 */
8538 "a6", "a7", "s2", "s3", "s4", "s5", "s6", "s7", /* 16 - 23 */
8539 "s8", "s9", "s10", "s11", "t3", "t4", "t5", "t6", /* 24 - 31 */
8540 "ft0", "ft1", "ft2", "ft3", "ft4", "ft5", "ft6", "ft7", /* 32 - 39 */
8541 "fs0", "fs1", /* 40 - 41 */
8542 "fa0", "fa1", "fa2", "fa3", "fa4", "fa5", "fa6", "fa7", /* 42 - 49 */
8543 "fs2", "fs3", "fs4", "fs5", "fs6", "fs7", "fs8", "fs9", /* 50 - 57 */
8544 "fs10", "fs11", /* 58 - 59 */
8545 "ft8", "ft9", "ft10", "ft11" /* 60 - 63 */
8546 };
8547
8548 /* A RISC-V replacement for REGNAME_INTERNAL_BY_TABLE_ONLY which handles
8549 the large number of CSRs. */
8550
8551 static const char *
8552 regname_internal_riscv (unsigned int regno)
8553 {
8554 const char *name = NULL;
8555
8556 /* Lookup in the table first, this covers GPR and FPR. */
8557 if (regno < ARRAY_SIZE (dwarf_regnames_riscv))
8558 name = dwarf_regnames_riscv [regno];
8559 else if (regno >= 4096 && regno <= 8191)
8560 {
8561 /* This might be a CSR, these live in a sparse number space from 4096
8562 to 8191 These numbers are defined in the RISC-V ELF ABI
8563 document. */
8564 switch (regno)
8565 {
8566 #define DECLARE_CSR(NAME,VALUE,CLASS,DEFINE_VER,ABORT_VER) \
8567 case VALUE + 4096: name = #NAME; break;
8568 #include "opcode/riscv-opc.h"
8569 #undef DECLARE_CSR
8570
8571 default:
8572 {
8573 static char csr_name[10];
8574 snprintf (csr_name, sizeof (csr_name), "csr%d", (regno - 4096));
8575 name = csr_name;
8576 }
8577 break;
8578 }
8579 }
8580
8581 return name;
8582 }
8583
8584 static void
8585 init_dwarf_regnames_riscv (void)
8586 {
8587 dwarf_regnames = NULL;
8588 dwarf_regnames_count = 8192;
8589 dwarf_regnames_lookup_func = regname_internal_riscv;
8590 }
8591
8592 void
8593 init_dwarf_regnames_by_elf_machine_code (unsigned int e_machine)
8594 {
8595 dwarf_regnames_lookup_func = NULL;
8596 is_aarch64 = false;
8597
8598 switch (e_machine)
8599 {
8600 case EM_386:
8601 init_dwarf_regnames_i386 ();
8602 break;
8603
8604 case EM_IAMCU:
8605 init_dwarf_regnames_iamcu ();
8606 break;
8607
8608 case EM_X86_64:
8609 case EM_L1OM:
8610 case EM_K1OM:
8611 init_dwarf_regnames_x86_64 ();
8612 break;
8613
8614 case EM_AARCH64:
8615 init_dwarf_regnames_aarch64 ();
8616 break;
8617
8618 case EM_S390:
8619 init_dwarf_regnames_s390 ();
8620 break;
8621
8622 case EM_RISCV:
8623 init_dwarf_regnames_riscv ();
8624 break;
8625
8626 default:
8627 break;
8628 }
8629 }
8630
8631 /* Initialize the DWARF register name lookup state based on the
8632 architecture and specific machine type of a BFD. */
8633
8634 void
8635 init_dwarf_regnames_by_bfd_arch_and_mach (enum bfd_architecture arch,
8636 unsigned long mach)
8637 {
8638 dwarf_regnames_lookup_func = NULL;
8639 is_aarch64 = false;
8640
8641 switch (arch)
8642 {
8643 case bfd_arch_i386:
8644 switch (mach)
8645 {
8646 case bfd_mach_x86_64:
8647 case bfd_mach_x86_64_intel_syntax:
8648 case bfd_mach_x64_32:
8649 case bfd_mach_x64_32_intel_syntax:
8650 init_dwarf_regnames_x86_64 ();
8651 break;
8652
8653 default:
8654 init_dwarf_regnames_i386 ();
8655 break;
8656 }
8657 break;
8658
8659 case bfd_arch_iamcu:
8660 init_dwarf_regnames_iamcu ();
8661 break;
8662
8663 case bfd_arch_aarch64:
8664 init_dwarf_regnames_aarch64();
8665 break;
8666
8667 case bfd_arch_s390:
8668 init_dwarf_regnames_s390 ();
8669 break;
8670
8671 case bfd_arch_riscv:
8672 init_dwarf_regnames_riscv ();
8673 break;
8674
8675 default:
8676 break;
8677 }
8678 }
8679
8680 static const char *
8681 regname_internal_by_table_only (unsigned int regno)
8682 {
8683 if (dwarf_regnames != NULL
8684 && regno < dwarf_regnames_count
8685 && dwarf_regnames [regno] != NULL)
8686 return dwarf_regnames [regno];
8687
8688 return NULL;
8689 }
8690
8691 static const char *
8692 regname (unsigned int regno, int name_only_p)
8693 {
8694 static char reg[64];
8695
8696 const char *name = NULL;
8697
8698 if (dwarf_regnames_lookup_func != NULL)
8699 name = dwarf_regnames_lookup_func (regno);
8700
8701 if (name != NULL)
8702 {
8703 if (name_only_p)
8704 return name;
8705 snprintf (reg, sizeof (reg), "r%d (%s)", regno, name);
8706 }
8707 else
8708 snprintf (reg, sizeof (reg), "r%d", regno);
8709 return reg;
8710 }
8711
8712 static void
8713 frame_display_row (Frame_Chunk *fc, int *need_col_headers, unsigned int *max_regs)
8714 {
8715 unsigned int r;
8716 char tmp[100];
8717
8718 if (*max_regs != fc->ncols)
8719 *max_regs = fc->ncols;
8720
8721 if (*need_col_headers)
8722 {
8723 *need_col_headers = 0;
8724
8725 printf ("%-*s CFA ", eh_addr_size * 2, " LOC");
8726
8727 for (r = 0; r < *max_regs; r++)
8728 if (fc->col_type[r] != DW_CFA_unreferenced)
8729 {
8730 if (r == fc->ra)
8731 printf ("ra ");
8732 else
8733 printf ("%-5s ", regname (r, 1));
8734 }
8735
8736 printf ("\n");
8737 }
8738
8739 print_hex (fc->pc_begin, eh_addr_size);
8740 if (fc->cfa_exp)
8741 strcpy (tmp, "exp");
8742 else
8743 sprintf (tmp, "%s%+d", regname (fc->cfa_reg, 1), (int) fc->cfa_offset);
8744 printf ("%-8s ", tmp);
8745
8746 for (r = 0; r < fc->ncols; r++)
8747 {
8748 if (fc->col_type[r] != DW_CFA_unreferenced)
8749 {
8750 switch (fc->col_type[r])
8751 {
8752 case DW_CFA_undefined:
8753 strcpy (tmp, "u");
8754 break;
8755 case DW_CFA_same_value:
8756 strcpy (tmp, "s");
8757 break;
8758 case DW_CFA_offset:
8759 sprintf (tmp, "c%+d", fc->col_offset[r]);
8760 break;
8761 case DW_CFA_val_offset:
8762 sprintf (tmp, "v%+d", fc->col_offset[r]);
8763 break;
8764 case DW_CFA_register:
8765 sprintf (tmp, "%s", regname (fc->col_offset[r], 0));
8766 break;
8767 case DW_CFA_expression:
8768 strcpy (tmp, "exp");
8769 break;
8770 case DW_CFA_val_expression:
8771 strcpy (tmp, "vexp");
8772 break;
8773 default:
8774 strcpy (tmp, "n/a");
8775 break;
8776 }
8777 printf ("%-5s ", tmp);
8778 }
8779 }
8780 printf ("\n");
8781 }
8782
8783 #define GET(VAR, N) SAFE_BYTE_GET_AND_INC (VAR, start, N, end)
8784
8785 static unsigned char *
8786 read_cie (unsigned char *start, unsigned char *end,
8787 Frame_Chunk **p_cie, int *p_version,
8788 uint64_t *p_aug_len, unsigned char **p_aug)
8789 {
8790 int version;
8791 Frame_Chunk *fc;
8792 unsigned char *augmentation_data = NULL;
8793 uint64_t augmentation_data_len = 0;
8794
8795 * p_cie = NULL;
8796 /* PR 17512: file: 001-228113-0.004. */
8797 if (start >= end)
8798 return end;
8799
8800 fc = (Frame_Chunk *) xmalloc (sizeof (Frame_Chunk));
8801 memset (fc, 0, sizeof (Frame_Chunk));
8802
8803 fc->col_type = (short int *) xmalloc (sizeof (short int));
8804 fc->col_offset = (int *) xmalloc (sizeof (int));
8805
8806 version = *start++;
8807
8808 fc->augmentation = (char *) start;
8809 /* PR 17512: file: 001-228113-0.004.
8810 Skip past augmentation name, but avoid running off the end of the data. */
8811 while (start < end)
8812 if (* start ++ == '\0')
8813 break;
8814 if (start == end)
8815 {
8816 warn (_("No terminator for augmentation name\n"));
8817 goto fail;
8818 }
8819
8820 if (strcmp (fc->augmentation, "eh") == 0)
8821 {
8822 if (eh_addr_size > (size_t) (end - start))
8823 goto fail;
8824 start += eh_addr_size;
8825 }
8826
8827 if (version >= 4)
8828 {
8829 if (2 > (size_t) (end - start))
8830 goto fail;
8831 GET (fc->ptr_size, 1);
8832 if (fc->ptr_size < 1 || fc->ptr_size > 8)
8833 {
8834 warn (_("Invalid pointer size (%d) in CIE data\n"), fc->ptr_size);
8835 goto fail;
8836 }
8837
8838 GET (fc->segment_size, 1);
8839 /* PR 17512: file: e99d2804. */
8840 if (fc->segment_size > 8 || fc->segment_size + fc->ptr_size > 8)
8841 {
8842 warn (_("Invalid segment size (%d) in CIE data\n"), fc->segment_size);
8843 goto fail;
8844 }
8845
8846 eh_addr_size = fc->ptr_size;
8847 }
8848 else
8849 {
8850 fc->ptr_size = eh_addr_size;
8851 fc->segment_size = 0;
8852 }
8853
8854 READ_ULEB (fc->code_factor, start, end);
8855 READ_SLEB (fc->data_factor, start, end);
8856
8857 if (start >= end)
8858 goto fail;
8859
8860 if (version == 1)
8861 {
8862 GET (fc->ra, 1);
8863 }
8864 else
8865 {
8866 READ_ULEB (fc->ra, start, end);
8867 }
8868
8869 if (fc->augmentation[0] == 'z')
8870 {
8871 if (start >= end)
8872 goto fail;
8873 READ_ULEB (augmentation_data_len, start, end);
8874 augmentation_data = start;
8875 /* PR 17512: file: 11042-2589-0.004. */
8876 if (augmentation_data_len > (size_t) (end - start))
8877 {
8878 warn (_("Augmentation data too long: %#" PRIx64
8879 ", expected at most %#tx\n"),
8880 augmentation_data_len, end - start);
8881 goto fail;
8882 }
8883 start += augmentation_data_len;
8884 }
8885
8886 if (augmentation_data_len)
8887 {
8888 unsigned char *p;
8889 unsigned char *q;
8890 unsigned char *qend;
8891
8892 p = (unsigned char *) fc->augmentation + 1;
8893 q = augmentation_data;
8894 qend = q + augmentation_data_len;
8895
8896 while (p < end && q < qend)
8897 {
8898 if (*p == 'L')
8899 q++;
8900 else if (*p == 'P')
8901 q += 1 + size_of_encoded_value (*q);
8902 else if (*p == 'R')
8903 fc->fde_encoding = *q++;
8904 else if (*p == 'S')
8905 ;
8906 else if (*p == 'B')
8907 ;
8908 else
8909 break;
8910 p++;
8911 }
8912 /* Note - it is OK if this loop terminates with q < qend.
8913 Padding may have been inserted to align the end of the CIE. */
8914 }
8915
8916 *p_cie = fc;
8917 if (p_version)
8918 *p_version = version;
8919 if (p_aug_len)
8920 {
8921 *p_aug_len = augmentation_data_len;
8922 *p_aug = augmentation_data;
8923 }
8924 return start;
8925
8926 fail:
8927 free (fc->col_offset);
8928 free (fc->col_type);
8929 free (fc);
8930 return end;
8931 }
8932
8933 /* Prints out the contents on the DATA array formatted as unsigned bytes.
8934 If do_wide is not enabled, then formats the output to fit into 80 columns.
8935 PRINTED contains the number of characters already written to the current
8936 output line. */
8937
8938 static void
8939 display_data (size_t printed, const unsigned char *data, size_t len)
8940 {
8941 if (do_wide || len < ((80 - printed) / 3))
8942 for (printed = 0; printed < len; ++printed)
8943 printf (" %02x", data[printed]);
8944 else
8945 {
8946 for (printed = 0; printed < len; ++printed)
8947 {
8948 if (printed % (80 / 3) == 0)
8949 putchar ('\n');
8950 printf (" %02x", data[printed]);
8951 }
8952 }
8953 }
8954
8955 /* Prints out the contents on the augmentation data array.
8956 If do_wide is not enabled, then formats the output to fit into 80 columns. */
8957
8958 static void
8959 display_augmentation_data (const unsigned char * data, uint64_t len)
8960 {
8961 size_t i;
8962
8963 i = printf (_(" Augmentation data: "));
8964 display_data (i, data, len);
8965 }
8966
8967 static int
8968 display_debug_frames (struct dwarf_section *section,
8969 void *file ATTRIBUTE_UNUSED)
8970 {
8971 unsigned char *start = section->start;
8972 unsigned char *end = start + section->size;
8973 unsigned char *section_start = start;
8974 Frame_Chunk *chunks = NULL, *forward_refs = NULL;
8975 Frame_Chunk *remembered_state = NULL;
8976 Frame_Chunk *rs;
8977 bool is_eh = strcmp (section->name, ".eh_frame") == 0;
8978 unsigned int max_regs = 0;
8979 const char *bad_reg = _("bad register: ");
8980 unsigned int saved_eh_addr_size = eh_addr_size;
8981
8982 introduce (section, false);
8983
8984 while (start < end)
8985 {
8986 unsigned char *saved_start;
8987 unsigned char *block_end;
8988 uint64_t length;
8989 uint64_t cie_id;
8990 Frame_Chunk *fc;
8991 Frame_Chunk *cie;
8992 int need_col_headers = 1;
8993 unsigned char *augmentation_data = NULL;
8994 uint64_t augmentation_data_len = 0;
8995 unsigned int encoded_ptr_size = saved_eh_addr_size;
8996 unsigned int offset_size;
8997 bool all_nops;
8998 static Frame_Chunk fde_fc;
8999
9000 saved_start = start;
9001
9002 SAFE_BYTE_GET_AND_INC (length, start, 4, end);
9003
9004 if (length == 0)
9005 {
9006 printf ("\n%08tx ZERO terminator\n\n",
9007 saved_start - section_start);
9008 /* Skip any zero terminators that directly follow.
9009 A corrupt section size could have loaded a whole
9010 slew of zero filled memory bytes. eg
9011 PR 17512: file: 070-19381-0.004. */
9012 while (start < end && * start == 0)
9013 ++ start;
9014 continue;
9015 }
9016
9017 if (length == 0xffffffff)
9018 {
9019 SAFE_BYTE_GET_AND_INC (length, start, 8, end);
9020 offset_size = 8;
9021 }
9022 else
9023 offset_size = 4;
9024
9025 if (length > (size_t) (end - start))
9026 {
9027 warn ("Invalid length %#" PRIx64 " in FDE at %#tx\n",
9028 length, saved_start - section_start);
9029 block_end = end;
9030 }
9031 else
9032 block_end = start + length;
9033
9034 SAFE_BYTE_GET_AND_INC (cie_id, start, offset_size, block_end);
9035
9036 if (is_eh ? (cie_id == 0) : ((offset_size == 4 && cie_id == DW_CIE_ID)
9037 || (offset_size == 8 && cie_id == DW64_CIE_ID)))
9038 {
9039 int version;
9040 unsigned int mreg;
9041
9042 start = read_cie (start, block_end, &cie, &version,
9043 &augmentation_data_len, &augmentation_data);
9044 /* PR 17512: file: 027-135133-0.005. */
9045 if (cie == NULL)
9046 break;
9047
9048 fc = cie;
9049 fc->next = chunks;
9050 chunks = fc;
9051 fc->chunk_start = saved_start;
9052 mreg = max_regs > 0 ? max_regs - 1 : 0;
9053 if (mreg < fc->ra)
9054 mreg = fc->ra;
9055 if (frame_need_space (fc, mreg) < 0)
9056 break;
9057 if (fc->fde_encoding)
9058 encoded_ptr_size = size_of_encoded_value (fc->fde_encoding);
9059
9060 printf ("\n%08tx ", saved_start - section_start);
9061 print_hex (length, fc->ptr_size);
9062 print_hex (cie_id, offset_size);
9063
9064 if (do_debug_frames_interp)
9065 {
9066 printf ("CIE \"%s\" cf=%d df=%d ra=%d\n", fc->augmentation,
9067 fc->code_factor, fc->data_factor, fc->ra);
9068 }
9069 else
9070 {
9071 printf ("CIE\n");
9072 printf (" Version: %d\n", version);
9073 printf (" Augmentation: \"%s\"\n", fc->augmentation);
9074 if (version >= 4)
9075 {
9076 printf (" Pointer Size: %u\n", fc->ptr_size);
9077 printf (" Segment Size: %u\n", fc->segment_size);
9078 }
9079 printf (" Code alignment factor: %u\n", fc->code_factor);
9080 printf (" Data alignment factor: %d\n", fc->data_factor);
9081 printf (" Return address column: %d\n", fc->ra);
9082
9083 if (augmentation_data_len)
9084 display_augmentation_data (augmentation_data, augmentation_data_len);
9085
9086 putchar ('\n');
9087 }
9088 }
9089 else
9090 {
9091 unsigned char *look_for;
9092 unsigned long segment_selector;
9093 uint64_t cie_off;
9094
9095 cie_off = cie_id;
9096 if (is_eh)
9097 {
9098 uint64_t sign = (uint64_t) 1 << (offset_size * 8 - 1);
9099 cie_off = (cie_off ^ sign) - sign;
9100 cie_off = start - 4 - section_start - cie_off;
9101 }
9102
9103 look_for = section_start + cie_off;
9104 if (cie_off <= (size_t) (saved_start - section_start))
9105 {
9106 for (cie = chunks; cie ; cie = cie->next)
9107 if (cie->chunk_start == look_for)
9108 break;
9109 }
9110 else if (cie_off >= section->size)
9111 cie = NULL;
9112 else
9113 {
9114 for (cie = forward_refs; cie ; cie = cie->next)
9115 if (cie->chunk_start == look_for)
9116 break;
9117 if (!cie)
9118 {
9119 unsigned int off_size;
9120 unsigned char *cie_scan;
9121
9122 cie_scan = look_for;
9123 off_size = 4;
9124 SAFE_BYTE_GET_AND_INC (length, cie_scan, 4, end);
9125 if (length == 0xffffffff)
9126 {
9127 SAFE_BYTE_GET_AND_INC (length, cie_scan, 8, end);
9128 off_size = 8;
9129 }
9130 if (length != 0 && length <= (size_t) (end - cie_scan))
9131 {
9132 uint64_t c_id;
9133 unsigned char *cie_end = cie_scan + length;
9134
9135 SAFE_BYTE_GET_AND_INC (c_id, cie_scan, off_size,
9136 cie_end);
9137 if (is_eh
9138 ? c_id == 0
9139 : ((off_size == 4 && c_id == DW_CIE_ID)
9140 || (off_size == 8 && c_id == DW64_CIE_ID)))
9141 {
9142 int version;
9143 unsigned int mreg;
9144
9145 read_cie (cie_scan, cie_end, &cie, &version,
9146 &augmentation_data_len, &augmentation_data);
9147 /* PR 17512: file: 3450-2098-0.004. */
9148 if (cie == NULL)
9149 {
9150 warn (_("Failed to read CIE information\n"));
9151 break;
9152 }
9153 cie->next = forward_refs;
9154 forward_refs = cie;
9155 cie->chunk_start = look_for;
9156 mreg = max_regs > 0 ? max_regs - 1 : 0;
9157 if (mreg < cie->ra)
9158 mreg = cie->ra;
9159 if (frame_need_space (cie, mreg) < 0)
9160 {
9161 warn (_("Invalid max register\n"));
9162 break;
9163 }
9164 if (cie->fde_encoding)
9165 encoded_ptr_size
9166 = size_of_encoded_value (cie->fde_encoding);
9167 }
9168 }
9169 }
9170 }
9171
9172 fc = &fde_fc;
9173 memset (fc, 0, sizeof (Frame_Chunk));
9174
9175 if (!cie)
9176 {
9177 fc->ncols = 0;
9178 fc->col_type = (short int *) xmalloc (sizeof (short int));
9179 fc->col_offset = (int *) xmalloc (sizeof (int));
9180 if (frame_need_space (fc, max_regs > 0 ? max_regs - 1 : 0) < 0)
9181 {
9182 warn (_("Invalid max register\n"));
9183 break;
9184 }
9185 cie = fc;
9186 fc->augmentation = "";
9187 fc->fde_encoding = 0;
9188 fc->ptr_size = eh_addr_size;
9189 fc->segment_size = 0;
9190 }
9191 else
9192 {
9193 fc->ncols = cie->ncols;
9194 fc->col_type = (short int *) xcmalloc (fc->ncols, sizeof (short int));
9195 fc->col_offset = (int *) xcmalloc (fc->ncols, sizeof (int));
9196 memcpy (fc->col_type, cie->col_type, fc->ncols * sizeof (short int));
9197 memcpy (fc->col_offset, cie->col_offset, fc->ncols * sizeof (int));
9198 fc->augmentation = cie->augmentation;
9199 fc->ptr_size = cie->ptr_size;
9200 eh_addr_size = cie->ptr_size;
9201 fc->segment_size = cie->segment_size;
9202 fc->code_factor = cie->code_factor;
9203 fc->data_factor = cie->data_factor;
9204 fc->cfa_reg = cie->cfa_reg;
9205 fc->cfa_offset = cie->cfa_offset;
9206 fc->ra = cie->ra;
9207 if (frame_need_space (fc, max_regs > 0 ? max_regs - 1: 0) < 0)
9208 {
9209 warn (_("Invalid max register\n"));
9210 break;
9211 }
9212 fc->fde_encoding = cie->fde_encoding;
9213 }
9214
9215 if (fc->fde_encoding)
9216 encoded_ptr_size = size_of_encoded_value (fc->fde_encoding);
9217
9218 segment_selector = 0;
9219 if (fc->segment_size)
9220 {
9221 if (fc->segment_size > sizeof (segment_selector))
9222 {
9223 /* PR 17512: file: 9e196b3e. */
9224 warn (_("Probably corrupt segment size: %d - using 4 instead\n"), fc->segment_size);
9225 fc->segment_size = 4;
9226 }
9227 SAFE_BYTE_GET_AND_INC (segment_selector, start,
9228 fc->segment_size, block_end);
9229 }
9230
9231 fc->pc_begin = get_encoded_value (&start, fc->fde_encoding, section,
9232 block_end);
9233
9234 /* FIXME: It appears that sometimes the final pc_range value is
9235 encoded in less than encoded_ptr_size bytes. See the x86_64
9236 run of the "objcopy on compressed debug sections" test for an
9237 example of this. */
9238 SAFE_BYTE_GET_AND_INC (fc->pc_range, start, encoded_ptr_size,
9239 block_end);
9240
9241 if (cie->augmentation[0] == 'z')
9242 {
9243 READ_ULEB (augmentation_data_len, start, block_end);
9244 augmentation_data = start;
9245 /* PR 17512 file: 722-8446-0.004 and PR 22386. */
9246 if (augmentation_data_len > (size_t) (block_end - start))
9247 {
9248 warn (_("Augmentation data too long: %#" PRIx64 ", "
9249 "expected at most %#tx\n"),
9250 augmentation_data_len, block_end - start);
9251 start = block_end;
9252 augmentation_data = NULL;
9253 augmentation_data_len = 0;
9254 }
9255 start += augmentation_data_len;
9256 }
9257
9258 printf ("\n%08tx ", saved_start - section_start);
9259 print_hex (length, fc->ptr_size);
9260 print_hex (cie_id, offset_size);
9261 printf ("FDE ");
9262
9263 if (cie->chunk_start)
9264 printf ("cie=%08tx", cie->chunk_start - section_start);
9265 else
9266 /* Ideally translate "invalid " to 8 chars, trailing space
9267 is optional. */
9268 printf (_("cie=invalid "));
9269
9270 printf (" pc=");
9271 if (fc->segment_size)
9272 printf ("%04lx:", segment_selector);
9273
9274 print_hex_ns (fc->pc_begin, fc->ptr_size);
9275 printf ("..");
9276 print_hex_ns (fc->pc_begin + fc->pc_range, fc->ptr_size);
9277 printf ("\n");
9278
9279 if (! do_debug_frames_interp && augmentation_data_len)
9280 {
9281 display_augmentation_data (augmentation_data, augmentation_data_len);
9282 putchar ('\n');
9283 }
9284 }
9285
9286 /* At this point, fc is the current chunk, cie (if any) is set, and
9287 we're about to interpret instructions for the chunk. */
9288 /* ??? At present we need to do this always, since this sizes the
9289 fc->col_type and fc->col_offset arrays, which we write into always.
9290 We should probably split the interpreted and non-interpreted bits
9291 into two different routines, since there's so much that doesn't
9292 really overlap between them. */
9293 if (1 || do_debug_frames_interp)
9294 {
9295 /* Start by making a pass over the chunk, allocating storage
9296 and taking note of what registers are used. */
9297 unsigned char *tmp = start;
9298
9299 while (start < block_end)
9300 {
9301 unsigned int reg, op, opa;
9302 unsigned long temp;
9303
9304 op = *start++;
9305 opa = op & 0x3f;
9306 if (op & 0xc0)
9307 op &= 0xc0;
9308
9309 /* Warning: if you add any more cases to this switch, be
9310 sure to add them to the corresponding switch below. */
9311 reg = -1u;
9312 switch (op)
9313 {
9314 case DW_CFA_advance_loc:
9315 break;
9316 case DW_CFA_offset:
9317 SKIP_ULEB (start, block_end);
9318 reg = opa;
9319 break;
9320 case DW_CFA_restore:
9321 reg = opa;
9322 break;
9323 case DW_CFA_set_loc:
9324 if ((size_t) (block_end - start) < encoded_ptr_size)
9325 start = block_end;
9326 else
9327 start += encoded_ptr_size;
9328 break;
9329 case DW_CFA_advance_loc1:
9330 if ((size_t) (block_end - start) < 1)
9331 start = block_end;
9332 else
9333 start += 1;
9334 break;
9335 case DW_CFA_advance_loc2:
9336 if ((size_t) (block_end - start) < 2)
9337 start = block_end;
9338 else
9339 start += 2;
9340 break;
9341 case DW_CFA_advance_loc4:
9342 if ((size_t) (block_end - start) < 4)
9343 start = block_end;
9344 else
9345 start += 4;
9346 break;
9347 case DW_CFA_offset_extended:
9348 case DW_CFA_val_offset:
9349 READ_ULEB (reg, start, block_end);
9350 SKIP_ULEB (start, block_end);
9351 break;
9352 case DW_CFA_restore_extended:
9353 READ_ULEB (reg, start, block_end);
9354 break;
9355 case DW_CFA_undefined:
9356 READ_ULEB (reg, start, block_end);
9357 break;
9358 case DW_CFA_same_value:
9359 READ_ULEB (reg, start, block_end);
9360 break;
9361 case DW_CFA_register:
9362 READ_ULEB (reg, start, block_end);
9363 SKIP_ULEB (start, block_end);
9364 break;
9365 case DW_CFA_def_cfa:
9366 SKIP_ULEB (start, block_end);
9367 SKIP_ULEB (start, block_end);
9368 break;
9369 case DW_CFA_def_cfa_register:
9370 SKIP_ULEB (start, block_end);
9371 break;
9372 case DW_CFA_def_cfa_offset:
9373 SKIP_ULEB (start, block_end);
9374 break;
9375 case DW_CFA_def_cfa_expression:
9376 READ_ULEB (temp, start, block_end);
9377 if ((size_t) (block_end - start) < temp)
9378 start = block_end;
9379 else
9380 start += temp;
9381 break;
9382 case DW_CFA_expression:
9383 case DW_CFA_val_expression:
9384 READ_ULEB (reg, start, block_end);
9385 READ_ULEB (temp, start, block_end);
9386 if ((size_t) (block_end - start) < temp)
9387 start = block_end;
9388 else
9389 start += temp;
9390 break;
9391 case DW_CFA_offset_extended_sf:
9392 case DW_CFA_val_offset_sf:
9393 READ_ULEB (reg, start, block_end);
9394 SKIP_SLEB (start, block_end);
9395 break;
9396 case DW_CFA_def_cfa_sf:
9397 SKIP_ULEB (start, block_end);
9398 SKIP_SLEB (start, block_end);
9399 break;
9400 case DW_CFA_def_cfa_offset_sf:
9401 SKIP_SLEB (start, block_end);
9402 break;
9403 case DW_CFA_MIPS_advance_loc8:
9404 if ((size_t) (block_end - start) < 8)
9405 start = block_end;
9406 else
9407 start += 8;
9408 break;
9409 case DW_CFA_GNU_args_size:
9410 SKIP_ULEB (start, block_end);
9411 break;
9412 case DW_CFA_GNU_negative_offset_extended:
9413 READ_ULEB (reg, start, block_end);
9414 SKIP_ULEB (start, block_end);
9415 break;
9416 default:
9417 break;
9418 }
9419 if (reg != -1u && frame_need_space (fc, reg) >= 0)
9420 {
9421 /* Don't leave any reg as DW_CFA_unreferenced so
9422 that frame_display_row prints name of regs in
9423 header, and all referenced regs in each line. */
9424 if (reg >= cie->ncols
9425 || cie->col_type[reg] == DW_CFA_unreferenced)
9426 fc->col_type[reg] = DW_CFA_undefined;
9427 else
9428 fc->col_type[reg] = cie->col_type[reg];
9429 }
9430 }
9431 start = tmp;
9432 }
9433
9434 all_nops = true;
9435
9436 /* Now we know what registers are used, make a second pass over
9437 the chunk, this time actually printing out the info. */
9438
9439 while (start < block_end)
9440 {
9441 unsigned op, opa;
9442 unsigned long ul, roffs;
9443 /* Note: It is tempting to use an unsigned long for 'reg' but there
9444 are various functions, notably frame_space_needed() that assume that
9445 reg is an unsigned int. */
9446 unsigned int reg;
9447 int64_t l;
9448 uint64_t ofs;
9449 uint64_t vma;
9450 const char *reg_prefix = "";
9451
9452 op = *start++;
9453 opa = op & 0x3f;
9454 if (op & 0xc0)
9455 op &= 0xc0;
9456
9457 /* Make a note if something other than DW_CFA_nop happens. */
9458 if (op != DW_CFA_nop)
9459 all_nops = false;
9460
9461 /* Warning: if you add any more cases to this switch, be
9462 sure to add them to the corresponding switch above. */
9463 switch (op)
9464 {
9465 case DW_CFA_advance_loc:
9466 if (do_debug_frames_interp)
9467 frame_display_row (fc, &need_col_headers, &max_regs);
9468 else
9469 {
9470 printf (" DW_CFA_advance_loc: %d to ",
9471 opa * fc->code_factor);
9472 print_hex_ns (fc->pc_begin + opa * fc->code_factor,
9473 fc->ptr_size);
9474 printf ("\n");
9475 }
9476 fc->pc_begin += opa * fc->code_factor;
9477 break;
9478
9479 case DW_CFA_offset:
9480 READ_ULEB (roffs, start, block_end);
9481 if (opa >= fc->ncols)
9482 reg_prefix = bad_reg;
9483 if (! do_debug_frames_interp || *reg_prefix != '\0')
9484 printf (" DW_CFA_offset: %s%s at cfa%+ld\n",
9485 reg_prefix, regname (opa, 0),
9486 roffs * fc->data_factor);
9487 if (*reg_prefix == '\0')
9488 {
9489 fc->col_type[opa] = DW_CFA_offset;
9490 fc->col_offset[opa] = roffs * fc->data_factor;
9491 }
9492 break;
9493
9494 case DW_CFA_restore:
9495 if (opa >= fc->ncols)
9496 reg_prefix = bad_reg;
9497 if (! do_debug_frames_interp || *reg_prefix != '\0')
9498 printf (" DW_CFA_restore: %s%s\n",
9499 reg_prefix, regname (opa, 0));
9500 if (*reg_prefix != '\0')
9501 break;
9502
9503 if (opa >= cie->ncols
9504 || cie->col_type[opa] == DW_CFA_unreferenced)
9505 {
9506 fc->col_type[opa] = DW_CFA_undefined;
9507 fc->col_offset[opa] = 0;
9508 }
9509 else
9510 {
9511 fc->col_type[opa] = cie->col_type[opa];
9512 fc->col_offset[opa] = cie->col_offset[opa];
9513 }
9514 break;
9515
9516 case DW_CFA_set_loc:
9517 vma = get_encoded_value (&start, fc->fde_encoding, section,
9518 block_end);
9519 if (do_debug_frames_interp)
9520 frame_display_row (fc, &need_col_headers, &max_regs);
9521 else
9522 {
9523 printf (" DW_CFA_set_loc: ");
9524 print_hex_ns (vma, fc->ptr_size);
9525 printf ("\n");
9526 }
9527 fc->pc_begin = vma;
9528 break;
9529
9530 case DW_CFA_advance_loc1:
9531 SAFE_BYTE_GET_AND_INC (ofs, start, 1, block_end);
9532 if (do_debug_frames_interp)
9533 frame_display_row (fc, &need_col_headers, &max_regs);
9534 else
9535 {
9536 printf (" DW_CFA_advance_loc1: %" PRId64 " to ",
9537 ofs * fc->code_factor);
9538 print_hex_ns (fc->pc_begin + ofs * fc->code_factor,
9539 fc->ptr_size);
9540 printf ("\n");
9541 }
9542 fc->pc_begin += ofs * fc->code_factor;
9543 break;
9544
9545 case DW_CFA_advance_loc2:
9546 SAFE_BYTE_GET_AND_INC (ofs, start, 2, block_end);
9547 if (do_debug_frames_interp)
9548 frame_display_row (fc, &need_col_headers, &max_regs);
9549 else
9550 {
9551 printf (" DW_CFA_advance_loc2: %" PRId64 " to ",
9552 ofs * fc->code_factor);
9553 print_hex_ns (fc->pc_begin + ofs * fc->code_factor,
9554 fc->ptr_size);
9555 printf ("\n");
9556 }
9557 fc->pc_begin += ofs * fc->code_factor;
9558 break;
9559
9560 case DW_CFA_advance_loc4:
9561 SAFE_BYTE_GET_AND_INC (ofs, start, 4, block_end);
9562 if (do_debug_frames_interp)
9563 frame_display_row (fc, &need_col_headers, &max_regs);
9564 else
9565 {
9566 printf (" DW_CFA_advance_loc4: %" PRId64 " to ",
9567 ofs * fc->code_factor);
9568 print_hex_ns (fc->pc_begin + ofs * fc->code_factor,
9569 fc->ptr_size);
9570 printf ("\n");
9571 }
9572 fc->pc_begin += ofs * fc->code_factor;
9573 break;
9574
9575 case DW_CFA_offset_extended:
9576 READ_ULEB (reg, start, block_end);
9577 READ_ULEB (roffs, start, block_end);
9578 if (reg >= fc->ncols)
9579 reg_prefix = bad_reg;
9580 if (! do_debug_frames_interp || *reg_prefix != '\0')
9581 printf (" DW_CFA_offset_extended: %s%s at cfa%+ld\n",
9582 reg_prefix, regname (reg, 0),
9583 roffs * fc->data_factor);
9584 if (*reg_prefix == '\0')
9585 {
9586 fc->col_type[reg] = DW_CFA_offset;
9587 fc->col_offset[reg] = roffs * fc->data_factor;
9588 }
9589 break;
9590
9591 case DW_CFA_val_offset:
9592 READ_ULEB (reg, start, block_end);
9593 READ_ULEB (roffs, start, block_end);
9594 if (reg >= fc->ncols)
9595 reg_prefix = bad_reg;
9596 if (! do_debug_frames_interp || *reg_prefix != '\0')
9597 printf (" DW_CFA_val_offset: %s%s is cfa%+ld\n",
9598 reg_prefix, regname (reg, 0),
9599 roffs * fc->data_factor);
9600 if (*reg_prefix == '\0')
9601 {
9602 fc->col_type[reg] = DW_CFA_val_offset;
9603 fc->col_offset[reg] = roffs * fc->data_factor;
9604 }
9605 break;
9606
9607 case DW_CFA_restore_extended:
9608 READ_ULEB (reg, start, block_end);
9609 if (reg >= fc->ncols)
9610 reg_prefix = bad_reg;
9611 if (! do_debug_frames_interp || *reg_prefix != '\0')
9612 printf (" DW_CFA_restore_extended: %s%s\n",
9613 reg_prefix, regname (reg, 0));
9614 if (*reg_prefix != '\0')
9615 break;
9616
9617 if (reg >= cie->ncols
9618 || cie->col_type[reg] == DW_CFA_unreferenced)
9619 {
9620 fc->col_type[reg] = DW_CFA_undefined;
9621 fc->col_offset[reg] = 0;
9622 }
9623 else
9624 {
9625 fc->col_type[reg] = cie->col_type[reg];
9626 fc->col_offset[reg] = cie->col_offset[reg];
9627 }
9628 break;
9629
9630 case DW_CFA_undefined:
9631 READ_ULEB (reg, start, block_end);
9632 if (reg >= fc->ncols)
9633 reg_prefix = bad_reg;
9634 if (! do_debug_frames_interp || *reg_prefix != '\0')
9635 printf (" DW_CFA_undefined: %s%s\n",
9636 reg_prefix, regname (reg, 0));
9637 if (*reg_prefix == '\0')
9638 {
9639 fc->col_type[reg] = DW_CFA_undefined;
9640 fc->col_offset[reg] = 0;
9641 }
9642 break;
9643
9644 case DW_CFA_same_value:
9645 READ_ULEB (reg, start, block_end);
9646 if (reg >= fc->ncols)
9647 reg_prefix = bad_reg;
9648 if (! do_debug_frames_interp || *reg_prefix != '\0')
9649 printf (" DW_CFA_same_value: %s%s\n",
9650 reg_prefix, regname (reg, 0));
9651 if (*reg_prefix == '\0')
9652 {
9653 fc->col_type[reg] = DW_CFA_same_value;
9654 fc->col_offset[reg] = 0;
9655 }
9656 break;
9657
9658 case DW_CFA_register:
9659 READ_ULEB (reg, start, block_end);
9660 READ_ULEB (roffs, start, block_end);
9661 if (reg >= fc->ncols)
9662 reg_prefix = bad_reg;
9663 if (! do_debug_frames_interp || *reg_prefix != '\0')
9664 {
9665 printf (" DW_CFA_register: %s%s in ",
9666 reg_prefix, regname (reg, 0));
9667 puts (regname (roffs, 0));
9668 }
9669 if (*reg_prefix == '\0')
9670 {
9671 fc->col_type[reg] = DW_CFA_register;
9672 fc->col_offset[reg] = roffs;
9673 }
9674 break;
9675
9676 case DW_CFA_remember_state:
9677 if (! do_debug_frames_interp)
9678 printf (" DW_CFA_remember_state\n");
9679 rs = (Frame_Chunk *) xmalloc (sizeof (Frame_Chunk));
9680 rs->cfa_offset = fc->cfa_offset;
9681 rs->cfa_reg = fc->cfa_reg;
9682 rs->ra = fc->ra;
9683 rs->cfa_exp = fc->cfa_exp;
9684 rs->ncols = fc->ncols;
9685 rs->col_type = (short int *) xcmalloc (rs->ncols,
9686 sizeof (* rs->col_type));
9687 rs->col_offset = (int *) xcmalloc (rs->ncols, sizeof (* rs->col_offset));
9688 memcpy (rs->col_type, fc->col_type, rs->ncols * sizeof (* fc->col_type));
9689 memcpy (rs->col_offset, fc->col_offset, rs->ncols * sizeof (* fc->col_offset));
9690 rs->next = remembered_state;
9691 remembered_state = rs;
9692 break;
9693
9694 case DW_CFA_restore_state:
9695 if (! do_debug_frames_interp)
9696 printf (" DW_CFA_restore_state\n");
9697 rs = remembered_state;
9698 if (rs)
9699 {
9700 remembered_state = rs->next;
9701 fc->cfa_offset = rs->cfa_offset;
9702 fc->cfa_reg = rs->cfa_reg;
9703 fc->ra = rs->ra;
9704 fc->cfa_exp = rs->cfa_exp;
9705 if (frame_need_space (fc, rs->ncols - 1) < 0)
9706 {
9707 warn (_("Invalid column number in saved frame state\n"));
9708 fc->ncols = 0;
9709 break;
9710 }
9711 memcpy (fc->col_type, rs->col_type, rs->ncols * sizeof (* rs->col_type));
9712 memcpy (fc->col_offset, rs->col_offset,
9713 rs->ncols * sizeof (* rs->col_offset));
9714 free (rs->col_type);
9715 free (rs->col_offset);
9716 free (rs);
9717 }
9718 else if (do_debug_frames_interp)
9719 printf ("Mismatched DW_CFA_restore_state\n");
9720 break;
9721
9722 case DW_CFA_def_cfa:
9723 READ_ULEB (fc->cfa_reg, start, block_end);
9724 READ_ULEB (fc->cfa_offset, start, block_end);
9725 fc->cfa_exp = 0;
9726 if (! do_debug_frames_interp)
9727 printf (" DW_CFA_def_cfa: %s ofs %d\n",
9728 regname (fc->cfa_reg, 0), (int) fc->cfa_offset);
9729 break;
9730
9731 case DW_CFA_def_cfa_register:
9732 READ_ULEB (fc->cfa_reg, start, block_end);
9733 fc->cfa_exp = 0;
9734 if (! do_debug_frames_interp)
9735 printf (" DW_CFA_def_cfa_register: %s\n",
9736 regname (fc->cfa_reg, 0));
9737 break;
9738
9739 case DW_CFA_def_cfa_offset:
9740 READ_ULEB (fc->cfa_offset, start, block_end);
9741 if (! do_debug_frames_interp)
9742 printf (" DW_CFA_def_cfa_offset: %d\n", (int) fc->cfa_offset);
9743 break;
9744
9745 case DW_CFA_nop:
9746 if (! do_debug_frames_interp)
9747 printf (" DW_CFA_nop\n");
9748 break;
9749
9750 case DW_CFA_def_cfa_expression:
9751 READ_ULEB (ul, start, block_end);
9752 if (ul > (size_t) (block_end - start))
9753 {
9754 printf (_(" DW_CFA_def_cfa_expression: <corrupt len %lu>\n"), ul);
9755 break;
9756 }
9757 if (! do_debug_frames_interp)
9758 {
9759 printf (" DW_CFA_def_cfa_expression (");
9760 decode_location_expression (start, eh_addr_size, 0, -1,
9761 ul, 0, section);
9762 printf (")\n");
9763 }
9764 fc->cfa_exp = 1;
9765 start += ul;
9766 break;
9767
9768 case DW_CFA_expression:
9769 READ_ULEB (reg, start, block_end);
9770 READ_ULEB (ul, start, block_end);
9771 if (reg >= fc->ncols)
9772 reg_prefix = bad_reg;
9773 /* PR 17512: file: 069-133014-0.006. */
9774 /* PR 17512: file: 98c02eb4. */
9775 if (ul > (size_t) (block_end - start))
9776 {
9777 printf (_(" DW_CFA_expression: <corrupt len %lu>\n"), ul);
9778 break;
9779 }
9780 if (! do_debug_frames_interp || *reg_prefix != '\0')
9781 {
9782 printf (" DW_CFA_expression: %s%s (",
9783 reg_prefix, regname (reg, 0));
9784 decode_location_expression (start, eh_addr_size, 0, -1,
9785 ul, 0, section);
9786 printf (")\n");
9787 }
9788 if (*reg_prefix == '\0')
9789 fc->col_type[reg] = DW_CFA_expression;
9790 start += ul;
9791 break;
9792
9793 case DW_CFA_val_expression:
9794 READ_ULEB (reg, start, block_end);
9795 READ_ULEB (ul, start, block_end);
9796 if (reg >= fc->ncols)
9797 reg_prefix = bad_reg;
9798 if (ul > (size_t) (block_end - start))
9799 {
9800 printf (" DW_CFA_val_expression: <corrupt len %lu>\n", ul);
9801 break;
9802 }
9803 if (! do_debug_frames_interp || *reg_prefix != '\0')
9804 {
9805 printf (" DW_CFA_val_expression: %s%s (",
9806 reg_prefix, regname (reg, 0));
9807 decode_location_expression (start, eh_addr_size, 0, -1,
9808 ul, 0, section);
9809 printf (")\n");
9810 }
9811 if (*reg_prefix == '\0')
9812 fc->col_type[reg] = DW_CFA_val_expression;
9813 start += ul;
9814 break;
9815
9816 case DW_CFA_offset_extended_sf:
9817 READ_ULEB (reg, start, block_end);
9818 READ_SLEB (l, start, block_end);
9819 if (reg >= fc->ncols)
9820 reg_prefix = bad_reg;
9821 if (! do_debug_frames_interp || *reg_prefix != '\0')
9822 printf (" DW_CFA_offset_extended_sf: %s%s at cfa%+" PRId64 "\n",
9823 reg_prefix, regname (reg, 0),
9824 l * fc->data_factor);
9825 if (*reg_prefix == '\0')
9826 {
9827 fc->col_type[reg] = DW_CFA_offset;
9828 fc->col_offset[reg] = l * fc->data_factor;
9829 }
9830 break;
9831
9832 case DW_CFA_val_offset_sf:
9833 READ_ULEB (reg, start, block_end);
9834 READ_SLEB (l, start, block_end);
9835 if (reg >= fc->ncols)
9836 reg_prefix = bad_reg;
9837 if (! do_debug_frames_interp || *reg_prefix != '\0')
9838 printf (" DW_CFA_val_offset_sf: %s%s is cfa%+" PRId64 "\n",
9839 reg_prefix, regname (reg, 0),
9840 l * fc->data_factor);
9841 if (*reg_prefix == '\0')
9842 {
9843 fc->col_type[reg] = DW_CFA_val_offset;
9844 fc->col_offset[reg] = l * fc->data_factor;
9845 }
9846 break;
9847
9848 case DW_CFA_def_cfa_sf:
9849 READ_ULEB (fc->cfa_reg, start, block_end);
9850 READ_SLEB (l, start, block_end);
9851 l *= fc->data_factor;
9852 fc->cfa_offset = l;
9853 fc->cfa_exp = 0;
9854 if (! do_debug_frames_interp)
9855 printf (" DW_CFA_def_cfa_sf: %s ofs %" PRId64 "\n",
9856 regname (fc->cfa_reg, 0), l);
9857 break;
9858
9859 case DW_CFA_def_cfa_offset_sf:
9860 READ_SLEB (l, start, block_end);
9861 l *= fc->data_factor;
9862 fc->cfa_offset = l;
9863 if (! do_debug_frames_interp)
9864 printf (" DW_CFA_def_cfa_offset_sf: %" PRId64 "\n", l);
9865 break;
9866
9867 case DW_CFA_MIPS_advance_loc8:
9868 SAFE_BYTE_GET_AND_INC (ofs, start, 8, block_end);
9869 if (do_debug_frames_interp)
9870 frame_display_row (fc, &need_col_headers, &max_regs);
9871 else
9872 {
9873 printf (" DW_CFA_MIPS_advance_loc8: %" PRId64 " to ",
9874 ofs * fc->code_factor);
9875 print_hex_ns (fc->pc_begin + ofs * fc->code_factor,
9876 fc->ptr_size);
9877 printf ("\n");
9878 }
9879 fc->pc_begin += ofs * fc->code_factor;
9880 break;
9881
9882 case DW_CFA_GNU_window_save:
9883 if (! do_debug_frames_interp)
9884 printf (" %s\n", DW_CFA_GNU_window_save_name[is_aarch64]);
9885 break;
9886
9887 case DW_CFA_GNU_args_size:
9888 READ_ULEB (ul, start, block_end);
9889 if (! do_debug_frames_interp)
9890 printf (" DW_CFA_GNU_args_size: %ld\n", ul);
9891 break;
9892
9893 case DW_CFA_GNU_negative_offset_extended:
9894 READ_ULEB (reg, start, block_end);
9895 READ_SLEB (l, start, block_end);
9896 l = - l;
9897 if (reg >= fc->ncols)
9898 reg_prefix = bad_reg;
9899 if (! do_debug_frames_interp || *reg_prefix != '\0')
9900 printf (" DW_CFA_GNU_negative_offset_extended: %s%s "
9901 "at cfa%+" PRId64 "\n",
9902 reg_prefix, regname (reg, 0),
9903 l * fc->data_factor);
9904 if (*reg_prefix == '\0')
9905 {
9906 fc->col_type[reg] = DW_CFA_offset;
9907 fc->col_offset[reg] = l * fc->data_factor;
9908 }
9909 break;
9910
9911 default:
9912 if (op >= DW_CFA_lo_user && op <= DW_CFA_hi_user)
9913 printf (_(" DW_CFA_??? (User defined call frame op: %#x)\n"), op);
9914 else
9915 warn (_("Unsupported or unknown Dwarf Call Frame Instruction number: %#x\n"), op);
9916 start = block_end;
9917 }
9918 }
9919
9920 /* Interpret the CFA - as long as it is not completely full of NOPs. */
9921 if (do_debug_frames_interp && ! all_nops)
9922 frame_display_row (fc, &need_col_headers, &max_regs);
9923
9924 if (fde_fc.col_type != NULL)
9925 {
9926 free (fde_fc.col_type);
9927 fde_fc.col_type = NULL;
9928 }
9929 if (fde_fc.col_offset != NULL)
9930 {
9931 free (fde_fc.col_offset);
9932 fde_fc.col_offset = NULL;
9933 }
9934
9935 start = block_end;
9936 eh_addr_size = saved_eh_addr_size;
9937 }
9938
9939 printf ("\n");
9940
9941 while (remembered_state != NULL)
9942 {
9943 rs = remembered_state;
9944 remembered_state = rs->next;
9945 free (rs->col_type);
9946 free (rs->col_offset);
9947 rs->next = NULL; /* Paranoia. */
9948 free (rs);
9949 }
9950
9951 while (chunks != NULL)
9952 {
9953 rs = chunks;
9954 chunks = rs->next;
9955 free (rs->col_type);
9956 free (rs->col_offset);
9957 rs->next = NULL; /* Paranoia. */
9958 free (rs);
9959 }
9960
9961 while (forward_refs != NULL)
9962 {
9963 rs = forward_refs;
9964 forward_refs = rs->next;
9965 free (rs->col_type);
9966 free (rs->col_offset);
9967 rs->next = NULL; /* Paranoia. */
9968 free (rs);
9969 }
9970
9971 return 1;
9972 }
9973
9974 #undef GET
9975
9976 static int
9977 display_debug_names (struct dwarf_section *section, void *file)
9978 {
9979 unsigned char *hdrptr = section->start;
9980 uint64_t unit_length;
9981 unsigned char *unit_start;
9982 const unsigned char *const section_end = section->start + section->size;
9983 unsigned char *unit_end;
9984
9985 introduce (section, false);
9986
9987 load_debug_section_with_follow (str, file);
9988
9989 for (; hdrptr < section_end; hdrptr = unit_end)
9990 {
9991 unsigned int offset_size;
9992 uint16_t dwarf_version, padding;
9993 uint32_t comp_unit_count, local_type_unit_count, foreign_type_unit_count;
9994 uint64_t bucket_count, name_count, abbrev_table_size;
9995 uint32_t augmentation_string_size;
9996 unsigned int i;
9997 bool augmentation_printable;
9998 const char *augmentation_string;
9999 size_t total;
10000
10001 unit_start = hdrptr;
10002
10003 /* Get and check the length of the block. */
10004 SAFE_BYTE_GET_AND_INC (unit_length, hdrptr, 4, section_end);
10005
10006 if (unit_length == 0xffffffff)
10007 {
10008 /* This section is 64-bit DWARF. */
10009 SAFE_BYTE_GET_AND_INC (unit_length, hdrptr, 8, section_end);
10010 offset_size = 8;
10011 }
10012 else
10013 offset_size = 4;
10014
10015 if (unit_length > (size_t) (section_end - hdrptr)
10016 || unit_length < 2 + 2 + 4 * 7)
10017 {
10018 too_short:
10019 warn (_("Debug info is corrupted, %s header at %#tx"
10020 " has length %#" PRIx64 "\n"),
10021 section->name, unit_start - section->start, unit_length);
10022 return 0;
10023 }
10024 unit_end = hdrptr + unit_length;
10025
10026 /* Get and check the version number. */
10027 SAFE_BYTE_GET_AND_INC (dwarf_version, hdrptr, 2, unit_end);
10028 printf (_("Version %d\n"), (int) dwarf_version);
10029
10030 /* Prior versions did not exist, and future versions may not be
10031 backwards compatible. */
10032 if (dwarf_version != 5)
10033 {
10034 warn (_("Only DWARF version 5 .debug_names "
10035 "is currently supported.\n"));
10036 return 0;
10037 }
10038
10039 SAFE_BYTE_GET_AND_INC (padding, hdrptr, 2, unit_end);
10040 if (padding != 0)
10041 warn (_("Padding field of .debug_names must be 0 (found 0x%x)\n"),
10042 padding);
10043
10044 SAFE_BYTE_GET_AND_INC (comp_unit_count, hdrptr, 4, unit_end);
10045 if (comp_unit_count == 0)
10046 warn (_("Compilation unit count must be >= 1 in .debug_names\n"));
10047
10048 SAFE_BYTE_GET_AND_INC (local_type_unit_count, hdrptr, 4, unit_end);
10049 SAFE_BYTE_GET_AND_INC (foreign_type_unit_count, hdrptr, 4, unit_end);
10050 SAFE_BYTE_GET_AND_INC (bucket_count, hdrptr, 4, unit_end);
10051 SAFE_BYTE_GET_AND_INC (name_count, hdrptr, 4, unit_end);
10052 SAFE_BYTE_GET_AND_INC (abbrev_table_size, hdrptr, 4, unit_end);
10053
10054 SAFE_BYTE_GET_AND_INC (augmentation_string_size, hdrptr, 4, unit_end);
10055 if (augmentation_string_size % 4 != 0)
10056 {
10057 warn (_("Augmentation string length %u must be rounded up "
10058 "to a multiple of 4 in .debug_names.\n"),
10059 augmentation_string_size);
10060 augmentation_string_size += (-augmentation_string_size) & 3;
10061 }
10062 if (augmentation_string_size > (size_t) (unit_end - hdrptr))
10063 goto too_short;
10064
10065 printf (_("Augmentation string:"));
10066
10067 augmentation_printable = true;
10068 augmentation_string = (const char *) hdrptr;
10069
10070 for (i = 0; i < augmentation_string_size; i++)
10071 {
10072 unsigned char uc;
10073
10074 SAFE_BYTE_GET_AND_INC (uc, hdrptr, 1, unit_end);
10075 printf (" %02x", uc);
10076
10077 if (uc != 0 && !ISPRINT (uc))
10078 augmentation_printable = false;
10079 }
10080
10081 if (augmentation_printable)
10082 {
10083 printf (" (\"");
10084 for (i = 0;
10085 i < augmentation_string_size && augmentation_string[i];
10086 ++i)
10087 putchar (augmentation_string[i]);
10088 printf ("\")");
10089 }
10090 putchar ('\n');
10091
10092 printf (_("CU table:\n"));
10093 if (_mul_overflow (comp_unit_count, offset_size, &total)
10094 || total > (size_t) (unit_end - hdrptr))
10095 goto too_short;
10096 for (i = 0; i < comp_unit_count; i++)
10097 {
10098 uint64_t cu_offset;
10099
10100 SAFE_BYTE_GET_AND_INC (cu_offset, hdrptr, offset_size, unit_end);
10101 printf ("[%3u] %#" PRIx64 "\n", i, cu_offset);
10102 }
10103 putchar ('\n');
10104
10105 printf (_("TU table:\n"));
10106 if (_mul_overflow (local_type_unit_count, offset_size, &total)
10107 || total > (size_t) (unit_end - hdrptr))
10108 goto too_short;
10109 for (i = 0; i < local_type_unit_count; i++)
10110 {
10111 uint64_t tu_offset;
10112
10113 SAFE_BYTE_GET_AND_INC (tu_offset, hdrptr, offset_size, unit_end);
10114 printf ("[%3u] %#" PRIx64 "\n", i, tu_offset);
10115 }
10116 putchar ('\n');
10117
10118 printf (_("Foreign TU table:\n"));
10119 if (_mul_overflow (foreign_type_unit_count, 8, &total)
10120 || total > (size_t) (unit_end - hdrptr))
10121 goto too_short;
10122 for (i = 0; i < foreign_type_unit_count; i++)
10123 {
10124 uint64_t signature;
10125
10126 SAFE_BYTE_GET_AND_INC (signature, hdrptr, 8, unit_end);
10127 printf (_("[%3u] "), i);
10128 print_hex_ns (signature, 8);
10129 putchar ('\n');
10130 }
10131 putchar ('\n');
10132
10133 uint64_t xtra = (bucket_count * sizeof (uint32_t)
10134 + name_count * (sizeof (uint32_t) + 2 * offset_size)
10135 + abbrev_table_size);
10136 if (xtra > (size_t) (unit_end - hdrptr))
10137 {
10138 warn (_("Entry pool offset (%#" PRIx64 ") exceeds unit size %#tx "
10139 "for unit %#tx in the debug_names\n"),
10140 xtra, unit_end - unit_start, unit_start - section->start);
10141 return 0;
10142 }
10143 const uint32_t *const hash_table_buckets = (uint32_t *) hdrptr;
10144 hdrptr += bucket_count * sizeof (uint32_t);
10145 const uint32_t *const hash_table_hashes = (uint32_t *) hdrptr;
10146 hdrptr += name_count * sizeof (uint32_t);
10147 unsigned char *const name_table_string_offsets = hdrptr;
10148 hdrptr += name_count * offset_size;
10149 unsigned char *const name_table_entry_offsets = hdrptr;
10150 hdrptr += name_count * offset_size;
10151 unsigned char *const abbrev_table = hdrptr;
10152 hdrptr += abbrev_table_size;
10153 const unsigned char *const abbrev_table_end = hdrptr;
10154 unsigned char *const entry_pool = hdrptr;
10155
10156 size_t buckets_filled = 0;
10157 size_t bucketi;
10158 for (bucketi = 0; bucketi < bucket_count; bucketi++)
10159 {
10160 const uint32_t bucket = hash_table_buckets[bucketi];
10161
10162 if (bucket != 0)
10163 ++buckets_filled;
10164 }
10165 printf (ngettext ("Used %zu of %lu bucket.\n",
10166 "Used %zu of %lu buckets.\n",
10167 (unsigned long) bucket_count),
10168 buckets_filled, (unsigned long) bucket_count);
10169
10170 if (bucket_count != 0)
10171 {
10172 uint32_t hash_prev = 0;
10173 size_t hash_clash_count = 0;
10174 size_t longest_clash = 0;
10175 size_t this_length = 0;
10176 size_t hashi;
10177 for (hashi = 0; hashi < name_count; hashi++)
10178 {
10179 const uint32_t hash_this = hash_table_hashes[hashi];
10180
10181 if (hashi > 0)
10182 {
10183 if (hash_prev % bucket_count == hash_this % bucket_count)
10184 {
10185 ++hash_clash_count;
10186 ++this_length;
10187 longest_clash = MAX (longest_clash, this_length);
10188 }
10189 else
10190 this_length = 0;
10191 }
10192 hash_prev = hash_this;
10193 }
10194 printf (_("Out of %" PRIu64 " items there are %zu bucket clashes"
10195 " (longest of %zu entries).\n"),
10196 name_count, hash_clash_count, longest_clash);
10197
10198 if (name_count != buckets_filled + hash_clash_count)
10199 warn (_("The name_count (%" PRIu64 ")"
10200 " is not the same as the used bucket_count"
10201 " (%zu) + the hash clash count (%zu)"),
10202 name_count, buckets_filled, hash_clash_count);
10203 }
10204
10205 struct abbrev_lookup_entry
10206 {
10207 uint64_t abbrev_tag;
10208 unsigned char *abbrev_lookup_ptr;
10209 };
10210 struct abbrev_lookup_entry *abbrev_lookup = NULL;
10211 size_t abbrev_lookup_used = 0;
10212 size_t abbrev_lookup_allocated = 0;
10213
10214 unsigned char *abbrevptr = abbrev_table;
10215 for (;;)
10216 {
10217 uint64_t abbrev_tag;
10218
10219 READ_ULEB (abbrev_tag, abbrevptr, abbrev_table_end);
10220 if (abbrev_tag == 0)
10221 break;
10222 if (abbrev_lookup_used == abbrev_lookup_allocated)
10223 {
10224 abbrev_lookup_allocated = MAX (0x100,
10225 abbrev_lookup_allocated * 2);
10226 abbrev_lookup = xrealloc (abbrev_lookup,
10227 (abbrev_lookup_allocated
10228 * sizeof (*abbrev_lookup)));
10229 }
10230 assert (abbrev_lookup_used < abbrev_lookup_allocated);
10231 struct abbrev_lookup_entry *entry;
10232 for (entry = abbrev_lookup;
10233 entry < abbrev_lookup + abbrev_lookup_used;
10234 entry++)
10235 if (entry->abbrev_tag == abbrev_tag)
10236 {
10237 warn (_("Duplicate abbreviation tag %" PRIu64
10238 " in unit %#tx in the debug_names section\n"),
10239 abbrev_tag, unit_start - section->start);
10240 break;
10241 }
10242 entry = &abbrev_lookup[abbrev_lookup_used++];
10243 entry->abbrev_tag = abbrev_tag;
10244 entry->abbrev_lookup_ptr = abbrevptr;
10245
10246 /* Skip DWARF tag. */
10247 SKIP_ULEB (abbrevptr, abbrev_table_end);
10248 for (;;)
10249 {
10250 uint64_t xindex, form;
10251
10252 READ_ULEB (xindex, abbrevptr, abbrev_table_end);
10253 READ_ULEB (form, abbrevptr, abbrev_table_end);
10254 if (xindex == 0 && form == 0)
10255 break;
10256 }
10257 }
10258
10259 printf (_("\nSymbol table:\n"));
10260 uint32_t namei;
10261 for (namei = 0; namei < name_count; ++namei)
10262 {
10263 uint64_t string_offset, entry_offset;
10264 unsigned char *p;
10265
10266 p = name_table_string_offsets + namei * offset_size;
10267 SAFE_BYTE_GET (string_offset, p, offset_size, unit_end);
10268 p = name_table_entry_offsets + namei * offset_size;
10269 SAFE_BYTE_GET (entry_offset, p, offset_size, unit_end);
10270
10271 printf ("[%3u] #%08x %s:", namei, hash_table_hashes[namei],
10272 fetch_indirect_string (string_offset));
10273
10274 unsigned char *entryptr = entry_pool + entry_offset;
10275
10276 /* We need to scan first whether there is a single or multiple
10277 entries. TAGNO is -2 for the first entry, it is -1 for the
10278 initial tag read of the second entry, then it becomes 0 for the
10279 first entry for real printing etc. */
10280 int tagno = -2;
10281 /* Initialize it due to a false compiler warning. */
10282 uint64_t second_abbrev_tag = -1;
10283 for (;;)
10284 {
10285 uint64_t abbrev_tag;
10286 uint64_t dwarf_tag;
10287 const struct abbrev_lookup_entry *entry;
10288
10289 READ_ULEB (abbrev_tag, entryptr, unit_end);
10290 if (tagno == -1)
10291 {
10292 second_abbrev_tag = abbrev_tag;
10293 tagno = 0;
10294 entryptr = entry_pool + entry_offset;
10295 continue;
10296 }
10297 if (abbrev_tag == 0)
10298 break;
10299 if (tagno >= 0)
10300 printf ("%s<%" PRIu64 ">",
10301 (tagno == 0 && second_abbrev_tag == 0 ? " " : "\n\t"),
10302 abbrev_tag);
10303
10304 for (entry = abbrev_lookup;
10305 entry < abbrev_lookup + abbrev_lookup_used;
10306 entry++)
10307 if (entry->abbrev_tag == abbrev_tag)
10308 break;
10309 if (entry >= abbrev_lookup + abbrev_lookup_used)
10310 {
10311 warn (_("Undefined abbreviation tag %" PRId64
10312 " in unit %#tx in the debug_names section\n"),
10313 abbrev_tag,
10314 unit_start - section->start);
10315 break;
10316 }
10317 abbrevptr = entry->abbrev_lookup_ptr;
10318 READ_ULEB (dwarf_tag, abbrevptr, abbrev_table_end);
10319 if (tagno >= 0)
10320 printf (" %s", get_TAG_name (dwarf_tag));
10321 for (;;)
10322 {
10323 uint64_t xindex, form;
10324
10325 READ_ULEB (xindex, abbrevptr, abbrev_table_end);
10326 READ_ULEB (form, abbrevptr, abbrev_table_end);
10327 if (xindex == 0 && form == 0)
10328 break;
10329
10330 if (tagno >= 0)
10331 printf (" %s", get_IDX_name (xindex));
10332 entryptr = read_and_display_attr_value (0, form, 0,
10333 unit_start, entryptr, unit_end,
10334 0, 0, offset_size,
10335 dwarf_version, NULL,
10336 (tagno < 0), section,
10337 NULL, '=', -1);
10338 }
10339 ++tagno;
10340 }
10341 if (tagno <= 0)
10342 printf (_(" <no entries>"));
10343 putchar ('\n');
10344 }
10345
10346 free (abbrev_lookup);
10347 }
10348
10349 return 1;
10350 }
10351
10352 static int
10353 display_debug_links (struct dwarf_section * section,
10354 void * file ATTRIBUTE_UNUSED)
10355 {
10356 const unsigned char * filename;
10357 unsigned int filelen;
10358
10359 introduce (section, false);
10360
10361 /* The .gnu_debuglink section is formatted as:
10362 (c-string) Filename.
10363 (padding) If needed to reach a 4 byte boundary.
10364 (uint32_t) CRC32 value.
10365
10366 The .gun_debugaltlink section is formatted as:
10367 (c-string) Filename.
10368 (binary) Build-ID. */
10369
10370 filename = section->start;
10371 filelen = strnlen ((const char *) filename, section->size);
10372 if (filelen == section->size)
10373 {
10374 warn (_("The debuglink filename is corrupt/missing\n"));
10375 return 0;
10376 }
10377
10378 printf (_(" Separate debug info file: %s\n"), filename);
10379
10380 if (startswith (section->name, ".gnu_debuglink"))
10381 {
10382 unsigned int crc32;
10383 unsigned int crc_offset;
10384
10385 crc_offset = filelen + 1;
10386 crc_offset = (crc_offset + 3) & ~3;
10387 if (crc_offset + 4 > section->size)
10388 {
10389 warn (_("CRC offset missing/truncated\n"));
10390 return 0;
10391 }
10392
10393 crc32 = byte_get (filename + crc_offset, 4);
10394
10395 printf (_(" CRC value: %#x\n"), crc32);
10396
10397 if (crc_offset + 4 < section->size)
10398 {
10399 warn (_("There are %#" PRIx64
10400 " extraneous bytes at the end of the section\n"),
10401 section->size - (crc_offset + 4));
10402 return 0;
10403 }
10404 }
10405 else /* startswith (section->name, ".gnu_debugaltlink") */
10406 {
10407 const unsigned char *build_id = section->start + filelen + 1;
10408 size_t build_id_len = section->size - (filelen + 1);
10409 size_t printed;
10410
10411 /* FIXME: Should we support smaller build-id notes ? */
10412 if (build_id_len < 0x14)
10413 {
10414 warn (_("Build-ID is too short (%#zx bytes)\n"), build_id_len);
10415 return 0;
10416 }
10417
10418 printed = printf (_(" Build-ID (%#zx bytes):"), build_id_len);
10419 display_data (printed, build_id, build_id_len);
10420 putchar ('\n');
10421 }
10422
10423 putchar ('\n');
10424 return 1;
10425 }
10426
10427 static int
10428 display_gdb_index (struct dwarf_section *section,
10429 void *file ATTRIBUTE_UNUSED)
10430 {
10431 unsigned char *start = section->start;
10432 uint32_t version;
10433 uint32_t cu_list_offset, tu_list_offset;
10434 uint32_t address_table_offset, symbol_table_offset, constant_pool_offset;
10435 unsigned int cu_list_elements, tu_list_elements;
10436 unsigned int address_table_elements, symbol_table_slots;
10437 unsigned char *cu_list, *tu_list;
10438 unsigned char *address_table, *symbol_table, *constant_pool;
10439 unsigned int i;
10440
10441 /* The documentation for the format of this file is in gdb/dwarf2read.c. */
10442
10443 introduce (section, false);
10444
10445 if (section->size < 6 * sizeof (uint32_t))
10446 {
10447 warn (_("Truncated header in the %s section.\n"), section->name);
10448 return 0;
10449 }
10450
10451 version = byte_get_little_endian (start, 4);
10452 printf (_("Version %lu\n"), (unsigned long) version);
10453
10454 /* Prior versions are obsolete, and future versions may not be
10455 backwards compatible. */
10456 if (version < 3 || version > 8)
10457 {
10458 warn (_("Unsupported version %lu.\n"), (unsigned long) version);
10459 return 0;
10460 }
10461 if (version < 4)
10462 warn (_("The address table data in version 3 may be wrong.\n"));
10463 if (version < 5)
10464 warn (_("Version 4 does not support case insensitive lookups.\n"));
10465 if (version < 6)
10466 warn (_("Version 5 does not include inlined functions.\n"));
10467 if (version < 7)
10468 warn (_("Version 6 does not include symbol attributes.\n"));
10469 /* Version 7 indices generated by Gold have bad type unit references,
10470 PR binutils/15021. But we don't know if the index was generated by
10471 Gold or not, so to avoid worrying users with gdb-generated indices
10472 we say nothing for version 7 here. */
10473
10474 cu_list_offset = byte_get_little_endian (start + 4, 4);
10475 tu_list_offset = byte_get_little_endian (start + 8, 4);
10476 address_table_offset = byte_get_little_endian (start + 12, 4);
10477 symbol_table_offset = byte_get_little_endian (start + 16, 4);
10478 constant_pool_offset = byte_get_little_endian (start + 20, 4);
10479
10480 if (cu_list_offset > section->size
10481 || tu_list_offset > section->size
10482 || address_table_offset > section->size
10483 || symbol_table_offset > section->size
10484 || constant_pool_offset > section->size
10485 || tu_list_offset < cu_list_offset
10486 || address_table_offset < tu_list_offset
10487 || symbol_table_offset < address_table_offset
10488 || constant_pool_offset < symbol_table_offset)
10489 {
10490 warn (_("Corrupt header in the %s section.\n"), section->name);
10491 return 0;
10492 }
10493
10494 cu_list_elements = (tu_list_offset - cu_list_offset) / 16;
10495 tu_list_elements = (address_table_offset - tu_list_offset) / 24;
10496 address_table_elements = (symbol_table_offset - address_table_offset) / 20;
10497 symbol_table_slots = (constant_pool_offset - symbol_table_offset) / 8;
10498
10499 cu_list = start + cu_list_offset;
10500 tu_list = start + tu_list_offset;
10501 address_table = start + address_table_offset;
10502 symbol_table = start + symbol_table_offset;
10503 constant_pool = start + constant_pool_offset;
10504
10505 printf (_("\nCU table:\n"));
10506 for (i = 0; i < cu_list_elements; i++)
10507 {
10508 uint64_t cu_offset = byte_get_little_endian (cu_list + i * 16, 8);
10509 uint64_t cu_length = byte_get_little_endian (cu_list + i * 16 + 8, 8);
10510
10511 printf ("[%3u] %#" PRIx64 " - %#" PRIx64 "\n",
10512 i, cu_offset, cu_offset + cu_length - 1);
10513 }
10514
10515 printf (_("\nTU table:\n"));
10516 for (i = 0; i < tu_list_elements; i++)
10517 {
10518 uint64_t tu_offset = byte_get_little_endian (tu_list + i * 24, 8);
10519 uint64_t type_offset = byte_get_little_endian (tu_list + i * 24 + 8, 8);
10520 uint64_t signature = byte_get_little_endian (tu_list + i * 24 + 16, 8);
10521
10522 printf ("[%3u] %#" PRIx64 " %#" PRIx64 " ",
10523 i, tu_offset, type_offset);
10524 print_hex_ns (signature, 8);
10525 printf ("\n");
10526 }
10527
10528 printf (_("\nAddress table:\n"));
10529 for (i = 0; i < address_table_elements; i++)
10530 {
10531 uint64_t low = byte_get_little_endian (address_table + i * 20, 8);
10532 uint64_t high = byte_get_little_endian (address_table + i * 20 + 8, 8);
10533 uint32_t cu_index = byte_get_little_endian (address_table + i + 20 + 16, 4);
10534
10535 print_hex (low, 8);
10536 print_hex (high, 8);
10537 printf ("%" PRIu32 "\n", cu_index);
10538 }
10539
10540 printf (_("\nSymbol table:\n"));
10541 for (i = 0; i < symbol_table_slots; ++i)
10542 {
10543 uint32_t name_offset = byte_get_little_endian (symbol_table + i * 8, 4);
10544 uint32_t cu_vector_offset = byte_get_little_endian (symbol_table + i * 8 + 4, 4);
10545 uint32_t num_cus, cu;
10546
10547 if (name_offset != 0
10548 || cu_vector_offset != 0)
10549 {
10550 unsigned int j;
10551
10552 /* PR 17531: file: 5b7b07ad. */
10553 if (name_offset >= section->size - constant_pool_offset)
10554 {
10555 printf (_("[%3u] <corrupt offset: %x>"), i, name_offset);
10556 warn (_("Corrupt name offset of 0x%x found for symbol table slot %d\n"),
10557 name_offset, i);
10558 }
10559 else
10560 printf ("[%3u] %.*s:", i,
10561 (int) (section->size - (constant_pool_offset + name_offset)),
10562 constant_pool + name_offset);
10563
10564 if (section->size - constant_pool_offset < 4
10565 || cu_vector_offset > section->size - constant_pool_offset - 4)
10566 {
10567 printf (_("<invalid CU vector offset: %x>\n"), cu_vector_offset);
10568 warn (_("Corrupt CU vector offset of 0x%x found for symbol table slot %d\n"),
10569 cu_vector_offset, i);
10570 continue;
10571 }
10572
10573 num_cus = byte_get_little_endian (constant_pool + cu_vector_offset, 4);
10574
10575 if ((uint64_t) num_cus * 4 > section->size - (constant_pool_offset
10576 + cu_vector_offset + 4))
10577 {
10578 printf ("<invalid number of CUs: %d>\n", num_cus);
10579 warn (_("Invalid number of CUs (0x%x) for symbol table slot %d\n"),
10580 num_cus, i);
10581 continue;
10582 }
10583
10584 if (num_cus > 1)
10585 printf ("\n");
10586
10587 for (j = 0; j < num_cus; ++j)
10588 {
10589 int is_static;
10590 gdb_index_symbol_kind kind;
10591
10592 cu = byte_get_little_endian (constant_pool + cu_vector_offset + 4 + j * 4, 4);
10593 is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu);
10594 kind = GDB_INDEX_SYMBOL_KIND_VALUE (cu);
10595 cu = GDB_INDEX_CU_VALUE (cu);
10596 /* Convert to TU number if it's for a type unit. */
10597 if (cu >= cu_list_elements)
10598 printf ("%cT%lu", num_cus > 1 ? '\t' : ' ',
10599 (unsigned long) cu - cu_list_elements);
10600 else
10601 printf ("%c%lu", num_cus > 1 ? '\t' : ' ', (unsigned long) cu);
10602
10603 printf (" [%s, %s]",
10604 is_static ? _("static") : _("global"),
10605 get_gdb_index_symbol_kind_name (kind));
10606 if (num_cus > 1)
10607 printf ("\n");
10608 }
10609 if (num_cus <= 1)
10610 printf ("\n");
10611 }
10612 }
10613
10614 return 1;
10615 }
10616
10617 /* Pre-allocate enough space for the CU/TU sets needed. */
10618
10619 static void
10620 prealloc_cu_tu_list (unsigned int nshndx)
10621 {
10622 if (shndx_pool == NULL)
10623 {
10624 shndx_pool_size = nshndx;
10625 shndx_pool_used = 0;
10626 shndx_pool = (unsigned int *) xcmalloc (shndx_pool_size,
10627 sizeof (unsigned int));
10628 }
10629 else
10630 {
10631 shndx_pool_size = shndx_pool_used + nshndx;
10632 shndx_pool = (unsigned int *) xcrealloc (shndx_pool, shndx_pool_size,
10633 sizeof (unsigned int));
10634 }
10635 }
10636
10637 static void
10638 add_shndx_to_cu_tu_entry (unsigned int shndx)
10639 {
10640 if (shndx_pool_used >= shndx_pool_size)
10641 {
10642 error (_("Internal error: out of space in the shndx pool.\n"));
10643 return;
10644 }
10645 shndx_pool [shndx_pool_used++] = shndx;
10646 }
10647
10648 static void
10649 end_cu_tu_entry (void)
10650 {
10651 if (shndx_pool_used >= shndx_pool_size)
10652 {
10653 error (_("Internal error: out of space in the shndx pool.\n"));
10654 return;
10655 }
10656 shndx_pool [shndx_pool_used++] = 0;
10657 }
10658
10659 /* Return the short name of a DWARF section given by a DW_SECT enumerator. */
10660
10661 static const char *
10662 get_DW_SECT_short_name (unsigned int dw_sect)
10663 {
10664 static char buf[16];
10665
10666 switch (dw_sect)
10667 {
10668 case DW_SECT_INFO:
10669 return "info";
10670 case DW_SECT_TYPES:
10671 return "types";
10672 case DW_SECT_ABBREV:
10673 return "abbrev";
10674 case DW_SECT_LINE:
10675 return "line";
10676 case DW_SECT_LOC:
10677 return "loc";
10678 case DW_SECT_STR_OFFSETS:
10679 return "str_off";
10680 case DW_SECT_MACINFO:
10681 return "macinfo";
10682 case DW_SECT_MACRO:
10683 return "macro";
10684 default:
10685 break;
10686 }
10687
10688 snprintf (buf, sizeof (buf), "%d", dw_sect);
10689 return buf;
10690 }
10691
10692 /* Process a CU or TU index. If DO_DISPLAY is true, print the contents.
10693 These sections are extensions for Fission.
10694 See http://gcc.gnu.org/wiki/DebugFissionDWP. */
10695
10696 static int
10697 process_cu_tu_index (struct dwarf_section *section, int do_display)
10698 {
10699 unsigned char *phdr = section->start;
10700 unsigned char *limit = phdr + section->size;
10701 unsigned char *phash;
10702 unsigned char *pindex;
10703 unsigned char *ppool;
10704 unsigned int version;
10705 unsigned int ncols = 0;
10706 unsigned int nused;
10707 unsigned int nslots;
10708 unsigned int i;
10709 unsigned int j;
10710 uint64_t signature;
10711 size_t total;
10712
10713 /* PR 17512: file: 002-168123-0.004. */
10714 if (phdr == NULL)
10715 {
10716 warn (_("Section %s is empty\n"), section->name);
10717 return 0;
10718 }
10719 /* PR 17512: file: 002-376-0.004. */
10720 if (section->size < 24)
10721 {
10722 warn (_("Section %s is too small to contain a CU/TU header\n"),
10723 section->name);
10724 return 0;
10725 }
10726
10727 phash = phdr;
10728 SAFE_BYTE_GET_AND_INC (version, phash, 4, limit);
10729 if (version >= 2)
10730 SAFE_BYTE_GET_AND_INC (ncols, phash, 4, limit);
10731 SAFE_BYTE_GET_AND_INC (nused, phash, 4, limit);
10732 SAFE_BYTE_GET_AND_INC (nslots, phash, 4, limit);
10733
10734 pindex = phash + (size_t) nslots * 8;
10735 ppool = pindex + (size_t) nslots * 4;
10736
10737 if (do_display)
10738 {
10739 introduce (section, false);
10740
10741 printf (_(" Version: %u\n"), version);
10742 if (version >= 2)
10743 printf (_(" Number of columns: %u\n"), ncols);
10744 printf (_(" Number of used entries: %u\n"), nused);
10745 printf (_(" Number of slots: %u\n\n"), nslots);
10746 }
10747
10748 /* PR 17531: file: 45d69832. */
10749 if (_mul_overflow ((size_t) nslots, 12, &total)
10750 || total > (size_t) (limit - phash))
10751 {
10752 warn (ngettext ("Section %s is too small for %u slot\n",
10753 "Section %s is too small for %u slots\n",
10754 nslots),
10755 section->name, nslots);
10756 return 0;
10757 }
10758
10759 if (version == 1)
10760 {
10761 if (!do_display)
10762 prealloc_cu_tu_list ((limit - ppool) / 4);
10763 for (i = 0; i < nslots; i++)
10764 {
10765 unsigned char *shndx_list;
10766 unsigned int shndx;
10767
10768 SAFE_BYTE_GET (signature, phash, 8, limit);
10769 if (signature != 0)
10770 {
10771 SAFE_BYTE_GET (j, pindex, 4, limit);
10772 shndx_list = ppool + j * 4;
10773 /* PR 17531: file: 705e010d. */
10774 if (shndx_list < ppool)
10775 {
10776 warn (_("Section index pool located before start of section\n"));
10777 return 0;
10778 }
10779
10780 if (do_display)
10781 printf (_(" [%3d] Signature: %#" PRIx64 " Sections: "),
10782 i, signature);
10783 for (;;)
10784 {
10785 if (shndx_list >= limit)
10786 {
10787 warn (_("Section %s too small for shndx pool\n"),
10788 section->name);
10789 return 0;
10790 }
10791 SAFE_BYTE_GET (shndx, shndx_list, 4, limit);
10792 if (shndx == 0)
10793 break;
10794 if (do_display)
10795 printf (" %d", shndx);
10796 else
10797 add_shndx_to_cu_tu_entry (shndx);
10798 shndx_list += 4;
10799 }
10800 if (do_display)
10801 printf ("\n");
10802 else
10803 end_cu_tu_entry ();
10804 }
10805 phash += 8;
10806 pindex += 4;
10807 }
10808 }
10809 else if (version == 2)
10810 {
10811 unsigned int val;
10812 unsigned int dw_sect;
10813 unsigned char *ph = phash;
10814 unsigned char *pi = pindex;
10815 unsigned char *poffsets = ppool + (size_t) ncols * 4;
10816 unsigned char *psizes = poffsets + (size_t) nused * ncols * 4;
10817 bool is_tu_index;
10818 struct cu_tu_set *this_set = NULL;
10819 unsigned int row;
10820 unsigned char *prow;
10821 size_t temp;
10822
10823 is_tu_index = strcmp (section->name, ".debug_tu_index") == 0;
10824
10825 /* PR 17531: file: 0dd159bf.
10826 Check for integer overflow (can occur when size_t is 32-bit)
10827 with overlarge ncols or nused values. */
10828 if (nused == -1u
10829 || _mul_overflow ((size_t) ncols, 4, &temp)
10830 || _mul_overflow ((size_t) nused + 1, temp, &total)
10831 || total > (size_t) (limit - ppool))
10832 {
10833 warn (_("Section %s too small for offset and size tables\n"),
10834 section->name);
10835 return 0;
10836 }
10837
10838 if (do_display)
10839 {
10840 printf (_(" Offset table\n"));
10841 printf (" slot %-16s ",
10842 is_tu_index ? _("signature") : _("dwo_id"));
10843 }
10844 else
10845 {
10846 if (is_tu_index)
10847 {
10848 tu_count = nused;
10849 tu_sets = xcalloc2 (nused, sizeof (struct cu_tu_set));
10850 this_set = tu_sets;
10851 }
10852 else
10853 {
10854 cu_count = nused;
10855 cu_sets = xcalloc2 (nused, sizeof (struct cu_tu_set));
10856 this_set = cu_sets;
10857 }
10858 }
10859
10860 if (do_display)
10861 {
10862 for (j = 0; j < ncols; j++)
10863 {
10864 unsigned char *p = ppool + j * 4;
10865 SAFE_BYTE_GET (dw_sect, p, 4, limit);
10866 printf (" %8s", get_DW_SECT_short_name (dw_sect));
10867 }
10868 printf ("\n");
10869 }
10870
10871 for (i = 0; i < nslots; i++)
10872 {
10873 SAFE_BYTE_GET (signature, ph, 8, limit);
10874
10875 SAFE_BYTE_GET (row, pi, 4, limit);
10876 if (row != 0)
10877 {
10878 /* PR 17531: file: a05f6ab3. */
10879 if (row > nused)
10880 {
10881 warn (_("Row index (%u) is larger than number of used entries (%u)\n"),
10882 row, nused);
10883 return 0;
10884 }
10885
10886 if (!do_display)
10887 {
10888 size_t num_copy = sizeof (uint64_t);
10889
10890 memcpy (&this_set[row - 1].signature, ph, num_copy);
10891 }
10892
10893 prow = poffsets + (row - 1) * ncols * 4;
10894 if (do_display)
10895 printf (" [%3d] %#" PRIx64, i, signature);
10896 for (j = 0; j < ncols; j++)
10897 {
10898 unsigned char *p = prow + j * 4;
10899 SAFE_BYTE_GET (val, p, 4, limit);
10900 if (do_display)
10901 printf (" %8d", val);
10902 else
10903 {
10904 p = ppool + j * 4;
10905 SAFE_BYTE_GET (dw_sect, p, 4, limit);
10906
10907 /* PR 17531: file: 10796eb3. */
10908 if (dw_sect >= DW_SECT_MAX)
10909 warn (_("Overlarge Dwarf section index detected: %u\n"), dw_sect);
10910 else
10911 this_set [row - 1].section_offsets [dw_sect] = val;
10912 }
10913 }
10914
10915 if (do_display)
10916 printf ("\n");
10917 }
10918 ph += 8;
10919 pi += 4;
10920 }
10921
10922 ph = phash;
10923 pi = pindex;
10924 if (do_display)
10925 {
10926 printf ("\n");
10927 printf (_(" Size table\n"));
10928 printf (" slot %-16s ",
10929 is_tu_index ? _("signature") : _("dwo_id"));
10930 }
10931
10932 for (j = 0; j < ncols; j++)
10933 {
10934 unsigned char *p = ppool + j * 4;
10935 SAFE_BYTE_GET (val, p, 4, limit);
10936 if (do_display)
10937 printf (" %8s", get_DW_SECT_short_name (val));
10938 }
10939
10940 if (do_display)
10941 printf ("\n");
10942
10943 for (i = 0; i < nslots; i++)
10944 {
10945 SAFE_BYTE_GET (signature, ph, 8, limit);
10946
10947 SAFE_BYTE_GET (row, pi, 4, limit);
10948 if (row != 0)
10949 {
10950 prow = psizes + (row - 1) * ncols * 4;
10951
10952 if (do_display)
10953 printf (" [%3d] %#" PRIx64, i, signature);
10954
10955 for (j = 0; j < ncols; j++)
10956 {
10957 unsigned char *p = prow + j * 4;
10958
10959 /* PR 28645: Check for overflow. Since we do not know how
10960 many populated rows there will be, we cannot just
10961 perform a single check at the start of this function. */
10962 if (p > (limit - 4))
10963 {
10964 if (do_display)
10965 printf ("\n");
10966 warn (_("Too many rows/columns in DWARF index section %s\n"),
10967 section->name);
10968 return 0;
10969 }
10970
10971 SAFE_BYTE_GET (val, p, 4, limit);
10972
10973 if (do_display)
10974 printf (" %8d", val);
10975 else
10976 {
10977 p = ppool + j * 4;
10978 SAFE_BYTE_GET (dw_sect, p, 4, limit);
10979 if (dw_sect >= DW_SECT_MAX)
10980 warn (_("Overlarge Dwarf section index detected: %u\n"), dw_sect);
10981 else
10982 this_set [row - 1].section_sizes [dw_sect] = val;
10983 }
10984 }
10985
10986 if (do_display)
10987 printf ("\n");
10988 }
10989
10990 ph += 8;
10991 pi += 4;
10992 }
10993 }
10994 else if (do_display)
10995 printf (_(" Unsupported version (%d)\n"), version);
10996
10997 if (do_display)
10998 printf ("\n");
10999
11000 return 1;
11001 }
11002
11003 static int cu_tu_indexes_read = -1; /* Tri-state variable. */
11004
11005 /* Load the CU and TU indexes if present. This will build a list of
11006 section sets that we can use to associate a .debug_info.dwo section
11007 with its associated .debug_abbrev.dwo section in a .dwp file. */
11008
11009 static bool
11010 load_cu_tu_indexes (void *file)
11011 {
11012 /* If we have already loaded (or tried to load) the CU and TU indexes
11013 then do not bother to repeat the task. */
11014 if (cu_tu_indexes_read == -1)
11015 {
11016 cu_tu_indexes_read = true;
11017
11018 if (load_debug_section_with_follow (dwp_cu_index, file))
11019 if (! process_cu_tu_index (&debug_displays [dwp_cu_index].section, 0))
11020 cu_tu_indexes_read = false;
11021
11022 if (load_debug_section_with_follow (dwp_tu_index, file))
11023 if (! process_cu_tu_index (&debug_displays [dwp_tu_index].section, 0))
11024 cu_tu_indexes_read = false;
11025 }
11026
11027 return (bool) cu_tu_indexes_read;
11028 }
11029
11030 /* Find the set of sections that includes section SHNDX. */
11031
11032 unsigned int *
11033 find_cu_tu_set (void *file, unsigned int shndx)
11034 {
11035 unsigned int i;
11036
11037 if (! load_cu_tu_indexes (file))
11038 return NULL;
11039
11040 /* Find SHNDX in the shndx pool. */
11041 for (i = 0; i < shndx_pool_used; i++)
11042 if (shndx_pool [i] == shndx)
11043 break;
11044
11045 if (i >= shndx_pool_used)
11046 return NULL;
11047
11048 /* Now backup to find the first entry in the set. */
11049 while (i > 0 && shndx_pool [i - 1] != 0)
11050 i--;
11051
11052 return shndx_pool + i;
11053 }
11054
11055 /* Display a .debug_cu_index or .debug_tu_index section. */
11056
11057 static int
11058 display_cu_index (struct dwarf_section *section, void *file ATTRIBUTE_UNUSED)
11059 {
11060 return process_cu_tu_index (section, 1);
11061 }
11062
11063 static int
11064 display_debug_not_supported (struct dwarf_section *section,
11065 void *file ATTRIBUTE_UNUSED)
11066 {
11067 printf (_("Displaying the debug contents of section %s is not yet supported.\n"),
11068 section->name);
11069
11070 return 1;
11071 }
11072
11073 /* Like malloc, but takes two parameters like calloc.
11074 Verifies that the first parameter is not too large.
11075 Note: does *not* initialise the allocated memory to zero. */
11076
11077 void *
11078 cmalloc (size_t nmemb, size_t size)
11079 {
11080 /* Check for overflow. */
11081 if (nmemb >= ~(size_t) 0 / size)
11082 return NULL;
11083
11084 return xmalloc (nmemb * size);
11085 }
11086
11087 /* Like xmalloc, but takes two parameters like calloc.
11088 Verifies that the first parameter is not too large.
11089 Note: does *not* initialise the allocated memory to zero. */
11090
11091 void *
11092 xcmalloc (size_t nmemb, size_t size)
11093 {
11094 /* Check for overflow. */
11095 if (nmemb >= ~(size_t) 0 / size)
11096 {
11097 fprintf (stderr,
11098 _("Attempt to allocate an array with an excessive number of elements: %#zx\n"),
11099 nmemb);
11100 xexit (1);
11101 }
11102
11103 return xmalloc (nmemb * size);
11104 }
11105
11106 /* Like xrealloc, but takes three parameters.
11107 Verifies that the second parameter is not too large.
11108 Note: does *not* initialise any new memory to zero. */
11109
11110 void *
11111 xcrealloc (void *ptr, size_t nmemb, size_t size)
11112 {
11113 /* Check for overflow. */
11114 if (nmemb >= ~(size_t) 0 / size)
11115 {
11116 error (_("Attempt to re-allocate an array with an excessive number of elements: %#zx\n"),
11117 nmemb);
11118 xexit (1);
11119 }
11120
11121 return xrealloc (ptr, nmemb * size);
11122 }
11123
11124 /* Like xcalloc, but verifies that the first parameter is not too large. */
11125
11126 void *
11127 xcalloc2 (size_t nmemb, size_t size)
11128 {
11129 /* Check for overflow. */
11130 if (nmemb >= ~(size_t) 0 / size)
11131 {
11132 error (_("Attempt to allocate a zero'ed array with an excessive number of elements: %#zx\n"),
11133 nmemb);
11134 xexit (1);
11135 }
11136
11137 return xcalloc (nmemb, size);
11138 }
11139
11140 static unsigned long
11141 calc_gnu_debuglink_crc32 (unsigned long crc,
11142 const unsigned char *buf,
11143 size_t len)
11144 {
11145 static const unsigned long crc32_table[256] =
11146 {
11147 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
11148 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
11149 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
11150 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
11151 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
11152 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
11153 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
11154 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
11155 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
11156 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
11157 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
11158 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
11159 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
11160 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
11161 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
11162 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
11163 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
11164 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
11165 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
11166 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
11167 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
11168 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
11169 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
11170 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
11171 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
11172 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
11173 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
11174 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
11175 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
11176 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
11177 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
11178 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
11179 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
11180 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
11181 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
11182 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
11183 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
11184 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
11185 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
11186 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
11187 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
11188 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
11189 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
11190 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
11191 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
11192 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
11193 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
11194 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
11195 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
11196 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
11197 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
11198 0x2d02ef8d
11199 };
11200 const unsigned char *end;
11201
11202 crc = ~crc & 0xffffffff;
11203 for (end = buf + len; buf < end; ++ buf)
11204 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
11205 return ~crc & 0xffffffff;
11206 }
11207
11208 typedef bool (*check_func_type) (const char *, void *);
11209 typedef const char *(* parse_func_type) (struct dwarf_section *, void *);
11210
11211 static bool
11212 check_gnu_debuglink (const char * pathname, void * crc_pointer)
11213 {
11214 static unsigned char buffer[8 * 1024];
11215 FILE *f;
11216 size_t count;
11217 unsigned long crc = 0;
11218 void *sep_data;
11219
11220 sep_data = open_debug_file (pathname);
11221 if (sep_data == NULL)
11222 return false;
11223
11224 /* Yes - we are opening the file twice... */
11225 f = fopen (pathname, "rb");
11226 if (f == NULL)
11227 {
11228 /* Paranoia: This should never happen. */
11229 close_debug_file (sep_data);
11230 warn (_("Unable to reopen separate debug info file: %s\n"), pathname);
11231 return false;
11232 }
11233
11234 while ((count = fread (buffer, 1, sizeof (buffer), f)) > 0)
11235 crc = calc_gnu_debuglink_crc32 (crc, buffer, count);
11236
11237 fclose (f);
11238
11239 if (crc != * (unsigned long *) crc_pointer)
11240 {
11241 close_debug_file (sep_data);
11242 warn (_("Separate debug info file %s found, but CRC does not match - ignoring\n"),
11243 pathname);
11244 return false;
11245 }
11246
11247 return true;
11248 }
11249
11250 static const char *
11251 parse_gnu_debuglink (struct dwarf_section * section, void * data)
11252 {
11253 const char * name;
11254 unsigned int crc_offset;
11255 unsigned long * crc32 = (unsigned long *) data;
11256
11257 /* The name is first.
11258 The CRC value is stored after the filename, aligned up to 4 bytes. */
11259 name = (const char *) section->start;
11260
11261 crc_offset = strnlen (name, section->size) + 1;
11262 if (crc_offset == 1)
11263 return NULL;
11264 crc_offset = (crc_offset + 3) & ~3;
11265 if (crc_offset + 4 > section->size)
11266 return NULL;
11267
11268 * crc32 = byte_get (section->start + crc_offset, 4);
11269 return name;
11270 }
11271
11272 static bool
11273 check_gnu_debugaltlink (const char * filename, void * data ATTRIBUTE_UNUSED)
11274 {
11275 void * sep_data = open_debug_file (filename);
11276
11277 if (sep_data == NULL)
11278 return false;
11279
11280 /* FIXME: We should now extract the build-id in the separate file
11281 and check it... */
11282
11283 return true;
11284 }
11285
11286 typedef struct build_id_data
11287 {
11288 size_t len;
11289 const unsigned char *data;
11290 } Build_id_data;
11291
11292 static const char *
11293 parse_gnu_debugaltlink (struct dwarf_section * section, void * data)
11294 {
11295 const char *name;
11296 size_t namelen;
11297 size_t id_len;
11298 Build_id_data *build_id_data;
11299
11300 /* The name is first.
11301 The build-id follows immediately, with no padding, up to the section's end. */
11302
11303 name = (const char *) section->start;
11304 namelen = strnlen (name, section->size) + 1;
11305 if (namelen == 1)
11306 return NULL;
11307 if (namelen >= section->size)
11308 return NULL;
11309
11310 id_len = section->size - namelen;
11311 if (id_len < 0x14)
11312 return NULL;
11313
11314 build_id_data = (Build_id_data *) data;
11315 build_id_data->len = id_len;
11316 build_id_data->data = section->start + namelen;
11317
11318 return name;
11319 }
11320
11321 static void
11322 add_separate_debug_file (const char * filename, void * handle)
11323 {
11324 separate_info * i = xmalloc (sizeof * i);
11325
11326 i->filename = filename;
11327 i->handle = handle;
11328 i->next = first_separate_info;
11329 first_separate_info = i;
11330 }
11331
11332 #if HAVE_LIBDEBUGINFOD
11333 /* Query debuginfod servers for the target debuglink or debugaltlink
11334 file. If successful, store the path of the file in filename and
11335 return TRUE, otherwise return FALSE. */
11336
11337 static bool
11338 debuginfod_fetch_separate_debug_info (struct dwarf_section * section,
11339 char ** filename,
11340 void * file)
11341 {
11342 size_t build_id_len;
11343 unsigned char * build_id;
11344
11345 if (strcmp (section->uncompressed_name, ".gnu_debuglink") == 0)
11346 {
11347 /* Get the build-id of file. */
11348 build_id = get_build_id (file);
11349 build_id_len = 0;
11350 }
11351 else if (strcmp (section->uncompressed_name, ".gnu_debugaltlink") == 0)
11352 {
11353 /* Get the build-id of the debugaltlink file. */
11354 unsigned int filelen;
11355
11356 filelen = strnlen ((const char *)section->start, section->size);
11357 if (filelen == section->size)
11358 /* Corrupt debugaltlink. */
11359 return false;
11360
11361 build_id = section->start + filelen + 1;
11362 build_id_len = section->size - (filelen + 1);
11363
11364 if (build_id_len == 0)
11365 return false;
11366 }
11367 else
11368 return false;
11369
11370 if (build_id)
11371 {
11372 int fd;
11373 debuginfod_client * client;
11374
11375 client = debuginfod_begin ();
11376 if (client == NULL)
11377 return false;
11378
11379 /* Query debuginfod servers for the target file. If found its path
11380 will be stored in filename. */
11381 fd = debuginfod_find_debuginfo (client, build_id, build_id_len, filename);
11382 debuginfod_end (client);
11383
11384 /* Only free build_id if we allocated space for a hex string
11385 in get_build_id (). */
11386 if (build_id_len == 0)
11387 free (build_id);
11388
11389 if (fd >= 0)
11390 {
11391 /* File successfully retrieved. Close fd since we want to
11392 use open_debug_file () on filename instead. */
11393 close (fd);
11394 return true;
11395 }
11396 }
11397
11398 return false;
11399 }
11400 #endif /* HAVE_LIBDEBUGINFOD */
11401
11402 static void *
11403 load_separate_debug_info (const char * main_filename,
11404 struct dwarf_section * xlink,
11405 parse_func_type parse_func,
11406 check_func_type check_func,
11407 void * func_data,
11408 void * file ATTRIBUTE_UNUSED)
11409 {
11410 const char * separate_filename;
11411 char * debug_filename;
11412 char * canon_dir;
11413 size_t canon_dirlen;
11414 size_t dirlen;
11415 char * canon_filename;
11416 char * canon_debug_filename;
11417 bool self;
11418
11419 if ((separate_filename = parse_func (xlink, func_data)) == NULL)
11420 {
11421 warn (_("Corrupt debuglink section: %s\n"),
11422 xlink->name ? xlink->name : xlink->uncompressed_name);
11423 return NULL;
11424 }
11425
11426 /* Attempt to locate the separate file.
11427 This should duplicate the logic in bfd/opncls.c:find_separate_debug_file(). */
11428
11429 canon_filename = lrealpath (main_filename);
11430 canon_dir = xstrdup (canon_filename);
11431
11432 for (canon_dirlen = strlen (canon_dir); canon_dirlen > 0; canon_dirlen--)
11433 if (IS_DIR_SEPARATOR (canon_dir[canon_dirlen - 1]))
11434 break;
11435 canon_dir[canon_dirlen] = '\0';
11436
11437 #ifndef DEBUGDIR
11438 #define DEBUGDIR "/lib/debug"
11439 #endif
11440 #ifndef EXTRA_DEBUG_ROOT1
11441 #define EXTRA_DEBUG_ROOT1 "/usr/lib/debug"
11442 #endif
11443 #ifndef EXTRA_DEBUG_ROOT2
11444 #define EXTRA_DEBUG_ROOT2 "/usr/lib/debug/usr"
11445 #endif
11446
11447 debug_filename = (char *) malloc (strlen (DEBUGDIR) + 1
11448 + canon_dirlen
11449 + strlen (".debug/")
11450 #ifdef EXTRA_DEBUG_ROOT1
11451 + strlen (EXTRA_DEBUG_ROOT1)
11452 #endif
11453 #ifdef EXTRA_DEBUG_ROOT2
11454 + strlen (EXTRA_DEBUG_ROOT2)
11455 #endif
11456 + strlen (separate_filename)
11457 + 1);
11458 if (debug_filename == NULL)
11459 {
11460 warn (_("Out of memory"));
11461 free (canon_dir);
11462 free (canon_filename);
11463 return NULL;
11464 }
11465
11466 /* First try in the current directory. */
11467 sprintf (debug_filename, "%s", separate_filename);
11468 if (check_func (debug_filename, func_data))
11469 goto found;
11470
11471 /* Then try in a subdirectory called .debug. */
11472 sprintf (debug_filename, ".debug/%s", separate_filename);
11473 if (check_func (debug_filename, func_data))
11474 goto found;
11475
11476 /* Then try in the same directory as the original file. */
11477 sprintf (debug_filename, "%s%s", canon_dir, separate_filename);
11478 if (check_func (debug_filename, func_data))
11479 goto found;
11480
11481 /* And the .debug subdirectory of that directory. */
11482 sprintf (debug_filename, "%s.debug/%s", canon_dir, separate_filename);
11483 if (check_func (debug_filename, func_data))
11484 goto found;
11485
11486 #ifdef EXTRA_DEBUG_ROOT1
11487 /* Try the first extra debug file root. */
11488 sprintf (debug_filename, "%s/%s", EXTRA_DEBUG_ROOT1, separate_filename);
11489 if (check_func (debug_filename, func_data))
11490 goto found;
11491
11492 /* Try the first extra debug file root. */
11493 sprintf (debug_filename, "%s/%s/%s", EXTRA_DEBUG_ROOT1, canon_dir, separate_filename);
11494 if (check_func (debug_filename, func_data))
11495 goto found;
11496 #endif
11497
11498 #ifdef EXTRA_DEBUG_ROOT2
11499 /* Try the second extra debug file root. */
11500 sprintf (debug_filename, "%s/%s", EXTRA_DEBUG_ROOT2, separate_filename);
11501 if (check_func (debug_filename, func_data))
11502 goto found;
11503 #endif
11504
11505 /* Then try in the global debug_filename directory. */
11506 strcpy (debug_filename, DEBUGDIR);
11507 dirlen = strlen (DEBUGDIR) - 1;
11508 if (dirlen > 0 && DEBUGDIR[dirlen] != '/')
11509 strcat (debug_filename, "/");
11510 strcat (debug_filename, (const char *) separate_filename);
11511
11512 if (check_func (debug_filename, func_data))
11513 goto found;
11514
11515 #if HAVE_LIBDEBUGINFOD
11516 {
11517 char * tmp_filename;
11518
11519 if (use_debuginfod
11520 && debuginfod_fetch_separate_debug_info (xlink,
11521 & tmp_filename,
11522 file))
11523 {
11524 /* File successfully downloaded from server, replace
11525 debug_filename with the file's path. */
11526 free (debug_filename);
11527 debug_filename = tmp_filename;
11528 goto found;
11529 }
11530 }
11531 #endif
11532
11533 if (do_debug_links)
11534 {
11535 /* Failed to find the file. */
11536 warn (_("could not find separate debug file '%s'\n"),
11537 separate_filename);
11538 warn (_("tried: %s\n"), debug_filename);
11539
11540 #ifdef EXTRA_DEBUG_ROOT2
11541 sprintf (debug_filename, "%s/%s", EXTRA_DEBUG_ROOT2,
11542 separate_filename);
11543 warn (_("tried: %s\n"), debug_filename);
11544 #endif
11545
11546 #ifdef EXTRA_DEBUG_ROOT1
11547 sprintf (debug_filename, "%s/%s/%s", EXTRA_DEBUG_ROOT1,
11548 canon_dir, separate_filename);
11549 warn (_("tried: %s\n"), debug_filename);
11550
11551 sprintf (debug_filename, "%s/%s", EXTRA_DEBUG_ROOT1,
11552 separate_filename);
11553 warn (_("tried: %s\n"), debug_filename);
11554 #endif
11555
11556 sprintf (debug_filename, "%s.debug/%s", canon_dir,
11557 separate_filename);
11558 warn (_("tried: %s\n"), debug_filename);
11559
11560 sprintf (debug_filename, "%s%s", canon_dir, separate_filename);
11561 warn (_("tried: %s\n"), debug_filename);
11562
11563 sprintf (debug_filename, ".debug/%s", separate_filename);
11564 warn (_("tried: %s\n"), debug_filename);
11565
11566 sprintf (debug_filename, "%s", separate_filename);
11567 warn (_("tried: %s\n"), debug_filename);
11568
11569 #if HAVE_LIBDEBUGINFOD
11570 if (use_debuginfod)
11571 {
11572 char *urls = getenv (DEBUGINFOD_URLS_ENV_VAR);
11573
11574 if (urls == NULL)
11575 urls = "";
11576
11577 warn (_("tried: DEBUGINFOD_URLS=%s\n"), urls);
11578 }
11579 #endif
11580 }
11581
11582 free (canon_dir);
11583 free (debug_filename);
11584 free (canon_filename);
11585 return NULL;
11586
11587 found:
11588 free (canon_dir);
11589
11590 canon_debug_filename = lrealpath (debug_filename);
11591 self = strcmp (canon_debug_filename, canon_filename) == 0;
11592 free (canon_filename);
11593 free (canon_debug_filename);
11594 if (self)
11595 {
11596 free (debug_filename);
11597 return NULL;
11598 }
11599
11600 void * debug_handle;
11601
11602 /* Now open the file.... */
11603 if ((debug_handle = open_debug_file (debug_filename)) == NULL)
11604 {
11605 warn (_("failed to open separate debug file: %s\n"), debug_filename);
11606 free (debug_filename);
11607 return NULL;
11608 }
11609
11610 /* FIXME: We do not check to see if there are any other separate debug info
11611 files that would also match. */
11612
11613 if (do_debug_links)
11614 printf (_("\n%s: Found separate debug info file: %s\n"), main_filename, debug_filename);
11615 add_separate_debug_file (debug_filename, debug_handle);
11616
11617 /* Do not free debug_filename - it might be referenced inside
11618 the structure returned by open_debug_file(). */
11619 return debug_handle;
11620 }
11621
11622 /* Attempt to load a separate dwarf object file. */
11623
11624 static void *
11625 load_dwo_file (const char * main_filename, const char * name, const char * dir, const char * id ATTRIBUTE_UNUSED)
11626 {
11627 char * separate_filename;
11628 void * separate_handle;
11629
11630 if (IS_ABSOLUTE_PATH (name))
11631 separate_filename = strdup (name);
11632 else
11633 /* FIXME: Skip adding / if dwo_dir ends in /. */
11634 separate_filename = concat (dir, "/", name, NULL);
11635 if (separate_filename == NULL)
11636 {
11637 warn (_("Out of memory allocating dwo filename\n"));
11638 return NULL;
11639 }
11640
11641 if ((separate_handle = open_debug_file (separate_filename)) == NULL)
11642 {
11643 warn (_("Unable to load dwo file: %s\n"), separate_filename);
11644 free (separate_filename);
11645 return NULL;
11646 }
11647
11648 /* FIXME: We should check the dwo_id. */
11649
11650 printf (_("%s: Found separate debug object file: %s\n\n"), main_filename, separate_filename);
11651
11652 add_separate_debug_file (separate_filename, separate_handle);
11653 /* Note - separate_filename will be freed in free_debug_memory(). */
11654 return separate_handle;
11655 }
11656
11657 static void *
11658 try_build_id_prefix (const char * prefix, char * filename, const unsigned char * data, unsigned long id_len)
11659 {
11660 char * f = filename;
11661
11662 f += sprintf (f, "%s.build-id/%02x/", prefix, (unsigned) *data++);
11663 id_len --;
11664 while (id_len --)
11665 f += sprintf (f, "%02x", (unsigned) *data++);
11666 strcpy (f, ".debug");
11667
11668 return open_debug_file (filename);
11669 }
11670
11671 /* Try to load a debug file based upon the build-id held in the .note.gnu.build-id section. */
11672
11673 static void
11674 load_build_id_debug_file (const char * main_filename ATTRIBUTE_UNUSED, void * main_file)
11675 {
11676 if (! load_debug_section (note_gnu_build_id, main_file))
11677 return; /* No .note.gnu.build-id section. */
11678
11679 struct dwarf_section * section = & debug_displays [note_gnu_build_id].section;
11680 if (section == NULL)
11681 {
11682 warn (_("Unable to load the .note.gnu.build-id section\n"));
11683 return;
11684 }
11685
11686 if (section->start == NULL || section->size < 0x18)
11687 {
11688 warn (_(".note.gnu.build-id section is corrupt/empty\n"));
11689 return;
11690 }
11691
11692 /* In theory we should extract the contents of the section into
11693 a note structure and then check the fields. For now though
11694 just use hard coded offsets instead:
11695
11696 Field Bytes Contents
11697 NSize 0...3 4
11698 DSize 4...7 8+
11699 Type 8..11 3 (NT_GNU_BUILD_ID)
11700 Name 12.15 GNU\0
11701 Data 16.... */
11702
11703 /* FIXME: Check the name size, name and type fields. */
11704
11705 unsigned long build_id_size;
11706 build_id_size = byte_get (section->start + 4, 4);
11707 if (build_id_size < 8)
11708 {
11709 warn (_(".note.gnu.build-id data size is too small\n"));
11710 return;
11711 }
11712
11713 if (build_id_size > (section->size - 16))
11714 {
11715 warn (_(".note.gnu.build-id data size is too bug\n"));
11716 return;
11717 }
11718
11719 char * filename;
11720 filename = xmalloc (strlen (".build-id/")
11721 + build_id_size * 2 + 2
11722 + strlen (".debug")
11723 /* The next string should be the same as the longest
11724 name found in the prefixes[] array below. */
11725 + strlen ("/usrlib64/debug/usr")
11726 + 1);
11727 void * handle;
11728
11729 static const char * prefixes[] =
11730 {
11731 "",
11732 ".debug/",
11733 "/usr/lib/debug/",
11734 "/usr/lib/debug/usr/",
11735 "/usr/lib64/debug/",
11736 "/usr/lib64/debug/usr"
11737 };
11738 long unsigned int i;
11739
11740 for (i = 0; i < ARRAY_SIZE (prefixes); i++)
11741 {
11742 handle = try_build_id_prefix (prefixes[i], filename,
11743 section->start + 16, build_id_size);
11744 if (handle != NULL)
11745 break;
11746 }
11747 /* FIXME: TYhe BFD library also tries a global debugfile directory prefix. */
11748 if (handle == NULL)
11749 {
11750 /* Failed to find a debug file associated with the build-id.
11751 This is not an error however, rather it just means that
11752 the debug info has probably not been loaded on the system,
11753 or that another method is being used to link to the debug
11754 info. */
11755 free (filename);
11756 return;
11757 }
11758
11759 add_separate_debug_file (filename, handle);
11760 }
11761
11762 /* Try to load a debug file pointed to by the .debug_sup section. */
11763
11764 static void
11765 load_debug_sup_file (const char * main_filename, void * file)
11766 {
11767 if (! load_debug_section (debug_sup, file))
11768 return; /* No .debug_sup section. */
11769
11770 struct dwarf_section * section;
11771 section = & debug_displays [debug_sup].section;
11772 assert (section != NULL);
11773
11774 if (section->start == NULL || section->size < 5)
11775 {
11776 warn (_(".debug_sup section is corrupt/empty\n"));
11777 return;
11778 }
11779
11780 if (section->start[2] != 0)
11781 return; /* This is a supplementary file. */
11782
11783 const char * filename = (const char *) section->start + 3;
11784 if (strnlen (filename, section->size - 3) == section->size - 3)
11785 {
11786 warn (_("filename in .debug_sup section is corrupt\n"));
11787 return;
11788 }
11789
11790 if (filename[0] != '/' && strchr (main_filename, '/'))
11791 {
11792 char * new_name;
11793 int new_len;
11794
11795 new_len = asprintf (& new_name, "%.*s/%s",
11796 (int) (strrchr (main_filename, '/') - main_filename),
11797 main_filename,
11798 filename);
11799 if (new_len < 3)
11800 {
11801 warn (_("unable to construct path for supplementary debug file"));
11802 if (new_len > -1)
11803 free (new_name);
11804 return;
11805 }
11806 filename = new_name;
11807 }
11808 else
11809 {
11810 /* PR 27796: Make sure that we pass a filename that can be free'd to
11811 add_separate_debug_file(). */
11812 filename = strdup (filename);
11813 if (filename == NULL)
11814 {
11815 warn (_("out of memory constructing filename for .debug_sup link\n"));
11816 return;
11817 }
11818 }
11819
11820 void * handle = open_debug_file (filename);
11821 if (handle == NULL)
11822 {
11823 warn (_("unable to open file '%s' referenced from .debug_sup section\n"), filename);
11824 free ((void *) filename);
11825 return;
11826 }
11827
11828 printf (_("%s: Found supplementary debug file: %s\n\n"), main_filename, filename);
11829
11830 /* FIXME: Compare the checksums, if present. */
11831 add_separate_debug_file (filename, handle);
11832 }
11833
11834 /* Load a debuglink section and/or a debugaltlink section, if either are present.
11835 Recursively check the loaded files for more of these sections.
11836 Also follow any links in .debug_sup sections.
11837 FIXME: Should also check for DWO_* entries in the newly loaded files. */
11838
11839 static void
11840 check_for_and_load_links (void * file, const char * filename)
11841 {
11842 void * handle = NULL;
11843
11844 if (load_debug_section (gnu_debugaltlink, file))
11845 {
11846 Build_id_data build_id_data;
11847
11848 handle = load_separate_debug_info (filename,
11849 & debug_displays[gnu_debugaltlink].section,
11850 parse_gnu_debugaltlink,
11851 check_gnu_debugaltlink,
11852 & build_id_data,
11853 file);
11854 if (handle)
11855 {
11856 assert (handle == first_separate_info->handle);
11857 check_for_and_load_links (first_separate_info->handle,
11858 first_separate_info->filename);
11859 }
11860 }
11861
11862 if (load_debug_section (gnu_debuglink, file))
11863 {
11864 unsigned long crc32;
11865
11866 handle = load_separate_debug_info (filename,
11867 & debug_displays[gnu_debuglink].section,
11868 parse_gnu_debuglink,
11869 check_gnu_debuglink,
11870 & crc32,
11871 file);
11872 if (handle)
11873 {
11874 assert (handle == first_separate_info->handle);
11875 check_for_and_load_links (first_separate_info->handle,
11876 first_separate_info->filename);
11877 }
11878 }
11879
11880 load_debug_sup_file (filename, file);
11881
11882 load_build_id_debug_file (filename, file);
11883 }
11884
11885 /* Load the separate debug info file(s) attached to FILE, if any exist.
11886 Returns TRUE if any were found, FALSE otherwise.
11887 If TRUE is returned then the linked list starting at first_separate_info
11888 will be populated with open file handles. */
11889
11890 bool
11891 load_separate_debug_files (void * file, const char * filename)
11892 {
11893 /* Skip this operation if we are not interested in debug links. */
11894 if (! do_follow_links && ! do_debug_links)
11895 return false;
11896
11897 /* See if there are any dwo links. */
11898 if (load_debug_section (str, file)
11899 && load_debug_section (abbrev, file)
11900 && load_debug_section (info, file))
11901 {
11902 /* Load the .debug_addr section, if it exists. */
11903 load_debug_section (debug_addr, file);
11904 /* Load the .debug_str_offsets section, if it exists. */
11905 load_debug_section (str_index, file);
11906 /* Load the .debug_loclists section, if it exists. */
11907 load_debug_section (loclists, file);
11908 /* Load the .debug_rnglists section, if it exists. */
11909 load_debug_section (rnglists, file);
11910
11911 free_dwo_info ();
11912
11913 if (process_debug_info (& debug_displays[info].section, file, abbrev,
11914 true, false))
11915 {
11916 bool introduced = false;
11917 dwo_info *dwinfo;
11918 const char *dir = NULL;
11919 const char *id = NULL;
11920 const char *name = NULL;
11921
11922 for (dwinfo = first_dwo_info; dwinfo != NULL; dwinfo = dwinfo->next)
11923 {
11924 /* Accumulate NAME, DIR and ID fields. */
11925 switch (dwinfo->type)
11926 {
11927 case DWO_NAME:
11928 if (name != NULL)
11929 warn (_("Multiple DWO_NAMEs encountered for the same CU\n"));
11930 name = dwinfo->value;
11931 break;
11932
11933 case DWO_DIR:
11934 /* There can be multiple DW_AT_comp_dir entries in a CU,
11935 so do not complain. */
11936 dir = dwinfo->value;
11937 break;
11938
11939 case DWO_ID:
11940 if (id != NULL)
11941 warn (_("multiple DWO_IDs encountered for the same CU\n"));
11942 id = dwinfo->value;
11943 break;
11944
11945 default:
11946 error (_("Unexpected DWO INFO type"));
11947 break;
11948 }
11949
11950 /* If we have reached the end of our list, or we are changing
11951 CUs, then display the information that we have accumulated
11952 so far. */
11953 if (name != NULL
11954 && (dwinfo->next == NULL
11955 || dwinfo->next->cu_offset != dwinfo->cu_offset))
11956 {
11957 if (do_debug_links)
11958 {
11959 if (! introduced)
11960 {
11961 printf (_("The %s section contains link(s) to dwo file(s):\n\n"),
11962 debug_displays [info].section.uncompressed_name);
11963 introduced = true;
11964 }
11965
11966 printf (_(" Name: %s\n"), name);
11967 printf (_(" Directory: %s\n"), dir ? dir : _("<not-found>"));
11968 if (id != NULL)
11969 display_data (printf (_(" ID: ")), (unsigned char *) id, 8);
11970 else if (debug_information[0].dwarf_version != 5)
11971 printf (_(" ID: <not specified>\n"));
11972 printf ("\n\n");
11973 }
11974
11975 if (do_follow_links)
11976 load_dwo_file (filename, name, dir, id);
11977
11978 name = dir = id = NULL;
11979 }
11980 }
11981 }
11982 }
11983
11984 if (! do_follow_links)
11985 /* The other debug links will be displayed by display_debug_links()
11986 so we do not need to do any further processing here. */
11987 return false;
11988
11989 /* FIXME: We do not check for the presence of both link sections in the same file. */
11990 /* FIXME: We do not check for the presence of multiple, same-name debuglink sections. */
11991 /* FIXME: We do not check for the presence of a dwo link as well as a debuglink. */
11992
11993 check_for_and_load_links (file, filename);
11994 if (first_separate_info != NULL)
11995 return true;
11996
11997 do_follow_links = 0;
11998 return false;
11999 }
12000
12001 void
12002 free_debug_memory (void)
12003 {
12004 unsigned int i;
12005
12006 free_all_abbrevs ();
12007
12008 free (shndx_pool);
12009 shndx_pool = NULL;
12010 shndx_pool_size = 0;
12011 shndx_pool_used = 0;
12012 free (cu_sets);
12013 cu_sets = NULL;
12014 cu_count = 0;
12015 free (tu_sets);
12016 tu_sets = NULL;
12017 tu_count = 0;
12018
12019 memset (level_type_signed, 0, sizeof level_type_signed);
12020 cu_tu_indexes_read = -1;
12021
12022 for (i = 0; i < max; i++)
12023 free_debug_section ((enum dwarf_section_display_enum) i);
12024
12025 if (debug_information != NULL)
12026 {
12027 for (i = 0; i < alloc_num_debug_info_entries; i++)
12028 free_debug_information (&debug_information[i]);
12029 free (debug_information);
12030 debug_information = NULL;
12031 alloc_num_debug_info_entries = num_debug_info_entries = 0;
12032 }
12033
12034 separate_info * d;
12035 separate_info * next;
12036
12037 for (d = first_separate_info; d != NULL; d = next)
12038 {
12039 close_debug_file (d->handle);
12040 free ((void *) d->filename);
12041 next = d->next;
12042 free ((void *) d);
12043 }
12044 first_separate_info = NULL;
12045
12046 free_dwo_info ();
12047 }
12048
12049 typedef struct
12050 {
12051 const char letter;
12052 const char *option;
12053 int *variable;
12054 int val;
12055 } debug_dump_long_opts;
12056
12057 static const debug_dump_long_opts debug_option_table[] =
12058 {
12059 { 'A', "addr", &do_debug_addr, 1 },
12060 { 'a', "abbrev", &do_debug_abbrevs, 1 },
12061 { 'c', "cu_index", &do_debug_cu_index, 1 },
12062 #ifdef HAVE_LIBDEBUGINFOD
12063 { 'D', "use-debuginfod", &use_debuginfod, 1 },
12064 { 'E', "do-not-use-debuginfod", &use_debuginfod, 0 },
12065 #endif
12066 { 'F', "frames-interp", &do_debug_frames_interp, 1 },
12067 { 'f', "frames", &do_debug_frames, 1 },
12068 { 'g', "gdb_index", &do_gdb_index, 1 },
12069 { 'i', "info", &do_debug_info, 1 },
12070 { 'K', "follow-links", &do_follow_links, 1 },
12071 { 'k', "links", &do_debug_links, 1 },
12072 { 'L', "decodedline", &do_debug_lines, FLAG_DEBUG_LINES_DECODED },
12073 { 'l', "rawline", &do_debug_lines, FLAG_DEBUG_LINES_RAW },
12074 /* For compatibility with earlier versions of readelf. */
12075 { 'l', "line", &do_debug_lines, FLAG_DEBUG_LINES_RAW },
12076 { 'm', "macro", &do_debug_macinfo, 1 },
12077 { 'N', "no-follow-links", &do_follow_links, 0 },
12078 { 'O', "str-offsets", &do_debug_str_offsets, 1 },
12079 { 'o', "loc", &do_debug_loc, 1 },
12080 { 'p', "pubnames", &do_debug_pubnames, 1 },
12081 { 'R', "Ranges", &do_debug_ranges, 1 },
12082 { 'r', "aranges", &do_debug_aranges, 1 },
12083 /* For compatibility with earlier versions of readelf. */
12084 { 'r', "ranges", &do_debug_aranges, 1 },
12085 { 's', "str", &do_debug_str, 1 },
12086 { 'T', "trace_aranges", &do_trace_aranges, 1 },
12087 { 't', "pubtypes", &do_debug_pubtypes, 1 },
12088 { 'U', "trace_info", &do_trace_info, 1 },
12089 { 'u', "trace_abbrev", &do_trace_abbrevs, 1 },
12090 { 0, NULL, NULL, 0 }
12091 };
12092
12093 /* Enable display of specific DWARF sections as determined by the comma
12094 separated strings in NAMES. Returns non-zero if any displaying was
12095 enabled. */
12096
12097 int
12098 dwarf_select_sections_by_names (const char *names)
12099 {
12100 const char *p;
12101 int result = 0;
12102
12103 p = names;
12104 while (*p)
12105 {
12106 const debug_dump_long_opts *entry;
12107
12108 for (entry = debug_option_table; entry->option; entry++)
12109 {
12110 size_t len = strlen (entry->option);
12111
12112 if (strncmp (p, entry->option, len) == 0
12113 && (p[len] == ',' || p[len] == '\0'))
12114 {
12115 if (entry->val == 0)
12116 * entry->variable = 0;
12117 else
12118 * entry->variable = entry->val;
12119 result |= entry->val;
12120
12121 p += len;
12122 break;
12123 }
12124 }
12125
12126 if (entry->option == NULL)
12127 {
12128 warn (_("Unrecognized debug option '%s'\n"), p);
12129 p = strchr (p, ',');
12130 if (p == NULL)
12131 break;
12132 }
12133
12134 if (*p == ',')
12135 p++;
12136 }
12137
12138 /* The --debug-dump=frames-interp option also enables the
12139 --debug-dump=frames option. */
12140 if (do_debug_frames_interp)
12141 do_debug_frames = 1;
12142
12143 return result;
12144 }
12145
12146 /* Enable display of specific DWARF sections as determined by the characters
12147 in LETTERS. Returns non-zero if any displaying was enabled. */
12148
12149 int
12150 dwarf_select_sections_by_letters (const char *letters)
12151 {
12152 int result = 0;
12153
12154 while (* letters)
12155 {
12156 const debug_dump_long_opts *entry;
12157
12158 for (entry = debug_option_table; entry->letter; entry++)
12159 {
12160 if (entry->letter == * letters)
12161 {
12162 if (entry->val == 0)
12163 * entry->variable = 0;
12164 else
12165 * entry->variable |= entry->val;
12166 result |= entry->val;
12167 break;
12168 }
12169 }
12170
12171 if (entry->letter == 0)
12172 warn (_("Unrecognized debug letter option '%c'\n"), * letters);
12173
12174 letters ++;
12175 }
12176
12177 /* The --debug-dump=frames-interp option also enables the
12178 --debug-dump=frames option. */
12179 if (do_debug_frames_interp)
12180 do_debug_frames = 1;
12181
12182 return result;
12183 }
12184
12185 void
12186 dwarf_select_sections_all (void)
12187 {
12188 do_debug_info = 1;
12189 do_debug_abbrevs = 1;
12190 do_debug_lines = FLAG_DEBUG_LINES_RAW;
12191 do_debug_pubnames = 1;
12192 do_debug_pubtypes = 1;
12193 do_debug_aranges = 1;
12194 do_debug_ranges = 1;
12195 do_debug_frames = 1;
12196 do_debug_macinfo = 1;
12197 do_debug_str = 1;
12198 do_debug_loc = 1;
12199 do_gdb_index = 1;
12200 do_trace_info = 1;
12201 do_trace_abbrevs = 1;
12202 do_trace_aranges = 1;
12203 do_debug_addr = 1;
12204 do_debug_cu_index = 1;
12205 do_follow_links = 1;
12206 do_debug_links = 1;
12207 do_debug_str_offsets = 1;
12208 }
12209
12210 #define NO_ABBREVS NULL, NULL, NULL, 0, 0, 0, NULL, 0
12211 #define ABBREV(N) NULL, NULL, NULL, 0, 0, N, NULL, 0
12212
12213 /* N.B. The order here must match the order in section_display_enum. */
12214
12215 struct dwarf_section_display debug_displays[] =
12216 {
12217 { { ".debug_abbrev", ".zdebug_abbrev", ".dwabrev", NO_ABBREVS }, display_debug_abbrev, &do_debug_abbrevs, false },
12218 { { ".debug_aranges", ".zdebug_aranges", ".dwarnge", NO_ABBREVS }, display_debug_aranges, &do_debug_aranges, true },
12219 { { ".debug_frame", ".zdebug_frame", ".dwframe", NO_ABBREVS }, display_debug_frames, &do_debug_frames, true },
12220 { { ".debug_info", ".zdebug_info", ".dwinfo", ABBREV (abbrev)}, display_debug_info, &do_debug_info, true },
12221 { { ".debug_line", ".zdebug_line", ".dwline", NO_ABBREVS }, display_debug_lines, &do_debug_lines, true },
12222 { { ".debug_pubnames", ".zdebug_pubnames", ".dwpbnms", NO_ABBREVS }, display_debug_pubnames, &do_debug_pubnames, false },
12223 { { ".debug_gnu_pubnames", ".zdebug_gnu_pubnames", "", NO_ABBREVS }, display_debug_gnu_pubnames, &do_debug_pubnames, false },
12224 { { ".eh_frame", "", "", NO_ABBREVS }, display_debug_frames, &do_debug_frames, true },
12225 { { ".debug_macinfo", ".zdebug_macinfo", "", NO_ABBREVS }, display_debug_macinfo, &do_debug_macinfo, false },
12226 { { ".debug_macro", ".zdebug_macro", ".dwmac", NO_ABBREVS }, display_debug_macro, &do_debug_macinfo, true },
12227 { { ".debug_str", ".zdebug_str", ".dwstr", NO_ABBREVS }, display_debug_str, &do_debug_str, false },
12228 { { ".debug_line_str", ".zdebug_line_str", "", NO_ABBREVS }, display_debug_str, &do_debug_str, false },
12229 { { ".debug_loc", ".zdebug_loc", ".dwloc", NO_ABBREVS }, display_debug_loc, &do_debug_loc, true },
12230 { { ".debug_loclists", ".zdebug_loclists", "", NO_ABBREVS }, display_debug_loc, &do_debug_loc, true },
12231 { { ".debug_loclists.dwo", ".zdebug_loclists.dwo", "", NO_ABBREVS }, display_debug_loc, &do_debug_loc, true },
12232 { { ".debug_pubtypes", ".zdebug_pubtypes", ".dwpbtyp", NO_ABBREVS }, display_debug_pubnames, &do_debug_pubtypes, false },
12233 { { ".debug_gnu_pubtypes", ".zdebug_gnu_pubtypes", "", NO_ABBREVS }, display_debug_gnu_pubnames, &do_debug_pubtypes, false },
12234 { { ".debug_ranges", ".zdebug_ranges", ".dwrnges", NO_ABBREVS }, display_debug_ranges, &do_debug_ranges, true },
12235 { { ".debug_rnglists", ".zdebug_rnglists", "", NO_ABBREVS }, display_debug_ranges, &do_debug_ranges, true },
12236 { { ".debug_rnglists.dwo", ".zdebug_rnglists.dwo", "", NO_ABBREVS }, display_debug_ranges, &do_debug_ranges, true },
12237 { { ".debug_static_func", ".zdebug_static_func", "", NO_ABBREVS }, display_debug_not_supported, NULL, false },
12238 { { ".debug_static_vars", ".zdebug_static_vars", "", NO_ABBREVS }, display_debug_not_supported, NULL, false },
12239 { { ".debug_types", ".zdebug_types", "", ABBREV (abbrev) }, display_debug_types, &do_debug_info, true },
12240 { { ".debug_weaknames", ".zdebug_weaknames", "", NO_ABBREVS }, display_debug_not_supported, NULL, false },
12241 { { ".gdb_index", "", "", NO_ABBREVS }, display_gdb_index, &do_gdb_index, false },
12242 { { ".debug_names", "", "", NO_ABBREVS }, display_debug_names, &do_gdb_index, false },
12243 { { ".trace_info", "", "", ABBREV (trace_abbrev) }, display_trace_info, &do_trace_info, true },
12244 { { ".trace_abbrev", "", "", NO_ABBREVS }, display_debug_abbrev, &do_trace_abbrevs, false },
12245 { { ".trace_aranges", "", "", NO_ABBREVS }, display_debug_aranges, &do_trace_aranges, false },
12246 { { ".debug_info.dwo", ".zdebug_info.dwo", "", ABBREV (abbrev_dwo) }, display_debug_info, &do_debug_info, true },
12247 { { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo", "", NO_ABBREVS }, display_debug_abbrev, &do_debug_abbrevs, false },
12248 { { ".debug_types.dwo", ".zdebug_types.dwo", "", ABBREV (abbrev_dwo) }, display_debug_types, &do_debug_info, true },
12249 { { ".debug_line.dwo", ".zdebug_line.dwo", "", NO_ABBREVS }, display_debug_lines, &do_debug_lines, true },
12250 { { ".debug_loc.dwo", ".zdebug_loc.dwo", "", NO_ABBREVS }, display_debug_loc, &do_debug_loc, true },
12251 { { ".debug_macro.dwo", ".zdebug_macro.dwo", "", NO_ABBREVS }, display_debug_macro, &do_debug_macinfo, true },
12252 { { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo", "", NO_ABBREVS }, display_debug_macinfo, &do_debug_macinfo, false },
12253 { { ".debug_str.dwo", ".zdebug_str.dwo", "", NO_ABBREVS }, display_debug_str, &do_debug_str, true },
12254 { { ".debug_str_offsets", ".zdebug_str_offsets", "", NO_ABBREVS }, display_debug_str_offsets, &do_debug_str_offsets, true },
12255 { { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo", "", NO_ABBREVS }, display_debug_str_offsets, &do_debug_str_offsets, true },
12256 { { ".debug_addr", ".zdebug_addr", "", NO_ABBREVS }, display_debug_addr, &do_debug_addr, true },
12257 { { ".debug_cu_index", "", "", NO_ABBREVS }, display_cu_index, &do_debug_cu_index, false },
12258 { { ".debug_tu_index", "", "", NO_ABBREVS }, display_cu_index, &do_debug_cu_index, false },
12259 { { ".gnu_debuglink", "", "", NO_ABBREVS }, display_debug_links, &do_debug_links, false },
12260 { { ".gnu_debugaltlink", "", "", NO_ABBREVS }, display_debug_links, &do_debug_links, false },
12261 { { ".debug_sup", "", "", NO_ABBREVS }, display_debug_sup, &do_debug_links, false },
12262 /* Separate debug info files can containt their own .debug_str section,
12263 and this might be in *addition* to a .debug_str section already present
12264 in the main file. Hence we need to have two entries for .debug_str. */
12265 { { ".debug_str", ".zdebug_str", "", NO_ABBREVS }, display_debug_str, &do_debug_str, false },
12266 { { ".note.gnu.build-id", "", "", NO_ABBREVS }, display_debug_not_supported, NULL, false },
12267 };
12268
12269 /* A static assertion. */
12270 extern int debug_displays_assert[ARRAY_SIZE (debug_displays) == max ? 1 : -1];