Branch data Line data Source code
1 : : /* Print information from ELF file in human-readable form.
2 : : Copyright (C) 1999-2018 Red Hat, Inc.
3 : : Copyright (C) 2023 Mark J. Wielaard <mark@klomp.org>
4 : : This file is part of elfutils.
5 : :
6 : : This file 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 : : elfutils is distributed in the hope that it will be useful, but
12 : : 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, see <http://www.gnu.org/licenses/>. */
18 : :
19 : : #ifdef HAVE_CONFIG_H
20 : : # include <config.h>
21 : : #endif
22 : :
23 : : #include <argp.h>
24 : : #include <assert.h>
25 : : #include <ctype.h>
26 : : #include <dwarf.h>
27 : : #include <errno.h>
28 : : #include <fcntl.h>
29 : : #include <gelf.h>
30 : : #include <inttypes.h>
31 : : #include <langinfo.h>
32 : : #include <libdw.h>
33 : : #include <libdwfl.h>
34 : : #include <locale.h>
35 : : #include <stdarg.h>
36 : : #include <stdbool.h>
37 : : #include <stdio.h>
38 : : #include <stdio_ext.h>
39 : : #include <stdlib.h>
40 : : #include <string.h>
41 : : #include <strings.h>
42 : : #include <time.h>
43 : : #include <unistd.h>
44 : : #include <sys/stat.h>
45 : : #include <signal.h>
46 : :
47 : : #include <libeu.h>
48 : : #include <system.h>
49 : : #include <printversion.h>
50 : : #include "../libelf/libelfP.h"
51 : : #include "../libelf/common.h"
52 : : #include "../libebl/libeblP.h"
53 : : #include "../libdwelf/libdwelf.h"
54 : : #include "../libdw/libdwP.h"
55 : : #include "../libdwfl/libdwflP.h"
56 : : #include "../libdw/memory-access.h"
57 : :
58 : : #include "../libdw/known-dwarf.h"
59 : :
60 : : #ifdef __linux__
61 : : #define CORE_SIGILL SIGILL
62 : : #define CORE_SIGBUS SIGBUS
63 : : #define CORE_SIGFPE SIGFPE
64 : : #define CORE_SIGSEGV SIGSEGV
65 : : #define CORE_SI_USER SI_USER
66 : : #else
67 : : /* We want the linux version of those as that is what shows up in the core files. */
68 : : #define CORE_SIGILL 4 /* Illegal instruction (ANSI). */
69 : : #define CORE_SIGBUS 7 /* BUS error (4.2 BSD). */
70 : : #define CORE_SIGFPE 8 /* Floating-point exception (ANSI). */
71 : : #define CORE_SIGSEGV 11 /* Segmentation violation (ANSI). */
72 : : #define CORE_SI_USER 0 /* Sent by kill, sigsend. */
73 : : #endif
74 : :
75 : : /* Name and version of program. */
76 : : ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
77 : :
78 : : /* Bug report address. */
79 : : ARGP_PROGRAM_BUG_ADDRESS_DEF = PACKAGE_BUGREPORT;
80 : :
81 : : /* argp key value for --elf-section, non-ascii. */
82 : : #define ELF_INPUT_SECTION 256
83 : :
84 : : /* argp key value for --dwarf-skeleton, non-ascii. */
85 : : #define DWARF_SKELETON 257
86 : :
87 : : /* argp key value for --dyn-syms, non-ascii. */
88 : : #define PRINT_DYNSYM_TABLE 258
89 : :
90 : : /* Terrible hack for hooking unrelated skeleton/split compile units,
91 : : see __libdw_link_skel_split in print_debug. */
92 : : static bool do_not_close_dwfl = false;
93 : :
94 : : /* Definitions of arguments for argp functions. */
95 : : static const struct argp_option options[] =
96 : : {
97 : : { NULL, 0, NULL, 0, N_("ELF input selection:"), 0 },
98 : : { "elf-section", ELF_INPUT_SECTION, "SECTION", OPTION_ARG_OPTIONAL,
99 : : N_("Use the named SECTION (default .gnu_debugdata) as (compressed) ELF "
100 : : "input data"), 0 },
101 : : { "dwarf-skeleton", DWARF_SKELETON, "FILE", 0,
102 : : N_("Used with -w to find the skeleton Compile Units in FILE associated "
103 : : "with the Split Compile units in a .dwo input file"), 0 },
104 : : { NULL, 0, NULL, 0, N_("ELF output selection:"), 0 },
105 : : { "all", 'a', NULL, 0,
106 : : N_("All these plus -p .strtab -p .dynstr -p .comment"), 0 },
107 : : { "dynamic", 'd', NULL, 0, N_("Display the dynamic segment"), 0 },
108 : : { "file-header", 'h', NULL, 0, N_("Display the ELF file header"), 0 },
109 : : { "histogram", 'I', NULL, 0,
110 : : N_("Display histogram of bucket list lengths"), 0 },
111 : : { "program-headers", 'l', NULL, 0, N_("Display the program headers"), 0 },
112 : : { "segments", 'l', NULL, OPTION_ALIAS | OPTION_HIDDEN, NULL, 0 },
113 : : { "relocs", 'r', NULL, 0, N_("Display relocations"), 0 },
114 : : { "section-groups", 'g', NULL, 0, N_("Display the section groups"), 0 },
115 : : { "section-headers", 'S', NULL, 0, N_("Display the sections' headers"), 0 },
116 : : { "sections", 'S', NULL, OPTION_ALIAS | OPTION_HIDDEN, NULL, 0 },
117 : : { "symbols", 's', "SECTION", OPTION_ARG_OPTIONAL,
118 : : N_("Display the symbol table sections"), 0 },
119 : : { "syms", 's', NULL, OPTION_ALIAS | OPTION_HIDDEN, NULL, 0 },
120 : : { "dyn-syms", PRINT_DYNSYM_TABLE, NULL, 0,
121 : : N_("Display (only) the dynamic symbol table"), 0 },
122 : : { "version-info", 'V', NULL, 0, N_("Display versioning information"), 0 },
123 : : { "notes", 'n', "SECTION", OPTION_ARG_OPTIONAL, N_("Display the ELF notes"), 0 },
124 : : { "arch-specific", 'A', NULL, 0,
125 : : N_("Display architecture specific information, if any"), 0 },
126 : : { "exception", 'e', NULL, 0,
127 : : N_("Display sections for exception handling"), 0 },
128 : :
129 : : { NULL, 0, NULL, 0, N_("Additional output selection:"), 0 },
130 : : { "debug-dump", 'w', "SECTION", OPTION_ARG_OPTIONAL,
131 : : N_("Display DWARF section content. SECTION can be one of abbrev, addr, "
132 : : "aranges, decodedaranges, frame, gdb_index, info, info+, loc, line, "
133 : : "decodedline, ranges, pubnames, str, macinfo, macro or exception"), 0 },
134 : : { "hex-dump", 'x', "SECTION", 0,
135 : : N_("Dump the uninterpreted contents of SECTION, by number or name"), 0 },
136 : : { "strings", 'p', "SECTION", OPTION_ARG_OPTIONAL,
137 : : N_("Print string contents of sections"), 0 },
138 : : { "string-dump", 'p', NULL, OPTION_ALIAS | OPTION_HIDDEN, NULL, 0 },
139 : : { "archive-index", 'c', NULL, 0,
140 : : N_("Display the symbol index of an archive"), 0 },
141 : : { "use-dynamic", 'D', NULL, 0,
142 : : N_("Use the dynamic segment when possible for displaying info"), 0 },
143 : :
144 : : { NULL, 0, NULL, 0, N_("Output control:"), 0 },
145 : : { "numeric-addresses", 'N', NULL, 0,
146 : : N_("Do not find symbol names for addresses in DWARF data"), 0 },
147 : : { "unresolved-address-offsets", 'U', NULL, 0,
148 : : N_("Display just offsets instead of resolving values to addresses in DWARF data"), 0 },
149 : : { "wide", 'W', NULL, 0,
150 : : N_("Ignored for compatibility (lines always wide)"), 0 },
151 : : { "decompress", 'z', NULL, 0,
152 : : N_("Show compression information for compressed sections (when used with -S); decompress section before dumping data (when used with -p or -x)"), 0 },
153 : : { NULL, 0, NULL, 0, NULL, 0 }
154 : : };
155 : :
156 : : /* Short description of program. */
157 : : static const char doc[] = N_("\
158 : : Print information from ELF file in human-readable form.");
159 : :
160 : : /* Strings for arguments in help texts. */
161 : : static const char args_doc[] = N_("FILE...");
162 : :
163 : : /* Prototype for option handler. */
164 : : static error_t parse_opt (int key, char *arg, struct argp_state *state);
165 : :
166 : : /* Data structure to communicate with argp functions. */
167 : : static struct argp argp =
168 : : {
169 : : options, parse_opt, args_doc, doc, NULL, NULL, NULL
170 : : };
171 : :
172 : : /* If non-null, the section from which we should read to (compressed) ELF. */
173 : : static const char *elf_input_section = NULL;
174 : :
175 : : /* If non-null, the file that contains the skeleton CUs. */
176 : : static const char *dwarf_skeleton = NULL;
177 : :
178 : : /* Flags set by the option controlling the output. */
179 : :
180 : : /* True if dynamic segment should be printed. */
181 : : static bool print_dynamic_table;
182 : :
183 : : /* True if the file header should be printed. */
184 : : static bool print_file_header;
185 : :
186 : : /* True if the program headers should be printed. */
187 : : static bool print_program_header;
188 : :
189 : : /* True if relocations should be printed. */
190 : : static bool print_relocations;
191 : :
192 : : /* True if the section headers should be printed. */
193 : : static bool print_section_header;
194 : :
195 : : /* True if the symbol table should be printed. */
196 : : static bool print_symbol_table;
197 : :
198 : : /* True if (only) the dynsym table should be printed. */
199 : : static bool print_dynsym_table;
200 : :
201 : : /* True if reconstruct dynamic symbol table from the PT_DYNAMIC segment. */
202 : : static bool use_dynamic_segment;
203 : :
204 : : /* A specific section name, or NULL to print all symbol tables. */
205 : : static char *symbol_table_section;
206 : :
207 : : /* A specific section name, or NULL to print all ELF notes. */
208 : : static char *notes_section;
209 : :
210 : : /* True if the version information should be printed. */
211 : : static bool print_version_info;
212 : :
213 : : /* True if section groups should be printed. */
214 : : static bool print_section_groups;
215 : :
216 : : /* True if bucket list length histogram should be printed. */
217 : : static bool print_histogram;
218 : :
219 : : /* True if the architecture specific data should be printed. */
220 : : static bool print_arch;
221 : :
222 : : /* True if note section content should be printed. */
223 : : static bool print_notes;
224 : :
225 : : /* True if SHF_STRINGS section content should be printed. */
226 : : static bool print_string_sections;
227 : :
228 : : /* True if archive index should be printed. */
229 : : static bool print_archive_index;
230 : :
231 : : /* True if any of the control options except print_archive_index is set. */
232 : : static bool any_control_option;
233 : :
234 : : /* True if we should print addresses from DWARF in symbolic form. */
235 : : static bool print_address_names = true;
236 : :
237 : : /* True if we should print raw values instead of relativized addresses. */
238 : : static bool print_unresolved_addresses = false;
239 : :
240 : : /* True if we should print the .debug_aranges section using libdw. */
241 : : static bool decodedaranges = false;
242 : :
243 : : /* True if we should print the .debug_aranges section using libdw. */
244 : : static bool decodedline = false;
245 : :
246 : : /* True if we want to show more information about compressed sections. */
247 : : static bool print_decompress = false;
248 : :
249 : : /* True if we want to show split compile units for debug_info skeletons. */
250 : : static bool show_split_units = false;
251 : :
252 : : /* Select printing of debugging sections. */
253 : : static enum section_e
254 : : {
255 : : section_abbrev = 1, /* .debug_abbrev */
256 : : section_aranges = 2, /* .debug_aranges */
257 : : section_frame = 4, /* .debug_frame or .eh_frame & al. */
258 : : section_info = 8, /* .debug_info, (implies .debug_types) */
259 : : section_line = 16, /* .debug_line */
260 : : section_loc = 32, /* .debug_loc */
261 : : section_pubnames = 64, /* .debug_pubnames */
262 : : section_str = 128, /* .debug_str */
263 : : section_macinfo = 256, /* .debug_macinfo */
264 : : section_ranges = 512, /* .debug_ranges */
265 : : section_exception = 1024, /* .eh_frame & al. */
266 : : section_gdb_index = 2048, /* .gdb_index */
267 : : section_macro = 4096, /* .debug_macro */
268 : : section_addr = 8192, /* .debug_addr */
269 : : section_types = 16384, /* .debug_types (implied by .debug_info) */
270 : : section_all = (section_abbrev | section_aranges | section_frame
271 : : | section_info | section_line | section_loc
272 : : | section_pubnames | section_str | section_macinfo
273 : : | section_ranges | section_exception | section_gdb_index
274 : : | section_macro | section_addr | section_types)
275 : : } print_debug_sections, implicit_debug_sections;
276 : :
277 : : /* Select hex dumping of sections. */
278 : : static struct section_argument *dump_data_sections;
279 : : static struct section_argument **dump_data_sections_tail = &dump_data_sections;
280 : :
281 : : /* Select string dumping of sections. */
282 : : static struct section_argument *string_sections;
283 : : static struct section_argument **string_sections_tail = &string_sections;
284 : :
285 : : struct section_argument
286 : : {
287 : : struct section_argument *next;
288 : : const char *arg;
289 : : bool implicit;
290 : : };
291 : :
292 : : /* Numbers of sections and program headers in the file. */
293 : : static size_t shnum;
294 : : static size_t phnum;
295 : :
296 : :
297 : : /* Declarations of local functions. */
298 : : static void process_file (int fd, const char *fname, bool only_one);
299 : : static void process_elf_file (Dwfl_Module *dwflmod, int fd);
300 : : static void print_ehdr (Ebl *ebl, GElf_Ehdr *ehdr);
301 : : static void print_shdr (Ebl *ebl, GElf_Ehdr *ehdr);
302 : : static void print_phdr (Ebl *ebl, GElf_Ehdr *ehdr);
303 : : static void print_scngrp (Ebl *ebl);
304 : : static void print_dynamic (Ebl *ebl);
305 : : static void print_relocs (Ebl *ebl, Dwfl_Module *mod, GElf_Ehdr *ehdr);
306 : : static void handle_relocs_rel (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn,
307 : : GElf_Shdr *shdr);
308 : : static void handle_relocs_rela (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn,
309 : : GElf_Shdr *shdr);
310 : : static void handle_relocs_relr (Ebl *ebl, Dwfl_Module *mod, Elf_Scn *scn,
311 : : GElf_Shdr *shdr);
312 : : static bool print_symtab (Ebl *ebl, int type);
313 : : static bool handle_symtab (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr);
314 : : static bool handle_dynamic_symtab (Ebl *ebl);
315 : : static void
316 : : process_symtab(
317 : : Ebl * ebl,
318 : : unsigned int nsyms,
319 : : Elf64_Word idx,
320 : : Elf32_Word verneed_stridx,
321 : : Elf32_Word verdef_stridx,
322 : : Elf_Data * symdata,
323 : : Elf_Data * versym_data,
324 : : Elf_Data * symstr_data,
325 : : Elf_Data * verneed_data,
326 : : Elf_Data * verdef_data,
327 : : Elf_Data * xndx_data);
328 : : static void print_verinfo (Ebl *ebl);
329 : : static void handle_verneed (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr);
330 : : static void handle_verdef (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr);
331 : : static void handle_versym (Ebl *ebl, Elf_Scn *scn,
332 : : GElf_Shdr *shdr);
333 : : static void print_debug (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr);
334 : : static void handle_hash (Ebl *ebl);
335 : : static void handle_notes (Ebl *ebl, GElf_Ehdr *ehdr);
336 : : static void print_liblist (Ebl *ebl);
337 : : static void print_attributes (Ebl *ebl, const GElf_Ehdr *ehdr);
338 : : static void dump_data (Ebl *ebl);
339 : : static void dump_strings (Ebl *ebl);
340 : : static void print_strings (Ebl *ebl);
341 : : static void dump_archive_index (Elf *, const char *);
342 : : static void print_dwarf_addr (Dwfl_Module *dwflmod, int address_size,
343 : : Dwarf_Addr address, Dwarf_Addr raw);
344 : :
345 : : enum dyn_idx
346 : : {
347 : : i_symtab_shndx,
348 : : i_strsz,
349 : : i_verneed,
350 : : i_verneednum,
351 : : i_verdef,
352 : : i_verdefnum,
353 : : i_versym,
354 : : i_symtab,
355 : : i_strtab,
356 : : i_hash,
357 : : i_gnu_hash,
358 : : i_max
359 : : };
360 : :
361 : : /* Declarations of local functions for use-dynamic. */
362 : : static Elf_Data *get_dynscn_strtab (Elf *elf, GElf_Phdr *phdr);
363 : : static void get_dynscn_addrs (Elf *elf, GElf_Phdr *phdr, GElf_Addr addrs[i_max]);
364 : : static void find_offsets (Elf *elf, GElf_Addr main_bias, size_t n,
365 : : GElf_Addr addrs[n], GElf_Off offs[n]);
366 : :
367 : : /* Looked up once with gettext in main. */
368 : : static char *yes_str;
369 : : static char *no_str;
370 : :
371 : : static void
372 : 1832 : cleanup_list (struct section_argument *list)
373 : : {
374 [ + + + + ]: 2506 : while (list != NULL)
375 : : {
376 : 674 : struct section_argument *a = list;
377 : 674 : list = a->next;
378 : 674 : free (a);
379 : : }
380 : : }
381 : :
382 : : int
383 : 916 : main (int argc, char *argv[])
384 : : {
385 : : /* We use no threads here which can interfere with handling a stream. */
386 : 916 : (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER);
387 : :
388 : : /* Set locale. */
389 : 916 : setlocale (LC_ALL, "");
390 : :
391 : : /* Initialize the message catalog. */
392 : 916 : textdomain (PACKAGE_TARNAME);
393 : :
394 : : /* Look up once. */
395 : 916 : yes_str = _("yes");
396 : 916 : no_str = _("no");
397 : :
398 : : /* Parse and process arguments. */
399 : 916 : int remaining;
400 : 916 : argp_parse (&argp, argc, argv, 0, &remaining, NULL);
401 : :
402 : : /* Before we start tell the ELF library which version we are using. */
403 : 916 : elf_version (EV_CURRENT);
404 : :
405 : : /* Now process all the files given at the command line. */
406 : 916 : bool only_one = remaining + 1 == argc;
407 : 994 : do
408 : : {
409 : : /* Open the file. */
410 : 994 : int fd = open (argv[remaining], O_RDONLY);
411 [ - + ]: 994 : if (fd == -1)
412 : : {
413 : 0 : error (0, errno, _("cannot open input file '%s'"), argv[remaining]);
414 : 0 : continue;
415 : : }
416 : :
417 : 994 : process_file (fd, argv[remaining], only_one);
418 : :
419 : 994 : close (fd);
420 : : }
421 [ + + ]: 994 : while (++remaining < argc);
422 : :
423 : 916 : cleanup_list (dump_data_sections);
424 : 916 : cleanup_list (string_sections);
425 : :
426 : 916 : return error_message_count != 0;
427 : : }
428 : :
429 : : static void
430 : 674 : add_dump_section (const char *name,
431 : : int key,
432 : : bool implicit)
433 : : {
434 : 674 : struct section_argument *a = xmalloc (sizeof *a);
435 : 674 : a->arg = name;
436 : 674 : a->next = NULL;
437 : 674 : a->implicit = implicit;
438 : 1348 : struct section_argument ***tailp
439 [ + + ]: 674 : = key == 'x' ? &dump_data_sections_tail : &string_sections_tail;
440 : 674 : **tailp = a;
441 : 674 : *tailp = &a->next;
442 : 674 : }
443 : :
444 : : /* Handle program arguments. */
445 : : static error_t
446 : 5818 : parse_opt (int key, char *arg,
447 : : struct argp_state *state __attribute__ ((unused)))
448 : : {
449 [ + + - + : 5818 : switch (key)
+ - + + -
+ + + + +
+ - + + +
+ + + - +
+ + + + ]
450 : : {
451 : 220 : case 'a':
452 : 220 : print_file_header = true;
453 : 220 : print_program_header = true;
454 : 220 : print_relocations = true;
455 : 220 : print_section_header = true;
456 : 220 : print_symbol_table = true;
457 : 220 : print_version_info = true;
458 : 220 : print_dynamic_table = true;
459 : 220 : print_section_groups = true;
460 : 220 : print_histogram = true;
461 : 220 : print_arch = true;
462 : 220 : print_notes = true;
463 : 220 : implicit_debug_sections |= section_exception;
464 : 220 : add_dump_section (".strtab", key, true);
465 : 220 : add_dump_section (".dynstr", key, true);
466 : 220 : add_dump_section (".comment", key, true);
467 : 220 : any_control_option = true;
468 : 220 : break;
469 : 8 : case 'A':
470 : 8 : print_arch = true;
471 : 8 : any_control_option = true;
472 : 8 : break;
473 : 6 : case 'd':
474 : 6 : print_dynamic_table = true;
475 : 6 : any_control_option = true;
476 : 6 : break;
477 : 2 : case 'D':
478 : 2 : use_dynamic_segment = true;
479 : 2 : break;
480 : 0 : case 'e':
481 : 0 : print_debug_sections |= section_exception;
482 : 0 : any_control_option = true;
483 : 0 : break;
484 : 18 : case 'g':
485 : 18 : print_section_groups = true;
486 : 18 : any_control_option = true;
487 : 18 : break;
488 : 6 : case 'h':
489 : 6 : print_file_header = true;
490 : 6 : any_control_option = true;
491 : 6 : break;
492 : 0 : case 'I':
493 : 0 : print_histogram = true;
494 : 0 : any_control_option = true;
495 : 0 : break;
496 : 4 : case 'l':
497 : 4 : print_program_header = true;
498 : 4 : any_control_option = true;
499 : 4 : break;
500 : 46 : case 'n':
501 : 46 : print_notes = true;
502 : 46 : any_control_option = true;
503 : 46 : notes_section = arg;
504 : 46 : break;
505 : 2 : case 'r':
506 : 2 : print_relocations = true;
507 : 2 : any_control_option = true;
508 : 2 : break;
509 : 322 : case 'S':
510 : 322 : print_section_header = true;
511 : 322 : any_control_option = true;
512 : 322 : break;
513 : 34 : case 's':
514 : 34 : print_symbol_table = true;
515 : 34 : any_control_option = true;
516 : 34 : symbol_table_section = arg;
517 : 34 : break;
518 : 2 : case PRINT_DYNSYM_TABLE:
519 : 2 : print_dynsym_table = true;
520 : 2 : any_control_option = true;
521 : 2 : break;
522 : 0 : case 'V':
523 : 0 : print_version_info = true;
524 : 0 : any_control_option = true;
525 : 0 : break;
526 : 4 : case 'c':
527 : 4 : print_archive_index = true;
528 : 4 : break;
529 : 262 : case 'w':
530 [ + + ]: 262 : if (arg == NULL)
531 : : {
532 : 86 : print_debug_sections = section_all;
533 : 86 : implicit_debug_sections = section_info;
534 : 86 : show_split_units = true;
535 : : }
536 [ - + ]: 176 : else if (strcmp (arg, "abbrev") == 0)
537 : 0 : print_debug_sections |= section_abbrev;
538 [ + + ]: 176 : else if (strcmp (arg, "addr") == 0)
539 : : {
540 : 4 : print_debug_sections |= section_addr;
541 : 4 : implicit_debug_sections |= section_info;
542 : : }
543 [ + + ]: 172 : else if (strcmp (arg, "aranges") == 0)
544 : 6 : print_debug_sections |= section_aranges;
545 [ + + ]: 166 : else if (strcmp (arg, "decodedaranges") == 0)
546 : : {
547 : 2 : print_debug_sections |= section_aranges;
548 : 2 : decodedaranges = true;
549 : : }
550 [ + + ]: 164 : else if (strcmp (arg, "ranges") == 0)
551 : : {
552 : 26 : print_debug_sections |= section_ranges;
553 : 26 : implicit_debug_sections |= section_info;
554 : : }
555 [ + + + + ]: 138 : else if (strcmp (arg, "frame") == 0 || strcmp (arg, "frames") == 0)
556 : 6 : print_debug_sections |= section_frame;
557 [ + + ]: 132 : else if (strcmp (arg, "info") == 0)
558 : : {
559 : 38 : print_debug_sections |= section_info;
560 : 38 : print_debug_sections |= section_types;
561 : : }
562 [ + + ]: 94 : else if (strcmp (arg, "info+") == 0)
563 : : {
564 : 4 : print_debug_sections |= section_info;
565 : 4 : print_debug_sections |= section_types;
566 : 4 : show_split_units = true;
567 : : }
568 [ + + ]: 90 : else if (strcmp (arg, "loc") == 0)
569 : : {
570 : 38 : print_debug_sections |= section_loc;
571 : 38 : implicit_debug_sections |= section_info;
572 : : }
573 [ + + ]: 52 : else if (strcmp (arg, "line") == 0)
574 : 16 : print_debug_sections |= section_line;
575 [ + + ]: 36 : else if (strcmp (arg, "decodedline") == 0)
576 : : {
577 : 14 : print_debug_sections |= section_line;
578 : 14 : decodedline = true;
579 : : }
580 [ - + ]: 22 : else if (strcmp (arg, "pubnames") == 0)
581 : 0 : print_debug_sections |= section_pubnames;
582 [ + + ]: 22 : else if (strcmp (arg, "str") == 0)
583 : : {
584 : 6 : print_debug_sections |= section_str;
585 : : /* For mapping string offset tables to CUs. */
586 : 6 : implicit_debug_sections |= section_info;
587 : : }
588 [ - + ]: 16 : else if (strcmp (arg, "macinfo") == 0)
589 : 0 : print_debug_sections |= section_macinfo;
590 [ + + ]: 16 : else if (strcmp (arg, "macro") == 0)
591 : 8 : print_debug_sections |= section_macro;
592 [ - + ]: 8 : else if (strcmp (arg, "exception") == 0)
593 : 0 : print_debug_sections |= section_exception;
594 [ + - ]: 8 : else if (strcmp (arg, "gdb_index") == 0)
595 : 8 : print_debug_sections |= section_gdb_index;
596 : : else
597 : : {
598 : 0 : fprintf (stderr, _("Unknown DWARF debug section `%s'.\n"),
599 : : arg);
600 : 0 : argp_help (&argp, stderr, ARGP_HELP_SEE,
601 : : program_invocation_short_name);
602 : 0 : exit (1);
603 : : }
604 : 262 : any_control_option = true;
605 : 262 : break;
606 : 2 : case 'p':
607 : 2 : any_control_option = true;
608 [ - + ]: 2 : if (arg == NULL)
609 : : {
610 : 0 : print_string_sections = true;
611 : 0 : break;
612 : : }
613 : 14 : FALLTHROUGH;
614 : : case 'x':
615 : 14 : add_dump_section (arg, key, false);
616 : 14 : any_control_option = true;
617 : 14 : break;
618 : 90 : case 'N':
619 : 90 : print_address_names = false;
620 : 90 : break;
621 : 56 : case 'U':
622 : 56 : print_unresolved_addresses = true;
623 : 56 : break;
624 : 0 : case ARGP_KEY_NO_ARGS:
625 : 0 : fputs (_("Missing file name.\n"), stderr);
626 : 0 : goto do_argp_help;
627 : 916 : case ARGP_KEY_FINI:
628 [ + + + - ]: 916 : if (! any_control_option && ! print_archive_index)
629 : : {
630 : 0 : fputs (_("No operation specified.\n"), stderr);
631 : 0 : do_argp_help:
632 : 0 : argp_help (&argp, stderr, ARGP_HELP_SEE,
633 : : program_invocation_short_name);
634 : 0 : exit (EXIT_FAILURE);
635 : : }
636 : : break;
637 : : case 'W': /* Ignored. */
638 : : break;
639 : 122 : case 'z':
640 : 122 : print_decompress = true;
641 : 122 : break;
642 : 10 : case ELF_INPUT_SECTION:
643 [ + - ]: 10 : if (arg == NULL)
644 : 10 : elf_input_section = ".gnu_debugdata";
645 : : else
646 : 0 : elf_input_section = arg;
647 : : break;
648 : 10 : case DWARF_SKELETON:
649 : 10 : dwarf_skeleton = arg;
650 : 10 : break;
651 : : default:
652 : : return ARGP_ERR_UNKNOWN;
653 : : }
654 : : return 0;
655 : : }
656 : :
657 : :
658 : : /* Create a file descriptor to read the data from the
659 : : elf_input_section given a file descriptor to an ELF file. */
660 : : static int
661 : 10 : open_input_section (int fd)
662 : : {
663 : 10 : size_t shnums;
664 : 10 : size_t cnt;
665 : 10 : size_t shstrndx;
666 : 10 : Elf *elf = elf_begin (fd, ELF_C_READ_MMAP, NULL);
667 [ - + ]: 10 : if (elf == NULL)
668 : : {
669 : 0 : error (0, 0, _("cannot generate Elf descriptor: %s"),
670 : : elf_errmsg (-1));
671 : 0 : return -1;
672 : : }
673 : :
674 [ - + ]: 10 : if (elf_getshdrnum (elf, &shnums) < 0)
675 : : {
676 : 0 : error (0, 0, _("cannot determine number of sections: %s"),
677 : : elf_errmsg (-1));
678 : 0 : open_error:
679 : 0 : elf_end (elf);
680 : 0 : return -1;
681 : : }
682 : :
683 [ - + ]: 10 : if (elf_getshdrstrndx (elf, &shstrndx) < 0)
684 : : {
685 : 0 : error (0, 0, _("cannot get section header string table index"));
686 : 0 : goto open_error;
687 : : }
688 : :
689 [ + - ]: 236 : for (cnt = 0; cnt < shnums; ++cnt)
690 : : {
691 : 236 : Elf_Scn *scn = elf_getscn (elf, cnt);
692 [ - + ]: 236 : if (scn == NULL)
693 : : {
694 : 0 : error (0, 0, _("cannot get section: %s"),
695 : : elf_errmsg (-1));
696 : 0 : goto open_error;
697 : : }
698 : :
699 : 236 : GElf_Shdr shdr_mem;
700 : 236 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
701 [ - + ]: 236 : if (unlikely (shdr == NULL))
702 : : {
703 : 0 : error (0, 0, _("cannot get section header: %s"),
704 : : elf_errmsg (-1));
705 : 0 : goto open_error;
706 : : }
707 : :
708 : 236 : const char *sname = elf_strptr (elf, shstrndx, shdr->sh_name);
709 [ - + ]: 236 : if (sname == NULL)
710 : : {
711 : 0 : error (0, 0, _("cannot get section name"));
712 : 0 : goto open_error;
713 : : }
714 : :
715 [ + + ]: 236 : if (strcmp (sname, elf_input_section) == 0)
716 : : {
717 : 10 : Elf_Data *data = elf_rawdata (scn, NULL);
718 [ - + ]: 10 : if (data == NULL)
719 : : {
720 : 0 : error (0, 0, _("cannot get %s content: %s"),
721 : : sname, elf_errmsg (-1));
722 : 0 : goto open_error;
723 : : }
724 : :
725 : : /* Create (and immediately unlink) a temporary file to store
726 : : section data in to create a file descriptor for it. */
727 [ + - ]: 10 : const char *tmpdir = getenv ("TMPDIR") ?: P_tmpdir;
728 : 10 : static const char suffix[] = "/readelfXXXXXX";
729 : 10 : int tmplen = strlen (tmpdir) + sizeof (suffix);
730 : 10 : char *tempname = alloca (tmplen);
731 : 10 : sprintf (tempname, "%s%s", tmpdir, suffix);
732 : :
733 : 10 : int sfd = mkstemp (tempname);
734 [ - + ]: 10 : if (sfd == -1)
735 : : {
736 : 0 : error (0, 0, _("cannot create temp file '%s'"),
737 : : tempname);
738 : 0 : goto open_error;
739 : : }
740 : 10 : unlink (tempname);
741 : :
742 : 10 : ssize_t size = data->d_size;
743 [ - + ]: 10 : if (write_retry (sfd, data->d_buf, size) != size)
744 : : {
745 : 0 : error (0, 0, _("cannot write section data"));
746 : 0 : goto open_error;
747 : : }
748 : :
749 [ - + ]: 10 : if (elf_end (elf) != 0)
750 : : {
751 : 0 : error (0, 0, _("error while closing Elf descriptor: %s"),
752 : : elf_errmsg (-1));
753 : 10 : return -1;
754 : : }
755 : :
756 [ - + ]: 10 : if (lseek (sfd, 0, SEEK_SET) == -1)
757 : : {
758 : 0 : error (0, 0, _("error while rewinding file descriptor"));
759 : 0 : return -1;
760 : : }
761 : :
762 : : return sfd;
763 : : }
764 : : }
765 : :
766 : : /* Named section not found. */
767 [ # # ]: 0 : if (elf_end (elf) != 0)
768 : 0 : error (0, 0, _("error while closing Elf descriptor: %s"),
769 : : elf_errmsg (-1));
770 : : return -1;
771 : : }
772 : :
773 : : /* Check if the file is an archive, and if so dump its index. */
774 : : static void
775 : 4 : check_archive_index (int fd, const char *fname, bool only_one)
776 : : {
777 : : /* Create an `Elf' descriptor. */
778 : 4 : Elf *elf = elf_begin (fd, ELF_C_READ_MMAP, NULL);
779 [ - + ]: 4 : if (elf == NULL)
780 : 0 : error (0, 0, _("cannot generate Elf descriptor: %s"),
781 : : elf_errmsg (-1));
782 : : else
783 : : {
784 [ + - ]: 4 : if (elf_kind (elf) == ELF_K_AR)
785 : : {
786 [ - + ]: 4 : if (!only_one)
787 : 0 : printf ("\n%s:\n\n", fname);
788 : 4 : dump_archive_index (elf, fname);
789 : : }
790 : : else
791 : 4 : error (0, 0,
792 : 0 : _("'%s' is not an archive, cannot print archive index"),
793 : : fname);
794 : :
795 : : /* Now we can close the descriptor. */
796 [ - + ]: 4 : if (elf_end (elf) != 0)
797 : 0 : error (0, 0, _("error while closing Elf descriptor: %s"),
798 : : elf_errmsg (-1));
799 : : }
800 : 4 : }
801 : :
802 : : /* Trivial callback used for checking if we opened an archive. */
803 : : static int
804 : 894 : count_dwflmod (Dwfl_Module *dwflmod __attribute__ ((unused)),
805 : : void **userdata __attribute__ ((unused)),
806 : : const char *name __attribute__ ((unused)),
807 : : Dwarf_Addr base __attribute__ ((unused)),
808 : : void *arg)
809 : : {
810 [ + - ]: 894 : if (*(bool *) arg)
811 : : return DWARF_CB_ABORT;
812 : 894 : *(bool *) arg = true;
813 : 894 : return DWARF_CB_OK;
814 : : }
815 : :
816 : : struct process_dwflmod_args
817 : : {
818 : : int fd;
819 : : bool only_one;
820 : : };
821 : :
822 : : static int
823 : 990 : process_dwflmod (Dwfl_Module *dwflmod,
824 : : void **userdata __attribute__ ((unused)),
825 : : const char *name __attribute__ ((unused)),
826 : : Dwarf_Addr base __attribute__ ((unused)),
827 : : void *arg)
828 : : {
829 : 990 : const struct process_dwflmod_args *a = arg;
830 : :
831 : : /* Print the file name. */
832 [ + + ]: 990 : if (!a->only_one)
833 : : {
834 : 96 : const char *fname;
835 : 96 : dwfl_module_info (dwflmod, NULL, NULL, NULL, NULL, NULL, &fname, NULL);
836 : :
837 : 96 : printf ("\n%s:\n\n", fname);
838 : : }
839 : :
840 : 990 : process_elf_file (dwflmod, a->fd);
841 : :
842 : 990 : return DWARF_CB_OK;
843 : : }
844 : :
845 : : /* Stub libdwfl callback, only the ELF handle already open is ever used.
846 : : Only used for finding the alternate debug file if the Dwarf comes from
847 : : the main file. We are not interested in separate debuginfo. */
848 : : static int
849 : 284 : find_no_debuginfo (Dwfl_Module *mod,
850 : : void **userdata,
851 : : const char *modname,
852 : : Dwarf_Addr base,
853 : : const char *file_name,
854 : : const char *debuglink_file,
855 : : GElf_Word debuglink_crc,
856 : : char **debuginfo_file_name)
857 : : {
858 : 284 : Dwarf_Addr dwbias;
859 : 284 : dwfl_module_info (mod, NULL, NULL, NULL, &dwbias, NULL, NULL, NULL);
860 : :
861 : : /* We are only interested if the Dwarf has been setup on the main
862 : : elf file but is only missing the alternate debug link. If dwbias
863 : : hasn't even been setup, this is searching for separate debuginfo
864 : : for the main elf. We don't care in that case. */
865 [ + + ]: 284 : if (dwbias == (Dwarf_Addr) -1)
866 : : return -1;
867 : :
868 : 44 : return dwfl_standard_find_debuginfo (mod, userdata, modname, base,
869 : : file_name, debuglink_file,
870 : : debuglink_crc, debuginfo_file_name);
871 : : }
872 : :
873 : : static Dwfl *
874 : 1008 : create_dwfl (int fd, const char *fname)
875 : : {
876 : : /* Duplicate an fd for dwfl_report_offline to swallow. */
877 : 1008 : int dwfl_fd = dup (fd);
878 [ - + ]: 1008 : if (unlikely (dwfl_fd < 0))
879 : 0 : error_exit (errno, "dup");
880 : :
881 : : /* Use libdwfl in a trivial way to open the libdw handle for us.
882 : : This takes care of applying relocations to DWARF data in ET_REL files. */
883 : 1008 : static const Dwfl_Callbacks callbacks =
884 : : {
885 : : .section_address = dwfl_offline_section_address,
886 : : .find_debuginfo = find_no_debuginfo
887 : : };
888 : 1008 : Dwfl *dwfl = dwfl_begin (&callbacks);
889 [ + - ]: 1008 : if (likely (dwfl != NULL))
890 : : /* Let 0 be the logical address of the file (or first in archive). */
891 : 1008 : dwfl->offline_next_address = 0;
892 [ - + ]: 1008 : if (dwfl_report_offline (dwfl, fname, fname, dwfl_fd) == NULL)
893 : : {
894 : 0 : struct stat st;
895 [ # # ]: 0 : if (fstat (dwfl_fd, &st) != 0)
896 : 0 : error (0, errno, _("cannot stat input file"));
897 [ # # ]: 0 : else if (unlikely (st.st_size == 0))
898 : 0 : error (0, 0, _("input file is empty"));
899 : : else
900 : 0 : error (0, 0, _("failed reading '%s': %s"),
901 : : fname, dwfl_errmsg (-1));
902 : 0 : close (dwfl_fd); /* Consumed on success, not on failure. */
903 : 0 : dwfl = NULL;
904 : : }
905 : : else
906 : 1008 : dwfl_report_end (dwfl, NULL, NULL);
907 : :
908 : 1008 : return dwfl;
909 : : }
910 : :
911 : : /* Process one input file. */
912 : : static void
913 : 994 : process_file (int fd, const char *fname, bool only_one)
914 : : {
915 [ + + ]: 994 : if (print_archive_index)
916 : 4 : check_archive_index (fd, fname, only_one);
917 : :
918 [ + + ]: 994 : if (!any_control_option)
919 : : return;
920 : :
921 [ + + ]: 990 : if (elf_input_section != NULL)
922 : : {
923 : : /* Replace fname and fd with section content. */
924 : 10 : char *fnname = alloca (strlen (fname) + strlen (elf_input_section) + 2);
925 : 10 : sprintf (fnname, "%s:%s", fname, elf_input_section);
926 : 10 : fd = open_input_section (fd);
927 [ - + ]: 10 : if (fd == -1)
928 : : {
929 : 0 : error (0, 0, _("No such section '%s' in '%s'"),
930 : : elf_input_section, fname);
931 : 0 : return;
932 : : }
933 : : fname = fnname;
934 : : }
935 : :
936 : 990 : Dwfl *dwfl = create_dwfl (fd, fname);
937 [ + - ]: 990 : if (dwfl != NULL)
938 : : {
939 [ + + ]: 990 : if (only_one)
940 : : {
941 : : /* Clear ONLY_ONE if we have multiple modules, from an archive. */
942 : 894 : bool seen = false;
943 : 894 : only_one = dwfl_getmodules (dwfl, &count_dwflmod, &seen, 0) == 0;
944 : : }
945 : :
946 : : /* Process the one or more modules gleaned from this file. */
947 : 990 : struct process_dwflmod_args a = { .fd = fd, .only_one = only_one };
948 : 990 : dwfl_getmodules (dwfl, &process_dwflmod, &a, 0);
949 : : }
950 : : /* Terrible hack for hooking unrelated skeleton/split compile units,
951 : : see __libdw_link_skel_split in print_debug. */
952 [ + - ]: 990 : if (! do_not_close_dwfl)
953 : 990 : dwfl_end (dwfl);
954 : :
955 : : /* Need to close the replaced fd if we created it. Caller takes
956 : : care of original. */
957 [ + + ]: 990 : if (elf_input_section != NULL)
958 : 10 : close (fd);
959 : : }
960 : :
961 : : /* Check whether there are any compressed sections in the ELF file. */
962 : : static bool
963 : 528 : elf_contains_chdrs (Elf *elf)
964 : : {
965 : 528 : Elf_Scn *scn = NULL;
966 [ + + ]: 799046 : while ((scn = elf_nextscn (elf, scn)) != NULL)
967 : : {
968 : 798632 : GElf_Shdr shdr_mem;
969 : 798632 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
970 [ + - + + ]: 798632 : if (shdr != NULL && (shdr->sh_flags & SHF_COMPRESSED) != 0)
971 : 114 : return true;
972 : : }
973 : : return false;
974 : : }
975 : :
976 : : /* Process one ELF file. */
977 : : static void
978 : 990 : process_elf_file (Dwfl_Module *dwflmod, int fd)
979 : : {
980 : 990 : GElf_Addr dwflbias;
981 : 990 : Elf *elf = dwfl_module_getelf (dwflmod, &dwflbias);
982 : :
983 : 990 : GElf_Ehdr ehdr_mem;
984 : 990 : GElf_Ehdr *ehdr = gelf_getehdr (elf, &ehdr_mem);
985 : :
986 [ - + ]: 990 : if (ehdr == NULL)
987 : : {
988 : 0 : error (0, 0, _("cannot read ELF header: %s"), elf_errmsg (-1));
989 : 0 : return;
990 : : }
991 : :
992 : 990 : Ebl *ebl = ebl_openbackend (elf);
993 [ - + ]: 990 : if (unlikely (ebl == NULL))
994 : : {
995 : 0 : ebl_error:
996 : 0 : error (0, errno, _("cannot create EBL handle"));
997 : 0 : return;
998 : : }
999 : :
1000 : : /* Determine the number of sections. */
1001 [ - + ]: 990 : if (unlikely (elf_getshdrnum (ebl->elf, &shnum) < 0))
1002 : 0 : error_exit (0, _("cannot determine number of sections: %s"),
1003 : : elf_errmsg (-1));
1004 : :
1005 : : /* Determine the number of phdrs. */
1006 [ - + ]: 990 : if (unlikely (elf_getphdrnum (ebl->elf, &phnum) < 0))
1007 : 0 : error_exit (0, _("cannot determine number of program headers: %s"),
1008 : : elf_errmsg (-1));
1009 : :
1010 : : /* For an ET_REL file, libdwfl has adjusted the in-core shdrs and
1011 : : may have applied relocation to some sections. If there are any
1012 : : compressed sections, any pass (or libdw/libdwfl) might have
1013 : : uncompressed them. So we need to get a fresh Elf handle on the
1014 : : file to display those. */
1015 : 2168 : bool print_unchanged = ((print_section_header
1016 [ + + ]: 448 : || print_relocations
1017 [ + + ]: 446 : || dump_data_sections != NULL
1018 [ + + ]: 434 : || print_notes)
1019 [ + + + + ]: 1050 : && (ehdr->e_type == ET_REL
1020 [ + + ]: 528 : || elf_contains_chdrs (ebl->elf)));
1021 : :
1022 : 188 : Elf *pure_elf = NULL;
1023 : 188 : Ebl *pure_ebl = ebl;
1024 : 188 : if (print_unchanged)
1025 : : {
1026 : : /* Read the file afresh. */
1027 : 188 : off_t aroff = elf_getaroff (elf);
1028 : 188 : pure_elf = dwelf_elf_begin (fd);
1029 [ - + ]: 188 : if (aroff > 0)
1030 : : {
1031 : : /* Archive member. */
1032 : 0 : (void) elf_rand (pure_elf, aroff);
1033 : 0 : Elf *armem = elf_begin (-1, ELF_C_READ_MMAP, pure_elf);
1034 : 0 : elf_end (pure_elf);
1035 : 0 : pure_elf = armem;
1036 : : }
1037 [ - + ]: 188 : if (pure_elf == NULL)
1038 : : {
1039 : 0 : error (0, 0, _("cannot read ELF: %s"), elf_errmsg (-1));
1040 : 0 : return;
1041 : : }
1042 : 188 : pure_ebl = ebl_openbackend (pure_elf);
1043 [ - + ]: 188 : if (pure_ebl == NULL)
1044 : 0 : goto ebl_error;
1045 : : }
1046 : :
1047 : 990 : bool symtab_printed = false;
1048 : :
1049 [ + + ]: 990 : if (print_file_header)
1050 : 226 : print_ehdr (ebl, ehdr);
1051 [ + + ]: 990 : if (print_section_header)
1052 : 542 : print_shdr (pure_ebl, ehdr);
1053 [ + + ]: 990 : if (print_program_header)
1054 : 224 : print_phdr (ebl, ehdr);
1055 [ + + ]: 990 : if (print_section_groups)
1056 : 238 : print_scngrp (ebl);
1057 [ + + ]: 990 : if (print_dynamic_table)
1058 : 226 : print_dynamic (ebl);
1059 [ + + ]: 990 : if (print_relocations)
1060 : 222 : print_relocs (pure_ebl, dwflmod, ehdr);
1061 [ + + ]: 990 : if (print_histogram)
1062 : 220 : handle_hash (ebl);
1063 [ + + + + ]: 990 : if (print_symbol_table || print_dynsym_table)
1064 : 256 : symtab_printed |= print_symtab (ebl, SHT_DYNSYM);
1065 [ + + ]: 990 : if (print_version_info)
1066 : 220 : print_verinfo (ebl);
1067 [ + + + - ]: 990 : if (print_symbol_table && !use_dynamic_segment)
1068 : 254 : symtab_printed |= print_symtab (ebl, SHT_SYMTAB);
1069 : :
1070 [ + + + + ]: 990 : if ((print_symbol_table || print_dynsym_table)
1071 [ + + + + ]: 256 : && !symtab_printed && symbol_table_section != NULL)
1072 : 2 : printf ("WARNING: %s: '%s'\n", _("cannot find section"),
1073 : : symbol_table_section);
1074 : :
1075 [ + + ]: 990 : if (print_arch)
1076 : 228 : print_liblist (ebl);
1077 [ + + ]: 990 : if (print_arch)
1078 : 228 : print_attributes (ebl, ehdr);
1079 [ + + ]: 990 : if (dump_data_sections != NULL)
1080 : 12 : dump_data (pure_ebl);
1081 [ + + ]: 990 : if (string_sections != NULL)
1082 : 222 : dump_strings (ebl);
1083 [ + + ]: 990 : if ((print_debug_sections | implicit_debug_sections) != 0)
1084 : 532 : print_debug (dwflmod, ebl, ehdr);
1085 [ + + ]: 990 : if (print_notes)
1086 : 266 : handle_notes (pure_ebl, ehdr);
1087 [ - + ]: 990 : if (print_string_sections)
1088 : 0 : print_strings (ebl);
1089 : :
1090 [ + + ]: 990 : if (pure_ebl != ebl)
1091 : : {
1092 : 188 : ebl_closebackend (ebl);
1093 : 188 : ebl_closebackend (pure_ebl);
1094 : 188 : elf_end (pure_elf);
1095 : : }
1096 : : else
1097 : 802 : ebl_closebackend (ebl);
1098 : : }
1099 : :
1100 : :
1101 : : /* Print file type. */
1102 : : static void
1103 : 226 : print_file_type (unsigned short int e_type)
1104 : : {
1105 [ + - ]: 226 : if (likely (e_type <= ET_CORE))
1106 : : {
1107 : 226 : static const char *const knowntypes[] =
1108 : : {
1109 : : N_("NONE (None)"),
1110 : : N_("REL (Relocatable file)"),
1111 : : N_("EXEC (Executable file)"),
1112 : : N_("DYN (Shared object file)"),
1113 : : N_("CORE (Core file)")
1114 : : };
1115 : 226 : puts (_(knowntypes[e_type]));
1116 : : }
1117 [ # # ]: 0 : else if (e_type >= ET_LOOS && e_type <= ET_HIOS)
1118 : 0 : printf (_("OS Specific: (%x)\n"), e_type);
1119 [ # # ]: 0 : else if (e_type >= ET_LOPROC /* && e_type <= ET_HIPROC always true */)
1120 : 0 : printf (_("Processor Specific: (%x)\n"), e_type);
1121 : : else
1122 : 0 : puts ("???");
1123 : 226 : }
1124 : :
1125 : :
1126 : : /* Print ELF header. */
1127 : : static void
1128 : 226 : print_ehdr (Ebl *ebl, GElf_Ehdr *ehdr)
1129 : : {
1130 : 226 : fputs_unlocked (_("ELF Header:\n Magic: "), stdout);
1131 [ + + ]: 3842 : for (size_t cnt = 0; cnt < EI_NIDENT; ++cnt)
1132 : 3616 : printf (" %02hhx", ehdr->e_ident[cnt]);
1133 : :
1134 : 226 : printf (_("\n Class: %s\n"),
1135 [ + + ]: 226 : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? "ELF32"
1136 : : : ehdr->e_ident[EI_CLASS] == ELFCLASS64 ? "ELF64"
1137 [ - + ]: 186 : : "\?\?\?");
1138 : :
1139 : 226 : printf (_(" Data: %s\n"),
1140 [ - + ]: 226 : ehdr->e_ident[EI_DATA] == ELFDATA2LSB
1141 : : ? "2's complement, little endian"
1142 : : : ehdr->e_ident[EI_DATA] == ELFDATA2MSB
1143 [ # # ]: 0 : ? "2's complement, big endian" : "\?\?\?");
1144 : :
1145 : 678 : printf (_(" Ident Version: %hhd %s\n"),
1146 : 226 : ehdr->e_ident[EI_VERSION],
1147 [ + - ]: 226 : ehdr->e_ident[EI_VERSION] == EV_CURRENT ? _("(current)")
1148 : : : "(\?\?\?)");
1149 : :
1150 : 226 : char buf[512];
1151 : 226 : printf (_(" OS/ABI: %s\n"),
1152 : 226 : ebl_osabi_name (ebl, ehdr->e_ident[EI_OSABI], buf, sizeof (buf)));
1153 : :
1154 : 452 : printf (_(" ABI Version: %hhd\n"),
1155 : 226 : ehdr->e_ident[EI_ABIVERSION]);
1156 : :
1157 : 226 : fputs_unlocked (_(" Type: "), stdout);
1158 : 226 : print_file_type (ehdr->e_type);
1159 : :
1160 : 226 : const char *machine = dwelf_elf_e_machine_string (ehdr->e_machine);
1161 [ + - ]: 226 : if (machine != NULL)
1162 : 226 : printf (_(" Machine: %s\n"), machine);
1163 : : else
1164 : 226 : printf (_(" Machine: <unknown>: 0x%x\n"),
1165 : 0 : ehdr->e_machine);
1166 : :
1167 : 226 : printf (_(" Version: %d %s\n"),
1168 : : ehdr->e_version,
1169 [ + - ]: 226 : ehdr->e_version == EV_CURRENT ? _("(current)") : "(\?\?\?)");
1170 : :
1171 : 226 : printf (_(" Entry point address: %#" PRIx64 "\n"),
1172 : : ehdr->e_entry);
1173 : :
1174 : 226 : printf (_(" Start of program headers: %" PRId64 " %s\n"),
1175 : : ehdr->e_phoff, _("(bytes into file)"));
1176 : :
1177 : 226 : printf (_(" Start of section headers: %" PRId64 " %s\n"),
1178 : : ehdr->e_shoff, _("(bytes into file)"));
1179 : :
1180 : 226 : printf (_(" Flags: %s\n"),
1181 : : ebl_machine_flag_name (ebl, ehdr->e_flags, buf, sizeof (buf)));
1182 : :
1183 : 452 : printf (_(" Size of this header: %" PRId16 " %s\n"),
1184 : 226 : ehdr->e_ehsize, _("(bytes)"));
1185 : :
1186 : 452 : printf (_(" Size of program header entries: %" PRId16 " %s\n"),
1187 : 226 : ehdr->e_phentsize, _("(bytes)"));
1188 : :
1189 : 452 : printf (_(" Number of program headers entries: %" PRId16),
1190 : 226 : ehdr->e_phnum);
1191 [ + + ]: 226 : if (ehdr->e_phnum == PN_XNUM)
1192 : : {
1193 : 2 : GElf_Shdr shdr_mem;
1194 : 2 : GElf_Shdr *shdr = gelf_getshdr (elf_getscn (ebl->elf, 0), &shdr_mem);
1195 [ + - ]: 2 : if (shdr != NULL)
1196 : 2 : printf (_(" (%" PRIu32 " in [0].sh_info)"),
1197 : 2 : (uint32_t) shdr->sh_info);
1198 : : else
1199 : 0 : fputs_unlocked (_(" ([0] not available)"), stdout);
1200 : : }
1201 [ - + ]: 226 : fputc_unlocked ('\n', stdout);
1202 : :
1203 : 452 : printf (_(" Size of section header entries: %" PRId16 " %s\n"),
1204 : 226 : ehdr->e_shentsize, _("(bytes)"));
1205 : :
1206 : 452 : printf (_(" Number of section headers entries: %" PRId16),
1207 : 226 : ehdr->e_shnum);
1208 [ - + ]: 226 : if (ehdr->e_shnum == 0)
1209 : : {
1210 : 0 : GElf_Shdr shdr_mem;
1211 : 0 : GElf_Shdr *shdr = gelf_getshdr (elf_getscn (ebl->elf, 0), &shdr_mem);
1212 [ # # ]: 0 : if (shdr != NULL)
1213 : 0 : printf (_(" (%" PRIu32 " in [0].sh_size)"),
1214 : 0 : (uint32_t) shdr->sh_size);
1215 : : else
1216 : 0 : fputs_unlocked (_(" ([0] not available)"), stdout);
1217 : : }
1218 [ - + ]: 226 : fputc_unlocked ('\n', stdout);
1219 : :
1220 [ - + ]: 226 : if (unlikely (ehdr->e_shstrndx == SHN_XINDEX))
1221 : : {
1222 : 0 : GElf_Shdr shdr_mem;
1223 : 0 : GElf_Shdr *shdr = gelf_getshdr (elf_getscn (ebl->elf, 0), &shdr_mem);
1224 [ # # ]: 0 : if (shdr != NULL)
1225 : : /* We managed to get the zeroth section. */
1226 : 0 : snprintf (buf, sizeof (buf), _(" (%" PRIu32 " in [0].sh_link)"),
1227 : 0 : (uint32_t) shdr->sh_link);
1228 : : else
1229 : : {
1230 : 0 : strncpy (buf, _(" ([0] not available)"), sizeof (buf) - 1);
1231 : 0 : buf[sizeof (buf) - 1] = '\0';
1232 : : }
1233 : :
1234 : 0 : printf (_(" Section header string table index: XINDEX%s\n\n"),
1235 : : buf);
1236 : : }
1237 : : else
1238 : 226 : printf (_(" Section header string table index: %" PRId16 "\n\n"),
1239 : : ehdr->e_shstrndx);
1240 : 226 : }
1241 : :
1242 : :
1243 : : static const char *
1244 : 77192 : get_visibility_type (int value)
1245 : : {
1246 [ - + - - : 77192 : switch (value)
+ ]
1247 : : {
1248 : : case STV_DEFAULT:
1249 : : return "DEFAULT";
1250 : 0 : case STV_INTERNAL:
1251 : 0 : return "INTERNAL";
1252 : 1110 : case STV_HIDDEN:
1253 : 1110 : return "HIDDEN";
1254 : 0 : case STV_PROTECTED:
1255 : 0 : return "PROTECTED";
1256 : 0 : default:
1257 : 0 : return "???";
1258 : : }
1259 : : }
1260 : :
1261 : : static const char *
1262 : 384 : elf_ch_type_name (unsigned int code)
1263 : : {
1264 : 384 : switch (code)
1265 : : {
1266 : : case 0:
1267 : : return "NONE";
1268 : 24 : case ELFCOMPRESS_ZLIB:
1269 : 24 : return "ZLIB";
1270 : 360 : case ELFCOMPRESS_ZSTD:
1271 : 360 : return "ZSTD";
1272 : 0 : default:
1273 : 0 : return "UNKNOWN";
1274 : : }
1275 : : }
1276 : :
1277 : : /* Print the section headers. */
1278 : : static void
1279 : 542 : print_shdr (Ebl *ebl, GElf_Ehdr *ehdr)
1280 : : {
1281 : 542 : size_t cnt;
1282 : 542 : size_t shstrndx;
1283 : :
1284 [ + + ]: 542 : if (! print_file_header)
1285 : : {
1286 : 322 : size_t sections;
1287 [ - + ]: 322 : if (unlikely (elf_getshdrnum (ebl->elf, §ions) < 0))
1288 : 0 : error_exit (0, _("cannot get number of sections: %s"),
1289 : : elf_errmsg (-1));
1290 : :
1291 : 322 : printf (_("\
1292 : : There are %zd section headers, starting at offset %#" PRIx64 ":\n\
1293 : : \n"),
1294 : : sections, ehdr->e_shoff);
1295 : : }
1296 : :
1297 : : /* Get the section header string table index. */
1298 [ - + ]: 542 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
1299 : 0 : error_exit (0, _("cannot get section header string table index: %s"),
1300 : : elf_errmsg (-1));
1301 : :
1302 : 542 : puts (_("Section Headers:"));
1303 : :
1304 [ + + ]: 542 : if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
1305 : 202 : puts (_("[Nr] Name Type Addr Off Size ES Flags Lk Inf Al"));
1306 : : else
1307 : 340 : puts (_("[Nr] Name Type Addr Off Size ES Flags Lk Inf Al"));
1308 : :
1309 [ + + ]: 542 : if (print_decompress)
1310 : : {
1311 [ + + ]: 112 : if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
1312 : 56 : puts (_(" [Compression Size Al]"));
1313 : : else
1314 : 56 : puts (_(" [Compression Size Al]"));
1315 : : }
1316 : :
1317 [ + + ]: 1587492 : for (cnt = 0; cnt < shnum; ++cnt)
1318 : : {
1319 : 1586950 : Elf_Scn *scn = elf_getscn (ebl->elf, cnt);
1320 : :
1321 [ - + ]: 1586950 : if (unlikely (scn == NULL))
1322 : 0 : error_exit (0, _("cannot get section: %s"),
1323 : : elf_errmsg (-1));
1324 : :
1325 : : /* Get the section header. */
1326 : 1586950 : GElf_Shdr shdr_mem;
1327 : 1586950 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
1328 [ - + ]: 1586950 : if (unlikely (shdr == NULL))
1329 : 0 : error_exit (0, _("cannot get section header: %s"),
1330 : : elf_errmsg (-1));
1331 : :
1332 : 1586950 : char flagbuf[20];
1333 : 1586950 : char *cp = flagbuf;
1334 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_WRITE)
1335 : 3040 : *cp++ = 'W';
1336 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_ALLOC)
1337 : 9408 : *cp++ = 'A';
1338 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_EXECINSTR)
1339 : 1708 : *cp++ = 'X';
1340 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_MERGE)
1341 : 444 : *cp++ = 'M';
1342 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_STRINGS)
1343 : 404 : *cp++ = 'S';
1344 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_INFO_LINK)
1345 : 226 : *cp++ = 'I';
1346 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_LINK_ORDER)
1347 : 4 : *cp++ = 'L';
1348 [ - + ]: 1586950 : if (shdr->sh_flags & SHF_OS_NONCONFORMING)
1349 : 0 : *cp++ = 'N';
1350 [ - + ]: 1586950 : if (shdr->sh_flags & SHF_GROUP)
1351 : 0 : *cp++ = 'G';
1352 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_TLS)
1353 : 30 : *cp++ = 'T';
1354 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_COMPRESSED)
1355 : 414 : *cp++ = 'C';
1356 [ - + ]: 1586950 : if (shdr->sh_flags & SHF_ORDERED)
1357 : 0 : *cp++ = 'O';
1358 [ - + ]: 1586950 : if (shdr->sh_flags & SHF_EXCLUDE)
1359 : 0 : *cp++ = 'E';
1360 [ + + ]: 1586950 : if (shdr->sh_flags & SHF_GNU_RETAIN)
1361 : 2 : *cp++ = 'R';
1362 : 1586950 : *cp = '\0';
1363 : :
1364 : 1586950 : const char *sname;
1365 : 1586950 : char buf[128];
1366 [ - + ]: 1586950 : sname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name) ?: "<corrupt>";
1367 [ + + ]: 3173900 : printf ("[%2zu] %-20s %-12s %0*" PRIx64 " %0*" PRIx64 " %0*" PRIx64
1368 : : " %2" PRId64 " %-5s %2" PRId32 " %3" PRId32
1369 : : " %2" PRId64 "\n",
1370 : : cnt, sname,
1371 : 1586950 : ebl_section_type_name (ebl, shdr->sh_type, buf, sizeof (buf)),
1372 : : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, shdr->sh_addr,
1373 : : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8, shdr->sh_offset,
1374 [ + + ]: 1586950 : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8, shdr->sh_size,
1375 : : shdr->sh_entsize, flagbuf, shdr->sh_link, shdr->sh_info,
1376 : : shdr->sh_addralign);
1377 : :
1378 [ + + ]: 1586950 : if (print_decompress)
1379 : : {
1380 [ + + ]: 1880 : if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
1381 : : {
1382 : 384 : GElf_Chdr chdr;
1383 [ + - ]: 384 : if (gelf_getchdr (scn, &chdr) != NULL)
1384 [ + + - - ]: 768 : printf (" [ELF %s (%" PRId32 ") %0*" PRIx64
1385 : : " %2" PRId64 "]\n",
1386 : : elf_ch_type_name (chdr.ch_type),
1387 : : chdr.ch_type,
1388 [ + + ]: 384 : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8,
1389 : : chdr.ch_size, chdr.ch_addralign);
1390 : : else
1391 : 384 : error (0, 0,
1392 : 0 : _("bad compression header for section %zd: %s"),
1393 : : elf_ndxscn (scn), elf_errmsg (-1));
1394 : : }
1395 [ + + ]: 1496 : else if (startswith (sname, ".zdebug"))
1396 : : {
1397 : 24 : ssize_t size;
1398 [ + - ]: 24 : if ((size = dwelf_scn_gnu_compressed_size (scn)) >= 0)
1399 : 1586974 : printf (" [GNU ZLIB %0*zx ]\n",
1400 [ + + ]: 24 : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8, size);
1401 : : else
1402 : 1586950 : error (0, 0,
1403 : 0 : _("bad gnu compressed size for section %zd: %s"),
1404 : : elf_ndxscn (scn), elf_errmsg (-1));
1405 : : }
1406 : : }
1407 : : }
1408 : :
1409 [ - + ]: 542 : fputc_unlocked ('\n', stdout);
1410 : 542 : }
1411 : :
1412 : :
1413 : : /* Print the program header. */
1414 : : static void
1415 : 224 : print_phdr (Ebl *ebl, GElf_Ehdr *ehdr)
1416 : : {
1417 [ + + ]: 224 : if (phnum == 0)
1418 : : /* No program header, this is OK in relocatable objects. */
1419 : 12 : return;
1420 : :
1421 : 212 : puts (_("Program Headers:"));
1422 [ + + ]: 212 : if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
1423 : 32 : puts (_("\
1424 : : Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align"));
1425 : : else
1426 : 180 : puts (_("\
1427 : : Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align"));
1428 : :
1429 : : /* Process all program headers. */
1430 : : bool has_relro = false;
1431 : : GElf_Addr relro_from = 0;
1432 : : GElf_Addr relro_to = 0;
1433 [ + + ]: 2410 : for (size_t cnt = 0; cnt < phnum; ++cnt)
1434 : : {
1435 : 2198 : char buf[128];
1436 : 2198 : GElf_Phdr mem;
1437 : 2198 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &mem);
1438 : :
1439 : : /* If for some reason the header cannot be returned show this. */
1440 [ - + ]: 2198 : if (unlikely (phdr == NULL))
1441 : : {
1442 : 0 : puts (" ???");
1443 : 0 : continue;
1444 : : }
1445 : :
1446 : 2198 : printf (" %-14s 0x%06" PRIx64 " 0x%0*" PRIx64 " 0x%0*" PRIx64
1447 : : " 0x%06" PRIx64 " 0x%06" PRIx64 " %c%c%c 0x%" PRIx64 "\n",
1448 : 2198 : ebl_segment_type_name (ebl, phdr->p_type, buf, sizeof (buf)),
1449 : : phdr->p_offset,
1450 : : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, phdr->p_vaddr,
1451 [ + + ]: 2198 : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, phdr->p_paddr,
1452 : : phdr->p_filesz,
1453 : : phdr->p_memsz,
1454 [ - + ]: 2198 : phdr->p_flags & PF_R ? 'R' : ' ',
1455 [ + + ]: 2198 : phdr->p_flags & PF_W ? 'W' : ' ',
1456 [ + + ]: 2198 : phdr->p_flags & PF_X ? 'E' : ' ',
1457 : : phdr->p_align);
1458 : :
1459 [ + + ]: 2198 : if (phdr->p_type == PT_INTERP)
1460 : : {
1461 : : /* If we are sure the file offset is valid then we can show
1462 : : the user the name of the interpreter. We check whether
1463 : : there is a section at the file offset. Normally there
1464 : : would be a section called ".interp". But in separate
1465 : : .debug files it is a NOBITS section (and so doesn't match
1466 : : with gelf_offscn). Which probably means the offset is
1467 : : not valid another reason could be because the ELF file
1468 : : just doesn't contain any section headers, in that case
1469 : : just play it safe and don't display anything. */
1470 : :
1471 : 208 : Elf_Scn *scn = gelf_offscn (ebl->elf, phdr->p_offset);
1472 : 208 : GElf_Shdr shdr_mem;
1473 : 208 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
1474 : :
1475 : 208 : size_t maxsize;
1476 : 208 : char *filedata = elf_rawfile (ebl->elf, &maxsize);
1477 : :
1478 [ + - + + ]: 208 : if (shdr != NULL && shdr->sh_type == SHT_PROGBITS
1479 [ + - + - ]: 154 : && filedata != NULL && phdr->p_offset < maxsize
1480 [ + - ]: 154 : && phdr->p_filesz <= maxsize - phdr->p_offset
1481 [ + - ]: 154 : && memchr (filedata + phdr->p_offset, '\0',
1482 : : phdr->p_filesz) != NULL)
1483 : 208 : printf (_("\t[Requesting program interpreter: %s]\n"),
1484 : : filedata + phdr->p_offset);
1485 : : }
1486 [ + + ]: 1990 : else if (phdr->p_type == PT_GNU_RELRO)
1487 : : {
1488 : 182 : has_relro = true;
1489 : 182 : relro_from = phdr->p_vaddr;
1490 : 182 : relro_to = relro_from + phdr->p_memsz;
1491 : : }
1492 : : }
1493 : :
1494 : 212 : size_t sections;
1495 [ - + ]: 212 : if (unlikely (elf_getshdrnum (ebl->elf, §ions) < 0))
1496 : 0 : error_exit (0, _("cannot get number of sections: %s"),
1497 : : elf_errmsg (-1));
1498 : :
1499 [ + - ]: 212 : if (sections == 0)
1500 : : /* No sections in the file. Punt. */
1501 : : return;
1502 : :
1503 : : /* Get the section header string table index. */
1504 : 212 : size_t shstrndx;
1505 [ - + ]: 212 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
1506 : 0 : error_exit (0, _("cannot get section header string table index"));
1507 : :
1508 : 212 : puts (_("\n Section to Segment mapping:\n Segment Sections..."));
1509 : :
1510 [ + + ]: 2410 : for (size_t cnt = 0; cnt < phnum; ++cnt)
1511 : : {
1512 : : /* Print the segment number. */
1513 : 2198 : printf (" %2.2zu ", cnt);
1514 : :
1515 : 2198 : GElf_Phdr phdr_mem;
1516 : 2198 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &phdr_mem);
1517 : : /* This must not happen. */
1518 [ - + ]: 2198 : if (unlikely (phdr == NULL))
1519 : 0 : error_exit (0, _("cannot get program header: %s"),
1520 : : elf_errmsg (-1));
1521 : :
1522 : : /* Iterate over the sections. */
1523 : : bool in_relro = false;
1524 : : bool in_ro = false;
1525 [ + + ]: 71540 : for (size_t inner = 1; inner < shnum; ++inner)
1526 : : {
1527 : 69342 : Elf_Scn *scn = elf_getscn (ebl->elf, inner);
1528 : : /* This should not happen. */
1529 [ - + ]: 69342 : if (unlikely (scn == NULL))
1530 : 0 : error_exit (0, _("cannot get section: %s"),
1531 : : elf_errmsg (-1));
1532 : :
1533 : : /* Get the section header. */
1534 : 69342 : GElf_Shdr shdr_mem;
1535 : 69342 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
1536 [ - + ]: 69342 : if (unlikely (shdr == NULL))
1537 : 0 : error_exit (0, _("cannot get section header: %s"),
1538 : : elf_errmsg (-1));
1539 : :
1540 [ + - ]: 69342 : if (shdr->sh_size > 0
1541 : : /* Compare allocated sections by VMA, unallocated
1542 : : sections by file offset. */
1543 [ + + ]: 69342 : && (shdr->sh_flags & SHF_ALLOC
1544 : 54896 : ? (shdr->sh_addr >= phdr->p_vaddr
1545 [ + + ]: 54896 : && (shdr->sh_addr + shdr->sh_size
1546 [ + + ]: 37166 : <= phdr->p_vaddr + phdr->p_memsz))
1547 : 14446 : : (shdr->sh_offset >= phdr->p_offset
1548 [ + + ]: 14446 : && (shdr->sh_offset + shdr->sh_size
1549 [ + + ]: 12504 : <= phdr->p_offset + phdr->p_filesz))))
1550 : : {
1551 [ + + ]: 7528 : if (has_relro && !in_relro
1552 [ + + ]: 5002 : && shdr->sh_addr >= relro_from
1553 [ + + ]: 882 : && shdr->sh_addr + shdr->sh_size <= relro_to)
1554 : : {
1555 : 564 : fputs_unlocked (" [RELRO:", stdout);
1556 : 564 : in_relro = true;
1557 : : }
1558 [ + + + + ]: 6964 : else if (has_relro && in_relro && shdr->sh_addr >= relro_to)
1559 : : {
1560 : 164 : fputs_unlocked ("]", stdout);
1561 : 164 : in_relro = false;
1562 : : }
1563 [ + + ]: 6800 : else if (has_relro && in_relro
1564 [ + + ]: 1382 : && shdr->sh_addr + shdr->sh_size > relro_to)
1565 : 18 : fputs_unlocked ("] <RELRO:", stdout);
1566 [ + + ]: 6782 : else if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0)
1567 : : {
1568 [ + + ]: 3898 : if (!in_ro)
1569 : : {
1570 : 432 : fputs_unlocked (" [RO:", stdout);
1571 : 432 : in_ro = true;
1572 : : }
1573 : : }
1574 : : else
1575 : : {
1576 : : /* Determine the segment this section is part of. */
1577 : : size_t cnt2;
1578 : : GElf_Phdr phdr2_mem;
1579 : : GElf_Phdr *phdr2 = NULL;
1580 [ + - ]: 12744 : for (cnt2 = 0; cnt2 < phnum; ++cnt2)
1581 : : {
1582 : 12744 : phdr2 = gelf_getphdr (ebl->elf, cnt2, &phdr2_mem);
1583 : :
1584 [ + - + + ]: 12744 : if (phdr2 != NULL && phdr2->p_type == PT_LOAD
1585 [ + - ]: 7088 : && shdr->sh_addr >= phdr2->p_vaddr
1586 : 7088 : && (shdr->sh_addr + shdr->sh_size
1587 [ + + ]: 7088 : <= phdr2->p_vaddr + phdr2->p_memsz))
1588 : : break;
1589 : : }
1590 : :
1591 [ + - ]: 2884 : if (cnt2 < phnum)
1592 : : {
1593 [ + + + + ]: 2884 : if ((phdr2->p_flags & PF_W) == 0 && !in_ro)
1594 : : {
1595 : 722 : fputs_unlocked (" [RO:", stdout);
1596 : 722 : in_ro = true;
1597 : : }
1598 [ + + + - ]: 2162 : else if ((phdr2->p_flags & PF_W) != 0 && in_ro)
1599 : : {
1600 : 0 : fputs_unlocked ("]", stdout);
1601 : 0 : in_ro = false;
1602 : : }
1603 : : }
1604 : : }
1605 : :
1606 : 7528 : printf (" %s",
1607 : 7528 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name));
1608 : :
1609 : : /* Signal that this section is only partially covered. */
1610 [ + + ]: 7528 : if (has_relro && in_relro
1611 [ + + ]: 1946 : && shdr->sh_addr + shdr->sh_size > relro_to)
1612 : : {
1613 : 18 : fputs_unlocked (">", stdout);
1614 : 18 : in_relro = false;
1615 : : }
1616 : : }
1617 : : }
1618 [ + + ]: 2198 : if (in_relro || in_ro)
1619 : 1536 : fputs_unlocked ("]", stdout);
1620 : :
1621 : : /* Finish the line. */
1622 [ - + ]: 4396 : fputc_unlocked ('\n', stdout);
1623 : : }
1624 : : }
1625 : :
1626 : :
1627 : : static const char *
1628 : 1050 : section_name (Ebl *ebl, GElf_Shdr *shdr)
1629 : : {
1630 : 1050 : size_t shstrndx;
1631 [ + - - + ]: 1050 : if (shdr == NULL || elf_getshdrstrndx (ebl->elf, &shstrndx) < 0)
1632 : 0 : return "???";
1633 [ - + ]: 1050 : return elf_strptr (ebl->elf, shstrndx, shdr->sh_name) ?: "???";
1634 : : }
1635 : :
1636 : :
1637 : : static void
1638 : 32 : handle_scngrp (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
1639 : : {
1640 : : /* Get the data of the section. */
1641 : 32 : Elf_Data *data = elf_getdata (scn, NULL);
1642 : :
1643 : 32 : Elf_Scn *symscn = elf_getscn (ebl->elf, shdr->sh_link);
1644 : 32 : GElf_Shdr symshdr_mem;
1645 : 32 : GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
1646 : 32 : Elf_Data *symdata = elf_getdata (symscn, NULL);
1647 : :
1648 [ + - + - ]: 32 : if (data == NULL || data->d_size < sizeof (Elf32_Word) || symshdr == NULL
1649 [ - + ]: 32 : || symdata == NULL)
1650 : 0 : return;
1651 : :
1652 : : /* Get the section header string table index. */
1653 : 32 : size_t shstrndx;
1654 [ - + ]: 32 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
1655 : 0 : error_exit (0, _("cannot get section header string table index"));
1656 : :
1657 : 32 : Elf32_Word *grpref = (Elf32_Word *) data->d_buf;
1658 : :
1659 : 32 : GElf_Sym sym_mem;
1660 : 32 : GElf_Sym *sym = gelf_getsym (symdata, shdr->sh_info, &sym_mem);
1661 : :
1662 [ - + + + ]: 64 : printf ((grpref[0] & GRP_COMDAT)
1663 : 8 : ? ngettext ("\
1664 : : \nCOMDAT section group [%2zu] '%s' with signature '%s' contains %zu entry:\n",
1665 : : "\
1666 : : \nCOMDAT section group [%2zu] '%s' with signature '%s' contains %zu entries:\n",
1667 : : data->d_size / sizeof (Elf32_Word) - 1)
1668 : 24 : : ngettext ("\
1669 : : \nSection group [%2zu] '%s' with signature '%s' contains %zu entry:\n", "\
1670 : : \nSection group [%2zu] '%s' with signature '%s' contains %zu entries:\n",
1671 : : data->d_size / sizeof (Elf32_Word) - 1),
1672 : : elf_ndxscn (scn),
1673 : 32 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
1674 : : (sym == NULL ? NULL
1675 : 32 : : elf_strptr (ebl->elf, symshdr->sh_link, sym->st_name))
1676 : 0 : ?: _("<INVALID SYMBOL>"),
1677 [ + - ]: 32 : data->d_size / sizeof (Elf32_Word) - 1);
1678 : :
1679 [ + + ]: 104 : for (size_t cnt = 1; cnt < data->d_size / sizeof (Elf32_Word); ++cnt)
1680 : : {
1681 : 72 : GElf_Shdr grpshdr_mem;
1682 : 72 : GElf_Shdr *grpshdr = gelf_getshdr (elf_getscn (ebl->elf, grpref[cnt]),
1683 : : &grpshdr_mem);
1684 : :
1685 : 72 : const char *str;
1686 [ + - ]: 144 : printf (" [%2u] %s\n",
1687 : : grpref[cnt],
1688 : : grpshdr != NULL
1689 [ - + ]: 72 : && (str = elf_strptr (ebl->elf, shstrndx, grpshdr->sh_name))
1690 : 0 : ? str : _("<INVALID SECTION>"));
1691 : : }
1692 : : }
1693 : :
1694 : :
1695 : : static void
1696 : 238 : print_scngrp (Ebl *ebl)
1697 : : {
1698 : : /* Find all relocation sections and handle them. */
1699 : 238 : Elf_Scn *scn = NULL;
1700 : :
1701 [ + + ]: 7662 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
1702 : : {
1703 : : /* Handle the section if it is a symbol table. */
1704 : 7424 : GElf_Shdr shdr_mem;
1705 : 7424 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
1706 : :
1707 [ + - + + ]: 7424 : if (shdr != NULL && shdr->sh_type == SHT_GROUP)
1708 : : {
1709 [ - + ]: 32 : if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
1710 : : {
1711 [ # # ]: 0 : if (elf_compress (scn, 0, 0) < 0)
1712 : 0 : printf ("WARNING: %s [%zd]\n",
1713 : : _("Couldn't uncompress section"),
1714 : : elf_ndxscn (scn));
1715 : 0 : shdr = gelf_getshdr (scn, &shdr_mem);
1716 [ # # ]: 0 : if (unlikely (shdr == NULL))
1717 : 0 : error_exit (0, _("cannot get section [%zd] header: %s"),
1718 : : elf_ndxscn (scn),
1719 : : elf_errmsg (-1));
1720 : : }
1721 : 32 : handle_scngrp (ebl, scn, shdr);
1722 : : }
1723 : : }
1724 : 238 : }
1725 : :
1726 : :
1727 : : static const struct flags
1728 : : {
1729 : : int mask;
1730 : : const char *str;
1731 : : } dt_flags[] =
1732 : : {
1733 : : { DF_ORIGIN, "ORIGIN" },
1734 : : { DF_SYMBOLIC, "SYMBOLIC" },
1735 : : { DF_TEXTREL, "TEXTREL" },
1736 : : { DF_BIND_NOW, "BIND_NOW" },
1737 : : { DF_STATIC_TLS, "STATIC_TLS" }
1738 : : };
1739 : : static const int ndt_flags = sizeof (dt_flags) / sizeof (dt_flags[0]);
1740 : :
1741 : : static const struct flags dt_flags_1[] =
1742 : : {
1743 : : { DF_1_NOW, "NOW" },
1744 : : { DF_1_GLOBAL, "GLOBAL" },
1745 : : { DF_1_GROUP, "GROUP" },
1746 : : { DF_1_NODELETE, "NODELETE" },
1747 : : { DF_1_LOADFLTR, "LOADFLTR" },
1748 : : { DF_1_INITFIRST, "INITFIRST" },
1749 : : { DF_1_NOOPEN, "NOOPEN" },
1750 : : { DF_1_ORIGIN, "ORIGIN" },
1751 : : { DF_1_DIRECT, "DIRECT" },
1752 : : { DF_1_TRANS, "TRANS" },
1753 : : { DF_1_INTERPOSE, "INTERPOSE" },
1754 : : { DF_1_NODEFLIB, "NODEFLIB" },
1755 : : { DF_1_NODUMP, "NODUMP" },
1756 : : { DF_1_CONFALT, "CONFALT" },
1757 : : { DF_1_ENDFILTEE, "ENDFILTEE" },
1758 : : { DF_1_DISPRELDNE, "DISPRELDNE" },
1759 : : { DF_1_DISPRELPND, "DISPRELPND" },
1760 : : };
1761 : : static const int ndt_flags_1 = sizeof (dt_flags_1) / sizeof (dt_flags_1[0]);
1762 : :
1763 : : static const struct flags dt_feature_1[] =
1764 : : {
1765 : : { DTF_1_PARINIT, "PARINIT" },
1766 : : { DTF_1_CONFEXP, "CONFEXP" }
1767 : : };
1768 : : static const int ndt_feature_1 = (sizeof (dt_feature_1)
1769 : : / sizeof (dt_feature_1[0]));
1770 : :
1771 : : static const struct flags dt_posflag_1[] =
1772 : : {
1773 : : { DF_P1_LAZYLOAD, "LAZYLOAD" },
1774 : : { DF_P1_GROUPPERM, "GROUPPERM" }
1775 : : };
1776 : : static const int ndt_posflag_1 = (sizeof (dt_posflag_1)
1777 : : / sizeof (dt_posflag_1[0]));
1778 : :
1779 : :
1780 : : static void
1781 : 74 : print_flags (int class, GElf_Xword d_val, const struct flags *flags,
1782 : : int nflags)
1783 : : {
1784 : 74 : bool first = true;
1785 : 74 : int cnt;
1786 : :
1787 [ + + ]: 1104 : for (cnt = 0; cnt < nflags; ++cnt)
1788 [ + + ]: 1030 : if (d_val & flags[cnt].mask)
1789 : : {
1790 [ + + ]: 68 : if (!first)
1791 [ - + ]: 36 : putchar_unlocked (' ');
1792 : 68 : fputs_unlocked (flags[cnt].str, stdout);
1793 : 68 : d_val &= ~flags[cnt].mask;
1794 : 68 : first = false;
1795 : : }
1796 : :
1797 [ + + ]: 74 : if (d_val != 0)
1798 : : {
1799 [ + + ]: 62 : if (!first)
1800 [ - + ]: 20 : putchar_unlocked (' ');
1801 [ + + ]: 62 : printf ("%#0*" PRIx64, class == ELFCLASS32 ? 10 : 18, d_val);
1802 : : }
1803 : :
1804 [ - + ]: 74 : putchar_unlocked ('\n');
1805 : 74 : }
1806 : :
1807 : :
1808 : : static void
1809 : 14 : print_dt_flags (int class, GElf_Xword d_val)
1810 : : {
1811 : 14 : print_flags (class, d_val, dt_flags, ndt_flags);
1812 : 14 : }
1813 : :
1814 : :
1815 : : static void
1816 : 56 : print_dt_flags_1 (int class, GElf_Xword d_val)
1817 : : {
1818 : 56 : print_flags (class, d_val, dt_flags_1, ndt_flags_1);
1819 : 56 : }
1820 : :
1821 : :
1822 : : static void
1823 : 2 : print_dt_feature_1 (int class, GElf_Xword d_val)
1824 : : {
1825 : 2 : print_flags (class, d_val, dt_feature_1, ndt_feature_1);
1826 : 2 : }
1827 : :
1828 : :
1829 : : static void
1830 : 2 : print_dt_posflag_1 (int class, GElf_Xword d_val)
1831 : : {
1832 : 2 : print_flags (class, d_val, dt_posflag_1, ndt_posflag_1);
1833 : 2 : }
1834 : :
1835 : :
1836 : : static size_t
1837 : 160 : get_dyn_ents (Elf_Data * dyn_data)
1838 : : {
1839 : 160 : GElf_Dyn *dyn;
1840 : 160 : GElf_Dyn dyn_mem;
1841 : 160 : size_t dyn_idx = 0;
1842 : 3974 : do
1843 : : {
1844 : 3974 : dyn = gelf_getdyn(dyn_data, dyn_idx, &dyn_mem);
1845 [ + - ]: 3974 : if (dyn != NULL)
1846 : 3974 : ++dyn_idx;
1847 : : }
1848 [ + + ]: 3974 : while (dyn != NULL && dyn->d_tag != DT_NULL);
1849 : :
1850 : 160 : return dyn_idx;
1851 : : }
1852 : :
1853 : :
1854 : : static void
1855 : 160 : handle_dynamic (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, GElf_Phdr *phdr)
1856 : : {
1857 : 160 : int class = gelf_getclass (ebl->elf);
1858 : 160 : GElf_Shdr glink_mem;
1859 : 160 : GElf_Shdr *glink;
1860 : 160 : Elf_Data *data;
1861 : 160 : size_t cnt;
1862 : 160 : size_t shstrndx;
1863 : 160 : size_t dyn_ents;
1864 : :
1865 : : /* Get the data of the section. */
1866 [ + + + - ]: 160 : if (use_dynamic_segment && phdr != NULL)
1867 : 2 : data = elf_getdata_rawchunk(ebl->elf, phdr->p_offset,
1868 : : phdr->p_filesz, ELF_T_DYN);
1869 : : else
1870 : 158 : data = elf_getdata (scn, NULL);
1871 : :
1872 [ - + ]: 160 : if (data == NULL)
1873 : 0 : return;
1874 : :
1875 : : /* Get the dynamic section entry number */
1876 : 160 : dyn_ents = get_dyn_ents (data);
1877 : :
1878 [ + + + - ]: 160 : if (!use_dynamic_segment && shdr != NULL)
1879 : : {
1880 : : /* Get the section header string table index. */
1881 [ - + ]: 158 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
1882 : 0 : error_exit (0, _("cannot get section header string table index"));
1883 : :
1884 : 158 : glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link), &glink_mem);
1885 [ - + ]: 158 : if (glink == NULL)
1886 : 0 : error_exit (0, _("invalid sh_link value in section %zu"),
1887 : : elf_ndxscn (scn));
1888 : :
1889 : 158 : printf (ngettext ("\
1890 : : \nDynamic segment contains %lu entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n",
1891 : : "\
1892 : : \nDynamic segment contains %lu entries:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n",
1893 : : dyn_ents),
1894 : : (unsigned long int) dyn_ents,
1895 : : class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
1896 : : shdr->sh_offset,
1897 [ + + ]: 158 : (int) shdr->sh_link,
1898 : 158 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
1899 : : }
1900 [ + - ]: 2 : else if (phdr != NULL)
1901 : : {
1902 [ + - ]: 4 : printf (ngettext ("\
1903 : : \nDynamic segment contains %lu entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 "\n",
1904 : : "\
1905 : : \nDynamic segment contains %lu entries:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 "\n",
1906 : : dyn_ents),
1907 : : (unsigned long int) dyn_ents,
1908 : : class == ELFCLASS32 ? 10 : 18, phdr->p_paddr,
1909 : : phdr->p_offset);
1910 : : }
1911 : :
1912 : 160 : fputs_unlocked (_(" Type Value\n"), stdout);
1913 : :
1914 : : /* if --use-dynamic option is enabled,
1915 : : use the string table to get the related library info. */
1916 : 160 : Elf_Data *strtab_data = NULL;
1917 [ + + + - ]: 160 : if (use_dynamic_segment && phdr != NULL)
1918 : : {
1919 : 2 : strtab_data = get_dynscn_strtab(ebl->elf, phdr);
1920 [ - + ]: 2 : if (strtab_data == NULL)
1921 : 0 : error_exit (0, _("cannot get string table by using dynamic segment"));
1922 : : }
1923 : :
1924 [ + + ]: 4134 : for (cnt = 0; cnt < dyn_ents; ++cnt)
1925 : : {
1926 : 3974 : GElf_Dyn dynmem;
1927 : 3974 : GElf_Dyn *dyn = gelf_getdyn (data, cnt, &dynmem);
1928 [ + - ]: 3974 : if (dyn == NULL)
1929 : : break;
1930 : :
1931 : 3974 : char buf[64];
1932 : 3974 : printf (" %-17s ",
1933 : : ebl_dynamic_tag_name (ebl, dyn->d_tag, buf, sizeof (buf)));
1934 : :
1935 : 3974 : char *name = NULL;
1936 : 3974 : if (dyn->d_tag == DT_NEEDED
1937 [ + + ]: 3974 : || dyn->d_tag == DT_SONAME
1938 [ + + ]: 3718 : || dyn->d_tag == DT_RPATH
1939 [ + + ]: 3716 : || dyn->d_tag == DT_RUNPATH)
1940 : : {
1941 [ + + + - ]: 260 : if (! use_dynamic_segment && shdr != NULL)
1942 : 256 : name = elf_strptr (ebl->elf, shdr->sh_link, dyn->d_un.d_val);
1943 [ - + ]: 4 : else if (dyn->d_un.d_val < strtab_data->d_size
1944 : 4 : && memrchr (strtab_data->d_buf + dyn->d_un.d_val, '\0',
1945 [ - + ]: 4 : strtab_data->d_size - 1 - dyn->d_un.d_val) != NULL)
1946 : 3974 : name = ((char *) strtab_data->d_buf) + dyn->d_un.d_val;
1947 : : }
1948 : :
1949 [ + + + + : 3974 : switch (dyn->d_tag)
+ + + + +
+ + + + ]
1950 : : {
1951 : 316 : case DT_NULL:
1952 : : case DT_DEBUG:
1953 : : case DT_BIND_NOW:
1954 : : case DT_TEXTREL:
1955 : : /* No further output. */
1956 [ - + ]: 316 : fputc_unlocked ('\n', stdout);
1957 : : break;
1958 : :
1959 : 250 : case DT_NEEDED:
1960 : 250 : printf (_("Shared library: [%s]\n"), name);
1961 : : break;
1962 : :
1963 : 6 : case DT_SONAME:
1964 : 6 : printf (_("Library soname: [%s]\n"), name);
1965 : : break;
1966 : :
1967 : 2 : case DT_RPATH:
1968 : 2 : printf (_("Library rpath: [%s]\n"), name);
1969 : : break;
1970 : :
1971 : 2 : case DT_RUNPATH:
1972 : 2 : printf (_("Library runpath: [%s]\n"), name);
1973 : : break;
1974 : :
1975 : 1062 : case DT_PLTRELSZ:
1976 : : case DT_RELASZ:
1977 : : case DT_STRSZ:
1978 : : case DT_RELSZ:
1979 : : case DT_RELRSZ:
1980 : : case DT_RELAENT:
1981 : : case DT_SYMENT:
1982 : : case DT_RELENT:
1983 : : case DT_RELRENT:
1984 : : case DT_PLTPADSZ:
1985 : : case DT_MOVEENT:
1986 : : case DT_MOVESZ:
1987 : : case DT_INIT_ARRAYSZ:
1988 : : case DT_FINI_ARRAYSZ:
1989 : : case DT_SYMINSZ:
1990 : : case DT_SYMINENT:
1991 : : case DT_GNU_CONFLICTSZ:
1992 : : case DT_GNU_LIBLISTSZ:
1993 : 1062 : printf (_("%" PRId64 " (bytes)\n"), dyn->d_un.d_val);
1994 : : break;
1995 : :
1996 : 236 : case DT_VERDEFNUM:
1997 : : case DT_VERNEEDNUM:
1998 : : case DT_RELACOUNT:
1999 : : case DT_RELCOUNT:
2000 : 236 : printf ("%" PRId64 "\n", dyn->d_un.d_val);
2001 : : break;
2002 : :
2003 : 132 : case DT_PLTREL:;
2004 : 132 : const char *tagname = ebl_dynamic_tag_name (ebl, dyn->d_un.d_val,
2005 : : NULL, 0);
2006 [ + + ]: 132 : puts (tagname ?: "???");
2007 : 132 : break;
2008 : :
2009 : 14 : case DT_FLAGS:
2010 : 14 : print_dt_flags (class, dyn->d_un.d_val);
2011 : : break;
2012 : :
2013 : 56 : case DT_FLAGS_1:
2014 : 56 : print_dt_flags_1 (class, dyn->d_un.d_val);
2015 : : break;
2016 : :
2017 : 2 : case DT_FEATURE_1:
2018 : 2 : print_dt_feature_1 (class, dyn->d_un.d_val);
2019 : : break;
2020 : :
2021 : 2 : case DT_POSFLAG_1:
2022 : 2 : print_dt_posflag_1 (class, dyn->d_un.d_val);
2023 : : break;
2024 : :
2025 : 1894 : default:
2026 [ + + ]: 5868 : printf ("%#0*" PRIx64 "\n",
2027 : : class == ELFCLASS32 ? 10 : 18, dyn->d_un.d_val);
2028 : : break;
2029 : : }
2030 : : }
2031 : : }
2032 : :
2033 : :
2034 : : /* Print the dynamic segment. */
2035 : : static void
2036 : 226 : print_dynamic (Ebl *ebl)
2037 : : {
2038 [ + + ]: 1276 : for (size_t i = 0; i < phnum; ++i)
2039 : : {
2040 : 1264 : GElf_Phdr phdr_mem;
2041 : 1264 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, i, &phdr_mem);
2042 : :
2043 [ + - + + ]: 1264 : if (phdr != NULL && phdr->p_type == PT_DYNAMIC)
2044 : : {
2045 : 214 : Elf_Scn *scn = gelf_offscn (ebl->elf, phdr->p_offset);
2046 : 214 : GElf_Shdr shdr_mem;
2047 : 214 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
2048 [ + + ]: 214 : if ((use_dynamic_segment && phdr != NULL)
2049 [ + + + + ]: 212 : || (shdr != NULL && shdr->sh_type == SHT_DYNAMIC))
2050 : 160 : handle_dynamic (ebl, scn, shdr, phdr);
2051 : 214 : break;
2052 : : }
2053 : : }
2054 : 226 : }
2055 : :
2056 : :
2057 : : /* Print relocations. */
2058 : : static void
2059 : 222 : print_relocs (Ebl *ebl, Dwfl_Module *mod, GElf_Ehdr *ehdr)
2060 : : {
2061 : : /* Find all relocation sections and handle them. */
2062 : 222 : Elf_Scn *scn = NULL;
2063 : :
2064 [ + + ]: 7214 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
2065 : : {
2066 : : /* Handle the section if it is a symbol table. */
2067 : 6992 : GElf_Shdr shdr_mem;
2068 : 6992 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
2069 : :
2070 [ + - ]: 6992 : if (likely (shdr != NULL))
2071 : : {
2072 [ + + ]: 6992 : if (shdr->sh_type == SHT_REL)
2073 : 100 : handle_relocs_rel (ebl, ehdr, scn, shdr);
2074 [ + + ]: 6892 : else if (shdr->sh_type == SHT_RELA)
2075 : 306 : handle_relocs_rela (ebl, ehdr, scn, shdr);
2076 [ - + ]: 6586 : else if (shdr->sh_type == SHT_RELR)
2077 : 0 : handle_relocs_relr (ebl, mod, scn, shdr);
2078 : : }
2079 : : }
2080 : 222 : }
2081 : :
2082 : :
2083 : : /* Handle a relocation section. */
2084 : : static void
2085 : 100 : handle_relocs_rel (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, GElf_Shdr *shdr)
2086 : : {
2087 : 100 : int class = gelf_getclass (ebl->elf);
2088 : 100 : size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_REL, 1, EV_CURRENT);
2089 : 100 : int nentries = shdr->sh_size / sh_entsize;
2090 : :
2091 : : /* Get the data of the section. */
2092 : 100 : Elf_Data *data = elf_getdata (scn, NULL);
2093 [ + - ]: 100 : if (data == NULL)
2094 : 0 : return;
2095 : :
2096 : : /* Get the symbol table information. */
2097 : 100 : Elf_Scn *symscn = elf_getscn (ebl->elf, shdr->sh_link);
2098 : 100 : GElf_Shdr symshdr_mem;
2099 : 100 : GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
2100 : 100 : Elf_Data *symdata = elf_getdata (symscn, NULL);
2101 : :
2102 : : /* Get the section header of the section the relocations are for. */
2103 : 100 : GElf_Shdr destshdr_mem;
2104 : 100 : GElf_Shdr *destshdr = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_info),
2105 : : &destshdr_mem);
2106 : :
2107 [ + - - + ]: 100 : if (unlikely (symshdr == NULL || symdata == NULL || destshdr == NULL))
2108 : : {
2109 : 0 : printf (_("\nInvalid symbol table at offset %#0" PRIx64 "\n"),
2110 : : shdr->sh_offset);
2111 : 0 : return;
2112 : : }
2113 : :
2114 : : /* Search for the optional extended section index table. */
2115 : 100 : Elf_Data *xndxdata = NULL;
2116 : 100 : int xndxscnidx = elf_scnshndx (scn);
2117 [ - + ]: 100 : if (unlikely (xndxscnidx > 0))
2118 : 0 : xndxdata = elf_getdata (elf_getscn (ebl->elf, xndxscnidx), NULL);
2119 : :
2120 : : /* Get the section header string table index. */
2121 : 100 : size_t shstrndx;
2122 [ - + ]: 100 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
2123 : 0 : error_exit (0, _("cannot get section header string table index"));
2124 : :
2125 [ + + ]: 100 : if (shdr->sh_info != 0)
2126 : 80 : printf (ngettext ("\
2127 : : \nRelocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
2128 : : "\
2129 : : \nRelocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
2130 : : nentries),
2131 : : elf_ndxscn (scn),
2132 : 80 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2133 : 80 : (unsigned int) shdr->sh_info,
2134 : 80 : elf_strptr (ebl->elf, shstrndx, destshdr->sh_name),
2135 : : shdr->sh_offset,
2136 : : nentries);
2137 : : else
2138 : : /* The .rel.dyn section does not refer to a specific section but
2139 : : instead of section index zero. Do not try to print a section
2140 : : name. */
2141 : 20 : printf (ngettext ("\
2142 : : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
2143 : : "\
2144 : : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
2145 : : nentries),
2146 : 20 : (unsigned int) elf_ndxscn (scn),
2147 : 20 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2148 : : shdr->sh_offset,
2149 : : nentries);
2150 [ + - ]: 100 : fputs_unlocked (class == ELFCLASS32
2151 : 100 : ? _("\
2152 : : Offset Type Value Name\n")
2153 : 0 : : _("\
2154 : : Offset Type Value Name\n"),
2155 : : stdout);
2156 : :
2157 : 100 : int is_statically_linked = 0;
2158 [ + + ]: 25966 : for (int cnt = 0; cnt < nentries; ++cnt)
2159 : : {
2160 : 25866 : GElf_Rel relmem;
2161 : 25866 : GElf_Rel *rel = gelf_getrel (data, cnt, &relmem);
2162 [ + - ]: 25866 : if (likely (rel != NULL))
2163 : : {
2164 : 25866 : char buf[128];
2165 : 25866 : GElf_Sym symmem;
2166 : 25866 : Elf32_Word xndx;
2167 : 51732 : GElf_Sym *sym = gelf_getsymshndx (symdata, xndxdata,
2168 : 25866 : GELF_R_SYM (rel->r_info),
2169 : : &symmem, &xndx);
2170 [ - + ]: 25866 : if (unlikely (sym == NULL))
2171 : : {
2172 : : /* As a special case we have to handle relocations in static
2173 : : executables. This only happens for IRELATIVE relocations
2174 : : (so far). There is no symbol table. */
2175 [ # # ]: 0 : if (is_statically_linked == 0)
2176 : : {
2177 : : /* Find the program header and look for a PT_INTERP entry. */
2178 : 0 : is_statically_linked = -1;
2179 [ # # ]: 0 : if (ehdr->e_type == ET_EXEC)
2180 : : {
2181 : 0 : is_statically_linked = 1;
2182 : :
2183 [ # # ]: 0 : for (size_t inner = 0; inner < phnum; ++inner)
2184 : : {
2185 : 0 : GElf_Phdr phdr_mem;
2186 : 0 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, inner,
2187 : : &phdr_mem);
2188 [ # # # # ]: 0 : if (phdr != NULL && phdr->p_type == PT_INTERP)
2189 : : {
2190 : 0 : is_statically_linked = -1;
2191 : 0 : break;
2192 : : }
2193 : : }
2194 : : }
2195 : : }
2196 : :
2197 [ # # # # ]: 0 : if (is_statically_linked > 0 && shdr->sh_link == 0)
2198 [ # # # # ]: 0 : printf ("\
2199 : : %#0*" PRIx64 " %-20s %*s %s\n",
2200 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2201 : 0 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2202 : : /* Avoid the leading R_ which isn't carrying any
2203 : : information. */
2204 : 0 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2205 : : buf, sizeof (buf)) + 2
2206 : 0 : : _("<INVALID RELOC>"),
2207 : : class == ELFCLASS32 ? 10 : 18, "",
2208 : 0 : elf_strptr (ebl->elf, shstrndx, destshdr->sh_name));
2209 : : else
2210 [ # # # # ]: 0 : printf (" %#0*" PRIx64 " %-20s <%s %ld>\n",
2211 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2212 : 0 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2213 : : /* Avoid the leading R_ which isn't carrying any
2214 : : information. */
2215 : 0 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2216 : : buf, sizeof (buf)) + 2
2217 : 0 : : _("<INVALID RELOC>"),
2218 : : _("INVALID SYMBOL"),
2219 : 0 : (long int) GELF_R_SYM (rel->r_info));
2220 : : }
2221 [ + + ]: 25866 : else if (GELF_ST_TYPE (sym->st_info) != STT_SECTION)
2222 [ - + ]: 26158 : printf (" %#0*" PRIx64 " %-20s %#0*" PRIx64 " %s\n",
2223 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2224 [ + - ]: 146 : likely (ebl_reloc_type_check (ebl,
2225 : : GELF_R_TYPE (rel->r_info)))
2226 : : /* Avoid the leading R_ which isn't carrying any
2227 : : information. */
2228 : 146 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2229 : : buf, sizeof (buf)) + 2
2230 : 0 : : _("<INVALID RELOC>"),
2231 : : class == ELFCLASS32 ? 10 : 18, sym->st_value,
2232 : 146 : elf_strptr (ebl->elf, symshdr->sh_link, sym->st_name));
2233 : : else
2234 : : {
2235 : : /* This is a relocation against a STT_SECTION symbol. */
2236 : 25720 : GElf_Shdr secshdr_mem;
2237 : 25720 : GElf_Shdr *secshdr;
2238 : 25720 : secshdr = gelf_getshdr (elf_getscn (ebl->elf,
2239 [ + - ]: 25720 : sym->st_shndx == SHN_XINDEX
2240 : 0 : ? xndx : sym->st_shndx),
2241 : : &secshdr_mem);
2242 : :
2243 [ - + ]: 25720 : if (unlikely (secshdr == NULL))
2244 [ # # # # ]: 0 : printf (" %#0*" PRIx64 " %-20s <%s %ld>\n",
2245 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2246 : 0 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2247 : : /* Avoid the leading R_ which isn't carrying any
2248 : : information. */
2249 : 0 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2250 : : buf, sizeof (buf)) + 2
2251 : 0 : : _("<INVALID RELOC>"),
2252 : : _("INVALID SECTION"),
2253 [ # # ]: 0 : (long int) (sym->st_shndx == SHN_XINDEX
2254 : 0 : ? xndx : sym->st_shndx));
2255 : : else
2256 [ - + + - ]: 77160 : printf (" %#0*" PRIx64 " %-20s %#0*" PRIx64 " %s\n",
2257 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2258 : 25720 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2259 : : /* Avoid the leading R_ which isn't carrying any
2260 : : information. */
2261 : 25720 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2262 : : buf, sizeof (buf)) + 2
2263 : 0 : : _("<INVALID RELOC>"),
2264 : : class == ELFCLASS32 ? 10 : 18, sym->st_value,
2265 : 25720 : elf_strptr (ebl->elf, shstrndx, secshdr->sh_name));
2266 : : }
2267 : : }
2268 : : }
2269 : : }
2270 : :
2271 : :
2272 : : /* Handle a relocation section. */
2273 : : static void
2274 : 306 : handle_relocs_rela (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, GElf_Shdr *shdr)
2275 : : {
2276 : 306 : int class = gelf_getclass (ebl->elf);
2277 : 306 : size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_RELA, 1, EV_CURRENT);
2278 : 306 : int nentries = shdr->sh_size / sh_entsize;
2279 : :
2280 : : /* Get the data of the section. */
2281 : 306 : Elf_Data *data = elf_getdata (scn, NULL);
2282 [ + - ]: 306 : if (data == NULL)
2283 : 0 : return;
2284 : :
2285 : : /* Get the symbol table information. */
2286 : 306 : Elf_Scn *symscn = elf_getscn (ebl->elf, shdr->sh_link);
2287 : 306 : GElf_Shdr symshdr_mem;
2288 : 306 : GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
2289 : 306 : Elf_Data *symdata = elf_getdata (symscn, NULL);
2290 : :
2291 : : /* Get the section header of the section the relocations are for. */
2292 : 306 : GElf_Shdr destshdr_mem;
2293 : 306 : GElf_Shdr *destshdr = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_info),
2294 : : &destshdr_mem);
2295 : :
2296 [ + - - + ]: 306 : if (unlikely (symshdr == NULL || symdata == NULL || destshdr == NULL))
2297 : : {
2298 : 0 : printf (_("\nInvalid symbol table at offset %#0" PRIx64 "\n"),
2299 : : shdr->sh_offset);
2300 : 0 : return;
2301 : : }
2302 : :
2303 : : /* Search for the optional extended section index table. */
2304 : 306 : Elf_Data *xndxdata = NULL;
2305 : 306 : int xndxscnidx = elf_scnshndx (scn);
2306 [ - + ]: 306 : if (unlikely (xndxscnidx > 0))
2307 : 0 : xndxdata = elf_getdata (elf_getscn (ebl->elf, xndxscnidx), NULL);
2308 : :
2309 : : /* Get the section header string table index. */
2310 : 306 : size_t shstrndx;
2311 [ - + ]: 306 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
2312 : 0 : error_exit (0, _("cannot get section header string table index"));
2313 : :
2314 [ + + ]: 306 : if (shdr->sh_info != 0)
2315 : 172 : printf (ngettext ("\
2316 : : \nRelocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
2317 : : "\
2318 : : \nRelocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
2319 : : nentries),
2320 : : elf_ndxscn (scn),
2321 : 172 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2322 : 172 : (unsigned int) shdr->sh_info,
2323 : 172 : elf_strptr (ebl->elf, shstrndx, destshdr->sh_name),
2324 : : shdr->sh_offset,
2325 : : nentries);
2326 : : else
2327 : : /* The .rela.dyn section does not refer to a specific section but
2328 : : instead of section index zero. Do not try to print a section
2329 : : name. */
2330 : 134 : printf (ngettext ("\
2331 : : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
2332 : : "\
2333 : : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
2334 : : nentries),
2335 : 134 : (unsigned int) elf_ndxscn (scn),
2336 : 134 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2337 : : shdr->sh_offset,
2338 : : nentries);
2339 [ - + ]: 306 : fputs_unlocked (class == ELFCLASS32
2340 : 0 : ? _("\
2341 : : Offset Type Value Addend Name\n")
2342 : 306 : : _("\
2343 : : Offset Type Value Addend Name\n"),
2344 : : stdout);
2345 : :
2346 : 306 : int is_statically_linked = 0;
2347 [ + + ]: 116534 : for (int cnt = 0; cnt < nentries; ++cnt)
2348 : : {
2349 : 116228 : GElf_Rela relmem;
2350 : 116228 : GElf_Rela *rel = gelf_getrela (data, cnt, &relmem);
2351 [ + - ]: 116228 : if (likely (rel != NULL))
2352 : : {
2353 : 116228 : char buf[64];
2354 : 116228 : GElf_Sym symmem;
2355 : 116228 : Elf32_Word xndx;
2356 : 232456 : GElf_Sym *sym = gelf_getsymshndx (symdata, xndxdata,
2357 : 116228 : GELF_R_SYM (rel->r_info),
2358 : : &symmem, &xndx);
2359 : :
2360 [ - + ]: 116228 : if (unlikely (sym == NULL))
2361 : : {
2362 : : /* As a special case we have to handle relocations in static
2363 : : executables. This only happens for IRELATIVE relocations
2364 : : (so far). There is no symbol table. */
2365 [ # # ]: 0 : if (is_statically_linked == 0)
2366 : : {
2367 : : /* Find the program header and look for a PT_INTERP entry. */
2368 : 0 : is_statically_linked = -1;
2369 [ # # ]: 0 : if (ehdr->e_type == ET_EXEC)
2370 : : {
2371 : 0 : is_statically_linked = 1;
2372 : :
2373 [ # # ]: 0 : for (size_t inner = 0; inner < phnum; ++inner)
2374 : : {
2375 : 0 : GElf_Phdr phdr_mem;
2376 : 0 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, inner,
2377 : : &phdr_mem);
2378 [ # # # # ]: 0 : if (phdr != NULL && phdr->p_type == PT_INTERP)
2379 : : {
2380 : 0 : is_statically_linked = -1;
2381 : 0 : break;
2382 : : }
2383 : : }
2384 : : }
2385 : : }
2386 : :
2387 [ # # # # ]: 0 : if (is_statically_linked > 0 && shdr->sh_link == 0)
2388 [ # # # # ]: 0 : printf ("\
2389 : : %#0*" PRIx64 " %-15s %*s %#6" PRIx64 " %s\n",
2390 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2391 : 0 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2392 : : /* Avoid the leading R_ which isn't carrying any
2393 : : information. */
2394 : 0 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2395 : : buf, sizeof (buf)) + 2
2396 : 0 : : _("<INVALID RELOC>"),
2397 : : class == ELFCLASS32 ? 10 : 18, "",
2398 : : rel->r_addend,
2399 : 0 : elf_strptr (ebl->elf, shstrndx, destshdr->sh_name));
2400 : : else
2401 [ # # # # ]: 0 : printf (" %#0*" PRIx64 " %-15s <%s %ld>\n",
2402 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2403 : 0 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2404 : : /* Avoid the leading R_ which isn't carrying any
2405 : : information. */
2406 : 0 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2407 : : buf, sizeof (buf)) + 2
2408 : 0 : : _("<INVALID RELOC>"),
2409 : : _("INVALID SYMBOL"),
2410 : 0 : (long int) GELF_R_SYM (rel->r_info));
2411 : : }
2412 [ + + ]: 116228 : else if (GELF_ST_TYPE (sym->st_info) != STT_SECTION)
2413 [ + - ]: 321732 : printf ("\
2414 : : %#0*" PRIx64 " %-15s %#0*" PRIx64 " %+6" PRId64 " %s\n",
2415 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2416 [ + - ]: 102752 : likely (ebl_reloc_type_check (ebl,
2417 : : GELF_R_TYPE (rel->r_info)))
2418 : : /* Avoid the leading R_ which isn't carrying any
2419 : : information. */
2420 : 102752 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2421 : : buf, sizeof (buf)) + 2
2422 : 0 : : _("<INVALID RELOC>"),
2423 : : class == ELFCLASS32 ? 10 : 18, sym->st_value,
2424 : : rel->r_addend,
2425 : 102752 : elf_strptr (ebl->elf, symshdr->sh_link, sym->st_name));
2426 : : else
2427 : : {
2428 : : /* This is a relocation against a STT_SECTION symbol. */
2429 : 13476 : GElf_Shdr secshdr_mem;
2430 : 13476 : GElf_Shdr *secshdr;
2431 : 13476 : secshdr = gelf_getshdr (elf_getscn (ebl->elf,
2432 [ + - ]: 13476 : sym->st_shndx == SHN_XINDEX
2433 : 0 : ? xndx : sym->st_shndx),
2434 : : &secshdr_mem);
2435 : :
2436 [ - + ]: 13476 : if (unlikely (secshdr == NULL))
2437 [ # # # # ]: 0 : printf (" %#0*" PRIx64 " %-15s <%s %ld>\n",
2438 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2439 : 0 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2440 : : /* Avoid the leading R_ which isn't carrying any
2441 : : information. */
2442 : 0 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2443 : : buf, sizeof (buf)) + 2
2444 : 0 : : _("<INVALID RELOC>"),
2445 : : _("INVALID SECTION"),
2446 [ # # ]: 0 : (long int) (sym->st_shndx == SHN_XINDEX
2447 : 0 : ? xndx : sym->st_shndx));
2448 : : else
2449 [ + - + - ]: 40428 : printf ("\
2450 : : %#0*" PRIx64 " %-15s %#0*" PRIx64 " %+6" PRId64 " %s\n",
2451 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2452 : 13476 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2453 : : /* Avoid the leading R_ which isn't carrying any
2454 : : information. */
2455 : 13476 : ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
2456 : : buf, sizeof (buf)) + 2
2457 : 0 : : _("<INVALID RELOC>"),
2458 : : class == ELFCLASS32 ? 10 : 18, sym->st_value,
2459 : : rel->r_addend,
2460 : 13476 : elf_strptr (ebl->elf, shstrndx, secshdr->sh_name));
2461 : : }
2462 : : }
2463 : : }
2464 : : }
2465 : :
2466 : : /* Handle a relocation section. */
2467 : : static void
2468 : 0 : handle_relocs_relr (Ebl *ebl, Dwfl_Module *mod, Elf_Scn *scn, GElf_Shdr *shdr)
2469 : : {
2470 : 0 : int class = gelf_getclass (ebl->elf);
2471 : 0 : size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_RELR, 1, EV_CURRENT);
2472 : 0 : int nentries = shdr->sh_size / sh_entsize;
2473 : :
2474 : : /* Get the data of the section. */
2475 : 0 : Elf_Data *data = elf_getdata (scn, NULL);
2476 [ # # ]: 0 : if (data == NULL)
2477 : 0 : return;
2478 : :
2479 : : /* Get the section header string table index. */
2480 : 0 : size_t shstrndx;
2481 [ # # ]: 0 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
2482 : 0 : error_exit (0, _("cannot get section header string table index"));
2483 : :
2484 : : /* A .relr.dyn section does not refer to a specific section. */
2485 : 0 : printf (ngettext ("\
2486 : : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
2487 : : "\
2488 : : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
2489 : : nentries),
2490 : 0 : (unsigned int) elf_ndxscn (scn),
2491 : 0 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2492 : : shdr->sh_offset,
2493 : : nentries);
2494 : :
2495 [ # # ]: 0 : if (class == ELFCLASS32)
2496 : : {
2497 : : uint32_t base = 0;
2498 [ # # ]: 0 : for (int cnt = 0; cnt < nentries; ++cnt)
2499 : : {
2500 : 0 : Elf32_Word *words = data->d_buf;
2501 : 0 : Elf32_Word entry = words[cnt];
2502 : :
2503 : : /* Just the raw entries? */
2504 [ # # ]: 0 : if (print_unresolved_addresses)
2505 : 0 : printf (" %#010" PRIx32 "%s\n", entry,
2506 [ # # ]: 0 : (entry & 1) == 0 ? " *" : "");
2507 : : else
2508 : : {
2509 : : /* A real address, also sets base. */
2510 [ # # ]: 0 : if ((entry & 1) == 0)
2511 : : {
2512 : 0 : printf (" ");
2513 : 0 : print_dwarf_addr (mod, 4, entry, entry);
2514 : 0 : printf (" *\n");
2515 : :
2516 : 0 : base = entry + 4;
2517 : : }
2518 : : else
2519 : : {
2520 : : /* Untangle address from base and bits. */
2521 : : uint32_t addr;
2522 [ # # ]: 0 : for (addr = base; (entry >>= 1) != 0; addr += 4)
2523 [ # # ]: 0 : if ((entry & 1) != 0)
2524 : : {
2525 : 0 : printf (" ");
2526 : 0 : print_dwarf_addr (mod, 4, addr, addr);
2527 : 0 : printf ("\n");
2528 : : }
2529 : 0 : base += 4 * (4 * 8 - 1);
2530 : : }
2531 : : }
2532 : : }
2533 : : }
2534 : : else
2535 : : {
2536 : : uint64_t base = 0;
2537 [ # # ]: 0 : for (int cnt = 0; cnt < nentries; ++cnt)
2538 : : {
2539 : 0 : Elf64_Xword *xwords = data->d_buf;
2540 : 0 : Elf64_Xword entry = xwords[cnt];
2541 : :
2542 : : /* Just the raw entries? */
2543 [ # # ]: 0 : if (print_unresolved_addresses)
2544 : 0 : printf (" %#018" PRIx64 "%s\n", entry,
2545 [ # # ]: 0 : (entry & 1) == 0 ? " *" : "");
2546 : : else
2547 : : {
2548 : : /* A real address, also sets base. */
2549 [ # # ]: 0 : if ((entry & 1) == 0)
2550 : : {
2551 : 0 : printf (" ");
2552 : 0 : print_dwarf_addr (mod, 8, entry, entry);
2553 : 0 : printf (" *\n");
2554 : :
2555 : 0 : base = entry + 8;
2556 : : }
2557 : : else
2558 : : {
2559 : : /* Untangle address from base and bits. */
2560 : : uint64_t addr;
2561 [ # # ]: 0 : for (addr = base; (entry >>= 1) != 0; addr += 8)
2562 [ # # ]: 0 : if ((entry & 1) != 0)
2563 : : {
2564 : 0 : printf (" ");
2565 : 0 : print_dwarf_addr (mod, 8, addr, addr);
2566 : 0 : printf ("\n");
2567 : : }
2568 : 0 : base += 8 * (8 * 8 - 1);
2569 : : }
2570 : : }
2571 : : }
2572 : : }
2573 : : }
2574 : :
2575 : : /* Print the program header. Return true if a symtab is printed,
2576 : : false otherwise. */
2577 : : static bool
2578 : 510 : print_symtab (Ebl *ebl, int type)
2579 : : {
2580 : : /* Use the dynamic section info to display symbol tables. */
2581 [ - + - - ]: 510 : if (use_dynamic_segment && type == SHT_DYNSYM)
2582 : 0 : return handle_dynamic_symtab(ebl);
2583 : :
2584 : : /* Find the symbol table(s). For this we have to search through the
2585 : : section table. */
2586 : : Elf_Scn *scn = NULL;
2587 : : bool symtab_printed = false;
2588 : :
2589 [ + + ]: 16336 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
2590 : : {
2591 : : /* Handle the section if it is a symbol table. */
2592 : 15826 : GElf_Shdr shdr_mem;
2593 : 15826 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
2594 : :
2595 [ + - + + ]: 15826 : if (shdr != NULL && shdr->sh_type == (GElf_Word) type)
2596 : : {
2597 [ + + ]: 310 : if (symbol_table_section != NULL)
2598 : : {
2599 : : /* Get the section header string table index. */
2600 : 14 : size_t shstrndx;
2601 : 14 : const char *sname;
2602 [ - + ]: 14 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
2603 : 0 : error_exit (0,
2604 : : _("cannot get section header string table index"));
2605 : 14 : sname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name);
2606 [ + - + + ]: 14 : if (sname == NULL || strcmp (sname, symbol_table_section) != 0)
2607 : 8 : continue;
2608 : : }
2609 : :
2610 [ - + ]: 302 : if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
2611 : : {
2612 [ # # ]: 0 : if (elf_compress (scn, 0, 0) < 0)
2613 : 0 : printf ("WARNING: %s [%zd]\n",
2614 : : _("Couldn't uncompress section"),
2615 : : elf_ndxscn (scn));
2616 : 0 : shdr = gelf_getshdr (scn, &shdr_mem);
2617 [ # # ]: 0 : if (unlikely (shdr == NULL))
2618 : 0 : error_exit (0,
2619 : : _("cannot get section [%zd] header: %s"),
2620 : : elf_ndxscn (scn), elf_errmsg (-1));
2621 : : }
2622 : 302 : symtab_printed = handle_symtab (ebl, scn, shdr);
2623 : : }
2624 : : }
2625 : :
2626 : : return symtab_printed;
2627 : : }
2628 : :
2629 : :
2630 : : static void
2631 : 302 : process_symtab (Ebl *ebl, unsigned int nsyms, Elf64_Word idx,
2632 : : Elf32_Word verneed_stridx, Elf32_Word verdef_stridx,
2633 : : Elf_Data *symdata, Elf_Data *versym_data,
2634 : : Elf_Data *symstr_data, Elf_Data *verneed_data,
2635 : : Elf_Data *verdef_data, Elf_Data *xndx_data)
2636 : : {
2637 [ + + ]: 77494 : for (unsigned int cnt = 0; cnt < nsyms; ++cnt)
2638 : : {
2639 : 77192 : char typebuf[64];
2640 : 77192 : char bindbuf[64];
2641 : 77192 : char scnbuf[64];
2642 : 77192 : Elf32_Word xndx;
2643 : 77192 : GElf_Sym sym_mem;
2644 : 77192 : GElf_Sym *sym
2645 : 77192 : = gelf_getsymshndx (symdata, xndx_data, cnt, &sym_mem, &xndx);
2646 : :
2647 [ - + ]: 77192 : if (unlikely (sym == NULL))
2648 : 0 : continue;
2649 : :
2650 : : /* Determine the real section index. */
2651 [ + - ]: 77192 : if (likely (sym->st_shndx != SHN_XINDEX))
2652 : 77192 : xndx = sym->st_shndx;
2653 : :
2654 [ + + ]: 153330 : printf (_ ("\
2655 : : %5u: %0*" PRIx64 " %6" PRId64 " %-7s %-6s %-9s %6s %s"),
2656 : 77192 : cnt, gelf_getclass (ebl->elf) == ELFCLASS32 ? 8 : 16,
2657 : : sym->st_value, sym->st_size,
2658 : 77192 : ebl_symbol_type_name (ebl, GELF_ST_TYPE (sym->st_info), typebuf,
2659 : : sizeof (typebuf)),
2660 : 77192 : ebl_symbol_binding_name (ebl, GELF_ST_BIND (sym->st_info),
2661 : : bindbuf, sizeof (bindbuf)),
2662 : 77192 : get_visibility_type (GELF_ST_VISIBILITY (sym->st_other)),
2663 : 77192 : ebl_section_name (ebl, sym->st_shndx, xndx, scnbuf,
2664 : : sizeof (scnbuf), NULL, shnum),
2665 [ - + ]: 77192 : use_dynamic_segment == true
2666 : 0 : ? (char *)symstr_data->d_buf + sym->st_name
2667 : 77192 : : elf_strptr (ebl->elf, idx, sym->st_name));
2668 : :
2669 [ + + ]: 77192 : if (versym_data != NULL)
2670 : : {
2671 : : /* Get the version information. */
2672 : 3482 : GElf_Versym versym_mem;
2673 : 3482 : GElf_Versym *versym = gelf_getversym (versym_data, cnt, &versym_mem);
2674 : :
2675 [ + - + + ]: 3482 : if (versym != NULL && ((*versym & 0x8000) != 0 || *versym > 1))
2676 : : {
2677 : 2470 : bool is_nobits = false;
2678 : 2470 : bool check_def = xndx != SHN_UNDEF;
2679 : :
2680 [ + + - + ]: 2470 : if (xndx < SHN_LORESERVE || sym->st_shndx == SHN_XINDEX)
2681 : : {
2682 : 2450 : GElf_Shdr symshdr_mem;
2683 : 2450 : GElf_Shdr *symshdr = gelf_getshdr (
2684 : : elf_getscn (ebl->elf, xndx), &symshdr_mem);
2685 : :
2686 : 2450 : is_nobits
2687 [ + - + + ]: 4876 : = (symshdr != NULL && symshdr->sh_type == SHT_NOBITS);
2688 : : }
2689 : :
2690 [ + + ]: 2470 : if (is_nobits || !check_def)
2691 : : {
2692 : : /* We must test both. */
2693 : 2166 : GElf_Vernaux vernaux_mem;
2694 : 2166 : GElf_Vernaux *vernaux = NULL;
2695 : 2166 : size_t vn_offset = 0;
2696 : :
2697 : 2166 : GElf_Verneed verneed_mem;
2698 : 2166 : GElf_Verneed *verneed
2699 : 2166 : = gelf_getverneed (verneed_data, 0, &verneed_mem);
2700 [ + - ]: 7810 : while (verneed != NULL)
2701 : : {
2702 : 7810 : size_t vna_offset = vn_offset;
2703 : :
2704 : 7810 : vernaux = gelf_getvernaux (verneed_data,
2705 : 7810 : vna_offset += verneed->vn_aux,
2706 : : &vernaux_mem);
2707 [ + + ]: 27904 : while (vernaux != NULL && vernaux->vna_other != *versym
2708 [ + + ]: 17928 : && vernaux->vna_next != 0
2709 [ + - ]: 20094 : && (verneed_data->d_size - vna_offset
2710 [ + - ]: 12284 : >= vernaux->vna_next))
2711 : : {
2712 : : /* Update the offset. */
2713 : 12284 : vna_offset += vernaux->vna_next;
2714 : :
2715 : 12284 : vernaux = (vernaux->vna_next == 0
2716 : : ? NULL
2717 : 12284 : : gelf_getvernaux (verneed_data,
2718 : : vna_offset,
2719 : : &vernaux_mem));
2720 : : }
2721 : :
2722 : : /* Check whether we found the version. */
2723 [ + - + + ]: 7810 : if (vernaux != NULL && vernaux->vna_other == *versym)
2724 : : /* Found it. */
2725 : : break;
2726 : :
2727 [ + - ]: 5644 : if (verneed_data->d_size - vn_offset < verneed->vn_next)
2728 : : break;
2729 : :
2730 : 5644 : vn_offset += verneed->vn_next;
2731 : 5644 : verneed
2732 : : = (verneed->vn_next == 0
2733 : : ? NULL
2734 [ + - ]: 5644 : : gelf_getverneed (verneed_data, vn_offset,
2735 : : &verneed_mem));
2736 : : }
2737 : :
2738 [ + - + - ]: 2166 : if (vernaux != NULL && vernaux->vna_other == *versym)
2739 : : {
2740 : 4332 : printf ("@%s (%u)",
2741 [ - + ]: 2166 : use_dynamic_segment == true
2742 : 0 : ? (char *)symstr_data->d_buf
2743 : 0 : + vernaux->vna_name
2744 : 2166 : : elf_strptr (ebl->elf, verneed_stridx,
2745 : 2166 : vernaux->vna_name),
2746 : : (unsigned int)vernaux->vna_other);
2747 : 2166 : check_def = 0;
2748 : : }
2749 [ # # ]: 0 : else if (unlikely (!is_nobits))
2750 : 0 : error (0, 0, _ ("bad dynamic symbol"));
2751 : : else
2752 : : check_def = 1;
2753 : : }
2754 : :
2755 [ + - + - ]: 2470 : if (check_def && *versym != 0x8001)
2756 : : {
2757 : : /* We must test both. */
2758 : 304 : size_t vd_offset = 0;
2759 : :
2760 : 304 : GElf_Verdef verdef_mem;
2761 : 304 : GElf_Verdef *verdef
2762 : 304 : = gelf_getverdef (verdef_data, 0, &verdef_mem);
2763 [ + - ]: 866 : while (verdef != NULL)
2764 : : {
2765 [ + + ]: 866 : if (verdef->vd_ndx == (*versym & 0x7fff))
2766 : : /* Found the definition. */
2767 : : break;
2768 : :
2769 [ + - ]: 562 : if (verdef_data->d_size - vd_offset < verdef->vd_next)
2770 : : break;
2771 : :
2772 : 562 : vd_offset += verdef->vd_next;
2773 : 562 : verdef = (verdef->vd_next == 0
2774 : : ? NULL
2775 [ + - ]: 562 : : gelf_getverdef (verdef_data, vd_offset,
2776 : : &verdef_mem));
2777 : : }
2778 : :
2779 [ + - ]: 304 : if (verdef != NULL)
2780 : : {
2781 : 304 : GElf_Verdaux verdaux_mem;
2782 : 608 : GElf_Verdaux *verdaux = gelf_getverdaux (
2783 : 304 : verdef_data, vd_offset + verdef->vd_aux,
2784 : : &verdaux_mem);
2785 : :
2786 [ + - ]: 304 : if (verdaux != NULL)
2787 [ + - ]: 608 : printf ((*versym & 0x8000) ? "@%s" : "@@%s",
2788 [ - + ]: 304 : use_dynamic_segment == true
2789 : 0 : ? (char *)symstr_data->d_buf
2790 : 0 : + verdaux->vda_name
2791 : 304 : : elf_strptr (ebl->elf, verdef_stridx,
2792 : 304 : verdaux->vda_name));
2793 : : }
2794 : : }
2795 : : }
2796 : : }
2797 : :
2798 [ + + ]: 154384 : putchar_unlocked ('\n');
2799 : : }
2800 : 302 : }
2801 : :
2802 : :
2803 : : static bool
2804 : 302 : handle_symtab (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
2805 : : {
2806 : 302 : Elf_Data *versym_data = NULL;
2807 : 302 : Elf_Data *verneed_data = NULL;
2808 : 302 : Elf_Data *verdef_data = NULL;
2809 : 302 : Elf_Data *xndx_data = NULL;
2810 : 302 : int class = gelf_getclass (ebl->elf);
2811 : 302 : Elf32_Word verneed_stridx = 0;
2812 : 302 : Elf32_Word verdef_stridx = 0;
2813 : :
2814 : : /* Get the data of the section. */
2815 : 302 : Elf_Data *data = elf_getdata (scn, NULL);
2816 [ + - ]: 302 : if (data == NULL)
2817 : : return false;
2818 : :
2819 : : /* Find out whether we have other sections we might need. */
2820 : : Elf_Scn *runscn = NULL;
2821 [ + + ]: 9924 : while ((runscn = elf_nextscn (ebl->elf, runscn)) != NULL)
2822 : : {
2823 : 9622 : GElf_Shdr runshdr_mem;
2824 : 9622 : GElf_Shdr *runshdr = gelf_getshdr (runscn, &runshdr_mem);
2825 : :
2826 [ + - ]: 9622 : if (likely (runshdr != NULL))
2827 : : {
2828 [ + + ]: 9622 : if (runshdr->sh_type == SHT_GNU_versym
2829 [ + + ]: 226 : && runshdr->sh_link == elf_ndxscn (scn))
2830 : : /* Bingo, found the version information. Now get the data. */
2831 : 174 : versym_data = elf_getdata (runscn, NULL);
2832 [ + + ]: 9448 : else if (runshdr->sh_type == SHT_GNU_verneed)
2833 : : {
2834 : : /* This is the information about the needed versions. */
2835 : 226 : verneed_data = elf_getdata (runscn, NULL);
2836 : 226 : verneed_stridx = runshdr->sh_link;
2837 : : }
2838 [ + + ]: 9222 : else if (runshdr->sh_type == SHT_GNU_verdef)
2839 : : {
2840 : : /* This is the information about the defined versions. */
2841 : 8 : verdef_data = elf_getdata (runscn, NULL);
2842 : 8 : verdef_stridx = runshdr->sh_link;
2843 : : }
2844 [ + - ]: 9214 : else if (runshdr->sh_type == SHT_SYMTAB_SHNDX
2845 [ # # ]: 0 : && runshdr->sh_link == elf_ndxscn (scn))
2846 : : /* Extended section index. */
2847 : 0 : xndx_data = elf_getdata (runscn, NULL);
2848 : : }
2849 : : }
2850 : :
2851 : : /* Get the section header string table index. */
2852 : 302 : size_t shstrndx;
2853 [ - + ]: 302 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
2854 : 0 : error_exit (0, _("cannot get section header string table index"));
2855 : :
2856 : 302 : GElf_Shdr glink_mem;
2857 : 302 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
2858 : : &glink_mem);
2859 [ - + ]: 302 : if (glink == NULL)
2860 : 0 : error_exit (0, _("invalid sh_link value in section %zu"),
2861 : : elf_ndxscn (scn));
2862 : :
2863 : : /* Now we can compute the number of entries in the section. */
2864 : 604 : unsigned int nsyms = data->d_size / (class == ELFCLASS32
2865 : : ? sizeof (Elf32_Sym)
2866 [ + + ]: 302 : : sizeof (Elf64_Sym));
2867 : :
2868 : 302 : printf (ngettext ("\nSymbol table [%2u] '%s' contains %u entry:\n",
2869 : : "\nSymbol table [%2u] '%s' contains %u entries:\n",
2870 : : nsyms),
2871 : 302 : (unsigned int) elf_ndxscn (scn),
2872 : 302 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name), nsyms);
2873 : 302 : printf (ngettext (" %lu local symbol String table: [%2u] '%s'\n",
2874 : : " %lu local symbols String table: [%2u] '%s'\n",
2875 : : shdr->sh_info),
2876 : 302 : (unsigned long int) shdr->sh_info,
2877 : 302 : (unsigned int) shdr->sh_link,
2878 : 302 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
2879 : :
2880 [ + + ]: 604 : fputs_unlocked (class == ELFCLASS32
2881 : 38 : ? _("\
2882 : : Num: Value Size Type Bind Vis Ndx Name\n")
2883 : 264 : : _("\
2884 : : Num: Value Size Type Bind Vis Ndx Name\n"),
2885 : : stdout);
2886 : :
2887 : 302 : process_symtab(ebl, nsyms, shdr->sh_link, verneed_stridx, verdef_stridx,
2888 : : data, versym_data, NULL, verneed_data, verdef_data, xndx_data);
2889 : 302 : return true;
2890 : : }
2891 : :
2892 : :
2893 : : static bool
2894 : 0 : handle_dynamic_symtab (Ebl *ebl)
2895 : : {
2896 : 0 : GElf_Phdr phdr_mem;
2897 : 0 : GElf_Phdr *phdr = NULL;
2898 : : /* phnum is a static variable which was already fetched in function
2899 : : process_elf_file. */
2900 [ # # ]: 0 : for (size_t i = 0; i < phnum; ++i)
2901 : : {
2902 : 0 : phdr = gelf_getphdr (ebl->elf, i, &phdr_mem);
2903 [ # # ]: 0 : if (phdr->p_type == PT_DYNAMIC)
2904 : : break;
2905 : : }
2906 [ # # ]: 0 : if (phdr == NULL)
2907 : : return false;
2908 : :
2909 : 0 : GElf_Addr addrs[i_max] = {
2910 : : 0,
2911 : : };
2912 : 0 : GElf_Off offs[i_max] = {
2913 : : 0,
2914 : : };
2915 : 0 : get_dynscn_addrs (ebl->elf, phdr, addrs);
2916 : 0 : find_offsets (ebl->elf, 0, i_max, addrs, offs);
2917 : :
2918 : 0 : size_t syments = 0;
2919 : :
2920 : 0 : GElf_Ehdr ehdr_mem;
2921 : 0 : GElf_Ehdr *ehdr = gelf_getehdr (ebl->elf, &ehdr_mem);
2922 : :
2923 [ # # ]: 0 : if (offs[i_hash] != 0)
2924 : : {
2925 : : /* In the original format, .hash says the size of .dynsym. */
2926 : :
2927 [ # # # # : 0 : size_t entsz = SH_ENTSIZE_HASH (ehdr);
# # ]
2928 : : Elf_Data *data
2929 : 0 : = elf_getdata_rawchunk (ebl->elf, offs[i_hash] + entsz, entsz,
2930 : : (entsz == 4 ? ELF_T_WORD : ELF_T_XWORD));
2931 [ # # ]: 0 : if (data != NULL)
2932 : 0 : syments = (entsz == 4 ? *(const GElf_Word *)data->d_buf
2933 [ # # ]: 0 : : *(const GElf_Xword *)data->d_buf);
2934 : : }
2935 [ # # # # ]: 0 : if (offs[i_gnu_hash] != 0 && syments == 0)
2936 : : {
2937 : : /* In the new format, we can derive it with some work. */
2938 : :
2939 : 0 : const struct
2940 : : {
2941 : : Elf32_Word nbuckets;
2942 : : Elf32_Word symndx;
2943 : : Elf32_Word maskwords;
2944 : : Elf32_Word shift2;
2945 : : } * header;
2946 : :
2947 : 0 : Elf_Data *data = elf_getdata_rawchunk (ebl->elf, offs[i_gnu_hash],
2948 : : sizeof *header, ELF_T_WORD);
2949 [ # # ]: 0 : if (data != NULL)
2950 : : {
2951 : 0 : header = data->d_buf;
2952 : 0 : Elf32_Word nbuckets = header->nbuckets;
2953 : 0 : Elf32_Word symndx = header->symndx;
2954 : 0 : GElf_Off buckets_at
2955 : : = (offs[i_gnu_hash] + sizeof *header
2956 : 0 : + (gelf_getclass (ebl->elf) * sizeof (Elf32_Word)
2957 : 0 : * header->maskwords));
2958 : :
2959 : : // elf_getdata_rawchunk takes a size_t, make sure it
2960 : : // doesn't overflow.
2961 : : #if SIZE_MAX <= UINT32_MAX
2962 : : if (nbuckets > SIZE_MAX / sizeof (Elf32_Word))
2963 : : data = NULL;
2964 : : else
2965 : : #endif
2966 : 0 : data = elf_getdata_rawchunk (ebl->elf, buckets_at,
2967 : : nbuckets * sizeof (Elf32_Word),
2968 : : ELF_T_WORD);
2969 [ # # ]: 0 : if (data != NULL && symndx < nbuckets)
2970 : : {
2971 : 0 : const Elf32_Word *const buckets = data->d_buf;
2972 : 0 : Elf32_Word maxndx = symndx;
2973 [ # # ]: 0 : for (Elf32_Word bucket = 0; bucket < nbuckets; ++bucket)
2974 : 0 : if (buckets[bucket] > maxndx)
2975 : : maxndx = buckets[bucket];
2976 : :
2977 : 0 : GElf_Off hasharr_at
2978 : : = (buckets_at + nbuckets * sizeof (Elf32_Word));
2979 : 0 : hasharr_at += (maxndx - symndx) * sizeof (Elf32_Word);
2980 : 0 : do
2981 : : {
2982 : 0 : data = elf_getdata_rawchunk (
2983 : : ebl->elf, hasharr_at, sizeof (Elf32_Word), ELF_T_WORD);
2984 [ # # # # ]: 0 : if (data != NULL && (*(const Elf32_Word *)data->d_buf & 1u))
2985 : : {
2986 : 0 : syments = maxndx + 1;
2987 : 0 : break;
2988 : : }
2989 : 0 : ++maxndx;
2990 : 0 : hasharr_at += sizeof (Elf32_Word);
2991 : : }
2992 [ # # ]: 0 : while (data != NULL);
2993 : : }
2994 : : }
2995 : : }
2996 [ # # # # ]: 0 : if (offs[i_strtab] > offs[i_symtab] && syments == 0)
2997 : 0 : syments = ((offs[i_strtab] - offs[i_symtab])
2998 : 0 : / gelf_fsize (ebl->elf, ELF_T_SYM, 1, EV_CURRENT));
2999 : :
3000 [ # # # # : 0 : if (syments <= 0 || offs[i_strtab] == 0 || offs[i_symtab] == 0)
# # ]
3001 : : {
3002 : 0 : error_exit (0, _ ("Dynamic symbol information is not available for "
3003 : : "displaying symbols."));
3004 : : }
3005 : :
3006 : : /* All the data chunk initializaion. */
3007 : 0 : Elf_Data *symdata = NULL;
3008 : 0 : Elf_Data *symstrdata = NULL;
3009 : 0 : Elf_Data *versym_data = NULL;
3010 : 0 : Elf_Data *verdef_data = NULL;
3011 : 0 : Elf_Data *verneed_data = NULL;
3012 : :
3013 : 0 : symdata = elf_getdata_rawchunk (
3014 : : ebl->elf, offs[i_symtab],
3015 : : gelf_fsize (ebl->elf, ELF_T_SYM, syments, EV_CURRENT), ELF_T_SYM);
3016 : 0 : symstrdata = elf_getdata_rawchunk (ebl->elf, offs[i_strtab], addrs[i_strsz],
3017 : : ELF_T_BYTE);
3018 : 0 : versym_data = elf_getdata_rawchunk (
3019 : 0 : ebl->elf, offs[i_versym], syments * sizeof (Elf64_Half), ELF_T_HALF);
3020 : :
3021 : : /* Get the verneed_data without vernaux. */
3022 : 0 : verneed_data = elf_getdata_rawchunk (
3023 : 0 : ebl->elf, offs[i_verneed], addrs[i_verneednum] * sizeof (Elf64_Verneed),
3024 : : ELF_T_VNEED);
3025 : 0 : size_t vernauxnum = 0;
3026 : 0 : size_t vn_next_offset = 0;
3027 : :
3028 [ # # ]: 0 : for (size_t i = 0; i < addrs[i_verneednum]; i++)
3029 : : {
3030 : 0 : GElf_Verneed *verneed
3031 : 0 : = (GElf_Verneed *)(verneed_data->d_buf + vn_next_offset);
3032 : 0 : vernauxnum += verneed->vn_cnt;
3033 : 0 : vn_next_offset += verneed->vn_next;
3034 : : }
3035 : :
3036 : : /* Update the verneed_data to include the vernaux. */
3037 : 0 : verneed_data = elf_getdata_rawchunk (
3038 : : ebl->elf, offs[i_verneed],
3039 : 0 : (addrs[i_verneednum] + vernauxnum) * sizeof (GElf_Verneed), ELF_T_VNEED);
3040 : :
3041 : : /* Get the verdef_data without verdaux. */
3042 : 0 : verdef_data = elf_getdata_rawchunk (
3043 : 0 : ebl->elf, offs[i_verdef], addrs[i_verdefnum] * sizeof (Elf64_Verdef),
3044 : : ELF_T_VDEF);
3045 : 0 : size_t verdauxnum = 0;
3046 : 0 : size_t vd_next_offset = 0;
3047 : :
3048 [ # # ]: 0 : for (size_t i = 0; i < addrs[i_verdefnum]; i++)
3049 : : {
3050 : 0 : GElf_Verdef *verdef
3051 : 0 : = (GElf_Verdef *)(verdef_data->d_buf + vd_next_offset);
3052 : 0 : verdauxnum += verdef->vd_cnt;
3053 : 0 : vd_next_offset += verdef->vd_next;
3054 : : }
3055 : :
3056 : : /* Update the verdef_data to include the verdaux. */
3057 : 0 : verdef_data = elf_getdata_rawchunk (
3058 : : ebl->elf, offs[i_verdef],
3059 : 0 : (addrs[i_verdefnum] + verdauxnum) * sizeof (GElf_Verdef), ELF_T_VDEF);
3060 : :
3061 : 0 : unsigned int nsyms = (unsigned int)syments;
3062 : 0 : process_symtab (ebl, nsyms, 0, 0, 0, symdata, versym_data, symstrdata,
3063 : : verneed_data, verdef_data, NULL);
3064 : 0 : return true;
3065 : : }
3066 : :
3067 : :
3068 : : /* Print version information. */
3069 : : static void
3070 : 220 : print_verinfo (Ebl *ebl)
3071 : : {
3072 : : /* Find the version information sections. For this we have to
3073 : : search through the section table. */
3074 : 220 : Elf_Scn *scn = NULL;
3075 : :
3076 [ + + ]: 7144 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
3077 : : {
3078 : : /* Handle the section if it is part of the versioning handling. */
3079 : 6924 : GElf_Shdr shdr_mem;
3080 : 6924 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
3081 : :
3082 [ + - ]: 6924 : if (likely (shdr != NULL))
3083 : : {
3084 [ + + ]: 6924 : if (shdr->sh_type == SHT_GNU_verneed)
3085 : 154 : handle_verneed (ebl, scn, shdr);
3086 [ + + ]: 6770 : else if (shdr->sh_type == SHT_GNU_verdef)
3087 : 4 : handle_verdef (ebl, scn, shdr);
3088 [ + + ]: 6766 : else if (shdr->sh_type == SHT_GNU_versym)
3089 : 154 : handle_versym (ebl, scn, shdr);
3090 : : }
3091 : : }
3092 : 220 : }
3093 : :
3094 : :
3095 : : static const char *
3096 : 398 : get_ver_flags (unsigned int flags)
3097 : : {
3098 : 398 : static char buf[32];
3099 : 398 : char *endp;
3100 : :
3101 [ + + ]: 398 : if (flags == 0)
3102 : 394 : return _("none");
3103 : :
3104 [ + - ]: 4 : if (flags & VER_FLG_BASE)
3105 : 4 : endp = stpcpy (buf, "BASE ");
3106 : : else
3107 : : endp = buf;
3108 : :
3109 [ - + ]: 4 : if (flags & VER_FLG_WEAK)
3110 : : {
3111 [ # # ]: 0 : if (endp != buf)
3112 : 0 : endp = stpcpy (endp, "| ");
3113 : :
3114 : 0 : endp = stpcpy (endp, "WEAK ");
3115 : : }
3116 : :
3117 [ - + ]: 4 : if (unlikely (flags & ~(VER_FLG_BASE | VER_FLG_WEAK)))
3118 : : {
3119 : 0 : strncpy (endp, _("| <unknown>"), buf + sizeof (buf) - endp);
3120 : 0 : buf[sizeof (buf) - 1] = '\0';
3121 : : }
3122 : :
3123 : : return buf;
3124 : : }
3125 : :
3126 : :
3127 : : static void
3128 : 154 : handle_verneed (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
3129 : : {
3130 : 154 : int class = gelf_getclass (ebl->elf);
3131 : :
3132 : : /* Get the data of the section. */
3133 : 154 : Elf_Data *data = elf_getdata (scn, NULL);
3134 [ - + ]: 154 : if (data == NULL)
3135 : 0 : return;
3136 : :
3137 : : /* Get the section header string table index. */
3138 : 154 : size_t shstrndx;
3139 [ - + ]: 154 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
3140 : 0 : error_exit (0, _("cannot get section header string table index"));
3141 : :
3142 : 154 : GElf_Shdr glink_mem;
3143 : 154 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
3144 : : &glink_mem);
3145 [ - + ]: 154 : if (glink == NULL)
3146 : 0 : error_exit (0, _("invalid sh_link value in section %zu"),
3147 : : elf_ndxscn (scn));
3148 : :
3149 : 154 : printf (ngettext ("\
3150 : : \nVersion needs section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n",
3151 : : "\
3152 : : \nVersion needs section [%2u] '%s' contains %d entries:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n",
3153 : : shdr->sh_info),
3154 : 154 : (unsigned int) elf_ndxscn (scn),
3155 : 154 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name), shdr->sh_info,
3156 : : class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
3157 : : shdr->sh_offset,
3158 [ + + ]: 154 : (unsigned int) shdr->sh_link,
3159 : 154 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
3160 : :
3161 : 154 : unsigned int offset = 0;
3162 [ + - ]: 208 : for (unsigned int cnt = shdr->sh_info; cnt > 0; cnt--)
3163 : : {
3164 : : /* Get the data at the next offset. */
3165 : 208 : GElf_Verneed needmem;
3166 : 208 : GElf_Verneed *need = gelf_getverneed (data, offset, &needmem);
3167 [ + - ]: 208 : if (unlikely (need == NULL))
3168 : : break;
3169 : :
3170 : 624 : printf (_(" %#06x: Version: %hu File: %s Cnt: %hu\n"),
3171 : 208 : offset, (unsigned short int) need->vn_version,
3172 : 208 : elf_strptr (ebl->elf, shdr->sh_link, need->vn_file),
3173 : 208 : (unsigned short int) need->vn_cnt);
3174 : :
3175 : 208 : unsigned int auxoffset = offset + need->vn_aux;
3176 [ + - ]: 374 : for (unsigned int cnt2 = need->vn_cnt; cnt2 > 0; cnt2--)
3177 : : {
3178 : 374 : GElf_Vernaux auxmem;
3179 : 374 : GElf_Vernaux *aux = gelf_getvernaux (data, auxoffset, &auxmem);
3180 [ + - ]: 374 : if (unlikely (aux == NULL))
3181 : : break;
3182 : :
3183 : 374 : printf (_(" %#06x: Name: %s Flags: %s Version: %hu\n"),
3184 : : auxoffset,
3185 : 374 : elf_strptr (ebl->elf, shdr->sh_link, aux->vna_name),
3186 : 374 : get_ver_flags (aux->vna_flags),
3187 : 374 : (unsigned short int) aux->vna_other);
3188 : :
3189 [ + + ]: 374 : if (aux->vna_next == 0)
3190 : : break;
3191 : :
3192 : 166 : auxoffset += aux->vna_next;
3193 : : }
3194 : :
3195 : : /* Find the next offset. */
3196 [ + + ]: 208 : if (need->vn_next == 0)
3197 : : break;
3198 : :
3199 : 54 : offset += need->vn_next;
3200 : : }
3201 : : }
3202 : :
3203 : :
3204 : : static void
3205 : 4 : handle_verdef (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
3206 : : {
3207 : : /* Get the data of the section. */
3208 : 4 : Elf_Data *data = elf_getdata (scn, NULL);
3209 [ - + ]: 4 : if (data == NULL)
3210 : 0 : return;
3211 : :
3212 : : /* Get the section header string table index. */
3213 : 4 : size_t shstrndx;
3214 [ - + ]: 4 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
3215 : 0 : error_exit (0, _("cannot get section header string table index"));
3216 : :
3217 : 4 : GElf_Shdr glink_mem;
3218 : 4 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
3219 : : &glink_mem);
3220 [ - + ]: 4 : if (glink == NULL)
3221 : 0 : error_exit (0, _("invalid sh_link value in section %zu"),
3222 : : elf_ndxscn (scn));
3223 : :
3224 : 4 : int class = gelf_getclass (ebl->elf);
3225 : 4 : printf (ngettext ("\
3226 : : \nVersion definition section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n",
3227 : : "\
3228 : : \nVersion definition section [%2u] '%s' contains %d entries:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n",
3229 : : shdr->sh_info),
3230 : 4 : (unsigned int) elf_ndxscn (scn),
3231 : 4 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
3232 : : shdr->sh_info,
3233 : : class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
3234 : : shdr->sh_offset,
3235 [ + - ]: 4 : (unsigned int) shdr->sh_link,
3236 : 4 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
3237 : :
3238 : 4 : unsigned int offset = 0;
3239 [ + - ]: 24 : for (unsigned int cnt = shdr->sh_info; cnt > 0; cnt--)
3240 : : {
3241 : : /* Get the data at the next offset. */
3242 : 24 : GElf_Verdef defmem;
3243 : 24 : GElf_Verdef *def = gelf_getverdef (data, offset, &defmem);
3244 [ + - ]: 24 : if (unlikely (def == NULL))
3245 : : break;
3246 : :
3247 : 24 : unsigned int auxoffset = offset + def->vd_aux;
3248 : 24 : GElf_Verdaux auxmem;
3249 : 24 : GElf_Verdaux *aux = gelf_getverdaux (data, auxoffset, &auxmem);
3250 [ + - ]: 24 : if (unlikely (aux == NULL))
3251 : : break;
3252 : :
3253 : 96 : printf (_("\
3254 : : %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n"),
3255 : 24 : offset, def->vd_version,
3256 : 24 : get_ver_flags (def->vd_flags),
3257 : 24 : def->vd_ndx,
3258 : 24 : def->vd_cnt,
3259 : 24 : elf_strptr (ebl->elf, shdr->sh_link, aux->vda_name));
3260 : :
3261 : 24 : auxoffset += aux->vda_next;
3262 [ + + ]: 24 : for (unsigned int cnt2 = 1; cnt2 < def->vd_cnt; ++cnt2)
3263 : : {
3264 : 16 : aux = gelf_getverdaux (data, auxoffset, &auxmem);
3265 [ + - ]: 16 : if (unlikely (aux == NULL))
3266 : : break;
3267 : :
3268 : 16 : printf (_(" %#06x: Parent %d: %s\n"),
3269 : : auxoffset, cnt2,
3270 : 16 : elf_strptr (ebl->elf, shdr->sh_link, aux->vda_name));
3271 : :
3272 [ - + ]: 16 : if (aux->vda_next == 0)
3273 : : break;
3274 : :
3275 : 0 : auxoffset += aux->vda_next;
3276 : : }
3277 : :
3278 : : /* Find the next offset. */
3279 [ + + ]: 24 : if (def->vd_next == 0)
3280 : : break;
3281 : 20 : offset += def->vd_next;
3282 : : }
3283 : : }
3284 : :
3285 : :
3286 : : static void
3287 : 154 : handle_versym (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
3288 : : {
3289 : 154 : int class = gelf_getclass (ebl->elf);
3290 : 154 : const char **vername;
3291 : 154 : const char **filename;
3292 : :
3293 : : /* Get the data of the section. */
3294 : 154 : Elf_Data *data = elf_getdata (scn, NULL);
3295 [ + - ]: 154 : if (data == NULL)
3296 : 0 : return;
3297 : :
3298 : : /* Get the section header string table index. */
3299 : 154 : size_t shstrndx;
3300 [ - + ]: 154 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
3301 : 0 : error_exit (0, _("cannot get section header string table index"));
3302 : :
3303 : : /* We have to find the version definition section and extract the
3304 : : version names. */
3305 : : Elf_Scn *defscn = NULL;
3306 : : Elf_Scn *needscn = NULL;
3307 : :
3308 : : Elf_Scn *verscn = NULL;
3309 [ + + ]: 4738 : while ((verscn = elf_nextscn (ebl->elf, verscn)) != NULL)
3310 : : {
3311 : 4584 : GElf_Shdr vershdr_mem;
3312 : 4584 : GElf_Shdr *vershdr = gelf_getshdr (verscn, &vershdr_mem);
3313 : :
3314 [ - + ]: 4584 : if (likely (vershdr != NULL))
3315 : : {
3316 [ + + ]: 4584 : if (vershdr->sh_type == SHT_GNU_verdef)
3317 : : defscn = verscn;
3318 [ + + ]: 4580 : else if (vershdr->sh_type == SHT_GNU_verneed)
3319 : 4584 : needscn = verscn;
3320 : : }
3321 : : }
3322 : :
3323 : 154 : size_t nvername;
3324 [ + - ]: 154 : if (defscn != NULL || needscn != NULL)
3325 : : {
3326 : : /* We have a version information (better should have). Now get
3327 : : the version names. First find the maximum version number. */
3328 : 154 : nvername = 0;
3329 [ + + ]: 154 : if (defscn != NULL)
3330 : : {
3331 : : /* Run through the version definitions and find the highest
3332 : : index. */
3333 : 4 : unsigned int offset = 0;
3334 : 4 : Elf_Data *defdata;
3335 : 4 : GElf_Shdr defshdrmem;
3336 : 4 : GElf_Shdr *defshdr;
3337 : :
3338 : 4 : defdata = elf_getdata (defscn, NULL);
3339 [ + - ]: 4 : if (unlikely (defdata == NULL))
3340 : 0 : return;
3341 : :
3342 : 4 : defshdr = gelf_getshdr (defscn, &defshdrmem);
3343 [ + - ]: 4 : if (unlikely (defshdr == NULL))
3344 : : return;
3345 : :
3346 [ + - ]: 24 : for (unsigned int cnt = 0; cnt < defshdr->sh_info; ++cnt)
3347 : : {
3348 : 24 : GElf_Verdef defmem;
3349 : 24 : GElf_Verdef *def;
3350 : :
3351 : : /* Get the data at the next offset. */
3352 : 24 : def = gelf_getverdef (defdata, offset, &defmem);
3353 [ + - ]: 24 : if (unlikely (def == NULL))
3354 : : break;
3355 : :
3356 : 24 : nvername = MAX (nvername, (size_t) (def->vd_ndx & 0x7fff));
3357 : :
3358 [ + + ]: 24 : if (def->vd_next == 0)
3359 : : break;
3360 : 20 : offset += def->vd_next;
3361 : : }
3362 : : }
3363 [ + - ]: 154 : if (needscn != NULL)
3364 : : {
3365 : 154 : unsigned int offset = 0;
3366 : 154 : Elf_Data *needdata;
3367 : 154 : GElf_Shdr needshdrmem;
3368 : 154 : GElf_Shdr *needshdr;
3369 : :
3370 : 154 : needdata = elf_getdata (needscn, NULL);
3371 [ + - ]: 154 : if (unlikely (needdata == NULL))
3372 : 0 : return;
3373 : :
3374 : 154 : needshdr = gelf_getshdr (needscn, &needshdrmem);
3375 [ + - ]: 154 : if (unlikely (needshdr == NULL))
3376 : : return;
3377 : :
3378 [ + - ]: 208 : for (unsigned int cnt = 0; cnt < needshdr->sh_info; ++cnt)
3379 : : {
3380 : 208 : GElf_Verneed needmem;
3381 : 208 : GElf_Verneed *need;
3382 : 208 : unsigned int auxoffset;
3383 : 208 : int cnt2;
3384 : :
3385 : : /* Get the data at the next offset. */
3386 : 208 : need = gelf_getverneed (needdata, offset, &needmem);
3387 [ + - ]: 208 : if (unlikely (need == NULL))
3388 : : break;
3389 : :
3390 : : /* Run through the auxiliary entries. */
3391 : 208 : auxoffset = offset + need->vn_aux;
3392 [ + - ]: 374 : for (cnt2 = need->vn_cnt; --cnt2 >= 0; )
3393 : : {
3394 : 374 : GElf_Vernaux auxmem;
3395 : 374 : GElf_Vernaux *aux;
3396 : :
3397 : 374 : aux = gelf_getvernaux (needdata, auxoffset, &auxmem);
3398 [ + - ]: 374 : if (unlikely (aux == NULL))
3399 : : break;
3400 : :
3401 : 374 : nvername = MAX (nvername,
3402 : : (size_t) (aux->vna_other & 0x7fff));
3403 : :
3404 [ + + ]: 374 : if (aux->vna_next == 0)
3405 : : break;
3406 : 166 : auxoffset += aux->vna_next;
3407 : : }
3408 : :
3409 [ + + ]: 208 : if (need->vn_next == 0)
3410 : : break;
3411 : 54 : offset += need->vn_next;
3412 : : }
3413 : : }
3414 : :
3415 : : /* This is the number of versions we know about. */
3416 : 154 : ++nvername;
3417 : :
3418 : : /* Allocate the array. */
3419 : 154 : vername = (const char **) alloca (nvername * sizeof (const char *));
3420 [ + + ]: 154 : memset(vername, 0, nvername * sizeof (const char *));
3421 : 154 : filename = (const char **) alloca (nvername * sizeof (const char *));
3422 : 154 : memset(filename, 0, nvername * sizeof (const char *));
3423 : :
3424 : : /* Run through the data structures again and collect the strings. */
3425 [ + + ]: 154 : if (defscn != NULL)
3426 : : {
3427 : : /* Run through the version definitions and find the highest
3428 : : index. */
3429 : 4 : unsigned int offset = 0;
3430 : 4 : Elf_Data *defdata;
3431 : 4 : GElf_Shdr defshdrmem;
3432 : 4 : GElf_Shdr *defshdr;
3433 : :
3434 : 4 : defdata = elf_getdata (defscn, NULL);
3435 [ + - ]: 4 : if (unlikely (defdata == NULL))
3436 : 0 : return;
3437 : :
3438 : 4 : defshdr = gelf_getshdr (defscn, &defshdrmem);
3439 [ + - ]: 4 : if (unlikely (defshdr == NULL))
3440 : : return;
3441 : :
3442 [ + - ]: 24 : for (unsigned int cnt = 0; cnt < defshdr->sh_info; ++cnt)
3443 : : {
3444 : :
3445 : : /* Get the data at the next offset. */
3446 : 24 : GElf_Verdef defmem;
3447 : 24 : GElf_Verdef *def = gelf_getverdef (defdata, offset, &defmem);
3448 [ + - ]: 24 : if (unlikely (def == NULL))
3449 : : break;
3450 : :
3451 : 24 : GElf_Verdaux auxmem;
3452 : 48 : GElf_Verdaux *aux = gelf_getverdaux (defdata,
3453 : 24 : offset + def->vd_aux,
3454 : : &auxmem);
3455 [ + - ]: 24 : if (unlikely (aux == NULL))
3456 : : break;
3457 : :
3458 : 24 : vername[def->vd_ndx & 0x7fff]
3459 : 24 : = elf_strptr (ebl->elf, defshdr->sh_link, aux->vda_name);
3460 : 24 : filename[def->vd_ndx & 0x7fff] = NULL;
3461 : :
3462 [ + + ]: 24 : if (def->vd_next == 0)
3463 : : break;
3464 : 20 : offset += def->vd_next;
3465 : : }
3466 : : }
3467 [ + - ]: 154 : if (needscn != NULL)
3468 : : {
3469 : 154 : unsigned int offset = 0;
3470 : :
3471 : 154 : Elf_Data *needdata = elf_getdata (needscn, NULL);
3472 : 154 : GElf_Shdr needshdrmem;
3473 : 154 : GElf_Shdr *needshdr = gelf_getshdr (needscn, &needshdrmem);
3474 [ - + ]: 154 : if (unlikely (needdata == NULL || needshdr == NULL))
3475 : 0 : return;
3476 : :
3477 [ + - ]: 208 : for (unsigned int cnt = 0; cnt < needshdr->sh_info; ++cnt)
3478 : : {
3479 : : /* Get the data at the next offset. */
3480 : 208 : GElf_Verneed needmem;
3481 : 208 : GElf_Verneed *need = gelf_getverneed (needdata, offset,
3482 : : &needmem);
3483 [ + - ]: 208 : if (unlikely (need == NULL))
3484 : : break;
3485 : :
3486 : : /* Run through the auxiliary entries. */
3487 : 208 : unsigned int auxoffset = offset + need->vn_aux;
3488 [ + - ]: 374 : for (int cnt2 = need->vn_cnt; --cnt2 >= 0; )
3489 : : {
3490 : 374 : GElf_Vernaux auxmem;
3491 : 374 : GElf_Vernaux *aux = gelf_getvernaux (needdata, auxoffset,
3492 : : &auxmem);
3493 [ + - ]: 374 : if (unlikely (aux == NULL))
3494 : : break;
3495 : :
3496 : 374 : vername[aux->vna_other & 0x7fff]
3497 : 374 : = elf_strptr (ebl->elf, needshdr->sh_link, aux->vna_name);
3498 : 374 : filename[aux->vna_other & 0x7fff]
3499 : 374 : = elf_strptr (ebl->elf, needshdr->sh_link, need->vn_file);
3500 : :
3501 [ + + ]: 374 : if (aux->vna_next == 0)
3502 : : break;
3503 : 166 : auxoffset += aux->vna_next;
3504 : : }
3505 : :
3506 [ + + ]: 208 : if (need->vn_next == 0)
3507 : : break;
3508 : 54 : offset += need->vn_next;
3509 : : }
3510 : : }
3511 : : }
3512 : : else
3513 : : {
3514 : : vername = NULL;
3515 : : nvername = 1;
3516 : : filename = NULL;
3517 : : }
3518 : :
3519 : 154 : GElf_Shdr glink_mem;
3520 : 154 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
3521 : : &glink_mem);
3522 : 154 : size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_HALF, 1, EV_CURRENT);
3523 [ - + ]: 154 : if (glink == NULL)
3524 : 0 : error_exit (0, _("invalid sh_link value in section %zu"),
3525 : : elf_ndxscn (scn));
3526 : :
3527 : : /* Print the header. */
3528 : 154 : printf (ngettext ("\
3529 : : \nVersion symbols section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'",
3530 : : "\
3531 : : \nVersion symbols section [%2u] '%s' contains %d entries:\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'",
3532 : : shdr->sh_size / sh_entsize),
3533 : 154 : (unsigned int) elf_ndxscn (scn),
3534 : 154 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
3535 : 154 : (int) (shdr->sh_size / sh_entsize),
3536 : : class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
3537 : : shdr->sh_offset,
3538 [ + + ]: 154 : (unsigned int) shdr->sh_link,
3539 : 154 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
3540 : :
3541 : : /* Now we can finally look at the actual contents of this section. */
3542 [ + + ]: 3378 : for (unsigned int cnt = 0; cnt < shdr->sh_size / sh_entsize; ++cnt)
3543 : : {
3544 [ + + ]: 3224 : if (cnt % 2 == 0)
3545 : 1632 : printf ("\n %4d:", cnt);
3546 : :
3547 : 3224 : GElf_Versym symmem;
3548 : 3224 : GElf_Versym *sym = gelf_getversym (data, cnt, &symmem);
3549 [ + - ]: 3224 : if (sym == NULL)
3550 : : break;
3551 : :
3552 [ + + + ]: 3224 : switch (*sym)
3553 : : {
3554 : 286 : ssize_t n;
3555 : 286 : case 0:
3556 : 286 : fputs_unlocked (_(" 0 *local* "),
3557 : : stdout);
3558 : 286 : break;
3559 : :
3560 : 506 : case 1:
3561 : 506 : fputs_unlocked (_(" 1 *global* "),
3562 : : stdout);
3563 : 506 : break;
3564 : :
3565 : 2432 : default:
3566 [ + - ]: 4864 : n = printf ("%4d%c%s",
3567 [ + - ]: 2432 : *sym & 0x7fff, *sym & 0x8000 ? 'h' : ' ',
3568 : : (vername != NULL
3569 [ + - ]: 2432 : && (unsigned int) (*sym & 0x7fff) < nvername)
3570 : 2432 : ? vername[*sym & 0x7fff] : "???");
3571 [ + - ]: 2432 : if ((unsigned int) (*sym & 0x7fff) < nvername
3572 [ + - + + ]: 2432 : && filename != NULL && filename[*sym & 0x7fff] != NULL)
3573 : 2128 : n += printf ("(%s)", filename[*sym & 0x7fff]);
3574 : 3224 : printf ("%*s", MAX (0, 33 - (int) n), " ");
3575 : : break;
3576 : : }
3577 : : }
3578 [ - + ]: 308 : putchar_unlocked ('\n');
3579 : : }
3580 : :
3581 : :
3582 : : static void
3583 : 154 : print_hash_info (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx,
3584 : : uint_fast32_t maxlength, Elf32_Word nbucket,
3585 : : uint_fast32_t nsyms, uint32_t *lengths, const char *extrastr)
3586 : : {
3587 : 154 : uint32_t *counts = xcalloc (maxlength + 1, sizeof (uint32_t));
3588 : :
3589 [ + + ]: 602 : for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt)
3590 : 448 : ++counts[lengths[cnt]];
3591 : :
3592 : 154 : GElf_Shdr glink_mem;
3593 : 154 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf,
3594 : 154 : shdr->sh_link),
3595 : : &glink_mem);
3596 [ - + ]: 154 : if (glink == NULL)
3597 : : {
3598 : 0 : error (0, 0, _("invalid sh_link value in section %zu"),
3599 : : elf_ndxscn (scn));
3600 : 0 : free (counts);
3601 : 0 : return;
3602 : : }
3603 : :
3604 [ + + ]: 308 : printf (ngettext ("\
3605 : : \nHistogram for bucket list length in section [%2u] '%s' (total of %d bucket):\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n",
3606 : : "\
3607 : : \nHistogram for bucket list length in section [%2u] '%s' (total of %d buckets):\n Addr: %#0*" PRIx64 " Offset: %#08" PRIx64 " Link to section: [%2u] '%s'\n",
3608 : : nbucket),
3609 : 154 : (unsigned int) elf_ndxscn (scn),
3610 : 154 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
3611 : : (int) nbucket,
3612 : 154 : gelf_getclass (ebl->elf) == ELFCLASS32 ? 10 : 18,
3613 : : shdr->sh_addr,
3614 : : shdr->sh_offset,
3615 : 154 : (unsigned int) shdr->sh_link,
3616 : 154 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
3617 : :
3618 [ + - ]: 154 : if (extrastr != NULL)
3619 : 154 : fputs (extrastr, stdout);
3620 : :
3621 [ + - ]: 154 : if (likely (nbucket > 0))
3622 : : {
3623 : 154 : uint64_t success = 0;
3624 : :
3625 : : /* xgettext:no-c-format */
3626 : 154 : fputs_unlocked (_("\
3627 : : Length Number % of total Coverage\n"), stdout);
3628 : 154 : printf (_(" 0 %6" PRIu32 " %5.1f%%\n"),
3629 : 154 : counts[0], (counts[0] * 100.0) / nbucket);
3630 : :
3631 : 154 : uint64_t nzero_counts = 0;
3632 [ + + ]: 256 : for (Elf32_Word cnt = 1; cnt <= maxlength; ++cnt)
3633 : : {
3634 : 102 : nzero_counts += counts[cnt] * cnt;
3635 : 102 : printf (_("\
3636 : : %7d %6" PRIu32 " %5.1f%% %5.1f%%\n"),
3637 : 102 : (int) cnt, counts[cnt], (counts[cnt] * 100.0) / nbucket,
3638 : 102 : (nzero_counts * 100.0) / nsyms);
3639 : : }
3640 : :
3641 : : Elf32_Word acc = 0;
3642 [ + + ]: 256 : for (Elf32_Word cnt = 1; cnt <= maxlength; ++cnt)
3643 : : {
3644 : 102 : acc += cnt;
3645 : 102 : success += counts[cnt] * acc;
3646 : : }
3647 : :
3648 [ + + ]: 154 : if (nzero_counts > 0)
3649 : 220 : printf (_("\
3650 : : Average number of tests: successful lookup: %f\n\
3651 : : unsuccessful lookup: %f\n"),
3652 : 66 : (double) success / (double) nzero_counts,
3653 : 66 : (double) nzero_counts / (double) nbucket);
3654 : : }
3655 : :
3656 : 154 : free (counts);
3657 : : }
3658 : :
3659 : :
3660 : : /* This function handles the traditional System V-style hash table format. */
3661 : : static void
3662 : 0 : handle_sysv_hash (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx)
3663 : : {
3664 : 0 : Elf_Data *data = elf_getdata (scn, NULL);
3665 [ # # ]: 0 : if (unlikely (data == NULL))
3666 : : {
3667 : 0 : error (0, 0, _("cannot get data for section %d: %s"),
3668 : 0 : (int) elf_ndxscn (scn), elf_errmsg (-1));
3669 : 0 : return;
3670 : : }
3671 : :
3672 [ # # ]: 0 : if (unlikely (data->d_size < 2 * sizeof (Elf32_Word)))
3673 : : {
3674 : 0 : invalid_data:
3675 : 0 : error (0, 0, _("invalid data in sysv.hash section %d"),
3676 : 0 : (int) elf_ndxscn (scn));
3677 : 0 : return;
3678 : : }
3679 : :
3680 : 0 : Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0];
3681 : 0 : Elf32_Word nchain = ((Elf32_Word *) data->d_buf)[1];
3682 : :
3683 : 0 : uint64_t used_buf = (2ULL + nchain + nbucket) * sizeof (Elf32_Word);
3684 [ # # ]: 0 : if (used_buf > data->d_size)
3685 : 0 : goto invalid_data;
3686 : :
3687 : 0 : Elf32_Word *bucket = &((Elf32_Word *) data->d_buf)[2];
3688 : 0 : Elf32_Word *chain = &((Elf32_Word *) data->d_buf)[2 + nbucket];
3689 : :
3690 : 0 : uint32_t *lengths = xcalloc (nbucket, sizeof (uint32_t));
3691 : :
3692 : 0 : uint_fast32_t maxlength = 0;
3693 : 0 : uint_fast32_t nsyms = 0;
3694 [ # # ]: 0 : for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt)
3695 : : {
3696 : 0 : Elf32_Word inner = bucket[cnt];
3697 : 0 : Elf32_Word chain_len = 0;
3698 [ # # ]: 0 : while (inner > 0 && inner < nchain)
3699 : : {
3700 : 0 : ++nsyms;
3701 : 0 : ++chain_len;
3702 [ # # ]: 0 : if (chain_len > nchain)
3703 : : {
3704 : 0 : error (0, 0, _("invalid chain in sysv.hash section %d"),
3705 : 0 : (int) elf_ndxscn (scn));
3706 : 0 : free (lengths);
3707 : 0 : return;
3708 : : }
3709 [ # # ]: 0 : if (maxlength < ++lengths[cnt])
3710 : 0 : ++maxlength;
3711 : :
3712 : 0 : inner = chain[inner];
3713 : : }
3714 : : }
3715 : :
3716 : 0 : print_hash_info (ebl, scn, shdr, shstrndx, maxlength, nbucket, nsyms,
3717 : : lengths, NULL);
3718 : :
3719 : 0 : free (lengths);
3720 : : }
3721 : :
3722 : :
3723 : : /* This function handles the incorrect, System V-style hash table
3724 : : format some 64-bit architectures use. */
3725 : : static void
3726 : 0 : handle_sysv_hash64 (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx)
3727 : : {
3728 : 0 : Elf_Data *data = elf_getdata (scn, NULL);
3729 [ # # ]: 0 : if (unlikely (data == NULL))
3730 : : {
3731 : 0 : error (0, 0, _("cannot get data for section %d: %s"),
3732 : 0 : (int) elf_ndxscn (scn), elf_errmsg (-1));
3733 : 0 : return;
3734 : : }
3735 : :
3736 [ # # ]: 0 : if (unlikely (data->d_size < 2 * sizeof (Elf64_Xword)))
3737 : : {
3738 : 0 : invalid_data:
3739 : 0 : error (0, 0, _("invalid data in sysv.hash64 section %d"),
3740 : 0 : (int) elf_ndxscn (scn));
3741 : 0 : return;
3742 : : }
3743 : :
3744 : 0 : Elf64_Xword nbucket = ((Elf64_Xword *) data->d_buf)[0];
3745 : 0 : Elf64_Xword nchain = ((Elf64_Xword *) data->d_buf)[1];
3746 : :
3747 : 0 : uint64_t maxwords = data->d_size / sizeof (Elf64_Xword);
3748 [ # # ]: 0 : if (maxwords < 2
3749 [ # # ]: 0 : || maxwords - 2 < nbucket
3750 [ # # ]: 0 : || maxwords - 2 - nbucket < nchain)
3751 : 0 : goto invalid_data;
3752 : :
3753 : 0 : Elf64_Xword *bucket = &((Elf64_Xword *) data->d_buf)[2];
3754 : 0 : Elf64_Xword *chain = &((Elf64_Xword *) data->d_buf)[2 + nbucket];
3755 : :
3756 : 0 : uint32_t *lengths = xcalloc (nbucket, sizeof (uint32_t));
3757 : :
3758 : 0 : uint_fast32_t maxlength = 0;
3759 : 0 : uint_fast32_t nsyms = 0;
3760 [ # # ]: 0 : for (Elf64_Xword cnt = 0; cnt < nbucket; ++cnt)
3761 : : {
3762 : 0 : Elf64_Xword inner = bucket[cnt];
3763 : 0 : Elf64_Xword chain_len = 0;
3764 [ # # ]: 0 : while (inner > 0 && inner < nchain)
3765 : : {
3766 : 0 : ++nsyms;
3767 : 0 : ++chain_len;
3768 [ # # ]: 0 : if (chain_len > nchain)
3769 : : {
3770 : 0 : error (0, 0, _("invalid chain in sysv.hash64 section %d"),
3771 : 0 : (int) elf_ndxscn (scn));
3772 : 0 : free (lengths);
3773 : 0 : return;
3774 : : }
3775 [ # # ]: 0 : if (maxlength < ++lengths[cnt])
3776 : 0 : ++maxlength;
3777 : :
3778 : 0 : inner = chain[inner];
3779 : : }
3780 : : }
3781 : :
3782 : 0 : print_hash_info (ebl, scn, shdr, shstrndx, maxlength, nbucket, nsyms,
3783 : : lengths, NULL);
3784 : :
3785 : 0 : free (lengths);
3786 : : }
3787 : :
3788 : :
3789 : : /* This function handles the GNU-style hash table format. */
3790 : : static void
3791 : 154 : handle_gnu_hash (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx)
3792 : : {
3793 : 154 : uint32_t *lengths = NULL;
3794 : 154 : Elf_Data *data = elf_getdata (scn, NULL);
3795 [ - + ]: 154 : if (unlikely (data == NULL))
3796 : : {
3797 : 0 : error (0, 0, _("cannot get data for section %d: %s"),
3798 : 0 : (int) elf_ndxscn (scn), elf_errmsg (-1));
3799 : 0 : return;
3800 : : }
3801 : :
3802 [ - + ]: 154 : if (unlikely (data->d_size < 4 * sizeof (Elf32_Word)))
3803 : : {
3804 : 0 : invalid_data:
3805 : 0 : free (lengths);
3806 : 0 : error (0, 0, _("invalid data in gnu.hash section %d"),
3807 : 0 : (int) elf_ndxscn (scn));
3808 : 0 : return;
3809 : : }
3810 : :
3811 : 154 : Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0];
3812 : 154 : Elf32_Word symbias = ((Elf32_Word *) data->d_buf)[1];
3813 : :
3814 : : /* Next comes the size of the bitmap. It's measured in words for
3815 : : the architecture. It's 32 bits for 32 bit archs, and 64 bits for
3816 : : 64 bit archs. There is always a bloom filter present, so zero is
3817 : : an invalid value. */
3818 : 154 : Elf32_Word bitmask_words = ((Elf32_Word *) data->d_buf)[2];
3819 [ + + ]: 154 : if (gelf_getclass (ebl->elf) == ELFCLASS64)
3820 : 134 : bitmask_words *= 2;
3821 : :
3822 [ - + ]: 154 : if (bitmask_words == 0)
3823 : 0 : goto invalid_data;
3824 : :
3825 : 154 : Elf32_Word shift = ((Elf32_Word *) data->d_buf)[3];
3826 : :
3827 : : /* Is there still room for the sym chain?
3828 : : Use uint64_t calculation to prevent 32bit overflow. */
3829 : 154 : uint64_t used_buf = (4ULL + bitmask_words + nbucket) * sizeof (Elf32_Word);
3830 : 154 : uint32_t max_nsyms = (data->d_size - used_buf) / sizeof (Elf32_Word);
3831 [ - + ]: 154 : if (used_buf > data->d_size)
3832 : 0 : goto invalid_data;
3833 : :
3834 : 154 : lengths = xcalloc (nbucket, sizeof (uint32_t));
3835 : :
3836 : 154 : Elf32_Word *bitmask = &((Elf32_Word *) data->d_buf)[4];
3837 : 154 : Elf32_Word *bucket = &((Elf32_Word *) data->d_buf)[4 + bitmask_words];
3838 : 154 : Elf32_Word *chain = &((Elf32_Word *) data->d_buf)[4 + bitmask_words
3839 : 154 : + nbucket];
3840 : :
3841 : : /* Compute distribution of chain lengths. */
3842 : 154 : uint_fast32_t maxlength = 0;
3843 : 154 : uint_fast32_t nsyms = 0;
3844 [ + + ]: 602 : for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt)
3845 [ + + ]: 448 : if (bucket[cnt] != 0)
3846 : : {
3847 : 236 : Elf32_Word inner = bucket[cnt] - symbias;
3848 : 418 : do
3849 : : {
3850 : 418 : ++nsyms;
3851 [ + + ]: 418 : if (maxlength < ++lengths[cnt])
3852 : 102 : ++maxlength;
3853 [ - + ]: 418 : if (inner >= max_nsyms)
3854 : 0 : goto invalid_data;
3855 : : }
3856 [ + + ]: 418 : while ((chain[inner++] & 1) == 0);
3857 : : }
3858 : :
3859 : : /* Count bits in bitmask. */
3860 : : uint_fast32_t nbits = 0;
3861 [ + + ]: 514 : for (Elf32_Word cnt = 0; cnt < bitmask_words; ++cnt)
3862 : : {
3863 : 360 : uint_fast32_t word = bitmask[cnt];
3864 : :
3865 : 360 : word = (word & 0x55555555) + ((word >> 1) & 0x55555555);
3866 : 360 : word = (word & 0x33333333) + ((word >> 2) & 0x33333333);
3867 : 360 : word = (word & 0x0f0f0f0f) + ((word >> 4) & 0x0f0f0f0f);
3868 : 360 : word = (word & 0x00ff00ff) + ((word >> 8) & 0x00ff00ff);
3869 : 360 : nbits += (word & 0x0000ffff) + ((word >> 16) & 0x0000ffff);
3870 : : }
3871 : :
3872 : 308 : char *str = xasprintf (_("\
3873 : : Symbol Bias: %u\n\
3874 : : Bitmask Size: %zu bytes %" PRIuFAST32 "%% bits set 2nd hash shift: %u\n"),
3875 : : (unsigned int) symbias,
3876 : : bitmask_words * sizeof (Elf32_Word),
3877 : 154 : ((nbits * 100 + 50)
3878 : 154 : / (uint_fast32_t) (bitmask_words
3879 : : * sizeof (Elf32_Word) * 8)),
3880 : : (unsigned int) shift);
3881 : :
3882 : 154 : print_hash_info (ebl, scn, shdr, shstrndx, maxlength, nbucket, nsyms,
3883 : : lengths, str);
3884 : :
3885 : 154 : free (str);
3886 : 154 : free (lengths);
3887 : : }
3888 : :
3889 : :
3890 : : /* Find the symbol table(s). For this we have to search through the
3891 : : section table. */
3892 : : static void
3893 : 220 : handle_hash (Ebl *ebl)
3894 : : {
3895 : : /* Get the section header string table index. */
3896 : 220 : size_t shstrndx;
3897 [ - + ]: 220 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
3898 : 0 : error_exit (0, _("cannot get section header string table index"));
3899 : :
3900 : : Elf_Scn *scn = NULL;
3901 [ + + ]: 7144 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
3902 : : {
3903 : : /* Handle the section if it is a symbol table. */
3904 : 6924 : GElf_Shdr shdr_mem;
3905 : 6924 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
3906 : :
3907 [ + - ]: 6924 : if (likely (shdr != NULL))
3908 : : {
3909 [ + + ]: 6924 : if ((shdr->sh_type == SHT_HASH || shdr->sh_type == SHT_GNU_HASH)
3910 [ - + ]: 154 : && (shdr->sh_flags & SHF_COMPRESSED) != 0)
3911 : : {
3912 [ # # ]: 0 : if (elf_compress (scn, 0, 0) < 0)
3913 : 0 : printf ("WARNING: %s [%zd]\n",
3914 : : _("Couldn't uncompress section"),
3915 : : elf_ndxscn (scn));
3916 : 0 : shdr = gelf_getshdr (scn, &shdr_mem);
3917 [ # # ]: 0 : if (unlikely (shdr == NULL))
3918 : 0 : error_exit (0, _("cannot get section [%zd] header: %s"),
3919 : : elf_ndxscn (scn), elf_errmsg (-1));
3920 : : }
3921 : :
3922 [ - + ]: 6924 : if (shdr->sh_type == SHT_HASH)
3923 : : {
3924 [ # # ]: 0 : if (ebl_sysvhash_entrysize (ebl) == sizeof (Elf64_Xword))
3925 : 0 : handle_sysv_hash64 (ebl, scn, shdr, shstrndx);
3926 : : else
3927 : 0 : handle_sysv_hash (ebl, scn, shdr, shstrndx);
3928 : : }
3929 [ + + ]: 6924 : else if (shdr->sh_type == SHT_GNU_HASH)
3930 : 154 : handle_gnu_hash (ebl, scn, shdr, shstrndx);
3931 : : }
3932 : : }
3933 : 220 : }
3934 : :
3935 : :
3936 : : static void
3937 : 228 : print_liblist (Ebl *ebl)
3938 : : {
3939 : : /* Find the library list sections. For this we have to search
3940 : : through the section table. */
3941 : 228 : Elf_Scn *scn = NULL;
3942 : :
3943 : : /* Get the section header string table index. */
3944 : 228 : size_t shstrndx;
3945 [ - + ]: 228 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
3946 : 0 : error_exit (0, _("cannot get section header string table index"));
3947 : :
3948 [ + + ]: 7270 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
3949 : : {
3950 : 7042 : GElf_Shdr shdr_mem;
3951 : 7042 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
3952 : :
3953 [ + - - + ]: 7042 : if (shdr != NULL && shdr->sh_type == SHT_GNU_LIBLIST)
3954 : : {
3955 : 0 : size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_LIB, 1, EV_CURRENT);
3956 : 0 : int nentries = shdr->sh_size / sh_entsize;
3957 : 0 : printf (ngettext ("\
3958 : : \nLibrary list section [%2zu] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
3959 : : "\
3960 : : \nLibrary list section [%2zu] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
3961 : : nentries),
3962 : : elf_ndxscn (scn),
3963 : 0 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
3964 : : shdr->sh_offset,
3965 : : nentries);
3966 : :
3967 : 0 : Elf_Data *data = elf_getdata (scn, NULL);
3968 [ # # ]: 0 : if (data == NULL)
3969 : 0 : return;
3970 : :
3971 : 0 : puts (_("\
3972 : : Library Time Stamp Checksum Version Flags"));
3973 : :
3974 [ # # ]: 0 : for (int cnt = 0; cnt < nentries; ++cnt)
3975 : : {
3976 : 0 : GElf_Lib lib_mem;
3977 : 0 : GElf_Lib *lib = gelf_getlib (data, cnt, &lib_mem);
3978 [ # # ]: 0 : if (unlikely (lib == NULL))
3979 : 0 : continue;
3980 : :
3981 : 0 : time_t t = (time_t) lib->l_time_stamp;
3982 : 0 : struct tm *tm = gmtime (&t);
3983 [ # # ]: 0 : if (unlikely (tm == NULL))
3984 : 0 : continue;
3985 : :
3986 : 0 : printf (" [%2d] %-29s %04u-%02u-%02uT%02u:%02u:%02u %08x %-7u %u\n",
3987 : 0 : cnt, elf_strptr (ebl->elf, shdr->sh_link, lib->l_name),
3988 : 0 : tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
3989 : : tm->tm_hour, tm->tm_min, tm->tm_sec,
3990 : 0 : (unsigned int) lib->l_checksum,
3991 : 0 : (unsigned int) lib->l_version,
3992 : 0 : (unsigned int) lib->l_flags);
3993 : : }
3994 : : }
3995 : : }
3996 : : }
3997 : :
3998 : : static inline size_t
3999 : 16 : left (Elf_Data *data,
4000 : : const unsigned char *p)
4001 : : {
4002 : 16 : return (const unsigned char *) data->d_buf + data->d_size - p;
4003 : : }
4004 : :
4005 : : static void
4006 : 228 : print_attributes (Ebl *ebl, const GElf_Ehdr *ehdr)
4007 : : {
4008 : : /* Find the object attributes sections. For this we have to search
4009 : : through the section table. */
4010 : 228 : Elf_Scn *scn = NULL;
4011 : :
4012 : : /* Get the section header string table index. */
4013 : 228 : size_t shstrndx;
4014 [ - + ]: 228 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
4015 : 0 : error_exit (0, _("cannot get section header string table index"));
4016 : :
4017 [ + + ]: 7270 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
4018 : : {
4019 : 7042 : GElf_Shdr shdr_mem;
4020 : 7042 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
4021 : :
4022 [ + - + + ]: 7042 : if (shdr == NULL || (shdr->sh_type != SHT_GNU_ATTRIBUTES
4023 [ + + ]: 7036 : && (shdr->sh_type != SHT_ARM_ATTRIBUTES
4024 [ - + ]: 2 : || ehdr->e_machine != EM_ARM)
4025 [ + + ]: 7034 : && (shdr->sh_type != SHT_CSKY_ATTRIBUTES
4026 [ + - ]: 2 : || ehdr->e_machine != EM_CSKY)
4027 [ - + ]: 7034 : && (shdr->sh_type != SHT_RISCV_ATTRIBUTES
4028 [ # # ]: 0 : || ehdr->e_machine != EM_RISCV)))
4029 : 7034 : continue;
4030 : :
4031 : 8 : printf (_("\
4032 : : \nObject attributes section [%2zu] '%s' of %" PRIu64
4033 : : " bytes at offset %#0" PRIx64 ":\n"),
4034 : : elf_ndxscn (scn),
4035 : 8 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
4036 : : shdr->sh_size, shdr->sh_offset);
4037 : :
4038 : 8 : Elf_Data *data = elf_rawdata (scn, NULL);
4039 [ + - + - ]: 8 : if (unlikely (data == NULL || data->d_size == 0))
4040 : 0 : return;
4041 : :
4042 : 8 : const unsigned char *p = data->d_buf;
4043 : :
4044 : : /* There is only one 'version', A. */
4045 [ + - ]: 8 : if (unlikely (*p++ != 'A'))
4046 : : return;
4047 : :
4048 : 8 : fputs_unlocked (_(" Owner Size\n"), stdout);
4049 : :
4050 : : /* Loop over the sections. */
4051 [ + + ]: 16 : while (left (data, p) >= 4)
4052 : : {
4053 : : /* Section length. */
4054 : 8 : uint32_t len;
4055 [ + + ]: 8 : memcpy (&len, p, sizeof len);
4056 : :
4057 [ + + ]: 8 : if (MY_ELFDATA != ehdr->e_ident[EI_DATA])
4058 : 4 : CONVERT (len);
4059 : :
4060 [ + - ]: 8 : if (unlikely (len > left (data, p)))
4061 : : break;
4062 : :
4063 : : /* Section vendor name. */
4064 : 8 : const unsigned char *name = p + sizeof len;
4065 : 8 : p += len;
4066 : :
4067 : 8 : unsigned const char *q = memchr (name, '\0', len);
4068 [ + - ]: 8 : if (unlikely (q == NULL))
4069 : : break;
4070 : 8 : ++q;
4071 : :
4072 : 8 : printf (_(" %-13s %4" PRIu32 "\n"), name, len);
4073 : :
4074 : 16 : bool gnu_vendor = (q - name == sizeof "gnu"
4075 [ + + - + ]: 8 : && !memcmp (name, "gnu", sizeof "gnu"));
4076 : :
4077 : : /* Loop over subsections. */
4078 [ + + ]: 8 : if (shdr->sh_type != SHT_GNU_ATTRIBUTES
4079 [ + - ]: 6 : || gnu_vendor)
4080 [ + + ]: 16 : while (q < p)
4081 : : {
4082 : 8 : const unsigned char *const sub = q;
4083 : :
4084 : 8 : unsigned int subsection_tag;
4085 : 8 : get_uleb128 (subsection_tag, q, p);
4086 [ + - ]: 8 : if (unlikely (q >= p))
4087 : : break;
4088 : :
4089 : 8 : uint32_t subsection_len;
4090 [ + - ]: 8 : if (unlikely (p - sub < (ptrdiff_t) sizeof subsection_len))
4091 : : break;
4092 : :
4093 [ + + ]: 8 : memcpy (&subsection_len, q, sizeof subsection_len);
4094 : :
4095 [ + + ]: 8 : if (MY_ELFDATA != ehdr->e_ident[EI_DATA])
4096 : 4 : CONVERT (subsection_len);
4097 : :
4098 : : /* Don't overflow, ptrdiff_t might be 32bits, but signed. */
4099 [ + - + - ]: 8 : if (unlikely (subsection_len == 0
4100 : : || subsection_len >= (uint32_t) PTRDIFF_MAX
4101 : : || p - sub < (ptrdiff_t) subsection_len))
4102 : : break;
4103 : :
4104 : 8 : const unsigned char *r = q + sizeof subsection_len;
4105 : 8 : q = sub + subsection_len;
4106 : :
4107 [ - + ]: 8 : switch (subsection_tag)
4108 : : {
4109 : 0 : default:
4110 : : /* Unknown subsection, print and skip. */
4111 : 8 : printf (_(" %-4u %12" PRIu32 "\n"),
4112 : : subsection_tag, subsection_len);
4113 : : break;
4114 : :
4115 : 8 : case 1: /* Tag_File */
4116 : 8 : printf (_(" File: %11" PRIu32 "\n"),
4117 : : subsection_len);
4118 : :
4119 [ + + ]: 52 : while (r < q)
4120 : : {
4121 : 44 : unsigned int tag;
4122 : 44 : get_uleb128 (tag, r, q);
4123 [ + - ]: 44 : if (unlikely (r >= q))
4124 : : break;
4125 : :
4126 : : /* GNU style tags have either a uleb128 value,
4127 : : when lowest bit is not set, or a string
4128 : : when the lowest bit is set.
4129 : : "compatibility" (32) is special. It has
4130 : : both a string and a uleb128 value. For
4131 : : non-gnu we assume 6 till 31 only take ints.
4132 : : XXX see arm backend, do we need a separate
4133 : : hook? */
4134 : 44 : uint64_t value = 0;
4135 : 44 : const char *string = NULL;
4136 [ + - + + ]: 44 : if (tag == 32 || (tag & 1) == 0
4137 [ + - + + ]: 16 : || (! gnu_vendor && (tag > 5 && tag < 32)))
4138 : : {
4139 : : // Note r >= q check above.
4140 : 42 : get_uleb128 (value, r, q);
4141 [ + - ]: 42 : if (r > q)
4142 : : break;
4143 : : }
4144 [ + - ]: 44 : if (tag == 32
4145 [ + + ]: 44 : || ((tag & 1) != 0
4146 [ + - ]: 16 : && (gnu_vendor
4147 [ + - ]: 16 : || (! gnu_vendor && tag > 32)))
4148 [ + + + + ]: 44 : || (! gnu_vendor && tag > 3 && tag < 6))
4149 : : {
4150 : 2 : string = (const char *) r;
4151 : 2 : r = memchr (r, '\0', q - r);
4152 [ + - ]: 2 : if (r == NULL)
4153 : : break;
4154 : 2 : ++r;
4155 : : }
4156 : :
4157 : 44 : const char *tag_name = NULL;
4158 : 44 : const char *value_name = NULL;
4159 : 44 : ebl_check_object_attribute (ebl, (const char *) name,
4160 : : tag, value,
4161 : : &tag_name, &value_name);
4162 : :
4163 [ + - ]: 44 : if (tag_name != NULL)
4164 : : {
4165 [ - + ]: 44 : if (tag == 32)
4166 : 0 : printf (_(" %s: %" PRId64 ", %s\n"),
4167 : : tag_name, value, string);
4168 [ + + + + ]: 44 : else if (string == NULL && value_name == NULL)
4169 : 2 : printf (_(" %s: %" PRId64 "\n"),
4170 : : tag_name, value);
4171 : : else
4172 : 42 : printf (_(" %s: %s\n"),
4173 : : tag_name, string ?: value_name);
4174 : : }
4175 : : else
4176 : : {
4177 : : /* For "gnu" vendor 32 "compatibility" has
4178 : : already been handled above. */
4179 [ # # # # ]: 0 : assert (tag != 32
4180 : : || strcmp ((const char *) name, "gnu"));
4181 [ # # ]: 0 : if (string == NULL)
4182 : 0 : printf (_(" %u: %" PRId64 "\n"),
4183 : : tag, value);
4184 : : else
4185 : 44 : printf (_(" %u: %s\n"),
4186 : : tag, string);
4187 : : }
4188 : : }
4189 : : }
4190 : : }
4191 : : }
4192 : : }
4193 : : }
4194 : :
4195 : : /* Returns either the (relocated) data from the Dwarf, or tries to get
4196 : : the "raw" (uncompressed) data from the Elf section. Produces a
4197 : : warning if the data cannot be found (or decompressed). */
4198 : : static Elf_Data *
4199 : 808 : get_debug_elf_data (Dwarf *dbg, Ebl *ebl, int idx, Elf_Scn *scn)
4200 : : {
4201 : : /* We prefer to get the section data from the Dwarf because that
4202 : : might have been relocated already. Note this is subtly wrong if
4203 : : there are multiple sections with the same .debug name. */
4204 [ - + ]: 808 : if (dbg->sectiondata[idx] != NULL)
4205 : : return dbg->sectiondata[idx];
4206 : :
4207 : 0 : GElf_Shdr shdr_mem;
4208 : 0 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
4209 [ # # # # ]: 0 : if (shdr != NULL && (shdr->sh_flags & SHF_COMPRESSED) != 0)
4210 : : {
4211 [ # # ]: 0 : if (elf_compress (scn, 0, 0) < 0)
4212 : : {
4213 : 0 : error (0, 0, "%s [%zd] '%s'\n",
4214 : : _("Couldn't uncompress section"),
4215 : : elf_ndxscn (scn), section_name (ebl, shdr));
4216 : 0 : return NULL;
4217 : : }
4218 : : }
4219 : :
4220 : 0 : Elf_Data *data = elf_getdata (scn, NULL);
4221 [ # # ]: 0 : if (data == NULL)
4222 : 0 : error (0, 0, "%s [%zd] '%s': %s\n",
4223 : : _("Couldn't get data from section"),
4224 : : elf_ndxscn (scn), section_name (ebl, shdr), elf_errmsg (-1));
4225 : :
4226 : 0 : return elf_getdata (scn, NULL);
4227 : : }
4228 : :
4229 : : static void
4230 : 2142914 : print_dwarf_addr (Dwfl_Module *dwflmod,
4231 : : int address_size, Dwarf_Addr address, Dwarf_Addr raw)
4232 : : {
4233 : : /* See if there is a name we can give for this address. */
4234 : 2142914 : GElf_Sym sym;
4235 : 2142914 : GElf_Off off = 0;
4236 [ + + ]: 13088 : const char *name = (print_address_names && ! print_unresolved_addresses)
4237 : 12924 : ? dwfl_module_addrinfo (dwflmod, address, &off, &sym, NULL, NULL, NULL)
4238 [ + + ]: 2142914 : : NULL;
4239 : :
4240 : 2142914 : const char *scn;
4241 [ + + ]: 2142914 : if (print_unresolved_addresses)
4242 : : {
4243 : 168 : address = raw;
4244 : 168 : scn = NULL;
4245 : : }
4246 : : else
4247 : : {
4248 : : /* Relativize the address. */
4249 : 2142746 : int n = dwfl_module_relocations (dwflmod);
4250 [ + + ]: 2142746 : int i = n < 1 ? -1 : dwfl_module_relocate_address (dwflmod, &address);
4251 : :
4252 : : /* In an ET_REL file there is a section name to refer to. */
4253 : 2139910 : scn = (i < 0 ? NULL
4254 [ - + ]: 2139910 : : dwfl_module_relocation_info (dwflmod, i, NULL));
4255 : : }
4256 : :
4257 [ - + ]: 2142914 : if ((name != NULL
4258 : 12484 : ? (off != 0
4259 : : ? (scn != NULL
4260 : : ? (address_size == 0
4261 : 2 : ? printf ("%s+%#" PRIx64 " <%s+%#" PRIx64 ">",
4262 : : scn, address, name, off)
4263 : 8 : : printf ("%s+%#0*" PRIx64 " <%s+%#" PRIx64 ">",
4264 : 4 : scn, 2 + address_size * 2, address,
4265 : : name, off))
4266 : : : (address_size == 0
4267 : 364 : ? printf ("%#" PRIx64 " <%s+%#" PRIx64 ">",
4268 : : address, name, off)
4269 : 2252 : : printf ("%#0*" PRIx64 " <%s+%#" PRIx64 ">",
4270 : 1126 : 2 + address_size * 2, address,
4271 : : name, off)))
4272 : : : (scn != NULL
4273 : : ? (address_size == 0
4274 : 2 : ? printf ("%s+%#" PRIx64 " <%s>", scn, address, name)
4275 : 19964 : : printf ("%s+%#0*" PRIx64 " <%s>",
4276 : 9982 : scn, 2 + address_size * 2, address, name))
4277 : : : (address_size == 0
4278 : 160 : ? printf ("%#" PRIx64 " <%s>", address, name)
4279 : 1688 : : printf ("%#0*" PRIx64 " <%s>",
4280 : 844 : 2 + address_size * 2, address, name))))
4281 : : : (scn != NULL
4282 : : ? (address_size == 0
4283 : 778484 : ? printf ("%s+%#" PRIx64, scn, address)
4284 : 1351436 : : printf ("%s+%#0*" PRIx64, scn, 2 + address_size * 2, address))
4285 : : : (address_size == 0
4286 : 70 : ? printf ("%#" PRIx64, address)
4287 [ + + + + : 4285388 : : printf ("%#0*" PRIx64, 2 + address_size * 2, address)))) < 0)
+ + + + +
+ + + + +
+ + + + +
+ + + ]
4288 : 0 : error_exit (0, _("sprintf failure"));
4289 : 2142914 : }
4290 : :
4291 : :
4292 : : static const char *
4293 : 2219194 : dwarf_tag_string (unsigned int tag)
4294 : : {
4295 [ - + + - : 2219194 : switch (tag)
- - - - +
+ + + + -
- - - - -
+ - + - +
- - + + -
+ - - - -
- - - + -
+ - + + +
- - - - -
- + - - +
- - - + -
+ + + + -
- - - - +
+ + + - +
+ + + - -
- ]
4296 : : {
4297 : : #define DWARF_ONE_KNOWN_DW_TAG(NAME, CODE) case CODE: return #NAME;
4298 : 2219194 : DWARF_ALL_KNOWN_DW_TAG
4299 : : #undef DWARF_ONE_KNOWN_DW_TAG
4300 : 0 : default:
4301 : 0 : return NULL;
4302 : : }
4303 : : }
4304 : :
4305 : :
4306 : : static const char *
4307 : 8580110 : dwarf_attr_string (unsigned int attrnum)
4308 : : {
4309 [ + - + - : 8580110 : switch (attrnum)
- - - + -
- + + + -
- - - + +
- + - - +
- + - + -
- - - - -
- - - - -
- - - - -
- - - + -
+ - + - +
- - - + +
- - - + -
+ - + + -
- + + + +
- + + + -
+ - - + -
+ - + + -
+ - - + +
+ + - - -
- - + + +
+ - + - +
- - - - +
+ - + - +
+ - + + +
+ + - - +
- - - + -
+ - - - -
+ + - + -
- - - + -
- - + + -
+ - - - -
+ + - - -
- - + + -
- - - - -
- + ]
4310 : : {
4311 : : #define DWARF_ONE_KNOWN_DW_AT(NAME, CODE) case CODE: return #NAME;
4312 : 8580108 : DWARF_ALL_KNOWN_DW_AT
4313 : : #undef DWARF_ONE_KNOWN_DW_AT
4314 : 0 : default:
4315 : 0 : return NULL;
4316 : : }
4317 : : }
4318 : :
4319 : :
4320 : : static const char *
4321 : 8590294 : dwarf_form_string (unsigned int form)
4322 : : {
4323 [ + + + + : 8590294 : switch (form)
+ - - - -
- + - - +
+ + + + +
+ + + - +
+ - - + -
- + - - +
+ + + + +
- + + - -
- + - + ]
4324 : : {
4325 : : #define DWARF_ONE_KNOWN_DW_FORM(NAME, CODE) case CODE: return #NAME;
4326 : 8590290 : DWARF_ALL_KNOWN_DW_FORM
4327 : : #undef DWARF_ONE_KNOWN_DW_FORM
4328 : 0 : default:
4329 : 0 : return NULL;
4330 : : }
4331 : : }
4332 : :
4333 : :
4334 : : static const char *
4335 : 3658 : dwarf_lang_string (unsigned int lang)
4336 : : {
4337 [ + - - + : 3658 : switch (lang)
+ + + - -
- - - - -
- + - - -
- - - - -
- - - - -
- - - - -
- - - +
- ]
4338 : : {
4339 : : #define DWARF_ONE_KNOWN_DW_LANG(NAME, CODE) case CODE: return #NAME;
4340 : 3656 : DWARF_ALL_KNOWN_DW_LANG
4341 : : #undef DWARF_ONE_KNOWN_DW_LANG
4342 : 2 : default:
4343 : 2 : return NULL;
4344 : : }
4345 : : }
4346 : :
4347 : :
4348 : : static const char *
4349 : 7108 : dwarf_inline_string (unsigned int code)
4350 : : {
4351 : 7108 : static const char *const known[] =
4352 : : {
4353 : : #define DWARF_ONE_KNOWN_DW_INL(NAME, CODE) [CODE] = #NAME,
4354 : : DWARF_ALL_KNOWN_DW_INL
4355 : : #undef DWARF_ONE_KNOWN_DW_INL
4356 : : };
4357 : :
4358 : 7108 : if (likely (code < sizeof (known) / sizeof (known[0])))
4359 : 7108 : return known[code];
4360 : :
4361 : : return NULL;
4362 : : }
4363 : :
4364 : :
4365 : : static const char *
4366 : 52616 : dwarf_encoding_string (unsigned int code)
4367 : : {
4368 : 52616 : static const char *const known[] =
4369 : : {
4370 : : #define DWARF_ONE_KNOWN_DW_ATE(NAME, CODE) [CODE] = #NAME,
4371 : : DWARF_ALL_KNOWN_DW_ATE
4372 : : #undef DWARF_ONE_KNOWN_DW_ATE
4373 : : };
4374 : :
4375 : 52616 : if (likely (code < sizeof (known) / sizeof (known[0])))
4376 : 52616 : return known[code];
4377 : :
4378 : : return NULL;
4379 : : }
4380 : :
4381 : :
4382 : : static const char *
4383 : 0 : dwarf_access_string (unsigned int code)
4384 : : {
4385 : 0 : static const char *const known[] =
4386 : : {
4387 : : #define DWARF_ONE_KNOWN_DW_ACCESS(NAME, CODE) [CODE] = #NAME,
4388 : : DWARF_ALL_KNOWN_DW_ACCESS
4389 : : #undef DWARF_ONE_KNOWN_DW_ACCESS
4390 : : };
4391 : :
4392 : 0 : if (likely (code < sizeof (known) / sizeof (known[0])))
4393 : 0 : return known[code];
4394 : :
4395 : : return NULL;
4396 : : }
4397 : :
4398 : :
4399 : : static const char *
4400 : 0 : dwarf_defaulted_string (unsigned int code)
4401 : : {
4402 : 0 : static const char *const known[] =
4403 : : {
4404 : : #define DWARF_ONE_KNOWN_DW_DEFAULTED(NAME, CODE) [CODE] = #NAME,
4405 : : DWARF_ALL_KNOWN_DW_DEFAULTED
4406 : : #undef DWARF_ONE_KNOWN_DW_DEFAULTED
4407 : : };
4408 : :
4409 : 0 : if (likely (code < sizeof (known) / sizeof (known[0])))
4410 : 0 : return known[code];
4411 : :
4412 : : return NULL;
4413 : : }
4414 : :
4415 : :
4416 : : static const char *
4417 : 0 : dwarf_visibility_string (unsigned int code)
4418 : : {
4419 : 0 : static const char *const known[] =
4420 : : {
4421 : : #define DWARF_ONE_KNOWN_DW_VIS(NAME, CODE) [CODE] = #NAME,
4422 : : DWARF_ALL_KNOWN_DW_VIS
4423 : : #undef DWARF_ONE_KNOWN_DW_VIS
4424 : : };
4425 : :
4426 : 0 : if (likely (code < sizeof (known) / sizeof (known[0])))
4427 : 0 : return known[code];
4428 : :
4429 : : return NULL;
4430 : : }
4431 : :
4432 : :
4433 : : static const char *
4434 : 0 : dwarf_virtuality_string (unsigned int code)
4435 : : {
4436 : 0 : static const char *const known[] =
4437 : : {
4438 : : #define DWARF_ONE_KNOWN_DW_VIRTUALITY(NAME, CODE) [CODE] = #NAME,
4439 : : DWARF_ALL_KNOWN_DW_VIRTUALITY
4440 : : #undef DWARF_ONE_KNOWN_DW_VIRTUALITY
4441 : : };
4442 : :
4443 : 0 : if (likely (code < sizeof (known) / sizeof (known[0])))
4444 : 0 : return known[code];
4445 : :
4446 : : return NULL;
4447 : : }
4448 : :
4449 : :
4450 : : static const char *
4451 : 0 : dwarf_identifier_case_string (unsigned int code)
4452 : : {
4453 : 0 : static const char *const known[] =
4454 : : {
4455 : : #define DWARF_ONE_KNOWN_DW_ID(NAME, CODE) [CODE] = #NAME,
4456 : : DWARF_ALL_KNOWN_DW_ID
4457 : : #undef DWARF_ONE_KNOWN_DW_ID
4458 : : };
4459 : :
4460 : 0 : if (likely (code < sizeof (known) / sizeof (known[0])))
4461 : 0 : return known[code];
4462 : :
4463 : : return NULL;
4464 : : }
4465 : :
4466 : :
4467 : : static const char *
4468 : 0 : dwarf_calling_convention_string (unsigned int code)
4469 : : {
4470 : 0 : static const char *const known[] =
4471 : : {
4472 : : #define DWARF_ONE_KNOWN_DW_CC(NAME, CODE) [CODE] = #NAME,
4473 : : DWARF_ALL_KNOWN_DW_CC
4474 : : #undef DWARF_ONE_KNOWN_DW_CC
4475 : : };
4476 : :
4477 : 0 : if (likely (code < sizeof (known) / sizeof (known[0])))
4478 : 0 : return known[code];
4479 : :
4480 : : return NULL;
4481 : : }
4482 : :
4483 : :
4484 : : static const char *
4485 : 0 : dwarf_ordering_string (unsigned int code)
4486 : : {
4487 : 0 : static const char *const known[] =
4488 : : {
4489 : : #define DWARF_ONE_KNOWN_DW_ORD(NAME, CODE) [CODE] = #NAME,
4490 : : DWARF_ALL_KNOWN_DW_ORD
4491 : : #undef DWARF_ONE_KNOWN_DW_ORD
4492 : : };
4493 : :
4494 : 0 : if (likely (code < sizeof (known) / sizeof (known[0])))
4495 : 0 : return known[code];
4496 : :
4497 : : return NULL;
4498 : : }
4499 : :
4500 : :
4501 : : static const char *
4502 : 16 : dwarf_discr_list_string (unsigned int code)
4503 : : {
4504 : 16 : static const char *const known[] =
4505 : : {
4506 : : #define DWARF_ONE_KNOWN_DW_DSC(NAME, CODE) [CODE] = #NAME,
4507 : : DWARF_ALL_KNOWN_DW_DSC
4508 : : #undef DWARF_ONE_KNOWN_DW_DSC
4509 : : };
4510 : :
4511 : 16 : if (likely (code < sizeof (known) / sizeof (known[0])))
4512 : 16 : return known[code];
4513 : :
4514 : : return NULL;
4515 : : }
4516 : :
4517 : :
4518 : : static const char *
4519 : 1130260 : dwarf_locexpr_opcode_string (unsigned int code)
4520 : : {
4521 : 1130260 : static const char *const known[] =
4522 : : {
4523 : : /* Normally we can't afford building huge table of 64K entries,
4524 : : most of them zero, just because there are a couple defined
4525 : : values at the far end. In case of opcodes, it's OK. */
4526 : : #define DWARF_ONE_KNOWN_DW_OP(NAME, CODE) [CODE] = #NAME,
4527 : : DWARF_ALL_KNOWN_DW_OP
4528 : : #undef DWARF_ONE_KNOWN_DW_OP
4529 : : };
4530 : :
4531 : 1130260 : if (likely (code < sizeof (known) / sizeof (known[0])))
4532 : 1130260 : return known[code];
4533 : :
4534 : : return NULL;
4535 : : }
4536 : :
4537 : :
4538 : : static const char *
4539 : 3404 : dwarf_unit_string (unsigned int type)
4540 : : {
4541 [ - + - - : 3404 : switch (type)
- - + ]
4542 : : {
4543 : : #define DWARF_ONE_KNOWN_DW_UT(NAME, CODE) case CODE: return #NAME;
4544 : 14 : DWARF_ALL_KNOWN_DW_UT
4545 : : #undef DWARF_ONE_KNOWN_DW_UT
4546 : 0 : default:
4547 : 0 : return NULL;
4548 : : }
4549 : : }
4550 : :
4551 : :
4552 : : static const char *
4553 : 131862 : dwarf_range_list_encoding_string (unsigned int kind)
4554 : : {
4555 [ - + + - : 131862 : switch (kind)
+ - - -
+ ]
4556 : : {
4557 : : #define DWARF_ONE_KNOWN_DW_RLE(NAME, CODE) case CODE: return #NAME;
4558 : 123442 : DWARF_ALL_KNOWN_DW_RLE
4559 : : #undef DWARF_ONE_KNOWN_DW_RLE
4560 : 0 : default:
4561 : 0 : return NULL;
4562 : : }
4563 : : }
4564 : :
4565 : :
4566 : : static const char *
4567 : 617920 : dwarf_loc_list_encoding_string (unsigned int kind)
4568 : : {
4569 [ - - + + : 617920 : switch (kind)
- + - + -
- + ]
4570 : : {
4571 : : #define DWARF_ONE_KNOWN_DW_LLE(NAME, CODE) case CODE: return #NAME;
4572 : 599836 : DWARF_ALL_KNOWN_DW_LLE
4573 : : #undef DWARF_ONE_KNOWN_DW_LLE
4574 : : /* DW_LLE_GNU_view_pair is special/incompatible with default codes. */
4575 : 0 : case DW_LLE_GNU_view_pair: return "GNU_view_pair";
4576 : 0 : default:
4577 : 0 : return NULL;
4578 : : }
4579 : : }
4580 : :
4581 : :
4582 : : static const char *
4583 : 10184 : dwarf_line_content_description_string (unsigned int kind)
4584 : : {
4585 [ + + - - : 10184 : switch (kind)
- + ]
4586 : : {
4587 : : #define DWARF_ONE_KNOWN_DW_LNCT(NAME, CODE) case CODE: return #NAME;
4588 : 10176 : DWARF_ALL_KNOWN_DW_LNCT
4589 : : #undef DWARF_ONE_KNOWN_DW_LNCT
4590 : 0 : default:
4591 : 0 : return NULL;
4592 : : }
4593 : : }
4594 : :
4595 : :
4596 : : /* Used by all dwarf_foo_name functions. */
4597 : : static const char *
4598 : 20216366 : string_or_unknown (const char *known, unsigned int code,
4599 : : unsigned int lo_user, unsigned int hi_user,
4600 : : bool print_unknown_num)
4601 : : {
4602 : 20216366 : static char unknown_buf[20];
4603 : :
4604 [ + + ]: 20216366 : if (likely (known != NULL))
4605 : : return known;
4606 : :
4607 [ - + - - ]: 2 : if (lo_user != 0 && code >= lo_user && code <= hi_user)
4608 : : {
4609 : 0 : snprintf (unknown_buf, sizeof unknown_buf, "lo_user+%#x",
4610 : : code - lo_user);
4611 : 0 : return unknown_buf;
4612 : : }
4613 : :
4614 [ + - ]: 2 : if (print_unknown_num)
4615 : : {
4616 : 2 : snprintf (unknown_buf, sizeof unknown_buf, "??? (%#x)", code);
4617 : 2 : return unknown_buf;
4618 : : }
4619 : :
4620 : : return "???";
4621 : : }
4622 : :
4623 : :
4624 : : static const char *
4625 : 2219194 : dwarf_tag_name (unsigned int tag)
4626 : : {
4627 : 2219194 : const char *ret = dwarf_tag_string (tag);
4628 : 2219194 : return string_or_unknown (ret, tag, DW_TAG_lo_user, DW_TAG_hi_user, true);
4629 : : }
4630 : :
4631 : : static const char *
4632 : 8580110 : dwarf_attr_name (unsigned int attr)
4633 : : {
4634 : 8580110 : const char *ret = dwarf_attr_string (attr);
4635 : 8580110 : return string_or_unknown (ret, attr, DW_AT_lo_user, DW_AT_hi_user, true);
4636 : : }
4637 : :
4638 : :
4639 : : static const char *
4640 : 8590294 : dwarf_form_name (unsigned int form)
4641 : : {
4642 : 8590294 : const char *ret = dwarf_form_string (form);
4643 : 8590294 : return string_or_unknown (ret, form, 0, 0, true);
4644 : : }
4645 : :
4646 : :
4647 : : static const char *
4648 : 3654 : dwarf_lang_name (unsigned int lang)
4649 : : {
4650 : 3654 : const char *ret = dwarf_lang_string (lang);
4651 : 3654 : return string_or_unknown (ret, lang, DW_LANG_lo_user, DW_LANG_hi_user, false);
4652 : : }
4653 : :
4654 : :
4655 : : static const char *
4656 : 7108 : dwarf_inline_name (unsigned int code)
4657 : : {
4658 [ + - ]: 7108 : const char *ret = dwarf_inline_string (code);
4659 : 7108 : return string_or_unknown (ret, code, 0, 0, false);
4660 : : }
4661 : :
4662 : :
4663 : : static const char *
4664 : 52616 : dwarf_encoding_name (unsigned int code)
4665 : : {
4666 [ + - ]: 52616 : const char *ret = dwarf_encoding_string (code);
4667 : 52616 : return string_or_unknown (ret, code, DW_ATE_lo_user, DW_ATE_hi_user, false);
4668 : : }
4669 : :
4670 : :
4671 : : static const char *
4672 : 0 : dwarf_access_name (unsigned int code)
4673 : : {
4674 [ # # ]: 0 : const char *ret = dwarf_access_string (code);
4675 : 0 : return string_or_unknown (ret, code, 0, 0, false);
4676 : : }
4677 : :
4678 : :
4679 : : static const char *
4680 : 0 : dwarf_defaulted_name (unsigned int code)
4681 : : {
4682 [ # # ]: 0 : const char *ret = dwarf_defaulted_string (code);
4683 : 0 : return string_or_unknown (ret, code, 0, 0, false);
4684 : : }
4685 : :
4686 : :
4687 : : static const char *
4688 : 0 : dwarf_visibility_name (unsigned int code)
4689 : : {
4690 [ # # ]: 0 : const char *ret = dwarf_visibility_string (code);
4691 : 0 : return string_or_unknown (ret, code, 0, 0, false);
4692 : : }
4693 : :
4694 : :
4695 : : static const char *
4696 : 0 : dwarf_virtuality_name (unsigned int code)
4697 : : {
4698 [ # # ]: 0 : const char *ret = dwarf_virtuality_string (code);
4699 : 0 : return string_or_unknown (ret, code, 0, 0, false);
4700 : : }
4701 : :
4702 : :
4703 : : static const char *
4704 : 0 : dwarf_identifier_case_name (unsigned int code)
4705 : : {
4706 [ # # ]: 0 : const char *ret = dwarf_identifier_case_string (code);
4707 : 0 : return string_or_unknown (ret, code, 0, 0, false);
4708 : : }
4709 : :
4710 : :
4711 : : static const char *
4712 : 0 : dwarf_calling_convention_name (unsigned int code)
4713 : : {
4714 [ # # ]: 0 : const char *ret = dwarf_calling_convention_string (code);
4715 : 0 : return string_or_unknown (ret, code, DW_CC_lo_user, DW_CC_hi_user, false);
4716 : : }
4717 : :
4718 : :
4719 : : static const char *
4720 : 0 : dwarf_ordering_name (unsigned int code)
4721 : : {
4722 [ # # ]: 0 : const char *ret = dwarf_ordering_string (code);
4723 : 0 : return string_or_unknown (ret, code, 0, 0, false);
4724 : : }
4725 : :
4726 : :
4727 : : static const char *
4728 : 16 : dwarf_discr_list_name (unsigned int code)
4729 : : {
4730 [ + - ]: 16 : const char *ret = dwarf_discr_list_string (code);
4731 : 16 : return string_or_unknown (ret, code, 0, 0, false);
4732 : : }
4733 : :
4734 : :
4735 : : static const char *
4736 : 3404 : dwarf_unit_name (unsigned int type)
4737 : : {
4738 : 3404 : const char *ret = dwarf_unit_string (type);
4739 : 3404 : return string_or_unknown (ret, type, DW_UT_lo_user, DW_UT_hi_user, true);
4740 : : }
4741 : :
4742 : :
4743 : : static const char *
4744 : 131862 : dwarf_range_list_encoding_name (unsigned int kind)
4745 : : {
4746 : 131862 : const char *ret = dwarf_range_list_encoding_string (kind);
4747 : 131862 : return string_or_unknown (ret, kind, 0, 0, false);
4748 : : }
4749 : :
4750 : :
4751 : : static const char *
4752 : 617920 : dwarf_loc_list_encoding_name (unsigned int kind)
4753 : : {
4754 : 617920 : const char *ret = dwarf_loc_list_encoding_string (kind);
4755 : 617920 : return string_or_unknown (ret, kind, 0, 0, false);
4756 : : }
4757 : :
4758 : :
4759 : : static const char *
4760 : 10184 : dwarf_line_content_description_name (unsigned int kind)
4761 : : {
4762 : 10184 : const char *ret = dwarf_line_content_description_string (kind);
4763 : 10184 : return string_or_unknown (ret, kind, DW_LNCT_lo_user, DW_LNCT_hi_user,
4764 : : false);
4765 : : }
4766 : :
4767 : :
4768 : : static void
4769 : 510 : print_block (size_t n, const void *block)
4770 : : {
4771 [ - + ]: 510 : if (n == 0)
4772 : 0 : puts (_("empty block"));
4773 : : else
4774 : : {
4775 : 510 : printf (_("%zu byte block:"), n);
4776 : 510 : const unsigned char *data = block;
4777 : 2250 : do
4778 : 2250 : printf (" %02x", *data++);
4779 [ + + ]: 2250 : while (--n > 0);
4780 : 510 : putchar ('\n');
4781 : : }
4782 : 510 : }
4783 : :
4784 : : static void
4785 : 24 : print_bytes (size_t n, const unsigned char *bytes)
4786 : : {
4787 : 24 : while (n-- > 0)
4788 : : {
4789 : 384 : printf ("%02x", *bytes++);
4790 [ + + ]: 384 : if (n > 0)
4791 [ + + ]: 768 : printf (" ");
4792 : : }
4793 : 24 : }
4794 : :
4795 : : static int
4796 : 148 : get_indexed_addr (Dwarf_CU *cu, Dwarf_Word idx, Dwarf_Addr *addr)
4797 : : {
4798 [ - + ]: 148 : if (cu == NULL)
4799 : : return -1;
4800 : :
4801 : 148 : Elf_Data *debug_addr = cu->dbg->sectiondata[IDX_debug_addr];
4802 [ - + ]: 148 : if (debug_addr == NULL)
4803 : : return -1;
4804 : :
4805 : 148 : Dwarf_Off base = __libdw_cu_addr_base (cu);
4806 : 148 : Dwarf_Word off = idx * cu->address_size;
4807 [ - + ]: 148 : if (base > debug_addr->d_size
4808 [ - + ]: 148 : || off > debug_addr->d_size - base
4809 [ - + ]: 148 : || cu->address_size > debug_addr->d_size - base - off)
4810 : : return -1;
4811 : :
4812 : 148 : const unsigned char *addrp = debug_addr->d_buf + base + off;
4813 [ + + ]: 148 : if (cu->address_size == 4)
4814 [ - + ]: 12 : *addr = read_4ubyte_unaligned (cu->dbg, addrp);
4815 : : else
4816 [ - + ]: 136 : *addr = read_8ubyte_unaligned (cu->dbg, addrp);
4817 : :
4818 : : return 0;
4819 : : }
4820 : :
4821 : : static void
4822 : 773212 : print_ops (Dwfl_Module *dwflmod, Dwarf *dbg, int indent, int indentrest,
4823 : : unsigned int vers, unsigned int addrsize, unsigned int offset_size,
4824 : : struct Dwarf_CU *cu, Dwarf_Word len, const unsigned char *data)
4825 : : {
4826 [ + + ]: 773212 : const unsigned int ref_size = vers < 3 ? addrsize : offset_size;
4827 : :
4828 [ - + ]: 773212 : if (len == 0)
4829 : : {
4830 : 0 : printf ("%*s(empty)\n", indent, "");
4831 : 0 : return;
4832 : : }
4833 : :
4834 : : #define NEED(n) if (len < (Dwarf_Word) (n)) goto invalid
4835 : : #define CONSUME(n) NEED (n); else len -= (n)
4836 : :
4837 : : Dwarf_Word offset = 0;
4838 [ + + ]: 1903472 : while (len-- > 0)
4839 : 1130260 : {
4840 : 1130260 : uint_fast8_t op = *data++;
4841 : :
4842 [ + - ]: 1130260 : const char *op_name = dwarf_locexpr_opcode_string (op);
4843 [ - + ]: 1130260 : if (unlikely (op_name == NULL))
4844 : : {
4845 : 0 : static char buf[20];
4846 [ # # ]: 0 : if (op >= DW_OP_lo_user)
4847 : 0 : snprintf (buf, sizeof buf, "lo_user+%#x", op - DW_OP_lo_user);
4848 : : else
4849 : 0 : snprintf (buf, sizeof buf, "??? (%#x)", op);
4850 : : op_name = buf;
4851 : : }
4852 : :
4853 [ + - + + : 1130260 : switch (op)
+ + + + -
- + + - +
- - + + +
+ + - - -
- + + + ]
4854 : : {
4855 : 25748 : case DW_OP_addr:;
4856 : : /* Address operand. */
4857 : 25748 : Dwarf_Word addr;
4858 [ - + ]: 25748 : NEED (addrsize);
4859 [ + + ]: 25748 : if (addrsize == 4)
4860 [ + + ]: 108 : addr = read_4ubyte_unaligned (dbg, data);
4861 [ + - ]: 25640 : else if (addrsize == 8)
4862 [ + + ]: 25640 : addr = read_8ubyte_unaligned (dbg, data);
4863 : : else
4864 : 0 : goto invalid;
4865 : 25748 : data += addrsize;
4866 : 25748 : CONSUME (addrsize);
4867 : :
4868 : 25748 : printf ("%*s[%2" PRIuMAX "] %s ",
4869 : : indent, "", (uintmax_t) offset, op_name);
4870 : 25748 : print_dwarf_addr (dwflmod, 0, addr, addr);
4871 : 25748 : printf ("\n");
4872 : :
4873 : 25748 : offset += 1 + addrsize;
4874 : 25748 : break;
4875 : :
4876 : 0 : case DW_OP_call_ref:
4877 : : case DW_OP_GNU_variable_value:
4878 : : /* Offset operand. */
4879 [ # # ]: 0 : if (ref_size != 4 && ref_size != 8)
4880 : 0 : goto invalid; /* Cannot be used in CFA. */
4881 [ # # ]: 0 : NEED (ref_size);
4882 [ # # ]: 0 : if (ref_size == 4)
4883 [ # # ]: 0 : addr = read_4ubyte_unaligned (dbg, data);
4884 : : else
4885 [ # # ]: 0 : addr = read_8ubyte_unaligned (dbg, data);
4886 : 0 : data += ref_size;
4887 : 0 : CONSUME (ref_size);
4888 : : /* addr is a DIE offset, so format it as one. */
4889 : 0 : printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "]\n",
4890 : : indent, "", (uintmax_t) offset,
4891 : : op_name, (uintmax_t) addr);
4892 : 0 : offset += 1 + ref_size;
4893 : 0 : break;
4894 : :
4895 : 26460 : case DW_OP_deref_size:
4896 : : case DW_OP_xderef_size:
4897 : : case DW_OP_pick:
4898 : : case DW_OP_const1u:
4899 : : // XXX value might be modified by relocation
4900 [ - + ]: 26460 : NEED (1);
4901 : 52920 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu8 "\n",
4902 : : indent, "", (uintmax_t) offset,
4903 : 26460 : op_name, *((uint8_t *) data));
4904 : 26460 : ++data;
4905 : 26460 : --len;
4906 : 26460 : offset += 2;
4907 : 26460 : break;
4908 : :
4909 : 3206 : case DW_OP_const2u:
4910 [ - + ]: 3206 : NEED (2);
4911 : : // XXX value might be modified by relocation
4912 : 0 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu16 "\n",
4913 : : indent, "", (uintmax_t) offset,
4914 [ - + ]: 3206 : op_name, read_2ubyte_unaligned (dbg, data));
4915 : 3206 : CONSUME (2);
4916 : 3206 : data += 2;
4917 : 3206 : offset += 3;
4918 : 3206 : break;
4919 : :
4920 : 2322 : case DW_OP_const4u:
4921 [ - + ]: 2322 : NEED (4);
4922 : : // XXX value might be modified by relocation
4923 : 2322 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu32 "\n",
4924 : : indent, "", (uintmax_t) offset,
4925 [ - + ]: 2322 : op_name, read_4ubyte_unaligned (dbg, data));
4926 : 2322 : CONSUME (4);
4927 : 2322 : data += 4;
4928 : 2322 : offset += 5;
4929 : 2322 : break;
4930 : :
4931 : 112 : case DW_OP_const8u:
4932 [ - + ]: 112 : NEED (8);
4933 : : // XXX value might be modified by relocation
4934 : 112 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 "\n",
4935 : : indent, "", (uintmax_t) offset,
4936 [ - + ]: 112 : op_name, (uint64_t) read_8ubyte_unaligned (dbg, data));
4937 : 112 : CONSUME (8);
4938 : 112 : data += 8;
4939 : 112 : offset += 9;
4940 : 112 : break;
4941 : :
4942 : 4924 : case DW_OP_const1s:
4943 [ - + ]: 4924 : NEED (1);
4944 : : // XXX value might be modified by relocation
4945 : 9848 : printf ("%*s[%2" PRIuMAX "] %s %" PRId8 "\n",
4946 : : indent, "", (uintmax_t) offset,
4947 : 4924 : op_name, *((int8_t *) data));
4948 : 4924 : ++data;
4949 : 4924 : --len;
4950 : 4924 : offset += 2;
4951 : 4924 : break;
4952 : :
4953 : 10 : case DW_OP_const2s:
4954 [ - + ]: 10 : NEED (2);
4955 : : // XXX value might be modified by relocation
4956 : 0 : printf ("%*s[%2" PRIuMAX "] %s %" PRId16 "\n",
4957 : : indent, "", (uintmax_t) offset,
4958 [ - + ]: 10 : op_name, read_2sbyte_unaligned (dbg, data));
4959 : 10 : CONSUME (2);
4960 : 10 : data += 2;
4961 : 10 : offset += 3;
4962 : 10 : break;
4963 : :
4964 : 0 : case DW_OP_const4s:
4965 [ # # ]: 0 : NEED (4);
4966 : : // XXX value might be modified by relocation
4967 : 0 : printf ("%*s[%2" PRIuMAX "] %s %" PRId32 "\n",
4968 : : indent, "", (uintmax_t) offset,
4969 [ # # ]: 0 : op_name, read_4sbyte_unaligned (dbg, data));
4970 : 0 : CONSUME (4);
4971 : 0 : data += 4;
4972 : 0 : offset += 5;
4973 : 0 : break;
4974 : :
4975 : 0 : case DW_OP_const8s:
4976 [ # # ]: 0 : NEED (8);
4977 : : // XXX value might be modified by relocation
4978 : 0 : printf ("%*s[%2" PRIuMAX "] %s %" PRId64 "\n",
4979 : : indent, "", (uintmax_t) offset,
4980 [ # # ]: 0 : op_name, read_8sbyte_unaligned (dbg, data));
4981 : 0 : CONSUME (8);
4982 : 0 : data += 8;
4983 : 0 : offset += 9;
4984 : 0 : break;
4985 : :
4986 : 26512 : case DW_OP_piece:
4987 : : case DW_OP_regx:
4988 : : case DW_OP_plus_uconst:
4989 : 26512 : case DW_OP_constu:;
4990 : 26512 : const unsigned char *start = data;
4991 : 26512 : uint64_t uleb;
4992 [ - + ]: 26512 : NEED (1);
4993 : 26512 : get_uleb128 (uleb, data, data + len);
4994 : 26512 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 "\n",
4995 : : indent, "", (uintmax_t) offset, op_name, uleb);
4996 [ - + ]: 26512 : CONSUME (data - start);
4997 : 26512 : offset += 1 + (data - start);
4998 : 26512 : break;
4999 : :
5000 : 16 : case DW_OP_addrx:
5001 : : case DW_OP_GNU_addr_index:
5002 : : case DW_OP_constx:
5003 : 16 : case DW_OP_GNU_const_index:;
5004 : 16 : start = data;
5005 [ - + ]: 16 : NEED (1);
5006 : 16 : get_uleb128 (uleb, data, data + len);
5007 : 16 : printf ("%*s[%2" PRIuMAX "] %s [%" PRIu64 "] ",
5008 : : indent, "", (uintmax_t) offset, op_name, uleb);
5009 [ - + ]: 16 : CONSUME (data - start);
5010 : 16 : offset += 1 + (data - start);
5011 [ - + ]: 16 : if (get_indexed_addr (cu, uleb, &addr) != 0)
5012 : 0 : printf ("???\n");
5013 : : else
5014 : : {
5015 : 16 : print_dwarf_addr (dwflmod, 0, addr, addr);
5016 : 16 : printf ("\n");
5017 : : }
5018 : : break;
5019 : :
5020 : 0 : case DW_OP_bit_piece:
5021 : 0 : start = data;
5022 : 0 : uint64_t uleb2;
5023 [ # # ]: 0 : NEED (1);
5024 : 0 : get_uleb128 (uleb, data, data + len);
5025 : 0 : NEED (1);
5026 : 0 : get_uleb128 (uleb2, data, data + len);
5027 : 0 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 ", %" PRIu64 "\n",
5028 : : indent, "", (uintmax_t) offset, op_name, uleb, uleb2);
5029 [ # # ]: 0 : CONSUME (data - start);
5030 : 0 : offset += 1 + (data - start);
5031 : 0 : break;
5032 : :
5033 : 197742 : case DW_OP_fbreg:
5034 : : case DW_OP_breg0 ... DW_OP_breg31:
5035 : : case DW_OP_consts:
5036 : 197742 : start = data;
5037 : 197742 : int64_t sleb;
5038 [ - + ]: 197742 : NEED (1);
5039 : 197742 : get_sleb128 (sleb, data, data + len);
5040 : 197742 : printf ("%*s[%2" PRIuMAX "] %s %" PRId64 "\n",
5041 : : indent, "", (uintmax_t) offset, op_name, sleb);
5042 [ - + ]: 197742 : CONSUME (data - start);
5043 : 197742 : offset += 1 + (data - start);
5044 : 197742 : break;
5045 : :
5046 : 0 : case DW_OP_bregx:
5047 : 0 : start = data;
5048 [ # # ]: 0 : NEED (1);
5049 : 0 : get_uleb128 (uleb, data, data + len);
5050 : 0 : NEED (1);
5051 : 0 : get_sleb128 (sleb, data, data + len);
5052 : 0 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 " %" PRId64 "\n",
5053 : : indent, "", (uintmax_t) offset, op_name, uleb, sleb);
5054 [ # # ]: 0 : CONSUME (data - start);
5055 : 0 : offset += 1 + (data - start);
5056 : 0 : break;
5057 : :
5058 : 0 : case DW_OP_call2:
5059 [ # # ]: 0 : NEED (2);
5060 : 0 : printf ("%*s[%2" PRIuMAX "] %s [%6" PRIx16 "]\n",
5061 : : indent, "", (uintmax_t) offset, op_name,
5062 [ # # ]: 0 : read_2ubyte_unaligned (dbg, data));
5063 : 0 : CONSUME (2);
5064 : 0 : data += 2;
5065 : 0 : offset += 3;
5066 : 0 : break;
5067 : :
5068 : 8 : case DW_OP_call4:
5069 [ - + ]: 8 : NEED (4);
5070 : 8 : printf ("%*s[%2" PRIuMAX "] %s [%6" PRIx32 "]\n",
5071 : : indent, "", (uintmax_t) offset, op_name,
5072 [ - + ]: 8 : read_4ubyte_unaligned (dbg, data));
5073 : 8 : CONSUME (4);
5074 : 8 : data += 4;
5075 : 8 : offset += 5;
5076 : 8 : break;
5077 : :
5078 : 1128 : case DW_OP_skip:
5079 : : case DW_OP_bra:
5080 [ - + ]: 1128 : NEED (2);
5081 : 2256 : printf ("%*s[%2" PRIuMAX "] %s %" PRIuMAX "\n",
5082 : : indent, "", (uintmax_t) offset, op_name,
5083 [ - + ]: 1128 : (uintmax_t) (offset + read_2sbyte_unaligned (dbg, data) + 3));
5084 : 1128 : CONSUME (2);
5085 : 1128 : data += 2;
5086 : 1128 : offset += 3;
5087 : 1128 : break;
5088 : :
5089 : 510 : case DW_OP_implicit_value:
5090 : 510 : start = data;
5091 [ - + ]: 510 : NEED (1);
5092 : 510 : get_uleb128 (uleb, data, data + len);
5093 : 510 : printf ("%*s[%2" PRIuMAX "] %s: ",
5094 : : indent, "", (uintmax_t) offset, op_name);
5095 [ - + ]: 510 : NEED (uleb);
5096 : 510 : print_block (uleb, data);
5097 : 510 : data += uleb;
5098 [ - + ]: 510 : CONSUME (data - start);
5099 : 510 : offset += 1 + (data - start);
5100 : 510 : break;
5101 : :
5102 : 5470 : case DW_OP_implicit_pointer:
5103 : : case DW_OP_GNU_implicit_pointer:
5104 : : /* DIE offset operand. */
5105 : 5470 : start = data;
5106 [ - + ]: 5470 : NEED (ref_size);
5107 [ - + ]: 5470 : if (ref_size != 4 && ref_size != 8)
5108 : 0 : goto invalid; /* Cannot be used in CFA. */
5109 [ + - ]: 5470 : if (ref_size == 4)
5110 [ - + ]: 5470 : addr = read_4ubyte_unaligned (dbg, data);
5111 : : else
5112 [ # # ]: 0 : addr = read_8ubyte_unaligned (dbg, data);
5113 : 5470 : data += ref_size;
5114 : : /* Byte offset operand. */
5115 [ - + ]: 5470 : NEED (1);
5116 : 5470 : get_sleb128 (sleb, data, data + len);
5117 : :
5118 : 5470 : printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "] %+" PRId64 "\n",
5119 : : indent, "", (intmax_t) offset,
5120 : : op_name, (uintmax_t) addr, sleb);
5121 [ - + ]: 5470 : CONSUME (data - start);
5122 : 5470 : offset += 1 + (data - start);
5123 : 5470 : break;
5124 : :
5125 : 62870 : case DW_OP_entry_value:
5126 : : case DW_OP_GNU_entry_value:
5127 : : /* Size plus expression block. */
5128 : 62870 : start = data;
5129 [ - + ]: 62870 : NEED (1);
5130 : 62870 : get_uleb128 (uleb, data, data + len);
5131 : 62870 : printf ("%*s[%2" PRIuMAX "] %s:\n",
5132 : : indent, "", (uintmax_t) offset, op_name);
5133 [ - + ]: 62870 : NEED (uleb);
5134 : 62870 : print_ops (dwflmod, dbg, indent + 5, indent + 5, vers,
5135 : : addrsize, offset_size, cu, uleb, data);
5136 : 62870 : data += uleb;
5137 [ - + ]: 62870 : CONSUME (data - start);
5138 : 62870 : offset += 1 + (data - start);
5139 : 62870 : break;
5140 : :
5141 : 0 : case DW_OP_const_type:
5142 : : case DW_OP_GNU_const_type:
5143 : : /* uleb128 CU relative DW_TAG_base_type DIE offset, 1-byte
5144 : : unsigned size plus block. */
5145 : 0 : start = data;
5146 [ # # ]: 0 : NEED (1);
5147 : 0 : get_uleb128 (uleb, data, data + len);
5148 [ # # # # ]: 0 : if (! print_unresolved_addresses && cu != NULL)
5149 : 0 : uleb += cu->start;
5150 : 0 : NEED (1);
5151 : 0 : uint8_t usize = *(uint8_t *) data++;
5152 [ # # ]: 0 : NEED (usize);
5153 : 0 : printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "] ",
5154 : : indent, "", (uintmax_t) offset, op_name, uleb);
5155 : 0 : print_block (usize, data);
5156 : 0 : data += usize;
5157 [ # # ]: 0 : CONSUME (data - start);
5158 : 0 : offset += 1 + (data - start);
5159 : 0 : break;
5160 : :
5161 : 0 : case DW_OP_regval_type:
5162 : : case DW_OP_GNU_regval_type:
5163 : : /* uleb128 register number, uleb128 CU relative
5164 : : DW_TAG_base_type DIE offset. */
5165 : 0 : start = data;
5166 [ # # ]: 0 : NEED (1);
5167 : 0 : get_uleb128 (uleb, data, data + len);
5168 : 0 : NEED (1);
5169 : 0 : get_uleb128 (uleb2, data, data + len);
5170 [ # # # # ]: 0 : if (! print_unresolved_addresses && cu != NULL)
5171 : 0 : uleb2 += cu->start;
5172 : 0 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 " [%6" PRIx64 "]\n",
5173 : : indent, "", (uintmax_t) offset, op_name, uleb, uleb2);
5174 [ # # ]: 0 : CONSUME (data - start);
5175 : 0 : offset += 1 + (data - start);
5176 : 0 : break;
5177 : :
5178 : 0 : case DW_OP_deref_type:
5179 : : case DW_OP_GNU_deref_type:
5180 : : /* 1-byte unsigned size of value, uleb128 CU relative
5181 : : DW_TAG_base_type DIE offset. */
5182 : 0 : start = data;
5183 [ # # ]: 0 : NEED (1);
5184 : 0 : usize = *(uint8_t *) data++;
5185 : 0 : NEED (1);
5186 : 0 : get_uleb128 (uleb, data, data + len);
5187 [ # # # # ]: 0 : if (! print_unresolved_addresses && cu != NULL)
5188 : 0 : uleb += cu->start;
5189 : 0 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu8 " [%6" PRIxMAX "]\n",
5190 : : indent, "", (uintmax_t) offset,
5191 : : op_name, usize, uleb);
5192 [ # # ]: 0 : CONSUME (data - start);
5193 : 0 : offset += 1 + (data - start);
5194 : 0 : break;
5195 : :
5196 : 0 : case DW_OP_xderef_type:
5197 : : /* 1-byte unsigned size of value, uleb128 base_type DIE offset. */
5198 : 0 : start = data;
5199 [ # # ]: 0 : NEED (1);
5200 : 0 : usize = *(uint8_t *) data++;
5201 : 0 : NEED (1);
5202 : 0 : get_uleb128 (uleb, data, data + len);
5203 : 0 : printf ("%*s[%4" PRIuMAX "] %s %" PRIu8 " [%6" PRIxMAX "]\n",
5204 : : indent, "", (uintmax_t) offset,
5205 : : op_name, usize, uleb);
5206 [ # # ]: 0 : CONSUME (data - start);
5207 : 0 : offset += 1 + (data - start);
5208 : 0 : break;
5209 : :
5210 : 810 : case DW_OP_convert:
5211 : : case DW_OP_GNU_convert:
5212 : : case DW_OP_reinterpret:
5213 : : case DW_OP_GNU_reinterpret:
5214 : : /* uleb128 CU relative offset to DW_TAG_base_type, or zero
5215 : : for conversion to untyped. */
5216 : 810 : start = data;
5217 [ - + ]: 810 : NEED (1);
5218 : 810 : get_uleb128 (uleb, data, data + len);
5219 [ + + + - : 810 : if (uleb != 0 && ! print_unresolved_addresses && cu != NULL)
+ - ]
5220 : 540 : uleb += cu->start;
5221 : 810 : printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "]\n",
5222 : : indent, "", (uintmax_t) offset, op_name, uleb);
5223 [ - + ]: 810 : CONSUME (data - start);
5224 : 810 : offset += 1 + (data - start);
5225 : 810 : break;
5226 : :
5227 : 8 : case DW_OP_GNU_parameter_ref:
5228 : : /* 4 byte CU relative reference to the abstract optimized away
5229 : : DW_TAG_formal_parameter. */
5230 [ - + ]: 8 : NEED (4);
5231 [ - + ]: 8 : uintmax_t param_off = (uintmax_t) read_4ubyte_unaligned (dbg, data);
5232 [ + - + - ]: 8 : if (! print_unresolved_addresses && cu != NULL)
5233 : 8 : param_off += cu->start;
5234 : 8 : printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "]\n",
5235 : : indent, "", (uintmax_t) offset, op_name, param_off);
5236 : 8 : CONSUME (4);
5237 : 8 : data += 4;
5238 : 8 : offset += 5;
5239 : 8 : break;
5240 : :
5241 : : default:
5242 : : /* No Operand. */
5243 : 772404 : printf ("%*s[%2" PRIuMAX "] %s\n",
5244 : : indent, "", (uintmax_t) offset, op_name);
5245 : 772404 : ++offset;
5246 : 772404 : break;
5247 : : }
5248 : :
5249 : 1130260 : indent = indentrest;
5250 : 1130260 : continue;
5251 : :
5252 : 0 : invalid:
5253 : 0 : printf (_("%*s[%2" PRIuMAX "] %s <TRUNCATED>\n"),
5254 : : indent, "", (uintmax_t) offset, op_name);
5255 : : break;
5256 : : }
5257 : : }
5258 : :
5259 : :
5260 : : /* Turn the addresses into file offsets by using the phdrs. */
5261 : : static void
5262 : 2 : find_offsets(Elf *elf, GElf_Addr main_bias, size_t n,
5263 : : GElf_Addr addrs[n], GElf_Off offs[n])
5264 : : {
5265 : 2 : size_t unsolved = n;
5266 [ + + ]: 18 : for (size_t i = 0; i < phnum; ++i) {
5267 : 16 : GElf_Phdr phdr_mem;
5268 : 16 : GElf_Phdr *phdr = gelf_getphdr(elf, i, &phdr_mem);
5269 [ + - + + : 16 : if (phdr != NULL && phdr->p_type == PT_LOAD && phdr->p_memsz > 0)
+ - ]
5270 [ + + ]: 46 : for (size_t j = 0; j < n; ++j)
5271 [ + + + + ]: 44 : if (offs[j] == 0 && addrs[j] >= phdr->p_vaddr + main_bias &&
5272 [ + - ]: 22 : addrs[j] - (phdr->p_vaddr + main_bias) < phdr->p_filesz) {
5273 : 22 : offs[j] = addrs[j] - (phdr->p_vaddr + main_bias) + phdr->p_offset;
5274 [ + + ]: 22 : if (--unsolved == 0)
5275 : : break;
5276 : : }
5277 : : }
5278 : 2 : }
5279 : :
5280 : : /* The dynamic segment (type PT_DYNAMIC), contains the .dynamic section.
5281 : : And .dynamic section contains an array of the dynamic structures.
5282 : : We use the array to get:
5283 : : DT_STRTAB: the address of the string table
5284 : : DT_SYMTAB: the address of the symbol table
5285 : : DT_STRSZ: the size, in bytes, of the string table
5286 : : ... */
5287 : : static void
5288 : 2 : get_dynscn_addrs(Elf *elf, GElf_Phdr *phdr, GElf_Addr addrs[i_max])
5289 : : {
5290 : 2 : Elf_Data *data = elf_getdata_rawchunk(
5291 : 2 : elf, phdr->p_offset, phdr->p_filesz, ELF_T_DYN);
5292 : :
5293 : 2 : int dyn_idx = 0;
5294 : 44 : for (;; ++dyn_idx) {
5295 : 46 : GElf_Dyn dyn_mem;
5296 : 46 : GElf_Dyn *dyn = gelf_getdyn(data, dyn_idx, &dyn_mem);
5297 : : /* DT_NULL Marks end of dynamic section. */
5298 [ + - + + ]: 46 : if (dyn == NULL || dyn->d_tag == DT_NULL)
5299 : : break;
5300 : :
5301 [ + - + + : 44 : switch (dyn->d_tag) {
+ + + + +
+ - + ]
5302 : 2 : case DT_SYMTAB:
5303 : 2 : addrs[i_symtab] = dyn->d_un.d_ptr;
5304 : 2 : break;
5305 : :
5306 : 0 : case DT_HASH:
5307 : 0 : addrs[i_hash] = dyn->d_un.d_ptr;
5308 : 0 : break;
5309 : :
5310 : 2 : case DT_GNU_HASH:
5311 : 2 : addrs[i_gnu_hash] = dyn->d_un.d_ptr;
5312 : 2 : break;
5313 : :
5314 : 2 : case DT_STRTAB:
5315 : 2 : addrs[i_strtab] = dyn->d_un.d_ptr;
5316 : 2 : break;
5317 : :
5318 : 2 : case DT_VERSYM:
5319 : 2 : addrs[i_versym] = dyn->d_un.d_ptr;
5320 : 2 : break;
5321 : :
5322 : 2 : case DT_VERDEF:
5323 : 2 : addrs[i_verdef] = dyn->d_un.d_ptr;
5324 : 2 : break;
5325 : :
5326 : 2 : case DT_VERDEFNUM:
5327 : 2 : addrs[i_verdefnum] = dyn->d_un.d_val;
5328 : 2 : break;
5329 : :
5330 : 2 : case DT_VERNEED:
5331 : 2 : addrs[i_verneed] = dyn->d_un.d_ptr;
5332 : 2 : break;
5333 : :
5334 : 2 : case DT_VERNEEDNUM:
5335 : 2 : addrs[i_verneednum] = dyn->d_un.d_val;
5336 : 2 : break;
5337 : :
5338 : 2 : case DT_STRSZ:
5339 : 2 : addrs[i_strsz] = dyn->d_un.d_val;
5340 : 2 : break;
5341 : :
5342 : 0 : case DT_SYMTAB_SHNDX:
5343 : 0 : addrs[i_symtab_shndx] = dyn->d_un.d_ptr;
5344 : 0 : break;
5345 : : }
5346 : : }
5347 : 2 : }
5348 : :
5349 : :
5350 : : /* Use dynamic segment to get data for the string table section. */
5351 : : static Elf_Data *
5352 : 2 : get_dynscn_strtab(Elf *elf, GElf_Phdr *phdr)
5353 : : {
5354 : 2 : Elf_Data *strtab_data;
5355 : 2 : GElf_Addr addrs[i_max] = {0,};
5356 : 2 : GElf_Off offs[i_max] = {0,};
5357 : 2 : get_dynscn_addrs(elf, phdr, addrs);
5358 : 2 : find_offsets(elf, 0, i_max, addrs, offs);
5359 : 4 : strtab_data = elf_getdata_rawchunk(
5360 : 2 : elf, offs[i_strtab], addrs[i_strsz], ELF_T_BYTE);
5361 : 2 : return strtab_data;
5362 : : }
5363 : :
5364 : :
5365 : : struct listptr
5366 : : {
5367 : : Dwarf_Off offset:(64 - 3);
5368 : : bool addr64:1;
5369 : : bool dwarf64:1;
5370 : : bool warned:1;
5371 : : struct Dwarf_CU *cu;
5372 : : unsigned int attr;
5373 : : };
5374 : :
5375 : : #define listptr_offset_size(p) ((p)->dwarf64 ? 8 : 4)
5376 : : #define listptr_address_size(p) ((p)->addr64 ? 8 : 4)
5377 : :
5378 : : static Dwarf_Addr
5379 : 21116 : cudie_base (Dwarf_Die *cudie)
5380 : : {
5381 : 21116 : Dwarf_Addr base;
5382 : : /* Find the base address of the compilation unit. It will normally
5383 : : be specified by DW_AT_low_pc. In DWARF-3 draft 4, the base
5384 : : address could be overridden by DW_AT_entry_pc. It's been
5385 : : removed, but GCC emits DW_AT_entry_pc and not DW_AT_lowpc for
5386 : : compilation units with discontinuous ranges. */
5387 [ - + ]: 21116 : if (unlikely (dwarf_lowpc (cudie, &base) != 0))
5388 : : {
5389 : 0 : Dwarf_Attribute attr_mem;
5390 [ # # ]: 0 : if (dwarf_formaddr (dwarf_attr (cudie, DW_AT_entry_pc, &attr_mem),
5391 : : &base) != 0)
5392 : 0 : base = 0;
5393 : : }
5394 : 21116 : return base;
5395 : : }
5396 : :
5397 : : static Dwarf_Addr
5398 : 21116 : listptr_base (struct listptr *p)
5399 : : {
5400 : 21116 : Dwarf_Die cu = CUDIE (p->cu);
5401 : 21116 : return cudie_base (&cu);
5402 : : }
5403 : :
5404 : : /* To store the name used in compare_listptr */
5405 : : static const char *sort_listptr_name;
5406 : :
5407 : : static int
5408 : 1721420 : compare_listptr (const void *a, const void *b)
5409 : : {
5410 : 1721420 : const char *name = sort_listptr_name;
5411 : 1721420 : struct listptr *p1 = (void *) a;
5412 : 1721420 : struct listptr *p2 = (void *) b;
5413 : :
5414 [ + + ]: 1721420 : if (p1->offset < p2->offset)
5415 : : return -1;
5416 [ + + ]: 165496 : if (p1->offset > p2->offset)
5417 : : return 1;
5418 : :
5419 [ + - - + ]: 8002 : if (!p1->warned && !p2->warned)
5420 : : {
5421 [ - + ]: 8002 : if (p1->addr64 != p2->addr64)
5422 : : {
5423 : 0 : p1->warned = p2->warned = true;
5424 : 8002 : error (0, 0,
5425 : 0 : _("%s %#" PRIx64 " used with different address sizes"),
5426 : : name, (uint64_t) p1->offset);
5427 : : }
5428 [ - + ]: 8002 : if (p1->dwarf64 != p2->dwarf64)
5429 : : {
5430 : 0 : p1->warned = p2->warned = true;
5431 : 8002 : error (0, 0,
5432 : 0 : _("%s %#" PRIx64 " used with different offset sizes"),
5433 : 0 : name, (uint64_t) p1->offset);
5434 : : }
5435 [ - + ]: 8002 : if (listptr_base (p1) != listptr_base (p2))
5436 : : {
5437 : 0 : p1->warned = p2->warned = true;
5438 : 8002 : error (0, 0,
5439 : 0 : _("%s %#" PRIx64 " used with different base addresses"),
5440 : 0 : name, (uint64_t) p1->offset);
5441 : : }
5442 [ + - ]: 8002 : if (p1->attr != p2 ->attr)
5443 : : {
5444 : 0 : p1->warned = p2->warned = true;
5445 : 0 : error (0, 0,
5446 : 0 : _("%s %#" PRIx64
5447 : : " used with different attribute %s and %s"),
5448 : 0 : name, (uint64_t) p1->offset, dwarf_attr_name (p1->attr),
5449 : : dwarf_attr_name (p2->attr));
5450 : : }
5451 : : }
5452 : :
5453 : : return 0;
5454 : : }
5455 : :
5456 : : struct listptr_table
5457 : : {
5458 : : size_t n;
5459 : : size_t alloc;
5460 : : struct listptr *table;
5461 : : };
5462 : :
5463 : : static struct listptr_table known_locsptr;
5464 : : static struct listptr_table known_loclistsptr;
5465 : : static struct listptr_table known_rangelistptr;
5466 : : static struct listptr_table known_rnglistptr;
5467 : : static struct listptr_table known_addrbases;
5468 : : static struct listptr_table known_stroffbases;
5469 : :
5470 : : static void
5471 : 532 : reset_listptr (struct listptr_table *table)
5472 : : {
5473 : 532 : free (table->table);
5474 : 532 : table->table = NULL;
5475 : 532 : table->n = table->alloc = 0;
5476 : : }
5477 : :
5478 : : /* Returns false if offset doesn't fit. See struct listptr. */
5479 : : static bool
5480 : 249740 : notice_listptr (enum section_e section, struct listptr_table *table,
5481 : : uint_fast8_t address_size, uint_fast8_t offset_size,
5482 : : struct Dwarf_CU *cu, Dwarf_Off offset, unsigned int attr)
5483 : : {
5484 [ + + ]: 249740 : if (print_debug_sections & section)
5485 : : {
5486 [ + + ]: 249488 : if (table->n == table->alloc)
5487 : : {
5488 [ + + ]: 408 : if (table->alloc == 0)
5489 : 174 : table->alloc = 128;
5490 : : else
5491 : 234 : table->alloc *= 2;
5492 : 408 : table->table = xrealloc (table->table,
5493 : 408 : table->alloc * sizeof table->table[0]);
5494 : : }
5495 : :
5496 : 249488 : struct listptr *p = &table->table[table->n++];
5497 : :
5498 : 249488 : *p = (struct listptr)
5499 : : {
5500 : 249488 : .addr64 = address_size == 8,
5501 : 249488 : .dwarf64 = offset_size == 8,
5502 : : .offset = offset,
5503 : : .cu = cu,
5504 : : .attr = attr
5505 : : };
5506 : :
5507 [ + - ]: 249488 : if (p->offset != offset)
5508 : : {
5509 : 0 : table->n--;
5510 : 0 : return false;
5511 : : }
5512 : : }
5513 : : return true;
5514 : : }
5515 : :
5516 : : static void
5517 : 182 : sort_listptr (struct listptr_table *table, const char *name)
5518 : : {
5519 [ + + ]: 182 : if (table->n > 0)
5520 : : {
5521 : 174 : sort_listptr_name = name;
5522 : 174 : qsort (table->table, table->n, sizeof table->table[0],
5523 : : &compare_listptr);
5524 : : }
5525 : 182 : }
5526 : :
5527 : : static bool
5528 : 208 : skip_listptr_hole (struct listptr_table *table, size_t *idxp,
5529 : : uint_fast8_t *address_sizep, uint_fast8_t *offset_sizep,
5530 : : Dwarf_Addr *base, struct Dwarf_CU **cu, ptrdiff_t offset,
5531 : : unsigned char **readp, unsigned char *endp,
5532 : : unsigned int *attr)
5533 : : {
5534 [ - + ]: 208 : if (table->n == 0)
5535 : : return false;
5536 : :
5537 [ + - + + ]: 336 : while (*idxp < table->n && table->table[*idxp].offset < (Dwarf_Off) offset)
5538 : 128 : ++*idxp;
5539 : :
5540 : 208 : struct listptr *p = &table->table[*idxp];
5541 : :
5542 [ + - ]: 208 : if (*idxp == table->n
5543 [ - + ]: 208 : || p->offset >= (Dwarf_Off) (endp - *readp + offset))
5544 : : {
5545 : 0 : *readp = endp;
5546 : 0 : printf (_(" [%6tx] <UNUSED GARBAGE IN REST OF SECTION>\n"),
5547 : : offset);
5548 : 0 : return true;
5549 : : }
5550 : :
5551 [ - + ]: 208 : if (p->offset != (Dwarf_Off) offset)
5552 : : {
5553 : 0 : *readp += p->offset - offset;
5554 : 0 : printf (_(" [%6tx] <UNUSED GARBAGE> ... %" PRIu64 " bytes ...\n"),
5555 : : offset, (Dwarf_Off) p->offset - offset);
5556 : 0 : return true;
5557 : : }
5558 : :
5559 [ + - ]: 208 : if (address_sizep != NULL)
5560 [ + + ]: 224 : *address_sizep = listptr_address_size (p);
5561 [ + + ]: 208 : if (offset_sizep != NULL)
5562 [ + - ]: 296 : *offset_sizep = listptr_offset_size (p);
5563 [ + - ]: 208 : if (base != NULL)
5564 : 208 : *base = listptr_base (p);
5565 [ + - ]: 208 : if (cu != NULL)
5566 : 208 : *cu = p->cu;
5567 [ + + ]: 208 : if (attr != NULL)
5568 : 148 : *attr = p->attr;
5569 : :
5570 : : return false;
5571 : : }
5572 : :
5573 : : static Dwarf_Off
5574 : 107188 : next_listptr_offset (struct listptr_table *table, size_t *idxp, Dwarf_Off off)
5575 : : {
5576 : : /* Note that multiple attributes could in theory point to the same loclist
5577 : : offset, so make sure we pick one that is bigger than the current one.
5578 : : The table is sorted on offset. */
5579 [ + - ]: 107188 : if (*idxp < table->n)
5580 : : {
5581 [ + - ]: 213142 : while (++*idxp < table->n)
5582 : : {
5583 : 213142 : Dwarf_Off next = table->table[*idxp].offset;
5584 [ + + ]: 213142 : if (next > off)
5585 : 107188 : return next;
5586 : : }
5587 : : }
5588 : : return 0;
5589 : : }
5590 : :
5591 : : /* Returns the listptr associated with the given index, or NULL. */
5592 : : static struct listptr *
5593 : 1450568 : get_listptr (struct listptr_table *table, size_t idx)
5594 : : {
5595 : 1450568 : if (idx >= table->n)
5596 : : return NULL;
5597 : 1450394 : return &table->table[idx];
5598 : : }
5599 : :
5600 : : /* Returns the next index, base address and CU associated with the
5601 : : list unit offsets. If there is none false is returned, otherwise
5602 : : true. Assumes the table has been sorted. */
5603 : : static bool
5604 : 4904 : listptr_cu (struct listptr_table *table, size_t *idxp,
5605 : : Dwarf_Off start, Dwarf_Off end,
5606 : : Dwarf_Addr *base, struct Dwarf_CU **cu)
5607 : : {
5608 : 4904 : while (*idxp < table->n
5609 [ + - + + ]: 38282 : && table->table[*idxp].offset < start)
5610 : 33378 : ++*idxp;
5611 : :
5612 [ + - ]: 4904 : if (*idxp < table->n
5613 [ + - ]: 4904 : && table->table[*idxp].offset >= start
5614 [ + - ]: 4904 : && table->table[*idxp].offset < end)
5615 : : {
5616 : 4904 : struct listptr *p = &table->table[*idxp];
5617 : 4904 : *base = listptr_base (p);
5618 : 4904 : *cu = p->cu;
5619 : 4904 : return true;
5620 : : }
5621 : :
5622 : : return false;
5623 : : }
5624 : :
5625 : : /* Returns the next index with the current CU for the given attribute.
5626 : : If there is none false is returned, otherwise true. Assumes the
5627 : : table has been sorted. */
5628 : : static bool
5629 : 725108 : listptr_attr (struct listptr_table *table, size_t idxp,
5630 : : Dwarf_Off offset, unsigned int attr)
5631 : : {
5632 : 1450532 : struct listptr *listptr;
5633 : 1450532 : do
5634 : : {
5635 [ + + ]: 1450532 : listptr = get_listptr (table, idxp);
5636 [ + - ]: 1450368 : if (listptr == NULL)
5637 : : return false;
5638 : :
5639 [ + + + + ]: 1450368 : if (listptr->offset == offset && listptr->attr == attr)
5640 : : return true;
5641 : :
5642 : 1343180 : idxp++;
5643 : : }
5644 [ + + ]: 1343180 : while (listptr->offset <= offset);
5645 : :
5646 : : return false;
5647 : : }
5648 : :
5649 : : static void
5650 : 88 : print_debug_abbrev_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
5651 : : Ebl *ebl, GElf_Ehdr *ehdr __attribute__ ((unused)),
5652 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
5653 : : {
5654 : 88 : Elf_Data *elf_data = get_debug_elf_data (dbg, ebl, IDX_debug_abbrev, scn);
5655 [ + - ]: 88 : if (elf_data == NULL)
5656 : : return;
5657 : :
5658 : 88 : const size_t sh_size = elf_data->d_size;
5659 : :
5660 : 88 : printf (_("\nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"
5661 : : " [ Code]\n"),
5662 : : elf_ndxscn (scn), section_name (ebl, shdr),
5663 : 88 : (uint64_t) shdr->sh_offset);
5664 : :
5665 : 88 : Dwarf_Off offset = 0;
5666 [ + + ]: 3604 : while (offset < sh_size)
5667 : : {
5668 : 3516 : printf (_("\nAbbreviation section at offset %" PRIu64 ":\n"),
5669 : : offset);
5670 : :
5671 : 324404 : while (1)
5672 : 160444 : {
5673 : 163960 : size_t length;
5674 : 163960 : Dwarf_Abbrev abbrev;
5675 : :
5676 : 163960 : int res = dwarf_offabbrev (dbg, offset, &length, &abbrev);
5677 [ + + ]: 163960 : if (res != 0)
5678 : : {
5679 [ - + ]: 3516 : if (unlikely (res < 0))
5680 : : {
5681 : 0 : printf (_("\
5682 : : *** error while reading abbreviation: %s\n"),
5683 : : dwarf_errmsg (-1));
5684 : 0 : return;
5685 : : }
5686 : :
5687 : : /* This is the NUL byte at the end of the section. */
5688 : 3516 : ++offset;
5689 : 3516 : break;
5690 : : }
5691 : :
5692 : : /* We know these calls can never fail. */
5693 : 160444 : unsigned int code = dwarf_getabbrevcode (&abbrev);
5694 : 160444 : unsigned int tag = dwarf_getabbrevtag (&abbrev);
5695 : 160444 : int has_children = dwarf_abbrevhaschildren (&abbrev);
5696 : :
5697 [ + + ]: 160444 : printf (_(" [%5u] offset: %" PRId64
5698 : : ", children: %s, tag: %s\n"),
5699 : : code, (int64_t) offset,
5700 : : has_children ? yes_str : no_str,
5701 : : dwarf_tag_name (tag));
5702 : :
5703 : 160444 : size_t cnt = 0;
5704 : 160444 : unsigned int name;
5705 : 160444 : unsigned int form;
5706 : 160444 : Dwarf_Sword data;
5707 : 160444 : Dwarf_Off enoffset;
5708 : 160444 : while (dwarf_getabbrevattr_data (&abbrev, cnt, &name, &form,
5709 [ + + ]: 917166 : &data, &enoffset) == 0)
5710 : : {
5711 : 756722 : printf (" attr: %s, form: %s",
5712 : : dwarf_attr_name (name), dwarf_form_name (form));
5713 [ + + ]: 756722 : if (form == DW_FORM_implicit_const)
5714 : 54212 : printf (" (%" PRId64 ")", data);
5715 : 756722 : printf (", offset: %#" PRIx64 "\n", (uint64_t) enoffset);
5716 : 756722 : ++cnt;
5717 : : }
5718 : :
5719 : 160444 : offset += length;
5720 : : }
5721 : : }
5722 : : }
5723 : :
5724 : :
5725 : : static void
5726 : 8 : print_debug_addr_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
5727 : : Ebl *ebl, GElf_Ehdr *ehdr,
5728 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
5729 : : {
5730 : 8 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_addr, scn);
5731 [ + - ]: 8 : if (data == NULL)
5732 : : return;
5733 : :
5734 : 8 : printf (_("\
5735 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
5736 : : elf_ndxscn (scn), section_name (ebl, shdr),
5737 : 8 : (uint64_t) shdr->sh_offset);
5738 : :
5739 [ + - ]: 8 : if (shdr->sh_size == 0)
5740 : : return;
5741 : :
5742 : 8 : size_t idx = 0;
5743 : 8 : sort_listptr (&known_addrbases, "addr_base");
5744 : :
5745 : 8 : const unsigned char *start = (const unsigned char *) data->d_buf;
5746 : 8 : const unsigned char *readp = start;
5747 : 8 : const unsigned char *readendp = ((const unsigned char *) data->d_buf
5748 : 8 : + data->d_size);
5749 : :
5750 : 8 : while (readp < readendp)
5751 : : {
5752 : : /* We cannot really know whether or not there is an header. The
5753 : : DebugFission extension to DWARF4 doesn't add one. The DWARF5
5754 : : .debug_addr variant does. Whether or not we have an header,
5755 : : DW_AT_[GNU_]addr_base points at "index 0". So if the current
5756 : : offset equals the CU addr_base then we can just start
5757 : : printing addresses. If there is no CU with an exact match
5758 : : then we'll try to parse the header first. */
5759 : 16 : Dwarf_Off off = (Dwarf_Off) (readp
5760 : 16 : - (const unsigned char *) data->d_buf);
5761 : :
5762 : 16 : printf ("Table at offset %" PRIx64 " ", off);
5763 : :
5764 [ + - ]: 16 : struct listptr *listptr = get_listptr (&known_addrbases, idx++);
5765 : 16 : const unsigned char *next_unitp;
5766 : :
5767 : 16 : uint64_t unit_length;
5768 : 16 : uint16_t version;
5769 : 16 : uint8_t address_size;
5770 : 16 : uint8_t segment_size;
5771 [ - + ]: 16 : if (listptr == NULL)
5772 : : {
5773 : 0 : error (0, 0, "Warning: No CU references .debug_addr after %" PRIx64,
5774 : : off);
5775 : :
5776 : : /* We will have to assume it is just addresses to the end... */
5777 [ # # ]: 0 : address_size = ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
5778 : 0 : next_unitp = readendp;
5779 : 0 : printf ("Unknown CU:\n");
5780 : : }
5781 : : else
5782 : : {
5783 : 16 : Dwarf_Die cudie;
5784 [ - + ]: 16 : if (dwarf_cu_die (listptr->cu, &cudie,
5785 : : NULL, NULL, NULL, NULL,
5786 : : NULL, NULL) == NULL)
5787 : 0 : printf ("Unknown CU (%s):\n", dwarf_errmsg (-1));
5788 : : else
5789 : 16 : printf ("for CU [%6" PRIx64 "]:\n", dwarf_dieoffset (&cudie));
5790 : :
5791 [ + + ]: 16 : if (listptr->offset == off)
5792 : : {
5793 [ - + ]: 4 : address_size = listptr_address_size (listptr);
5794 : 4 : segment_size = 0;
5795 : 4 : version = 4;
5796 : :
5797 : : /* The addresses start here, but where do they end? */
5798 [ + + ]: 4 : listptr = get_listptr (&known_addrbases, idx);
5799 [ - + ]: 2 : if (listptr == NULL)
5800 : : next_unitp = readendp;
5801 [ + - ]: 2 : else if (listptr->cu->version < 5)
5802 : : {
5803 : 2 : next_unitp = start + listptr->offset;
5804 [ + - - + ]: 2 : if (listptr->offset < off || listptr->offset > data->d_size)
5805 : : {
5806 : 0 : error (0, 0,
5807 : : "Warning: Bad address base for next unit at %"
5808 : : PRIx64, off);
5809 : 0 : next_unitp = readendp;
5810 : : }
5811 : : }
5812 : : else
5813 : : {
5814 : : /* Tricky, we don't have a header for this unit, but
5815 : : there is one for the next. We will have to
5816 : : "guess" how big it is and subtract it from the
5817 : : offset (because that points after the header). */
5818 [ # # ]: 0 : unsigned int offset_size = listptr_offset_size (listptr);
5819 : 0 : Dwarf_Off next_off = (listptr->offset
5820 : 0 : - (offset_size == 4 ? 4 : 12) /* len */
5821 : : - 2 /* version */
5822 : : - 1 /* address size */
5823 : 0 : - 1); /* segment selector size */
5824 : 0 : next_unitp = start + next_off;
5825 [ # # # # ]: 0 : if (next_off < off || next_off > data->d_size)
5826 : : {
5827 : 0 : error (0, 0,
5828 : : "Warning: Couldn't calculate .debug_addr "
5829 : : " unit length at %" PRIx64, off);
5830 : 0 : next_unitp = readendp;
5831 : : }
5832 : : }
5833 : 4 : unit_length = (uint64_t) (next_unitp - readp);
5834 : :
5835 : : /* Pretend we have a header. */
5836 : 4 : printf ("\n");
5837 : 4 : printf (_(" Length: %8" PRIu64 "\n"),
5838 : : unit_length);
5839 : 4 : printf (_(" DWARF version: %8" PRIu16 "\n"), version);
5840 : 4 : printf (_(" Address size: %8" PRIu64 "\n"),
5841 : : (uint64_t) address_size);
5842 : 4 : printf (_(" Segment size: %8" PRIu64 "\n"),
5843 : : (uint64_t) segment_size);
5844 : 16 : printf ("\n");
5845 : : }
5846 : : else
5847 : : {
5848 : : /* OK, we have to parse an header first. */
5849 [ - + ]: 12 : unit_length = read_4ubyte_unaligned_inc (dbg, readp);
5850 [ - + ]: 12 : if (unlikely (unit_length == 0xffffffff))
5851 : : {
5852 [ # # ]: 0 : if (unlikely (readp > readendp - 8))
5853 : : {
5854 : 0 : invalid_data:
5855 : 0 : error (0, 0, "Invalid data");
5856 : 0 : return;
5857 : : }
5858 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, readp);
5859 : : }
5860 : 12 : printf ("\n");
5861 : 12 : printf (_(" Length: %8" PRIu64 "\n"),
5862 : : unit_length);
5863 : :
5864 : : /* We need at least 2-bytes (version) + 1-byte
5865 : : (addr_size) + 1-byte (segment_size) = 4 bytes to
5866 : : complete the header. And this unit cannot go beyond
5867 : : the section data. */
5868 [ + - ]: 12 : if (readp > readendp - 4
5869 [ + - ]: 12 : || unit_length < 4
5870 [ - + ]: 12 : || unit_length > (uint64_t) (readendp - readp))
5871 : 0 : goto invalid_data;
5872 : :
5873 : 12 : next_unitp = readp + unit_length;
5874 : :
5875 [ - + ]: 12 : version = read_2ubyte_unaligned_inc (dbg, readp);
5876 : 12 : printf (_(" DWARF version: %8" PRIu16 "\n"), version);
5877 : :
5878 [ - + ]: 12 : if (version != 5)
5879 : : {
5880 : 0 : error (0, 0, _("Unknown version"));
5881 : 0 : goto next_unit;
5882 : : }
5883 : :
5884 : 12 : address_size = *readp++;
5885 : 12 : printf (_(" Address size: %8" PRIu64 "\n"),
5886 : : (uint64_t) address_size);
5887 : :
5888 [ - + ]: 12 : if (address_size != 4 && address_size != 8)
5889 : : {
5890 : 0 : error (0, 0, _("unsupported address size"));
5891 : 0 : goto next_unit;
5892 : : }
5893 : :
5894 : 12 : segment_size = *readp++;
5895 : 12 : printf (_(" Segment size: %8" PRIu64 "\n"),
5896 : : (uint64_t) segment_size);
5897 : 12 : printf ("\n");
5898 : :
5899 [ - + ]: 12 : if (segment_size != 0)
5900 : : {
5901 : 0 : error (0, 0, _("unsupported segment size"));
5902 : 0 : goto next_unit;
5903 : : }
5904 : :
5905 [ - + ]: 12 : if (listptr->offset != (Dwarf_Off) (readp - start))
5906 : : {
5907 : 0 : error (0, 0, "Address index doesn't start after header");
5908 : 0 : goto next_unit;
5909 : : }
5910 : : }
5911 : : }
5912 : :
5913 : 16 : int digits = 1;
5914 : 16 : size_t addresses = (next_unitp - readp) / address_size;
5915 [ + + ]: 24 : while (addresses >= 10)
5916 : : {
5917 : 8 : ++digits;
5918 : 8 : addresses /= 10;
5919 : : }
5920 : :
5921 : 16 : unsigned int uidx = 0;
5922 : 16 : size_t index_offset = readp - (const unsigned char *) data->d_buf;
5923 : 16 : printf (" Addresses start at offset 0x%zx:\n", index_offset);
5924 : 188 : while (readp <= next_unitp - address_size)
5925 : : {
5926 [ - + + + : 172 : Dwarf_Addr addr = read_addr_unaligned_inc (address_size, dbg,
- + - + ]
5927 : : readp);
5928 : 172 : printf (" [%*u] ", digits, uidx++);
5929 : 172 : print_dwarf_addr (dwflmod, address_size, addr, addr);
5930 [ + + ]: 188 : printf ("\n");
5931 : : }
5932 : 16 : printf ("\n");
5933 : :
5934 [ + - ]: 16 : if (readp != next_unitp)
5935 [ + + ]: 24 : error (0, 0, "extra %zd bytes at end of unit",
5936 : 0 : (size_t) (next_unitp - readp));
5937 : :
5938 : 16 : next_unit:
5939 : : readp = next_unitp;
5940 : : }
5941 : : }
5942 : :
5943 : : /* Print content of DWARF .debug_aranges section. We fortunately do
5944 : : not have to know a bit about the structure of the section, libdwarf
5945 : : takes care of it. */
5946 : : static void
5947 : 2 : print_decoded_aranges_section (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn,
5948 : : GElf_Shdr *shdr, Dwarf *dbg)
5949 : : {
5950 : 2 : Dwarf_Aranges *aranges;
5951 : 2 : size_t cnt;
5952 [ - + ]: 2 : if (unlikely (dwarf_getaranges (dbg, &aranges, &cnt) != 0))
5953 : : {
5954 : 0 : error (0, 0, _("cannot get .debug_aranges content: %s"),
5955 : : dwarf_errmsg (-1));
5956 : 0 : return;
5957 : : }
5958 : :
5959 : 2 : GElf_Shdr glink_mem;
5960 : 2 : GElf_Shdr *glink;
5961 : 2 : glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link), &glink_mem);
5962 [ - + ]: 2 : if (glink == NULL)
5963 : : {
5964 : 0 : error (0, 0, _("invalid sh_link value in section %zu"),
5965 : : elf_ndxscn (scn));
5966 : 0 : return;
5967 : : }
5968 : :
5969 : 2 : printf (ngettext ("\
5970 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 " contains %zu entry:\n",
5971 : : "\
5972 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 " contains %zu entries:\n",
5973 : : cnt),
5974 : : elf_ndxscn (scn), section_name (ebl, shdr),
5975 : 2 : (uint64_t) shdr->sh_offset, cnt);
5976 : :
5977 : : /* Compute floor(log16(cnt)). */
5978 : 2 : size_t tmp = cnt;
5979 : 2 : int digits = 1;
5980 [ - + ]: 2 : while (tmp >= 16)
5981 : : {
5982 : 0 : ++digits;
5983 : 0 : tmp >>= 4;
5984 : : }
5985 : :
5986 [ + + ]: 12 : for (size_t n = 0; n < cnt; ++n)
5987 : : {
5988 : 10 : Dwarf_Arange *runp = dwarf_onearange (aranges, n);
5989 [ - + ]: 10 : if (unlikely (runp == NULL))
5990 : : {
5991 : 0 : printf ("cannot get arange %zu: %s\n", n, dwarf_errmsg (-1));
5992 : 0 : return;
5993 : : }
5994 : :
5995 : 10 : Dwarf_Addr start;
5996 : 10 : Dwarf_Word length;
5997 : 10 : Dwarf_Off offset;
5998 : :
5999 [ - + ]: 10 : if (unlikely (dwarf_getarangeinfo (runp, &start, &length, &offset) != 0))
6000 : 0 : printf (_(" [%*zu] ???\n"), digits, n);
6001 : : else
6002 : 10 : printf (_(" [%*zu] start: %0#*" PRIx64
6003 : : ", length: %5" PRIu64 ", CU DIE offset: %6"
6004 : : PRId64 "\n"),
6005 [ - + ]: 10 : digits, n, ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 10 : 18,
6006 : : (uint64_t) start, (uint64_t) length, (int64_t) offset);
6007 : : }
6008 : : }
6009 : :
6010 : :
6011 : : /* Print content of DWARF .debug_aranges section. */
6012 : : static void
6013 : 92 : print_debug_aranges_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
6014 : : Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn,
6015 : : GElf_Shdr *shdr, Dwarf *dbg)
6016 : : {
6017 [ + + ]: 92 : if (decodedaranges)
6018 : : {
6019 : 2 : print_decoded_aranges_section (ebl, ehdr, scn, shdr, dbg);
6020 : 2 : return;
6021 : : }
6022 : :
6023 : 90 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_aranges, scn);
6024 [ + - ]: 90 : if (data == NULL)
6025 : : return;
6026 : :
6027 : 90 : printf (_("\
6028 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
6029 : : elf_ndxscn (scn), section_name (ebl, shdr),
6030 : 90 : (uint64_t) shdr->sh_offset);
6031 : :
6032 : 90 : const unsigned char *readp = data->d_buf;
6033 : 90 : const unsigned char *readendp = readp + data->d_size;
6034 : :
6035 [ + + ]: 3588 : while (readp < readendp)
6036 : : {
6037 : 3498 : const unsigned char *hdrstart = readp;
6038 : 3498 : size_t start_offset = hdrstart - (const unsigned char *) data->d_buf;
6039 : :
6040 : 3498 : printf (_("\nTable at offset %zu:\n"), start_offset);
6041 [ - + ]: 3498 : if (readp + 4 > readendp)
6042 : : {
6043 : 0 : invalid_data:
6044 : 0 : error (0, 0, _("invalid data in section [%zu] '%s'"),
6045 : : elf_ndxscn (scn), section_name (ebl, shdr));
6046 : 0 : return;
6047 : : }
6048 : :
6049 [ + + ]: 3498 : Dwarf_Word length = read_4ubyte_unaligned_inc (dbg, readp);
6050 : 3498 : unsigned int length_bytes = 4;
6051 [ - + ]: 3498 : if (length == DWARF3_LENGTH_64_BIT)
6052 : : {
6053 [ # # ]: 0 : if (readp + 8 > readendp)
6054 : 0 : goto invalid_data;
6055 [ # # ]: 0 : length = read_8ubyte_unaligned_inc (dbg, readp);
6056 : 0 : length_bytes = 8;
6057 : : }
6058 : :
6059 : 3498 : const unsigned char *nexthdr = readp + length;
6060 : 3498 : printf (_("\n Length: %6" PRIu64 "\n"),
6061 : : (uint64_t) length);
6062 : :
6063 [ - + ]: 3498 : if (unlikely (length > (size_t) (readendp - readp)))
6064 : 0 : goto invalid_data;
6065 : :
6066 [ - + ]: 3498 : if (length == 0)
6067 : 0 : continue;
6068 : :
6069 [ - + ]: 3498 : if (readp + 2 > readendp)
6070 : 0 : goto invalid_data;
6071 [ + + ]: 3498 : uint_fast16_t version = read_2ubyte_unaligned_inc (dbg, readp);
6072 : 3498 : printf (_(" DWARF version: %6" PRIuFAST16 "\n"),
6073 : : version);
6074 [ - + ]: 3498 : if (version != 2)
6075 : : {
6076 : 0 : error (0, 0, _("unsupported aranges version"));
6077 : 0 : goto next_table;
6078 : : }
6079 : :
6080 : 3498 : Dwarf_Word offset;
6081 [ - + ]: 3498 : if (readp + length_bytes > readendp)
6082 : 0 : goto invalid_data;
6083 [ - + ]: 3498 : if (length_bytes == 8)
6084 [ # # ]: 0 : offset = read_8ubyte_unaligned_inc (dbg, readp);
6085 : : else
6086 [ + + ]: 3498 : offset = read_4ubyte_unaligned_inc (dbg, readp);
6087 : 3498 : printf (_(" CU offset: %6" PRIx64 "\n"),
6088 : : (uint64_t) offset);
6089 : :
6090 [ - + ]: 3498 : if (readp + 1 > readendp)
6091 : 0 : goto invalid_data;
6092 : 3498 : unsigned int address_size = *readp++;
6093 : 3498 : printf (_(" Address size: %6" PRIu64 "\n"),
6094 : : (uint64_t) address_size);
6095 [ - + ]: 3498 : if (address_size != 4 && address_size != 8)
6096 : : {
6097 : 0 : error (0, 0, _("unsupported address size"));
6098 : 0 : goto next_table;
6099 : : }
6100 : :
6101 [ - + ]: 3498 : if (readp + 1 > readendp)
6102 : 0 : goto invalid_data;
6103 : 3498 : unsigned int segment_size = *readp++;
6104 : 3498 : printf (_(" Segment size: %6" PRIu64 "\n\n"),
6105 : : (uint64_t) segment_size);
6106 [ - + - - ]: 3498 : if (segment_size != 0 && segment_size != 4 && segment_size != 8)
6107 : : {
6108 : 0 : error (0, 0, _("unsupported segment size"));
6109 : 0 : goto next_table;
6110 : : }
6111 : :
6112 : : /* Round the address to the next multiple of 2*address_size. */
6113 : 3498 : readp += ((2 * address_size - ((readp - hdrstart) % (2 * address_size)))
6114 : 3498 : % (2 * address_size));
6115 : :
6116 : 3498 : while (readp < nexthdr)
6117 : : {
6118 : 7270 : Dwarf_Word range_address;
6119 : 7270 : Dwarf_Word range_length;
6120 : 7270 : Dwarf_Word segment = 0;
6121 [ - + ]: 7270 : if (readp + 2 * address_size + segment_size > readendp)
6122 : 0 : goto invalid_data;
6123 [ + + ]: 7270 : if (address_size == 4)
6124 : : {
6125 [ + + ]: 92 : range_address = read_4ubyte_unaligned_inc (dbg, readp);
6126 [ + + ]: 92 : range_length = read_4ubyte_unaligned_inc (dbg, readp);
6127 : : }
6128 : : else
6129 : : {
6130 [ + + ]: 7178 : range_address = read_8ubyte_unaligned_inc (dbg, readp);
6131 [ + + ]: 7178 : range_length = read_8ubyte_unaligned_inc (dbg, readp);
6132 : : }
6133 : :
6134 [ - + ]: 7270 : if (segment_size == 4)
6135 [ # # ]: 0 : segment = read_4ubyte_unaligned_inc (dbg, readp);
6136 [ - + ]: 7270 : else if (segment_size == 8)
6137 [ # # ]: 0 : segment = read_8ubyte_unaligned_inc (dbg, readp);
6138 : :
6139 [ + + ]: 7270 : if (range_address == 0 && range_length == 0 && segment == 0)
6140 : : break;
6141 : :
6142 : 3772 : printf (" ");
6143 : 3772 : print_dwarf_addr (dwflmod, address_size, range_address,
6144 : : range_address);
6145 : 3772 : printf ("..");
6146 : 3772 : print_dwarf_addr (dwflmod, address_size,
6147 : 3772 : range_address + range_length - 1,
6148 : : range_length);
6149 [ - + ]: 3772 : if (segment_size != 0)
6150 : 0 : printf (" (%" PRIx64 ")\n", (uint64_t) segment);
6151 : : else
6152 [ + - ]: 11042 : printf ("\n");
6153 : : }
6154 : :
6155 : 3498 : next_table:
6156 [ - + ]: 3498 : if (readp != nexthdr)
6157 : : {
6158 : 0 : size_t padding = nexthdr - readp;
6159 : 0 : printf (_(" %zu padding bytes\n"), padding);
6160 : 0 : readp = nexthdr;
6161 : : }
6162 : : }
6163 : : }
6164 : :
6165 : :
6166 : : static bool is_split_dwarf (Dwarf *dbg, uint64_t *id, Dwarf_CU **split_cu);
6167 : :
6168 : : /* Returns true and sets cu and cu_base if the given Dwarf is a split
6169 : : DWARF (.dwo) file. */
6170 : : static bool
6171 : 0 : split_dwarf_cu_base (Dwarf *dbg, Dwarf_CU **cu, Dwarf_Addr *cu_base)
6172 : : {
6173 : 0 : uint64_t id;
6174 [ # # ]: 0 : if (is_split_dwarf (dbg, &id, cu))
6175 : : {
6176 : 0 : Dwarf_Die cudie;
6177 [ # # ]: 0 : if (dwarf_cu_info (*cu, NULL, NULL, &cudie, NULL, NULL, NULL, NULL) == 0)
6178 : : {
6179 : 0 : *cu_base = cudie_base (&cudie);
6180 : 0 : return true;
6181 : : }
6182 : : }
6183 : : return false;
6184 : : }
6185 : :
6186 : : /* Print content of DWARF .debug_rnglists section. */
6187 : : static void
6188 : 38 : print_debug_rnglists_section (Dwfl_Module *dwflmod,
6189 : : Ebl *ebl,
6190 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
6191 : : Elf_Scn *scn, GElf_Shdr *shdr,
6192 : : Dwarf *dbg __attribute__((unused)))
6193 : : {
6194 : 38 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_rnglists, scn);
6195 [ + - ]: 38 : if (data == NULL)
6196 : 0 : return;
6197 : :
6198 : 38 : printf (_("\
6199 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
6200 : : elf_ndxscn (scn), section_name (ebl, shdr),
6201 : 38 : (uint64_t) shdr->sh_offset);
6202 : :
6203 : : /* For the listptr to get the base address/CU. */
6204 : 38 : sort_listptr (&known_rnglistptr, "rnglistptr");
6205 : 38 : size_t listptr_idx = 0;
6206 : :
6207 : 38 : const unsigned char *readp = data->d_buf;
6208 : 38 : const unsigned char *const dataend = ((unsigned char *) data->d_buf
6209 : 38 : + data->d_size);
6210 [ + + ]: 1928 : while (readp < dataend)
6211 : : {
6212 [ - + ]: 1890 : if (unlikely (readp > dataend - 4))
6213 : : {
6214 : 0 : invalid_data:
6215 : 0 : error (0, 0, _("invalid data in section [%zu] '%s'"),
6216 : : elf_ndxscn (scn), section_name (ebl, shdr));
6217 : 0 : return;
6218 : : }
6219 : :
6220 : 1890 : ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
6221 : 1890 : printf (_("Table at Offset 0x%" PRIx64 ":\n\n"),
6222 : : (uint64_t) offset);
6223 : :
6224 [ - + ]: 1890 : uint64_t unit_length = read_4ubyte_unaligned_inc (dbg, readp);
6225 : 1890 : unsigned int offset_size = 4;
6226 [ - + ]: 1890 : if (unlikely (unit_length == 0xffffffff))
6227 : : {
6228 [ # # ]: 0 : if (unlikely (readp > dataend - 8))
6229 : 0 : goto invalid_data;
6230 : :
6231 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, readp);
6232 : 0 : offset_size = 8;
6233 : : }
6234 : 1890 : printf (_(" Length: %8" PRIu64 "\n"), unit_length);
6235 : :
6236 : : /* We need at least 2-bytes + 1-byte + 1-byte + 4-bytes = 8
6237 : : bytes to complete the header. And this unit cannot go beyond
6238 : : the section data. */
6239 [ + - ]: 1890 : if (readp > dataend - 8
6240 [ + - ]: 1890 : || unit_length < 8
6241 [ - + ]: 1890 : || unit_length > (uint64_t) (dataend - readp))
6242 : 0 : goto invalid_data;
6243 : :
6244 : 1890 : const unsigned char *nexthdr = readp + unit_length;
6245 : :
6246 [ - + ]: 1890 : uint16_t version = read_2ubyte_unaligned_inc (dbg, readp);
6247 : 1890 : printf (_(" DWARF version: %8" PRIu16 "\n"), version);
6248 : :
6249 [ - + ]: 1890 : if (version != 5)
6250 : : {
6251 : 0 : error (0, 0, _("Unknown version"));
6252 : 0 : goto next_table;
6253 : : }
6254 : :
6255 : 1890 : uint8_t address_size = *readp++;
6256 : 1890 : printf (_(" Address size: %8" PRIu64 "\n"),
6257 : : (uint64_t) address_size);
6258 : :
6259 [ - + ]: 1890 : if (address_size != 4 && address_size != 8)
6260 : : {
6261 : 0 : error (0, 0, _("unsupported address size"));
6262 : 0 : goto next_table;
6263 : : }
6264 : :
6265 : 1890 : uint8_t segment_size = *readp++;
6266 : 1890 : printf (_(" Segment size: %8" PRIu64 "\n"),
6267 : : (uint64_t) segment_size);
6268 : :
6269 [ - + - - ]: 1890 : if (segment_size != 0 && segment_size != 4 && segment_size != 8)
6270 : : {
6271 : 0 : error (0, 0, _("unsupported segment size"));
6272 : 0 : goto next_table;
6273 : : }
6274 : :
6275 [ - + ]: 1890 : uint32_t offset_entry_count = read_4ubyte_unaligned_inc (dbg, readp);
6276 : 1890 : printf (_(" Offset entries: %8" PRIu64 "\n"),
6277 : : (uint64_t) offset_entry_count);
6278 : :
6279 : : /* We need the CU that uses this unit to get the initial base address. */
6280 : 1890 : Dwarf_Addr cu_base = 0;
6281 : 1890 : struct Dwarf_CU *cu = NULL;
6282 [ - + ]: 1890 : if (listptr_cu (&known_rnglistptr, &listptr_idx,
6283 : : (Dwarf_Off) offset,
6284 : 1890 : (Dwarf_Off) (nexthdr - (unsigned char *) data->d_buf),
6285 : : &cu_base, &cu)
6286 [ # # ]: 0 : || split_dwarf_cu_base (dbg, &cu, &cu_base))
6287 : 1890 : {
6288 : 1890 : Dwarf_Die cudie;
6289 [ - + ]: 1890 : if (dwarf_cu_die (cu, &cudie,
6290 : : NULL, NULL, NULL, NULL,
6291 : : NULL, NULL) == NULL)
6292 : 0 : printf (_(" Unknown CU base: "));
6293 : : else
6294 : 1890 : printf (_(" CU [%6" PRIx64 "] base: "),
6295 : : dwarf_dieoffset (&cudie));
6296 : 1890 : print_dwarf_addr (dwflmod, address_size, cu_base, cu_base);
6297 : 1890 : printf ("\n");
6298 : : }
6299 : : else
6300 : 0 : printf (_(" Not associated with a CU.\n"));
6301 : :
6302 : 1890 : printf ("\n");
6303 : :
6304 : 1890 : const unsigned char *offset_array_start = readp;
6305 [ + + ]: 1890 : if (offset_entry_count > 0)
6306 : : {
6307 : 2 : uint64_t max_entries = (unit_length - 8) / offset_size;
6308 [ - + ]: 2 : if (offset_entry_count > max_entries)
6309 : : {
6310 : 0 : error (0, 0,
6311 : 0 : _("too many offset entries for unit length"));
6312 : 0 : offset_entry_count = max_entries;
6313 : : }
6314 : :
6315 : 2 : printf (_(" Offsets starting at 0x%" PRIx64 ":\n"),
6316 : : (uint64_t) (offset_array_start
6317 : 2 : - (unsigned char *) data->d_buf));
6318 [ + + ]: 6 : for (uint32_t idx = 0; idx < offset_entry_count; idx++)
6319 : : {
6320 : 4 : printf (" [%6" PRIu32 "] ", idx);
6321 [ + - ]: 4 : if (offset_size == 4)
6322 : : {
6323 [ - + ]: 4 : uint32_t off = read_4ubyte_unaligned_inc (dbg, readp);
6324 : 4 : printf ("0x%" PRIx32 "\n", off);
6325 : : }
6326 : : else
6327 : : {
6328 [ # # ]: 0 : uint64_t off = read_8ubyte_unaligned_inc (dbg, readp);
6329 : 4 : printf ("0x%" PRIx64 "\n", off);
6330 : : }
6331 : : }
6332 : 2 : printf ("\n");
6333 : : }
6334 : :
6335 : 1890 : Dwarf_Addr base = cu_base;
6336 : 1890 : bool start_of_list = true;
6337 : 1890 : while (readp < nexthdr)
6338 : : {
6339 : 131862 : uint8_t kind = *readp++;
6340 : 131862 : uint64_t op1, op2;
6341 : :
6342 : : /* Skip padding. */
6343 [ - + ]: 131862 : if (start_of_list && kind == DW_RLE_end_of_list)
6344 : 0 : continue;
6345 : :
6346 [ + + ]: 131862 : if (start_of_list)
6347 : : {
6348 : 27620 : base = cu_base;
6349 : 27620 : printf (" Offset: %" PRIx64 ", Index: %" PRIx64 "\n",
6350 : 27620 : (uint64_t) (readp - (unsigned char *) data->d_buf - 1),
6351 : 27620 : (uint64_t) (readp - offset_array_start - 1));
6352 : 27620 : start_of_list = false;
6353 : : }
6354 : :
6355 : 131862 : printf (" %s", dwarf_range_list_encoding_name (kind));
6356 [ + - - - : 131862 : switch (kind)
+ + - +
- ]
6357 : : {
6358 : 27620 : case DW_RLE_end_of_list:
6359 : 27620 : start_of_list = true;
6360 : 27620 : printf ("\n\n");
6361 : : break;
6362 : :
6363 : 0 : case DW_RLE_base_addressx:
6364 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
6365 : : {
6366 : 0 : invalid_range:
6367 : 0 : error (0, 0, _("invalid range list data"));
6368 : 0 : goto next_table;
6369 : : }
6370 : 0 : get_uleb128 (op1, readp, nexthdr);
6371 : 0 : printf (" %" PRIx64 "\n", op1);
6372 [ # # ]: 0 : if (! print_unresolved_addresses)
6373 : : {
6374 : 0 : Dwarf_Addr addr;
6375 [ # # ]: 0 : if (get_indexed_addr (cu, op1, &addr) != 0)
6376 : 0 : printf (" ???\n");
6377 : : else
6378 : : {
6379 : 0 : printf (" ");
6380 : 0 : print_dwarf_addr (dwflmod, address_size, addr, addr);
6381 : 0 : printf ("\n");
6382 : : }
6383 : : }
6384 : : break;
6385 : :
6386 : 0 : case DW_RLE_startx_endx:
6387 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
6388 : 0 : goto invalid_range;
6389 : 0 : get_uleb128 (op1, readp, nexthdr);
6390 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
6391 : 0 : goto invalid_range;
6392 : 0 : get_uleb128 (op2, readp, nexthdr);
6393 : 0 : printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
6394 [ # # ]: 0 : if (! print_unresolved_addresses)
6395 : : {
6396 : 0 : Dwarf_Addr addr1;
6397 : 0 : Dwarf_Addr addr2;
6398 [ # # ]: 0 : if (get_indexed_addr (cu, op1, &addr1) != 0
6399 [ # # ]: 0 : || get_indexed_addr (cu, op2, &addr2) != 0)
6400 : : {
6401 : 0 : printf (" ???..\n");
6402 : 0 : printf (" ???\n");
6403 : : }
6404 : : else
6405 : : {
6406 : 0 : printf (" ");
6407 : 0 : print_dwarf_addr (dwflmod, address_size, addr1, addr1);
6408 : 0 : printf ("..\n ");
6409 : 0 : print_dwarf_addr (dwflmod, address_size,
6410 : : addr2 - 1, addr2);
6411 : 0 : printf ("\n");
6412 : : }
6413 : : }
6414 : : break;
6415 : :
6416 : 0 : case DW_RLE_startx_length:
6417 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
6418 : 0 : goto invalid_range;
6419 : 0 : get_uleb128 (op1, readp, nexthdr);
6420 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
6421 : 0 : goto invalid_range;
6422 : 0 : get_uleb128 (op2, readp, nexthdr);
6423 : 0 : printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
6424 [ # # ]: 0 : if (! print_unresolved_addresses)
6425 : : {
6426 : 0 : Dwarf_Addr addr1;
6427 : 0 : Dwarf_Addr addr2;
6428 [ # # ]: 0 : if (get_indexed_addr (cu, op1, &addr1) != 0)
6429 : : {
6430 : 0 : printf (" ???..\n");
6431 : 0 : printf (" ???\n");
6432 : : }
6433 : : else
6434 : : {
6435 : 0 : addr2 = addr1 + op2;
6436 : 0 : printf (" ");
6437 : 0 : print_dwarf_addr (dwflmod, address_size, addr1, addr1);
6438 : 0 : printf ("..\n ");
6439 : 0 : print_dwarf_addr (dwflmod, address_size,
6440 : : addr2 - 1, addr2);
6441 : 0 : printf ("\n");
6442 : : }
6443 : : }
6444 : : break;
6445 : :
6446 : 94908 : case DW_RLE_offset_pair:
6447 [ - + ]: 94908 : if ((uint64_t) (nexthdr - readp) < 1)
6448 : 0 : goto invalid_range;
6449 : 94908 : get_uleb128 (op1, readp, nexthdr);
6450 [ - + ]: 94908 : if ((uint64_t) (nexthdr - readp) < 1)
6451 : 0 : goto invalid_range;
6452 : 94908 : get_uleb128 (op2, readp, nexthdr);
6453 : 94908 : printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
6454 [ + - ]: 94908 : if (! print_unresolved_addresses)
6455 : : {
6456 : 94908 : op1 += base;
6457 : 94908 : op2 += base;
6458 : 94908 : printf (" ");
6459 : 94908 : print_dwarf_addr (dwflmod, address_size, op1, op1);
6460 : 94908 : printf ("..\n ");
6461 : 94908 : print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
6462 : 94908 : printf ("\n");
6463 : : }
6464 : : break;
6465 : :
6466 : 8420 : case DW_RLE_base_address:
6467 [ - + ]: 8420 : if (address_size == 4)
6468 : : {
6469 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 4)
6470 : 0 : goto invalid_range;
6471 [ # # ]: 0 : op1 = read_4ubyte_unaligned_inc (dbg, readp);
6472 : : }
6473 : : else
6474 : : {
6475 [ - + ]: 8420 : if ((uint64_t) (nexthdr - readp) < 8)
6476 : 0 : goto invalid_range;
6477 [ - + ]: 8420 : op1 = read_8ubyte_unaligned_inc (dbg, readp);
6478 : : }
6479 : 8420 : base = op1;
6480 : 8420 : printf (" 0x%" PRIx64 "\n", base);
6481 [ - + ]: 8420 : if (! print_unresolved_addresses)
6482 : : {
6483 : 8420 : printf (" ");
6484 : 8420 : print_dwarf_addr (dwflmod, address_size, base, base);
6485 : 8420 : printf ("\n");
6486 : : }
6487 : : break;
6488 : :
6489 : 0 : case DW_RLE_start_end:
6490 [ # # ]: 0 : if (address_size == 4)
6491 : : {
6492 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 8)
6493 : 0 : goto invalid_range;
6494 [ # # ]: 0 : op1 = read_4ubyte_unaligned_inc (dbg, readp);
6495 [ # # ]: 0 : op2 = read_4ubyte_unaligned_inc (dbg, readp);
6496 : : }
6497 : : else
6498 : : {
6499 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 16)
6500 : 0 : goto invalid_range;
6501 [ # # ]: 0 : op1 = read_8ubyte_unaligned_inc (dbg, readp);
6502 [ # # ]: 0 : op2 = read_8ubyte_unaligned_inc (dbg, readp);
6503 : : }
6504 : 0 : printf (" 0x%" PRIx64 "..0x%" PRIx64 "\n", op1, op2);
6505 [ # # ]: 0 : if (! print_unresolved_addresses)
6506 : : {
6507 : 0 : printf (" ");
6508 : 0 : print_dwarf_addr (dwflmod, address_size, op1, op1);
6509 : 0 : printf ("..\n ");
6510 : 0 : print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
6511 : 0 : printf ("\n");
6512 : : }
6513 : : break;
6514 : :
6515 : 914 : case DW_RLE_start_length:
6516 [ - + ]: 914 : if (address_size == 4)
6517 : : {
6518 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 4)
6519 : 0 : goto invalid_range;
6520 [ # # ]: 0 : op1 = read_4ubyte_unaligned_inc (dbg, readp);
6521 : : }
6522 : : else
6523 : : {
6524 [ - + ]: 914 : if ((uint64_t) (nexthdr - readp) < 8)
6525 : 0 : goto invalid_range;
6526 [ - + ]: 914 : op1 = read_8ubyte_unaligned_inc (dbg, readp);
6527 : : }
6528 [ - + ]: 914 : if ((uint64_t) (nexthdr - readp) < 1)
6529 : 0 : goto invalid_range;
6530 : 914 : get_uleb128 (op2, readp, nexthdr);
6531 : 914 : printf (" 0x%" PRIx64 ", %" PRIx64 "\n", op1, op2);
6532 [ + + ]: 914 : if (! print_unresolved_addresses)
6533 : : {
6534 : 912 : op2 = op1 + op2;
6535 : 912 : printf (" ");
6536 : 912 : print_dwarf_addr (dwflmod, address_size, op1, op1);
6537 : 912 : printf ("..\n ");
6538 : 912 : print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
6539 [ + + ]: 134664 : printf ("\n");
6540 : : }
6541 : : break;
6542 : :
6543 : 0 : default:
6544 : 0 : goto invalid_range;
6545 : : }
6546 : : }
6547 : :
6548 : 1890 : next_table:
6549 [ - + ]: 1890 : if (readp != nexthdr)
6550 : : {
6551 : 0 : size_t padding = nexthdr - readp;
6552 : 0 : printf (_(" %zu padding bytes\n\n"), padding);
6553 : 0 : readp = nexthdr;
6554 : : }
6555 : : }
6556 : : }
6557 : :
6558 : : /* Print content of DWARF .debug_ranges section. */
6559 : : static void
6560 : 32 : print_debug_ranges_section (Dwfl_Module *dwflmod,
6561 : : Ebl *ebl, GElf_Ehdr *ehdr,
6562 : : Elf_Scn *scn, GElf_Shdr *shdr,
6563 : : Dwarf *dbg)
6564 : : {
6565 : 32 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_ranges, scn);
6566 [ - + ]: 32 : if (data == NULL)
6567 : 0 : return;
6568 : :
6569 : 32 : printf (_("\
6570 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
6571 : : elf_ndxscn (scn), section_name (ebl, shdr),
6572 : 32 : (uint64_t) shdr->sh_offset);
6573 : :
6574 : 32 : sort_listptr (&known_rangelistptr, "rangelistptr");
6575 : 32 : size_t listptr_idx = 0;
6576 : :
6577 [ + + ]: 32 : uint_fast8_t address_size = ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
6578 : :
6579 : 32 : bool first = true;
6580 : 32 : Dwarf_Addr base = 0;
6581 : 32 : unsigned char *const endp = (unsigned char *) data->d_buf + data->d_size;
6582 : 32 : unsigned char *readp = data->d_buf;
6583 : 32 : Dwarf_CU *last_cu = NULL;
6584 [ + + ]: 184 : while (readp < endp)
6585 : : {
6586 : 152 : ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
6587 : 152 : Dwarf_CU *cu = last_cu;
6588 : :
6589 [ + + - + ]: 152 : if (first && skip_listptr_hole (&known_rangelistptr, &listptr_idx,
6590 : : &address_size, NULL, &base, &cu,
6591 : : offset, &readp, endp, NULL))
6592 : 0 : continue;
6593 : :
6594 [ + + ]: 152 : if (last_cu != cu)
6595 : : {
6596 : 58 : Dwarf_Die cudie;
6597 [ - + ]: 58 : if (dwarf_cu_die (cu, &cudie,
6598 : : NULL, NULL, NULL, NULL,
6599 : : NULL, NULL) == NULL)
6600 : 0 : printf (_("\n Unknown CU base: "));
6601 : : else
6602 : 58 : printf (_("\n CU [%6" PRIx64 "] base: "),
6603 : : dwarf_dieoffset (&cudie));
6604 : 58 : print_dwarf_addr (dwflmod, address_size, base, base);
6605 : 58 : printf ("\n");
6606 : : }
6607 : 152 : last_cu = cu;
6608 : :
6609 [ - + ]: 152 : if (unlikely (data->d_size - offset < (size_t) address_size * 2))
6610 : : {
6611 : 0 : printf (_(" [%6tx] <INVALID DATA>\n"), offset);
6612 : 0 : break;
6613 : : }
6614 : :
6615 : 152 : Dwarf_Addr begin;
6616 : 152 : Dwarf_Addr end;
6617 [ + + ]: 152 : if (address_size == 8)
6618 : : {
6619 [ - + ]: 120 : begin = read_8ubyte_unaligned_inc (dbg, readp);
6620 [ - + ]: 120 : end = read_8ubyte_unaligned_inc (dbg, readp);
6621 : : }
6622 : : else
6623 : : {
6624 [ - + ]: 32 : begin = read_4ubyte_unaligned_inc (dbg, readp);
6625 [ - + ]: 32 : end = read_4ubyte_unaligned_inc (dbg, readp);
6626 [ + - ]: 32 : if (begin == (Dwarf_Addr) (uint32_t) -1)
6627 : : begin = (Dwarf_Addr) -1l;
6628 : : }
6629 : :
6630 [ - + ]: 152 : if (begin == (Dwarf_Addr) -1l) /* Base address entry. */
6631 : : {
6632 [ # # ]: 0 : if (first)
6633 : 0 : printf (" [%6tx] ", offset);
6634 : : else
6635 : 0 : printf (" ");
6636 : 0 : puts (_("base address"));
6637 : 0 : printf (" ");
6638 : 0 : print_dwarf_addr (dwflmod, address_size, end, end);
6639 : 0 : printf ("\n");
6640 : 0 : base = end;
6641 : 0 : first = false;
6642 : : }
6643 [ + + ]: 152 : else if (begin == 0 && end == 0) /* End of list entry. */
6644 : : {
6645 [ - + ]: 60 : if (first)
6646 : 0 : printf (_(" [%6tx] empty list\n"), offset);
6647 : : first = true;
6648 : : }
6649 : : else
6650 : : {
6651 : : /* We have an address range entry. */
6652 [ + + ]: 92 : if (first) /* First address range entry in a list. */
6653 : 60 : printf (" [%6tx] ", offset);
6654 : : else
6655 : 32 : printf (" ");
6656 : :
6657 : 92 : printf ("range %" PRIx64 ", %" PRIx64 "\n", begin, end);
6658 [ + + ]: 92 : if (! print_unresolved_addresses)
6659 : : {
6660 : 72 : printf (" ");
6661 : 72 : print_dwarf_addr (dwflmod, address_size, base + begin,
6662 : : base + begin);
6663 : 72 : printf ("..\n ");
6664 : 72 : print_dwarf_addr (dwflmod, address_size,
6665 : : base + end - 1, base + end);
6666 : 224 : printf ("\n");
6667 : : }
6668 : :
6669 : : first = false;
6670 : : }
6671 : : }
6672 : : }
6673 : :
6674 : : #define REGNAMESZ 16
6675 : : static const char *
6676 : 33370 : register_info (Ebl *ebl, unsigned int regno, const Ebl_Register_Location *loc,
6677 : : char name[REGNAMESZ], int *bits, int *type)
6678 : : {
6679 : 33370 : const char *set;
6680 : 33370 : const char *pfx;
6681 : 33370 : int ignore;
6682 [ + + + + ]: 96718 : ssize_t n = ebl_register_info (ebl, regno, name, REGNAMESZ, &pfx, &set,
6683 : : bits ?: &ignore, type ?: &ignore);
6684 [ - + ]: 33370 : if (n <= 0)
6685 : : {
6686 [ # # ]: 0 : if (loc != NULL)
6687 : 0 : snprintf (name, REGNAMESZ, "reg%u", loc->regno);
6688 : : else
6689 : 0 : snprintf (name, REGNAMESZ, "??? 0x%x", regno);
6690 [ # # ]: 0 : if (bits != NULL)
6691 [ # # ]: 0 : *bits = loc != NULL ? loc->bits : 0;
6692 [ # # ]: 0 : if (type != NULL)
6693 : 0 : *type = DW_ATE_unsigned;
6694 : 0 : set = "??? unrecognized";
6695 : : }
6696 : : else
6697 : : {
6698 [ + + - + ]: 33370 : if (bits != NULL && *bits <= 0)
6699 [ # # ]: 0 : *bits = loc != NULL ? loc->bits : 0;
6700 [ + + - + ]: 33370 : if (type != NULL && *type == DW_ATE_void)
6701 : 0 : *type = DW_ATE_unsigned;
6702 : :
6703 : : }
6704 : 33370 : return set;
6705 : : }
6706 : :
6707 : : static const unsigned char *
6708 : 328 : read_encoded (unsigned int encoding, const unsigned char *readp,
6709 : : const unsigned char *const endp, uint64_t *res, Dwarf *dbg)
6710 : : {
6711 [ - + ]: 328 : if ((encoding & 0xf) == DW_EH_PE_absptr)
6712 : 0 : encoding = gelf_getclass (dbg->elf) == ELFCLASS32
6713 [ # # ]: 0 : ? DW_EH_PE_udata4 : DW_EH_PE_udata8;
6714 : :
6715 [ - - - + : 328 : switch (encoding & 0xf)
- - + -
- ]
6716 : : {
6717 : 0 : case DW_EH_PE_uleb128:
6718 [ # # ]: 0 : if (readp >= endp)
6719 : 0 : goto invalid;
6720 : 0 : get_uleb128 (*res, readp, endp);
6721 : 0 : break;
6722 : 0 : case DW_EH_PE_sleb128:
6723 [ # # ]: 0 : if (readp >= endp)
6724 : 0 : goto invalid;
6725 : 0 : get_sleb128 (*res, readp, endp);
6726 : 0 : break;
6727 : 0 : case DW_EH_PE_udata2:
6728 [ # # ]: 0 : if (readp + 2 > endp)
6729 : 0 : goto invalid;
6730 [ # # ]: 0 : *res = read_2ubyte_unaligned_inc (dbg, readp);
6731 : 0 : break;
6732 : 164 : case DW_EH_PE_udata4:
6733 [ - + ]: 164 : if (readp + 4 > endp)
6734 : 0 : goto invalid;
6735 [ - + ]: 164 : *res = read_4ubyte_unaligned_inc (dbg, readp);
6736 : 164 : break;
6737 : 0 : case DW_EH_PE_udata8:
6738 [ # # ]: 0 : if (readp + 8 > endp)
6739 : 0 : goto invalid;
6740 [ # # ]: 0 : *res = read_8ubyte_unaligned_inc (dbg, readp);
6741 : 0 : break;
6742 : 0 : case DW_EH_PE_sdata2:
6743 [ # # ]: 0 : if (readp + 2 > endp)
6744 : 0 : goto invalid;
6745 [ # # ]: 0 : *res = read_2sbyte_unaligned_inc (dbg, readp);
6746 : 0 : break;
6747 : 164 : case DW_EH_PE_sdata4:
6748 [ - + ]: 164 : if (readp + 4 > endp)
6749 : 0 : goto invalid;
6750 [ - + ]: 164 : *res = read_4sbyte_unaligned_inc (dbg, readp);
6751 : 164 : break;
6752 : 0 : case DW_EH_PE_sdata8:
6753 [ # # ]: 0 : if (readp + 8 > endp)
6754 : 0 : goto invalid;
6755 [ # # ]: 0 : *res = read_8sbyte_unaligned_inc (dbg, readp);
6756 : 0 : break;
6757 : : default:
6758 : 0 : invalid:
6759 : 0 : error (1, 0,
6760 : 0 : _("invalid encoding"));
6761 : : }
6762 : :
6763 : 328 : return readp;
6764 : : }
6765 : :
6766 : : static const char *
6767 : 31674 : regname (Ebl *ebl, unsigned int regno, char *regnamebuf)
6768 : : {
6769 : 31674 : register_info (ebl, regno, NULL, regnamebuf, NULL, NULL);
6770 : :
6771 : 31674 : return regnamebuf;
6772 : : }
6773 : :
6774 : : static void
6775 : 22160 : print_cfa_program (const unsigned char *readp, const unsigned char *const endp,
6776 : : Dwarf_Word vma_base, unsigned int code_align,
6777 : : int data_align,
6778 : : unsigned int version, unsigned int ptr_size,
6779 : : unsigned int encoding,
6780 : : Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr, Dwarf *dbg)
6781 : : {
6782 : 22160 : char regnamebuf[REGNAMESZ];
6783 : :
6784 : 22160 : puts ("\n Program:");
6785 : 22160 : Dwarf_Word pc = vma_base;
6786 : 22160 : while (readp < endp)
6787 : : {
6788 : 302244 : unsigned int opcode = *readp++;
6789 : :
6790 [ + + ]: 302244 : if (opcode < DW_CFA_advance_loc)
6791 : : /* Extended opcode. */
6792 [ + - + + : 182172 : switch (opcode)
+ + - + -
- + + + +
+ + - + -
- - - - -
+ - - ]
6793 : : {
6794 : 63338 : uint64_t op1;
6795 : 63338 : int64_t sop1;
6796 : 63338 : uint64_t op2;
6797 : 63338 : int64_t sop2;
6798 : :
6799 : 63338 : case DW_CFA_nop:
6800 : 63338 : puts (" nop");
6801 : 63338 : break;
6802 : 0 : case DW_CFA_set_loc:
6803 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6804 : 0 : goto invalid;
6805 : 0 : readp = read_encoded (encoding, readp, endp, &op1, dbg);
6806 : 182172 : printf (" set_loc %#" PRIx64 " to %#" PRIx64 "\n",
6807 : 0 : op1, pc = vma_base + op1);
6808 : : break;
6809 : 6842 : case DW_CFA_advance_loc1:
6810 [ - + ]: 6842 : if ((uint64_t) (endp - readp) < 1)
6811 : 0 : goto invalid;
6812 : 13684 : printf (" advance_loc1 %u to %#" PRIx64 "\n",
6813 : 6842 : *readp, pc += *readp * code_align);
6814 : 6842 : ++readp;
6815 : 6842 : break;
6816 : 2332 : case DW_CFA_advance_loc2:
6817 [ - + ]: 2332 : if ((uint64_t) (endp - readp) < 2)
6818 : 0 : goto invalid;
6819 [ - + ]: 2332 : op1 = read_2ubyte_unaligned_inc (dbg, readp);
6820 : 184504 : printf (" advance_loc2 %" PRIu64 " to %#" PRIx64 "\n",
6821 : 2332 : op1, pc += op1 * code_align);
6822 : : break;
6823 : 36 : case DW_CFA_advance_loc4:
6824 [ - + ]: 36 : if ((uint64_t) (endp - readp) < 4)
6825 : 0 : goto invalid;
6826 [ + - ]: 36 : op1 = read_4ubyte_unaligned_inc (dbg, readp);
6827 : 182208 : printf (" advance_loc4 %" PRIu64 " to %#" PRIx64 "\n",
6828 : 36 : op1, pc += op1 * code_align);
6829 : : break;
6830 : 8 : case DW_CFA_offset_extended:
6831 [ - + ]: 8 : if ((uint64_t) (endp - readp) < 1)
6832 : 0 : goto invalid;
6833 : 8 : get_uleb128 (op1, readp, endp);
6834 [ - + ]: 8 : if ((uint64_t) (endp - readp) < 1)
6835 : 0 : goto invalid;
6836 : 8 : get_uleb128 (op2, readp, endp);
6837 : 8 : printf (" offset_extended r%" PRIu64 " (%s) at cfa%+" PRId64
6838 : : "\n",
6839 : : op1, regname (ebl, op1, regnamebuf), op2 * data_align);
6840 : : break;
6841 : 0 : case DW_CFA_restore_extended:
6842 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6843 : 0 : goto invalid;
6844 : 0 : get_uleb128 (op1, readp, endp);
6845 : 0 : printf (" restore_extended r%" PRIu64 " (%s)\n",
6846 : : op1, regname (ebl, op1, regnamebuf));
6847 : : break;
6848 : 130 : case DW_CFA_undefined:
6849 [ - + ]: 130 : if ((uint64_t) (endp - readp) < 1)
6850 : 0 : goto invalid;
6851 : 130 : get_uleb128 (op1, readp, endp);
6852 : 130 : printf (" undefined r%" PRIu64 " (%s)\n", op1,
6853 : : regname (ebl, op1, regnamebuf));
6854 : : break;
6855 : 0 : case DW_CFA_same_value:
6856 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6857 : 0 : goto invalid;
6858 : 0 : get_uleb128 (op1, readp, endp);
6859 : 0 : printf (" same_value r%" PRIu64 " (%s)\n", op1,
6860 : : regname (ebl, op1, regnamebuf));
6861 : : break;
6862 : 0 : case DW_CFA_register:
6863 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6864 : 0 : goto invalid;
6865 : 0 : get_uleb128 (op1, readp, endp);
6866 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6867 : 0 : goto invalid;
6868 : 0 : get_uleb128 (op2, readp, endp);
6869 : 0 : printf (" register r%" PRIu64 " (%s) in r%" PRIu64 " (%s)\n",
6870 : : op1, regname (ebl, op1, regnamebuf), op2,
6871 : : regname (ebl, op2, regnamebuf));
6872 : : break;
6873 : 11044 : case DW_CFA_remember_state:
6874 : 11044 : puts (" remember_state");
6875 : 11044 : break;
6876 : 11044 : case DW_CFA_restore_state:
6877 : 11044 : puts (" restore_state");
6878 : 11044 : break;
6879 : 460 : case DW_CFA_def_cfa:
6880 [ - + ]: 460 : if ((uint64_t) (endp - readp) < 1)
6881 : 0 : goto invalid;
6882 : 460 : get_uleb128 (op1, readp, endp);
6883 [ - + ]: 460 : if ((uint64_t) (endp - readp) < 1)
6884 : 0 : goto invalid;
6885 : 460 : get_uleb128 (op2, readp, endp);
6886 : 460 : printf (" def_cfa r%" PRIu64 " (%s) at offset %" PRIu64 "\n",
6887 : : op1, regname (ebl, op1, regnamebuf), op2);
6888 : : break;
6889 : 134 : case DW_CFA_def_cfa_register:
6890 [ - + ]: 134 : if ((uint64_t) (endp - readp) < 1)
6891 : 0 : goto invalid;
6892 : 134 : get_uleb128 (op1, readp, endp);
6893 : 134 : printf (" def_cfa_register r%" PRIu64 " (%s)\n",
6894 : : op1, regname (ebl, op1, regnamebuf));
6895 : : break;
6896 : 86634 : case DW_CFA_def_cfa_offset:
6897 [ - + ]: 86634 : if ((uint64_t) (endp - readp) < 1)
6898 : 0 : goto invalid;
6899 : 86634 : get_uleb128 (op1, readp, endp);
6900 : 86634 : printf (" def_cfa_offset %" PRIu64 "\n", op1);
6901 : : break;
6902 : 138 : case DW_CFA_def_cfa_expression:
6903 [ - + ]: 138 : if ((uint64_t) (endp - readp) < 1)
6904 : 0 : goto invalid;
6905 : 138 : get_uleb128 (op1, readp, endp); /* Length of DW_FORM_block. */
6906 : 138 : printf (" def_cfa_expression %" PRIu64 "\n", op1);
6907 [ - + ]: 138 : if ((uint64_t) (endp - readp) < op1)
6908 : : {
6909 : 0 : invalid:
6910 : 0 : fputs (_(" <INVALID DATA>\n"), stdout);
6911 : 0 : return;
6912 : : }
6913 : 138 : print_ops (dwflmod, dbg, 10, 10, version, ptr_size, 0, NULL,
6914 : : op1, readp);
6915 : 138 : readp += op1;
6916 : 138 : break;
6917 : 0 : case DW_CFA_expression:
6918 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6919 : 0 : goto invalid;
6920 : 0 : get_uleb128 (op1, readp, endp);
6921 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6922 : 0 : goto invalid;
6923 : 0 : get_uleb128 (op2, readp, endp); /* Length of DW_FORM_block. */
6924 : 0 : printf (" expression r%" PRIu64 " (%s) \n",
6925 : : op1, regname (ebl, op1, regnamebuf));
6926 [ # # ]: 0 : if ((uint64_t) (endp - readp) < op2)
6927 : 0 : goto invalid;
6928 : 0 : print_ops (dwflmod, dbg, 10, 10, version, ptr_size, 0, NULL,
6929 : : op2, readp);
6930 : 0 : readp += op2;
6931 : 0 : break;
6932 : 24 : case DW_CFA_offset_extended_sf:
6933 [ - + ]: 24 : if ((uint64_t) (endp - readp) < 1)
6934 : 0 : goto invalid;
6935 : 24 : get_uleb128 (op1, readp, endp);
6936 [ - + ]: 24 : if ((uint64_t) (endp - readp) < 1)
6937 : 0 : goto invalid;
6938 : 24 : get_sleb128 (sop2, readp, endp);
6939 : 24 : printf (" offset_extended_sf r%" PRIu64 " (%s) at cfa%+"
6940 : : PRId64 "\n",
6941 : : op1, regname (ebl, op1, regnamebuf), sop2 * data_align);
6942 : : break;
6943 : 0 : case DW_CFA_def_cfa_sf:
6944 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6945 : 0 : goto invalid;
6946 : 0 : get_uleb128 (op1, readp, endp);
6947 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6948 : 0 : goto invalid;
6949 : 0 : get_sleb128 (sop2, readp, endp);
6950 : 0 : printf (" def_cfa_sf r%" PRIu64 " (%s) at offset %" PRId64 "\n",
6951 : : op1, regname (ebl, op1, regnamebuf), sop2 * data_align);
6952 : : break;
6953 : 0 : case DW_CFA_def_cfa_offset_sf:
6954 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6955 : 0 : goto invalid;
6956 : 0 : get_sleb128 (sop1, readp, endp);
6957 : 0 : printf (" def_cfa_offset_sf %" PRId64 "\n", sop1 * data_align);
6958 : : break;
6959 : 0 : case DW_CFA_val_offset:
6960 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6961 : 0 : goto invalid;
6962 : 0 : get_uleb128 (op1, readp, endp);
6963 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6964 : 0 : goto invalid;
6965 : 0 : get_uleb128 (op2, readp, endp);
6966 : 0 : printf (" val_offset %" PRIu64 " at offset %" PRIu64 "\n",
6967 : : op1, op2 * data_align);
6968 : : break;
6969 : 0 : case DW_CFA_val_offset_sf:
6970 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6971 : 0 : goto invalid;
6972 : 0 : get_uleb128 (op1, readp, endp);
6973 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6974 : 0 : goto invalid;
6975 : 0 : get_sleb128 (sop2, readp, endp);
6976 : 0 : printf (" val_offset_sf %" PRIu64 " at offset %" PRId64 "\n",
6977 : : op1, sop2 * data_align);
6978 : : break;
6979 : 0 : case DW_CFA_val_expression:
6980 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6981 : 0 : goto invalid;
6982 : 0 : get_uleb128 (op1, readp, endp);
6983 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
6984 : 0 : goto invalid;
6985 : 0 : get_uleb128 (op2, readp, endp); /* Length of DW_FORM_block. */
6986 : 0 : printf (" val_expression r%" PRIu64 " (%s)\n",
6987 : : op1, regname (ebl, op1, regnamebuf));
6988 [ # # ]: 0 : if ((uint64_t) (endp - readp) < op2)
6989 : 0 : goto invalid;
6990 : 0 : print_ops (dwflmod, dbg, 10, 10, version, ptr_size, 0,
6991 : : NULL, op2, readp);
6992 : 0 : readp += op2;
6993 : 0 : break;
6994 : 0 : case DW_CFA_MIPS_advance_loc8:
6995 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 8)
6996 : 0 : goto invalid;
6997 [ # # ]: 0 : op1 = read_8ubyte_unaligned_inc (dbg, readp);
6998 : 182172 : printf (" MIPS_advance_loc8 %" PRIu64 " to %#" PRIx64 "\n",
6999 : 0 : op1, pc += op1 * code_align);
7000 : : break;
7001 : 8 : case DW_CFA_GNU_window_save: /* DW_CFA_AARCH64_negate_ra_state */
7002 [ + - ]: 8 : if (ehdr->e_machine == EM_AARCH64)
7003 : 8 : puts (" AARCH64_negate_ra_state");
7004 : : else
7005 : 0 : puts (" GNU_window_save");
7006 : : break;
7007 : 0 : case DW_CFA_GNU_args_size:
7008 [ # # ]: 0 : if ((uint64_t) (endp - readp) < 1)
7009 : 0 : goto invalid;
7010 : 0 : get_uleb128 (op1, readp, endp);
7011 : 0 : printf (" args_size %" PRIu64 "\n", op1);
7012 : : break;
7013 : : default:
7014 : 182172 : printf (" ??? (%u)\n", opcode);
7015 : : break;
7016 : : }
7017 [ + + ]: 120072 : else if (opcode < DW_CFA_offset)
7018 : 413558 : printf (" advance_loc %u to %#" PRIx64 "\n",
7019 : 89154 : opcode & 0x3f, pc += (opcode & 0x3f) * code_align);
7020 [ + + ]: 30918 : else if (opcode < DW_CFA_restore)
7021 : : {
7022 : 27556 : uint64_t offset;
7023 [ - + ]: 27556 : if ((uint64_t) (endp - readp) < 1)
7024 : 0 : goto invalid;
7025 : 27556 : get_uleb128 (offset, readp, endp);
7026 : 27556 : printf (" offset r%u (%s) at cfa%+" PRId64 "\n",
7027 : : opcode & 0x3f, regname (ebl, opcode & 0x3f, regnamebuf),
7028 : : offset * data_align);
7029 : : }
7030 : : else
7031 [ + + ]: 327766 : printf (" restore r%u (%s)\n",
7032 : : opcode & 0x3f, regname (ebl, opcode & 0x3f, regnamebuf));
7033 : : }
7034 : : }
7035 : :
7036 : :
7037 : : static unsigned int
7038 : 21814 : encoded_ptr_size (int encoding, unsigned int ptr_size)
7039 : : {
7040 [ - + - + ]: 21814 : switch (encoding & 7)
7041 : : {
7042 : : case DW_EH_PE_udata4:
7043 : : return 4;
7044 : 0 : case DW_EH_PE_udata8:
7045 : 0 : return 8;
7046 : : case 0:
7047 : : return ptr_size;
7048 : : }
7049 : :
7050 : 0 : fprintf (stderr, "Unsupported pointer encoding: %#x, "
7051 : : "assuming pointer size of %d.\n", encoding, ptr_size);
7052 : 0 : return ptr_size;
7053 : : }
7054 : :
7055 : :
7056 : : static unsigned int
7057 : 750 : print_encoding (unsigned int val)
7058 : : {
7059 [ - - - + : 750 : switch (val & 0xf)
- - - + -
- ]
7060 : : {
7061 : 0 : case DW_EH_PE_absptr:
7062 : 0 : fputs ("absptr", stdout);
7063 : 0 : break;
7064 : 0 : case DW_EH_PE_uleb128:
7065 : 0 : fputs ("uleb128", stdout);
7066 : 0 : break;
7067 : 0 : case DW_EH_PE_udata2:
7068 : 0 : fputs ("udata2", stdout);
7069 : 0 : break;
7070 : 164 : case DW_EH_PE_udata4:
7071 : 164 : fputs ("udata4", stdout);
7072 : 164 : break;
7073 : 0 : case DW_EH_PE_udata8:
7074 : 0 : fputs ("udata8", stdout);
7075 : 0 : break;
7076 : 0 : case DW_EH_PE_sleb128:
7077 : 0 : fputs ("sleb128", stdout);
7078 : 0 : break;
7079 : 0 : case DW_EH_PE_sdata2:
7080 : 0 : fputs ("sdata2", stdout);
7081 : 0 : break;
7082 : 586 : case DW_EH_PE_sdata4:
7083 : 586 : fputs ("sdata4", stdout);
7084 : 586 : break;
7085 : 0 : case DW_EH_PE_sdata8:
7086 : 0 : fputs ("sdata8", stdout);
7087 : 0 : break;
7088 : : default:
7089 : : /* We did not use any of the bits after all. */
7090 : : return val;
7091 : : }
7092 : :
7093 : 750 : return val & ~0xf;
7094 : : }
7095 : :
7096 : :
7097 : : static unsigned int
7098 : 586 : print_relinfo (unsigned int val)
7099 : : {
7100 [ + - + - : 586 : switch (val & 0x70)
- - ]
7101 : : {
7102 : 422 : case DW_EH_PE_pcrel:
7103 : 422 : fputs ("pcrel", stdout);
7104 : 422 : break;
7105 : 0 : case DW_EH_PE_textrel:
7106 : 0 : fputs ("textrel", stdout);
7107 : 0 : break;
7108 : 164 : case DW_EH_PE_datarel:
7109 : 164 : fputs ("datarel", stdout);
7110 : 164 : break;
7111 : 0 : case DW_EH_PE_funcrel:
7112 : 0 : fputs ("funcrel", stdout);
7113 : 0 : break;
7114 : 0 : case DW_EH_PE_aligned:
7115 : 0 : fputs ("aligned", stdout);
7116 : 0 : break;
7117 : : default:
7118 : : return val;
7119 : : }
7120 : :
7121 : 586 : return val & ~0x70;
7122 : : }
7123 : :
7124 : :
7125 : : static void
7126 : 750 : print_encoding_base (const char *pfx, unsigned int fde_encoding)
7127 : : {
7128 : 750 : printf ("(%s", pfx);
7129 : :
7130 [ - + ]: 750 : if (fde_encoding == DW_EH_PE_omit)
7131 : 0 : puts ("omit)");
7132 : : else
7133 : : {
7134 : 750 : unsigned int w = fde_encoding;
7135 : :
7136 : 750 : w = print_encoding (w);
7137 : :
7138 [ + + ]: 750 : if (w & 0x70)
7139 : : {
7140 [ + - ]: 586 : if (w != fde_encoding)
7141 [ - + ]: 586 : fputc_unlocked (' ', stdout);
7142 : :
7143 : 586 : w = print_relinfo (w);
7144 : : }
7145 : :
7146 [ - + ]: 750 : if (w != 0)
7147 [ # # ]: 0 : printf ("%s%x", w != fde_encoding ? " " : "", w);
7148 : :
7149 : 750 : puts (")");
7150 : : }
7151 : 750 : }
7152 : :
7153 : :
7154 : : static void
7155 : 220 : print_debug_frame_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr,
7156 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
7157 : : {
7158 : 220 : size_t shstrndx;
7159 : : /* We know this call will succeed since it did in the caller. */
7160 : 220 : (void) elf_getshdrstrndx (ebl->elf, &shstrndx);
7161 : 220 : const char *scnname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name);
7162 : :
7163 : : /* Needed if we find PC-relative addresses. */
7164 : 220 : GElf_Addr bias;
7165 [ - + ]: 220 : if (dwfl_module_getelf (dwflmod, &bias) == NULL)
7166 : : {
7167 : 0 : error (0, 0, _("cannot get ELF: %s"), dwfl_errmsg (-1));
7168 : 0 : return;
7169 : : }
7170 : :
7171 : 220 : bool is_eh_frame = strcmp (scnname, ".eh_frame") == 0;
7172 : 220 : Elf_Data *data;
7173 [ + + ]: 220 : if (is_eh_frame)
7174 : : {
7175 : 168 : data = elf_rawdata (scn, NULL);
7176 [ - + ]: 168 : if (data == NULL)
7177 : : {
7178 : 0 : error (0, 0, _("cannot get %s content: %s"),
7179 : : scnname, elf_errmsg (-1));
7180 : 0 : return;
7181 : : }
7182 : : }
7183 : : else
7184 : : {
7185 : 52 : data = get_debug_elf_data (dbg, ebl, IDX_debug_frame, scn);
7186 [ + - ]: 52 : if (data == NULL)
7187 : : return;
7188 : : }
7189 : :
7190 [ + + ]: 220 : if (is_eh_frame)
7191 : 168 : printf (_("\
7192 : : \nCall frame information section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
7193 : 168 : elf_ndxscn (scn), scnname, (uint64_t) shdr->sh_offset);
7194 : : else
7195 : 52 : printf (_("\
7196 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
7197 : 52 : elf_ndxscn (scn), scnname, (uint64_t) shdr->sh_offset);
7198 : :
7199 : 220 : struct cieinfo
7200 : : {
7201 : : ptrdiff_t cie_offset;
7202 : : const char *augmentation;
7203 : : unsigned int code_alignment_factor;
7204 : : unsigned int data_alignment_factor;
7205 : : uint8_t address_size;
7206 : : uint8_t fde_encoding;
7207 : : uint8_t lsda_encoding;
7208 : : struct cieinfo *next;
7209 : 220 : } *cies = NULL;
7210 : :
7211 : 220 : const unsigned char *readp = data->d_buf;
7212 : 220 : const unsigned char *const dataend = ((unsigned char *) data->d_buf
7213 : 220 : + data->d_size);
7214 [ + + ]: 22544 : while (readp < dataend)
7215 : : {
7216 [ - + ]: 22324 : if (unlikely (readp + 4 > dataend))
7217 : : {
7218 : 0 : invalid_data:
7219 : 0 : error (0, 0, _("invalid data in section [%zu] '%s'"),
7220 : : elf_ndxscn (scn), scnname);
7221 : 0 : return;
7222 : : }
7223 : :
7224 : : /* At the beginning there must be a CIE. There can be multiple,
7225 : : hence we test tis in a loop. */
7226 : 22324 : ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
7227 : :
7228 [ + + ]: 22324 : Dwarf_Word unit_length = read_4ubyte_unaligned_inc (dbg, readp);
7229 : 22324 : unsigned int length = 4;
7230 [ - + ]: 22324 : if (unlikely (unit_length == 0xffffffff))
7231 : : {
7232 [ # # ]: 0 : if (unlikely (readp + 8 > dataend))
7233 : 0 : goto invalid_data;
7234 : :
7235 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, readp);
7236 : 0 : length = 8;
7237 : : }
7238 : :
7239 [ + + ]: 22324 : if (unlikely (unit_length == 0))
7240 : : {
7241 : 164 : printf (_("\n [%6tx] Zero terminator\n"), offset);
7242 : 164 : continue;
7243 : : }
7244 : :
7245 : 22160 : Dwarf_Word maxsize = dataend - readp;
7246 [ - + ]: 22160 : if (unlikely (unit_length > maxsize))
7247 : 0 : goto invalid_data;
7248 : :
7249 [ + + ]: 22160 : unsigned int ptr_size = ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
7250 : :
7251 : 22160 : ptrdiff_t start = readp - (unsigned char *) data->d_buf;
7252 : 22160 : const unsigned char *const cieend = readp + unit_length;
7253 [ - + ]: 22160 : if (unlikely (cieend > dataend))
7254 : 0 : goto invalid_data;
7255 : :
7256 : 22160 : Dwarf_Off cie_id;
7257 [ + - ]: 22160 : if (length == 4)
7258 : : {
7259 [ - + ]: 22160 : if (unlikely (cieend - readp < 4))
7260 : 0 : goto invalid_data;
7261 [ + + ]: 22160 : cie_id = read_4ubyte_unaligned_inc (dbg, readp);
7262 [ + + ]: 22160 : if (!is_eh_frame && cie_id == DW_CIE_ID_32)
7263 : : cie_id = DW_CIE_ID_64;
7264 : : }
7265 : : else
7266 : : {
7267 [ # # ]: 0 : if (unlikely (cieend - readp < 8))
7268 : 0 : goto invalid_data;
7269 [ # # ]: 0 : cie_id = read_8ubyte_unaligned_inc (dbg, readp);
7270 : : }
7271 : :
7272 : 44236 : uint_fast8_t version = 2;
7273 : 22076 : unsigned int code_alignment_factor;
7274 : 22076 : int data_alignment_factor;
7275 : 44236 : unsigned int fde_encoding = 0;
7276 : 44236 : unsigned int lsda_encoding = 0;
7277 : 44236 : Dwarf_Word initial_location = 0;
7278 : 44236 : Dwarf_Word vma_base = 0;
7279 : :
7280 [ + + + + ]: 22252 : if (cie_id == (is_eh_frame ? 0 : DW_CIE_ID_64))
7281 : : {
7282 [ - + ]: 346 : if (unlikely (cieend - readp < 2))
7283 : 0 : goto invalid_data;
7284 : 346 : version = *readp++;
7285 : 346 : const char *const augmentation = (const char *) readp;
7286 : 346 : readp = memchr (readp, '\0', cieend - readp);
7287 [ - + ]: 346 : if (unlikely (readp == NULL))
7288 : 0 : goto invalid_data;
7289 : 346 : ++readp;
7290 : :
7291 : 346 : uint_fast8_t segment_size = 0;
7292 [ + + ]: 346 : if (version >= 4)
7293 : : {
7294 [ - + ]: 8 : if (cieend - readp < 5)
7295 : 0 : goto invalid_data;
7296 : 8 : ptr_size = *readp++;
7297 : 8 : segment_size = *readp++;
7298 : : }
7299 : :
7300 [ - + ]: 346 : if (cieend - readp < 1)
7301 : 0 : goto invalid_data;
7302 : 346 : get_uleb128 (code_alignment_factor, readp, cieend);
7303 [ - + ]: 346 : if (cieend - readp < 1)
7304 : 0 : goto invalid_data;
7305 : 346 : get_sleb128 (data_alignment_factor, readp, cieend);
7306 : :
7307 : : /* In some variant for unwind data there is another field. */
7308 [ - + ]: 346 : if (strcmp (augmentation, "eh") == 0)
7309 [ # # ]: 0 : readp += ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
7310 : :
7311 : 346 : unsigned int return_address_register;
7312 [ - + ]: 346 : if (cieend - readp < 1)
7313 : 0 : goto invalid_data;
7314 [ + + ]: 346 : if (unlikely (version == 1))
7315 : 322 : return_address_register = *readp++;
7316 : : else
7317 : 24 : get_uleb128 (return_address_register, readp, cieend);
7318 : :
7319 : 346 : printf ("\n [%6tx] CIE length=%" PRIu64 "\n"
7320 : : " CIE_id: %" PRIu64 "\n"
7321 : : " version: %u\n"
7322 : : " augmentation: \"%s\"\n",
7323 : : offset, (uint64_t) unit_length, (uint64_t) cie_id,
7324 : : version, augmentation);
7325 [ + + ]: 346 : if (version >= 4)
7326 : 8 : printf (" address_size: %u\n"
7327 : : " segment_size: %u\n",
7328 : : ptr_size, segment_size);
7329 : 346 : printf (" code_alignment_factor: %u\n"
7330 : : " data_alignment_factor: %d\n"
7331 : : " return_address_register: %u\n",
7332 : : code_alignment_factor,
7333 : : data_alignment_factor, return_address_register);
7334 : :
7335 [ + + ]: 346 : if (augmentation[0] == 'z')
7336 : : {
7337 [ - + ]: 258 : if (cieend - readp < 1)
7338 : 0 : goto invalid_data;
7339 : :
7340 : 258 : unsigned int augmentationlen;
7341 : 258 : get_uleb128 (augmentationlen, readp, cieend);
7342 : :
7343 [ - + ]: 258 : if (augmentationlen > (size_t) (cieend - readp))
7344 : : {
7345 : 0 : error (0, 0, _("invalid augmentation length"));
7346 : 0 : readp = cieend;
7347 : 0 : continue;
7348 : : }
7349 : :
7350 : 258 : const char *hdr = "Augmentation data:";
7351 : 258 : const char *cp = augmentation + 1;
7352 [ + + + - ]: 516 : while (*cp != '\0' && cp < augmentation + augmentationlen + 1)
7353 : : {
7354 : 258 : printf (" %-26s%#x ", hdr, *readp);
7355 : 258 : hdr = "";
7356 : :
7357 [ + - ]: 258 : if (*cp == 'R')
7358 : : {
7359 : 258 : fde_encoding = *readp++;
7360 : 258 : print_encoding_base (_("FDE address encoding: "),
7361 : : fde_encoding);
7362 : : }
7363 [ # # ]: 0 : else if (*cp == 'L')
7364 : : {
7365 : 0 : lsda_encoding = *readp++;
7366 : 0 : print_encoding_base (_("LSDA pointer encoding: "),
7367 : : lsda_encoding);
7368 : : }
7369 [ # # ]: 0 : else if (*cp == 'P')
7370 : : {
7371 : : /* Personality. This field usually has a relocation
7372 : : attached pointing to __gcc_personality_v0. */
7373 : 0 : const unsigned char *startp = readp;
7374 : 0 : unsigned int encoding = *readp++;
7375 : 0 : uint64_t val = 0;
7376 : 0 : readp = read_encoded (encoding, readp,
7377 : : readp - 1 + augmentationlen,
7378 : : &val, dbg);
7379 : :
7380 : 0 : while (++startp < readp)
7381 [ # # ]: 0 : printf ("%#x ", *startp);
7382 : :
7383 : 0 : putchar ('(');
7384 : 0 : print_encoding (encoding);
7385 : 0 : putchar (' ');
7386 [ # # ]: 0 : switch (encoding & 0xf)
7387 : : {
7388 : 0 : case DW_EH_PE_sleb128:
7389 : : case DW_EH_PE_sdata2:
7390 : : case DW_EH_PE_sdata4:
7391 : 0 : printf ("%" PRId64 ")\n", val);
7392 : : break;
7393 : 0 : default:
7394 : 0 : printf ("%#" PRIx64 ")\n", val);
7395 : : break;
7396 : : }
7397 : : }
7398 : : else
7399 : 0 : printf ("(%x)\n", *readp++);
7400 : :
7401 : 258 : ++cp;
7402 : : }
7403 : : }
7404 : :
7405 [ + - ]: 346 : if (likely (ptr_size == 4 || ptr_size == 8))
7406 : : {
7407 : 346 : struct cieinfo *newp = alloca (sizeof (*newp));
7408 : 346 : newp->cie_offset = offset;
7409 : 346 : newp->augmentation = augmentation;
7410 : 346 : newp->fde_encoding = fde_encoding;
7411 : 346 : newp->lsda_encoding = lsda_encoding;
7412 : 346 : newp->address_size = ptr_size;
7413 : 346 : newp->code_alignment_factor = code_alignment_factor;
7414 : 346 : newp->data_alignment_factor = data_alignment_factor;
7415 : 346 : newp->next = cies;
7416 : 346 : cies = newp;
7417 : : }
7418 : : }
7419 : : else
7420 : : {
7421 : : struct cieinfo *cie = cies;
7422 [ + - ]: 21814 : while (cie != NULL)
7423 [ + + - + ]: 43628 : if (is_eh_frame
7424 : 21722 : ? ((Dwarf_Off) start - cie_id) == (Dwarf_Off) cie->cie_offset
7425 : 92 : : cie_id == (Dwarf_Off) cie->cie_offset)
7426 : : break;
7427 : : else
7428 : 0 : cie = cie->next;
7429 [ - + ]: 21814 : if (unlikely (cie == NULL))
7430 : : {
7431 : 0 : puts ("invalid CIE reference in FDE");
7432 : 0 : return;
7433 : : }
7434 : :
7435 : : /* Initialize from CIE data. */
7436 : 21814 : fde_encoding = cie->fde_encoding;
7437 : 21814 : lsda_encoding = cie->lsda_encoding;
7438 : 21814 : ptr_size = encoded_ptr_size (fde_encoding, cie->address_size);
7439 : 21814 : code_alignment_factor = cie->code_alignment_factor;
7440 : 21814 : data_alignment_factor = cie->data_alignment_factor;
7441 : :
7442 : 21814 : const unsigned char *base = readp;
7443 : : // XXX There are sometimes relocations for this value
7444 [ - + + + : 21814 : initial_location = read_addr_unaligned_inc (ptr_size, dbg, readp);
- + + + ]
7445 : 43628 : Dwarf_Word address_range
7446 [ + + - + : 21814 : = read_addr_unaligned_inc (ptr_size, dbg, readp);
+ + ]
7447 : :
7448 : : /* pcrel for an FDE address is relative to the runtime
7449 : : address of the start_address field itself. Sign extend
7450 : : if necessary to make sure the calculation is done on the
7451 : : full 64 bit address even when initial_location only holds
7452 : : the lower 32 bits. */
7453 : 21814 : Dwarf_Addr pc_start = initial_location;
7454 [ + + ]: 21814 : if (ptr_size == 4)
7455 : 21734 : pc_start = (uint64_t) (int32_t) pc_start;
7456 [ + + ]: 21814 : if ((fde_encoding & 0x70) == DW_EH_PE_pcrel)
7457 : 21710 : pc_start += ((uint64_t) shdr->sh_addr
7458 : 21710 : + (base - (const unsigned char *) data->d_buf)
7459 : 21710 : - bias);
7460 : :
7461 : 21814 : printf ("\n [%6tx] FDE length=%" PRIu64 " cie=[%6tx]\n"
7462 : : " CIE_pointer: %" PRIu64 "\n"
7463 : : " initial_location: ",
7464 : : offset, (uint64_t) unit_length,
7465 : : cie->cie_offset, (uint64_t) cie_id);
7466 : 21814 : print_dwarf_addr (dwflmod, cie->address_size,
7467 : : pc_start, initial_location);
7468 [ + + ]: 21814 : if ((fde_encoding & 0x70) == DW_EH_PE_pcrel)
7469 : : {
7470 : 43420 : vma_base = (((uint64_t) shdr->sh_offset
7471 : 21710 : + (base - (const unsigned char *) data->d_buf)
7472 : 21710 : + (uint64_t) initial_location)
7473 : : & (ptr_size == 4
7474 : : ? UINT64_C (0xffffffff)
7475 [ - + ]: 21710 : : UINT64_C (0xffffffffffffffff)));
7476 : 21710 : printf (_(" (offset: %#" PRIx64 ")"),
7477 : : (uint64_t) vma_base);
7478 : : }
7479 : :
7480 : 21814 : printf ("\n address_range: %#" PRIx64,
7481 : : (uint64_t) address_range);
7482 [ + + ]: 21814 : if ((fde_encoding & 0x70) == DW_EH_PE_pcrel)
7483 : 21710 : printf (_(" (end offset: %#" PRIx64 ")"),
7484 : 21710 : ((uint64_t) vma_base + (uint64_t) address_range)
7485 : : & (ptr_size == 4
7486 : : ? UINT64_C (0xffffffff)
7487 [ - + ]: 21710 : : UINT64_C (0xffffffffffffffff)));
7488 : 21814 : putchar ('\n');
7489 : :
7490 [ + + ]: 21814 : if (cie->augmentation[0] == 'z')
7491 : : {
7492 : 21710 : unsigned int augmentationlen;
7493 [ - + ]: 21710 : if (cieend - readp < 1)
7494 : 0 : goto invalid_data;
7495 : 21710 : get_uleb128 (augmentationlen, readp, cieend);
7496 : :
7497 [ - + ]: 21710 : if (augmentationlen > (size_t) (cieend - readp))
7498 : : {
7499 : 0 : error (0, 0, _("invalid augmentation length"));
7500 : 0 : readp = cieend;
7501 : 0 : continue;
7502 : : }
7503 : :
7504 [ - + ]: 21710 : if (augmentationlen > 0)
7505 : : {
7506 : 0 : const char *hdr = "Augmentation data:";
7507 : 0 : const char *cp = cie->augmentation + 1;
7508 : 0 : unsigned int u = 0;
7509 : 0 : while (*cp != '\0'
7510 [ # # # # ]: 0 : && cp < cie->augmentation + augmentationlen + 1)
7511 : : {
7512 [ # # ]: 0 : if (*cp == 'L')
7513 : : {
7514 : 0 : uint64_t lsda_pointer;
7515 : 0 : const unsigned char *p
7516 : 0 : = read_encoded (lsda_encoding, &readp[u],
7517 : : &readp[augmentationlen],
7518 : : &lsda_pointer, dbg);
7519 : 0 : u = p - readp;
7520 : 0 : printf (_("\
7521 : : %-26sLSDA pointer: %#" PRIx64 "\n"),
7522 : : hdr, lsda_pointer);
7523 : 0 : hdr = "";
7524 : : }
7525 : 0 : ++cp;
7526 : : }
7527 : :
7528 [ # # ]: 0 : while (u < augmentationlen)
7529 : : {
7530 : 0 : printf (" %-26s%#x\n", hdr, readp[u++]);
7531 : 0 : hdr = "";
7532 : : }
7533 : : }
7534 : :
7535 : 21710 : readp += augmentationlen;
7536 : : }
7537 : : }
7538 : :
7539 : : /* Handle the initialization instructions. */
7540 [ - + ]: 22160 : if (ptr_size != 4 && ptr_size !=8)
7541 : 0 : printf ("invalid CIE pointer size (%u), must be 4 or 8.\n", ptr_size);
7542 : : else
7543 : 22160 : print_cfa_program (readp, cieend, vma_base, code_alignment_factor,
7544 : : data_alignment_factor, version, ptr_size,
7545 : : fde_encoding, dwflmod, ebl, ehdr, dbg);
7546 : 22160 : readp = cieend;
7547 : : }
7548 : : }
7549 : :
7550 : :
7551 : : /* Returns the signedness (or false if it cannot be determined) and
7552 : : the byte size (or zero if it cannot be gotten) of the given DIE
7553 : : DW_AT_type attribute. Uses dwarf_peel_type and dwarf_aggregate_size. */
7554 : : static void
7555 : 344414 : die_type_sign_bytes (Dwarf_Die *die, bool *is_signed, int *bytes)
7556 : : {
7557 : 344414 : Dwarf_Attribute attr;
7558 : 344414 : Dwarf_Die type;
7559 : :
7560 : 344414 : *bytes = 0;
7561 : 344414 : *is_signed = false;
7562 : :
7563 [ + + ]: 344414 : if (dwarf_peel_type (dwarf_formref_die (dwarf_attr_integrate (die,
7564 : : DW_AT_type,
7565 : : &attr), &type),
7566 : : &type) == 0)
7567 : : {
7568 : 896 : Dwarf_Word val;
7569 : 896 : *is_signed = (dwarf_formudata (dwarf_attr (&type, DW_AT_encoding,
7570 : : &attr), &val) == 0
7571 [ + + + + ]: 896 : && (val == DW_ATE_signed || val == DW_ATE_signed_char));
7572 : :
7573 [ + - ]: 896 : if (dwarf_aggregate_size (&type, &val) == 0)
7574 : 896 : *bytes = val;
7575 : : }
7576 : 344414 : }
7577 : :
7578 : : struct attrcb_args
7579 : : {
7580 : : Dwfl_Module *dwflmod;
7581 : : Dwarf *dbg;
7582 : : Dwarf_Die *dies;
7583 : : int level;
7584 : : bool silent;
7585 : : bool is_split;
7586 : : unsigned int version;
7587 : : unsigned int addrsize;
7588 : : unsigned int offset_size;
7589 : : struct Dwarf_CU *cu;
7590 : : };
7591 : :
7592 : :
7593 : : static int
7594 : 7832174 : attr_callback (Dwarf_Attribute *attrp, void *arg)
7595 : : {
7596 : 7832174 : struct attrcb_args *cbargs = (struct attrcb_args *) arg;
7597 : 7832174 : const int level = cbargs->level;
7598 : 7832174 : Dwarf_Die *die = &cbargs->dies[level];
7599 : 7832174 : bool is_split = cbargs->is_split;
7600 : :
7601 [ + - ]: 7832174 : unsigned int attr = dwarf_whatattr (attrp);
7602 [ - + ]: 7832174 : if (unlikely (attr == 0))
7603 : : {
7604 [ # # ]: 0 : if (!cbargs->silent)
7605 : 0 : error (0, 0, _("DIE [%" PRIx64 "] "
7606 : : "cannot get attribute code: %s"),
7607 : : dwarf_dieoffset (die), dwarf_errmsg (-1));
7608 : 0 : return DWARF_CB_ABORT;
7609 : : }
7610 : :
7611 [ + - ]: 7832174 : unsigned int form = dwarf_whatform (attrp);
7612 [ - + ]: 7832174 : if (unlikely (form == 0))
7613 : : {
7614 [ # # ]: 0 : if (!cbargs->silent)
7615 : 0 : error (0, 0, _("DIE [%" PRIx64 "] "
7616 : : "cannot get attribute form: %s"),
7617 : : dwarf_dieoffset (die), dwarf_errmsg (-1));
7618 : 0 : return DWARF_CB_ABORT;
7619 : : }
7620 : :
7621 [ + + + + : 7832174 : switch (form)
+ + + +
- ]
7622 : : {
7623 : 100594 : case DW_FORM_addr:
7624 : : case DW_FORM_addrx:
7625 : : case DW_FORM_addrx1:
7626 : : case DW_FORM_addrx2:
7627 : : case DW_FORM_addrx3:
7628 : : case DW_FORM_addrx4:
7629 : : case DW_FORM_GNU_addr_index:
7630 [ + + ]: 100594 : if (!cbargs->silent)
7631 : : {
7632 : 100052 : Dwarf_Addr addr;
7633 [ - + ]: 100052 : if (unlikely (dwarf_formaddr (attrp, &addr) != 0))
7634 : : {
7635 : 0 : attrval_out:
7636 [ # # ]: 0 : if (!cbargs->silent)
7637 : 0 : error (0, 0, _("DIE [%" PRIx64 "] "
7638 : : "cannot get attribute '%s' (%s) value: "
7639 : : "%s"),
7640 : : dwarf_dieoffset (die),
7641 : : dwarf_attr_name (attr),
7642 : : dwarf_form_name (form),
7643 : : dwarf_errmsg (-1));
7644 : : /* Don't ABORT, it might be other attributes can be resolved. */
7645 : 0 : return DWARF_CB_OK;
7646 : : }
7647 [ + + ]: 100052 : if (form != DW_FORM_addr )
7648 : : {
7649 : 40 : Dwarf_Word word;
7650 [ - + ]: 40 : if (dwarf_formudata (attrp, &word) != 0)
7651 : 0 : goto attrval_out;
7652 : 40 : printf (" %*s%-20s (%s) [%" PRIx64 "] ",
7653 : : (int) (level * 2), "", dwarf_attr_name (attr),
7654 : : dwarf_form_name (form), word);
7655 : : }
7656 : : else
7657 : 100012 : printf (" %*s%-20s (%s) ",
7658 : : (int) (level * 2), "", dwarf_attr_name (attr),
7659 : : dwarf_form_name (form));
7660 : 100052 : print_dwarf_addr (cbargs->dwflmod, cbargs->addrsize, addr, addr);
7661 : 100052 : printf ("\n");
7662 : : }
7663 : 7043386 : break;
7664 : :
7665 : 1295456 : case DW_FORM_indirect:
7666 : : case DW_FORM_strp:
7667 : : case DW_FORM_line_strp:
7668 : : case DW_FORM_strx:
7669 : : case DW_FORM_strx1:
7670 : : case DW_FORM_strx2:
7671 : : case DW_FORM_strx3:
7672 : : case DW_FORM_strx4:
7673 : : case DW_FORM_string:
7674 : : case DW_FORM_GNU_strp_alt:
7675 : : case DW_FORM_GNU_str_index:
7676 [ + + ]: 1295456 : if (cbargs->silent)
7677 : : break;
7678 : 1293946 : const char *str = dwarf_formstring (attrp);
7679 [ - + ]: 1293946 : if (unlikely (str == NULL))
7680 : 0 : goto attrval_out;
7681 : 1293946 : printf (" %*s%-20s (%s) \"%s\"\n",
7682 : : (int) (level * 2), "", dwarf_attr_name (attr),
7683 : : dwarf_form_name (form), str);
7684 : : break;
7685 : :
7686 : 1700554 : case DW_FORM_ref_addr:
7687 : : case DW_FORM_ref_udata:
7688 : : case DW_FORM_ref8:
7689 : : case DW_FORM_ref4:
7690 : : case DW_FORM_ref2:
7691 : : case DW_FORM_ref1:
7692 : : case DW_FORM_GNU_ref_alt:
7693 : : case DW_FORM_ref_sup4:
7694 : : case DW_FORM_ref_sup8:
7695 [ + + ]: 1700554 : if (cbargs->silent)
7696 : : break;
7697 : 1698974 : Dwarf_Die ref;
7698 [ - + ]: 1698974 : if (unlikely (dwarf_formref_die (attrp, &ref) == NULL))
7699 : 0 : goto attrval_out;
7700 : :
7701 : 1698974 : printf (" %*s%-20s (%s) ",
7702 : : (int) (level * 2), "", dwarf_attr_name (attr),
7703 : : dwarf_form_name (form));
7704 [ + + ]: 1698974 : if (is_split)
7705 : 66 : printf ("{%6" PRIxMAX "}\n", (uintmax_t) dwarf_dieoffset (&ref));
7706 : : else
7707 : 1698908 : printf ("[%6" PRIxMAX "]\n", (uintmax_t) dwarf_dieoffset (&ref));
7708 : : break;
7709 : :
7710 : 8 : case DW_FORM_ref_sig8:
7711 [ + - ]: 8 : if (cbargs->silent)
7712 : : break;
7713 : 8 : printf (" %*s%-20s (%s) {%6" PRIx64 "}\n",
7714 : : (int) (level * 2), "", dwarf_attr_name (attr),
7715 : : dwarf_form_name (form),
7716 [ - + ]: 8 : (uint64_t) read_8ubyte_unaligned (attrp->cu->dbg, attrp->valp));
7717 : : break;
7718 : :
7719 : 4344346 : case DW_FORM_sec_offset:
7720 : : case DW_FORM_rnglistx:
7721 : : case DW_FORM_loclistx:
7722 : : case DW_FORM_implicit_const:
7723 : : case DW_FORM_udata:
7724 : : case DW_FORM_sdata:
7725 : : case DW_FORM_data8: /* Note no data16 here, we see that as block. */
7726 : : case DW_FORM_data4:
7727 : : case DW_FORM_data2:
7728 : 4344346 : case DW_FORM_data1:;
7729 : 4344346 : Dwarf_Word num;
7730 [ - + ]: 4344346 : if (unlikely (dwarf_formudata (attrp, &num) != 0))
7731 : 0 : goto attrval_out;
7732 : :
7733 : 4344346 : const char *valuestr = NULL;
7734 : 4344346 : bool as_hex_id = false;
7735 [ + + + + : 4344346 : switch (attr)
+ + + + +
- - - - -
- + - + +
+ ]
7736 : : {
7737 : : /* This case can take either a constant or a loclistptr. */
7738 : 538918 : case DW_AT_data_member_location:
7739 [ + - ]: 538918 : if (form != DW_FORM_sec_offset
7740 [ + + ]: 538918 : && (cbargs->version >= 4
7741 [ + - ]: 47612 : || (form != DW_FORM_data4 && form != DW_FORM_data8)))
7742 : : {
7743 [ + - ]: 538918 : if (!cbargs->silent)
7744 : 538918 : printf (" %*s%-20s (%s) %" PRIuMAX "\n",
7745 : : (int) (level * 2), "", dwarf_attr_name (attr),
7746 : : dwarf_form_name (form), (uintmax_t) num);
7747 : 538918 : return DWARF_CB_OK;
7748 : : }
7749 : 216614 : FALLTHROUGH;
7750 : :
7751 : : /* These cases always take a loclist[ptr] and no constant. */
7752 : : case DW_AT_location:
7753 : : case DW_AT_data_location:
7754 : : case DW_AT_vtable_elem_location:
7755 : : case DW_AT_string_length:
7756 : : case DW_AT_use_location:
7757 : : case DW_AT_frame_base:
7758 : : case DW_AT_return_addr:
7759 : : case DW_AT_static_link:
7760 : : case DW_AT_segment:
7761 : : case DW_AT_GNU_call_site_value:
7762 : : case DW_AT_GNU_call_site_data_value:
7763 : : case DW_AT_GNU_call_site_target:
7764 : : case DW_AT_GNU_call_site_target_clobbered:
7765 : : case DW_AT_GNU_locviews:
7766 : : {
7767 : 216614 : bool nlpt;
7768 [ + + ]: 216614 : if (cbargs->cu->version < 5)
7769 : : {
7770 [ + + ]: 324 : if (! cbargs->is_split)
7771 : : {
7772 : 284 : nlpt = notice_listptr (section_loc, &known_locsptr,
7773 : 284 : cbargs->addrsize,
7774 : 284 : cbargs->offset_size,
7775 : : cbargs->cu, num, attr);
7776 : : }
7777 : : else
7778 : : nlpt = true;
7779 : : }
7780 : : else
7781 : : {
7782 : : /* Only register for a real section offset. Otherwise
7783 : : it is a DW_FORM_loclistx which is just an index
7784 : : number and we should already have registered the
7785 : : section offset for the index when we saw the
7786 : : DW_AT_loclists_base CU attribute. */
7787 [ + + ]: 216290 : if (form == DW_FORM_sec_offset)
7788 : 216212 : nlpt = notice_listptr (section_loc, &known_loclistsptr,
7789 : 216212 : cbargs->addrsize, cbargs->offset_size,
7790 : : cbargs->cu, num, attr);
7791 : : else
7792 : : nlpt = true;
7793 : :
7794 : : }
7795 : :
7796 [ + + ]: 216614 : if (!cbargs->silent)
7797 : : {
7798 [ + + + + ]: 216248 : if (cbargs->cu->version < 5 || form == DW_FORM_sec_offset)
7799 [ - + ]: 216234 : printf (" %*s%-20s (%s) location list [%6"
7800 : : PRIxMAX "]%s\n",
7801 : : (int) (level * 2), "", dwarf_attr_name (attr),
7802 : : dwarf_form_name (form), (uintmax_t) num,
7803 : : nlpt ? "" : " <WARNING offset too big>");
7804 : : else
7805 : 14 : printf (" %*s%-20s (%s) location index [%6"
7806 : : PRIxMAX "]\n",
7807 : : (int) (level * 2), "", dwarf_attr_name (attr),
7808 : : dwarf_form_name (form), (uintmax_t) num);
7809 : : }
7810 : : }
7811 : : return DWARF_CB_OK;
7812 : :
7813 : 10 : case DW_AT_loclists_base:
7814 : : {
7815 : 20 : bool nlpt = notice_listptr (section_loc, &known_loclistsptr,
7816 : 10 : cbargs->addrsize, cbargs->offset_size,
7817 : : cbargs->cu, num, attr);
7818 : :
7819 [ + + ]: 10 : if (!cbargs->silent)
7820 [ - + ]: 2 : printf (" %*s%-20s (%s) location list [%6" PRIxMAX "]%s\n",
7821 : : (int) (level * 2), "", dwarf_attr_name (attr),
7822 : : dwarf_form_name (form), (uintmax_t) num,
7823 : : nlpt ? "" : " <WARNING offset too big>");
7824 : : }
7825 : : return DWARF_CB_OK;
7826 : :
7827 : 33196 : case DW_AT_ranges:
7828 : : case DW_AT_start_scope:
7829 : : {
7830 : 33196 : bool nlpt;
7831 [ + + ]: 33196 : if (cbargs->cu->version < 5)
7832 : 106 : nlpt = notice_listptr (section_ranges, &known_rangelistptr,
7833 : 106 : cbargs->addrsize, cbargs->offset_size,
7834 : : cbargs->cu, num, attr);
7835 : : else
7836 : : {
7837 : : /* Only register for a real section offset. Otherwise
7838 : : it is a DW_FORM_rangelistx which is just an index
7839 : : number and we should already have registered the
7840 : : section offset for the index when we saw the
7841 : : DW_AT_rnglists_base CU attribute. */
7842 [ + + ]: 33090 : if (form == DW_FORM_sec_offset)
7843 : 33078 : nlpt = notice_listptr (section_ranges, &known_rnglistptr,
7844 : 33078 : cbargs->addrsize, cbargs->offset_size,
7845 : : cbargs->cu, num, attr);
7846 : : else
7847 : : nlpt = true;
7848 : : }
7849 : :
7850 [ + + ]: 33196 : if (!cbargs->silent)
7851 : : {
7852 [ + + + + ]: 33110 : if (cbargs->cu->version < 5 || form == DW_FORM_sec_offset)
7853 [ - + ]: 33106 : printf (" %*s%-20s (%s) range list [%6"
7854 : : PRIxMAX "]%s\n",
7855 : : (int) (level * 2), "", dwarf_attr_name (attr),
7856 : : dwarf_form_name (form), (uintmax_t) num,
7857 : : nlpt ? "" : " <WARNING offset too big>");
7858 : : else
7859 : 4 : printf (" %*s%-20s (%s) range index [%6"
7860 : : PRIxMAX "]\n",
7861 : : (int) (level * 2), "", dwarf_attr_name (attr),
7862 : : dwarf_form_name (form), (uintmax_t) num);
7863 : : }
7864 : : }
7865 : : return DWARF_CB_OK;
7866 : :
7867 : 8 : case DW_AT_rnglists_base:
7868 : : {
7869 : 16 : bool nlpt = notice_listptr (section_ranges, &known_rnglistptr,
7870 : 8 : cbargs->addrsize, cbargs->offset_size,
7871 : : cbargs->cu, num, attr);
7872 [ + + ]: 8 : if (!cbargs->silent)
7873 [ - + ]: 4 : printf (" %*s%-20s (%s) range list [%6"
7874 : : PRIxMAX "]%s\n",
7875 : : (int) (level * 2), "", dwarf_attr_name (attr),
7876 : : dwarf_form_name (form), (uintmax_t) num,
7877 : : nlpt ? "" : " <WARNING offset too big>");
7878 : : }
7879 : : return DWARF_CB_OK;
7880 : :
7881 : 34 : case DW_AT_addr_base:
7882 : : case DW_AT_GNU_addr_base:
7883 : : {
7884 : 68 : bool addrbase = notice_listptr (section_addr, &known_addrbases,
7885 : 34 : cbargs->addrsize,
7886 : 34 : cbargs->offset_size,
7887 : : cbargs->cu, num, attr);
7888 [ + + ]: 34 : if (!cbargs->silent)
7889 [ - + ]: 18 : printf (" %*s%-20s (%s) address base [%6"
7890 : : PRIxMAX "]%s\n",
7891 : : (int) (level * 2), "", dwarf_attr_name (attr),
7892 : : dwarf_form_name (form), (uintmax_t) num,
7893 : : addrbase ? "" : " <WARNING offset too big>");
7894 : : }
7895 : : return DWARF_CB_OK;
7896 : :
7897 : 8 : case DW_AT_str_offsets_base:
7898 : : {
7899 : 16 : bool stroffbase = notice_listptr (section_str, &known_stroffbases,
7900 : 8 : cbargs->addrsize,
7901 : 8 : cbargs->offset_size,
7902 : : cbargs->cu, num, attr);
7903 [ + - ]: 8 : if (!cbargs->silent)
7904 [ - + ]: 788788 : printf (" %*s%-20s (%s) str offsets base [%6"
7905 : : PRIxMAX "]%s\n",
7906 : : (int) (level * 2), "", dwarf_attr_name (attr),
7907 : : dwarf_form_name (form), (uintmax_t) num,
7908 : : stroffbase ? "" : " <WARNING offset too big>");
7909 : : }
7910 : : return DWARF_CB_OK;
7911 : :
7912 : 3654 : case DW_AT_language:
7913 : 3654 : valuestr = dwarf_lang_name (num);
7914 : 3654 : break;
7915 : 52616 : case DW_AT_encoding:
7916 : 52616 : valuestr = dwarf_encoding_name (num);
7917 : 52616 : break;
7918 : 0 : case DW_AT_accessibility:
7919 : 0 : valuestr = dwarf_access_name (num);
7920 : 0 : break;
7921 : 0 : case DW_AT_defaulted:
7922 : 0 : valuestr = dwarf_defaulted_name (num);
7923 : 0 : break;
7924 : 0 : case DW_AT_visibility:
7925 : 0 : valuestr = dwarf_visibility_name (num);
7926 : 0 : break;
7927 : 0 : case DW_AT_virtuality:
7928 : 0 : valuestr = dwarf_virtuality_name (num);
7929 : 0 : break;
7930 : 0 : case DW_AT_identifier_case:
7931 : 0 : valuestr = dwarf_identifier_case_name (num);
7932 : 0 : break;
7933 : 0 : case DW_AT_calling_convention:
7934 : 0 : valuestr = dwarf_calling_convention_name (num);
7935 : 0 : break;
7936 : 7108 : case DW_AT_inline:
7937 : 7108 : valuestr = dwarf_inline_name (num);
7938 : 7108 : break;
7939 : 0 : case DW_AT_ordering:
7940 : 0 : valuestr = dwarf_ordering_name (num);
7941 : 0 : break;
7942 : 955812 : case DW_AT_decl_file:
7943 : : case DW_AT_call_file:
7944 : : {
7945 [ + + ]: 955812 : if (cbargs->silent)
7946 : : break;
7947 : :
7948 : : /* Try to get the actual file, the current interface only
7949 : : gives us full paths, but we only want to show the file
7950 : : name for now. */
7951 : 954964 : Dwarf_Die cudie;
7952 [ + - ]: 954964 : if (dwarf_cu_die (cbargs->cu, &cudie,
7953 : : NULL, NULL, NULL, NULL, NULL, NULL) != NULL)
7954 : : {
7955 : 954964 : Dwarf_Files *files;
7956 : 954964 : size_t nfiles;
7957 [ + - ]: 954964 : if (dwarf_getsrcfiles (&cudie, &files, &nfiles) == 0)
7958 : : {
7959 : 954964 : valuestr = dwarf_filesrc (files, num, NULL, NULL);
7960 [ + - ]: 954964 : if (valuestr != NULL)
7961 : : {
7962 : 954964 : char *filename = strrchr (valuestr, '/');
7963 [ + - ]: 954964 : if (filename != NULL)
7964 : 954964 : valuestr = filename + 1;
7965 : : }
7966 : : else
7967 : 0 : error (0, 0, _("invalid file (%" PRId64 "): %s"),
7968 : : num, dwarf_errmsg (-1));
7969 : : }
7970 : : else
7971 : 0 : error (0, 0, _("no srcfiles for CU [%" PRIx64 "]"),
7972 : : dwarf_dieoffset (&cudie));
7973 : : }
7974 : : else
7975 : 0 : error (0, 0, _("couldn't get DWARF CU: %s"),
7976 : : dwarf_errmsg (-1));
7977 : 954964 : if (valuestr == NULL)
7978 : : valuestr = "???";
7979 : : }
7980 : 954964 : break;
7981 : 26 : case DW_AT_GNU_dwo_id:
7982 : 26 : as_hex_id = true;
7983 : 26 : break;
7984 : :
7985 : : default:
7986 : : /* Nothing. */
7987 : : break;
7988 : : }
7989 : :
7990 [ + + ]: 3555558 : if (cbargs->silent)
7991 : : break;
7992 : :
7993 : : /* When highpc is in constant form it is relative to lowpc.
7994 : : In that case also show the address. */
7995 : 3551848 : Dwarf_Addr highpc;
7996 [ + + + - ]: 3551848 : if (attr == DW_AT_high_pc && dwarf_highpc (die, &highpc) == 0)
7997 : : {
7998 : 24682 : printf (" %*s%-20s (%s) %" PRIuMAX " (",
7999 : : (int) (level * 2), "", dwarf_attr_name (attr),
8000 : : dwarf_form_name (form), (uintmax_t) num);
8001 : 24682 : print_dwarf_addr (cbargs->dwflmod, cbargs->addrsize, highpc, highpc);
8002 : 24682 : printf (")\n");
8003 : : }
8004 : : else
8005 : : {
8006 [ + + ]: 3527166 : if (as_hex_id)
8007 : : {
8008 : 4 : printf (" %*s%-20s (%s) 0x%.16" PRIx64 "\n",
8009 : : (int) (level * 2), "", dwarf_attr_name (attr),
8010 : : dwarf_form_name (form), num);
8011 : : }
8012 : : else
8013 : : {
8014 : 3527162 : Dwarf_Sword snum = 0;
8015 : 3527162 : bool is_signed;
8016 : 3527162 : int bytes = 0;
8017 [ + + ]: 3527162 : if (attr == DW_AT_const_value)
8018 : 344406 : die_type_sign_bytes (die, &is_signed, &bytes);
8019 : : else
8020 : 3182756 : is_signed = (form == DW_FORM_sdata
8021 : 3182756 : || form == DW_FORM_implicit_const);
8022 : :
8023 [ + + ]: 3527162 : if (is_signed)
8024 [ - + ]: 366522 : if (unlikely (dwarf_formsdata (attrp, &snum) != 0))
8025 : 0 : goto attrval_out;
8026 : :
8027 [ + + ]: 3527162 : if (valuestr == NULL)
8028 : : {
8029 : 2509430 : printf (" %*s%-20s (%s) ",
8030 : : (int) (level * 2), "", dwarf_attr_name (attr),
8031 : : dwarf_form_name (form));
8032 : : }
8033 : : else
8034 : : {
8035 : 1017732 : printf (" %*s%-20s (%s) %s (",
8036 : : (int) (level * 2), "", dwarf_attr_name (attr),
8037 : : dwarf_form_name (form), valuestr);
8038 : : }
8039 : :
8040 [ + + + + : 3527162 : switch (bytes)
+ ]
8041 : : {
8042 : 10 : case 1:
8043 [ + + ]: 10 : if (is_signed)
8044 : 2 : printf ("%" PRId8, (int8_t) snum);
8045 : : else
8046 : 8 : printf ("%" PRIu8, (uint8_t) num);
8047 : : break;
8048 : :
8049 : 4 : case 2:
8050 [ + + ]: 4 : if (is_signed)
8051 : 2 : printf ("%" PRId16, (int16_t) snum);
8052 : : else
8053 : 2 : printf ("%" PRIu16, (uint16_t) num);
8054 : : break;
8055 : :
8056 : 258 : case 4:
8057 [ + + ]: 258 : if (is_signed)
8058 : 246 : printf ("%" PRId32, (int32_t) snum);
8059 : : else
8060 : 12 : printf ("%" PRIu32, (uint32_t) num);
8061 : : break;
8062 : :
8063 : 616 : case 8:
8064 [ + + ]: 616 : if (is_signed)
8065 : 2 : printf ("%" PRId64, (int64_t) snum);
8066 : : else
8067 : 614 : printf ("%" PRIu64, (uint64_t) num);
8068 : : break;
8069 : :
8070 : 3526274 : default:
8071 [ + + ]: 3526274 : if (is_signed)
8072 : 366270 : printf ("%" PRIdMAX, (intmax_t) snum);
8073 : : else
8074 : 3160004 : printf ("%" PRIuMAX, (uintmax_t) num);
8075 : : break;
8076 : : }
8077 : :
8078 : : /* Make clear if we switched from a signed encoding to
8079 : : an unsigned value. */
8080 [ + + ]: 3527162 : if (attr == DW_AT_const_value
8081 [ + + ]: 344406 : && (form == DW_FORM_sdata || form == DW_FORM_implicit_const)
8082 [ + + ]: 2578 : && !is_signed)
8083 : 2560 : printf (" (%" PRIdMAX ")", (intmax_t) num);
8084 : :
8085 [ + + ]: 3527162 : if (valuestr == NULL)
8086 : 2509430 : printf ("\n");
8087 : : else
8088 : 3527162 : printf (")\n");
8089 : : }
8090 : : }
8091 : : break;
8092 : :
8093 : 18244 : case DW_FORM_flag:
8094 [ + + ]: 18244 : if (cbargs->silent)
8095 : : break;
8096 : 18096 : bool flag;
8097 [ - + ]: 18096 : if (unlikely (dwarf_formflag (attrp, &flag) != 0))
8098 : 0 : goto attrval_out;
8099 : :
8100 : 18096 : printf (" %*s%-20s (%s) %s\n",
8101 : : (int) (level * 2), "", dwarf_attr_name (attr),
8102 [ + - ]: 18096 : dwarf_form_name (form), flag ? yes_str : no_str);
8103 : : break;
8104 : :
8105 : 155372 : case DW_FORM_flag_present:
8106 [ + + ]: 155372 : if (cbargs->silent)
8107 : : break;
8108 : 154818 : printf (" %*s%-20s (%s) %s\n",
8109 : : (int) (level * 2), "", dwarf_attr_name (attr),
8110 : : dwarf_form_name (form), yes_str);
8111 : : break;
8112 : :
8113 : 217600 : case DW_FORM_exprloc:
8114 : : case DW_FORM_block4:
8115 : : case DW_FORM_block2:
8116 : : case DW_FORM_block1:
8117 : : case DW_FORM_block:
8118 : : case DW_FORM_data16: /* DWARF5 calls this a constant class. */
8119 [ + + ]: 217600 : if (cbargs->silent)
8120 : : break;
8121 : 217338 : Dwarf_Block block;
8122 [ - + ]: 217338 : if (unlikely (dwarf_formblock (attrp, &block) != 0))
8123 : 0 : goto attrval_out;
8124 : :
8125 : 217338 : printf (" %*s%-20s (%s) ",
8126 : : (int) (level * 2), "", dwarf_attr_name (attr),
8127 : : dwarf_form_name (form));
8128 : :
8129 [ + + + ]: 217338 : switch (attr)
8130 : : {
8131 : 93642 : default:
8132 [ - + ]: 93642 : if (form != DW_FORM_exprloc)
8133 : : {
8134 : 0 : print_block (block.length, block.data);
8135 : 0 : break;
8136 : : }
8137 : 123688 : FALLTHROUGH;
8138 : :
8139 : : case DW_AT_location:
8140 : : case DW_AT_data_location:
8141 : : case DW_AT_data_member_location:
8142 : : case DW_AT_vtable_elem_location:
8143 : : case DW_AT_string_length:
8144 : : case DW_AT_use_location:
8145 : : case DW_AT_frame_base:
8146 : : case DW_AT_return_addr:
8147 : : case DW_AT_static_link:
8148 : : case DW_AT_allocated:
8149 : : case DW_AT_associated:
8150 : : case DW_AT_bit_size:
8151 : : case DW_AT_bit_offset:
8152 : : case DW_AT_bit_stride:
8153 : : case DW_AT_byte_size:
8154 : : case DW_AT_byte_stride:
8155 : : case DW_AT_count:
8156 : : case DW_AT_lower_bound:
8157 : : case DW_AT_upper_bound:
8158 : : case DW_AT_GNU_call_site_value:
8159 : : case DW_AT_GNU_call_site_data_value:
8160 : : case DW_AT_GNU_call_site_target:
8161 : : case DW_AT_GNU_call_site_target_clobbered:
8162 [ + + ]: 123688 : if (form == DW_FORM_exprloc
8163 [ + - ]: 140 : || (form != DW_FORM_data16
8164 [ + - ]: 140 : && attrp->cu->version < 4)) /* blocks were expressions. */
8165 : : {
8166 : 217330 : putchar ('\n');
8167 : 217330 : print_ops (cbargs->dwflmod, cbargs->dbg,
8168 : 217330 : 12 + level * 2, 12 + level * 2,
8169 : : cbargs->version, cbargs->addrsize, cbargs->offset_size,
8170 : 217330 : attrp->cu, block.length, block.data);
8171 : : }
8172 : : else
8173 : 0 : print_block (block.length, block.data);
8174 : : break;
8175 : :
8176 : 8 : case DW_AT_discr_list:
8177 [ - + ]: 8 : if (block.length == 0)
8178 : 0 : puts ("<default>");
8179 [ + - ]: 8 : else if (form != DW_FORM_data16)
8180 : : {
8181 : 8 : const unsigned char *readp = block.data;
8182 : 8 : const unsigned char *readendp = readp + block.length;
8183 : :
8184 : : /* See if we are dealing with a signed or unsigned
8185 : : values. If the parent of this variant DIE is a
8186 : : variant_part then it will either have a discriminant
8187 : : which points to the member which type is the
8188 : : discriminant type. Or the variant_part itself has a
8189 : : type representing the discriminant. */
8190 : 8 : bool is_signed = false;
8191 [ + - ]: 8 : if (level > 0)
8192 : : {
8193 : 8 : Dwarf_Die *parent = &cbargs->dies[level - 1];
8194 [ + - ]: 8 : if (dwarf_tag (die) == DW_TAG_variant
8195 [ + - ]: 8 : && dwarf_tag (parent) == DW_TAG_variant_part)
8196 : : {
8197 : 8 : Dwarf_Die member;
8198 : 8 : Dwarf_Attribute discr_attr;
8199 : 8 : int bytes;
8200 [ + - ]: 8 : if (dwarf_formref_die (dwarf_attr (parent,
8201 : : DW_AT_discr,
8202 : : &discr_attr),
8203 : : &member) != NULL)
8204 : 8 : die_type_sign_bytes (&member, &is_signed, &bytes);
8205 : : else
8206 : 0 : die_type_sign_bytes (parent, &is_signed, &bytes);
8207 : : }
8208 : : }
8209 : 24 : while (readp < readendp)
8210 : : {
8211 : 16 : int d = (int) *readp++;
8212 : 16 : printf ("%s ", dwarf_discr_list_name (d));
8213 [ - + ]: 16 : if (readp >= readendp)
8214 : 0 : goto attrval_out;
8215 : :
8216 : 16 : Dwarf_Word val;
8217 : 16 : Dwarf_Sword sval;
8218 [ + + ]: 16 : if (d == DW_DSC_label)
8219 : : {
8220 [ + + ]: 8 : if (is_signed)
8221 : : {
8222 : 4 : get_sleb128 (sval, readp, readendp);
8223 : 4 : printf ("%" PRId64 "", sval);
8224 : : }
8225 : : else
8226 : : {
8227 : 4 : get_uleb128 (val, readp, readendp);
8228 : 4 : printf ("%" PRIu64 "", val);
8229 : : }
8230 : : }
8231 [ + - ]: 8 : else if (d == DW_DSC_range)
8232 : : {
8233 [ + + ]: 8 : if (is_signed)
8234 : : {
8235 : 6 : get_sleb128 (sval, readp, readendp);
8236 : 6 : printf ("%" PRId64 "..", sval);
8237 [ - + ]: 6 : if (readp >= readendp)
8238 : 0 : goto attrval_out;
8239 : 6 : get_sleb128 (sval, readp, readendp);
8240 : 6 : printf ("%" PRId64 "", sval);
8241 : : }
8242 : : else
8243 : : {
8244 : 2 : get_uleb128 (val, readp, readendp);
8245 : 2 : printf ("%" PRIu64 "..", val);
8246 [ - + ]: 2 : if (readp >= readendp)
8247 : 0 : goto attrval_out;
8248 : 2 : get_uleb128 (val, readp, readendp);
8249 : 2 : printf ("%" PRIu64 "", val);
8250 : : }
8251 : : }
8252 : : else
8253 : : {
8254 : 0 : print_block (readendp - readp, readp);
8255 : 0 : break;
8256 : : }
8257 [ + + ]: 16 : if (readp < readendp)
8258 [ + + ]: 32 : printf (", ");
8259 : : }
8260 : 8 : putchar ('\n');
8261 : : }
8262 : : else
8263 : 0 : print_block (block.length, block.data);
8264 : : break;
8265 : : }
8266 : : break;
8267 : :
8268 : 0 : default:
8269 [ # # ]: 0 : if (cbargs->silent)
8270 : : break;
8271 : 0 : printf (" %*s%-20s (%s) ???\n",
8272 : : (int) (level * 2), "", dwarf_attr_name (attr),
8273 : : dwarf_form_name (form));
8274 : : break;
8275 : : }
8276 : :
8277 : 7043386 : return DWARF_CB_OK;
8278 : : }
8279 : :
8280 : : static void
8281 : 206 : print_debug_units (Dwfl_Module *dwflmod,
8282 : : Ebl *ebl, GElf_Ehdr *ehdr __attribute__ ((unused)),
8283 : : Elf_Scn *scn, GElf_Shdr *shdr,
8284 : : Dwarf *dbg, bool debug_types)
8285 : : {
8286 [ + + + + ]: 206 : const bool silent = !(print_debug_sections & section_info) && !debug_types;
8287 : 206 : const char *secname = section_name (ebl, shdr);
8288 : :
8289 : : /* Check section actually exists. */
8290 [ + + ]: 206 : if (!silent)
8291 [ + - ]: 134 : if (get_debug_elf_data (dbg, ebl,
8292 : : debug_types ? IDX_debug_types : IDX_debug_info,
8293 : : scn) == NULL)
8294 : 0 : return;
8295 : :
8296 : 134 : if (!silent)
8297 : 134 : printf (_("\
8298 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n [Offset]\n"),
8299 : 134 : elf_ndxscn (scn), secname, (uint64_t) shdr->sh_offset);
8300 : :
8301 : : /* If the section is empty we don't have to do anything. */
8302 [ + + + - ]: 206 : if (!silent && shdr->sh_size == 0)
8303 : : return;
8304 : :
8305 : 206 : int maxdies = 20;
8306 : 206 : Dwarf_Die *dies = xmalloc (maxdies * sizeof (Dwarf_Die));
8307 : :
8308 : : /* New compilation unit. */
8309 : 206 : Dwarf_Half version;
8310 : :
8311 : 206 : Dwarf_Die result;
8312 : 206 : Dwarf_Off abbroffset;
8313 : 206 : uint8_t addrsize;
8314 : 206 : uint8_t offsize;
8315 : 206 : uint64_t unit_id;
8316 : 206 : Dwarf_Off subdie_off;
8317 : :
8318 : 206 : int unit_res;
8319 : 206 : Dwarf_CU *cu;
8320 : 206 : Dwarf_CU cu_mem;
8321 : 206 : uint8_t unit_type;
8322 : 206 : Dwarf_Die cudie;
8323 : :
8324 : : /* We cheat a little because we want to see only the CUs from .debug_info
8325 : : or .debug_types. We know the Dwarf_CU struct layout. Set it up at
8326 : : the end of .debug_info if we want .debug_types only. Check the returned
8327 : : Dwarf_CU is still in the expected section. */
8328 [ + + ]: 206 : if (debug_types)
8329 : : {
8330 : 2 : cu_mem.dbg = dbg;
8331 : 2 : cu_mem.end = dbg->sectiondata[IDX_debug_info]->d_size;
8332 : 2 : cu_mem.sec_idx = IDX_debug_info;
8333 : 2 : cu = &cu_mem;
8334 : : }
8335 : : else
8336 : 204 : cu = NULL;
8337 : :
8338 : : next_cu:
8339 : 3878 : unit_res = dwarf_get_units (dbg, cu, &cu, &version, &unit_type,
8340 : : &cudie, NULL);
8341 [ + + ]: 3878 : if (unit_res == 1)
8342 : 204 : goto do_return;
8343 : :
8344 [ - + ]: 3674 : if (unit_res == -1)
8345 : : {
8346 [ # # ]: 0 : if (!silent)
8347 : 0 : error (0, 0, _("cannot get next unit: %s"), dwarf_errmsg (-1));
8348 : 0 : goto do_return;
8349 : : }
8350 : :
8351 [ + + + + ]: 7344 : if (cu->sec_idx != (size_t) (debug_types ? IDX_debug_types : IDX_debug_info))
8352 : 2 : goto do_return;
8353 : :
8354 : 3672 : dwarf_cu_die (cu, &result, NULL, &abbroffset, &addrsize, &offsize,
8355 : : &unit_id, &subdie_off);
8356 : :
8357 [ + + ]: 3672 : if (!silent)
8358 : : {
8359 : 3572 : Dwarf_Off offset = cu->start;
8360 [ + + + - ]: 3572 : if (debug_types && version < 5)
8361 : 4 : {
8362 : 4 : Dwarf_Die typedie;
8363 : 4 : Dwarf_Off dieoffset;
8364 : 4 : dieoffset = dwarf_dieoffset (dwarf_offdie_types (dbg, cu->start
8365 : : + subdie_off,
8366 : : &typedie));
8367 : 4 : printf (_(" Type unit at offset %" PRIu64 ":\n"
8368 : : " Version: %" PRIu16
8369 : : ", Abbreviation section offset: %" PRIu64
8370 : : ", Address size: %" PRIu8
8371 : : ", Offset size: %" PRIu8
8372 : : "\n Type signature: %#" PRIx64
8373 : : ", Type offset: %#" PRIx64 " [%" PRIx64 "]\n"),
8374 : : (uint64_t) offset, version, abbroffset, addrsize, offsize,
8375 : : unit_id, (uint64_t) subdie_off, dieoffset);
8376 : : }
8377 : : else
8378 : : {
8379 : 3568 : printf (_(" Compilation unit at offset %" PRIu64 ":\n"
8380 : : " Version: %" PRIu16
8381 : : ", Abbreviation section offset: %" PRIu64
8382 : : ", Address size: %" PRIu8
8383 : : ", Offset size: %" PRIu8 "\n"),
8384 : : (uint64_t) offset, version, abbroffset, addrsize, offsize);
8385 : :
8386 [ + + ]: 3568 : if (version >= 5 || (unit_type != DW_UT_compile
8387 [ + + ]: 170 : && unit_type != DW_UT_partial))
8388 : : {
8389 : 3400 : printf (_(" Unit type: %s (%" PRIu8 ")"),
8390 : : dwarf_unit_name (unit_type), unit_type);
8391 : 3400 : if (unit_type == DW_UT_type
8392 [ + + ]: 3400 : || unit_type == DW_UT_skeleton
8393 [ + - ]: 3390 : || unit_type == DW_UT_split_compile
8394 [ - + ]: 3390 : || unit_type == DW_UT_split_type)
8395 : 10 : printf (", Unit id: 0x%.16" PRIx64 "", unit_id);
8396 : 3400 : if (unit_type == DW_UT_type
8397 [ - + ]: 3400 : || unit_type == DW_UT_split_type)
8398 : : {
8399 : 0 : Dwarf_Die typedie;
8400 : 0 : Dwarf_Off dieoffset;
8401 : 0 : dwarf_cu_info (cu, NULL, NULL, NULL, &typedie,
8402 : : NULL, NULL, NULL);
8403 : 0 : dieoffset = dwarf_dieoffset (&typedie);
8404 : 0 : printf (", Unit DIE off: %#" PRIx64 " [%" PRIx64 "]",
8405 : : subdie_off, dieoffset);
8406 : : }
8407 : 3400 : printf ("\n");
8408 : : }
8409 : : }
8410 : : }
8411 : :
8412 [ + - ]: 3672 : if (version < 2 || version > 5
8413 [ + - - + ]: 3672 : || unit_type < DW_UT_compile || unit_type > DW_UT_split_type)
8414 : : {
8415 [ # # ]: 0 : if (!silent)
8416 : 0 : error (0, 0, _("unknown version (%d) or unit type (%d)"),
8417 : : version, unit_type);
8418 : 0 : goto next_cu;
8419 : : }
8420 : :
8421 : 3672 : struct attrcb_args args =
8422 : : {
8423 : : .dwflmod = dwflmod,
8424 : : .silent = silent,
8425 : : .version = version,
8426 : : .addrsize = addrsize,
8427 : : .offset_size = offsize
8428 : : };
8429 : :
8430 : 3672 : bool is_split = false;
8431 : 3672 : int level = 0;
8432 : 3672 : dies[0] = cudie;
8433 : 3672 : args.cu = dies[0].cu;
8434 : 3672 : args.dbg = dbg;
8435 : 3672 : args.is_split = is_split;
8436 : :
8437 : : /* We might return here again for the split CU subdie. */
8438 : : do_cu:
8439 : 2060736 : do
8440 : : {
8441 : 2060736 : Dwarf_Off offset = dwarf_dieoffset (&dies[level]);
8442 [ - + ]: 2060736 : if (unlikely (offset == (Dwarf_Off) -1))
8443 : : {
8444 [ # # ]: 0 : if (!silent)
8445 : 0 : error (0, 0, _("cannot get DIE offset: %s"),
8446 : : dwarf_errmsg (-1));
8447 : 0 : goto do_return;
8448 : : }
8449 : :
8450 : 2060736 : int tag = dwarf_tag (&dies[level]);
8451 [ - + ]: 2060736 : if (unlikely (tag == DW_TAG_invalid))
8452 : : {
8453 [ # # ]: 0 : if (!silent)
8454 : 0 : error (0, 0, _("cannot get tag of DIE at offset [%" PRIx64
8455 : : "] in section '%s': %s"),
8456 : : (uint64_t) offset, secname, dwarf_errmsg (-1));
8457 : 0 : goto do_return;
8458 : : }
8459 : :
8460 [ + + ]: 2060736 : if (!silent)
8461 : : {
8462 : 2058750 : unsigned int code = dwarf_getabbrevcode (dies[level].abbrev);
8463 [ + + ]: 2058750 : if (is_split)
8464 : 96 : printf (" {%6" PRIx64 "} ", (uint64_t) offset);
8465 : : else
8466 : 2058654 : printf (" [%6" PRIx64 "] ", (uint64_t) offset);
8467 : 2058750 : printf ("%*s%-20s abbrev: %u\n", (int) (level * 2), "",
8468 : : dwarf_tag_name (tag), code);
8469 : : }
8470 : :
8471 : : /* Print the attribute values. */
8472 : 2060736 : args.level = level;
8473 : 2060736 : args.dies = dies;
8474 : 2060736 : (void) dwarf_getattrs (&dies[level], attr_callback, &args, 0);
8475 : :
8476 : : /* Make room for the next level's DIE. */
8477 [ - + ]: 2060736 : if (level + 1 == maxdies)
8478 : 0 : dies = xrealloc (dies, (maxdies += 10) * sizeof (Dwarf_Die));
8479 : :
8480 : 2060736 : int res = dwarf_child (&dies[level], &dies[level + 1]);
8481 [ + + ]: 2060736 : if (res > 0)
8482 : : {
8483 [ + + ]: 2060736 : while ((res = dwarf_siblingof (&dies[level], &dies[level])) == 1)
8484 [ + + ]: 285514 : if (level-- == 0)
8485 : : break;
8486 : :
8487 [ - + ]: 1778902 : if (unlikely (res == -1))
8488 : : {
8489 [ # # ]: 0 : if (!silent)
8490 : 0 : error (0, 0, _("cannot get next DIE: %s\n"),
8491 : : dwarf_errmsg (-1));
8492 : 0 : goto do_return;
8493 : : }
8494 : : }
8495 [ - + ]: 281834 : else if (unlikely (res < 0))
8496 : : {
8497 [ # # ]: 0 : if (!silent)
8498 : 0 : error (0, 0, _("cannot get next DIE: %s"),
8499 : : dwarf_errmsg (-1));
8500 : 0 : goto do_return;
8501 : : }
8502 : : else
8503 : : ++level;
8504 : : }
8505 [ + + ]: 2060736 : while (level >= 0);
8506 : :
8507 : : /* We might want to show the split compile unit if this was a skeleton.
8508 : : We need to scan it if we are requesting printing .debug_ranges for
8509 : : DWARF4 since GNU DebugFission uses "offsets" into the main ranges
8510 : : section. */
8511 [ + + ]: 3680 : if (unit_type == DW_UT_skeleton
8512 [ + + + + ]: 26 : && ((!silent && show_split_units)
8513 [ + + + + ]: 20 : || (version < 5 && (print_debug_sections & section_ranges) != 0)))
8514 : : {
8515 : 10 : Dwarf_Die subdie;
8516 [ + - ]: 10 : if (dwarf_cu_info (cu, NULL, NULL, NULL, &subdie, NULL, NULL, NULL) != 0
8517 [ + + ]: 10 : || dwarf_tag (&subdie) == DW_TAG_invalid)
8518 : : {
8519 [ + - ]: 2 : if (!silent)
8520 : : {
8521 : 2 : Dwarf_Attribute dwo_at;
8522 : 4 : const char *dwo_name =
8523 : 2 : (dwarf_formstring (dwarf_attr (&cudie, DW_AT_dwo_name,
8524 : : &dwo_at))
8525 [ - + ]: 2 : ?: (dwarf_formstring (dwarf_attr (&cudie, DW_AT_GNU_dwo_name,
8526 : : &dwo_at))
8527 [ # # ]: 0 : ?: "<unknown>"));
8528 : 2 : fprintf (stderr,
8529 : : "Could not find split unit '%s', id: %" PRIx64 "\n",
8530 : : dwo_name, unit_id);
8531 : : }
8532 : : }
8533 : : else
8534 : : {
8535 : 8 : Dwarf_CU *split_cu = subdie.cu;
8536 : 8 : dwarf_cu_die (split_cu, &result, NULL, &abbroffset,
8537 : : &addrsize, &offsize, &unit_id, &subdie_off);
8538 : 8 : Dwarf_Off offset = cu->start;
8539 : :
8540 [ + + ]: 8 : if (!silent)
8541 : : {
8542 : 4 : printf (_(" Split compilation unit at offset %"
8543 : : PRIu64 ":\n"
8544 : : " Version: %" PRIu16
8545 : : ", Abbreviation section offset: %" PRIu64
8546 : : ", Address size: %" PRIu8
8547 : : ", Offset size: %" PRIu8 "\n"),
8548 : : (uint64_t) offset, version, abbroffset,
8549 : : addrsize, offsize);
8550 : 4 : printf (_(" Unit type: %s (%" PRIu8 ")"),
8551 : : dwarf_unit_name (unit_type), unit_type);
8552 : 4 : printf (", Unit id: 0x%.16" PRIx64 "", unit_id);
8553 : 4 : printf ("\n");
8554 : : }
8555 : :
8556 : 8 : unit_type = DW_UT_split_compile;
8557 : 8 : is_split = true;
8558 : 8 : level = 0;
8559 : 8 : dies[0] = subdie;
8560 : 8 : args.cu = dies[0].cu;
8561 : 8 : args.dbg = split_cu->dbg;
8562 : 8 : args.is_split = is_split;
8563 : 8 : goto do_cu;
8564 : : }
8565 : : }
8566 : :
8567 : : /* And again... */
8568 : 3672 : goto next_cu;
8569 : :
8570 : 206 : do_return:
8571 : 206 : free (dies);
8572 : : }
8573 : :
8574 : : static void
8575 : 204 : print_debug_info_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr,
8576 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
8577 : : {
8578 : 40 : print_debug_units (dwflmod, ebl, ehdr, scn, shdr, dbg, false);
8579 : 40 : }
8580 : :
8581 : : static void
8582 : 2 : print_debug_types_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr,
8583 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
8584 : : {
8585 : 2 : print_debug_units (dwflmod, ebl, ehdr, scn, shdr, dbg, true);
8586 : 2 : }
8587 : :
8588 : :
8589 : : static void
8590 : 78 : print_decoded_line_section (Dwfl_Module *dwflmod, Ebl *ebl,
8591 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
8592 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
8593 : : {
8594 : 78 : printf (_("\
8595 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n\n"),
8596 : : elf_ndxscn (scn), section_name (ebl, shdr),
8597 : 78 : (uint64_t) shdr->sh_offset);
8598 : :
8599 : 156 : size_t address_size
8600 [ + + ]: 78 : = elf_getident (ebl->elf, NULL)[EI_CLASS] == ELFCLASS32 ? 4 : 8;
8601 : :
8602 : 78 : Dwarf_Lines *lines;
8603 : 78 : size_t nlines;
8604 : 78 : Dwarf_Off off, next_off = 0;
8605 : 78 : Dwarf_CU *cu = NULL;
8606 : 78 : while (dwarf_next_lines (dbg, off = next_off, &next_off, &cu, NULL, NULL,
8607 [ + + ]: 168 : &lines, &nlines) == 0)
8608 : : {
8609 : 90 : Dwarf_Die cudie;
8610 [ + + + - ]: 90 : if (cu != NULL && dwarf_cu_info (cu, NULL, NULL, &cudie,
8611 : : NULL, NULL, NULL, NULL) == 0)
8612 : 86 : printf (" CU [%" PRIx64 "] %s\n",
8613 : : dwarf_dieoffset (&cudie), dwarf_diename (&cudie));
8614 : : else
8615 : : {
8616 : : /* DWARF5 lines can be independent of any CU, but they probably
8617 : : are used by some CU. Determine the CU this block is for. */
8618 : 4 : Dwarf_Off cuoffset;
8619 : 4 : Dwarf_Off ncuoffset = 0;
8620 : 4 : size_t hsize;
8621 : 4 : while (dwarf_nextcu (dbg, cuoffset = ncuoffset, &ncuoffset, &hsize,
8622 [ + - ]: 6 : NULL, NULL, NULL) == 0)
8623 : : {
8624 [ - + ]: 6 : if (dwarf_offdie (dbg, cuoffset + hsize, &cudie) == NULL)
8625 : 0 : continue;
8626 : 6 : Dwarf_Attribute stmt_list;
8627 [ - + ]: 6 : if (dwarf_attr (&cudie, DW_AT_stmt_list, &stmt_list) == NULL)
8628 : 0 : continue;
8629 : 6 : Dwarf_Word lineoff;
8630 [ - + ]: 6 : if (dwarf_formudata (&stmt_list, &lineoff) != 0)
8631 : 0 : continue;
8632 [ + + ]: 6 : if (lineoff == off)
8633 : : {
8634 : : /* Found the CU. */
8635 : 4 : cu = cudie.cu;
8636 : 4 : break;
8637 : : }
8638 : : }
8639 : :
8640 [ + - ]: 4 : if (cu != NULL)
8641 : 4 : printf (" CU [%" PRIx64 "] %s\n",
8642 : : dwarf_dieoffset (&cudie), dwarf_diename (&cudie));
8643 : : else
8644 : 4 : printf (" No CU\n");
8645 : : }
8646 : :
8647 : 90 : printf (" line:col SBPE* disc isa op address"
8648 : : " (Statement Block Prologue Epilogue *End)\n");
8649 : 90 : const char *last_file = "";
8650 [ + + ]: 696 : for (size_t n = 0; n < nlines; n++)
8651 : : {
8652 : 606 : Dwarf_Line *line = dwarf_onesrcline (lines, n);
8653 [ - + ]: 606 : if (line == NULL)
8654 : : {
8655 : 0 : printf (" dwarf_onesrcline: %s\n", dwarf_errmsg (-1));
8656 : 0 : continue;
8657 : : }
8658 : 606 : Dwarf_Word mtime, length;
8659 : 606 : const char *file = dwarf_linesrc (line, &mtime, &length);
8660 [ - + ]: 606 : if (file == NULL)
8661 : : {
8662 : 0 : printf (" <%s> (mtime: ?, length: ?)\n", dwarf_errmsg (-1));
8663 : 0 : last_file = "";
8664 : : }
8665 [ + + ]: 606 : else if (strcmp (last_file, file) != 0)
8666 : : {
8667 : 106 : printf (" %s (mtime: %" PRIu64 ", length: %" PRIu64 ")\n",
8668 : : file, mtime, length);
8669 : 106 : last_file = file;
8670 : : }
8671 : :
8672 : 606 : int lineno, colno;
8673 : 606 : bool statement, endseq, block, prologue_end, epilogue_begin;
8674 : 606 : unsigned int lineop, isa, disc;
8675 : 606 : Dwarf_Addr address;
8676 : 606 : dwarf_lineaddr (line, &address);
8677 : 606 : dwarf_lineno (line, &lineno);
8678 : 606 : dwarf_linecol (line, &colno);
8679 : 606 : dwarf_lineop_index (line, &lineop);
8680 : 606 : dwarf_linebeginstatement (line, &statement);
8681 : 606 : dwarf_lineendsequence (line, &endseq);
8682 : 606 : dwarf_lineblock (line, &block);
8683 : 606 : dwarf_lineprologueend (line, &prologue_end);
8684 : 606 : dwarf_lineepiloguebegin (line, &epilogue_begin);
8685 : 606 : dwarf_lineisa (line, &isa);
8686 : 606 : dwarf_linediscriminator (line, &disc);
8687 : :
8688 : : /* End sequence is special, it is one byte past. */
8689 : 606 : printf (" %4d:%-3d %c%c%c%c%c %4d %3d %2d ",
8690 : : lineno, colno,
8691 [ + + ]: 606 : (statement ? 'S' : ' '),
8692 [ + - ]: 606 : (block ? 'B' : ' '),
8693 [ + + ]: 606 : (prologue_end ? 'P' : ' '),
8694 [ + - ]: 606 : (epilogue_begin ? 'E' : ' '),
8695 [ + + ]: 606 : (endseq ? '*' : ' '),
8696 : : disc, isa, lineop);
8697 : 606 : print_dwarf_addr (dwflmod, address_size,
8698 [ + + ]: 606 : address - (endseq ? 1 : 0), address);
8699 : 606 : printf ("\n");
8700 : :
8701 [ + + ]: 606 : if (endseq)
8702 : 606 : printf("\n");
8703 : : }
8704 : : }
8705 : 78 : }
8706 : :
8707 : :
8708 : : /* Print the value of a form.
8709 : : Returns new value of readp, or readendp on failure. */
8710 : : static const unsigned char *
8711 : 137172 : print_form_data (Dwarf *dbg, int form, const unsigned char *readp,
8712 : : const unsigned char *readendp, unsigned int offset_len,
8713 : : Dwarf_Off str_offsets_base)
8714 : : {
8715 : 137172 : Dwarf_Word val;
8716 : 137172 : unsigned char *endp;
8717 : 137172 : Elf_Data *data;
8718 : 137172 : char *str;
8719 [ + - - - : 137172 : switch (form)
- + - - -
- + - - +
- + - - -
- - ]
8720 : : {
8721 : 16 : case DW_FORM_data1:
8722 [ - + ]: 16 : if (readendp - readp < 1)
8723 : : {
8724 : 0 : invalid_data:
8725 : 0 : error (0, 0, "invalid data");
8726 : 0 : return readendp;
8727 : : }
8728 : 16 : val = *readp++;
8729 : 16 : printf (" %" PRIx8, (unsigned int) val);
8730 : : break;
8731 : :
8732 : 0 : case DW_FORM_data2:
8733 [ # # ]: 0 : if (readendp - readp < 2)
8734 : 0 : goto invalid_data;
8735 [ # # ]: 0 : val = read_2ubyte_unaligned_inc (dbg, readp);
8736 : 0 : printf(" %" PRIx16, (unsigned int) val);
8737 : : break;
8738 : :
8739 : 0 : case DW_FORM_data4:
8740 [ # # ]: 0 : if (readendp - readp < 4)
8741 : 0 : goto invalid_data;
8742 [ # # ]: 0 : val = read_4ubyte_unaligned_inc (dbg, readp);
8743 : 0 : printf (" %" PRIx32, (unsigned int) val);
8744 : : break;
8745 : :
8746 : 0 : case DW_FORM_data8:
8747 [ # # ]: 0 : if (readendp - readp < 8)
8748 : 0 : goto invalid_data;
8749 [ # # ]: 0 : val = read_8ubyte_unaligned_inc (dbg, readp);
8750 : 0 : printf (" %" PRIx64, val);
8751 : : break;
8752 : :
8753 : 0 : case DW_FORM_sdata:
8754 [ # # ]: 0 : if (readendp - readp < 1)
8755 : 0 : goto invalid_data;
8756 : 0 : get_sleb128 (val, readp, readendp);
8757 : 0 : printf (" %" PRIx64, val);
8758 : : break;
8759 : :
8760 : 55108 : case DW_FORM_udata:
8761 [ - + ]: 55108 : if (readendp - readp < 1)
8762 : 0 : goto invalid_data;
8763 : 55108 : get_uleb128 (val, readp, readendp);
8764 : 55108 : printf (" %" PRIx64, val);
8765 : : break;
8766 : :
8767 : 0 : case DW_FORM_block:
8768 [ # # ]: 0 : if (readendp - readp < 1)
8769 : 0 : goto invalid_data;
8770 : 0 : get_uleb128 (val, readp, readendp);
8771 [ # # ]: 0 : if ((size_t) (readendp - readp) < val)
8772 : 0 : goto invalid_data;
8773 : 0 : print_bytes (val, readp);
8774 : 0 : readp += val;
8775 : 0 : break;
8776 : :
8777 : 0 : case DW_FORM_block1:
8778 [ # # ]: 0 : if (readendp - readp < 1)
8779 : 0 : goto invalid_data;
8780 : 0 : val = *readp++;
8781 [ # # ]: 0 : if ((size_t) (readendp - readp) < val)
8782 : 0 : goto invalid_data;
8783 : 0 : print_bytes (val, readp);
8784 : 0 : readp += val;
8785 : 0 : break;
8786 : :
8787 : 0 : case DW_FORM_block2:
8788 [ # # ]: 0 : if (readendp - readp < 2)
8789 : 0 : goto invalid_data;
8790 [ # # ]: 0 : val = read_2ubyte_unaligned_inc (dbg, readp);
8791 [ # # ]: 0 : if ((size_t) (readendp - readp) < val)
8792 : 0 : goto invalid_data;
8793 : 0 : print_bytes (val, readp);
8794 : 0 : readp += val;
8795 : 0 : break;
8796 : :
8797 : 0 : case DW_FORM_block4:
8798 [ # # ]: 0 : if (readendp - readp < 4)
8799 : 0 : goto invalid_data;
8800 [ # # ]: 0 : val = read_4ubyte_unaligned_inc (dbg, readp);
8801 [ # # ]: 0 : if ((size_t) (readendp - readp) < val)
8802 : 0 : goto invalid_data;
8803 : 0 : print_bytes (val, readp);
8804 : 0 : readp += val;
8805 : 0 : break;
8806 : :
8807 : 24 : case DW_FORM_data16:
8808 [ - + ]: 24 : if (readendp - readp < 16)
8809 : 0 : goto invalid_data;
8810 : 24 : print_bytes (16, readp);
8811 : 24 : readp += 16;
8812 : 24 : break;
8813 : :
8814 : 0 : case DW_FORM_flag:
8815 [ # # ]: 0 : if (readendp - readp < 1)
8816 : 0 : goto invalid_data;
8817 : 0 : val = *readp++;
8818 [ # # ]: 0 : printf ("%s", val != 0 ? yes_str : no_str);
8819 : : break;
8820 : :
8821 : 0 : case DW_FORM_string:
8822 : 0 : endp = memchr (readp, '\0', readendp - readp);
8823 [ # # ]: 0 : if (endp == NULL)
8824 : 0 : goto invalid_data;
8825 : 0 : printf ("%s", readp);
8826 : 0 : readp = endp + 1;
8827 : 0 : break;
8828 : :
8829 : 80468 : case DW_FORM_strp:
8830 : : case DW_FORM_line_strp:
8831 : : case DW_FORM_strp_sup:
8832 [ - + ]: 80468 : if ((size_t) (readendp - readp) < offset_len)
8833 : 0 : goto invalid_data;
8834 [ - + ]: 80468 : if (offset_len == 8)
8835 [ # # ]: 0 : val = read_8ubyte_unaligned_inc (dbg, readp);
8836 : : else
8837 [ - + ]: 80468 : val = read_4ubyte_unaligned_inc (dbg, readp);
8838 [ - + ]: 80468 : if (form == DW_FORM_strp)
8839 : 0 : data = dbg->sectiondata[IDX_debug_str];
8840 [ + - ]: 80468 : else if (form == DW_FORM_line_strp)
8841 : 80468 : data = dbg->sectiondata[IDX_debug_line_str];
8842 : : else /* form == DW_FORM_strp_sup */
8843 : : {
8844 : 0 : Dwarf *alt = dwarf_getalt (dbg);
8845 [ # # ]: 0 : data = alt != NULL ? alt->sectiondata[IDX_debug_str] : NULL;
8846 : : }
8847 [ + - - + ]: 80468 : if (data == NULL || val >= data->d_size
8848 [ - + ]: 80468 : || memchr (data->d_buf + val, '\0', data->d_size - val) == NULL)
8849 : : str = "???";
8850 : : else
8851 : 80468 : str = (char *) data->d_buf + val;
8852 : 80468 : printf ("%s (%" PRIu64 ")", str, val);
8853 : : break;
8854 : :
8855 : 0 : case DW_FORM_sec_offset:
8856 [ # # ]: 0 : if ((size_t) (readendp - readp) < offset_len)
8857 : 0 : goto invalid_data;
8858 [ # # ]: 0 : if (offset_len == 8)
8859 [ # # ]: 0 : val = read_8ubyte_unaligned_inc (dbg, readp);
8860 : : else
8861 [ # # ]: 0 : val = read_4ubyte_unaligned_inc (dbg, readp);
8862 : 0 : printf ("[%" PRIx64 "]", val);
8863 : : break;
8864 : :
8865 : 1556 : case DW_FORM_strx:
8866 : : case DW_FORM_GNU_str_index:
8867 [ - + ]: 1556 : if (readendp - readp < 1)
8868 : 0 : goto invalid_data;
8869 : 1556 : get_uleb128 (val, readp, readendp);
8870 : 1556 : strx_val:
8871 : 1556 : data = dbg->sectiondata[IDX_debug_str_offsets];
8872 [ + - ]: 1556 : if (data == NULL
8873 [ - + ]: 1556 : || data->d_size - str_offsets_base < val * offset_len)
8874 : : str = "???";
8875 : : else
8876 : : {
8877 : 1556 : const unsigned char *strreadp = (data->d_buf + str_offsets_base
8878 : 1556 : + val * offset_len);
8879 : 1556 : const unsigned char *strreadendp = data->d_buf + data->d_size;
8880 [ - + ]: 1556 : if ((size_t) (strreadendp - strreadp) < offset_len)
8881 : : str = "???";
8882 : : else
8883 : : {
8884 : 1556 : Dwarf_Off idx;
8885 [ - + ]: 1556 : if (offset_len == 8)
8886 [ # # ]: 0 : idx = read_8ubyte_unaligned (dbg, strreadp);
8887 : : else
8888 [ - + ]: 1556 : idx = read_4ubyte_unaligned (dbg, strreadp);
8889 : :
8890 : 1556 : data = dbg->sectiondata[IDX_debug_str];
8891 [ - + - + ]: 1556 : if (data == NULL || idx >= data->d_size
8892 [ - + ]: 1556 : || memchr (data->d_buf + idx, '\0',
8893 : : data->d_size - idx) == NULL)
8894 : : str = "???";
8895 : : else
8896 : 1556 : str = (char *) data->d_buf + idx;
8897 : : }
8898 : : }
8899 : 1556 : printf ("%s (%" PRIu64 ")", str, val);
8900 : : break;
8901 : :
8902 : 0 : case DW_FORM_strx1:
8903 [ # # ]: 0 : if (readendp - readp < 1)
8904 : 0 : goto invalid_data;
8905 : 0 : val = *readp++;
8906 : 0 : goto strx_val;
8907 : :
8908 : 0 : case DW_FORM_strx2:
8909 [ # # ]: 0 : if (readendp - readp < 2)
8910 : 0 : goto invalid_data;
8911 [ # # ]: 0 : val = read_2ubyte_unaligned_inc (dbg, readp);
8912 : 0 : goto strx_val;
8913 : :
8914 : 0 : case DW_FORM_strx3:
8915 [ # # ]: 0 : if (readendp - readp < 3)
8916 : 0 : goto invalid_data;
8917 : 0 : val = read_3ubyte_unaligned_inc (dbg, readp);
8918 : 0 : goto strx_val;
8919 : :
8920 : 0 : case DW_FORM_strx4:
8921 [ # # ]: 0 : if (readendp - readp < 4)
8922 : 0 : goto invalid_data;
8923 [ # # ]: 0 : val = read_4ubyte_unaligned_inc (dbg, readp);
8924 : 0 : goto strx_val;
8925 : :
8926 : 0 : default:
8927 : 0 : error (0, 0, _("unknown form: %s"), dwarf_form_name (form));
8928 : 0 : return readendp;
8929 : : }
8930 : :
8931 : 137172 : return readp;
8932 : : }
8933 : :
8934 : : /* Only used via run_advance_pc() macro */
8935 : : static inline void
8936 : 742268 : run_advance_pc (unsigned int op_advance,
8937 : : unsigned int minimum_instr_len,
8938 : : unsigned int max_ops_per_instr,
8939 : : unsigned int *op_addr_advance,
8940 : : Dwarf_Word *address,
8941 : : unsigned int *op_index)
8942 : : {
8943 : 742268 : const unsigned int advanced_op_index = (*op_index) + op_advance;
8944 : :
8945 : 742268 : *op_addr_advance = minimum_instr_len * (advanced_op_index
8946 : 742268 : / max_ops_per_instr);
8947 : 742268 : *address = *address + *op_addr_advance;
8948 : 742268 : *op_index = advanced_op_index % max_ops_per_instr;
8949 : : }
8950 : :
8951 : : static void
8952 : 182 : print_debug_line_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr,
8953 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
8954 : : {
8955 [ + + ]: 182 : if (decodedline)
8956 : : {
8957 : 78 : print_decoded_line_section (dwflmod, ebl, ehdr, scn, shdr, dbg);
8958 : 156 : return;
8959 : : }
8960 : :
8961 : 104 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_line, scn);
8962 [ + - ]: 104 : if (data == NULL)
8963 : : return;
8964 : :
8965 : 104 : printf (_("\
8966 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
8967 : : elf_ndxscn (scn), section_name (ebl, shdr),
8968 : 104 : (uint64_t) shdr->sh_offset);
8969 : :
8970 [ + - ]: 104 : if (shdr->sh_size == 0)
8971 : : return;
8972 : :
8973 : : /* There is no functionality in libdw to read the information in the
8974 : : way it is represented here. Hardcode the decoder. */
8975 : :
8976 : 104 : const unsigned char *linep = (const unsigned char *) data->d_buf;
8977 : 104 : const unsigned char *lineendp;
8978 : :
8979 : 104 : while (linep
8980 [ + + ]: 3648 : < (lineendp = (const unsigned char *) data->d_buf + data->d_size))
8981 : : {
8982 : 3544 : size_t start_offset = linep - (const unsigned char *) data->d_buf;
8983 : :
8984 : 3544 : printf (_("\nTable at offset %zu:\n"), start_offset);
8985 : :
8986 [ - + ]: 3544 : if (unlikely (linep + 4 > lineendp))
8987 : 0 : goto invalid_data;
8988 [ + + ]: 3544 : Dwarf_Word unit_length = read_4ubyte_unaligned_inc (dbg, linep);
8989 : 3544 : unsigned int length = 4;
8990 [ - + ]: 3544 : if (unlikely (unit_length == 0xffffffff))
8991 : : {
8992 [ # # ]: 0 : if (unlikely (linep + 8 > lineendp))
8993 : : {
8994 : 0 : invalid_data:
8995 : 0 : error (0, 0, _("invalid data in section [%zu] '%s'"),
8996 : : elf_ndxscn (scn), section_name (ebl, shdr));
8997 : 0 : return;
8998 : : }
8999 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, linep);
9000 : 0 : length = 8;
9001 : : }
9002 : :
9003 : : /* Check whether we have enough room in the section. */
9004 [ - + ]: 3544 : if (unlikely (unit_length > (size_t) (lineendp - linep)))
9005 : 0 : goto invalid_data;
9006 : 3544 : lineendp = linep + unit_length;
9007 : :
9008 : : /* The next element of the header is the version identifier. */
9009 [ - + ]: 3544 : if ((size_t) (lineendp - linep) < 2)
9010 : 0 : goto invalid_data;
9011 [ + + ]: 3544 : uint_fast16_t version = read_2ubyte_unaligned_inc (dbg, linep);
9012 : :
9013 : 7088 : size_t address_size
9014 [ + + ]: 3544 : = elf_getident (ebl->elf, NULL)[EI_CLASS] == ELFCLASS32 ? 4 : 8;
9015 : 3544 : unsigned char segment_selector_size = 0;
9016 [ + + ]: 3544 : if (version > 4)
9017 : : {
9018 [ - + ]: 3392 : if ((size_t) (lineendp - linep) < 2)
9019 : 0 : goto invalid_data;
9020 : 3392 : address_size = *linep++;
9021 : 3392 : segment_selector_size = *linep++;
9022 : : }
9023 : :
9024 : : /* Next comes the header length. */
9025 : 3544 : Dwarf_Word header_length;
9026 [ + - ]: 3544 : if (length == 4)
9027 : : {
9028 [ - + ]: 3544 : if ((size_t) (lineendp - linep) < 4)
9029 : 0 : goto invalid_data;
9030 [ + + ]: 3544 : header_length = read_4ubyte_unaligned_inc (dbg, linep);
9031 : : }
9032 : : else
9033 : : {
9034 [ # # ]: 0 : if ((size_t) (lineendp - linep) < 8)
9035 : 0 : goto invalid_data;
9036 [ # # ]: 0 : header_length = read_8ubyte_unaligned_inc (dbg, linep);
9037 : : }
9038 : :
9039 : 3544 : const unsigned char *header_start = linep;
9040 : :
9041 : : /* Next the minimum instruction length. */
9042 [ - + ]: 3544 : if ((size_t) (lineendp - linep) < 1)
9043 : 0 : goto invalid_data;
9044 : 3544 : uint_fast8_t minimum_instr_len = *linep++;
9045 : :
9046 : : /* Next the maximum operations per instruction, in version 4 format. */
9047 : 3544 : uint_fast8_t max_ops_per_instr;
9048 [ + + ]: 3544 : if (version < 4)
9049 : : max_ops_per_instr = 1;
9050 : : else
9051 : : {
9052 [ - + ]: 3412 : if ((size_t) (lineendp - linep) < 1)
9053 : 0 : goto invalid_data;
9054 : 3412 : max_ops_per_instr = *linep++;
9055 : : }
9056 : :
9057 : : /* We need at least 4 more bytes. */
9058 [ - + ]: 3544 : if ((size_t) (lineendp - linep) < 4)
9059 : 0 : goto invalid_data;
9060 : :
9061 : : /* Then the flag determining the default value of the is_stmt
9062 : : register. */
9063 : 3544 : uint_fast8_t default_is_stmt = *linep++;
9064 : :
9065 : : /* Now the line base. */
9066 : 3544 : int_fast8_t line_base = *linep++;
9067 : :
9068 : : /* And the line range. */
9069 : 3544 : uint_fast8_t line_range = *linep++;
9070 : :
9071 : : /* The opcode base. */
9072 : 3544 : uint_fast8_t opcode_base = *linep++;
9073 : :
9074 : : /* Print what we got so far. */
9075 : 3544 : printf (_("\n"
9076 : : " Length: %" PRIu64 "\n"
9077 : : " DWARF version: %" PRIuFAST16 "\n"
9078 : : " Prologue length: %" PRIu64 "\n"
9079 : : " Address size: %zd\n"
9080 : : " Segment selector size: %zd\n"
9081 : : " Min instruction length: %" PRIuFAST8 "\n"
9082 : : " Max operations per instruction: %" PRIuFAST8 "\n"
9083 : : " Initial value if 'is_stmt': %" PRIuFAST8 "\n"
9084 : : " Line base: %" PRIdFAST8 "\n"
9085 : : " Line range: %" PRIuFAST8 "\n"
9086 : : " Opcode base: %" PRIuFAST8 "\n"
9087 : : "\n"
9088 : : "Opcodes:\n"),
9089 : : (uint64_t) unit_length, version, (uint64_t) header_length,
9090 : : address_size, (size_t) segment_selector_size,
9091 : : minimum_instr_len, max_ops_per_instr,
9092 : : default_is_stmt, line_base,
9093 : : line_range, opcode_base);
9094 : :
9095 [ - + ]: 3544 : if (version < 2 || version > 5)
9096 : : {
9097 : 0 : error (0, 0, _("cannot handle .debug_line version: %u\n"),
9098 : : (unsigned int) version);
9099 : 0 : linep = lineendp;
9100 : 0 : continue;
9101 : : }
9102 : :
9103 [ - + ]: 3544 : if (address_size != 4 && address_size != 8)
9104 : : {
9105 : 0 : error (0, 0, _("cannot handle address size: %u\n"),
9106 : : (unsigned int) address_size);
9107 : 0 : linep = lineendp;
9108 : 0 : continue;
9109 : : }
9110 : :
9111 [ - + ]: 3544 : if (segment_selector_size != 0)
9112 : : {
9113 : 0 : error (0, 0, _("cannot handle segment selector size: %u\n"),
9114 : : (unsigned int) segment_selector_size);
9115 : 0 : linep = lineendp;
9116 : 0 : continue;
9117 : : }
9118 : :
9119 [ - + ]: 3544 : if (unlikely (linep + opcode_base - 1 >= lineendp))
9120 : : {
9121 : 0 : invalid_unit:
9122 : 0 : error (0, 0,
9123 : 0 : _("invalid data at offset %tu in section [%zu] '%s'"),
9124 : 0 : linep - (const unsigned char *) data->d_buf,
9125 : : elf_ndxscn (scn), section_name (ebl, shdr));
9126 : 0 : linep = lineendp;
9127 : 0 : continue;
9128 : : }
9129 : 3544 : int opcode_base_l10 = 1;
9130 : 3544 : unsigned int tmp = opcode_base;
9131 [ + + ]: 7082 : while (tmp > 10)
9132 : : {
9133 : 3538 : tmp /= 10;
9134 : 3538 : ++opcode_base_l10;
9135 : : }
9136 : : const uint8_t *standard_opcode_lengths = linep - 1;
9137 [ + + ]: 46054 : for (uint_fast8_t cnt = 1; cnt < opcode_base; ++cnt)
9138 : 42510 : printf (ngettext (" [%*" PRIuFAST8 "] %hhu argument\n",
9139 : : " [%*" PRIuFAST8 "] %hhu arguments\n",
9140 : : (int) linep[cnt - 1]),
9141 : 42510 : opcode_base_l10, cnt, linep[cnt - 1]);
9142 : 3544 : linep += opcode_base - 1;
9143 : :
9144 : 3544 : if (unlikely (linep >= lineendp))
9145 : : goto invalid_unit;
9146 : :
9147 : 3544 : Dwarf_Off str_offsets_base = str_offsets_base_off (dbg, NULL);
9148 : :
9149 : 3544 : puts (_("\nDirectory table:"));
9150 [ + + ]: 3544 : if (version > 4)
9151 : : {
9152 : 3392 : struct encpair { uint16_t desc; uint16_t form; };
9153 : 3392 : struct encpair enc[256];
9154 : :
9155 : 3392 : printf (_(" ["));
9156 [ - + ]: 3392 : if ((size_t) (lineendp - linep) < 1)
9157 : 0 : goto invalid_data;
9158 : 3392 : unsigned char directory_entry_format_count = *linep++;
9159 : 3392 : for (int i = 0; i < directory_entry_format_count; i++)
9160 : : {
9161 : 3392 : uint16_t desc, form;
9162 [ - + ]: 3392 : if ((size_t) (lineendp - linep) < 1)
9163 : 0 : goto invalid_data;
9164 : 3392 : get_uleb128 (desc, linep, lineendp);
9165 [ - + ]: 3392 : if ((size_t) (lineendp - linep) < 1)
9166 : 0 : goto invalid_data;
9167 : 3392 : get_uleb128 (form, linep, lineendp);
9168 : :
9169 : 3392 : enc[i].desc = desc;
9170 : 3392 : enc[i].form = form;
9171 : :
9172 : 3392 : printf ("%s(%s)",
9173 : : dwarf_line_content_description_name (desc),
9174 : : dwarf_form_name (form));
9175 [ - + ]: 3392 : if (i + 1 < directory_entry_format_count)
9176 [ + + ]: 6784 : printf (", ");
9177 : : }
9178 : 3392 : printf ("]\n");
9179 : :
9180 : 3392 : uint64_t directories_count;
9181 [ - + ]: 3392 : if ((size_t) (lineendp - linep) < 1)
9182 : 0 : goto invalid_data;
9183 : 3392 : get_uleb128 (directories_count, linep, lineendp);
9184 : :
9185 : 3392 : if (directory_entry_format_count == 0
9186 [ - + ]: 3392 : && directories_count != 0)
9187 : 0 : goto invalid_data;
9188 : :
9189 [ + + ]: 28736 : for (uint64_t i = 0; i < directories_count; i++)
9190 : : {
9191 : 25344 : printf (" %-5" PRIu64 " ", i);
9192 : 25344 : for (int j = 0; j < directory_entry_format_count; j++)
9193 : : {
9194 : 25344 : linep = print_form_data (dbg, enc[j].form,
9195 : : linep, lineendp, length,
9196 : : str_offsets_base);
9197 [ - + ]: 25344 : if (j + 1 < directory_entry_format_count)
9198 [ + + ]: 50688 : printf (", ");
9199 : : }
9200 : 25344 : printf ("\n");
9201 [ - + ]: 25344 : if (linep >= lineendp)
9202 : 0 : goto invalid_unit;
9203 : : }
9204 : : }
9205 : : else
9206 : : {
9207 [ + - + + ]: 766 : while (linep < lineendp && *linep != 0)
9208 : : {
9209 : 614 : unsigned char *endp = memchr (linep, '\0', lineendp - linep);
9210 [ - + ]: 614 : if (unlikely (endp == NULL))
9211 : 0 : goto invalid_unit;
9212 : :
9213 : 614 : printf (" %s\n", (char *) linep);
9214 : :
9215 : 614 : linep = endp + 1;
9216 : : }
9217 [ + - - + ]: 152 : if (linep >= lineendp || *linep != 0)
9218 : 0 : goto invalid_unit;
9219 : : /* Skip the final NUL byte. */
9220 : 152 : ++linep;
9221 : : }
9222 : :
9223 [ - + ]: 3544 : if (unlikely (linep >= lineendp))
9224 : 0 : goto invalid_unit;
9225 : :
9226 : 3544 : puts (_("\nFile name table:"));
9227 [ + + ]: 3544 : if (version > 4)
9228 : : {
9229 : 3392 : struct encpair { uint16_t desc; uint16_t form; };
9230 : 3392 : struct encpair enc[256];
9231 : :
9232 : 3392 : printf (_(" ["));
9233 [ - + ]: 3392 : if ((size_t) (lineendp - linep) < 1)
9234 : 0 : goto invalid_data;
9235 : 3392 : unsigned char file_name_format_count = *linep++;
9236 : 3392 : for (int i = 0; i < file_name_format_count; i++)
9237 : : {
9238 : 6792 : uint64_t desc, form;
9239 [ - + ]: 6792 : if ((size_t) (lineendp - linep) < 1)
9240 : 0 : goto invalid_data;
9241 : 6792 : get_uleb128 (desc, linep, lineendp);
9242 [ - + ]: 6792 : if ((size_t) (lineendp - linep) < 1)
9243 : 0 : goto invalid_data;
9244 : 6792 : get_uleb128 (form, linep, lineendp);
9245 : :
9246 [ - + ]: 6792 : if (! libdw_valid_user_form (form))
9247 : 0 : goto invalid_data;
9248 : :
9249 : 6792 : enc[i].desc = desc;
9250 : 6792 : enc[i].form = form;
9251 : :
9252 : 6792 : printf ("%s(%s)",
9253 : : dwarf_line_content_description_name (desc),
9254 : : dwarf_form_name (form));
9255 [ + + ]: 6792 : if (i + 1 < file_name_format_count)
9256 [ + + ]: 13584 : printf (", ");
9257 : : }
9258 : 3392 : printf ("]\n");
9259 : :
9260 : 3392 : uint64_t file_name_count;
9261 [ - + ]: 3392 : if ((size_t) (lineendp - linep) < 1)
9262 : 0 : goto invalid_data;
9263 : 3392 : get_uleb128 (file_name_count, linep, lineendp);
9264 : :
9265 : 3392 : if (file_name_format_count == 0
9266 [ - + ]: 3392 : && file_name_count != 0)
9267 : 0 : goto invalid_data;
9268 : :
9269 [ + + ]: 58516 : for (uint64_t i = 0; i < file_name_count; i++)
9270 : : {
9271 : 55124 : printf (" %-5" PRIu64 " ", i);
9272 : 55124 : for (int j = 0; j < file_name_format_count; j++)
9273 : : {
9274 : 110272 : linep = print_form_data (dbg, enc[j].form,
9275 : : linep, lineendp, length,
9276 : : str_offsets_base);
9277 [ + + ]: 110272 : if (j + 1 < file_name_format_count)
9278 [ + + ]: 220544 : printf (", ");
9279 : : }
9280 : 55124 : printf ("\n");
9281 [ - + ]: 55124 : if (linep > lineendp)
9282 : 0 : goto invalid_unit;
9283 : : }
9284 : : }
9285 : : else
9286 : : {
9287 : 152 : puts (_(" Entry Dir Time Size Name"));
9288 [ + - + + ]: 6154 : for (unsigned int cnt = 1; linep < lineendp && *linep != 0; ++cnt)
9289 : : {
9290 : : /* First comes the file name. */
9291 : 6002 : char *fname = (char *) linep;
9292 : 6002 : unsigned char *endp = memchr (fname, '\0', lineendp - linep);
9293 [ - + ]: 6002 : if (unlikely (endp == NULL))
9294 : 0 : goto invalid_unit;
9295 : 6002 : linep = endp + 1;
9296 : :
9297 : : /* Then the index. */
9298 : 6002 : unsigned int diridx;
9299 [ - + ]: 6002 : if (lineendp - linep < 1)
9300 : 0 : goto invalid_unit;
9301 : 6002 : get_uleb128 (diridx, linep, lineendp);
9302 : :
9303 : : /* Next comes the modification time. */
9304 : 6002 : unsigned int mtime;
9305 [ - + ]: 6002 : if (lineendp - linep < 1)
9306 : 0 : goto invalid_unit;
9307 : 6002 : get_uleb128 (mtime, linep, lineendp);
9308 : :
9309 : : /* Finally the length of the file. */
9310 : 6002 : unsigned int fsize;
9311 [ - + ]: 6002 : if (lineendp - linep < 1)
9312 : 0 : goto invalid_unit;
9313 : 6002 : get_uleb128 (fsize, linep, lineendp);
9314 : :
9315 : 6002 : printf (" %-5u %-5u %-9u %-9u %s\n",
9316 : : cnt, diridx, mtime, fsize, fname);
9317 : : }
9318 [ + - - + ]: 152 : if (linep >= lineendp || *linep != '\0')
9319 : 0 : goto invalid_unit;
9320 : : /* Skip the final NUL byte. */
9321 : 152 : ++linep;
9322 : : }
9323 : :
9324 : 3544 : unsigned int debug_str_offset = 0;
9325 [ + + ]: 3544 : if (unlikely (linep == header_start + header_length - 4))
9326 : : {
9327 : : /* CUBINs contain an unsigned 4-byte offset */
9328 [ - + ]: 2 : debug_str_offset = read_4ubyte_unaligned_inc (dbg, linep);
9329 : : }
9330 : :
9331 [ + + ]: 3544 : if (linep == lineendp)
9332 : : {
9333 : 40 : puts (_("\nNo line number statements."));
9334 : 40 : continue;
9335 : : }
9336 : :
9337 : 3504 : puts (_("\nLine number statements:"));
9338 : 3504 : Dwarf_Word address = 0;
9339 : 3504 : unsigned int op_index = 0;
9340 : 3504 : size_t line = 1;
9341 : 3504 : uint_fast8_t is_stmt = default_is_stmt;
9342 : :
9343 : : /* Apply the "operation advance" from a special opcode
9344 : : or DW_LNS_advance_pc (as per DWARF4 6.2.5.1). */
9345 : 3504 : unsigned int op_addr_advance;
9346 : : #define advance_pc(op_advance) run_advance_pc(op_advance, minimum_instr_len, \
9347 : : max_ops_per_instr, &op_addr_advance, &address, &op_index)
9348 : :
9349 [ - + ]: 3504 : if (max_ops_per_instr == 0)
9350 : : {
9351 : 0 : error (0, 0,
9352 : 0 : _("invalid maximum operations per instruction is zero"));
9353 : 0 : linep = lineendp;
9354 : 0 : continue;
9355 : : }
9356 : :
9357 : 2334678 : while (linep < lineendp)
9358 : : {
9359 : 2331174 : size_t offset = linep - (const unsigned char *) data->d_buf;
9360 : 2331174 : unsigned int u128;
9361 : 2331174 : int s128;
9362 : :
9363 : : /* Read the opcode. */
9364 : 2331174 : unsigned int opcode = *linep++;
9365 : :
9366 : 2331174 : printf (" [%6" PRIx64 "]", (uint64_t)offset);
9367 : : /* Is this a special opcode? */
9368 [ + + ]: 2331174 : if (likely (opcode >= opcode_base))
9369 : : {
9370 [ - + ]: 673958 : if (unlikely (line_range == 0))
9371 : 0 : goto invalid_unit;
9372 : :
9373 : : /* Yes. Handling this is quite easy since the opcode value
9374 : : is computed with
9375 : :
9376 : : opcode = (desired line increment - line_base)
9377 : : + (line_range * address advance) + opcode_base
9378 : : */
9379 : 673958 : int line_increment = (line_base
9380 : 673958 : + (opcode - opcode_base) % line_range);
9381 : :
9382 : : /* Perform the increments. */
9383 : 673958 : line += line_increment;
9384 : 673958 : advance_pc ((opcode - opcode_base) / line_range);
9385 : :
9386 : 673958 : printf (_(" special opcode %u: address+%u = "),
9387 : : opcode, op_addr_advance);
9388 : 673958 : print_dwarf_addr (dwflmod, 0, address, address);
9389 [ - + ]: 673958 : if (op_index > 0)
9390 : 0 : printf (_(", op_index = %u, line%+d = %zu\n"),
9391 : : op_index, line_increment, line);
9392 : : else
9393 : 673958 : printf (_(", line%+d = %zu\n"),
9394 : : line_increment, line);
9395 : : }
9396 [ + + ]: 1657216 : else if (opcode == 0)
9397 : : {
9398 : : /* This an extended opcode. */
9399 [ - + ]: 126638 : if (unlikely (linep + 2 > lineendp))
9400 : 0 : goto invalid_unit;
9401 : :
9402 : : /* The length. */
9403 : 126638 : unsigned int len = *linep++;
9404 : :
9405 [ - + ]: 126638 : if (unlikely (linep + len > lineendp))
9406 : 0 : goto invalid_unit;
9407 : :
9408 : : /* The sub-opcode. */
9409 : 126638 : opcode = *linep++;
9410 : :
9411 : 126638 : printf (_(" extended opcode %u: "), opcode);
9412 : :
9413 [ + + - + : 126638 : switch (opcode)
+ - - ]
9414 : : {
9415 : 9758 : case DW_LNE_end_sequence:
9416 : 9758 : puts (_(" end of sequence"));
9417 : :
9418 : : /* Reset the registers we care about. */
9419 : 9758 : address = 0;
9420 : 9758 : op_index = 0;
9421 : 9758 : line = 1;
9422 : 9758 : is_stmt = default_is_stmt;
9423 : 9758 : break;
9424 : :
9425 : 11006 : case DW_LNE_set_address:
9426 : 11006 : op_index = 0;
9427 [ - + ]: 11006 : if (unlikely ((size_t) (lineendp - linep) < address_size))
9428 : 0 : goto invalid_unit;
9429 [ + + ]: 11006 : if (address_size == 4)
9430 [ + + ]: 50 : address = read_4ubyte_unaligned_inc (dbg, linep);
9431 : : else
9432 [ + + ]: 10956 : address = read_8ubyte_unaligned_inc (dbg, linep);
9433 : : {
9434 : 11006 : printf (_(" set address to "));
9435 : 11006 : print_dwarf_addr (dwflmod, 0, address, address);
9436 : 11006 : printf ("\n");
9437 : : }
9438 : : break;
9439 : :
9440 : 0 : case DW_LNE_define_file:
9441 : : {
9442 : 0 : char *fname = (char *) linep;
9443 : 0 : unsigned char *endp = memchr (linep, '\0',
9444 : 0 : lineendp - linep);
9445 [ # # ]: 0 : if (unlikely (endp == NULL))
9446 : 0 : goto invalid_unit;
9447 : 0 : linep = endp + 1;
9448 : :
9449 : 0 : unsigned int diridx;
9450 [ # # ]: 0 : if (lineendp - linep < 1)
9451 : 0 : goto invalid_unit;
9452 : 0 : get_uleb128 (diridx, linep, lineendp);
9453 : 0 : Dwarf_Word mtime;
9454 [ # # ]: 0 : if (lineendp - linep < 1)
9455 : 0 : goto invalid_unit;
9456 : 0 : get_uleb128 (mtime, linep, lineendp);
9457 : 0 : Dwarf_Word filelength;
9458 [ # # ]: 0 : if (lineendp - linep < 1)
9459 : 0 : goto invalid_unit;
9460 : 0 : get_uleb128 (filelength, linep, lineendp);
9461 : :
9462 : 0 : printf (_("\
9463 : : define new file: dir=%u, mtime=%" PRIu64 ", length=%" PRIu64 ", name=%s\n"),
9464 : : diridx, (uint64_t) mtime, (uint64_t) filelength,
9465 : : fname);
9466 : : }
9467 : : break;
9468 : :
9469 : 105860 : case DW_LNE_set_discriminator:
9470 : : /* Takes one ULEB128 parameter, the discriminator. */
9471 [ + - - + ]: 105860 : if (unlikely (standard_opcode_lengths[opcode] != 1
9472 : : || lineendp - linep < 1))
9473 : 0 : goto invalid_unit;
9474 : :
9475 : 105860 : get_uleb128 (u128, linep, lineendp);
9476 : 105860 : printf (_(" set discriminator to %u\n"), u128);
9477 : : break;
9478 : :
9479 : 14 : case DW_LNE_NVIDIA_inlined_call:
9480 : : {
9481 [ - + ]: 14 : if (unlikely (linep >= lineendp))
9482 : 0 : goto invalid_data;
9483 : :
9484 : 14 : unsigned int context;
9485 : 14 : get_uleb128 (context, linep, lineendp);
9486 : :
9487 [ - + ]: 14 : if (unlikely (linep >= lineendp))
9488 : 0 : goto invalid_data;
9489 : :
9490 : 14 : unsigned int function_name;
9491 : 14 : get_uleb128 (function_name, linep, lineendp);
9492 : 14 : function_name += debug_str_offset;
9493 : :
9494 : 14 : Elf_Data *str_data = dbg->sectiondata[IDX_debug_str];
9495 : 14 : char *function_str;
9496 [ + - - + ]: 14 : if (str_data == NULL || function_name >= str_data->d_size
9497 [ - + ]: 14 : || memchr (str_data->d_buf + function_name, '\0',
9498 : : str_data->d_size - function_name) == NULL)
9499 : : function_str = "???";
9500 : : else
9501 : 14 : function_str = (char *) str_data->d_buf + function_name;
9502 : :
9503 : 14 : printf (_(" set inlined context %u,"
9504 : : " function name %s (0x%x)\n"),
9505 : : context, function_str, function_name);
9506 : : break;
9507 : : }
9508 : :
9509 : 0 : case DW_LNE_NVIDIA_set_function_name:
9510 : : {
9511 [ # # ]: 0 : if (unlikely (linep >= lineendp))
9512 : 0 : goto invalid_data;
9513 : :
9514 : 0 : unsigned int function_name;
9515 : 0 : get_uleb128 (function_name, linep, lineendp);
9516 : 0 : function_name += debug_str_offset;
9517 : :
9518 : 0 : Elf_Data *str_data = dbg->sectiondata[IDX_debug_str];
9519 : 0 : char *function_str;
9520 [ # # # # ]: 0 : if (str_data == NULL || function_name >= str_data->d_size
9521 [ # # ]: 0 : || memchr (str_data->d_buf + function_name, '\0',
9522 : : str_data->d_size - function_name) == NULL)
9523 : : function_str = "???";
9524 : : else
9525 : 0 : function_str = (char *) str_data->d_buf + function_name;
9526 : :
9527 : 0 : printf (_(" set function name %s (0x%x)\n"),
9528 : : function_str, function_name);
9529 : : }
9530 : : break;
9531 : :
9532 : 0 : default:
9533 : : /* Unknown, ignore it. */
9534 : 0 : puts (_(" unknown opcode"));
9535 : 0 : linep += len - 1;
9536 : 0 : break;
9537 : : }
9538 : : }
9539 [ + - ]: 1530578 : else if (opcode <= DW_LNS_set_isa)
9540 : : {
9541 : : /* This is a known standard opcode. */
9542 [ + + + + : 1530578 : switch (opcode)
+ + - + +
+ - - ]
9543 : : {
9544 : 232608 : case DW_LNS_copy:
9545 : : /* Takes no argument. */
9546 : 232608 : puts (_(" copy"));
9547 : 232608 : break;
9548 : :
9549 : 15560 : case DW_LNS_advance_pc:
9550 : : /* Takes one uleb128 parameter which is added to the
9551 : : address. */
9552 [ - + ]: 15560 : if (lineendp - linep < 1)
9553 : 0 : goto invalid_unit;
9554 : 15560 : get_uleb128 (u128, linep, lineendp);
9555 : 15560 : advance_pc (u128);
9556 : : {
9557 : 15560 : printf (_(" advance address by %u to "),
9558 : : op_addr_advance);
9559 : 15560 : print_dwarf_addr (dwflmod, 0, address, address);
9560 [ - + ]: 15560 : if (op_index > 0)
9561 : 0 : printf (_(", op_index to %u"), op_index);
9562 : 15560 : printf ("\n");
9563 : : }
9564 : : break;
9565 : :
9566 : 178510 : case DW_LNS_advance_line:
9567 : : /* Takes one sleb128 parameter which is added to the
9568 : : line. */
9569 [ - + ]: 178510 : if (lineendp - linep < 1)
9570 : 0 : goto invalid_unit;
9571 : 178510 : get_sleb128 (s128, linep, lineendp);
9572 : 178510 : line += s128;
9573 : 178510 : printf (_("\
9574 : : advance line by constant %d to %" PRId64 "\n"),
9575 : : s128, (int64_t) line);
9576 : : break;
9577 : :
9578 : 65152 : case DW_LNS_set_file:
9579 : : /* Takes one uleb128 parameter which is stored in file. */
9580 [ - + ]: 65152 : if (lineendp - linep < 1)
9581 : 0 : goto invalid_unit;
9582 : 65152 : get_uleb128 (u128, linep, lineendp);
9583 : 65152 : printf (_(" set file to %" PRIu64 "\n"),
9584 : : (uint64_t) u128);
9585 : : break;
9586 : :
9587 : 581540 : case DW_LNS_set_column:
9588 : : /* Takes one uleb128 parameter which is stored in column. */
9589 [ + - - + ]: 581540 : if (unlikely (standard_opcode_lengths[opcode] != 1
9590 : : || lineendp - linep < 1))
9591 : 0 : goto invalid_unit;
9592 : :
9593 : 581540 : get_uleb128 (u128, linep, lineendp);
9594 : 581540 : printf (_(" set column to %" PRIu64 "\n"),
9595 : : (uint64_t) u128);
9596 : : break;
9597 : :
9598 : 404404 : case DW_LNS_negate_stmt:
9599 : : /* Takes no argument. */
9600 : 404404 : is_stmt = 1 - is_stmt;
9601 : 404404 : printf (_(" set '%s' to %" PRIuFAST8 "\n"),
9602 : : "is_stmt", is_stmt);
9603 : : break;
9604 : :
9605 : 0 : case DW_LNS_set_basic_block:
9606 : : /* Takes no argument. */
9607 : 0 : puts (_(" set basic block flag"));
9608 : 0 : break;
9609 : :
9610 : 52750 : case DW_LNS_const_add_pc:
9611 : : /* Takes no argument. */
9612 : :
9613 [ - + ]: 52750 : if (unlikely (line_range == 0))
9614 : 0 : goto invalid_unit;
9615 : :
9616 : 52750 : advance_pc ((255 - opcode_base) / line_range);
9617 : : {
9618 : 52750 : printf (_(" advance address by constant %u to "),
9619 : : op_addr_advance);
9620 : 52750 : print_dwarf_addr (dwflmod, 0, address, address);
9621 [ - + ]: 52750 : if (op_index > 0)
9622 : 0 : printf (_(", op_index to %u"), op_index);
9623 : 52750 : printf ("\n");
9624 : : }
9625 : : break;
9626 : :
9627 : 44 : case DW_LNS_fixed_advance_pc:
9628 : : /* Takes one 16 bit parameter which is added to the
9629 : : address. */
9630 [ + - - + ]: 44 : if (unlikely (standard_opcode_lengths[opcode] != 1
9631 : : || lineendp - linep < 2))
9632 : 0 : goto invalid_unit;
9633 : :
9634 [ - + ]: 44 : u128 = read_2ubyte_unaligned_inc (dbg, linep);
9635 : 44 : address += u128;
9636 : 44 : op_index = 0;
9637 : : {
9638 : 44 : printf (_("\
9639 : : advance address by fixed value %u to \n"),
9640 : : u128);
9641 : 44 : print_dwarf_addr (dwflmod, 0, address, address);
9642 : 44 : printf ("\n");
9643 : : }
9644 : : break;
9645 : :
9646 : 10 : case DW_LNS_set_prologue_end:
9647 : : /* Takes no argument. */
9648 : 10 : puts (_(" set prologue end flag"));
9649 : 10 : break;
9650 : :
9651 : 0 : case DW_LNS_set_epilogue_begin:
9652 : : /* Takes no argument. */
9653 : 0 : puts (_(" set epilogue begin flag"));
9654 : 0 : break;
9655 : :
9656 : 0 : case DW_LNS_set_isa:
9657 : : /* Takes one uleb128 parameter which is stored in isa. */
9658 [ # # # # ]: 0 : if (unlikely (standard_opcode_lengths[opcode] != 1
9659 : : || lineendp - linep < 1))
9660 : 0 : goto invalid_unit;
9661 : :
9662 : 0 : get_uleb128 (u128, linep, lineendp);
9663 [ + + ]: 2334678 : printf (_(" set isa to %u\n"), u128);
9664 : : break;
9665 : : }
9666 : : }
9667 : : else
9668 : : {
9669 : : /* This is a new opcode the generator but not we know about.
9670 : : Read the parameters associated with it but then discard
9671 : : everything. Read all the parameters for this opcode. */
9672 : 0 : printf (ngettext (" unknown opcode with %" PRIu8 " parameter:",
9673 : : " unknown opcode with %" PRIu8 " parameters:",
9674 : : standard_opcode_lengths[opcode]),
9675 : 0 : standard_opcode_lengths[opcode]);
9676 : 0 : for (int n = standard_opcode_lengths[opcode];
9677 [ # # # # ]: 0 : n > 0 && linep < lineendp; --n)
9678 : : {
9679 : 0 : get_uleb128 (u128, linep, lineendp);
9680 [ # # ]: 0 : if (n != standard_opcode_lengths[opcode])
9681 [ # # ]: 0 : putc_unlocked (',', stdout);
9682 : 0 : printf (" %u", u128);
9683 : : }
9684 : :
9685 : : /* Next round, ignore this opcode. */
9686 : 0 : continue;
9687 : : }
9688 : : }
9689 : : }
9690 : :
9691 : : /* There must only be one data block. */
9692 [ - + ]: 104 : assert (elf_getdata (scn, data) == NULL);
9693 : : }
9694 : :
9695 : :
9696 : : static void
9697 : 40 : print_debug_loclists_section (Dwfl_Module *dwflmod,
9698 : : Ebl *ebl,
9699 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
9700 : : Elf_Scn *scn, GElf_Shdr *shdr,
9701 : : Dwarf *dbg)
9702 : : {
9703 : 40 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_loclists, scn);
9704 [ + - ]: 40 : if (data == NULL)
9705 : 0 : return;
9706 : :
9707 : 40 : printf (_("\
9708 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
9709 : : elf_ndxscn (scn), section_name (ebl, shdr),
9710 : 40 : (uint64_t) shdr->sh_offset);
9711 : :
9712 : : /* For the listptr to get the base address/CU. */
9713 : 40 : sort_listptr (&known_loclistsptr, "loclistsptr");
9714 : 40 : size_t listptr_idx = 0;
9715 : :
9716 : 40 : const unsigned char *readp = data->d_buf;
9717 : 40 : const unsigned char *const dataend = ((unsigned char *) data->d_buf
9718 : 40 : + data->d_size);
9719 [ + + ]: 3054 : while (readp < dataend)
9720 : : {
9721 [ - + ]: 3014 : if (unlikely (readp > dataend - 4))
9722 : : {
9723 : 0 : invalid_data:
9724 : 0 : error (0, 0, _("invalid data in section [%zu] '%s'"),
9725 : : elf_ndxscn (scn), section_name (ebl, shdr));
9726 : 0 : return;
9727 : : }
9728 : :
9729 : 3014 : ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
9730 : 3014 : printf (_("Table at Offset 0x%" PRIx64 ":\n\n"),
9731 : : (uint64_t) offset);
9732 : :
9733 [ - + ]: 3014 : uint64_t unit_length = read_4ubyte_unaligned_inc (dbg, readp);
9734 : 3014 : unsigned int offset_size = 4;
9735 [ - + ]: 3014 : if (unlikely (unit_length == 0xffffffff))
9736 : : {
9737 [ # # ]: 0 : if (unlikely (readp > dataend - 8))
9738 : 0 : goto invalid_data;
9739 : :
9740 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, readp);
9741 : 0 : offset_size = 8;
9742 : : }
9743 : 3014 : printf (_(" Length: %8" PRIu64 "\n"), unit_length);
9744 : :
9745 : : /* We need at least 2-bytes + 1-byte + 1-byte + 4-bytes = 8
9746 : : bytes to complete the header. And this unit cannot go beyond
9747 : : the section data. */
9748 [ + - ]: 3014 : if (readp > dataend - 8
9749 [ + - ]: 3014 : || unit_length < 8
9750 [ - + ]: 3014 : || unit_length > (uint64_t) (dataend - readp))
9751 : 0 : goto invalid_data;
9752 : :
9753 : 3014 : const unsigned char *nexthdr = readp + unit_length;
9754 : :
9755 [ - + ]: 3014 : uint16_t version = read_2ubyte_unaligned_inc (dbg, readp);
9756 : 3014 : printf (_(" DWARF version: %8" PRIu16 "\n"), version);
9757 : :
9758 [ - + ]: 3014 : if (version != 5)
9759 : : {
9760 : 0 : error (0, 0, _("Unknown version"));
9761 : 0 : goto next_table;
9762 : : }
9763 : :
9764 : 3014 : uint8_t address_size = *readp++;
9765 : 3014 : printf (_(" Address size: %8" PRIu64 "\n"),
9766 : : (uint64_t) address_size);
9767 : :
9768 [ - + ]: 3014 : if (address_size != 4 && address_size != 8)
9769 : : {
9770 : 0 : error (0, 0, _("unsupported address size"));
9771 : 0 : goto next_table;
9772 : : }
9773 : :
9774 : 3014 : uint8_t segment_size = *readp++;
9775 : 3014 : printf (_(" Segment size: %8" PRIu64 "\n"),
9776 : : (uint64_t) segment_size);
9777 : :
9778 [ - + ]: 3014 : if (segment_size != 0)
9779 : : {
9780 : 0 : error (0, 0, _("unsupported segment size"));
9781 : 0 : goto next_table;
9782 : : }
9783 : :
9784 [ - + ]: 3014 : uint32_t offset_entry_count = read_4ubyte_unaligned_inc (dbg, readp);
9785 : 3014 : printf (_(" Offset entries: %8" PRIu64 "\n"),
9786 : : (uint64_t) offset_entry_count);
9787 : :
9788 : : /* We need the CU that uses this unit to get the initial base address. */
9789 : 3014 : Dwarf_Addr cu_base = 0;
9790 : 3014 : struct Dwarf_CU *cu = NULL;
9791 [ - + ]: 3014 : if (listptr_cu (&known_loclistsptr, &listptr_idx,
9792 : : (Dwarf_Off) offset,
9793 : 3014 : (Dwarf_Off) (nexthdr - (unsigned char *) data->d_buf),
9794 : : &cu_base, &cu)
9795 [ # # ]: 0 : || split_dwarf_cu_base (dbg, &cu, &cu_base))
9796 : 3014 : {
9797 : 3014 : Dwarf_Die cudie;
9798 [ - + ]: 3014 : if (dwarf_cu_die (cu, &cudie,
9799 : : NULL, NULL, NULL, NULL,
9800 : : NULL, NULL) == NULL)
9801 : 0 : printf (_(" Unknown CU base: "));
9802 : : else
9803 : 3014 : printf (_(" CU [%6" PRIx64 "] base: "),
9804 : : dwarf_dieoffset (&cudie));
9805 : 3014 : print_dwarf_addr (dwflmod, address_size, cu_base, cu_base);
9806 : 3014 : printf ("\n");
9807 : : }
9808 : : else
9809 : 0 : printf (_(" Not associated with a CU.\n"));
9810 : :
9811 : 3014 : printf ("\n");
9812 : :
9813 : 3014 : const unsigned char *offset_array_start = readp;
9814 [ + + ]: 3014 : if (offset_entry_count > 0)
9815 : : {
9816 : 4 : uint64_t max_entries = (unit_length - 8) / offset_size;
9817 [ - + ]: 4 : if (offset_entry_count > max_entries)
9818 : : {
9819 : 0 : error (0, 0,
9820 : 0 : _("too many offset entries for unit length"));
9821 : 0 : offset_entry_count = max_entries;
9822 : : }
9823 : :
9824 : 4 : printf (_(" Offsets starting at 0x%" PRIx64 ":\n"),
9825 : : (uint64_t) (offset_array_start
9826 : 4 : - (unsigned char *) data->d_buf));
9827 [ + + ]: 36 : for (uint32_t idx = 0; idx < offset_entry_count; idx++)
9828 : : {
9829 : 32 : printf (" [%6" PRIu32 "] ", idx);
9830 [ + - ]: 32 : if (offset_size == 4)
9831 : : {
9832 [ - + ]: 32 : uint32_t off = read_4ubyte_unaligned_inc (dbg, readp);
9833 : 32 : printf ("0x%" PRIx32 "\n", off);
9834 : : }
9835 : : else
9836 : : {
9837 [ # # ]: 0 : uint64_t off = read_8ubyte_unaligned_inc (dbg, readp);
9838 : 32 : printf ("0x%" PRIx64 "\n", off);
9839 : : }
9840 : : }
9841 : 4 : printf ("\n");
9842 : : }
9843 : :
9844 : 3014 : Dwarf_Addr base = cu_base;
9845 : 3014 : bool start_of_list = true;
9846 : 3014 : while (readp < nexthdr)
9847 : : {
9848 : 725108 : Dwarf_Off off = (Dwarf_Off) (readp - (unsigned char *) data->d_buf);
9849 [ + + ]: 725108 : if (listptr_attr (&known_loclistsptr, listptr_idx, off,
9850 : : DW_AT_GNU_locviews))
9851 : 107188 : {
9852 : 107188 : Dwarf_Off next_off = next_listptr_offset (&known_loclistsptr,
9853 : : &listptr_idx, off);
9854 : 107188 : const unsigned char *locp = readp;
9855 : 107188 : const unsigned char *locendp;
9856 [ + - ]: 107188 : if (next_off == 0
9857 [ + - ]: 107188 : || next_off > (size_t) (nexthdr - ((const unsigned char *)
9858 : : data->d_buf)))
9859 : : locendp = nexthdr;
9860 : : else
9861 : 107188 : locendp = (const unsigned char *) data->d_buf + next_off;
9862 : :
9863 : 706856 : printf (" Offset: %" PRIx64 ", Index: %" PRIx64 "\n",
9864 : : (uint64_t) (readp - (unsigned char *) data->d_buf),
9865 : 107188 : (uint64_t) (readp - offset_array_start));
9866 : :
9867 : 599668 : while (locp < locendp)
9868 : : {
9869 : 492480 : uint64_t v1, v2;
9870 : 492480 : get_uleb128 (v1, locp, locendp);
9871 [ - + ]: 492480 : if (locp >= locendp)
9872 : : {
9873 : 0 : printf (_(" <INVALID DATA>\n"));
9874 : : break;
9875 : : }
9876 : 492480 : get_uleb128 (v2, locp, locendp);
9877 [ + + ]: 599668 : printf (" view pair %" PRId64 ", %" PRId64 "\n", v1, v2);
9878 : : }
9879 : :
9880 : 107188 : printf ("\n");
9881 : 107188 : readp = (unsigned char *) locendp;
9882 : 107188 : continue;
9883 : : }
9884 : :
9885 : 617920 : uint8_t kind = *readp++;
9886 : 617920 : uint64_t op1, op2, len;
9887 : :
9888 : : /* Skip padding. */
9889 [ - + ]: 617920 : if (start_of_list && kind == DW_LLE_end_of_list)
9890 : 0 : continue;
9891 : :
9892 [ + + ]: 617920 : if (start_of_list)
9893 : : {
9894 : 107252 : base = cu_base;
9895 : 107252 : printf (" Offset: %" PRIx64 ", Index: %" PRIx64 "\n",
9896 : 107252 : (uint64_t) (readp - (unsigned char *) data->d_buf - 1),
9897 : 107252 : (uint64_t) (readp - offset_array_start - 1));
9898 : 107252 : start_of_list = false;
9899 : : }
9900 : :
9901 : 617920 : printf (" %s", dwarf_loc_list_encoding_name (kind));
9902 [ + - - + : 617920 : switch (kind)
+ - + - +
- - ]
9903 : : {
9904 : 107252 : case DW_LLE_end_of_list:
9905 : 107252 : start_of_list = true;
9906 : 107252 : printf ("\n\n");
9907 : : break;
9908 : :
9909 : 0 : case DW_LLE_base_addressx:
9910 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
9911 : : {
9912 : 0 : invalid_entry:
9913 : 0 : error (0, 0, _("invalid loclists data"));
9914 : 0 : goto next_table;
9915 : : }
9916 : 0 : get_uleb128 (op1, readp, nexthdr);
9917 : 0 : printf (" %" PRIx64 "\n", op1);
9918 [ # # ]: 0 : if (! print_unresolved_addresses)
9919 : : {
9920 : 0 : Dwarf_Addr addr;
9921 [ # # ]: 0 : if (get_indexed_addr (cu, op1, &addr) != 0)
9922 : 0 : printf (" ???\n");
9923 : : else
9924 : : {
9925 : 0 : printf (" ");
9926 : 0 : print_dwarf_addr (dwflmod, address_size, addr, addr);
9927 : 0 : printf ("\n");
9928 : : }
9929 : : }
9930 : : break;
9931 : :
9932 : 0 : case DW_LLE_startx_endx:
9933 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
9934 : 0 : goto invalid_entry;
9935 : 0 : get_uleb128 (op1, readp, nexthdr);
9936 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
9937 : 0 : goto invalid_entry;
9938 : 0 : get_uleb128 (op2, readp, nexthdr);
9939 : 0 : printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
9940 [ # # ]: 0 : if (! print_unresolved_addresses)
9941 : : {
9942 : 0 : Dwarf_Addr addr1;
9943 : 0 : Dwarf_Addr addr2;
9944 [ # # ]: 0 : if (get_indexed_addr (cu, op1, &addr1) != 0
9945 [ # # ]: 0 : || get_indexed_addr (cu, op2, &addr2) != 0)
9946 : : {
9947 : 0 : printf (" ???..\n");
9948 : 0 : printf (" ???\n");
9949 : : }
9950 : : else
9951 : : {
9952 : 0 : printf (" ");
9953 : 0 : print_dwarf_addr (dwflmod, address_size, addr1, addr1);
9954 : 0 : printf ("..\n ");
9955 : 0 : print_dwarf_addr (dwflmod, address_size,
9956 : : addr2 - 1, addr2);
9957 : 0 : printf ("\n");
9958 : : }
9959 : : }
9960 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
9961 : 0 : goto invalid_entry;
9962 : 0 : get_uleb128 (len, readp, nexthdr);
9963 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < len)
9964 : 0 : goto invalid_entry;
9965 : 0 : print_ops (dwflmod, dbg, 8, 8, version,
9966 : : address_size, offset_size, cu, len, readp);
9967 : 0 : readp += len;
9968 : 0 : break;
9969 : :
9970 : 52 : case DW_LLE_startx_length:
9971 [ - + ]: 52 : if ((uint64_t) (nexthdr - readp) < 1)
9972 : 0 : goto invalid_entry;
9973 : 52 : get_uleb128 (op1, readp, nexthdr);
9974 [ - + ]: 52 : if ((uint64_t) (nexthdr - readp) < 1)
9975 : 0 : goto invalid_entry;
9976 : 52 : get_uleb128 (op2, readp, nexthdr);
9977 : 52 : printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
9978 [ + - ]: 52 : if (! print_unresolved_addresses)
9979 : : {
9980 : 52 : Dwarf_Addr addr1;
9981 : 52 : Dwarf_Addr addr2;
9982 [ - + ]: 52 : if (get_indexed_addr (cu, op1, &addr1) != 0)
9983 : : {
9984 : 0 : printf (" ???..\n");
9985 : 0 : printf (" ???\n");
9986 : : }
9987 : : else
9988 : : {
9989 : 52 : addr2 = addr1 + op2;
9990 : 52 : printf (" ");
9991 : 52 : print_dwarf_addr (dwflmod, address_size, addr1, addr1);
9992 : 52 : printf ("..\n ");
9993 : 52 : print_dwarf_addr (dwflmod, address_size,
9994 : : addr2 - 1, addr2);
9995 : 52 : printf ("\n");
9996 : : }
9997 : : }
9998 [ - + ]: 52 : if ((uint64_t) (nexthdr - readp) < 1)
9999 : 0 : goto invalid_entry;
10000 : 52 : get_uleb128 (len, readp, nexthdr);
10001 [ - + ]: 52 : if ((uint64_t) (nexthdr - readp) < len)
10002 : 0 : goto invalid_entry;
10003 : 52 : print_ops (dwflmod, dbg, 8, 8, version,
10004 : : address_size, offset_size, cu, len, readp);
10005 : 52 : readp += len;
10006 : 52 : break;
10007 : :
10008 : 480824 : case DW_LLE_offset_pair:
10009 [ - + ]: 480824 : if ((uint64_t) (nexthdr - readp) < 1)
10010 : 0 : goto invalid_entry;
10011 : 480824 : get_uleb128 (op1, readp, nexthdr);
10012 [ - + ]: 480824 : if ((uint64_t) (nexthdr - readp) < 1)
10013 : 0 : goto invalid_entry;
10014 : 480824 : get_uleb128 (op2, readp, nexthdr);
10015 : 480824 : printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
10016 [ + - ]: 480824 : if (! print_unresolved_addresses)
10017 : : {
10018 : 480824 : op1 += base;
10019 : 480824 : op2 += base;
10020 : 480824 : printf (" ");
10021 : 480824 : print_dwarf_addr (dwflmod, address_size, op1, op1);
10022 : 480824 : printf ("..\n ");
10023 : 480824 : print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
10024 : 480824 : printf ("\n");
10025 : : }
10026 [ - + ]: 480824 : if ((uint64_t) (nexthdr - readp) < 1)
10027 : 0 : goto invalid_entry;
10028 : 480824 : get_uleb128 (len, readp, nexthdr);
10029 [ - + ]: 480824 : if ((uint64_t) (nexthdr - readp) < len)
10030 : 0 : goto invalid_entry;
10031 : 480824 : print_ops (dwflmod, dbg, 8, 8, version,
10032 : : address_size, offset_size, cu, len, readp);
10033 : 480824 : readp += len;
10034 : 480824 : break;
10035 : :
10036 : 0 : case DW_LLE_default_location:
10037 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
10038 : 0 : goto invalid_entry;
10039 : 0 : get_uleb128 (len, readp, nexthdr);
10040 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < len)
10041 : 0 : goto invalid_entry;
10042 : 0 : print_ops (dwflmod, dbg, 8, 8, version,
10043 : : address_size, offset_size, cu, len, readp);
10044 : 0 : readp += len;
10045 : 0 : break;
10046 : :
10047 : 18084 : case DW_LLE_base_address:
10048 [ - + ]: 18084 : if (address_size == 4)
10049 : : {
10050 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 4)
10051 : 0 : goto invalid_entry;
10052 [ # # ]: 0 : op1 = read_4ubyte_unaligned_inc (dbg, readp);
10053 : : }
10054 : : else
10055 : : {
10056 [ - + ]: 18084 : if ((uint64_t) (nexthdr - readp) < 8)
10057 : 0 : goto invalid_entry;
10058 [ - + ]: 18084 : op1 = read_8ubyte_unaligned_inc (dbg, readp);
10059 : : }
10060 : 18084 : base = op1;
10061 : 18084 : printf (" 0x%" PRIx64 "\n", base);
10062 [ - + ]: 18084 : if (! print_unresolved_addresses)
10063 : : {
10064 : 18084 : printf (" ");
10065 : 18084 : print_dwarf_addr (dwflmod, address_size, base, base);
10066 : 18084 : printf ("\n");
10067 : : }
10068 : : break;
10069 : :
10070 : 0 : case DW_LLE_start_end:
10071 [ # # ]: 0 : if (address_size == 4)
10072 : : {
10073 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 8)
10074 : 0 : goto invalid_entry;
10075 [ # # ]: 0 : op1 = read_4ubyte_unaligned_inc (dbg, readp);
10076 [ # # ]: 0 : op2 = read_4ubyte_unaligned_inc (dbg, readp);
10077 : : }
10078 : : else
10079 : : {
10080 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 16)
10081 : 0 : goto invalid_entry;
10082 [ # # ]: 0 : op1 = read_8ubyte_unaligned_inc (dbg, readp);
10083 [ # # ]: 0 : op2 = read_8ubyte_unaligned_inc (dbg, readp);
10084 : : }
10085 : 0 : printf (" 0x%" PRIx64 "..0x%" PRIx64 "\n", op1, op2);
10086 [ # # ]: 0 : if (! print_unresolved_addresses)
10087 : : {
10088 : 0 : printf (" ");
10089 : 0 : print_dwarf_addr (dwflmod, address_size, op1, op1);
10090 : 0 : printf ("..\n ");
10091 : 0 : print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
10092 : 0 : printf ("\n");
10093 : : }
10094 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
10095 : 0 : goto invalid_entry;
10096 : 0 : get_uleb128 (len, readp, nexthdr);
10097 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < len)
10098 : 0 : goto invalid_entry;
10099 : 0 : print_ops (dwflmod, dbg, 8, 8, version,
10100 : : address_size, offset_size, cu, len, readp);
10101 : 0 : readp += len;
10102 : 0 : break;
10103 : :
10104 : 11708 : case DW_LLE_start_length:
10105 [ - + ]: 11708 : if (address_size == 4)
10106 : : {
10107 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 4)
10108 : 0 : goto invalid_entry;
10109 [ # # ]: 0 : op1 = read_4ubyte_unaligned_inc (dbg, readp);
10110 : : }
10111 : : else
10112 : : {
10113 [ - + ]: 11708 : if ((uint64_t) (nexthdr - readp) < 8)
10114 : 0 : goto invalid_entry;
10115 [ - + ]: 11708 : op1 = read_8ubyte_unaligned_inc (dbg, readp);
10116 : : }
10117 [ - + ]: 11708 : if ((uint64_t) (nexthdr - readp) < 1)
10118 : 0 : goto invalid_entry;
10119 : 11708 : get_uleb128 (op2, readp, nexthdr);
10120 : 11708 : printf (" 0x%" PRIx64 ", %" PRIx64 "\n", op1, op2);
10121 [ + + ]: 11708 : if (! print_unresolved_addresses)
10122 : : {
10123 : 11706 : op2 = op1 + op2;
10124 : 11706 : printf (" ");
10125 : 11706 : print_dwarf_addr (dwflmod, address_size, op1, op1);
10126 : 11706 : printf ("..\n ");
10127 : 11706 : print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
10128 : 11706 : printf ("\n");
10129 : : }
10130 [ - + ]: 11708 : if ((uint64_t) (nexthdr - readp) < 1)
10131 : 0 : goto invalid_entry;
10132 : 11708 : get_uleb128 (len, readp, nexthdr);
10133 [ - + ]: 11708 : if ((uint64_t) (nexthdr - readp) < len)
10134 : 0 : goto invalid_entry;
10135 : 11708 : print_ops (dwflmod, dbg, 8, 8, version,
10136 : : address_size, offset_size, cu, len, readp);
10137 : 11708 : readp += len;
10138 : 11708 : break;
10139 : :
10140 : 0 : case DW_LLE_GNU_view_pair:
10141 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
10142 : 0 : goto invalid_entry;
10143 : 0 : get_uleb128 (op1, readp, nexthdr);
10144 [ # # ]: 0 : if ((uint64_t) (nexthdr - readp) < 1)
10145 : 0 : goto invalid_entry;
10146 : 0 : get_uleb128 (op2, readp, nexthdr);
10147 [ + + ]: 728122 : printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
10148 : : break;
10149 : :
10150 : 0 : default:
10151 : 0 : goto invalid_entry;
10152 : : }
10153 : : }
10154 : :
10155 : 3014 : next_table:
10156 [ - + ]: 3014 : if (readp != nexthdr)
10157 : : {
10158 : 0 : size_t padding = nexthdr - readp;
10159 : 0 : printf (_(" %zu padding bytes\n\n"), padding);
10160 : 0 : readp = nexthdr;
10161 : : }
10162 : : }
10163 : : }
10164 : :
10165 : :
10166 : : static void
10167 : 52 : print_debug_loc_section (Dwfl_Module *dwflmod,
10168 : : Ebl *ebl, GElf_Ehdr *ehdr,
10169 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
10170 : : {
10171 : 52 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_loc, scn);
10172 [ - + ]: 52 : if (data == NULL)
10173 : 0 : return;
10174 : :
10175 : 52 : printf (_("\
10176 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
10177 : : elf_ndxscn (scn), section_name (ebl, shdr),
10178 : 52 : (uint64_t) shdr->sh_offset);
10179 : :
10180 : 52 : sort_listptr (&known_locsptr, "loclistptr");
10181 : 52 : size_t listptr_idx = 0;
10182 : :
10183 [ + - ]: 52 : uint_fast8_t address_size = ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
10184 : 52 : uint_fast8_t offset_size = 4;
10185 : :
10186 : 52 : bool first = true;
10187 : 52 : Dwarf_Addr base = 0;
10188 : 52 : unsigned char *readp = data->d_buf;
10189 : 52 : unsigned char *const endp = (unsigned char *) data->d_buf + data->d_size;
10190 : 52 : Dwarf_CU *last_cu = NULL;
10191 [ + + ]: 490 : while (readp < endp)
10192 : : {
10193 : 438 : ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
10194 : 438 : Dwarf_CU *cu = last_cu;
10195 : 438 : unsigned int attr = 0;
10196 : :
10197 [ + + - + ]: 438 : if (first && skip_listptr_hole (&known_locsptr, &listptr_idx,
10198 : : &address_size, &offset_size, &base,
10199 : : &cu, offset, &readp, endp, &attr))
10200 : 0 : continue;
10201 : :
10202 [ + + ]: 438 : if (last_cu != cu)
10203 : : {
10204 : 60 : Dwarf_Die cudie;
10205 [ - + ]: 60 : if (dwarf_cu_die (cu, &cudie,
10206 : : NULL, NULL, NULL, NULL,
10207 : : NULL, NULL) == NULL)
10208 : 0 : printf (_("\n Unknown CU base: "));
10209 : : else
10210 : 60 : printf (_("\n CU [%6" PRIx64 "] base: "),
10211 : : dwarf_dieoffset (&cudie));
10212 : 60 : print_dwarf_addr (dwflmod, address_size, base, base);
10213 : 60 : printf ("\n");
10214 : : }
10215 : 438 : last_cu = cu;
10216 : :
10217 [ - + ]: 438 : if (attr == DW_AT_GNU_locviews)
10218 : 0 : {
10219 : 0 : Dwarf_Off next_off = next_listptr_offset (&known_locsptr,
10220 : : &listptr_idx, offset);
10221 : 0 : const unsigned char *locp = readp;
10222 : 0 : const unsigned char *locendp;
10223 [ # # ]: 0 : if (next_off == 0
10224 : 0 : || next_off > (size_t) (endp
10225 [ # # ]: 0 : - (const unsigned char *) data->d_buf))
10226 : 0 : locendp = endp;
10227 : : else
10228 : 0 : locendp = (const unsigned char *) data->d_buf + next_off;
10229 : :
10230 [ # # ]: 0 : while (locp < locendp)
10231 : : {
10232 : 0 : uint64_t v1, v2;
10233 : 0 : get_uleb128 (v1, locp, locendp);
10234 [ # # ]: 0 : if (locp >= locendp)
10235 : : {
10236 : 0 : printf (_(" [%6tx] <INVALID DATA>\n"), offset);
10237 : : break;
10238 : : }
10239 : 0 : get_uleb128 (v2, locp, locendp);
10240 [ # # ]: 0 : if (first) /* First view pair in a list. */
10241 : 0 : printf (" [%6tx] ", offset);
10242 : : else
10243 : 0 : printf (" ");
10244 : 0 : printf ("view pair %" PRId64 ", %" PRId64 "\n", v1, v2);
10245 : 0 : first = false;
10246 : : }
10247 : :
10248 : 0 : first = true;
10249 : 0 : readp = (unsigned char *) locendp;
10250 : 0 : continue;
10251 : : }
10252 : :
10253 : : /* GNU DebugFission encoded addresses as addrx. */
10254 : 876 : bool is_debugfission = ((cu != NULL
10255 [ # # ]: 0 : || split_dwarf_cu_base (dbg, &cu, &base))
10256 [ - + - + ]: 438 : && (cu->version < 5
10257 [ + + ]: 438 : && cu->unit_type == DW_UT_split_compile));
10258 [ + + ]: 438 : if (!is_debugfission
10259 [ - + ]: 318 : && unlikely (data->d_size - offset < (size_t) address_size * 2))
10260 : : {
10261 : 0 : invalid_data:
10262 : 0 : printf (_(" [%6tx] <INVALID DATA>\n"), offset);
10263 : 0 : break;
10264 : : }
10265 : :
10266 : 318 : Dwarf_Addr begin;
10267 : 318 : Dwarf_Addr end;
10268 : 438 : bool use_base = true;
10269 : 318 : if (is_debugfission)
10270 : : {
10271 : 120 : const unsigned char *locp = readp;
10272 : 120 : const unsigned char *locendp = readp + data->d_size;
10273 [ - + ]: 120 : if (locp >= locendp)
10274 : 0 : goto invalid_data;
10275 : :
10276 : 120 : Dwarf_Word idx;
10277 : 120 : unsigned char code = *locp++;
10278 [ + - - + : 120 : switch (code)
- ]
10279 : : {
10280 : 40 : case DW_LLE_GNU_end_of_list_entry:
10281 : 40 : begin = 0;
10282 : 40 : end = 0;
10283 : 40 : break;
10284 : :
10285 : 0 : case DW_LLE_GNU_base_address_selection_entry:
10286 [ # # ]: 0 : if (locp >= locendp)
10287 : 0 : goto invalid_data;
10288 : 0 : begin = (Dwarf_Addr) -1;
10289 : 0 : get_uleb128 (idx, locp, locendp);
10290 [ # # ]: 0 : if (get_indexed_addr (cu, idx, &end) != 0)
10291 : 0 : end = idx; /* ... */
10292 : : break;
10293 : :
10294 : 0 : case DW_LLE_GNU_start_end_entry:
10295 [ # # ]: 0 : if (locp >= locendp)
10296 : 0 : goto invalid_data;
10297 : 0 : get_uleb128 (idx, locp, locendp);
10298 [ # # ]: 0 : if (get_indexed_addr (cu, idx, &begin) != 0)
10299 : 0 : begin = idx; /* ... */
10300 [ # # ]: 0 : if (locp >= locendp)
10301 : 0 : goto invalid_data;
10302 : 0 : get_uleb128 (idx, locp, locendp);
10303 [ # # ]: 0 : if (get_indexed_addr (cu, idx, &end) != 0)
10304 : 0 : end = idx; /* ... */
10305 : : use_base = false;
10306 : : break;
10307 : :
10308 : 80 : case DW_LLE_GNU_start_length_entry:
10309 [ - + ]: 80 : if (locp >= locendp)
10310 : 0 : goto invalid_data;
10311 : 80 : get_uleb128 (idx, locp, locendp);
10312 [ - + ]: 80 : if (get_indexed_addr (cu, idx, &begin) != 0)
10313 : 0 : begin = idx; /* ... */
10314 [ - + ]: 80 : if (locendp - locp < 4)
10315 : 0 : goto invalid_data;
10316 [ - + ]: 80 : end = read_4ubyte_unaligned_inc (dbg, locp);
10317 : 80 : end += begin;
10318 : 80 : use_base = false;
10319 : 80 : break;
10320 : :
10321 : 0 : default:
10322 : 0 : goto invalid_data;
10323 : : }
10324 : :
10325 : 120 : readp = (unsigned char *) locp;
10326 : : }
10327 [ + - ]: 318 : else if (address_size == 8)
10328 : : {
10329 [ + + ]: 318 : begin = read_8ubyte_unaligned_inc (dbg, readp);
10330 [ + + ]: 318 : end = read_8ubyte_unaligned_inc (dbg, readp);
10331 : : }
10332 : : else
10333 : : {
10334 [ # # ]: 0 : begin = read_4ubyte_unaligned_inc (dbg, readp);
10335 [ # # ]: 0 : end = read_4ubyte_unaligned_inc (dbg, readp);
10336 [ # # ]: 0 : if (begin == (Dwarf_Addr) (uint32_t) -1)
10337 : 0 : begin = (Dwarf_Addr) -1l;
10338 : : }
10339 : :
10340 [ - + ]: 438 : if (begin == (Dwarf_Addr) -1l) /* Base address entry. */
10341 : : {
10342 [ # # ]: 0 : if (first)
10343 : 0 : printf (" [%6tx] ", offset);
10344 : : else
10345 : 0 : printf (" ");
10346 : 0 : puts (_("base address"));
10347 : 0 : printf (" ");
10348 : 0 : print_dwarf_addr (dwflmod, address_size, end, end);
10349 : 0 : printf ("\n");
10350 : 0 : base = end;
10351 : 0 : first = false;
10352 : : }
10353 [ + + + + ]: 438 : else if (begin == 0 && end == 0) /* End of list entry. */
10354 : : {
10355 [ - + ]: 148 : if (first)
10356 : 438 : printf (_(" [%6tx] empty list\n"), offset);
10357 : : first = true;
10358 : : }
10359 : : else
10360 : : {
10361 : : /* We have a location expression entry. */
10362 [ + + ]: 290 : uint_fast16_t len = read_2ubyte_unaligned_inc (dbg, readp);
10363 : :
10364 [ + + ]: 290 : if (first) /* First entry in a list. */
10365 : 148 : printf (" [%6tx] ", offset);
10366 : : else
10367 : 142 : printf (" ");
10368 : :
10369 : 290 : printf ("range %" PRIx64 ", %" PRIx64 "\n", begin, end);
10370 [ + + ]: 290 : if (! print_unresolved_addresses)
10371 : : {
10372 [ + + ]: 230 : Dwarf_Addr dab = use_base ? base + begin : begin;
10373 [ + + ]: 230 : Dwarf_Addr dae = use_base ? base + end : end;
10374 : 230 : printf (" ");
10375 : 230 : print_dwarf_addr (dwflmod, address_size, dab, dab);
10376 : 230 : printf ("..\n ");
10377 : 230 : print_dwarf_addr (dwflmod, address_size, dae - 1, dae);
10378 : 230 : printf ("\n");
10379 : : }
10380 : :
10381 [ - + ]: 290 : if (endp - readp <= (ptrdiff_t) len)
10382 : : {
10383 : 0 : fputs (_(" <INVALID DATA>\n"), stdout);
10384 : 0 : break;
10385 : : }
10386 : :
10387 [ + - ]: 580 : print_ops (dwflmod, dbg, 11, 11,
10388 : 290 : cu != NULL ? cu->version : 3,
10389 : : address_size, offset_size, cu, len, readp);
10390 : :
10391 : 290 : first = false;
10392 : 290 : readp += len;
10393 : : }
10394 : : }
10395 : : }
10396 : :
10397 : : struct mac_culist
10398 : : {
10399 : : Dwarf_Die die;
10400 : : Dwarf_Off offset;
10401 : : Dwarf_Files *files;
10402 : : struct mac_culist *next;
10403 : : };
10404 : :
10405 : :
10406 : : static int
10407 : 0 : mac_compare (const void *p1, const void *p2)
10408 : : {
10409 : 0 : struct mac_culist *m1 = (struct mac_culist *) p1;
10410 : 0 : struct mac_culist *m2 = (struct mac_culist *) p2;
10411 : :
10412 [ # # ]: 0 : if (m1->offset < m2->offset)
10413 : : return -1;
10414 [ # # ]: 0 : if (m1->offset > m2->offset)
10415 : 0 : return 1;
10416 : : return 0;
10417 : : }
10418 : :
10419 : :
10420 : : static void
10421 : 0 : print_debug_macinfo_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
10422 : : Ebl *ebl,
10423 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
10424 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
10425 : : {
10426 : 0 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_macinfo, scn);
10427 [ # # ]: 0 : if (data == NULL)
10428 : 0 : return;
10429 : :
10430 : 0 : printf (_("\
10431 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
10432 : : elf_ndxscn (scn), section_name (ebl, shdr),
10433 : 0 : (uint64_t) shdr->sh_offset);
10434 [ # # ]: 0 : putc_unlocked ('\n', stdout);
10435 : :
10436 : : /* There is no function in libdw to iterate over the raw content of
10437 : : the section but it is easy enough to do. */
10438 : :
10439 : : /* Get the source file information for all CUs. */
10440 : 0 : Dwarf_Off offset;
10441 : 0 : Dwarf_Off ncu = 0;
10442 : 0 : size_t hsize;
10443 : 0 : struct mac_culist *culist = NULL;
10444 : 0 : size_t nculist = 0;
10445 [ # # ]: 0 : while (dwarf_nextcu (dbg, offset = ncu, &ncu, &hsize, NULL, NULL, NULL) == 0)
10446 : : {
10447 : 0 : Dwarf_Die cudie;
10448 [ # # ]: 0 : if (dwarf_offdie (dbg, offset + hsize, &cudie) == NULL)
10449 : 0 : continue;
10450 : :
10451 : 0 : Dwarf_Attribute attr;
10452 [ # # ]: 0 : if (dwarf_attr (&cudie, DW_AT_macro_info, &attr) == NULL)
10453 : 0 : continue;
10454 : :
10455 : 0 : Dwarf_Word macoff;
10456 [ # # ]: 0 : if (dwarf_formudata (&attr, &macoff) != 0)
10457 : 0 : continue;
10458 : :
10459 : 0 : struct mac_culist *newp = (struct mac_culist *) alloca (sizeof (*newp));
10460 : 0 : newp->die = cudie;
10461 : 0 : newp->offset = macoff;
10462 : 0 : newp->files = NULL;
10463 : 0 : newp->next = culist;
10464 : 0 : culist = newp;
10465 : 0 : ++nculist;
10466 : : }
10467 : :
10468 : : /* Convert the list into an array for easier consumption. */
10469 : 0 : struct mac_culist *cus = (struct mac_culist *) alloca ((nculist + 1)
10470 : : * sizeof (*cus));
10471 : : /* Add sentinel. */
10472 : 0 : cus[nculist].offset = data->d_size;
10473 : 0 : cus[nculist].files = (Dwarf_Files *) -1l;
10474 [ # # ]: 0 : if (nculist > 0)
10475 : : {
10476 [ # # ]: 0 : for (size_t cnt = nculist - 1; culist != NULL; --cnt)
10477 : : {
10478 [ # # ]: 0 : assert (cnt < nculist);
10479 : 0 : cus[cnt] = *culist;
10480 : 0 : culist = culist->next;
10481 : : }
10482 : :
10483 : : /* Sort the array according to the offset in the .debug_macinfo
10484 : : section. Note we keep the sentinel at the end. */
10485 : 0 : qsort (cus, nculist, sizeof (*cus), mac_compare);
10486 : : }
10487 : :
10488 : 0 : const unsigned char *readp = (const unsigned char *) data->d_buf;
10489 : 0 : const unsigned char *readendp = readp + data->d_size;
10490 : 0 : int level = 1;
10491 : :
10492 : 0 : while (readp < readendp)
10493 : : {
10494 : 0 : unsigned int opcode = *readp++;
10495 : 0 : unsigned int u128;
10496 : 0 : unsigned int u128_2;
10497 : 0 : const unsigned char *endp;
10498 : :
10499 [ # # # # ]: 0 : switch (opcode)
10500 : : {
10501 : 0 : case DW_MACINFO_define:
10502 : : case DW_MACINFO_undef:
10503 : : case DW_MACINFO_vendor_ext:
10504 : : /* For the first two opcodes the parameters are
10505 : : line, string
10506 : : For the latter
10507 : : number, string.
10508 : : We can treat these cases together. */
10509 : 0 : get_uleb128 (u128, readp, readendp);
10510 : :
10511 : 0 : endp = memchr (readp, '\0', readendp - readp);
10512 [ # # ]: 0 : if (unlikely (endp == NULL))
10513 : : {
10514 : 0 : printf (_("\
10515 : : %*s*** non-terminated string at end of section"),
10516 : : level, "");
10517 : 0 : return;
10518 : : }
10519 : :
10520 [ # # ]: 0 : if (opcode == DW_MACINFO_define)
10521 : 0 : printf ("%*s#define %s, line %u\n",
10522 : : level, "", (char *) readp, u128);
10523 [ # # ]: 0 : else if (opcode == DW_MACINFO_undef)
10524 : 0 : printf ("%*s#undef %s, line %u\n",
10525 : : level, "", (char *) readp, u128);
10526 : : else
10527 : 0 : printf (" #vendor-ext %s, number %u\n", (char *) readp, u128);
10528 : :
10529 : 0 : readp = endp + 1;
10530 : 0 : break;
10531 : :
10532 : 0 : case DW_MACINFO_start_file:
10533 : : /* The two parameters are line and file index, in this order. */
10534 : 0 : get_uleb128 (u128, readp, readendp);
10535 [ # # ]: 0 : if (readendp - readp < 1)
10536 : : {
10537 : 0 : printf (_("\
10538 : : %*s*** missing DW_MACINFO_start_file argument at end of section"),
10539 : : level, "");
10540 : 0 : return;
10541 : : }
10542 : 0 : get_uleb128 (u128_2, readp, readendp);
10543 : :
10544 : : /* Find the CU DIE for this file. */
10545 : 0 : size_t macoff = readp - (const unsigned char *) data->d_buf;
10546 : 0 : const char *fname = "???";
10547 [ # # # # ]: 0 : if (macoff >= cus[0].offset && cus[0].offset != data->d_size)
10548 : : {
10549 [ # # # # ]: 0 : while (macoff >= cus[1].offset && cus[1].offset != data->d_size)
10550 : 0 : ++cus;
10551 : :
10552 [ # # ]: 0 : if (cus[0].files == NULL
10553 [ # # ]: 0 : && dwarf_getsrcfiles (&cus[0].die, &cus[0].files, NULL) != 0)
10554 : 0 : cus[0].files = (Dwarf_Files *) -1l;
10555 : :
10556 [ # # ]: 0 : if (cus[0].files != (Dwarf_Files *) -1l)
10557 : 0 : fname = (dwarf_filesrc (cus[0].files, u128_2, NULL, NULL)
10558 [ # # ]: 0 : ?: "???");
10559 : : }
10560 : :
10561 : 0 : printf ("%*sstart_file %u, [%u] %s\n",
10562 : : level, "", u128, u128_2, fname);
10563 : 0 : ++level;
10564 : 0 : break;
10565 : :
10566 : 0 : case DW_MACINFO_end_file:
10567 : 0 : --level;
10568 : 0 : printf ("%*send_file\n", level, "");
10569 : : /* Nothing more to do. */
10570 : : break;
10571 : :
10572 : 0 : default:
10573 : : // XXX gcc seems to generate files with a trailing zero.
10574 [ # # # # ]: 0 : if (unlikely (opcode != 0 || readp != readendp))
10575 [ # # ]: 0 : printf ("%*s*** invalid opcode %u\n", level, "", opcode);
10576 : : break;
10577 : : }
10578 : : }
10579 : : }
10580 : :
10581 : :
10582 : : static void
10583 : 8 : print_debug_macro_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
10584 : : Ebl *ebl,
10585 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
10586 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
10587 : : {
10588 : 8 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_macro, scn);
10589 [ + - ]: 8 : if (data == NULL)
10590 : 0 : return;
10591 : :
10592 : 8 : printf (_("\
10593 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
10594 : : elf_ndxscn (scn), section_name (ebl, shdr),
10595 : 8 : (uint64_t) shdr->sh_offset);
10596 [ - + ]: 8 : putc_unlocked ('\n', stdout);
10597 : :
10598 : : /* Get the source file information for all CUs. Uses same
10599 : : datastructure as macinfo. But uses offset field to directly
10600 : : match .debug_line offset. And just stored in a list. */
10601 : 8 : Dwarf_Off offset;
10602 : 8 : Dwarf_Off ncu = 0;
10603 : 8 : size_t hsize;
10604 : 8 : struct mac_culist *culist = NULL;
10605 [ + + ]: 20 : while (dwarf_nextcu (dbg, offset = ncu, &ncu, &hsize, NULL, NULL, NULL) == 0)
10606 : : {
10607 : 12 : Dwarf_Die cudie;
10608 [ - + ]: 12 : if (dwarf_offdie (dbg, offset + hsize, &cudie) == NULL)
10609 : 0 : continue;
10610 : :
10611 : 12 : Dwarf_Attribute attr;
10612 [ - + ]: 12 : if (dwarf_attr (&cudie, DW_AT_stmt_list, &attr) == NULL)
10613 : 0 : continue;
10614 : :
10615 : 12 : Dwarf_Word lineoff;
10616 [ - + ]: 12 : if (dwarf_formudata (&attr, &lineoff) != 0)
10617 : 0 : continue;
10618 : :
10619 : 12 : struct mac_culist *newp = (struct mac_culist *) alloca (sizeof (*newp));
10620 : 12 : newp->die = cudie;
10621 : 12 : newp->offset = lineoff;
10622 : 12 : newp->files = NULL;
10623 : 12 : newp->next = culist;
10624 : 12 : culist = newp;
10625 : : }
10626 : :
10627 : 8 : const unsigned char *readp = (const unsigned char *) data->d_buf;
10628 : 8 : const unsigned char *readendp = readp + data->d_size;
10629 : :
10630 [ + + ]: 28 : while (readp < readendp)
10631 : : {
10632 : 40 : printf (_(" Offset: 0x%" PRIx64 "\n"),
10633 : 20 : (uint64_t) (readp - (const unsigned char *) data->d_buf));
10634 : :
10635 : : // Header, 2 byte version, 1 byte flag, optional .debug_line offset,
10636 : : // optional vendor extension macro entry table.
10637 [ - + ]: 20 : if (readp + 2 > readendp)
10638 : : {
10639 : 0 : invalid_data:
10640 : 0 : error (0, 0, _("invalid data"));
10641 : 0 : return;
10642 : : }
10643 [ - + ]: 20 : const uint16_t vers = read_2ubyte_unaligned_inc (dbg, readp);
10644 : 20 : printf (_(" Version: %" PRIu16 "\n"), vers);
10645 : :
10646 : : // Version 4 is the GNU extension for DWARF4. DWARF5 will use version
10647 : : // 5 when it gets standardized.
10648 [ - + ]: 20 : if (vers != 4 && vers != 5)
10649 : : {
10650 : 0 : printf (_(" unknown version, cannot parse section\n"));
10651 : 0 : return;
10652 : : }
10653 : :
10654 [ - + ]: 20 : if (readp + 1 > readendp)
10655 : 0 : goto invalid_data;
10656 : 20 : const unsigned char flag = *readp++;
10657 : 20 : printf (_(" Flag: 0x%" PRIx8), flag);
10658 [ + + ]: 20 : if (flag != 0)
10659 : : {
10660 : 12 : printf (" (");
10661 [ - + ]: 12 : if ((flag & 0x01) != 0)
10662 : : {
10663 : 0 : printf ("offset_size");
10664 [ # # ]: 0 : if ((flag & 0xFE) != 0)
10665 : 0 : printf (", ");
10666 : : }
10667 [ + - ]: 12 : if ((flag & 0x02) != 0)
10668 : : {
10669 : 12 : printf ("debug_line_offset");
10670 [ - + ]: 12 : if ((flag & 0xFC) != 0)
10671 : 0 : printf (", ");
10672 : : }
10673 [ # # ]: 0 : if ((flag & 0x04) != 0)
10674 : : {
10675 : 0 : printf ("operands_table");
10676 [ # # ]: 0 : if ((flag & 0xF8) != 0)
10677 : 0 : printf (", ");
10678 : : }
10679 [ - + ]: 12 : if ((flag & 0xF8) != 0)
10680 : 0 : printf ("unknown");
10681 : 12 : printf (")");
10682 : : }
10683 : 20 : printf ("\n");
10684 : :
10685 [ + - ]: 20 : unsigned int offset_len = (flag & 0x01) ? 8 : 4;
10686 : 20 : printf (_(" Offset length: %" PRIu8 "\n"), offset_len);
10687 : 20 : Dwarf_Off line_offset = -1;
10688 [ + + ]: 20 : if (flag & 0x02)
10689 : : {
10690 [ - + ]: 12 : if (offset_len == 8)
10691 [ # # ]: 0 : line_offset = read_8ubyte_unaligned_inc (dbg, readp);
10692 : : else
10693 [ - + ]: 12 : line_offset = read_4ubyte_unaligned_inc (dbg, readp);
10694 : 12 : printf (_(" .debug_line offset: 0x%" PRIx64 "\n"),
10695 : : line_offset);
10696 : : }
10697 : :
10698 : 12 : struct mac_culist *cu = NULL;
10699 [ + - ]: 12 : if (line_offset != (Dwarf_Off) -1)
10700 : : {
10701 : : cu = culist;
10702 [ + - + + ]: 16 : while (cu != NULL && line_offset != cu->offset)
10703 : 4 : cu = cu->next;
10704 : : }
10705 : :
10706 [ - + ]: 20 : Dwarf_Off str_offsets_base = str_offsets_base_off (dbg, (cu != NULL
10707 : : ? cu->die.cu
10708 : : : NULL));
10709 : :
10710 : 20 : const unsigned char *vendor[DW_MACRO_hi_user - DW_MACRO_lo_user + 1];
10711 [ - + ]: 20 : memset (vendor, 0, sizeof vendor);
10712 [ - + ]: 20 : if (flag & 0x04)
10713 : : {
10714 : : // 1 byte length, for each item, 1 byte opcode, uleb128 number
10715 : : // of arguments, for each argument 1 byte form code.
10716 [ # # ]: 0 : if (readp + 1 > readendp)
10717 : 0 : goto invalid_data;
10718 : 0 : unsigned int tlen = *readp++;
10719 : 0 : printf (_(" extension opcode table, %" PRIu8 " items:\n"),
10720 : : tlen);
10721 [ # # ]: 0 : for (unsigned int i = 0; i < tlen; i++)
10722 : : {
10723 [ # # ]: 0 : if (readp + 1 > readendp)
10724 : 0 : goto invalid_data;
10725 : 0 : unsigned int opcode = *readp++;
10726 : 0 : printf (_(" [%" PRIx8 "]"), opcode);
10727 : 0 : if (opcode < DW_MACRO_lo_user
10728 [ # # ]: 0 : || opcode > DW_MACRO_hi_user)
10729 : 0 : goto invalid_data;
10730 : : // Record the start of description for this vendor opcode.
10731 : : // uleb128 nr args, 1 byte per arg form.
10732 : 0 : vendor[opcode - DW_MACRO_lo_user] = readp;
10733 [ # # ]: 0 : if (readp + 1 > readendp)
10734 : 0 : goto invalid_data;
10735 : 0 : unsigned int args = *readp++;
10736 [ # # ]: 0 : if (args > 0)
10737 : : {
10738 : 0 : printf (_(" %" PRIu8 " arguments:"), args);
10739 : 0 : while (args > 0)
10740 : : {
10741 : 0 : if (readp + 1 > readendp)
10742 : 0 : goto invalid_data;
10743 : 0 : unsigned int form = *readp++;
10744 : 0 : printf (" %s", dwarf_form_name (form));
10745 [ # # ]: 0 : if (! libdw_valid_user_form (form))
10746 : 0 : goto invalid_data;
10747 : 0 : args--;
10748 [ # # ]: 0 : if (args > 0)
10749 [ # # # # ]: 0 : putchar_unlocked (',');
10750 : : }
10751 : : }
10752 : : else
10753 : 0 : printf (_(" no arguments."));
10754 [ # # ]: 0 : putchar_unlocked ('\n');
10755 : : }
10756 : : }
10757 [ - + ]: 20 : putchar_unlocked ('\n');
10758 : :
10759 : 20 : int level = 1;
10760 [ - + ]: 20 : if (readp + 1 > readendp)
10761 : 0 : goto invalid_data;
10762 : 20 : unsigned int opcode = *readp++;
10763 : 20 : while (opcode != 0)
10764 : : {
10765 : 3026 : unsigned int u128;
10766 : 3026 : unsigned int u128_2;
10767 : 3026 : const unsigned char *endp;
10768 : 3026 : uint64_t off;
10769 : :
10770 [ + + + - : 3026 : switch (opcode)
+ + + - -
- + + - ]
10771 : : {
10772 : 20 : case DW_MACRO_start_file:
10773 : 20 : get_uleb128 (u128, readp, readendp);
10774 [ - + ]: 20 : if (readp >= readendp)
10775 : 0 : goto invalid_data;
10776 : 20 : get_uleb128 (u128_2, readp, readendp);
10777 : :
10778 : : /* Find the CU DIE that matches this line offset. */
10779 : 20 : const char *fname = "???";
10780 [ - + ]: 20 : if (cu != NULL)
10781 : : {
10782 [ + + ]: 20 : if (cu->files == NULL
10783 [ - + ]: 12 : && dwarf_getsrcfiles (&cu->die, &cu->files,
10784 : : NULL) != 0)
10785 : 0 : cu->files = (Dwarf_Files *) -1l;
10786 : :
10787 [ - + ]: 20 : if (cu->files != (Dwarf_Files *) -1l)
10788 : 20 : fname = (dwarf_filesrc (cu->files, u128_2,
10789 [ - + ]: 20 : NULL, NULL) ?: "???");
10790 : : }
10791 : 20 : printf ("%*sstart_file %u, [%u] %s\n",
10792 : : level, "", u128, u128_2, fname);
10793 : 20 : ++level;
10794 : 20 : break;
10795 : :
10796 : 20 : case DW_MACRO_end_file:
10797 : 20 : --level;
10798 : 20 : printf ("%*send_file\n", level, "");
10799 : : break;
10800 : :
10801 : 2 : case DW_MACRO_define:
10802 : 2 : get_uleb128 (u128, readp, readendp);
10803 : 2 : endp = memchr (readp, '\0', readendp - readp);
10804 [ - + ]: 2 : if (endp == NULL)
10805 : 0 : goto invalid_data;
10806 : 2 : printf ("%*s#define %s, line %u\n",
10807 : : level, "", readp, u128);
10808 : 2 : readp = endp + 1;
10809 : 2 : break;
10810 : :
10811 : 0 : case DW_MACRO_undef:
10812 : 0 : get_uleb128 (u128, readp, readendp);
10813 : 0 : endp = memchr (readp, '\0', readendp - readp);
10814 [ # # ]: 0 : if (endp == NULL)
10815 : 0 : goto invalid_data;
10816 : 0 : printf ("%*s#undef %s, line %u\n",
10817 : : level, "", readp, u128);
10818 : 0 : readp = endp + 1;
10819 : 0 : break;
10820 : :
10821 : 1414 : case DW_MACRO_define_strp:
10822 : 1414 : get_uleb128 (u128, readp, readendp);
10823 [ - + ]: 1414 : if (readp + offset_len > readendp)
10824 : 0 : goto invalid_data;
10825 [ - + ]: 1414 : if (offset_len == 8)
10826 [ # # ]: 0 : off = read_8ubyte_unaligned_inc (dbg, readp);
10827 : : else
10828 [ - + ]: 1414 : off = read_4ubyte_unaligned_inc (dbg, readp);
10829 : 1414 : printf ("%*s#define %s, line %u (indirect)\n",
10830 : : level, "", dwarf_getstring (dbg, off, NULL), u128);
10831 : : break;
10832 : :
10833 : 2 : case DW_MACRO_undef_strp:
10834 : 2 : get_uleb128 (u128, readp, readendp);
10835 [ - + ]: 2 : if (readp + offset_len > readendp)
10836 : 0 : goto invalid_data;
10837 [ - + ]: 2 : if (offset_len == 8)
10838 [ # # ]: 0 : off = read_8ubyte_unaligned_inc (dbg, readp);
10839 : : else
10840 [ - + ]: 2 : off = read_4ubyte_unaligned_inc (dbg, readp);
10841 : 2 : printf ("%*s#undef %s, line %u (indirect)\n",
10842 : : level, "", dwarf_getstring (dbg, off, NULL), u128);
10843 : : break;
10844 : :
10845 : 12 : case DW_MACRO_import:
10846 [ - + ]: 12 : if (readp + offset_len > readendp)
10847 : 0 : goto invalid_data;
10848 [ - + ]: 12 : if (offset_len == 8)
10849 [ # # ]: 0 : off = read_8ubyte_unaligned_inc (dbg, readp);
10850 : : else
10851 [ - + ]: 12 : off = read_4ubyte_unaligned_inc (dbg, readp);
10852 : 12 : printf ("%*s#include offset 0x%" PRIx64 "\n",
10853 : : level, "", off);
10854 : : break;
10855 : :
10856 : 0 : case DW_MACRO_define_sup:
10857 : 0 : get_uleb128 (u128, readp, readendp);
10858 : 0 : printf ("%*s#define ", level, "");
10859 : 0 : readp = print_form_data (dbg, DW_FORM_strp_sup,
10860 : : readp, readendp, offset_len,
10861 : : str_offsets_base);
10862 : 0 : printf (", line %u (sup)\n", u128);
10863 : : break;
10864 : :
10865 : 0 : case DW_MACRO_undef_sup:
10866 : 0 : get_uleb128 (u128, readp, readendp);
10867 : 0 : printf ("%*s#undef ", level, "");
10868 : 0 : readp = print_form_data (dbg, DW_FORM_strp_sup,
10869 : : readp, readendp, offset_len,
10870 : : str_offsets_base);
10871 : 0 : printf (", line %u (sup)\n", u128);
10872 : : break;
10873 : :
10874 : 0 : case DW_MACRO_import_sup:
10875 [ # # ]: 0 : if (readp + offset_len > readendp)
10876 : 0 : goto invalid_data;
10877 [ # # ]: 0 : if (offset_len == 8)
10878 [ # # ]: 0 : off = read_8ubyte_unaligned_inc (dbg, readp);
10879 : : else
10880 [ # # ]: 0 : off = read_4ubyte_unaligned_inc (dbg, readp);
10881 : : // XXX Needs support for reading from supplementary object file.
10882 : 0 : printf ("%*s#include offset 0x%" PRIx64 " (sup)\n",
10883 : : level, "", off);
10884 : : break;
10885 : :
10886 : 1552 : case DW_MACRO_define_strx:
10887 : 1552 : get_uleb128 (u128, readp, readendp);
10888 : 1552 : printf ("%*s#define ", level, "");
10889 : 1552 : readp = print_form_data (dbg, DW_FORM_strx,
10890 : : readp, readendp, offset_len,
10891 : : str_offsets_base);
10892 : 1552 : printf (", line %u (strx)\n", u128);
10893 : : break;
10894 : :
10895 : 4 : case DW_MACRO_undef_strx:
10896 : 4 : get_uleb128 (u128, readp, readendp);
10897 : 4 : printf ("%*s#undef ", level, "");
10898 : 4 : readp = print_form_data (dbg, DW_FORM_strx,
10899 : : readp, readendp, offset_len,
10900 : : str_offsets_base);
10901 : 4 : printf (", line %u (strx)\n", u128);
10902 : : break;
10903 : :
10904 : : default:
10905 : 0 : printf ("%*svendor opcode 0x%" PRIx8, level, "", opcode);
10906 [ # # ]: 0 : if (opcode < DW_MACRO_lo_user
10907 : : || opcode > DW_MACRO_lo_user
10908 [ # # ]: 0 : || vendor[opcode - DW_MACRO_lo_user] == NULL)
10909 : 0 : goto invalid_data;
10910 : :
10911 : 0 : const unsigned char *op_desc;
10912 : 0 : op_desc = vendor[opcode - DW_MACRO_lo_user];
10913 : :
10914 : : // Just skip the arguments, we cannot really interpret them,
10915 : : // but print as much as we can.
10916 : 0 : unsigned int args = *op_desc++;
10917 [ # # ]: 0 : while (args > 0 && readp < readendp)
10918 : : {
10919 : 0 : unsigned int form = *op_desc++;
10920 : 0 : readp = print_form_data (dbg, form, readp, readendp,
10921 : : offset_len, str_offsets_base);
10922 : 0 : args--;
10923 [ # # ]: 0 : if (args > 0)
10924 [ # # ]: 0 : printf (", ");
10925 : : }
10926 [ # # ]: 0 : putchar_unlocked ('\n');
10927 : : }
10928 : :
10929 [ - + ]: 3026 : if (readp + 1 > readendp)
10930 : 0 : goto invalid_data;
10931 : 3026 : opcode = *readp++;
10932 [ + + ]: 3026 : if (opcode == 0)
10933 [ - + + + ]: 3066 : putchar_unlocked ('\n');
10934 : : }
10935 : : }
10936 : : }
10937 : :
10938 : :
10939 : : /* Callback for printing global names. */
10940 : : static int
10941 : 68 : print_pubnames (Dwarf *dbg __attribute__ ((unused)), Dwarf_Global *global,
10942 : : void *arg)
10943 : : {
10944 : 68 : int *np = (int *) arg;
10945 : :
10946 : 136 : printf (_(" [%5d] DIE offset: %6" PRId64
10947 : : ", CU DIE offset: %6" PRId64 ", name: %s\n"),
10948 : 68 : (*np)++, global->die_offset, global->cu_offset, global->name);
10949 : :
10950 : 68 : return 0;
10951 : : }
10952 : :
10953 : :
10954 : : /* Print the known exported symbols in the DWARF section '.debug_pubnames'. */
10955 : : static void
10956 : 16 : print_debug_pubnames_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
10957 : : Ebl *ebl,
10958 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
10959 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
10960 : : {
10961 : : /* Check section actually exists. */
10962 [ - + ]: 16 : if (get_debug_elf_data (dbg, ebl, IDX_debug_pubnames, scn) == NULL)
10963 : 0 : return;
10964 : :
10965 : 16 : printf (_("\nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
10966 : : elf_ndxscn (scn), section_name (ebl, shdr),
10967 : 16 : (uint64_t) shdr->sh_offset);
10968 : :
10969 : 16 : int n = 0;
10970 : 16 : (void) dwarf_getpubnames (dbg, print_pubnames, &n, 0);
10971 : : }
10972 : :
10973 : : /* Print the content of the DWARF string section '.debug_str'
10974 : : or 'debug_line_str'. */
10975 : : static void
10976 : 134 : print_debug_str_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
10977 : : Ebl *ebl,
10978 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
10979 : : Elf_Scn *scn, GElf_Shdr *shdr,
10980 : : Dwarf *dbg __attribute__ ((unused)))
10981 : : {
10982 : 134 : const char *name = section_name (ebl, shdr);
10983 [ + + ]: 134 : int idx = ((name != NULL && strstr (name, "debug_line_str") != NULL)
10984 [ + - ]: 134 : ? IDX_debug_line_str : IDX_debug_str);
10985 : 134 : Elf_Data *data = get_debug_elf_data (dbg, ebl, idx, scn);
10986 [ + - ]: 134 : if (data == NULL)
10987 : : return;
10988 : :
10989 : 134 : const size_t sh_size = data->d_size;
10990 : :
10991 : : /* Compute floor(log16(shdr->sh_size)). */
10992 : 134 : GElf_Addr tmp = sh_size;
10993 : 134 : int digits = 1;
10994 [ + + ]: 466 : while (tmp >= 16)
10995 : : {
10996 : 332 : ++digits;
10997 : 332 : tmp >>= 4;
10998 : : }
10999 : 134 : digits = MAX (4, digits);
11000 : :
11001 : 134 : printf (_("\nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"
11002 : : " %*s String\n"),
11003 : : elf_ndxscn (scn),
11004 : 134 : section_name (ebl, shdr), (uint64_t) shdr->sh_offset,
11005 : : /* TRANS: the debugstr| prefix makes the string unique. */
11006 [ + - ]: 134 : digits + 2, sgettext ("debugstr|Offset"));
11007 : :
11008 : 134 : Dwarf_Off offset = 0;
11009 [ + + ]: 159924 : while (offset < sh_size)
11010 : : {
11011 : 159790 : size_t len;
11012 : 159790 : const char *str = (const char *) data->d_buf + offset;
11013 : 159790 : const char *endp = memchr (str, '\0', sh_size - offset);
11014 [ - + ]: 159790 : if (unlikely (endp == NULL))
11015 : : {
11016 : 0 : printf (_(" *** error, missing string terminator\n"));
11017 : : break;
11018 : : }
11019 : :
11020 : 159790 : printf (" [%*" PRIx64 "] \"%s\"\n", digits, (uint64_t) offset, str);
11021 : 159790 : len = endp - str;
11022 : 159790 : offset += len + 1;
11023 : : }
11024 : : }
11025 : :
11026 : : static void
11027 : 12 : print_debug_str_offsets_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
11028 : : Ebl *ebl,
11029 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
11030 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
11031 : : {
11032 : 12 : Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_str_offsets, scn);
11033 [ + - ]: 12 : if (data == NULL)
11034 : : return;
11035 : :
11036 : 12 : printf (_("\
11037 : : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
11038 : : elf_ndxscn (scn), section_name (ebl, shdr),
11039 : 12 : (uint64_t) shdr->sh_offset);
11040 : :
11041 [ + - ]: 12 : if (shdr->sh_size == 0)
11042 : : return;
11043 : :
11044 : 12 : size_t idx = 0;
11045 : 12 : sort_listptr (&known_stroffbases, "str_offsets");
11046 : :
11047 : 12 : const unsigned char *start = (const unsigned char *) data->d_buf;
11048 : 12 : const unsigned char *readp = start;
11049 : 12 : const unsigned char *readendp = ((const unsigned char *) data->d_buf
11050 : 12 : + data->d_size);
11051 : :
11052 : 12 : while (readp < readendp)
11053 : : {
11054 : : /* Most string offset tables will have a header. For split
11055 : : dwarf unit GNU DebugFission didn't add one. But they were
11056 : : also only defined for split units (main or skeleton units
11057 : : didn't have indirect strings). So if we don't have a
11058 : : DW_AT_str_offsets_base at all and this is offset zero, then
11059 : : just start printing offsets immediately, if this is a .dwo
11060 : : section. */
11061 : 16 : Dwarf_Off off = (Dwarf_Off) (readp
11062 : 16 : - (const unsigned char *) data->d_buf);
11063 : :
11064 : 16 : printf ("Table at offset %" PRIx64 " ", off);
11065 : :
11066 [ + + ]: 16 : struct listptr *listptr = get_listptr (&known_stroffbases, idx++);
11067 : 16 : const unsigned char *next_unitp = readendp;
11068 : 8 : uint8_t offset_size;
11069 : 8 : bool has_header;
11070 [ - + ]: 8 : if (listptr == NULL)
11071 : : {
11072 : : /* This can happen for .dwo files. There is only an header
11073 : : in the case this is a version 5 split DWARF file. */
11074 : 8 : Dwarf_CU *cu;
11075 : 8 : uint8_t unit_type;
11076 [ - + ]: 8 : if (dwarf_get_units (dbg, NULL, &cu, NULL, &unit_type,
11077 : : NULL, NULL) != 0)
11078 : : {
11079 : 0 : error (0, 0, "Warning: Cannot find any DWARF unit.");
11080 : : /* Just guess some values. */
11081 : 0 : has_header = false;
11082 : 0 : offset_size = 4;
11083 : : }
11084 [ + - ]: 8 : else if (off == 0
11085 : 8 : && (unit_type == DW_UT_split_type
11086 [ + - ]: 8 : || unit_type == DW_UT_split_compile))
11087 : : {
11088 : 8 : has_header = cu->version > 4;
11089 : 8 : offset_size = cu->offset_size;
11090 : : }
11091 : : else
11092 : : {
11093 : 0 : error (0, 0,
11094 : : "Warning: No CU references .debug_str_offsets after %"
11095 : : PRIx64, off);
11096 : 0 : has_header = cu->version > 4;
11097 : 0 : offset_size = cu->offset_size;
11098 : : }
11099 : 8 : printf ("\n");
11100 : : }
11101 : : else
11102 : : {
11103 : : /* This must be DWARF5, since GNU DebugFission didn't define
11104 : : DW_AT_str_offsets_base. */
11105 : 8 : has_header = true;
11106 : :
11107 : 8 : Dwarf_Die cudie;
11108 [ - + ]: 8 : if (dwarf_cu_die (listptr->cu, &cudie,
11109 : : NULL, NULL, NULL, NULL,
11110 : : NULL, NULL) == NULL)
11111 : 0 : printf ("Unknown CU (%s):\n", dwarf_errmsg (-1));
11112 : : else
11113 : 8 : printf ("for CU [%6" PRIx64 "]:\n", dwarf_dieoffset (&cudie));
11114 : : }
11115 : :
11116 [ + + ]: 16 : if (has_header)
11117 : : {
11118 : 12 : uint64_t unit_length;
11119 : 12 : uint16_t version;
11120 : 12 : uint16_t padding;
11121 : :
11122 [ - + ]: 12 : unit_length = read_4ubyte_unaligned_inc (dbg, readp);
11123 [ - + ]: 12 : if (unlikely (unit_length == 0xffffffff))
11124 : : {
11125 [ # # ]: 0 : if (unlikely (readp > readendp - 8))
11126 : : {
11127 : 0 : invalid_data:
11128 : 0 : error (0, 0, "Invalid data");
11129 : 0 : return;
11130 : : }
11131 [ # # ]: 0 : unit_length = read_8ubyte_unaligned_inc (dbg, readp);
11132 : 0 : offset_size = 8;
11133 : : }
11134 : : else
11135 : : offset_size = 4;
11136 : :
11137 : 12 : printf ("\n");
11138 : 12 : printf (_(" Length: %8" PRIu64 "\n"),
11139 : : unit_length);
11140 : 12 : printf (_(" Offset size: %8" PRIu8 "\n"),
11141 : : offset_size);
11142 : :
11143 : : /* We need at least 2-bytes (version) + 2-bytes (padding) =
11144 : : 4 bytes to complete the header. And this unit cannot go
11145 : : beyond the section data. */
11146 [ + - ]: 12 : if (readp > readendp - 4
11147 [ + - ]: 12 : || unit_length < 4
11148 [ - + ]: 12 : || unit_length > (uint64_t) (readendp - readp))
11149 : 0 : goto invalid_data;
11150 : :
11151 : 12 : next_unitp = readp + unit_length;
11152 : :
11153 [ - + ]: 12 : version = read_2ubyte_unaligned_inc (dbg, readp);
11154 : 12 : printf (_(" DWARF version: %8" PRIu16 "\n"), version);
11155 : :
11156 [ - + ]: 12 : if (version != 5)
11157 : : {
11158 : 0 : error (0, 0, _("Unknown version"));
11159 : 0 : goto next_unit;
11160 : : }
11161 : :
11162 [ - + ]: 12 : padding = read_2ubyte_unaligned_inc (dbg, readp);
11163 : 12 : printf (_(" Padding: %8" PRIx16 "\n"), padding);
11164 : :
11165 [ + + ]: 12 : if (listptr != NULL
11166 [ - + ]: 8 : && listptr->offset != (Dwarf_Off) (readp - start))
11167 : : {
11168 : 0 : error (0, 0, "String offsets index doesn't start after header");
11169 : 0 : goto next_unit;
11170 : : }
11171 : :
11172 : 12 : printf ("\n");
11173 : : }
11174 : :
11175 : 16 : int digits = 1;
11176 : 16 : size_t offsets = (next_unitp - readp) / offset_size;
11177 [ + + ]: 24 : while (offsets >= 10)
11178 : : {
11179 : 8 : ++digits;
11180 : 8 : offsets /= 10;
11181 : : }
11182 : :
11183 : 16 : unsigned int uidx = 0;
11184 : 16 : size_t index_offset = readp - (const unsigned char *) data->d_buf;
11185 : 16 : printf (" Offsets start at 0x%zx:\n", index_offset);
11186 : 204 : while (readp <= next_unitp - offset_size)
11187 : : {
11188 : 188 : Dwarf_Word offset;
11189 [ + - ]: 188 : if (offset_size == 4)
11190 [ - + ]: 188 : offset = read_4ubyte_unaligned_inc (dbg, readp);
11191 : : else
11192 [ # # ]: 0 : offset = read_8ubyte_unaligned_inc (dbg, readp);
11193 : 188 : const char *str = dwarf_getstring (dbg, offset, NULL);
11194 [ - + + + ]: 392 : printf (" [%*u] [%*" PRIx64 "] \"%s\"\n",
11195 : 188 : digits, uidx++, (int) offset_size * 2, offset, str ?: "???");
11196 : : }
11197 : 16 : printf ("\n");
11198 : :
11199 [ + - ]: 16 : if (readp != next_unitp)
11200 [ + + ]: 28 : error (0, 0, "extra %zd bytes at end of unit",
11201 : 0 : (size_t) (next_unitp - readp));
11202 : :
11203 : 16 : next_unit:
11204 : : readp = next_unitp;
11205 : : }
11206 : : }
11207 : :
11208 : :
11209 : : /* Print the content of the call frame search table section
11210 : : '.eh_frame_hdr'. */
11211 : : static void
11212 : 164 : print_debug_frame_hdr_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
11213 : : Ebl *ebl __attribute__ ((unused)),
11214 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
11215 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
11216 : : {
11217 : 164 : printf (_("\
11218 : : \nCall frame search table section [%2zu] '.eh_frame_hdr':\n"),
11219 : : elf_ndxscn (scn));
11220 : :
11221 : 164 : Elf_Data *data = elf_rawdata (scn, NULL);
11222 : :
11223 [ - + ]: 164 : if (unlikely (data == NULL))
11224 : : {
11225 : 0 : error (0, 0, _("cannot get %s content: %s"),
11226 : : ".eh_frame_hdr", elf_errmsg (-1));
11227 : 0 : return;
11228 : : }
11229 : :
11230 : 164 : const unsigned char *readp = data->d_buf;
11231 : 164 : const unsigned char *const dataend = ((unsigned char *) data->d_buf
11232 : 164 : + data->d_size);
11233 : :
11234 [ - + ]: 164 : if (unlikely (readp + 4 > dataend))
11235 : : {
11236 : 0 : invalid_data:
11237 : 0 : error (0, 0, _("invalid data"));
11238 : 0 : return;
11239 : : }
11240 : :
11241 : 164 : unsigned int version = *readp++;
11242 : 164 : unsigned int eh_frame_ptr_enc = *readp++;
11243 : 164 : unsigned int fde_count_enc = *readp++;
11244 : 164 : unsigned int table_enc = *readp++;
11245 : :
11246 : 164 : printf (" version: %u\n"
11247 : : " eh_frame_ptr_enc: %#x ",
11248 : : version, eh_frame_ptr_enc);
11249 : 164 : print_encoding_base ("", eh_frame_ptr_enc);
11250 : 164 : printf (" fde_count_enc: %#x ", fde_count_enc);
11251 : 164 : print_encoding_base ("", fde_count_enc);
11252 : 164 : printf (" table_enc: %#x ", table_enc);
11253 : 164 : print_encoding_base ("", table_enc);
11254 : :
11255 : 164 : uint64_t eh_frame_ptr = 0;
11256 [ + - ]: 164 : if (eh_frame_ptr_enc != DW_EH_PE_omit)
11257 : : {
11258 : 164 : readp = read_encoded (eh_frame_ptr_enc, readp, dataend, &eh_frame_ptr,
11259 : : dbg);
11260 [ - + ]: 164 : if (unlikely (readp == NULL))
11261 : 0 : goto invalid_data;
11262 : :
11263 : 164 : printf (" eh_frame_ptr: %#" PRIx64, eh_frame_ptr);
11264 [ + - ]: 164 : if ((eh_frame_ptr_enc & 0x70) == DW_EH_PE_pcrel)
11265 : 328 : printf (" (offset: %#" PRIx64 ")",
11266 : : /* +4 because of the 4 byte header of the section. */
11267 : 164 : (uint64_t) shdr->sh_offset + 4 + eh_frame_ptr);
11268 : :
11269 [ - + ]: 164 : putchar_unlocked ('\n');
11270 : : }
11271 : :
11272 : 164 : uint64_t fde_count = 0;
11273 [ + - ]: 164 : if (fde_count_enc != DW_EH_PE_omit)
11274 : : {
11275 : 164 : readp = read_encoded (fde_count_enc, readp, dataend, &fde_count, dbg);
11276 [ - + ]: 164 : if (unlikely (readp == NULL))
11277 : 0 : goto invalid_data;
11278 : :
11279 : 164 : printf (" fde_count: %" PRIu64 "\n", fde_count);
11280 : : }
11281 : :
11282 [ + - + - ]: 164 : if (fde_count == 0 || table_enc == DW_EH_PE_omit)
11283 : : return;
11284 : :
11285 : 164 : puts (" Table:");
11286 : :
11287 : : /* Optimize for the most common case. */
11288 [ + - ]: 164 : if (table_enc == (DW_EH_PE_datarel | DW_EH_PE_sdata4))
11289 : 21842 : while (fde_count > 0 && readp + 8 <= dataend)
11290 : : {
11291 [ - + ]: 21678 : int32_t initial_location = read_4sbyte_unaligned_inc (dbg, readp);
11292 : 21678 : uint64_t initial_offset = ((uint64_t) shdr->sh_offset
11293 : 21678 : + (int64_t) initial_location);
11294 [ - + ]: 21678 : int32_t address = read_4sbyte_unaligned_inc (dbg, readp);
11295 : : // XXX Possibly print symbol name or section offset for initial_offset
11296 [ + + ]: 21842 : printf (" %#" PRIx32 " (offset: %#6" PRIx64 ") -> %#" PRIx32
11297 : : " fde=[%6" PRIx64 "]\n",
11298 : : initial_location, initial_offset,
11299 : 21678 : address, address - (eh_frame_ptr + 4));
11300 : : }
11301 : : else
11302 : 164 : while (0 && readp < dataend)
11303 : : {
11304 : :
11305 : 164 : }
11306 : : }
11307 : :
11308 : :
11309 : : /* Print the content of the exception handling table section
11310 : : '.eh_frame_hdr'. */
11311 : : static void
11312 : 0 : print_debug_exception_table (Dwfl_Module *dwflmod __attribute__ ((unused)),
11313 : : Ebl *ebl __attribute__ ((unused)),
11314 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
11315 : : Elf_Scn *scn,
11316 : : GElf_Shdr *shdr __attribute__ ((unused)),
11317 : : Dwarf *dbg __attribute__ ((unused)))
11318 : : {
11319 : 0 : printf (_("\
11320 : : \nException handling table section [%2zu] '.gcc_except_table':\n"),
11321 : : elf_ndxscn (scn));
11322 : :
11323 : 0 : Elf_Data *data = elf_rawdata (scn, NULL);
11324 : :
11325 [ # # ]: 0 : if (unlikely (data == NULL))
11326 : : {
11327 : 0 : error (0, 0, _("cannot get %s content: %s"),
11328 : : ".gcc_except_table", elf_errmsg (-1));
11329 : 0 : return;
11330 : : }
11331 : :
11332 : 0 : const unsigned char *readp = data->d_buf;
11333 : 0 : const unsigned char *const dataend = readp + data->d_size;
11334 : :
11335 [ # # ]: 0 : if (unlikely (readp + 1 > dataend))
11336 : : {
11337 : 0 : invalid_data:
11338 : 0 : error (0, 0, _("invalid data"));
11339 : 0 : return;
11340 : : }
11341 : 0 : unsigned int lpstart_encoding = *readp++;
11342 : 0 : printf (_(" LPStart encoding: %#x "), lpstart_encoding);
11343 : 0 : print_encoding_base ("", lpstart_encoding);
11344 [ # # ]: 0 : if (lpstart_encoding != DW_EH_PE_omit)
11345 : : {
11346 : 0 : uint64_t lpstart;
11347 : 0 : readp = read_encoded (lpstart_encoding, readp, dataend, &lpstart, dbg);
11348 : 0 : printf (" LPStart: %#" PRIx64 "\n", lpstart);
11349 : : }
11350 : :
11351 [ # # ]: 0 : if (unlikely (readp + 1 > dataend))
11352 : 0 : goto invalid_data;
11353 : 0 : unsigned int ttype_encoding = *readp++;
11354 : 0 : printf (_(" TType encoding: %#x "), ttype_encoding);
11355 : 0 : print_encoding_base ("", ttype_encoding);
11356 : 0 : const unsigned char *ttype_base = NULL;
11357 [ # # ]: 0 : if (ttype_encoding != DW_EH_PE_omit)
11358 : : {
11359 : 0 : unsigned int ttype_base_offset;
11360 [ # # ]: 0 : if (readp >= dataend)
11361 : 0 : goto invalid_data;
11362 : 0 : get_uleb128 (ttype_base_offset, readp, dataend);
11363 : 0 : printf (" TType base offset: %#x\n", ttype_base_offset);
11364 [ # # ]: 0 : if ((size_t) (dataend - readp) > ttype_base_offset)
11365 : 0 : ttype_base = readp + ttype_base_offset;
11366 : : }
11367 : :
11368 [ # # ]: 0 : if (unlikely (readp + 1 > dataend))
11369 : 0 : goto invalid_data;
11370 : 0 : unsigned int call_site_encoding = *readp++;
11371 : 0 : printf (_(" Call site encoding: %#x "), call_site_encoding);
11372 : 0 : print_encoding_base ("", call_site_encoding);
11373 : 0 : unsigned int call_site_table_len;
11374 [ # # ]: 0 : if (readp >= dataend)
11375 : 0 : goto invalid_data;
11376 : 0 : get_uleb128 (call_site_table_len, readp, dataend);
11377 : :
11378 : 0 : const unsigned char *const action_table = readp + call_site_table_len;
11379 [ # # ]: 0 : if (unlikely (action_table > dataend))
11380 : 0 : goto invalid_data;
11381 : : unsigned int u = 0;
11382 : : unsigned int max_action = 0;
11383 [ # # ]: 0 : while (readp < action_table)
11384 : : {
11385 [ # # ]: 0 : if (u == 0)
11386 : 0 : puts (_("\n Call site table:"));
11387 : :
11388 : 0 : uint64_t call_site_start;
11389 : 0 : readp = read_encoded (call_site_encoding, readp, dataend,
11390 : : &call_site_start, dbg);
11391 : 0 : uint64_t call_site_length;
11392 : 0 : readp = read_encoded (call_site_encoding, readp, dataend,
11393 : : &call_site_length, dbg);
11394 : 0 : uint64_t landing_pad;
11395 : 0 : readp = read_encoded (call_site_encoding, readp, dataend,
11396 : : &landing_pad, dbg);
11397 : 0 : unsigned int action;
11398 [ # # ]: 0 : if (readp >= dataend)
11399 : 0 : goto invalid_data;
11400 : 0 : get_uleb128 (action, readp, dataend);
11401 : 0 : max_action = MAX (action, max_action);
11402 : 0 : printf (_(" [%4u] Call site start: %#" PRIx64 "\n"
11403 : : " Call site length: %" PRIu64 "\n"
11404 : : " Landing pad: %#" PRIx64 "\n"
11405 : : " Action: %u\n"),
11406 : : u++, call_site_start, call_site_length, landing_pad, action);
11407 : : }
11408 [ # # ]: 0 : if (readp != action_table)
11409 : 0 : goto invalid_data;
11410 : :
11411 : 0 : unsigned int max_ar_filter = 0;
11412 [ # # ]: 0 : if (max_action > 0)
11413 : : {
11414 : 0 : puts ("\n Action table:");
11415 : :
11416 : 0 : size_t maxdata = (size_t) (dataend - action_table);
11417 [ # # # # ]: 0 : if (max_action > maxdata || maxdata - max_action < 1)
11418 : : {
11419 : 0 : invalid_action_table:
11420 : 0 : fputs (_(" <INVALID DATA>\n"), stdout);
11421 : 0 : return;
11422 : : }
11423 : :
11424 : 0 : const unsigned char *const action_table_end
11425 : 0 : = action_table + max_action + 1;
11426 : :
11427 : 0 : u = 0;
11428 : 0 : do
11429 : : {
11430 : 0 : int ar_filter;
11431 : 0 : get_sleb128 (ar_filter, readp, action_table_end);
11432 [ # # ]: 0 : if (ar_filter > 0 && (unsigned int) ar_filter > max_ar_filter)
11433 : 0 : max_ar_filter = ar_filter;
11434 : 0 : int ar_disp;
11435 [ # # ]: 0 : if (readp >= action_table_end)
11436 : 0 : goto invalid_action_table;
11437 : 0 : get_sleb128 (ar_disp, readp, action_table_end);
11438 : :
11439 : 0 : printf (" [%4u] ar_filter: % d\n"
11440 : : " ar_disp: % -5d",
11441 : : u, ar_filter, ar_disp);
11442 [ # # ]: 0 : if (abs (ar_disp) & 1)
11443 : 0 : printf (" -> [%4u]\n", u + (ar_disp + 1) / 2);
11444 [ # # ]: 0 : else if (ar_disp != 0)
11445 : 0 : puts (" -> ???");
11446 : : else
11447 [ # # ]: 0 : putchar_unlocked ('\n');
11448 : 0 : ++u;
11449 : : }
11450 [ # # ]: 0 : while (readp < action_table_end);
11451 : : }
11452 : :
11453 [ # # ]: 0 : if (max_ar_filter > 0 && ttype_base != NULL)
11454 : : {
11455 : 0 : unsigned char dsize;
11456 : 0 : puts ("\n TType table:");
11457 : :
11458 : : // XXX Not *4, size of encoding;
11459 [ # # ]: 0 : switch (ttype_encoding & 7)
11460 : : {
11461 : : case DW_EH_PE_udata2:
11462 : : case DW_EH_PE_sdata2:
11463 : : dsize = 2;
11464 : : break;
11465 : : case DW_EH_PE_udata4:
11466 : : case DW_EH_PE_sdata4:
11467 : : dsize = 4;
11468 : : break;
11469 : : case DW_EH_PE_udata8:
11470 : : case DW_EH_PE_sdata8:
11471 : : dsize = 8;
11472 : : break;
11473 : 0 : default:
11474 : 0 : dsize = 0;
11475 : 0 : error (1, 0, _("invalid TType encoding"));
11476 : : }
11477 : :
11478 : 0 : if (max_ar_filter
11479 [ # # ]: 0 : > (size_t) (ttype_base - (const unsigned char *) data->d_buf) / dsize)
11480 : 0 : goto invalid_data;
11481 : :
11482 : 0 : readp = ttype_base - max_ar_filter * dsize;
11483 : 0 : do
11484 : : {
11485 : 0 : uint64_t ttype;
11486 : 0 : readp = read_encoded (ttype_encoding, readp, ttype_base, &ttype,
11487 : : dbg);
11488 : 0 : printf (" [%4u] %#" PRIx64 "\n", max_ar_filter--, ttype);
11489 : : }
11490 [ # # ]: 0 : while (readp < ttype_base);
11491 : : }
11492 : : }
11493 : :
11494 : : /* Print the content of the '.gdb_index' section.
11495 : : http://sourceware.org/gdb/current/onlinedocs/gdb/Index-Section-Format.html
11496 : : */
11497 : : static void
11498 : 8 : print_gdb_index_section (Dwfl_Module *dwflmod, Ebl *ebl,
11499 : : GElf_Ehdr *ehdr __attribute__ ((unused)),
11500 : : Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
11501 : : {
11502 : 8 : printf (_("\nGDB section [%2zu] '%s' at offset %#" PRIx64
11503 : : " contains %" PRId64 " bytes :\n"),
11504 : : elf_ndxscn (scn), section_name (ebl, shdr),
11505 : 8 : (uint64_t) shdr->sh_offset, (uint64_t) shdr->sh_size);
11506 : :
11507 : 8 : Elf_Data *data = elf_rawdata (scn, NULL);
11508 : :
11509 [ - + ]: 8 : if (unlikely (data == NULL))
11510 : : {
11511 : 0 : error (0, 0, _("cannot get %s content: %s"),
11512 : : ".gdb_index", elf_errmsg (-1));
11513 : 4 : return;
11514 : : }
11515 : :
11516 : : // .gdb_index is always in little endian.
11517 : 8 : Dwarf dummy_dbg = { .other_byte_order = MY_ELFDATA != ELFDATA2LSB };
11518 : 8 : dbg = &dummy_dbg;
11519 : :
11520 : 8 : const unsigned char *readp = data->d_buf;
11521 : 8 : const unsigned char *const dataend = readp + data->d_size;
11522 : :
11523 [ - + ]: 8 : if (unlikely (readp + 4 > dataend))
11524 : : {
11525 : 0 : invalid_data:
11526 : 0 : error (0, 0, _("invalid data"));
11527 : 0 : return;
11528 : : }
11529 : :
11530 : 8 : int32_t vers = read_4ubyte_unaligned (dbg, readp);
11531 : 8 : printf (_(" Version: %" PRId32 "\n"), vers);
11532 : :
11533 : : // The only difference between version 4 and version 5 is the
11534 : : // hash used for generating the table. Version 6 contains symbols
11535 : : // for inlined functions, older versions didn't. Version 7 adds
11536 : : // symbol kinds. Version 8 just indicates that it correctly includes
11537 : : // TUs for symbols. Version 9 adds shortcut table for information
11538 : : // regarding the main function.
11539 [ - + ]: 8 : if (vers < 4 || vers > 9)
11540 : : {
11541 : 0 : printf (_(" unknown version, cannot parse section\n"));
11542 : 0 : return;
11543 : : }
11544 : :
11545 : 8 : readp += 4;
11546 [ - + ]: 8 : if (unlikely (readp + 4 > dataend))
11547 : 0 : goto invalid_data;
11548 : :
11549 : 8 : uint32_t cu_off = read_4ubyte_unaligned (dbg, readp);
11550 : 8 : printf (_(" CU offset: %#" PRIx32 "\n"), cu_off);
11551 : :
11552 : 8 : readp += 4;
11553 [ - + ]: 8 : if (unlikely (readp + 4 > dataend))
11554 : 0 : goto invalid_data;
11555 : :
11556 : 8 : uint32_t tu_off = read_4ubyte_unaligned (dbg, readp);
11557 : 8 : printf (_(" TU offset: %#" PRIx32 "\n"), tu_off);
11558 : :
11559 : 8 : readp += 4;
11560 [ - + ]: 8 : if (unlikely (readp + 4 > dataend))
11561 : 0 : goto invalid_data;
11562 : :
11563 : 8 : uint32_t addr_off = read_4ubyte_unaligned (dbg, readp);
11564 : 8 : printf (_(" address offset: %#" PRIx32 "\n"), addr_off);
11565 : :
11566 : 8 : readp += 4;
11567 [ - + ]: 8 : if (unlikely (readp + 4 > dataend))
11568 : 0 : goto invalid_data;
11569 : :
11570 : 8 : uint32_t sym_off = read_4ubyte_unaligned (dbg, readp);
11571 : 8 : printf (_(" symbol offset: %#" PRIx32 "\n"), sym_off);
11572 : :
11573 : 8 : readp += 4;
11574 [ - + ]: 8 : if (unlikely (readp + 4 > dataend))
11575 : 0 : goto invalid_data;
11576 : :
11577 : 8 : uint32_t shortcut_off = 0;
11578 [ + + ]: 8 : if (vers >= 9)
11579 : : {
11580 : 4 : shortcut_off = read_4ubyte_unaligned (dbg, readp);
11581 : 4 : printf (_(" shortcut offset: %#" PRIx32 "\n"), shortcut_off);
11582 : :
11583 : 4 : readp += 4;
11584 [ - + ]: 4 : if (unlikely (readp + 4 > dataend))
11585 : 0 : goto invalid_data;
11586 : : }
11587 : :
11588 : 8 : uint32_t const_off = read_4ubyte_unaligned (dbg, readp);
11589 : 8 : printf (_(" constant offset: %#" PRIx32 "\n"), const_off);
11590 : :
11591 [ - + ]: 8 : if (unlikely ((size_t) (dataend - (const unsigned char *) data->d_buf)
11592 : : < const_off))
11593 : 0 : goto invalid_data;
11594 : :
11595 : 8 : readp = data->d_buf + cu_off;
11596 : :
11597 : 8 : const unsigned char *nextp = data->d_buf + tu_off;
11598 [ - + ]: 8 : if (tu_off >= data->d_size)
11599 : 0 : goto invalid_data;
11600 : :
11601 : 8 : size_t cu_nr = (nextp - readp) / 16;
11602 : :
11603 : 8 : printf (_("\n CU list at offset %#" PRIx32
11604 : : " contains %zu entries:\n"),
11605 : : cu_off, cu_nr);
11606 : :
11607 : 8 : size_t n = 0;
11608 [ + - + + ]: 22 : while (dataend - readp >= 16 && n < cu_nr)
11609 : : {
11610 : 14 : uint64_t off = read_8ubyte_unaligned (dbg, readp);
11611 : 14 : readp += 8;
11612 : :
11613 : 14 : uint64_t len = read_8ubyte_unaligned (dbg, readp);
11614 : 14 : readp += 8;
11615 : :
11616 : 14 : printf (" [%4zu] start: %0#8" PRIx64
11617 : : ", length: %5" PRIu64 "\n", n, off, len);
11618 : 14 : n++;
11619 : : }
11620 : :
11621 : 8 : readp = data->d_buf + tu_off;
11622 : 8 : nextp = data->d_buf + addr_off;
11623 [ - + ]: 8 : if (addr_off >= data->d_size)
11624 : 0 : goto invalid_data;
11625 : :
11626 : 8 : size_t tu_nr = (nextp - readp) / 24;
11627 : :
11628 : 8 : printf (_("\n TU list at offset %#" PRIx32
11629 : : " contains %zu entries:\n"),
11630 : : tu_off, tu_nr);
11631 : :
11632 : 8 : n = 0;
11633 [ + - + + ]: 14 : while (dataend - readp >= 24 && n < tu_nr)
11634 : : {
11635 : 6 : uint64_t off = read_8ubyte_unaligned (dbg, readp);
11636 : 6 : readp += 8;
11637 : :
11638 : 6 : uint64_t type = read_8ubyte_unaligned (dbg, readp);
11639 : 6 : readp += 8;
11640 : :
11641 : 6 : uint64_t sig = read_8ubyte_unaligned (dbg, readp);
11642 : 6 : readp += 8;
11643 : :
11644 : 6 : printf (" [%4zu] CU offset: %5" PRId64
11645 : : ", type offset: %5" PRId64
11646 : : ", signature: %0#8" PRIx64 "\n", n, off, type, sig);
11647 : 6 : n++;
11648 : : }
11649 : :
11650 : 8 : readp = data->d_buf + addr_off;
11651 : 8 : nextp = data->d_buf + sym_off;
11652 [ - + ]: 8 : if (sym_off >= data->d_size)
11653 : 0 : goto invalid_data;
11654 : :
11655 : 8 : size_t addr_nr = (nextp - readp) / 20;
11656 : :
11657 : 8 : printf (_("\n Address list at offset %#" PRIx32
11658 : : " contains %zu entries:\n"),
11659 : : addr_off, addr_nr);
11660 : :
11661 : 8 : n = 0;
11662 [ + - + + ]: 22 : while (dataend - readp >= 20 && n < addr_nr)
11663 : : {
11664 : 14 : uint64_t low = read_8ubyte_unaligned (dbg, readp);
11665 : 14 : readp += 8;
11666 : :
11667 : 14 : uint64_t high = read_8ubyte_unaligned (dbg, readp);
11668 : 14 : readp += 8;
11669 : :
11670 : 14 : uint32_t idx = read_4ubyte_unaligned (dbg, readp);
11671 : 14 : readp += 4;
11672 : :
11673 : 14 : printf (" [%4zu] ", n);
11674 : 14 : print_dwarf_addr (dwflmod, 8, low, low);
11675 : 14 : printf ("..");
11676 : 14 : print_dwarf_addr (dwflmod, 8, high - 1, high);
11677 : 14 : printf (", CU index: %5" PRId32 "\n", idx);
11678 : 14 : n++;
11679 : : }
11680 : :
11681 : 8 : const unsigned char *const_start = data->d_buf + const_off;
11682 [ - + ]: 8 : if (const_off >= data->d_size)
11683 : 0 : goto invalid_data;
11684 : :
11685 : 8 : const unsigned char *shortcut_start = NULL;
11686 [ + + ]: 8 : if (vers >= 9)
11687 : : {
11688 [ - + ]: 4 : if (shortcut_off >= data->d_size)
11689 : 0 : goto invalid_data;
11690 : :
11691 : 4 : shortcut_start = data->d_buf + shortcut_off;
11692 : 4 : nextp = shortcut_start;
11693 : : }
11694 : : else
11695 : : nextp = const_start;
11696 : :
11697 : 8 : readp = data->d_buf + sym_off;
11698 : 8 : size_t sym_nr = (nextp - readp) / 8;
11699 : :
11700 : 8 : printf (_("\n Symbol table at offset %#" PRIx32
11701 : : " contains %zu slots:\n"),
11702 : : addr_off, sym_nr);
11703 : :
11704 : 8 : n = 0;
11705 [ + - + + ]: 8200 : while (dataend - readp >= 8 && n < sym_nr)
11706 : : {
11707 : 8192 : uint32_t name = read_4ubyte_unaligned (dbg, readp);
11708 : 8192 : readp += 4;
11709 : :
11710 : 8192 : uint32_t vector = read_4ubyte_unaligned (dbg, readp);
11711 : 8192 : readp += 4;
11712 : :
11713 [ + + ]: 8192 : if (name != 0 || vector != 0)
11714 : : {
11715 : 60 : const unsigned char *sym = const_start + name;
11716 [ + - - + ]: 60 : if (unlikely ((size_t) (dataend - const_start) < name
11717 : : || memchr (sym, '\0', dataend - sym) == NULL))
11718 : 0 : goto invalid_data;
11719 : :
11720 : 60 : printf (" [%4zu] symbol: %s, CUs: ", n, sym);
11721 : :
11722 : 60 : const unsigned char *readcus = const_start + vector;
11723 [ - + ]: 60 : if (unlikely ((size_t) (dataend - const_start) < vector))
11724 : 0 : goto invalid_data;
11725 : 60 : uint32_t cus = read_4ubyte_unaligned (dbg, readcus);
11726 : 60 : while (cus--)
11727 : : {
11728 : 68 : uint32_t cu_kind, cu, kind;
11729 : 68 : bool is_static;
11730 : 68 : readcus += 4;
11731 [ - + ]: 68 : if (unlikely (readcus + 4 > dataend))
11732 : 0 : goto invalid_data;
11733 : 68 : cu_kind = read_4ubyte_unaligned (dbg, readcus);
11734 : 68 : cu = cu_kind & ((1 << 24) - 1);
11735 : 68 : kind = (cu_kind >> 28) & 7;
11736 : 68 : is_static = cu_kind & (1U << 31);
11737 [ + + ]: 68 : if (cu > cu_nr - 1)
11738 : 10 : printf ("%" PRId32 "T", cu - (uint32_t) cu_nr);
11739 : : else
11740 : 58 : printf ("%" PRId32, cu);
11741 [ + + ]: 68 : if (kind != 0)
11742 : : {
11743 : 52 : printf (" (");
11744 [ + + + - : 52 : switch (kind)
- ]
11745 : : {
11746 : : case 1:
11747 : 20 : printf ("type");
11748 : : break;
11749 : : case 2:
11750 : 16 : printf ("var");
11751 : : break;
11752 : : case 3:
11753 : 16 : printf ("func");
11754 : : break;
11755 : : case 4:
11756 : 0 : printf ("other");
11757 : : break;
11758 : : default:
11759 : 0 : printf ("unknown-0x%" PRIx32, kind);
11760 : : break;
11761 : : }
11762 [ + + ]: 52 : printf (":%c)", (is_static ? 'S' : 'G'));
11763 : : }
11764 [ + + ]: 68 : if (cus > 0)
11765 [ + + ]: 136 : printf (", ");
11766 : : }
11767 : 60 : printf ("\n");
11768 : : }
11769 : 8192 : n++;
11770 : : }
11771 : :
11772 [ + + ]: 8 : if (vers < 9)
11773 : : return;
11774 : :
11775 [ - + ]: 4 : if (unlikely (shortcut_start == NULL))
11776 : 0 : goto invalid_data;
11777 : :
11778 : 4 : readp = shortcut_start;
11779 : 4 : nextp = const_start;
11780 : 4 : size_t shortcut_nr = (nextp - readp) / 4;
11781 : :
11782 [ - + ]: 4 : if (unlikely (shortcut_nr != 2))
11783 : 0 : goto invalid_data;
11784 : :
11785 : 4 : printf (_("\nShortcut table at offset %#" PRIx32 " contains %zu slots:\n"),
11786 : : shortcut_off, shortcut_nr);
11787 : :
11788 : 4 : uint32_t lang = read_4ubyte_unaligned (dbg, readp);
11789 : 4 : readp += 4;
11790 : :
11791 : : /* Include the hex number of LANG in the output if the language
11792 : : is unknown. */
11793 : 4 : const char *lang_str = dwarf_lang_string (lang);
11794 : 4 : lang_str = string_or_unknown (lang_str, lang, DW_LANG_lo_user,
11795 : : DW_LANG_hi_user, true);
11796 : :
11797 : 4 : printf (_("Language of main: %s\n"), lang_str);
11798 : 4 : printf (_("Name of main: "));
11799 : :
11800 [ + + ]: 4 : if (lang != 0)
11801 : : {
11802 : 2 : uint32_t name = read_4ubyte_unaligned (dbg, readp);
11803 : 2 : readp += 4;
11804 : 2 : const unsigned char *sym = const_start + name;
11805 : :
11806 [ + - - + ]: 2 : if (unlikely ((size_t) (dataend - const_start) < name
11807 : : || memchr (sym, '\0', dataend - sym) == NULL))
11808 : 0 : goto invalid_data;
11809 : :
11810 : 2 : printf ("%s\n", sym);
11811 : : }
11812 : : else
11813 : 4 : printf ("<unknown>\n");
11814 : : }
11815 : :
11816 : : /* Returns true and sets split DWARF CU id if there is a split compile
11817 : : unit in the given Dwarf, and no non-split units are found (before it). */
11818 : : static bool
11819 : 402 : is_split_dwarf (Dwarf *dbg, uint64_t *id, Dwarf_CU **split_cu)
11820 : : {
11821 : 402 : Dwarf_CU *cu = NULL;
11822 [ + + ]: 402 : while (dwarf_get_units (dbg, cu, &cu, NULL, NULL, NULL, NULL) == 0)
11823 : : {
11824 : 400 : uint8_t unit_type;
11825 [ + - ]: 400 : if (dwarf_cu_info (cu, NULL, &unit_type, NULL, NULL,
11826 : : id, NULL, NULL) != 0)
11827 : 400 : return false;
11828 : :
11829 [ + + ]: 400 : if (unit_type != DW_UT_split_compile && unit_type != DW_UT_split_type)
11830 : : return false;
11831 : :
11832 : : /* We really only care about the split compile unit, the types
11833 : : should be fine and self sufficient. Also they don't have an
11834 : : id that we can match with a skeleton unit. */
11835 [ + - ]: 18 : if (unit_type == DW_UT_split_compile)
11836 : : {
11837 : 18 : *split_cu = cu;
11838 : 18 : return true;
11839 : : }
11840 : : }
11841 : :
11842 : : return false;
11843 : : }
11844 : :
11845 : : /* Check that there is one and only one Dwfl_Module, return in arg. */
11846 : : static int
11847 : 18 : getone_dwflmod (Dwfl_Module *dwflmod,
11848 : : void **userdata __attribute__ ((unused)),
11849 : : const char *name __attribute__ ((unused)),
11850 : : Dwarf_Addr base __attribute__ ((unused)),
11851 : : void *arg)
11852 : : {
11853 : 18 : Dwfl_Module **m = (Dwfl_Module **) arg;
11854 [ + - ]: 18 : if (*m != NULL)
11855 : : return DWARF_CB_ABORT;
11856 : 18 : *m = dwflmod;
11857 : 18 : return DWARF_CB_OK;
11858 : : }
11859 : :
11860 : : static void
11861 : 532 : print_debug (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr)
11862 : : {
11863 : : /* Used for skeleton file, if necessary for split DWARF. */
11864 : 532 : Dwfl *skel_dwfl = NULL;
11865 : 532 : Dwfl_Module *skel_mod = NULL;
11866 : 532 : char *skel_name = NULL;
11867 : 532 : Dwarf *split_dbg = NULL;
11868 : 532 : Dwarf_CU *split_cu = NULL;
11869 : :
11870 : : /* Before we start the real work get a debug context descriptor. */
11871 : 532 : Dwarf_Addr dwbias;
11872 : 532 : Dwarf *dbg = dwfl_module_getdwarf (dwflmod, &dwbias);
11873 : 532 : Dwarf dummy_dbg =
11874 : : {
11875 : 532 : .elf = ebl->elf,
11876 : 532 : .other_byte_order = MY_ELFDATA != ehdr->e_ident[EI_DATA]
11877 : : };
11878 [ + + ]: 532 : if (dbg == NULL)
11879 : : {
11880 [ - + ]: 130 : if ((print_debug_sections & ~(section_exception|section_frame)) != 0)
11881 : 0 : error (0, 0, _("cannot get debug context descriptor: %s"),
11882 : : dwfl_errmsg (-1));
11883 : : dbg = &dummy_dbg;
11884 : : }
11885 : : else
11886 : : {
11887 : : /* If we are asked about a split dwarf (.dwo) file, use the user
11888 : : provided, or find the corresponding skeleton file. If we got
11889 : : a skeleton file, replace the given dwflmod and dbg, with one
11890 : : derived from the skeleton file to provide enough context. */
11891 : 402 : uint64_t split_id;
11892 [ + + ]: 402 : if (is_split_dwarf (dbg, &split_id, &split_cu))
11893 : : {
11894 [ + - ]: 18 : if (dwarf_skeleton != NULL)
11895 : 18 : skel_name = strdup (dwarf_skeleton);
11896 : : else
11897 : : {
11898 : : /* Replace file.dwo with file.o and see if that matches. */
11899 : 0 : const char *fname;
11900 : 0 : dwfl_module_info (dwflmod, NULL, NULL, NULL, NULL, NULL,
11901 : : &fname, NULL);
11902 [ # # ]: 0 : if (fname != NULL)
11903 : : {
11904 : 0 : size_t flen = strlen (fname);
11905 [ # # # # ]: 0 : if (flen > 4 && strcmp (".dwo", fname + flen - 4) == 0)
11906 : : {
11907 : 0 : skel_name = strdup (fname);
11908 [ # # ]: 0 : if (skel_name != NULL)
11909 : : {
11910 : 0 : skel_name[flen - 3] = 'o';
11911 : 0 : skel_name[flen - 2] = '\0';
11912 : : }
11913 : : }
11914 : : }
11915 : : }
11916 : :
11917 [ - + ]: 18 : if (skel_name != NULL)
11918 : : {
11919 : 18 : int skel_fd = open (skel_name, O_RDONLY);
11920 [ - + ]: 18 : if (skel_fd == -1)
11921 : 0 : fprintf (stderr, "Warning: Couldn't open DWARF skeleton file"
11922 : : " '%s'\n", skel_name);
11923 : : else
11924 : 18 : skel_dwfl = create_dwfl (skel_fd, skel_name);
11925 : :
11926 [ + - ]: 18 : if (skel_dwfl != NULL)
11927 : : {
11928 [ - + ]: 18 : if (dwfl_getmodules (skel_dwfl, &getone_dwflmod,
11929 : : &skel_mod, 0) != 0)
11930 : : {
11931 : 0 : fprintf (stderr, "Warning: Bad DWARF skeleton,"
11932 : : " multiple modules '%s'\n", skel_name);
11933 : 0 : dwfl_end (skel_dwfl);
11934 : 0 : skel_mod = NULL;
11935 : : }
11936 : : }
11937 [ # # ]: 0 : else if (skel_fd != -1)
11938 : 0 : fprintf (stderr, "Warning: Couldn't create skeleton dwfl for"
11939 : : " '%s': %s\n", skel_name, dwfl_errmsg (-1));
11940 : :
11941 [ + - ]: 18 : if (skel_mod != NULL)
11942 : : {
11943 : 18 : Dwarf *skel_dbg = dwfl_module_getdwarf (skel_mod, &dwbias);
11944 [ + - ]: 18 : if (skel_dbg != NULL)
11945 : : {
11946 : : /* First check the skeleton CU DIE, only fetch
11947 : : the split DIE if we know the id matches to
11948 : : not unnecessary search for any split DIEs we
11949 : : don't need. */
11950 : 18 : Dwarf_CU *cu = NULL;
11951 : 18 : while (dwarf_get_units (skel_dbg, cu, &cu,
11952 [ + - ]: 26 : NULL, NULL, NULL, NULL) == 0)
11953 : : {
11954 : 26 : uint8_t unit_type;
11955 : 26 : uint64_t skel_id;
11956 [ + - ]: 26 : if (dwarf_cu_info (cu, NULL, &unit_type, NULL, NULL,
11957 : : &skel_id, NULL, NULL) == 0
11958 [ + - ]: 26 : && unit_type == DW_UT_skeleton
11959 [ + + ]: 26 : && split_id == skel_id)
11960 : : {
11961 : 18 : Dwarf_Die subdie;
11962 [ + - ]: 18 : if (dwarf_cu_info (cu, NULL, NULL, NULL,
11963 : : &subdie,
11964 : : NULL, NULL, NULL) == 0
11965 [ + - ]: 18 : && dwarf_tag (&subdie) != DW_TAG_invalid)
11966 : : {
11967 : 18 : split_dbg = dwarf_cu_getdwarf (subdie.cu);
11968 [ - + ]: 18 : if (split_dbg == NULL)
11969 : 0 : fprintf (stderr,
11970 : : "Warning: Couldn't get split_dbg:"
11971 : : " %s\n", dwarf_errmsg (-1));
11972 : 0 : break;
11973 : : }
11974 : : else
11975 : : {
11976 : : /* Everything matches up, but not
11977 : : according to libdw. Which means
11978 : : the user knew better. So...
11979 : : Terrible hack... We can never
11980 : : destroy the underlying dwfl
11981 : : because it would free the wrong
11982 : : Dwarfs... So we leak memory...*/
11983 [ # # ]: 0 : if (cu->split == NULL
11984 [ # # ]: 0 : && dwarf_skeleton != NULL)
11985 : : {
11986 : 0 : do_not_close_dwfl = true;
11987 : 0 : __libdw_link_skel_split (cu, split_cu);
11988 : 0 : split_dbg = dwarf_cu_getdwarf (split_cu);
11989 : 0 : break;
11990 : : }
11991 : : else
11992 : 0 : fprintf (stderr, "Warning: Couldn't get"
11993 : : " skeleton subdie: %s\n",
11994 : : dwarf_errmsg (-1));
11995 : : }
11996 : : }
11997 : : }
11998 [ - - ]: 18 : if (split_dbg == NULL)
11999 : 0 : fprintf (stderr, "Warning: '%s' didn't contain a skeleton for split id %" PRIx64 "\n", skel_name, split_id);
12000 : : }
12001 : : else
12002 : 0 : fprintf (stderr, "Warning: Couldn't get skeleton DWARF:"
12003 : : " %s\n", dwfl_errmsg (-1));
12004 : : }
12005 : : }
12006 : :
12007 : 0 : if (split_dbg != NULL)
12008 : : {
12009 : 18 : dbg = split_dbg;
12010 : 18 : dwflmod = skel_mod;
12011 : : }
12012 [ # # ]: 0 : else if (skel_name == NULL)
12013 : 0 : fprintf (stderr,
12014 : : "Warning: split DWARF file, but no skeleton found.\n");
12015 : : }
12016 [ + - ]: 384 : else if (dwarf_skeleton != NULL)
12017 : 402 : fprintf (stderr, "Warning: DWARF skeleton given,"
12018 : : " but not a split DWARF file\n");
12019 : : }
12020 : :
12021 : : /* Get the section header string table index. */
12022 : 532 : size_t shstrndx;
12023 [ - + ]: 532 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
12024 : 0 : error_exit (0, _("cannot get section header string table index"));
12025 : :
12026 : : /* If the .debug_info section is listed as implicitly required then
12027 : : we must make sure to handle it before handling any other debug
12028 : : section. Various other sections depend on the CU DIEs being
12029 : : scanned (silently) first. */
12030 : 532 : bool implicit_info = (implicit_debug_sections & section_info) != 0;
12031 : 532 : bool explicit_info = (print_debug_sections & section_info) != 0;
12032 [ + + ]: 532 : if (implicit_info)
12033 : : {
12034 : : Elf_Scn *scn = NULL;
12035 [ + - ]: 3132 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
12036 : : {
12037 : 3132 : GElf_Shdr shdr_mem;
12038 : 3132 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
12039 : :
12040 [ + - + + ]: 3132 : if (shdr != NULL && shdr->sh_type == SHT_PROGBITS)
12041 : : {
12042 : 2448 : const char *name = elf_strptr (ebl->elf, shstrndx,
12043 : 1224 : shdr->sh_name);
12044 [ - + ]: 1224 : if (name == NULL)
12045 : 0 : continue;
12046 : :
12047 [ + + ]: 1224 : if (strcmp (name, ".debug_info") == 0
12048 [ + + ]: 1092 : || strcmp (name, ".debug_info.dwo") == 0
12049 [ + + ]: 1074 : || strcmp (name, ".zdebug_info") == 0
12050 [ + - ]: 1062 : || strcmp (name, ".zdebug_info.dwo") == 0
12051 [ + + ]: 1062 : || strcmp (name, ".gnu.debuglto_.debug_info") == 0)
12052 : : {
12053 : 164 : print_debug_info_section (dwflmod, ebl, ehdr,
12054 : : scn, shdr, dbg);
12055 : 164 : break;
12056 : : }
12057 : : }
12058 : : }
12059 : 164 : print_debug_sections &= ~section_info;
12060 : 164 : implicit_debug_sections &= ~section_info;
12061 : : }
12062 : :
12063 : : /* Look through all the sections for the debugging sections to print. */
12064 : : Elf_Scn *scn = NULL;
12065 [ + + ]: 17358 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
12066 : : {
12067 : 16826 : GElf_Shdr shdr_mem;
12068 : 16826 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
12069 : :
12070 [ + - + + ]: 16826 : if (shdr != NULL && shdr->sh_type == SHT_PROGBITS)
12071 : : {
12072 : 7076 : static const struct
12073 : : {
12074 : : const char *name;
12075 : : enum section_e bitmask;
12076 : : void (*fp) (Dwfl_Module *, Ebl *,
12077 : : GElf_Ehdr *, Elf_Scn *, GElf_Shdr *, Dwarf *);
12078 : : } debug_sections[] =
12079 : : {
12080 : : #define NEW_SECTION(name) \
12081 : : { ".debug_" #name, section_##name, print_debug_##name##_section }
12082 : : NEW_SECTION (abbrev),
12083 : : NEW_SECTION (addr),
12084 : : NEW_SECTION (aranges),
12085 : : NEW_SECTION (frame),
12086 : : NEW_SECTION (info),
12087 : : NEW_SECTION (types),
12088 : : NEW_SECTION (line),
12089 : : NEW_SECTION (loc),
12090 : : /* loclists is loc for DWARF5. */
12091 : : { ".debug_loclists", section_loc,
12092 : : print_debug_loclists_section },
12093 : : NEW_SECTION (pubnames),
12094 : : NEW_SECTION (str),
12095 : : /* A DWARF5 specialised debug string section. */
12096 : : { ".debug_line_str", section_str,
12097 : : print_debug_str_section },
12098 : : /* DWARF5 string offsets table. */
12099 : : { ".debug_str_offsets", section_str,
12100 : : print_debug_str_offsets_section },
12101 : : NEW_SECTION (macinfo),
12102 : : NEW_SECTION (macro),
12103 : : NEW_SECTION (ranges),
12104 : : /* rnglists is ranges for DWARF5. */
12105 : : { ".debug_rnglists", section_ranges,
12106 : : print_debug_rnglists_section },
12107 : : { ".eh_frame", section_frame | section_exception,
12108 : : print_debug_frame_section },
12109 : : { ".eh_frame_hdr", section_frame | section_exception,
12110 : : print_debug_frame_hdr_section },
12111 : : { ".gcc_except_table", section_frame | section_exception,
12112 : : print_debug_exception_table },
12113 : : { ".gdb_index", section_gdb_index, print_gdb_index_section }
12114 : : };
12115 : 7076 : const int ndebug_sections = (sizeof (debug_sections)
12116 : : / sizeof (debug_sections[0]));
12117 : 14152 : const char *name = elf_strptr (ebl->elf, shstrndx,
12118 : 7076 : shdr->sh_name);
12119 [ - + ]: 7076 : if (name == NULL)
12120 : 0 : continue;
12121 : :
12122 : : int n;
12123 [ + + ]: 112690 : for (n = 0; n < ndebug_sections; ++n)
12124 : : {
12125 : 108982 : size_t dbglen = strlen (debug_sections[n].name);
12126 : 108982 : size_t scnlen = strlen (name);
12127 [ + + ]: 108982 : if ((strncmp (name, debug_sections[n].name, dbglen) == 0
12128 [ + + ]: 3612 : && (dbglen == scnlen
12129 [ + + ]: 526 : || (scnlen == dbglen + 4
12130 [ + + ]: 446 : && strstr (name, ".dwo") == name + dbglen)))
12131 [ + + + + ]: 105788 : || (name[0] == '.' && name[1] == 'z'
12132 [ + - ]: 1132 : && debug_sections[n].name[1] == 'd'
12133 [ + + ]: 1132 : && strncmp (&name[2], &debug_sections[n].name[1],
12134 : : dbglen - 1) == 0
12135 [ - + ]: 164 : && (scnlen == dbglen + 1
12136 [ # # ]: 0 : || (scnlen == dbglen + 5
12137 [ # # ]: 0 : && strstr (name, ".dwo") == name + dbglen + 1)))
12138 [ + + ]: 105624 : || (scnlen > 14 /* .gnu.debuglto_ prefix. */
12139 [ + + ]: 8612 : && startswith (name, ".gnu.debuglto_")
12140 [ + + ]: 72 : && strcmp (&name[14], debug_sections[n].name) == 0)
12141 : : )
12142 : : {
12143 : 3368 : if ((print_debug_sections | implicit_debug_sections)
12144 [ + + ]: 3368 : & debug_sections[n].bitmask)
12145 : 1136 : debug_sections[n].fp (dwflmod, ebl, ehdr, scn, shdr, dbg);
12146 : : break;
12147 : : }
12148 : : }
12149 : : }
12150 : : }
12151 : :
12152 : 532 : dwfl_end (skel_dwfl);
12153 : 532 : free (skel_name);
12154 : :
12155 : : /* Turn implicit and/or explicit back on in case we go over another file. */
12156 [ + + ]: 532 : if (implicit_info)
12157 : 164 : implicit_debug_sections |= section_info;
12158 [ + + ]: 532 : if (explicit_info)
12159 : 132 : print_debug_sections |= section_info;
12160 : :
12161 : 532 : reset_listptr (&known_locsptr);
12162 : 532 : reset_listptr (&known_loclistsptr);
12163 : 532 : reset_listptr (&known_rangelistptr);
12164 : 532 : reset_listptr (&known_rnglistptr);
12165 : 532 : reset_listptr (&known_addrbases);
12166 : 532 : reset_listptr (&known_stroffbases);
12167 : 532 : }
12168 : :
12169 : :
12170 : : #define ITEM_INDENT 4
12171 : : #define WRAP_COLUMN 75
12172 : :
12173 : : /* Print "NAME: FORMAT", wrapping when output text would make the line
12174 : : exceed WRAP_COLUMN. Unpadded numbers look better for the core items
12175 : : but this function is also used for registers which should be printed
12176 : : aligned. Fortunately registers output uses fixed fields width (such
12177 : : as %11d) for the alignment.
12178 : :
12179 : : Line breaks should not depend on the particular values although that
12180 : : may happen in some cases of the core items. */
12181 : :
12182 : : static unsigned int
12183 : : __attribute__ ((format (printf, 6, 7)))
12184 : 1642 : print_core_item (unsigned int colno, char sep, unsigned int wrap,
12185 : : size_t name_width, const char *name, const char *format, ...)
12186 : : {
12187 : 1642 : size_t len = strlen (name);
12188 : 1642 : if (name_width < len)
12189 : : name_width = len;
12190 : :
12191 : 1642 : char *out;
12192 : 1642 : va_list ap;
12193 : 1642 : va_start (ap, format);
12194 : 1642 : int out_len = vasprintf (&out, format, ap);
12195 : 1642 : va_end (ap);
12196 [ - + ]: 1642 : if (out_len == -1)
12197 : 0 : error_exit (0, _("memory exhausted"));
12198 : :
12199 : 1642 : size_t n = name_width + sizeof ": " - 1 + out_len;
12200 : :
12201 [ + + ]: 1642 : if (colno == 0)
12202 : : {
12203 : 102 : printf ("%*s", ITEM_INDENT, "");
12204 : 102 : colno = ITEM_INDENT + n;
12205 : : }
12206 [ + + ]: 1540 : else if (colno + 2 + n < wrap)
12207 : : {
12208 : 936 : printf ("%c ", sep);
12209 : 936 : colno += 2 + n;
12210 : : }
12211 : : else
12212 : : {
12213 : 604 : printf ("\n%*s", ITEM_INDENT, "");
12214 : 604 : colno = ITEM_INDENT + n;
12215 : : }
12216 : :
12217 : 1642 : printf ("%s: %*s%s", name, (int) (name_width - len), "", out);
12218 : :
12219 : 1642 : free (out);
12220 : :
12221 : 1642 : return colno;
12222 : : }
12223 : :
12224 : : static const void *
12225 : 1862 : convert (Elf *core, Elf_Type type, uint_fast16_t count,
12226 : : void *value, const void *data, size_t size)
12227 : : {
12228 : 3724 : Elf_Data valuedata =
12229 : : {
12230 : : .d_type = type,
12231 : : .d_buf = value,
12232 [ + + ]: 1862 : .d_size = size ?: gelf_fsize (core, type, count, EV_CURRENT),
12233 : : .d_version = EV_CURRENT,
12234 : : };
12235 : 1862 : Elf_Data indata =
12236 : : {
12237 : : .d_type = type,
12238 : : .d_buf = (void *) data,
12239 : : .d_size = valuedata.d_size,
12240 : : .d_version = EV_CURRENT,
12241 : : };
12242 : :
12243 : 1862 : Elf_Data *d = (gelf_getclass (core) == ELFCLASS32
12244 [ + + ]: 1862 : ? elf32_xlatetom : elf64_xlatetom)
12245 : 1862 : (&valuedata, &indata, elf_getident (core, NULL)[EI_DATA]);
12246 [ - + ]: 1862 : if (d == NULL)
12247 : 0 : error_exit (0, _("cannot convert core note data: %s"),
12248 : : elf_errmsg (-1));
12249 : :
12250 : 1862 : return data + indata.d_size;
12251 : : }
12252 : :
12253 : : typedef uint8_t GElf_Byte;
12254 : :
12255 : : static unsigned int
12256 : 800 : handle_core_item (Elf *core, const Ebl_Core_Item *item, const void *desc,
12257 : : unsigned int colno, size_t *repeated_size)
12258 : : {
12259 [ + + ]: 800 : uint_fast16_t count = item->count ?: 1;
12260 : : /* Ebl_Core_Item count is always a small number.
12261 : : Make sure the backend didn't put in some large bogus value. */
12262 [ - + ]: 124 : assert (count < 128);
12263 : :
12264 : : #define TYPES \
12265 : : DO_TYPE (BYTE, Byte, "0x%.2" PRIx8, "%" PRId8); \
12266 : : DO_TYPE (HALF, Half, "0x%.4" PRIx16, "%" PRId16); \
12267 : : DO_TYPE (WORD, Word, "0x%.8" PRIx32, "%" PRId32); \
12268 : : DO_TYPE (SWORD, Sword, "%" PRId32, "%" PRId32); \
12269 : : DO_TYPE (XWORD, Xword, "0x%.16" PRIx64, "%" PRId64); \
12270 : : DO_TYPE (SXWORD, Sxword, "%" PRId64, "%" PRId64)
12271 : :
12272 : : #define DO_TYPE(NAME, Name, hex, dec) GElf_##Name Name
12273 : 800 : typedef union { TYPES; } value_t;
12274 : 800 : void *data = alloca (count * sizeof (value_t));
12275 : : #undef DO_TYPE
12276 : :
12277 : : #define DO_TYPE(NAME, Name, hex, dec) \
12278 : : GElf_##Name *value_##Name __attribute__((unused)) = data
12279 : 800 : TYPES;
12280 : : #undef DO_TYPE
12281 : :
12282 : 800 : size_t size = gelf_fsize (core, item->type, count, EV_CURRENT);
12283 : 800 : size_t convsize = size;
12284 [ + + ]: 800 : if (repeated_size != NULL)
12285 : : {
12286 [ + - - + ]: 2 : if (*repeated_size > size && (item->format == 'b' || item->format == 'B'))
12287 : : {
12288 : 0 : data = alloca (*repeated_size);
12289 : 0 : count *= *repeated_size / size;
12290 : 0 : convsize = count * size;
12291 : 0 : *repeated_size -= convsize;
12292 : : }
12293 [ + - + - ]: 2 : else if (item->count != 0 || item->format != '\n')
12294 : 0 : *repeated_size -= size;
12295 : : }
12296 : :
12297 : 800 : convert (core, item->type, count, data, desc + item->offset, convsize);
12298 : :
12299 : 800 : Elf_Type type = item->type;
12300 [ + + ]: 800 : if (type == ELF_T_ADDR)
12301 [ + - ]: 2 : type = gelf_getclass (core) == ELFCLASS32 ? ELF_T_WORD : ELF_T_XWORD;
12302 : :
12303 [ + + + + : 800 : switch (item->format)
+ + + +
- ]
12304 : : {
12305 : 386 : case 'd':
12306 [ - + ]: 386 : assert (count == 1);
12307 [ + + + + : 386 : switch (type)
- + - ]
12308 : : {
12309 : : #define DO_TYPE(NAME, Name, hex, dec) \
12310 : : case ELF_T_##NAME: \
12311 : : colno = print_core_item (colno, ',', WRAP_COLUMN, \
12312 : : 0, item->name, dec, value_##Name[0]); \
12313 : : break
12314 : 386 : TYPES;
12315 : : #undef DO_TYPE
12316 : 0 : default:
12317 : 0 : abort ();
12318 : : }
12319 : : break;
12320 : :
12321 : 222 : case 'x':
12322 [ - + ]: 222 : assert (count == 1);
12323 [ - - + - : 222 : switch (type)
+ - - ]
12324 : : {
12325 : : #define DO_TYPE(NAME, Name, hex, dec) \
12326 : : case ELF_T_##NAME: \
12327 : : colno = print_core_item (colno, ',', WRAP_COLUMN, \
12328 : : 0, item->name, hex, value_##Name[0]); \
12329 : : break
12330 : 222 : TYPES;
12331 : : #undef DO_TYPE
12332 : 0 : default:
12333 : 0 : abort ();
12334 : : }
12335 : : break;
12336 : :
12337 : 44 : case 'b':
12338 : : case 'B':
12339 [ - + ]: 44 : assert (size % sizeof (unsigned int) == 0);
12340 : 44 : unsigned int nbits = count * size * 8;
12341 : 44 : unsigned int pop = 0;
12342 [ + + ]: 112 : for (const unsigned int *i = data; (void *) i < data + count * size; ++i)
12343 : 68 : pop += __builtin_popcount (*i);
12344 : 44 : bool negate = pop > nbits / 2;
12345 : 44 : const unsigned int bias = item->format == 'b';
12346 : :
12347 : 44 : {
12348 [ - + ]: 44 : char printed[(negate ? nbits - pop : pop) * 16 + 1];
12349 : 44 : char *p = printed;
12350 : 44 : *p = '\0';
12351 : :
12352 : 44 : if (BYTE_ORDER != LITTLE_ENDIAN && size > sizeof (unsigned int))
12353 : : {
12354 : : assert (size == sizeof (unsigned int) * 2);
12355 : : for (unsigned int *i = data;
12356 : : (void *) i < data + count * size; i += 2)
12357 : : {
12358 : : unsigned int w = i[1];
12359 : : i[1] = i[0];
12360 : : i[0] = w;
12361 : : }
12362 : : }
12363 : :
12364 : 44 : unsigned int lastbit = 0;
12365 : 44 : unsigned int run = 0;
12366 : 44 : for (const unsigned int *i = data;
12367 [ + + ]: 112 : (void *) i < data + count * size; ++i)
12368 : : {
12369 : 68 : unsigned int bit = ((void *) i - data) * 8;
12370 [ - + ]: 68 : unsigned int w = negate ? ~*i : *i;
12371 [ - + ]: 68 : while (w != 0)
12372 : : {
12373 : : /* Note that a right shift equal to (or greater than)
12374 : : the number of bits of w is undefined behaviour. In
12375 : : particular when the least significant bit is bit 32
12376 : : (w = 0x8000000) then w >>= n is undefined. So
12377 : : explicitly handle that case separately. */
12378 : 0 : unsigned int n = ffs (w);
12379 [ # # ]: 0 : if (n < sizeof (w) * 8)
12380 : 0 : w >>= n;
12381 : : else
12382 : : w = 0;
12383 : 0 : bit += n;
12384 : :
12385 [ # # # # ]: 0 : if (lastbit != 0 && lastbit + 1 == bit)
12386 : 0 : ++run;
12387 : : else
12388 : : {
12389 : 0 : if (lastbit == 0)
12390 : 0 : p += sprintf (p, "%u", bit - bias);
12391 [ # # ]: 0 : else if (run == 0)
12392 : 0 : p += sprintf (p, ",%u", bit - bias);
12393 : : else
12394 : 0 : p += sprintf (p, "-%u,%u", lastbit - bias, bit - bias);
12395 : : run = 0;
12396 : : }
12397 : :
12398 : : lastbit = bit;
12399 : : }
12400 : : }
12401 [ - + - - ]: 44 : if (lastbit > 0 && run > 0 && lastbit + 1 != nbits)
12402 : 0 : p += sprintf (p, "-%u", lastbit - bias);
12403 : :
12404 [ + - ]: 88 : colno = print_core_item (colno, ',', WRAP_COLUMN, 0, item->name,
12405 : : negate ? "~<%s>" : "<%s>", printed);
12406 : : }
12407 : 44 : break;
12408 : :
12409 : 88 : case 'T':
12410 : : case (char) ('T'|0x80):
12411 [ - + ]: 88 : assert (count == 2);
12412 : 88 : Dwarf_Word sec;
12413 : 88 : Dwarf_Word usec;
12414 [ - - + - : 88 : switch (type)
+ - - ]
12415 : : {
12416 : : #define DO_TYPE(NAME, Name, hex, dec) \
12417 : : case ELF_T_##NAME: \
12418 : : sec = value_##Name[0]; \
12419 : : usec = value_##Name[1]; \
12420 : : break
12421 : 88 : TYPES;
12422 : : #undef DO_TYPE
12423 : 0 : default:
12424 : 0 : abort ();
12425 : : }
12426 [ - + ]: 88 : if (unlikely (item->format == (char) ('T'|0x80)))
12427 : : {
12428 : : /* This is a hack for an ill-considered 64-bit ABI where
12429 : : tv_usec is actually a 32-bit field with 32 bits of padding
12430 : : rounding out struct timeval. We've already converted it as
12431 : : a 64-bit field. For little-endian, this just means the
12432 : : high half is the padding; it's presumably zero, but should
12433 : : be ignored anyway. For big-endian, it means the 32-bit
12434 : : field went into the high half of USEC. */
12435 : 0 : GElf_Ehdr ehdr_mem;
12436 : 0 : GElf_Ehdr *ehdr = gelf_getehdr (core, &ehdr_mem);
12437 [ # # ]: 0 : if (likely (ehdr->e_ident[EI_DATA] == ELFDATA2MSB))
12438 : 0 : usec >>= 32;
12439 : : else
12440 : 0 : usec &= UINT32_MAX;
12441 : : }
12442 : 88 : colno = print_core_item (colno, ',', WRAP_COLUMN, 0, item->name,
12443 : : "%" PRIu64 ".%.6" PRIu64, sec, usec);
12444 : 88 : break;
12445 : :
12446 : 18 : case 'c':
12447 [ - + ]: 18 : assert (count == 1);
12448 : 18 : colno = print_core_item (colno, ',', WRAP_COLUMN, 0, item->name,
12449 : 18 : "%c", value_Byte[0]);
12450 : 18 : break;
12451 : :
12452 : 36 : case 's':
12453 : 36 : colno = print_core_item (colno, ',', WRAP_COLUMN, 0, item->name,
12454 : : "%.*s", (int) count, value_Byte);
12455 : 36 : break;
12456 : :
12457 : 2 : case '\n':
12458 : : /* This is a list of strings separated by '\n'. */
12459 [ - + ]: 2 : assert (item->count == 0);
12460 [ - + ]: 2 : assert (repeated_size != NULL);
12461 [ - + ]: 2 : assert (item->name == NULL);
12462 [ - + ]: 2 : if (unlikely (item->offset >= *repeated_size))
12463 : : break;
12464 : :
12465 : 2 : const char *s = desc + item->offset;
12466 : 2 : size = *repeated_size - item->offset;
12467 : 2 : *repeated_size = 0;
12468 [ + - ]: 96 : while (size > 0)
12469 : : {
12470 : 96 : const char *eol = memchr (s, '\n', size);
12471 : 96 : int len = size;
12472 [ + + ]: 96 : if (eol != NULL)
12473 : 94 : len = eol - s;
12474 : 96 : printf ("%*s%.*s\n", ITEM_INDENT, "", len, s);
12475 [ + + ]: 96 : if (eol == NULL)
12476 : : break;
12477 : 94 : size -= eol + 1 - s;
12478 : 94 : s = eol + 1;
12479 : : }
12480 : :
12481 : : colno = WRAP_COLUMN;
12482 : : break;
12483 : :
12484 : : case 'h':
12485 : : break;
12486 : :
12487 : 0 : default:
12488 : 800 : error (0, 0, "XXX not handling format '%c' for %s",
12489 : 0 : item->format, item->name);
12490 : : break;
12491 : : }
12492 : :
12493 : : #undef TYPES
12494 : :
12495 : 800 : return colno;
12496 : : }
12497 : :
12498 : :
12499 : : /* Sort items by group, and by layout offset within each group. */
12500 : : static int
12501 : 1790 : compare_core_items (const void *a, const void *b)
12502 : : {
12503 : 1790 : const Ebl_Core_Item *const *p1 = a;
12504 : 1790 : const Ebl_Core_Item *const *p2 = b;
12505 : 1790 : const Ebl_Core_Item *item1 = *p1;
12506 : 1790 : const Ebl_Core_Item *item2 = *p2;
12507 : :
12508 : 1790 : return ((item1->group == item2->group ? 0
12509 [ + + ]: 1790 : : strcmp (item1->group, item2->group))
12510 [ - + ]: 1790 : ?: (int) item1->offset - (int) item2->offset);
12511 : : }
12512 : :
12513 : : /* Sort item groups by layout offset of the first item in the group. */
12514 : : static int
12515 : 278 : compare_core_item_groups (const void *a, const void *b)
12516 : : {
12517 : 278 : const Ebl_Core_Item *const *const *p1 = a;
12518 : 278 : const Ebl_Core_Item *const *const *p2 = b;
12519 : 278 : const Ebl_Core_Item *const *group1 = *p1;
12520 : 278 : const Ebl_Core_Item *const *group2 = *p2;
12521 : 278 : const Ebl_Core_Item *item1 = *group1;
12522 : 278 : const Ebl_Core_Item *item2 = *group2;
12523 : :
12524 : 278 : return (int) item1->offset - (int) item2->offset;
12525 : : }
12526 : :
12527 : : static unsigned int
12528 : 74 : handle_core_items (Elf *core, const void *desc, size_t descsz,
12529 : : const Ebl_Core_Item *items, size_t nitems)
12530 : 74 : {
12531 [ + + ]: 74 : if (nitems == 0)
12532 : : return 0;
12533 : 68 : unsigned int colno = 0;
12534 : :
12535 : : /* FORMAT '\n' makes sense to be present only as a single item as it
12536 : : processes all the data of a note. FORMATs 'b' and 'B' have a special case
12537 : : if present as a single item but they can be also processed with other
12538 : : items below. */
12539 [ + + + + ]: 68 : if (nitems == 1 && (items[0].format == '\n' || items[0].format == 'b'
12540 [ + - ]: 16 : || items[0].format == 'B'))
12541 : : {
12542 [ - + ]: 2 : assert (items[0].offset == 0);
12543 : 2 : size_t size = descsz;
12544 : 2 : colno = handle_core_item (core, items, desc, colno, &size);
12545 : : /* If SIZE is not zero here there is some remaining data. But we do not
12546 : : know how to process it anyway. */
12547 : 2 : return colno;
12548 : : }
12549 [ + + ]: 848 : for (size_t i = 0; i < nitems; ++i)
12550 [ - + ]: 782 : assert (items[i].format != '\n');
12551 : :
12552 : : /* Sort to collect the groups together. */
12553 : 66 : const Ebl_Core_Item *sorted_items[nitems];
12554 [ + + ]: 848 : for (size_t i = 0; i < nitems; ++i)
12555 : 782 : sorted_items[i] = &items[i];
12556 : 66 : qsort (sorted_items, nitems, sizeof sorted_items[0], &compare_core_items);
12557 : :
12558 : : /* Collect the unique groups and sort them. */
12559 : 66 : const Ebl_Core_Item **groups[nitems];
12560 : 66 : groups[0] = &sorted_items[0];
12561 : 66 : size_t ngroups = 1;
12562 [ + + ]: 782 : for (size_t i = 1; i < nitems; ++i)
12563 [ + + ]: 716 : if (sorted_items[i]->group != sorted_items[i - 1]->group
12564 [ + - ]: 150 : && strcmp (sorted_items[i]->group, sorted_items[i - 1]->group))
12565 : 150 : groups[ngroups++] = &sorted_items[i];
12566 : 66 : qsort (groups, ngroups, sizeof groups[0], &compare_core_item_groups);
12567 : :
12568 : : /* Write out all the groups. */
12569 : 66 : const void *last = desc;
12570 : 70 : do
12571 : : {
12572 [ + + ]: 290 : for (size_t i = 0; i < ngroups; ++i)
12573 : : {
12574 : 220 : for (const Ebl_Core_Item **item = groups[i];
12575 : 1018 : (item < &sorted_items[nitems]
12576 [ + + + + ]: 1018 : && ((*item)->group == groups[i][0]->group
12577 [ - + ]: 150 : || !strcmp ((*item)->group, groups[i][0]->group)));
12578 : 798 : ++item)
12579 : 798 : colno = handle_core_item (core, *item, desc, colno, NULL);
12580 : :
12581 : : /* Force a line break at the end of the group. */
12582 : 220 : colno = WRAP_COLUMN;
12583 : : }
12584 : :
12585 [ + + ]: 70 : if (descsz == 0)
12586 : : break;
12587 : :
12588 : : /* This set of items consumed a certain amount of the note's data.
12589 : : If there is more data there, we have another unit of the same size.
12590 : : Loop to print that out too. */
12591 : 40 : const Ebl_Core_Item *item = &items[nitems - 1];
12592 : 80 : size_t eltsz = item->offset + gelf_fsize (core, item->type,
12593 : 40 : item->count ?: 1, EV_CURRENT);
12594 : :
12595 : 40 : int reps = -1;
12596 : 40 : do
12597 : : {
12598 : 40 : ++reps;
12599 : 40 : desc += eltsz;
12600 : 40 : descsz -= eltsz;
12601 : : }
12602 [ + + - + ]: 40 : while (descsz >= eltsz && !memcmp (desc, last, eltsz));
12603 : :
12604 [ + - ]: 40 : if (reps == 1)
12605 : : {
12606 : : /* For just one repeat, print it unabridged twice. */
12607 : 40 : desc -= eltsz;
12608 : 40 : descsz += eltsz;
12609 : : }
12610 [ + - ]: 40 : else if (reps > 1)
12611 : 0 : printf (_("\n%*s... <repeats %u more times> ..."),
12612 : : ITEM_INDENT, "", reps);
12613 : :
12614 : 40 : last = desc;
12615 : : }
12616 [ + + ]: 40 : while (descsz > 0);
12617 : :
12618 : : return colno;
12619 : : }
12620 : :
12621 : : static unsigned int
12622 : 324 : handle_core_register (Ebl *ebl, Elf *core, int maxregname,
12623 : : const Ebl_Register_Location *regloc, const void *desc,
12624 : : unsigned int colno)
12625 : : {
12626 [ - + ]: 324 : if (regloc->bits % 8 != 0)
12627 : : {
12628 : 0 : error (0, 0, "Warning: Cannot handle register with %" PRIu8 "bits\n",
12629 : : regloc->bits);
12630 : 0 : return colno;
12631 : : }
12632 : :
12633 : 324 : desc += regloc->offset;
12634 : :
12635 [ + + ]: 1172 : for (int reg = regloc->regno; reg < regloc->regno + regloc->count; ++reg)
12636 : : {
12637 : 848 : char name[REGNAMESZ];
12638 : 848 : int bits;
12639 : 848 : int type;
12640 : 848 : register_info (ebl, reg, regloc, name, &bits, &type);
12641 : :
12642 : : #define TYPES \
12643 : : BITS (8, BYTE, "%4" PRId8, "0x%.2" PRIx8); \
12644 : : BITS (16, HALF, "%6" PRId16, "0x%.4" PRIx16); \
12645 : : BITS (32, WORD, "%11" PRId32, " 0x%.8" PRIx32); \
12646 : : BITS (64, XWORD, "%20" PRId64, " 0x%.16" PRIx64)
12647 : :
12648 : : #define BITS(bits, xtype, sfmt, ufmt) \
12649 : : uint##bits##_t b##bits; int##bits##_t b##bits##s
12650 : 848 : union { TYPES; uint64_t b128[2]; } value;
12651 : : #undef BITS
12652 : :
12653 [ + + ]: 848 : switch (type)
12654 : : {
12655 : 672 : case DW_ATE_unsigned:
12656 : : case DW_ATE_signed:
12657 : : case DW_ATE_address:
12658 [ - + + + : 672 : switch (bits)
+ - ]
12659 : : {
12660 : : #define BITS(bits, xtype, sfmt, ufmt) \
12661 : : case bits: \
12662 : : desc = convert (core, ELF_T_##xtype, 1, &value, desc, 0); \
12663 : : if (type == DW_ATE_signed) \
12664 : : colno = print_core_item (colno, ' ', WRAP_COLUMN, \
12665 : : maxregname, name, \
12666 : : sfmt, value.b##bits##s); \
12667 : : else \
12668 : : colno = print_core_item (colno, ' ', WRAP_COLUMN, \
12669 : : maxregname, name, \
12670 : : ufmt, value.b##bits); \
12671 : : break
12672 : :
12673 [ - - - + : 576 : TYPES;
+ + + + ]
12674 : :
12675 : 96 : case 128:
12676 [ - + ]: 96 : assert (type == DW_ATE_unsigned);
12677 : 96 : desc = convert (core, ELF_T_XWORD, 2, &value, desc, 0);
12678 : 96 : int be = elf_getident (core, NULL)[EI_DATA] == ELFDATA2MSB;
12679 : 96 : colno = print_core_item (colno, ' ', WRAP_COLUMN,
12680 : : maxregname, name,
12681 : : "0x%.16" PRIx64 "%.16" PRIx64,
12682 : 96 : value.b128[!be], value.b128[be]);
12683 : 96 : break;
12684 : :
12685 : 0 : default:
12686 : 0 : abort ();
12687 : : #undef BITS
12688 : : }
12689 : : break;
12690 : :
12691 : 176 : default:
12692 : : /* Print each byte in hex, the whole thing in native byte order. */
12693 [ - + ]: 176 : assert (bits % 8 == 0);
12694 : 176 : const uint8_t *bytes = desc;
12695 : 176 : desc += bits / 8;
12696 : 176 : char hex[bits / 4 + 1];
12697 : 176 : hex[bits / 4] = '\0';
12698 : 176 : int incr = 1;
12699 [ + + ]: 176 : if (elf_getident (core, NULL)[EI_DATA] == ELFDATA2LSB)
12700 : : {
12701 : 96 : bytes += bits / 8 - 1;
12702 : 96 : incr = -1;
12703 : : }
12704 : 176 : size_t idx = 0;
12705 [ + + ]: 1744 : for (char *h = hex; bits > 0; bits -= 8, idx += incr)
12706 : : {
12707 : 1568 : *h++ = "0123456789abcdef"[bytes[idx] >> 4];
12708 : 1568 : *h++ = "0123456789abcdef"[bytes[idx] & 0xf];
12709 : : }
12710 : 176 : colno = print_core_item (colno, ' ', WRAP_COLUMN,
12711 : : maxregname, name, "0x%s", hex);
12712 : 176 : break;
12713 : : }
12714 : 848 : desc += regloc->pad;
12715 : :
12716 : : #undef TYPES
12717 : : }
12718 : :
12719 : : return colno;
12720 : : }
12721 : :
12722 : :
12723 : : struct register_info
12724 : : {
12725 : : const Ebl_Register_Location *regloc;
12726 : : const char *set;
12727 : : char name[REGNAMESZ];
12728 : : int regno;
12729 : : int bits;
12730 : : int type;
12731 : : };
12732 : :
12733 : : static int
12734 : 4132 : register_bitpos (const struct register_info *r)
12735 : : {
12736 : 4132 : return (r->regloc->offset * 8
12737 : 4132 : + ((r->regno - r->regloc->regno)
12738 : 4132 : * (r->regloc->bits + r->regloc->pad * 8)));
12739 : : }
12740 : :
12741 : : static int
12742 : 2124 : compare_sets_by_info (const struct register_info *r1,
12743 : : const struct register_info *r2)
12744 : : {
12745 : 2124 : return ((int) r2->bits - (int) r1->bits
12746 [ + + ]: 2124 : ?: register_bitpos (r1) - register_bitpos (r2));
12747 : : }
12748 : :
12749 : : /* Sort registers by set, and by size and layout offset within each set. */
12750 : : static int
12751 : 9190 : compare_registers (const void *a, const void *b)
12752 : : {
12753 : 9190 : const struct register_info *r1 = a;
12754 : 9190 : const struct register_info *r2 = b;
12755 : :
12756 : : /* Unused elements sort last. */
12757 [ + + ]: 9190 : if (r1->regloc == NULL)
12758 : 6618 : return r2->regloc == NULL ? 0 : 1;
12759 [ + + ]: 2572 : if (r2->regloc == NULL)
12760 : : return -1;
12761 : :
12762 [ + + ]: 2242 : return ((r1->set == r2->set ? 0 : strcmp (r1->set, r2->set))
12763 [ - + ]: 2242 : ?: compare_sets_by_info (r1, r2));
12764 : : }
12765 : :
12766 : : /* Sort register sets by layout offset of the first register in the set. */
12767 : : static int
12768 : 40 : compare_register_sets (const void *a, const void *b)
12769 : : {
12770 : 40 : const struct register_info *const *p1 = a;
12771 : 40 : const struct register_info *const *p2 = b;
12772 : 40 : return compare_sets_by_info (*p1, *p2);
12773 : : }
12774 : :
12775 : : static inline bool
12776 : 1728 : same_set (const struct register_info *a,
12777 : : const struct register_info *b,
12778 : : const struct register_info *regs,
12779 : : size_t maxnreg)
12780 : : {
12781 [ + - ]: 1728 : return (a < ®s[maxnreg] && a->regloc != NULL
12782 [ + - + + ]: 1728 : && b < ®s[maxnreg] && b->regloc != NULL
12783 [ + + ]: 1692 : && a->bits == b->bits
12784 [ + - + + : 3384 : && (a->set == b->set || !strcmp (a->set, b->set)));
- + ]
12785 : : }
12786 : :
12787 : : static unsigned int
12788 : 74 : handle_core_registers (Ebl *ebl, Elf *core, const void *desc,
12789 : : const Ebl_Register_Location *reglocs, size_t nregloc)
12790 : 74 : {
12791 [ + + ]: 74 : if (nregloc == 0)
12792 : : return 0;
12793 : :
12794 : 36 : ssize_t maxnreg = ebl_register_info (ebl, 0, NULL, 0, NULL, NULL, NULL, NULL);
12795 [ - + ]: 36 : if (maxnreg <= 0)
12796 : : {
12797 [ # # ]: 0 : for (size_t i = 0; i < nregloc; ++i)
12798 : 0 : if (maxnreg < reglocs[i].regno + reglocs[i].count)
12799 : : maxnreg = reglocs[i].regno + reglocs[i].count;
12800 [ # # ]: 0 : assert (maxnreg > 0);
12801 : : }
12802 : :
12803 : 36 : struct register_info regs[maxnreg];
12804 : 36 : memset (regs, 0, sizeof regs);
12805 : :
12806 : : /* Sort to collect the sets together. */
12807 : 36 : int maxreg = 0;
12808 [ + + ]: 360 : for (size_t i = 0; i < nregloc; ++i)
12809 : 324 : for (int reg = reglocs[i].regno;
12810 [ + + ]: 1172 : reg < reglocs[i].regno + reglocs[i].count;
12811 : 848 : ++reg)
12812 : : {
12813 [ - + ]: 848 : assert (reg < maxnreg);
12814 : 848 : if (reg > maxreg)
12815 : : maxreg = reg;
12816 : 848 : struct register_info *info = ®s[reg];
12817 : 848 : info->regloc = ®locs[i];
12818 : 848 : info->regno = reg;
12819 : 848 : info->set = register_info (ebl, reg, ®locs[i],
12820 : 848 : info->name, &info->bits, &info->type);
12821 : : }
12822 : 36 : qsort (regs, maxreg + 1, sizeof regs[0], &compare_registers);
12823 : :
12824 : : /* Collect the unique sets and sort them. */
12825 : 36 : struct register_info *sets[maxreg + 1];
12826 : 36 : sets[0] = ®s[0];
12827 : 36 : size_t nsets = 1;
12828 [ + + ]: 2558 : for (int i = 1; i <= maxreg; ++i)
12829 [ + + ]: 2522 : if (regs[i].regloc != NULL
12830 [ + + ]: 812 : && !same_set (®s[i], ®s[i - 1], regs, maxnreg))
12831 : 32 : sets[nsets++] = ®s[i];
12832 : 36 : qsort (sets, nsets, sizeof sets[0], &compare_register_sets);
12833 : :
12834 : : /* Write out all the sets. */
12835 : 36 : unsigned int colno = 0;
12836 [ + + ]: 104 : for (size_t i = 0; i < nsets; ++i)
12837 : : {
12838 : : /* Find the longest name of a register in this set. */
12839 : 68 : size_t maxname = 0;
12840 : 68 : const struct register_info *end;
12841 [ + + ]: 916 : for (end = sets[i]; same_set (sets[i], end, regs, maxnreg); ++end)
12842 : : {
12843 : 848 : size_t len = strlen (end->name);
12844 : 848 : if (len > maxname)
12845 : : maxname = len;
12846 : : }
12847 : :
12848 : : for (const struct register_info *reg = sets[i];
12849 [ + + ]: 392 : reg < end;
12850 : 324 : reg += reg->regloc->count ?: 1)
12851 [ + - ]: 324 : colno = handle_core_register (ebl, core, maxname,
12852 : 324 : reg->regloc, desc, colno);
12853 : :
12854 : : /* Force a line break at the end of the group. */
12855 : 68 : colno = WRAP_COLUMN;
12856 : : }
12857 : :
12858 : : return colno;
12859 : : }
12860 : :
12861 : : static void
12862 : 18 : handle_auxv_note (Ebl *ebl, Elf *core, GElf_Word descsz, GElf_Off desc_pos)
12863 : : {
12864 : 18 : Elf_Data *data = elf_getdata_rawchunk (core, desc_pos, descsz, ELF_T_AUXV);
12865 [ - + ]: 18 : if (data == NULL)
12866 : 0 : elf_error:
12867 : 0 : error_exit (0, _("cannot convert core note data: %s"), elf_errmsg (-1));
12868 : :
12869 : 18 : const size_t nauxv = descsz / gelf_fsize (core, ELF_T_AUXV, 1, EV_CURRENT);
12870 [ + + ]: 354 : for (size_t i = 0; i < nauxv; ++i)
12871 : : {
12872 : 336 : GElf_auxv_t av_mem;
12873 : 336 : GElf_auxv_t *av = gelf_getauxv (data, i, &av_mem);
12874 [ - + ]: 336 : if (av == NULL)
12875 : 0 : goto elf_error;
12876 : :
12877 : 336 : const char *name;
12878 : 336 : const char *fmt;
12879 [ - + ]: 336 : if (ebl_auxv_info (ebl, av->a_type, &name, &fmt) == 0)
12880 : : {
12881 : : /* Unknown type. */
12882 [ # # ]: 0 : if (av->a_un.a_val == 0)
12883 : 0 : printf (" %" PRIu64 "\n", av->a_type);
12884 : : else
12885 : 0 : printf (" %" PRIu64 ": %#" PRIx64 "\n",
12886 : : av->a_type, av->a_un.a_val);
12887 : : }
12888 : : else
12889 [ + + + - : 336 : switch (fmt[0])
+ - ]
12890 : : {
12891 : 18 : case '\0': /* Normally zero. */
12892 [ + - ]: 18 : if (av->a_un.a_val == 0)
12893 : : {
12894 : 18 : printf (" %s\n", name);
12895 : : break;
12896 : : }
12897 : 148 : FALLTHROUGH;
12898 : : case 'x': /* hex */
12899 : : case 'p': /* address */
12900 : : case 's': /* address of string */
12901 : 148 : printf (" %s: %#" PRIx64 "\n", name, av->a_un.a_val);
12902 : : break;
12903 : 162 : case 'u':
12904 : 162 : printf (" %s: %" PRIu64 "\n", name, av->a_un.a_val);
12905 : : break;
12906 : 0 : case 'd':
12907 : 0 : printf (" %s: %" PRId64 "\n", name, av->a_un.a_val);
12908 : : break;
12909 : :
12910 : 8 : case 'b':
12911 : 8 : printf (" %s: %#" PRIx64 " ", name, av->a_un.a_val);
12912 : 8 : GElf_Xword bit = 1;
12913 : 8 : const char *pfx = "<";
12914 [ + + ]: 220 : for (const char *p = fmt + 1; *p != 0; p = strchr (p, '\0') + 1)
12915 : : {
12916 [ + + ]: 212 : if (av->a_un.a_val & bit)
12917 : : {
12918 : 154 : printf ("%s%s", pfx, p);
12919 : 154 : pfx = " ";
12920 : : }
12921 : 212 : bit <<= 1;
12922 : : }
12923 : 336 : printf (">\n");
12924 : : break;
12925 : :
12926 : 0 : default:
12927 : 0 : abort ();
12928 : : }
12929 : : }
12930 : 18 : }
12931 : :
12932 : : static bool
12933 : 390 : buf_has_data (unsigned char const *ptr, unsigned char const *end, size_t sz)
12934 : : {
12935 [ - + - + ]: 390 : return ptr < end && (size_t) (end - ptr) >= sz;
12936 : : }
12937 : :
12938 : : static bool
12939 : 36 : buf_read_int (Elf *core, unsigned char const **ptrp, unsigned char const *end,
12940 : : int *retp)
12941 : : {
12942 [ + - + - ]: 72 : if (! buf_has_data (*ptrp, end, 4))
12943 : : return false;
12944 : :
12945 : 36 : *ptrp = convert (core, ELF_T_WORD, 1, retp, *ptrp, 4);
12946 : 36 : return true;
12947 : : }
12948 : :
12949 : : static bool
12950 : 354 : buf_read_ulong (Elf *core, unsigned char const **ptrp, unsigned char const *end,
12951 : : uint64_t *retp)
12952 : : {
12953 : 354 : size_t sz = gelf_fsize (core, ELF_T_ADDR, 1, EV_CURRENT);
12954 [ + - + - ]: 708 : if (! buf_has_data (*ptrp, end, sz))
12955 : : return false;
12956 : :
12957 : 354 : union
12958 : : {
12959 : : uint64_t u64;
12960 : : uint32_t u32;
12961 : : } u;
12962 : :
12963 : 354 : *ptrp = convert (core, ELF_T_ADDR, 1, &u, *ptrp, sz);
12964 : :
12965 [ + + ]: 354 : if (sz == 4)
12966 : 186 : *retp = u.u32;
12967 : : else
12968 : 168 : *retp = u.u64;
12969 : : return true;
12970 : : }
12971 : :
12972 : : static void
12973 : 12 : handle_siginfo_note (Elf *core, GElf_Word descsz, GElf_Off desc_pos)
12974 : : {
12975 : 12 : Elf_Data *data = elf_getdata_rawchunk (core, desc_pos, descsz, ELF_T_BYTE);
12976 [ - + ]: 12 : if (data == NULL)
12977 : 0 : error_exit (0, _("cannot convert core note data: %s"), elf_errmsg (-1));
12978 : :
12979 : 12 : unsigned char const *ptr = data->d_buf;
12980 : 12 : unsigned char const *const end = data->d_buf + data->d_size;
12981 : :
12982 : : /* Siginfo head is three ints: signal number, error number, origin
12983 : : code. */
12984 : 12 : int si_signo, si_errno, si_code;
12985 [ - + ]: 12 : if (! buf_read_int (core, &ptr, end, &si_signo)
12986 [ - + ]: 12 : || ! buf_read_int (core, &ptr, end, &si_errno)
12987 [ - + ]: 12 : || ! buf_read_int (core, &ptr, end, &si_code))
12988 : : {
12989 : 0 : fail:
12990 : 0 : printf (" Not enough data in NT_SIGINFO note.\n");
12991 : 0 : return;
12992 : : }
12993 : :
12994 : : /* Next is a pointer-aligned union of structures. On 64-bit
12995 : : machines, that implies a word of padding. */
12996 [ + + ]: 12 : if (gelf_getclass (core) == ELFCLASS64)
12997 : 6 : ptr += 4;
12998 : :
12999 : 12 : printf (" si_signo: %d, si_errno: %d, si_code: %d\n",
13000 : : si_signo, si_errno, si_code);
13001 : :
13002 [ + - ]: 12 : if (si_code > 0)
13003 [ + - ]: 12 : switch (si_signo)
13004 : : {
13005 : 12 : case CORE_SIGILL:
13006 : : case CORE_SIGFPE:
13007 : : case CORE_SIGSEGV:
13008 : : case CORE_SIGBUS:
13009 : : {
13010 : 12 : uint64_t addr;
13011 [ - + ]: 12 : if (! buf_read_ulong (core, &ptr, end, &addr))
13012 : 0 : goto fail;
13013 : 12 : printf (" fault address: %#" PRIx64 "\n", addr);
13014 : 12 : break;
13015 : : }
13016 : : default:
13017 : : ;
13018 : : }
13019 [ # # ]: 0 : else if (si_code == CORE_SI_USER)
13020 : : {
13021 : 0 : int pid, uid;
13022 [ # # ]: 0 : if (! buf_read_int (core, &ptr, end, &pid)
13023 [ # # ]: 0 : || ! buf_read_int (core, &ptr, end, &uid))
13024 : 0 : goto fail;
13025 : 0 : printf (" sender PID: %d, sender UID: %d\n", pid, uid);
13026 : : }
13027 : : }
13028 : :
13029 : : static void
13030 : 12 : handle_file_note (Elf *core, GElf_Word descsz, GElf_Off desc_pos)
13031 : : {
13032 : 12 : Elf_Data *data = elf_getdata_rawchunk (core, desc_pos, descsz, ELF_T_BYTE);
13033 [ - + ]: 12 : if (data == NULL)
13034 : 0 : error_exit (0, _("cannot convert core note data: %s"), elf_errmsg (-1));
13035 : :
13036 : 12 : unsigned char const *ptr = data->d_buf;
13037 : 12 : unsigned char const *const end = data->d_buf + data->d_size;
13038 : :
13039 : 12 : uint64_t count, page_size;
13040 [ - + ]: 12 : if (! buf_read_ulong (core, &ptr, end, &count)
13041 [ - + ]: 12 : || ! buf_read_ulong (core, &ptr, end, &page_size))
13042 : : {
13043 : 0 : fail:
13044 : 0 : printf (" Not enough data in NT_FILE note.\n");
13045 : 0 : return;
13046 : : }
13047 : :
13048 : 12 : size_t addrsize = gelf_fsize (core, ELF_T_ADDR, 1, EV_CURRENT);
13049 : 12 : uint64_t maxcount = (size_t) (end - ptr) / (3 * addrsize);
13050 [ - + ]: 12 : if (count > maxcount)
13051 : 0 : goto fail;
13052 : :
13053 : : /* Where file names are stored. */
13054 : 12 : unsigned char const *const fstart = ptr + 3 * count * addrsize;
13055 : 12 : char const *fptr = (char *) fstart;
13056 : :
13057 : 12 : printf (" %" PRId64 " files:\n", count);
13058 [ + + ]: 118 : for (uint64_t i = 0; i < count; ++i)
13059 : : {
13060 : 106 : uint64_t mstart, mend, moffset;
13061 [ + - ]: 106 : if (! buf_read_ulong (core, &ptr, fstart, &mstart)
13062 [ + - ]: 106 : || ! buf_read_ulong (core, &ptr, fstart, &mend)
13063 [ - + ]: 106 : || ! buf_read_ulong (core, &ptr, fstart, &moffset))
13064 : 0 : goto fail;
13065 : :
13066 : 106 : const char *fnext = memchr (fptr, '\0', (char *) end - fptr);
13067 [ - + ]: 106 : if (fnext == NULL)
13068 : 0 : goto fail;
13069 : :
13070 : 106 : int ct = printf (" %08" PRIx64 "-%08" PRIx64
13071 : : " %08" PRIx64 " %" PRId64,
13072 : : mstart, mend, moffset * page_size, mend - mstart);
13073 [ + - ]: 106 : printf ("%*s%s\n", ct > 50 ? 3 : 53 - ct, "", fptr);
13074 : :
13075 : 106 : fptr = fnext + 1;
13076 : : }
13077 : : }
13078 : :
13079 : : static void
13080 : 76 : handle_core_note (Ebl *ebl, const GElf_Nhdr *nhdr,
13081 : : const char *name, const void *desc)
13082 : : {
13083 : 76 : GElf_Word regs_offset;
13084 : 76 : size_t nregloc;
13085 : 76 : const Ebl_Register_Location *reglocs;
13086 : 76 : size_t nitems;
13087 : 76 : const Ebl_Core_Item *items;
13088 : :
13089 [ + + ]: 76 : if (! ebl_core_note (ebl, nhdr, name, desc,
13090 : : ®s_offset, &nregloc, ®locs, &nitems, &items))
13091 : 2 : return;
13092 : :
13093 : : /* Pass 0 for DESCSZ when there are registers in the note,
13094 : : so that the ITEMS array does not describe the whole thing.
13095 : : For non-register notes, the actual descsz might be a multiple
13096 : : of the unit size, not just exactly the unit size. */
13097 : 74 : unsigned int colno = handle_core_items (ebl->elf, desc,
13098 [ + + ]: 74 : nregloc == 0 ? nhdr->n_descsz : 0,
13099 : : items, nitems);
13100 [ + + ]: 74 : if (colno != 0)
13101 [ - + ]: 68 : putchar_unlocked ('\n');
13102 : :
13103 : 74 : colno = handle_core_registers (ebl, ebl->elf, desc + regs_offset,
13104 : : reglocs, nregloc);
13105 [ + + ]: 74 : if (colno != 0)
13106 [ - + ]: 110 : putchar_unlocked ('\n');
13107 : : }
13108 : :
13109 : : static void
13110 : 590 : handle_notes_data (Ebl *ebl, const GElf_Ehdr *ehdr,
13111 : : GElf_Off start, Elf_Data *data)
13112 : : {
13113 : 590 : fputs_unlocked (_(" Owner Data size Type\n"), stdout);
13114 : :
13115 [ - + ]: 590 : if (data == NULL)
13116 : 0 : goto bad_note;
13117 : :
13118 : : size_t offset = 0;
13119 : : GElf_Nhdr nhdr;
13120 : : size_t name_offset;
13121 : : size_t desc_offset;
13122 : 7100 : while (offset < data->d_size
13123 [ + + + - ]: 7100 : && (offset = gelf_getnote (data, offset,
13124 : : &nhdr, &name_offset, &desc_offset)) > 0)
13125 : : {
13126 [ + - ]: 6510 : const char *name = nhdr.n_namesz == 0 ? "" : data->d_buf + name_offset;
13127 : 6510 : const char *desc = data->d_buf + desc_offset;
13128 : :
13129 : : /* GNU Build Attributes are weird, they store most of their data
13130 : : into the owner name field. Extract just the owner name
13131 : : prefix here, then use the rest later as data. */
13132 : 6510 : bool is_gnu_build_attr
13133 : 6510 : = startswith (name, ELF_NOTE_GNU_BUILD_ATTRIBUTE_PREFIX);
13134 : 13662 : const char *print_name = (is_gnu_build_attr
13135 [ + + ]: 6510 : ? ELF_NOTE_GNU_BUILD_ATTRIBUTE_PREFIX : name);
13136 : 7152 : size_t print_namesz = (is_gnu_build_attr
13137 : 642 : ? strlen (print_name) : nhdr.n_namesz);
13138 : :
13139 : 6510 : char buf[100];
13140 : 6510 : char buf2[100];
13141 : 6510 : printf (_(" %-13.*s %9" PRId32 " %s\n"),
13142 : : (int) print_namesz, print_name, nhdr.n_descsz,
13143 [ + + ]: 6510 : ehdr->e_type == ET_CORE
13144 : 118 : ? ebl_core_note_type_name (ebl, nhdr.n_type,
13145 : : buf, sizeof (buf))
13146 : 6392 : : ebl_object_note_type_name (ebl, name, nhdr.n_type,
13147 : : nhdr.n_descsz,
13148 : : buf2, sizeof (buf2)));
13149 : :
13150 : : /* Filter out invalid entries. */
13151 : 6510 : if (memchr (name, '\0', nhdr.n_namesz) != NULL
13152 : : /* XXX For now help broken Linux kernels. */
13153 : : || 1)
13154 : : {
13155 [ + + ]: 6510 : if (ehdr->e_type == ET_CORE)
13156 : : {
13157 [ + + ]: 118 : if (nhdr.n_type == NT_AUXV
13158 [ + - ]: 18 : && (nhdr.n_namesz == 4 /* Broken old Linux kernels. */
13159 [ + - + - ]: 18 : || (nhdr.n_namesz == 5 && name[4] == '\0'))
13160 [ + - ]: 18 : && !memcmp (name, "CORE", 4))
13161 : 18 : handle_auxv_note (ebl, ebl->elf, nhdr.n_descsz,
13162 : : start + desc_offset);
13163 [ + + + - ]: 100 : else if (nhdr.n_namesz == 5 && strcmp (name, "CORE") == 0)
13164 [ + + + ]: 76 : switch (nhdr.n_type)
13165 : : {
13166 : 12 : case NT_SIGINFO:
13167 : 12 : handle_siginfo_note (ebl->elf, nhdr.n_descsz,
13168 : : start + desc_offset);
13169 : 12 : break;
13170 : :
13171 : 12 : case NT_FILE:
13172 : 12 : handle_file_note (ebl->elf, nhdr.n_descsz,
13173 : : start + desc_offset);
13174 : 12 : break;
13175 : :
13176 : 52 : default:
13177 : 52 : handle_core_note (ebl, &nhdr, name, desc);
13178 : : }
13179 : : else
13180 : 24 : handle_core_note (ebl, &nhdr, name, desc);
13181 : : }
13182 : : else
13183 : 6392 : ebl_object_note (ebl, nhdr.n_namesz, name, nhdr.n_type,
13184 : : nhdr.n_descsz, desc);
13185 : : }
13186 : : }
13187 : :
13188 [ + - ]: 590 : if (offset == data->d_size)
13189 : 590 : return;
13190 : :
13191 : 0 : bad_note:
13192 : 0 : error (0, 0,
13193 : 0 : _("cannot get content of note: %s"),
13194 : 0 : data != NULL ? "garbage data" : elf_errmsg (-1));
13195 : : }
13196 : :
13197 : : static void
13198 : 266 : handle_notes (Ebl *ebl, GElf_Ehdr *ehdr)
13199 : : {
13200 : : /* If we have section headers, just look for SHT_NOTE sections.
13201 : : In a debuginfo file, the program headers are not reliable. */
13202 [ + + ]: 266 : if (shnum != 0)
13203 : : {
13204 : : /* Get the section header string table index. */
13205 : 244 : size_t shstrndx;
13206 [ - + ]: 244 : if (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0)
13207 : 0 : error_exit (0, _("cannot get section header string table index"));
13208 : :
13209 : : Elf_Scn *scn = NULL;
13210 [ + + ]: 7586 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
13211 : : {
13212 : 7342 : GElf_Shdr shdr_mem;
13213 : 7342 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
13214 : :
13215 [ + - + + ]: 7342 : if (shdr == NULL || shdr->sh_type != SHT_NOTE)
13216 : : /* Not what we are looking for. */
13217 : 6776 : continue;
13218 : :
13219 [ - + ]: 566 : if (notes_section != NULL)
13220 : : {
13221 : 0 : char *sname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name);
13222 [ # # # # ]: 0 : if (sname == NULL || strcmp (sname, notes_section) != 0)
13223 : 0 : continue;
13224 : : }
13225 : :
13226 : 566 : printf (_("\
13227 : : \nNote section [%2zu] '%s' of %" PRIu64 " bytes at offset %#0" PRIx64 ":\n"),
13228 : : elf_ndxscn (scn),
13229 : 566 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
13230 : : shdr->sh_size, shdr->sh_offset);
13231 : :
13232 : 566 : handle_notes_data (ebl, ehdr, shdr->sh_offset,
13233 : : elf_getdata (scn, NULL));
13234 : : }
13235 : 244 : return;
13236 : : }
13237 : :
13238 : : /* We have to look through the program header to find the note
13239 : : sections. There can be more than one. */
13240 [ + + ]: 280 : for (size_t cnt = 0; cnt < phnum; ++cnt)
13241 : : {
13242 : 258 : GElf_Phdr mem;
13243 : 258 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &mem);
13244 : :
13245 [ + - + + ]: 258 : if (phdr == NULL || phdr->p_type != PT_NOTE)
13246 : : /* Not what we are looking for. */
13247 : 234 : continue;
13248 : :
13249 : 24 : printf (_("\
13250 : : \nNote segment of %" PRIu64 " bytes at offset %#0" PRIx64 ":\n"),
13251 : : phdr->p_filesz, phdr->p_offset);
13252 : :
13253 : 24 : handle_notes_data (ebl, ehdr, phdr->p_offset,
13254 : : elf_getdata_rawchunk (ebl->elf,
13255 : 24 : phdr->p_offset, phdr->p_filesz,
13256 [ + + ]: 24 : (phdr->p_align == 8
13257 : : ? ELF_T_NHDR8 : ELF_T_NHDR)));
13258 : : }
13259 : : }
13260 : :
13261 : :
13262 : : static void
13263 : 12 : hex_dump (const uint8_t *data, size_t len)
13264 : : {
13265 : 12 : size_t pos = 0;
13266 [ + + ]: 56 : while (pos < len)
13267 : : {
13268 : 44 : printf (" 0x%08zx ", pos);
13269 : :
13270 : 44 : const size_t chunk = MIN (len - pos, 16);
13271 : :
13272 [ + + ]: 688 : for (size_t i = 0; i < chunk; ++i)
13273 [ + + ]: 644 : if (i % 4 == 3)
13274 : 160 : printf ("%02x ", data[pos + i]);
13275 : : else
13276 : 644 : printf ("%02x", data[pos + i]);
13277 : :
13278 [ + + ]: 44 : if (chunk < 16)
13279 : 4 : printf ("%*s", (int) ((16 - chunk) * 2 + (16 - chunk + 3) / 4), "");
13280 : :
13281 [ + + ]: 688 : for (size_t i = 0; i < chunk; ++i)
13282 : : {
13283 : 644 : unsigned char b = data[pos + i];
13284 [ + + ]: 1288 : printf ("%c", isprint (b) ? b : '.');
13285 : : }
13286 : :
13287 : 44 : putchar ('\n');
13288 : 44 : pos += chunk;
13289 : : }
13290 : 12 : }
13291 : :
13292 : : static void
13293 : 12 : dump_data_section (Elf_Scn *scn, const GElf_Shdr *shdr, const char *name)
13294 : : {
13295 [ + - - + ]: 12 : if (shdr->sh_size == 0 || shdr->sh_type == SHT_NOBITS)
13296 : 0 : printf (_("\nSection [%zu] '%s' has no data to dump.\n"),
13297 : : elf_ndxscn (scn), name);
13298 : : else
13299 : : {
13300 [ + + ]: 12 : if (print_decompress)
13301 : : {
13302 : : /* We try to decompress the section, but keep the old shdr around
13303 : : so we can show both the original shdr size and the uncompressed
13304 : : data size. */
13305 [ + + ]: 8 : if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
13306 : : {
13307 [ - + ]: 4 : if (elf_compress (scn, 0, 0) < 0)
13308 : 0 : printf ("WARNING: %s [%zd]\n",
13309 : : _("Couldn't uncompress section"),
13310 : : elf_ndxscn (scn));
13311 : : }
13312 [ + - ]: 4 : else if (startswith (name, ".zdebug"))
13313 : : {
13314 [ - + ]: 4 : if (elf_compress_gnu (scn, 0, 0) < 0)
13315 : 0 : printf ("WARNING: %s [%zd]\n",
13316 : : _("Couldn't uncompress section"),
13317 : : elf_ndxscn (scn));
13318 : : }
13319 : : }
13320 : :
13321 : 12 : Elf_Data *data = elf_rawdata (scn, NULL);
13322 [ - + ]: 12 : if (data == NULL)
13323 : 0 : error (0, 0, _("cannot get data for section [%zu] '%s': %s"),
13324 : : elf_ndxscn (scn), name, elf_errmsg (-1));
13325 : : else
13326 : : {
13327 [ + + ]: 12 : if (data->d_size == shdr->sh_size)
13328 : 4 : printf (_("\nHex dump of section [%zu] '%s', %" PRIu64
13329 : : " bytes at offset %#0" PRIx64 ":\n"),
13330 : : elf_ndxscn (scn), name,
13331 : 4 : shdr->sh_size, shdr->sh_offset);
13332 : : else
13333 : 8 : printf (_("\nHex dump of section [%zu] '%s', %" PRIu64
13334 : : " bytes (%zd uncompressed) at offset %#0"
13335 : : PRIx64 ":\n"),
13336 : : elf_ndxscn (scn), name,
13337 : 8 : shdr->sh_size, data->d_size, shdr->sh_offset);
13338 : 12 : hex_dump (data->d_buf, data->d_size);
13339 : : }
13340 : : }
13341 : 12 : }
13342 : :
13343 : : static void
13344 : 434 : print_string_section (Elf_Scn *scn, const GElf_Shdr *shdr, const char *name)
13345 : : {
13346 [ + - + + ]: 434 : if (shdr->sh_size == 0 || shdr->sh_type == SHT_NOBITS)
13347 : 54 : printf (_("\nSection [%zu] '%s' has no strings to dump.\n"),
13348 : : elf_ndxscn (scn), name);
13349 : : else
13350 : : {
13351 [ + + ]: 380 : if (print_decompress)
13352 : : {
13353 : : /* We try to decompress the section, but keep the old shdr around
13354 : : so we can show both the original shdr size and the uncompressed
13355 : : data size. */
13356 [ - + ]: 2 : if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
13357 : : {
13358 [ # # ]: 0 : if (elf_compress (scn, 0, 0) < 0)
13359 : 0 : printf ("WARNING: %s [%zd]\n",
13360 : : _("Couldn't uncompress section"),
13361 : : elf_ndxscn (scn));
13362 : : }
13363 [ + - ]: 2 : else if (startswith (name, ".zdebug"))
13364 : : {
13365 [ - + ]: 2 : if (elf_compress_gnu (scn, 0, 0) < 0)
13366 : 0 : printf ("WARNING: %s [%zd]\n",
13367 : : _("Couldn't uncompress section"),
13368 : : elf_ndxscn (scn));
13369 : : }
13370 : : }
13371 : :
13372 : 380 : Elf_Data *data = elf_rawdata (scn, NULL);
13373 [ - + ]: 380 : if (data == NULL)
13374 : 0 : error (0, 0, _("cannot get data for section [%zu] '%s': %s"),
13375 : : elf_ndxscn (scn), name, elf_errmsg (-1));
13376 : : else
13377 : : {
13378 [ + + ]: 380 : if (data->d_size == shdr->sh_size)
13379 : 378 : printf (_("\nString section [%zu] '%s' contains %" PRIu64
13380 : : " bytes at offset %#0" PRIx64 ":\n"),
13381 : : elf_ndxscn (scn), name,
13382 : 378 : shdr->sh_size, shdr->sh_offset);
13383 : : else
13384 : 2 : printf (_("\nString section [%zu] '%s' contains %" PRIu64
13385 : : " bytes (%zd uncompressed) at offset %#0"
13386 : : PRIx64 ":\n"),
13387 : : elf_ndxscn (scn), name,
13388 : 2 : shdr->sh_size, data->d_size, shdr->sh_offset);
13389 : :
13390 : 380 : const char *start = data->d_buf;
13391 : 380 : const char *const limit = start + data->d_size;
13392 : 44794 : do
13393 : : {
13394 : 44794 : const char *end = memchr (start, '\0', limit - start);
13395 : 44794 : const size_t pos = start - (const char *) data->d_buf;
13396 [ - + ]: 44794 : if (unlikely (end == NULL))
13397 : : {
13398 : 0 : printf (" [%6zx]- %.*s\n",
13399 : : pos, (int) (limit - start), start);
13400 : : break;
13401 : : }
13402 : 44794 : printf (" [%6zx] %s\n", pos, start);
13403 : 44794 : start = end + 1;
13404 [ + + ]: 44794 : } while (start < limit);
13405 : : }
13406 : : }
13407 : 434 : }
13408 : :
13409 : : static void
13410 : 234 : for_each_section_argument (Elf *elf, const struct section_argument *list,
13411 : : void (*dump) (Elf_Scn *scn, const GElf_Shdr *shdr,
13412 : : const char *name))
13413 : : {
13414 : : /* Get the section header string table index. */
13415 : 234 : size_t shstrndx;
13416 [ - + ]: 234 : if (elf_getshdrstrndx (elf, &shstrndx) < 0)
13417 : 0 : error_exit (0, _("cannot get section header string table index"));
13418 : :
13419 [ + + ]: 908 : for (const struct section_argument *a = list; a != NULL; a = a->next)
13420 : : {
13421 : 674 : Elf_Scn *scn;
13422 : 674 : GElf_Shdr shdr_mem;
13423 : 674 : const char *name = NULL;
13424 : :
13425 : 674 : char *endp = NULL;
13426 : 674 : unsigned long int shndx = strtoul (a->arg, &endp, 0);
13427 [ + + - + ]: 674 : if (endp != a->arg && *endp == '\0')
13428 : : {
13429 : 2 : scn = elf_getscn (elf, shndx);
13430 [ - + ]: 2 : if (scn == NULL)
13431 : : {
13432 : 0 : error (0, 0, _("\nsection [%lu] does not exist"), shndx);
13433 : 0 : continue;
13434 : : }
13435 : :
13436 [ - + ]: 2 : if (gelf_getshdr (scn, &shdr_mem) == NULL)
13437 : 0 : error_exit (0, _("cannot get section header: %s"),
13438 : : elf_errmsg (-1));
13439 : 2 : name = elf_strptr (elf, shstrndx, shdr_mem.sh_name);
13440 : 2 : (*dump) (scn, &shdr_mem, name);
13441 : : }
13442 : : else
13443 : : {
13444 : : /* Need to look up the section by name. */
13445 : : scn = NULL;
13446 : : bool found = false;
13447 [ + + ]: 21600 : while ((scn = elf_nextscn (elf, scn)) != NULL)
13448 : : {
13449 [ - + ]: 20928 : if (gelf_getshdr (scn, &shdr_mem) == NULL)
13450 : 0 : continue;
13451 : 20928 : name = elf_strptr (elf, shstrndx, shdr_mem.sh_name);
13452 [ - + ]: 20928 : if (name == NULL)
13453 : 0 : continue;
13454 [ + + ]: 20928 : if (!strcmp (name, a->arg))
13455 : : {
13456 : 444 : found = true;
13457 : 444 : (*dump) (scn, &shdr_mem, name);
13458 : : }
13459 : : }
13460 : :
13461 [ + + - + ]: 672 : if (unlikely (!found) && !a->implicit)
13462 : 674 : error (0, 0, _("\nsection '%s' does not exist"), a->arg);
13463 : : }
13464 : : }
13465 : 234 : }
13466 : :
13467 : : static void
13468 : 12 : dump_data (Ebl *ebl)
13469 : : {
13470 : 12 : for_each_section_argument (ebl->elf, dump_data_sections, &dump_data_section);
13471 : 12 : }
13472 : :
13473 : : static void
13474 : 222 : dump_strings (Ebl *ebl)
13475 : : {
13476 : 222 : for_each_section_argument (ebl->elf, string_sections, &print_string_section);
13477 : 222 : }
13478 : :
13479 : : static void
13480 : 0 : print_strings (Ebl *ebl)
13481 : : {
13482 : : /* Get the section header string table index. */
13483 : 0 : size_t shstrndx;
13484 [ # # ]: 0 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
13485 : 0 : error_exit (0, _("cannot get section header string table index"));
13486 : :
13487 : : Elf_Scn *scn;
13488 : : GElf_Shdr shdr_mem;
13489 : : const char *name;
13490 : : scn = NULL;
13491 [ # # ]: 0 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
13492 : : {
13493 [ # # ]: 0 : if (gelf_getshdr (scn, &shdr_mem) == NULL)
13494 : 0 : continue;
13495 : :
13496 [ # # ]: 0 : if (shdr_mem.sh_type != SHT_PROGBITS
13497 [ # # ]: 0 : || !(shdr_mem.sh_flags & SHF_STRINGS))
13498 : 0 : continue;
13499 : :
13500 : 0 : name = elf_strptr (ebl->elf, shstrndx, shdr_mem.sh_name);
13501 [ # # ]: 0 : if (name == NULL)
13502 : 0 : continue;
13503 : :
13504 : 0 : print_string_section (scn, &shdr_mem, name);
13505 : : }
13506 : 0 : }
13507 : :
13508 : : static void
13509 : 4 : dump_archive_index (Elf *elf, const char *fname)
13510 : : {
13511 : 4 : size_t narsym;
13512 : 4 : const Elf_Arsym *arsym = elf_getarsym (elf, &narsym);
13513 [ - + ]: 4 : if (arsym == NULL)
13514 : : {
13515 : 0 : int result = elf_errno ();
13516 [ # # ]: 0 : if (unlikely (result != ELF_E_NO_INDEX))
13517 : 0 : error_exit (0, _("cannot get symbol index of archive '%s': %s"),
13518 : : fname, elf_errmsg (result));
13519 : : else
13520 : 0 : printf (_("\nArchive '%s' has no symbol index\n"), fname);
13521 : 0 : return;
13522 : : }
13523 : :
13524 : 4 : printf (_("\nIndex of archive '%s' has %zu entries:\n"),
13525 : : fname, narsym);
13526 : :
13527 : 4 : size_t as_off = 0;
13528 [ + + ]: 22 : for (const Elf_Arsym *s = arsym; s < &arsym[narsym - 1]; ++s)
13529 : : {
13530 [ + + ]: 18 : if (s->as_off != as_off)
13531 : : {
13532 : 12 : as_off = s->as_off;
13533 : :
13534 : 12 : Elf *subelf = NULL;
13535 [ + - ]: 12 : if (unlikely (elf_rand (elf, as_off) == 0)
13536 [ - + ]: 12 : || unlikely ((subelf = elf_begin (-1, ELF_C_READ_MMAP, elf))
13537 : : == NULL))
13538 : : #if __GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 7)
13539 : : while (1)
13540 : : #endif
13541 : 0 : error_exit (0,
13542 : : _("cannot extract member at offset %zu in '%s': %s"),
13543 : : as_off, fname, elf_errmsg (-1));
13544 : :
13545 : 12 : const Elf_Arhdr *h = elf_getarhdr (subelf);
13546 : :
13547 : 12 : printf (_("Archive member '%s' contains:\n"), h->ar_name);
13548 : :
13549 : 12 : elf_end (subelf);
13550 : : }
13551 : :
13552 : 18 : printf ("\t%s\n", s->as_name);
13553 : : }
13554 : : }
13555 : :
13556 : : #include "debugpred.h"
|