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 : 1760 : cleanup_list (struct section_argument *list)
373 : : {
374 [ + + + + ]: 2326 : while (list != NULL)
375 : : {
376 : 566 : struct section_argument *a = list;
377 : 566 : list = a->next;
378 : 566 : free (a);
379 : : }
380 : : }
381 : :
382 : : int
383 : 880 : main (int argc, char *argv[])
384 : : {
385 : : /* We use no threads here which can interfere with handling a stream. */
386 : 880 : (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER);
387 : :
388 : : /* Set locale. */
389 : 880 : setlocale (LC_ALL, "");
390 : :
391 : : /* Initialize the message catalog. */
392 : 880 : textdomain (PACKAGE_TARNAME);
393 : :
394 : : /* Look up once. */
395 : 880 : yes_str = _("yes");
396 : 880 : no_str = _("no");
397 : :
398 : : /* Parse and process arguments. */
399 : 880 : int remaining;
400 : 880 : argp_parse (&argp, argc, argv, 0, &remaining, NULL);
401 : :
402 : : /* Before we start tell the ELF library which version we are using. */
403 : 880 : elf_version (EV_CURRENT);
404 : :
405 : : /* Now process all the files given at the command line. */
406 : 880 : bool only_one = remaining + 1 == argc;
407 : 962 : do
408 : : {
409 : : /* Open the file. */
410 : 962 : int fd = open (argv[remaining], O_RDONLY);
411 [ - + ]: 962 : if (fd == -1)
412 : : {
413 : 0 : error (0, errno, _("cannot open input file '%s'"), argv[remaining]);
414 : 0 : continue;
415 : : }
416 : :
417 : 962 : process_file (fd, argv[remaining], only_one);
418 : :
419 : 962 : close (fd);
420 : : }
421 [ + + ]: 962 : while (++remaining < argc);
422 : :
423 : 880 : cleanup_list (dump_data_sections);
424 : 880 : cleanup_list (string_sections);
425 : :
426 : 880 : return error_message_count != 0;
427 : : }
428 : :
429 : : static void
430 : 566 : add_dump_section (const char *name,
431 : : int key,
432 : : bool implicit)
433 : : {
434 : 566 : struct section_argument *a = xmalloc (sizeof *a);
435 : 566 : a->arg = name;
436 : 566 : a->next = NULL;
437 : 566 : a->implicit = implicit;
438 : 1132 : struct section_argument ***tailp
439 [ + + ]: 566 : = key == 'x' ? &dump_data_sections_tail : &string_sections_tail;
440 : 566 : **tailp = a;
441 : 566 : *tailp = &a->next;
442 : 566 : }
443 : :
444 : : /* Handle program arguments. */
445 : : static error_t
446 : 5602 : parse_opt (int key, char *arg,
447 : : struct argp_state *state __attribute__ ((unused)))
448 : : {
449 [ + + - + : 5602 : switch (key)
+ - + + -
+ + + + +
+ - + + +
+ + + - +
+ + + + ]
450 : : {
451 : 184 : case 'a':
452 : 184 : print_file_header = true;
453 : 184 : print_program_header = true;
454 : 184 : print_relocations = true;
455 : 184 : print_section_header = true;
456 : 184 : print_symbol_table = true;
457 : 184 : print_version_info = true;
458 : 184 : print_dynamic_table = true;
459 : 184 : print_section_groups = true;
460 : 184 : print_histogram = true;
461 : 184 : print_arch = true;
462 : 184 : print_notes = true;
463 : 184 : implicit_debug_sections |= section_exception;
464 : 184 : add_dump_section (".strtab", key, true);
465 : 184 : add_dump_section (".dynstr", key, true);
466 : 184 : add_dump_section (".comment", key, true);
467 : 184 : any_control_option = true;
468 : 184 : 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 : 880 : case ARGP_KEY_FINI:
628 [ + + + - ]: 880 : 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 : 858 : 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 [ + - ]: 858 : if (*(bool *) arg)
811 : : return DWARF_CB_ABORT;
812 : 858 : *(bool *) arg = true;
813 : 858 : 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 : 958 : 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 : 958 : const struct process_dwflmod_args *a = arg;
830 : :
831 : : /* Print the file name. */
832 [ + + ]: 958 : if (!a->only_one)
833 : : {
834 : 100 : const char *fname;
835 : 100 : dwfl_module_info (dwflmod, NULL, NULL, NULL, NULL, NULL, &fname, NULL);
836 : :
837 : 100 : printf ("\n%s:\n\n", fname);
838 : : }
839 : :
840 : 958 : process_elf_file (dwflmod, a->fd);
841 : :
842 : 958 : 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 : 262 : 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 : 262 : Dwarf_Addr dwbias;
859 : 262 : 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 [ + + ]: 262 : if (dwbias == (Dwarf_Addr) -1)
866 : : return -1;
867 : :
868 : 70 : 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 : 976 : create_dwfl (int fd, const char *fname)
875 : : {
876 : : /* Duplicate an fd for dwfl_report_offline to swallow. */
877 : 976 : int dwfl_fd = dup (fd);
878 [ - + ]: 976 : 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 : 976 : static const Dwfl_Callbacks callbacks =
884 : : {
885 : : .section_address = dwfl_offline_section_address,
886 : : .find_debuginfo = find_no_debuginfo
887 : : };
888 : 976 : Dwfl *dwfl = dwfl_begin (&callbacks);
889 [ + - ]: 976 : if (likely (dwfl != NULL))
890 : : /* Let 0 be the logical address of the file (or first in archive). */
891 : 976 : dwfl->offline_next_address = 0;
892 [ - + ]: 976 : 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 : 976 : dwfl_report_end (dwfl, NULL, NULL);
907 : :
908 : 976 : return dwfl;
909 : : }
910 : :
911 : : /* Process one input file. */
912 : : static void
913 : 962 : process_file (int fd, const char *fname, bool only_one)
914 : : {
915 [ + + ]: 962 : if (print_archive_index)
916 : 4 : check_archive_index (fd, fname, only_one);
917 : :
918 [ + + ]: 962 : if (!any_control_option)
919 : : return;
920 : :
921 [ + + ]: 958 : 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 : 958 : Dwfl *dwfl = create_dwfl (fd, fname);
937 [ + - ]: 958 : if (dwfl != NULL)
938 : : {
939 [ + + ]: 958 : if (only_one)
940 : : {
941 : : /* Clear ONLY_ONE if we have multiple modules, from an archive. */
942 : 858 : bool seen = false;
943 : 858 : only_one = dwfl_getmodules (dwfl, &count_dwflmod, &seen, 0) == 0;
944 : : }
945 : :
946 : : /* Process the one or more modules gleaned from this file. */
947 : 958 : struct process_dwflmod_args a = { .fd = fd, .only_one = only_one };
948 : 958 : 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 [ + - ]: 958 : if (! do_not_close_dwfl)
953 : 958 : dwfl_end (dwfl);
954 : :
955 : : /* Need to close the replaced fd if we created it. Caller takes
956 : : care of original. */
957 [ + + ]: 958 : 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 : 492 : elf_contains_chdrs (Elf *elf)
964 : : {
965 : 492 : Elf_Scn *scn = NULL;
966 [ + + ]: 797906 : while ((scn = elf_nextscn (elf, scn)) != NULL)
967 : : {
968 : 797528 : GElf_Shdr shdr_mem;
969 : 797528 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
970 [ + - + + ]: 797528 : 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 : 958 : process_elf_file (Dwfl_Module *dwflmod, int fd)
979 : : {
980 : 958 : GElf_Addr dwflbias;
981 : 958 : Elf *elf = dwfl_module_getelf (dwflmod, &dwflbias);
982 : :
983 : 958 : GElf_Ehdr ehdr_mem;
984 : 958 : GElf_Ehdr *ehdr = gelf_getehdr (elf, &ehdr_mem);
985 : :
986 [ - + ]: 958 : if (ehdr == NULL)
987 : : {
988 : 0 : error (0, 0, _("cannot read ELF header: %s"), elf_errmsg (-1));
989 : 0 : return;
990 : : }
991 : :
992 : 958 : Ebl *ebl = ebl_openbackend (elf);
993 [ - + ]: 958 : 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 [ - + ]: 958 : 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 [ - + ]: 958 : 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 : 2104 : bool print_unchanged = ((print_section_header
1016 [ + + ]: 452 : || print_relocations
1017 [ + + ]: 450 : || dump_data_sections != NULL
1018 [ + + ]: 438 : || print_notes)
1019 [ + + + + ]: 1018 : && (ehdr->e_type == ET_REL
1020 [ + + ]: 492 : || 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 : 958 : bool symtab_printed = false;
1048 : :
1049 [ + + ]: 958 : if (print_file_header)
1050 : 190 : print_ehdr (ebl, ehdr);
1051 [ + + ]: 958 : if (print_section_header)
1052 : 506 : print_shdr (pure_ebl, ehdr);
1053 [ + + ]: 958 : if (print_program_header)
1054 : 188 : print_phdr (ebl, ehdr);
1055 [ + + ]: 958 : if (print_section_groups)
1056 : 202 : print_scngrp (ebl);
1057 [ + + ]: 958 : if (print_dynamic_table)
1058 : 190 : print_dynamic (ebl);
1059 [ + + ]: 958 : if (print_relocations)
1060 : 186 : print_relocs (pure_ebl, dwflmod, ehdr);
1061 [ + + ]: 958 : if (print_histogram)
1062 : 184 : handle_hash (ebl);
1063 [ + + + + ]: 958 : if (print_symbol_table || print_dynsym_table)
1064 : 220 : symtab_printed |= print_symtab (ebl, SHT_DYNSYM);
1065 [ + + ]: 958 : if (print_version_info)
1066 : 184 : print_verinfo (ebl);
1067 [ + + + - ]: 958 : if (print_symbol_table && !use_dynamic_segment)
1068 : 218 : symtab_printed |= print_symtab (ebl, SHT_SYMTAB);
1069 : :
1070 [ + + + + ]: 958 : if ((print_symbol_table || print_dynsym_table)
1071 [ + + + + ]: 220 : && !symtab_printed && symbol_table_section != NULL)
1072 : 2 : printf ("WARNING: %s: '%s'\n", _("cannot find section"),
1073 : : symbol_table_section);
1074 : :
1075 [ + + ]: 958 : if (print_arch)
1076 : 192 : print_liblist (ebl);
1077 [ + + ]: 958 : if (print_arch)
1078 : 192 : print_attributes (ebl, ehdr);
1079 [ + + ]: 958 : if (dump_data_sections != NULL)
1080 : 12 : dump_data (pure_ebl);
1081 [ + + ]: 958 : if (string_sections != NULL)
1082 : 186 : dump_strings (ebl);
1083 [ + + ]: 958 : if ((print_debug_sections | implicit_debug_sections) != 0)
1084 : 500 : print_debug (dwflmod, ebl, ehdr);
1085 [ + + ]: 958 : if (print_notes)
1086 : 230 : handle_notes (pure_ebl, ehdr);
1087 [ - + ]: 958 : if (print_string_sections)
1088 : 0 : print_strings (ebl);
1089 : :
1090 [ + + ]: 958 : 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 : 770 : ebl_closebackend (ebl);
1098 : : }
1099 : :
1100 : :
1101 : : /* Print file type. */
1102 : : static void
1103 : 190 : print_file_type (unsigned short int e_type)
1104 : : {
1105 [ + - ]: 190 : if (likely (e_type <= ET_CORE))
1106 : : {
1107 : 190 : 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 : 190 : 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 : 190 : }
1124 : :
1125 : :
1126 : : /* Print ELF header. */
1127 : : static void
1128 : 190 : print_ehdr (Ebl *ebl, GElf_Ehdr *ehdr)
1129 : : {
1130 : 190 : fputs_unlocked (_("ELF Header:\n Magic: "), stdout);
1131 [ + + ]: 3230 : for (size_t cnt = 0; cnt < EI_NIDENT; ++cnt)
1132 : 3040 : printf (" %02hhx", ehdr->e_ident[cnt]);
1133 : :
1134 : 190 : printf (_("\n Class: %s\n"),
1135 [ + + ]: 190 : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? "ELF32"
1136 : : : ehdr->e_ident[EI_CLASS] == ELFCLASS64 ? "ELF64"
1137 [ - + ]: 156 : : "\?\?\?");
1138 : :
1139 : 190 : printf (_(" Data: %s\n"),
1140 [ - + ]: 190 : 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 : 570 : printf (_(" Ident Version: %hhd %s\n"),
1146 : 190 : ehdr->e_ident[EI_VERSION],
1147 [ + - ]: 190 : ehdr->e_ident[EI_VERSION] == EV_CURRENT ? _("(current)")
1148 : : : "(\?\?\?)");
1149 : :
1150 : 190 : char buf[512];
1151 : 190 : printf (_(" OS/ABI: %s\n"),
1152 : 190 : ebl_osabi_name (ebl, ehdr->e_ident[EI_OSABI], buf, sizeof (buf)));
1153 : :
1154 : 380 : printf (_(" ABI Version: %hhd\n"),
1155 : 190 : ehdr->e_ident[EI_ABIVERSION]);
1156 : :
1157 : 190 : fputs_unlocked (_(" Type: "), stdout);
1158 : 190 : print_file_type (ehdr->e_type);
1159 : :
1160 : 190 : const char *machine = dwelf_elf_e_machine_string (ehdr->e_machine);
1161 [ + - ]: 190 : if (machine != NULL)
1162 : 190 : printf (_(" Machine: %s\n"), machine);
1163 : : else
1164 : 190 : printf (_(" Machine: <unknown>: 0x%x\n"),
1165 : 0 : ehdr->e_machine);
1166 : :
1167 : 190 : printf (_(" Version: %d %s\n"),
1168 : : ehdr->e_version,
1169 [ + - ]: 190 : ehdr->e_version == EV_CURRENT ? _("(current)") : "(\?\?\?)");
1170 : :
1171 : 190 : printf (_(" Entry point address: %#" PRIx64 "\n"),
1172 : : ehdr->e_entry);
1173 : :
1174 : 190 : printf (_(" Start of program headers: %" PRId64 " %s\n"),
1175 : : ehdr->e_phoff, _("(bytes into file)"));
1176 : :
1177 : 190 : printf (_(" Start of section headers: %" PRId64 " %s\n"),
1178 : : ehdr->e_shoff, _("(bytes into file)"));
1179 : :
1180 : 190 : printf (_(" Flags: %s\n"),
1181 : : ebl_machine_flag_name (ebl, ehdr->e_flags, buf, sizeof (buf)));
1182 : :
1183 : 380 : printf (_(" Size of this header: %" PRId16 " %s\n"),
1184 : 190 : ehdr->e_ehsize, _("(bytes)"));
1185 : :
1186 : 380 : printf (_(" Size of program header entries: %" PRId16 " %s\n"),
1187 : 190 : ehdr->e_phentsize, _("(bytes)"));
1188 : :
1189 : 380 : printf (_(" Number of program headers entries: %" PRId16),
1190 : 190 : ehdr->e_phnum);
1191 [ + + ]: 190 : 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 [ - + ]: 190 : fputc_unlocked ('\n', stdout);
1202 : :
1203 : 380 : printf (_(" Size of section header entries: %" PRId16 " %s\n"),
1204 : 190 : ehdr->e_shentsize, _("(bytes)"));
1205 : :
1206 : 380 : printf (_(" Number of section headers entries: %" PRId16),
1207 : 190 : ehdr->e_shnum);
1208 [ - + ]: 190 : 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 [ - + ]: 190 : fputc_unlocked ('\n', stdout);
1219 : :
1220 [ - + ]: 190 : 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 : 190 : printf (_(" Section header string table index: %" PRId16 "\n\n"),
1239 : : ehdr->e_shstrndx);
1240 : 190 : }
1241 : :
1242 : :
1243 : : static const char *
1244 : 76692 : get_visibility_type (int value)
1245 : : {
1246 [ - + - - : 76692 : switch (value)
+ ]
1247 : : {
1248 : : case STV_DEFAULT:
1249 : : return "DEFAULT";
1250 : 0 : case STV_INTERNAL:
1251 : 0 : return "INTERNAL";
1252 : 984 : case STV_HIDDEN:
1253 : 984 : 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 : 506 : print_shdr (Ebl *ebl, GElf_Ehdr *ehdr)
1280 : : {
1281 : 506 : size_t cnt;
1282 : 506 : size_t shstrndx;
1283 : :
1284 [ + + ]: 506 : 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 [ - + ]: 506 : 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 : 506 : puts (_("Section Headers:"));
1303 : :
1304 [ + + ]: 506 : if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
1305 : 196 : puts (_("[Nr] Name Type Addr Off Size ES Flags Lk Inf Al"));
1306 : : else
1307 : 310 : puts (_("[Nr] Name Type Addr Off Size ES Flags Lk Inf Al"));
1308 : :
1309 [ + + ]: 506 : 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 [ + + ]: 1586316 : for (cnt = 0; cnt < shnum; ++cnt)
1318 : : {
1319 : 1585810 : Elf_Scn *scn = elf_getscn (ebl->elf, cnt);
1320 : :
1321 [ - + ]: 1585810 : if (unlikely (scn == NULL))
1322 : 0 : error_exit (0, _("cannot get section: %s"),
1323 : : elf_errmsg (-1));
1324 : :
1325 : : /* Get the section header. */
1326 : 1585810 : GElf_Shdr shdr_mem;
1327 : 1585810 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
1328 [ - + ]: 1585810 : if (unlikely (shdr == NULL))
1329 : 0 : error_exit (0, _("cannot get section header: %s"),
1330 : : elf_errmsg (-1));
1331 : :
1332 : 1585810 : char flagbuf[20];
1333 : 1585810 : char *cp = flagbuf;
1334 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_WRITE)
1335 : 2764 : *cp++ = 'W';
1336 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_ALLOC)
1337 : 8520 : *cp++ = 'A';
1338 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_EXECINSTR)
1339 : 1564 : *cp++ = 'X';
1340 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_MERGE)
1341 : 420 : *cp++ = 'M';
1342 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_STRINGS)
1343 : 380 : *cp++ = 'S';
1344 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_INFO_LINK)
1345 : 196 : *cp++ = 'I';
1346 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_LINK_ORDER)
1347 : 4 : *cp++ = 'L';
1348 [ - + ]: 1585810 : if (shdr->sh_flags & SHF_OS_NONCONFORMING)
1349 : 0 : *cp++ = 'N';
1350 [ - + ]: 1585810 : if (shdr->sh_flags & SHF_GROUP)
1351 : 0 : *cp++ = 'G';
1352 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_TLS)
1353 : 30 : *cp++ = 'T';
1354 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_COMPRESSED)
1355 : 414 : *cp++ = 'C';
1356 [ - + ]: 1585810 : if (shdr->sh_flags & SHF_ORDERED)
1357 : 0 : *cp++ = 'O';
1358 [ - + ]: 1585810 : if (shdr->sh_flags & SHF_EXCLUDE)
1359 : 0 : *cp++ = 'E';
1360 [ + + ]: 1585810 : if (shdr->sh_flags & SHF_GNU_RETAIN)
1361 : 2 : *cp++ = 'R';
1362 : 1585810 : *cp = '\0';
1363 : :
1364 : 1585810 : const char *sname;
1365 : 1585810 : char buf[128];
1366 [ - + ]: 1585810 : sname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name) ?: "<corrupt>";
1367 [ + + ]: 3171620 : 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 : 1585810 : 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 [ + + ]: 1585810 : 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 [ + + ]: 1585810 : 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 : 1585834 : printf (" [GNU ZLIB %0*zx ]\n",
1400 [ + + ]: 24 : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8, size);
1401 : : else
1402 : 1585810 : 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 [ - + ]: 506 : fputc_unlocked ('\n', stdout);
1410 : 506 : }
1411 : :
1412 : :
1413 : : /* Print the program header. */
1414 : : static void
1415 : 188 : print_phdr (Ebl *ebl, GElf_Ehdr *ehdr)
1416 : : {
1417 [ + + ]: 188 : if (phnum == 0)
1418 : : /* No program header, this is OK in relocatable objects. */
1419 : 12 : return;
1420 : :
1421 : 176 : puts (_("Program Headers:"));
1422 [ + + ]: 176 : if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
1423 : 26 : puts (_("\
1424 : : Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align"));
1425 : : else
1426 : 150 : 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 [ + + ]: 2032 : for (size_t cnt = 0; cnt < phnum; ++cnt)
1434 : : {
1435 : 1856 : char buf[128];
1436 : 1856 : GElf_Phdr mem;
1437 : 1856 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &mem);
1438 : :
1439 : : /* If for some reason the header cannot be returned show this. */
1440 [ - + ]: 1856 : if (unlikely (phdr == NULL))
1441 : : {
1442 : 0 : puts (" ???");
1443 : 0 : continue;
1444 : : }
1445 : :
1446 : 1856 : 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 : 1856 : 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 [ + + ]: 1856 : ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, phdr->p_paddr,
1452 : : phdr->p_filesz,
1453 : : phdr->p_memsz,
1454 [ - + ]: 1856 : phdr->p_flags & PF_R ? 'R' : ' ',
1455 [ + + ]: 1856 : phdr->p_flags & PF_W ? 'W' : ' ',
1456 [ + + ]: 1856 : phdr->p_flags & PF_X ? 'E' : ' ',
1457 : : phdr->p_align);
1458 : :
1459 [ + + ]: 1856 : 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 : 172 : Elf_Scn *scn = gelf_offscn (ebl->elf, phdr->p_offset);
1472 : 172 : GElf_Shdr shdr_mem;
1473 : 172 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
1474 : :
1475 : 172 : size_t maxsize;
1476 : 172 : char *filedata = elf_rawfile (ebl->elf, &maxsize);
1477 : :
1478 [ + - + + ]: 172 : if (shdr != NULL && shdr->sh_type == SHT_PROGBITS
1479 [ + - + - ]: 130 : && filedata != NULL && phdr->p_offset < maxsize
1480 [ + - ]: 130 : && phdr->p_filesz <= maxsize - phdr->p_offset
1481 [ + - ]: 130 : && memchr (filedata + phdr->p_offset, '\0',
1482 : : phdr->p_filesz) != NULL)
1483 : 172 : printf (_("\t[Requesting program interpreter: %s]\n"),
1484 : : filedata + phdr->p_offset);
1485 : : }
1486 [ + + ]: 1684 : else if (phdr->p_type == PT_GNU_RELRO)
1487 : : {
1488 : 152 : has_relro = true;
1489 : 152 : relro_from = phdr->p_vaddr;
1490 : 152 : relro_to = relro_from + phdr->p_memsz;
1491 : : }
1492 : : }
1493 : :
1494 : 176 : size_t sections;
1495 [ - + ]: 176 : 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 [ + - ]: 176 : if (sections == 0)
1500 : : /* No sections in the file. Punt. */
1501 : : return;
1502 : :
1503 : : /* Get the section header string table index. */
1504 : 176 : size_t shstrndx;
1505 [ - + ]: 176 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
1506 : 0 : error_exit (0, _("cannot get section header string table index"));
1507 : :
1508 : 176 : puts (_("\n Section to Segment mapping:\n Segment Sections..."));
1509 : :
1510 [ + + ]: 2032 : for (size_t cnt = 0; cnt < phnum; ++cnt)
1511 : : {
1512 : : /* Print the segment number. */
1513 : 1856 : printf (" %2.2zu ", cnt);
1514 : :
1515 : 1856 : GElf_Phdr phdr_mem;
1516 : 1856 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &phdr_mem);
1517 : : /* This must not happen. */
1518 [ - + ]: 1856 : 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 [ + + ]: 60712 : for (size_t inner = 1; inner < shnum; ++inner)
1526 : : {
1527 : 58856 : Elf_Scn *scn = elf_getscn (ebl->elf, inner);
1528 : : /* This should not happen. */
1529 [ - + ]: 58856 : if (unlikely (scn == NULL))
1530 : 0 : error_exit (0, _("cannot get section: %s"),
1531 : : elf_errmsg (-1));
1532 : :
1533 : : /* Get the section header. */
1534 : 58856 : GElf_Shdr shdr_mem;
1535 : 58856 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
1536 [ - + ]: 58856 : if (unlikely (shdr == NULL))
1537 : 0 : error_exit (0, _("cannot get section header: %s"),
1538 : : elf_errmsg (-1));
1539 : :
1540 [ + - ]: 58856 : if (shdr->sh_size > 0
1541 : : /* Compare allocated sections by VMA, unallocated
1542 : : sections by file offset. */
1543 [ + + ]: 58856 : && (shdr->sh_flags & SHF_ALLOC
1544 : 46478 : ? (shdr->sh_addr >= phdr->p_vaddr
1545 [ + + ]: 46478 : && (shdr->sh_addr + shdr->sh_size
1546 [ + + ]: 31442 : <= phdr->p_vaddr + phdr->p_memsz))
1547 : 12378 : : (shdr->sh_offset >= phdr->p_offset
1548 [ + + ]: 12378 : && (shdr->sh_offset + shdr->sh_size
1549 [ + + ]: 10852 : <= phdr->p_offset + phdr->p_filesz))))
1550 : : {
1551 [ + + ]: 6262 : if (has_relro && !in_relro
1552 [ + + ]: 4178 : && shdr->sh_addr >= relro_from
1553 [ + + ]: 732 : && shdr->sh_addr + shdr->sh_size <= relro_to)
1554 : : {
1555 : 474 : fputs_unlocked (" [RELRO:", stdout);
1556 : 474 : in_relro = true;
1557 : : }
1558 [ + + + + ]: 5788 : else if (has_relro && in_relro && shdr->sh_addr >= relro_to)
1559 : : {
1560 : 134 : fputs_unlocked ("]", stdout);
1561 : 134 : in_relro = false;
1562 : : }
1563 [ + + ]: 5654 : else if (has_relro && in_relro
1564 [ + + ]: 1166 : && shdr->sh_addr + shdr->sh_size > relro_to)
1565 : 18 : fputs_unlocked ("] <RELRO:", stdout);
1566 [ + + ]: 5636 : else if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0)
1567 : : {
1568 [ + + ]: 3226 : if (!in_ro)
1569 : : {
1570 : 372 : fputs_unlocked (" [RO:", stdout);
1571 : 372 : 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 [ + - ]: 10776 : for (cnt2 = 0; cnt2 < phnum; ++cnt2)
1581 : : {
1582 : 10776 : phdr2 = gelf_getphdr (ebl->elf, cnt2, &phdr2_mem);
1583 : :
1584 [ + - + + ]: 10776 : if (phdr2 != NULL && phdr2->p_type == PT_LOAD
1585 [ + - ]: 6068 : && shdr->sh_addr >= phdr2->p_vaddr
1586 : 6068 : && (shdr->sh_addr + shdr->sh_size
1587 [ + + ]: 6068 : <= phdr2->p_vaddr + phdr2->p_memsz))
1588 : : break;
1589 : : }
1590 : :
1591 [ + - ]: 2410 : if (cnt2 < phnum)
1592 : : {
1593 [ + + + + ]: 2410 : if ((phdr2->p_flags & PF_W) == 0 && !in_ro)
1594 : : {
1595 : 614 : fputs_unlocked (" [RO:", stdout);
1596 : 614 : in_ro = true;
1597 : : }
1598 [ + + + - ]: 1796 : 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 : 6262 : printf (" %s",
1607 : 6262 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name));
1608 : :
1609 : : /* Signal that this section is only partially covered. */
1610 [ + + ]: 6262 : if (has_relro && in_relro
1611 [ + + ]: 1640 : && shdr->sh_addr + shdr->sh_size > relro_to)
1612 : : {
1613 : 18 : fputs_unlocked (">", stdout);
1614 : 18 : in_relro = false;
1615 : : }
1616 : : }
1617 : : }
1618 [ + + ]: 1856 : if (in_relro || in_ro)
1619 : 1308 : fputs_unlocked ("]", stdout);
1620 : :
1621 : : /* Finish the line. */
1622 [ - + ]: 3712 : fputc_unlocked ('\n', stdout);
1623 : : }
1624 : : }
1625 : :
1626 : :
1627 : : static const char *
1628 : 1054 : section_name (Ebl *ebl, GElf_Shdr *shdr)
1629 : : {
1630 : 1054 : size_t shstrndx;
1631 [ + - - + ]: 1054 : if (shdr == NULL || elf_getshdrstrndx (ebl->elf, &shstrndx) < 0)
1632 : 0 : return "???";
1633 [ - + ]: 1054 : 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 : 202 : print_scngrp (Ebl *ebl)
1697 : : {
1698 : : /* Find all relocation sections and handle them. */
1699 : 202 : Elf_Scn *scn = NULL;
1700 : :
1701 [ + + ]: 6522 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
1702 : : {
1703 : : /* Handle the section if it is a symbol table. */
1704 : 6320 : GElf_Shdr shdr_mem;
1705 : 6320 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
1706 : :
1707 [ + - + + ]: 6320 : 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 : 202 : }
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 : 136 : get_dyn_ents (Elf_Data * dyn_data)
1838 : : {
1839 : 136 : GElf_Dyn *dyn;
1840 : 136 : GElf_Dyn dyn_mem;
1841 : 136 : size_t dyn_idx = 0;
1842 : 3414 : do
1843 : : {
1844 : 3414 : dyn = gelf_getdyn(dyn_data, dyn_idx, &dyn_mem);
1845 [ + - ]: 3414 : if (dyn != NULL)
1846 : 3414 : ++dyn_idx;
1847 : : }
1848 [ + + ]: 3414 : while (dyn != NULL && dyn->d_tag != DT_NULL);
1849 : :
1850 : 136 : return dyn_idx;
1851 : : }
1852 : :
1853 : :
1854 : : static void
1855 : 136 : handle_dynamic (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, GElf_Phdr *phdr)
1856 : : {
1857 : 136 : int class = gelf_getclass (ebl->elf);
1858 : 136 : GElf_Shdr glink_mem;
1859 : 136 : GElf_Shdr *glink;
1860 : 136 : Elf_Data *data;
1861 : 136 : size_t cnt;
1862 : 136 : size_t shstrndx;
1863 : 136 : size_t dyn_ents;
1864 : :
1865 : : /* Get the data of the section. */
1866 [ + + + - ]: 136 : 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 : 134 : data = elf_getdata (scn, NULL);
1871 : :
1872 [ - + ]: 136 : if (data == NULL)
1873 : 0 : return;
1874 : :
1875 : : /* Get the dynamic section entry number */
1876 : 136 : dyn_ents = get_dyn_ents (data);
1877 : :
1878 [ + + + - ]: 136 : if (!use_dynamic_segment && shdr != NULL)
1879 : : {
1880 : : /* Get the section header string table index. */
1881 [ - + ]: 134 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
1882 : 0 : error_exit (0, _("cannot get section header string table index"));
1883 : :
1884 : 134 : glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link), &glink_mem);
1885 [ - + ]: 134 : if (glink == NULL)
1886 : 0 : error_exit (0, _("invalid sh_link value in section %zu"),
1887 : : elf_ndxscn (scn));
1888 : :
1889 : 134 : 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 [ + + ]: 134 : (int) shdr->sh_link,
1898 : 134 : 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 : 136 : 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 : 136 : Elf_Data *strtab_data = NULL;
1917 [ + + + - ]: 136 : 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 [ + + ]: 3550 : for (cnt = 0; cnt < dyn_ents; ++cnt)
1925 : : {
1926 : 3414 : GElf_Dyn dynmem;
1927 : 3414 : GElf_Dyn *dyn = gelf_getdyn (data, cnt, &dynmem);
1928 [ + - ]: 3414 : if (dyn == NULL)
1929 : : break;
1930 : :
1931 : 3414 : char buf[64];
1932 : 3414 : printf (" %-17s ",
1933 : : ebl_dynamic_tag_name (ebl, dyn->d_tag, buf, sizeof (buf)));
1934 : :
1935 : 3414 : char *name = NULL;
1936 : 3414 : if (dyn->d_tag == DT_NEEDED
1937 [ + + ]: 3414 : || dyn->d_tag == DT_SONAME
1938 [ + + ]: 3182 : || dyn->d_tag == DT_RPATH
1939 [ + + ]: 3180 : || dyn->d_tag == DT_RUNPATH)
1940 : : {
1941 [ + + + - ]: 236 : if (! use_dynamic_segment && shdr != NULL)
1942 : 232 : 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 : 3414 : name = ((char *) strtab_data->d_buf) + dyn->d_un.d_val;
1947 : : }
1948 : :
1949 [ + + + + : 3414 : switch (dyn->d_tag)
+ + + + +
+ + + + ]
1950 : : {
1951 : 268 : case DT_NULL:
1952 : : case DT_DEBUG:
1953 : : case DT_BIND_NOW:
1954 : : case DT_TEXTREL:
1955 : : /* No further output. */
1956 [ - + ]: 268 : fputc_unlocked ('\n', stdout);
1957 : : break;
1958 : :
1959 : 226 : case DT_NEEDED:
1960 : 226 : 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 : 902 : 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 : 902 : printf (_("%" PRId64 " (bytes)\n"), dyn->d_un.d_val);
1994 : : break;
1995 : :
1996 : 212 : case DT_VERDEFNUM:
1997 : : case DT_VERNEEDNUM:
1998 : : case DT_RELACOUNT:
1999 : : case DT_RELCOUNT:
2000 : 212 : printf ("%" PRId64 "\n", dyn->d_un.d_val);
2001 : : break;
2002 : :
2003 : 108 : case DT_PLTREL:;
2004 : 108 : const char *tagname = ebl_dynamic_tag_name (ebl, dyn->d_un.d_val,
2005 : : NULL, 0);
2006 [ + + ]: 108 : puts (tagname ?: "???");
2007 : 108 : 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 : 1614 : default:
2026 [ + + ]: 5028 : 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 : 190 : print_dynamic (Ebl *ebl)
2037 : : {
2038 [ + + ]: 1072 : for (size_t i = 0; i < phnum; ++i)
2039 : : {
2040 : 1060 : GElf_Phdr phdr_mem;
2041 : 1060 : GElf_Phdr *phdr = gelf_getphdr (ebl->elf, i, &phdr_mem);
2042 : :
2043 [ + - + + ]: 1060 : if (phdr != NULL && phdr->p_type == PT_DYNAMIC)
2044 : : {
2045 : 178 : Elf_Scn *scn = gelf_offscn (ebl->elf, phdr->p_offset);
2046 : 178 : GElf_Shdr shdr_mem;
2047 : 178 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
2048 [ + + ]: 178 : if ((use_dynamic_segment && phdr != NULL)
2049 [ + + + + ]: 176 : || (shdr != NULL && shdr->sh_type == SHT_DYNAMIC))
2050 : 136 : handle_dynamic (ebl, scn, shdr, phdr);
2051 : 178 : break;
2052 : : }
2053 : : }
2054 : 190 : }
2055 : :
2056 : :
2057 : : /* Print relocations. */
2058 : : static void
2059 : 186 : print_relocs (Ebl *ebl, Dwfl_Module *mod, GElf_Ehdr *ehdr)
2060 : : {
2061 : : /* Find all relocation sections and handle them. */
2062 : 186 : Elf_Scn *scn = NULL;
2063 : :
2064 [ + + ]: 6074 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
2065 : : {
2066 : : /* Handle the section if it is a symbol table. */
2067 : 5888 : GElf_Shdr shdr_mem;
2068 : 5888 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
2069 : :
2070 [ + - ]: 5888 : if (likely (shdr != NULL))
2071 : : {
2072 [ + + ]: 5888 : if (shdr->sh_type == SHT_REL)
2073 : 92 : handle_relocs_rel (ebl, ehdr, scn, shdr);
2074 [ + + ]: 5796 : else if (shdr->sh_type == SHT_RELA)
2075 : 266 : handle_relocs_rela (ebl, ehdr, scn, shdr);
2076 [ - + ]: 5530 : else if (shdr->sh_type == SHT_RELR)
2077 : 0 : handle_relocs_relr (ebl, mod, scn, shdr);
2078 : : }
2079 : : }
2080 : 186 : }
2081 : :
2082 : :
2083 : : /* Handle a relocation section. */
2084 : : static void
2085 : 92 : handle_relocs_rel (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, GElf_Shdr *shdr)
2086 : : {
2087 : 92 : int class = gelf_getclass (ebl->elf);
2088 : 92 : size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_REL, 1, EV_CURRENT);
2089 : 92 : int nentries = shdr->sh_size / sh_entsize;
2090 : :
2091 : : /* Get the data of the section. */
2092 : 92 : Elf_Data *data = elf_getdata (scn, NULL);
2093 [ + - ]: 92 : if (data == NULL)
2094 : 0 : return;
2095 : :
2096 : : /* Get the symbol table information. */
2097 : 92 : Elf_Scn *symscn = elf_getscn (ebl->elf, shdr->sh_link);
2098 : 92 : GElf_Shdr symshdr_mem;
2099 : 92 : GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
2100 : 92 : Elf_Data *symdata = elf_getdata (symscn, NULL);
2101 : :
2102 : : /* Get the section header of the section the relocations are for. */
2103 : 92 : GElf_Shdr destshdr_mem;
2104 : 92 : GElf_Shdr *destshdr = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_info),
2105 : : &destshdr_mem);
2106 : :
2107 [ + - - + ]: 92 : 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 : 92 : Elf_Data *xndxdata = NULL;
2116 : 92 : int xndxscnidx = elf_scnshndx (scn);
2117 [ - + ]: 92 : 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 : 92 : size_t shstrndx;
2122 [ - + ]: 92 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
2123 : 0 : error_exit (0, _("cannot get section header string table index"));
2124 : :
2125 [ + + ]: 92 : if (shdr->sh_info != 0)
2126 : 76 : 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 : 76 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2133 : 76 : (unsigned int) shdr->sh_info,
2134 : 76 : 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 : 16 : 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 : 16 : (unsigned int) elf_ndxscn (scn),
2147 : 16 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2148 : : shdr->sh_offset,
2149 : : nentries);
2150 [ + - ]: 92 : fputs_unlocked (class == ELFCLASS32
2151 : 92 : ? _("\
2152 : : Offset Type Value Name\n")
2153 : 0 : : _("\
2154 : : Offset Type Value Name\n"),
2155 : : stdout);
2156 : :
2157 : 92 : int is_statically_linked = 0;
2158 [ + + ]: 25942 : for (int cnt = 0; cnt < nentries; ++cnt)
2159 : : {
2160 : 25850 : GElf_Rel relmem;
2161 : 25850 : GElf_Rel *rel = gelf_getrel (data, cnt, &relmem);
2162 [ + - ]: 25850 : if (likely (rel != NULL))
2163 : : {
2164 : 25850 : char buf[128];
2165 : 25850 : GElf_Sym symmem;
2166 : 25850 : Elf32_Word xndx;
2167 : 51700 : GElf_Sym *sym = gelf_getsymshndx (symdata, xndxdata,
2168 : 25850 : GELF_R_SYM (rel->r_info),
2169 : : &symmem, &xndx);
2170 [ - + ]: 25850 : 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 [ + + ]: 25850 : else if (GELF_ST_TYPE (sym->st_info) != STT_SECTION)
2222 [ - + ]: 26110 : printf (" %#0*" PRIx64 " %-20s %#0*" PRIx64 " %s\n",
2223 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2224 [ + - ]: 130 : 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 : 130 : ? 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 : 130 : 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 : 266 : handle_relocs_rela (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, GElf_Shdr *shdr)
2275 : : {
2276 : 266 : int class = gelf_getclass (ebl->elf);
2277 : 266 : size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_RELA, 1, EV_CURRENT);
2278 : 266 : int nentries = shdr->sh_size / sh_entsize;
2279 : :
2280 : : /* Get the data of the section. */
2281 : 266 : Elf_Data *data = elf_getdata (scn, NULL);
2282 [ + - ]: 266 : if (data == NULL)
2283 : 0 : return;
2284 : :
2285 : : /* Get the symbol table information. */
2286 : 266 : Elf_Scn *symscn = elf_getscn (ebl->elf, shdr->sh_link);
2287 : 266 : GElf_Shdr symshdr_mem;
2288 : 266 : GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
2289 : 266 : Elf_Data *symdata = elf_getdata (symscn, NULL);
2290 : :
2291 : : /* Get the section header of the section the relocations are for. */
2292 : 266 : GElf_Shdr destshdr_mem;
2293 : 266 : GElf_Shdr *destshdr = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_info),
2294 : : &destshdr_mem);
2295 : :
2296 [ + - - + ]: 266 : 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 : 266 : Elf_Data *xndxdata = NULL;
2305 : 266 : int xndxscnidx = elf_scnshndx (scn);
2306 [ - + ]: 266 : 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 : 266 : size_t shstrndx;
2311 [ - + ]: 266 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
2312 : 0 : error_exit (0, _("cannot get section header string table index"));
2313 : :
2314 [ + + ]: 266 : if (shdr->sh_info != 0)
2315 : 152 : 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 : 152 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2322 : 152 : (unsigned int) shdr->sh_info,
2323 : 152 : 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 : 114 : 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 : 114 : (unsigned int) elf_ndxscn (scn),
2336 : 114 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
2337 : : shdr->sh_offset,
2338 : : nentries);
2339 [ - + ]: 266 : fputs_unlocked (class == ELFCLASS32
2340 : 0 : ? _("\
2341 : : Offset Type Value Addend Name\n")
2342 : 266 : : _("\
2343 : : Offset Type Value Addend Name\n"),
2344 : : stdout);
2345 : :
2346 : 266 : int is_statically_linked = 0;
2347 [ + + ]: 116938 : for (int cnt = 0; cnt < nentries; ++cnt)
2348 : : {
2349 : 116672 : GElf_Rela relmem;
2350 : 116672 : GElf_Rela *rel = gelf_getrela (data, cnt, &relmem);
2351 [ + - ]: 116672 : if (likely (rel != NULL))
2352 : : {
2353 : 116672 : char buf[64];
2354 : 116672 : GElf_Sym symmem;
2355 : 116672 : Elf32_Word xndx;
2356 : 233344 : GElf_Sym *sym = gelf_getsymshndx (symdata, xndxdata,
2357 : 116672 : GELF_R_SYM (rel->r_info),
2358 : : &symmem, &xndx);
2359 : :
2360 [ - + ]: 116672 : 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 [ + + ]: 116672 : else if (GELF_ST_TYPE (sym->st_info) != STT_SECTION)
2413 [ + - ]: 323048 : printf ("\
2414 : : %#0*" PRIx64 " %-15s %#0*" PRIx64 " %+6" PRId64 " %s\n",
2415 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2416 [ + - ]: 103188 : 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 : 103188 : ? 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 : 103188 : elf_strptr (ebl->elf, symshdr->sh_link, sym->st_name));
2426 : : else
2427 : : {
2428 : : /* This is a relocation against a STT_SECTION symbol. */
2429 : 13484 : GElf_Shdr secshdr_mem;
2430 : 13484 : GElf_Shdr *secshdr;
2431 : 13484 : secshdr = gelf_getshdr (elf_getscn (ebl->elf,
2432 [ + - ]: 13484 : sym->st_shndx == SHN_XINDEX
2433 : 0 : ? xndx : sym->st_shndx),
2434 : : &secshdr_mem);
2435 : :
2436 [ - + ]: 13484 : 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 [ + - + - ]: 40452 : printf ("\
2450 : : %#0*" PRIx64 " %-15s %#0*" PRIx64 " %+6" PRId64 " %s\n",
2451 : : class == ELFCLASS32 ? 10 : 18, rel->r_offset,
2452 : 13484 : ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
2453 : : /* Avoid the leading R_ which isn't carrying any
2454 : : information. */
2455 : 13484 : ? 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 : 13484 : 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 : 438 : print_symtab (Ebl *ebl, int type)
2579 : : {
2580 : : /* Use the dynamic section info to display symbol tables. */
2581 [ - + - - ]: 438 : 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 [ + + ]: 14056 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
2590 : : {
2591 : : /* Handle the section if it is a symbol table. */
2592 : 13618 : GElf_Shdr shdr_mem;
2593 : 13618 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
2594 : :
2595 [ + - + + ]: 13618 : if (shdr != NULL && shdr->sh_type == (GElf_Word) type)
2596 : : {
2597 [ + + ]: 274 : 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 [ - + ]: 266 : 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 : 266 : symtab_printed = handle_symtab (ebl, scn, shdr);
2623 : : }
2624 : : }
2625 : :
2626 : : return symtab_printed;
2627 : : }
2628 : :
2629 : :
2630 : : static void
2631 : 266 : 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 [ + + ]: 76958 : for (unsigned int cnt = 0; cnt < nsyms; ++cnt)
2638 : : {
2639 : 76692 : char typebuf[64];
2640 : 76692 : char bindbuf[64];
2641 : 76692 : char scnbuf[64];
2642 : 76692 : Elf32_Word xndx;
2643 : 76692 : GElf_Sym sym_mem;
2644 : 76692 : GElf_Sym *sym
2645 : 76692 : = gelf_getsymshndx (symdata, xndx_data, cnt, &sym_mem, &xndx);
2646 : :
2647 [ - + ]: 76692 : if (unlikely (sym == NULL))
2648 : 0 : continue;
2649 : :
2650 : : /* Determine the real section index. */
2651 [ + - ]: 76692 : if (likely (sym->st_shndx != SHN_XINDEX))
2652 : 76692 : xndx = sym->st_shndx;
2653 : :
2654 [ + + ]: 152496 : printf (_ ("\
2655 : : %5u: %0*" PRIx64 " %6" PRId64 " %-7s %-6s %-9s %6s %s"),
2656 : 76692 : cnt, gelf_getclass (ebl->elf) == ELFCLASS32 ? 8 : 16,
2657 : : sym->st_value, sym->st_size,
2658 : 76692 : ebl_symbol_type_name (ebl, GELF_ST_TYPE (sym->st_info), typebuf,
2659 : : sizeof (typebuf)),
2660 : 76692 : ebl_symbol_binding_name (ebl, GELF_ST_BIND (sym->st_info),
2661 : : bindbuf, sizeof (bindbuf)),
2662 : 76692 : get_visibility_type (GELF_ST_VISIBILITY (sym->st_other)),
2663 : 76692 : ebl_section_name (ebl, sym->st_shndx, xndx, scnbuf,
2664 : : sizeof (scnbuf), NULL, shnum),
2665 [ - + ]: 76692 : use_dynamic_segment == true
2666 : 0 : ? (char *)symstr_data->d_buf + sym->st_name
2667 : 76692 : : elf_strptr (ebl->elf, idx, sym->st_name));
2668 : :
2669 [ + + ]: 76692 : if (versym_data != NULL)
2670 : : {
2671 : : /* Get the version information. */
2672 : 3424 : GElf_Versym versym_mem;
2673 : 3424 : GElf_Versym *versym = gelf_getversym (versym_data, cnt, &versym_mem);
2674 : :
2675 [ + - + + ]: 3424 : if (versym != NULL && ((*versym & 0x8000) != 0 || *versym > 1))
2676 : : {
2677 : 2464 : bool is_nobits = false;
2678 : 2464 : bool check_def = xndx != SHN_UNDEF;
2679 : :
2680 [ + + - + ]: 2464 : if (xndx < SHN_LORESERVE || sym->st_shndx == SHN_XINDEX)
2681 : : {
2682 : 2444 : GElf_Shdr symshdr_mem;
2683 : 2444 : GElf_Shdr *symshdr = gelf_getshdr (
2684 : : elf_getscn (ebl->elf, xndx), &symshdr_mem);
2685 : :
2686 : 2444 : is_nobits
2687 [ + - + + ]: 4864 : = (symshdr != NULL && symshdr->sh_type == SHT_NOBITS);
2688 : : }
2689 : :
2690 [ + + ]: 2464 : if (is_nobits || !check_def)
2691 : : {
2692 : : /* We must test both. */
2693 : 2160 : GElf_Vernaux vernaux_mem;
2694 : 2160 : GElf_Vernaux *vernaux = NULL;
2695 : 2160 : size_t vn_offset = 0;
2696 : :
2697 : 2160 : GElf_Verneed verneed_mem;
2698 : 2160 : GElf_Verneed *verneed
2699 : 2160 : = gelf_getverneed (verneed_data, 0, &verneed_mem);
2700 [ + - ]: 7850 : while (verneed != NULL)
2701 : : {
2702 : 7850 : size_t vna_offset = vn_offset;
2703 : :
2704 : 7850 : vernaux = gelf_getvernaux (verneed_data,
2705 : 7850 : vna_offset += verneed->vn_aux,
2706 : : &vernaux_mem);
2707 [ + + ]: 28198 : while (vernaux != NULL && vernaux->vna_other != *versym
2708 [ + + ]: 18188 : && vernaux->vna_next != 0
2709 [ + - ]: 20348 : && (verneed_data->d_size - vna_offset
2710 [ + - ]: 12498 : >= vernaux->vna_next))
2711 : : {
2712 : : /* Update the offset. */
2713 : 12498 : vna_offset += vernaux->vna_next;
2714 : :
2715 : 12498 : vernaux = (vernaux->vna_next == 0
2716 : : ? NULL
2717 : 12498 : : gelf_getvernaux (verneed_data,
2718 : : vna_offset,
2719 : : &vernaux_mem));
2720 : : }
2721 : :
2722 : : /* Check whether we found the version. */
2723 [ + - + + ]: 7850 : if (vernaux != NULL && vernaux->vna_other == *versym)
2724 : : /* Found it. */
2725 : : break;
2726 : :
2727 [ + - ]: 5690 : if (verneed_data->d_size - vn_offset < verneed->vn_next)
2728 : : break;
2729 : :
2730 : 5690 : vn_offset += verneed->vn_next;
2731 : 5690 : verneed
2732 : : = (verneed->vn_next == 0
2733 : : ? NULL
2734 [ + - ]: 5690 : : gelf_getverneed (verneed_data, vn_offset,
2735 : : &verneed_mem));
2736 : : }
2737 : :
2738 [ + - + - ]: 2160 : if (vernaux != NULL && vernaux->vna_other == *versym)
2739 : : {
2740 : 4320 : printf ("@%s (%u)",
2741 [ - + ]: 2160 : use_dynamic_segment == true
2742 : 0 : ? (char *)symstr_data->d_buf
2743 : 0 : + vernaux->vna_name
2744 : 2160 : : elf_strptr (ebl->elf, verneed_stridx,
2745 : 2160 : vernaux->vna_name),
2746 : : (unsigned int)vernaux->vna_other);
2747 : 2160 : 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 [ + - + - ]: 2464 : 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 [ + + ]: 153384 : putchar_unlocked ('\n');
2799 : : }
2800 : 266 : }
2801 : :
2802 : :
2803 : : static bool
2804 : 266 : handle_symtab (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
2805 : : {
2806 : 266 : Elf_Data *versym_data = NULL;
2807 : 266 : Elf_Data *verneed_data = NULL;
2808 : 266 : Elf_Data *verdef_data = NULL;
2809 : 266 : Elf_Data *xndx_data = NULL;
2810 : 266 : int class = gelf_getclass (ebl->elf);
2811 : 266 : Elf32_Word verneed_stridx = 0;
2812 : 266 : Elf32_Word verdef_stridx = 0;
2813 : :
2814 : : /* Get the data of the section. */
2815 : 266 : Elf_Data *data = elf_getdata (scn, NULL);
2816 [ + - ]: 266 : if (data == NULL)
2817 : : return false;
2818 : :
2819 : : /* Find out whether we have other sections we might need. */
2820 : : Elf_Scn *runscn = NULL;
2821 [ + + ]: 8784 : while ((runscn = elf_nextscn (ebl->elf, runscn)) != NULL)
2822 : : {
2823 : 8518 : GElf_Shdr runshdr_mem;
2824 : 8518 : GElf_Shdr *runshdr = gelf_getshdr (runscn, &runshdr_mem);
2825 : :
2826 [ + - ]: 8518 : if (likely (runshdr != NULL))
2827 : : {
2828 [ + + ]: 8518 : if (runshdr->sh_type == SHT_GNU_versym
2829 [ + + ]: 202 : && runshdr->sh_link == elf_ndxscn (scn))
2830 : : /* Bingo, found the version information. Now get the data. */
2831 : 150 : versym_data = elf_getdata (runscn, NULL);
2832 [ + + ]: 8368 : else if (runshdr->sh_type == SHT_GNU_verneed)
2833 : : {
2834 : : /* This is the information about the needed versions. */
2835 : 202 : verneed_data = elf_getdata (runscn, NULL);
2836 : 202 : verneed_stridx = runshdr->sh_link;
2837 : : }
2838 [ + + ]: 8166 : 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 [ + - ]: 8158 : 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 : 266 : size_t shstrndx;
2853 [ - + ]: 266 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
2854 : 0 : error_exit (0, _("cannot get section header string table index"));
2855 : :
2856 : 266 : GElf_Shdr glink_mem;
2857 : 266 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
2858 : : &glink_mem);
2859 [ - + ]: 266 : 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 : 532 : unsigned int nsyms = data->d_size / (class == ELFCLASS32
2865 : : ? sizeof (Elf32_Sym)
2866 [ + + ]: 266 : : sizeof (Elf64_Sym));
2867 : :
2868 : 266 : printf (ngettext ("\nSymbol table [%2u] '%s' contains %u entry:\n",
2869 : : "\nSymbol table [%2u] '%s' contains %u entries:\n",
2870 : : nsyms),
2871 : 266 : (unsigned int) elf_ndxscn (scn),
2872 : 266 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name), nsyms);
2873 : 266 : printf (ngettext (" %lu local symbol String table: [%2u] '%s'\n",
2874 : : " %lu local symbols String table: [%2u] '%s'\n",
2875 : : shdr->sh_info),
2876 : 266 : (unsigned long int) shdr->sh_info,
2877 : 266 : (unsigned int) shdr->sh_link,
2878 : 266 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
2879 : :
2880 [ + + ]: 532 : fputs_unlocked (class == ELFCLASS32
2881 : 32 : ? _("\
2882 : : Num: Value Size Type Bind Vis Ndx Name\n")
2883 : 234 : : _("\
2884 : : Num: Value Size Type Bind Vis Ndx Name\n"),
2885 : : stdout);
2886 : :
2887 : 266 : process_symtab(ebl, nsyms, shdr->sh_link, verneed_stridx, verdef_stridx,
2888 : : data, versym_data, NULL, verneed_data, verdef_data, xndx_data);
2889 : 266 : 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 : 184 : print_verinfo (Ebl *ebl)
3071 : : {
3072 : : /* Find the version information sections. For this we have to
3073 : : search through the section table. */
3074 : 184 : Elf_Scn *scn = NULL;
3075 : :
3076 [ + + ]: 6004 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
3077 : : {
3078 : : /* Handle the section if it is part of the versioning handling. */
3079 : 5820 : GElf_Shdr shdr_mem;
3080 : 5820 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
3081 : :
3082 [ + - ]: 5820 : if (likely (shdr != NULL))
3083 : : {
3084 [ + + ]: 5820 : if (shdr->sh_type == SHT_GNU_verneed)
3085 : 130 : handle_verneed (ebl, scn, shdr);
3086 [ + + ]: 5690 : else if (shdr->sh_type == SHT_GNU_verdef)
3087 : 4 : handle_verdef (ebl, scn, shdr);
3088 [ + + ]: 5686 : else if (shdr->sh_type == SHT_GNU_versym)
3089 : 130 : handle_versym (ebl, scn, shdr);
3090 : : }
3091 : : }
3092 : 184 : }
3093 : :
3094 : :
3095 : : static const char *
3096 : 374 : get_ver_flags (unsigned int flags)
3097 : : {
3098 : 374 : static char buf[32];
3099 : 374 : char *endp;
3100 : :
3101 [ + + ]: 374 : if (flags == 0)
3102 : 370 : 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 : 130 : handle_verneed (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
3129 : : {
3130 : 130 : int class = gelf_getclass (ebl->elf);
3131 : :
3132 : : /* Get the data of the section. */
3133 : 130 : Elf_Data *data = elf_getdata (scn, NULL);
3134 [ - + ]: 130 : if (data == NULL)
3135 : 0 : return;
3136 : :
3137 : : /* Get the section header string table index. */
3138 : 130 : size_t shstrndx;
3139 [ - + ]: 130 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
3140 : 0 : error_exit (0, _("cannot get section header string table index"));
3141 : :
3142 : 130 : GElf_Shdr glink_mem;
3143 : 130 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
3144 : : &glink_mem);
3145 [ - + ]: 130 : if (glink == NULL)
3146 : 0 : error_exit (0, _("invalid sh_link value in section %zu"),
3147 : : elf_ndxscn (scn));
3148 : :
3149 : 130 : 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 : 130 : (unsigned int) elf_ndxscn (scn),
3155 : 130 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name), shdr->sh_info,
3156 : : class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
3157 : : shdr->sh_offset,
3158 [ + + ]: 130 : (unsigned int) shdr->sh_link,
3159 : 130 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
3160 : :
3161 : 130 : unsigned int offset = 0;
3162 [ + - ]: 184 : for (unsigned int cnt = shdr->sh_info; cnt > 0; cnt--)
3163 : : {
3164 : : /* Get the data at the next offset. */
3165 : 184 : GElf_Verneed needmem;
3166 : 184 : GElf_Verneed *need = gelf_getverneed (data, offset, &needmem);
3167 [ + - ]: 184 : if (unlikely (need == NULL))
3168 : : break;
3169 : :
3170 : 552 : printf (_(" %#06x: Version: %hu File: %s Cnt: %hu\n"),
3171 : 184 : offset, (unsigned short int) need->vn_version,
3172 : 184 : elf_strptr (ebl->elf, shdr->sh_link, need->vn_file),
3173 : 184 : (unsigned short int) need->vn_cnt);
3174 : :
3175 : 184 : unsigned int auxoffset = offset + need->vn_aux;
3176 [ + - ]: 350 : for (unsigned int cnt2 = need->vn_cnt; cnt2 > 0; cnt2--)
3177 : : {
3178 : 350 : GElf_Vernaux auxmem;
3179 : 350 : GElf_Vernaux *aux = gelf_getvernaux (data, auxoffset, &auxmem);
3180 [ + - ]: 350 : if (unlikely (aux == NULL))
3181 : : break;
3182 : :
3183 : 350 : printf (_(" %#06x: Name: %s Flags: %s Version: %hu\n"),
3184 : : auxoffset,
3185 : 350 : elf_strptr (ebl->elf, shdr->sh_link, aux->vna_name),
3186 : 350 : get_ver_flags (aux->vna_flags),
3187 : 350 : (unsigned short int) aux->vna_other);
3188 : :
3189 [ + + ]: 350 : if (aux->vna_next == 0)
3190 : : break;
3191 : :
3192 : 166 : auxoffset += aux->vna_next;
3193 : : }
3194 : :
3195 : : /* Find the next offset. */
3196 [ + + ]: 184 : 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 : 130 : handle_versym (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
3288 : : {
3289 : 130 : int class = gelf_getclass (ebl->elf);
3290 : 130 : const char **vername;
3291 : 130 : const char **filename;
3292 : :
3293 : : /* Get the data of the section. */
3294 : 130 : Elf_Data *data = elf_getdata (scn, NULL);
3295 [ + - ]: 130 : if (data == NULL)
3296 : 0 : return;
3297 : :
3298 : : /* Get the section header string table index. */
3299 : 130 : size_t shstrndx;
3300 [ - + ]: 130 : 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 [ + + ]: 4046 : while ((verscn = elf_nextscn (ebl->elf, verscn)) != NULL)
3310 : : {
3311 : 3916 : GElf_Shdr vershdr_mem;
3312 : 3916 : GElf_Shdr *vershdr = gelf_getshdr (verscn, &vershdr_mem);
3313 : :
3314 [ - + ]: 3916 : if (likely (vershdr != NULL))
3315 : : {
3316 [ + + ]: 3916 : if (vershdr->sh_type == SHT_GNU_verdef)
3317 : : defscn = verscn;
3318 [ + + ]: 3912 : else if (vershdr->sh_type == SHT_GNU_verneed)
3319 : 3916 : needscn = verscn;
3320 : : }
3321 : : }
3322 : :
3323 : 130 : size_t nvername;
3324 [ + - ]: 130 : 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 : 130 : nvername = 0;
3329 [ + + ]: 130 : 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 [ + - ]: 130 : if (needscn != NULL)
3364 : : {
3365 : 130 : unsigned int offset = 0;
3366 : 130 : Elf_Data *needdata;
3367 : 130 : GElf_Shdr needshdrmem;
3368 : 130 : GElf_Shdr *needshdr;
3369 : :
3370 : 130 : needdata = elf_getdata (needscn, NULL);
3371 [ + - ]: 130 : if (unlikely (needdata == NULL))
3372 : 0 : return;
3373 : :
3374 : 130 : needshdr = gelf_getshdr (needscn, &needshdrmem);
3375 [ + - ]: 130 : if (unlikely (needshdr == NULL))
3376 : : return;
3377 : :
3378 [ + - ]: 184 : for (unsigned int cnt = 0; cnt < needshdr->sh_info; ++cnt)
3379 : : {
3380 : 184 : GElf_Verneed needmem;
3381 : 184 : GElf_Verneed *need;
3382 : 184 : unsigned int auxoffset;
3383 : 184 : int cnt2;
3384 : :
3385 : : /* Get the data at the next offset. */
3386 : 184 : need = gelf_getverneed (needdata, offset, &needmem);
3387 [ + - ]: 184 : if (unlikely (need == NULL))
3388 : : break;
3389 : :
3390 : : /* Run through the auxiliary entries. */
3391 : 184 : auxoffset = offset + need->vn_aux;
3392 [ + - ]: 350 : for (cnt2 = need->vn_cnt; --cnt2 >= 0; )
3393 : : {
3394 : 350 : GElf_Vernaux auxmem;
3395 : 350 : GElf_Vernaux *aux;
3396 : :
3397 : 350 : aux = gelf_getvernaux (needdata, auxoffset, &auxmem);
3398 [ + - ]: 350 : if (unlikely (aux == NULL))
3399 : : break;
3400 : :
3401 : 350 : nvername = MAX (nvername,
3402 : : (size_t) (aux->vna_other & 0x7fff));
3403 : :
3404 [ + + ]: 350 : if (aux->vna_next == 0)
3405 : : break;
3406 : 166 : auxoffset += aux->vna_next;
3407 : : }
3408 : :
3409 [ + + ]: 184 : 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 : 130 : ++nvername;
3417 : :
3418 : : /* Allocate the array. */
3419 : 130 : vername = (const char **) alloca (nvername * sizeof (const char *));
3420 [ + + ]: 130 : memset(vername, 0, nvername * sizeof (const char *));
3421 : 130 : filename = (const char **) alloca (nvername * sizeof (const char *));
3422 : 130 : memset(filename, 0, nvername * sizeof (const char *));
3423 : :
3424 : : /* Run through the data structures again and collect the strings. */
3425 [ + + ]: 130 : 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 [ + - ]: 130 : if (needscn != NULL)
3468 : : {
3469 : 130 : unsigned int offset = 0;
3470 : :
3471 : 130 : Elf_Data *needdata = elf_getdata (needscn, NULL);
3472 : 130 : GElf_Shdr needshdrmem;
3473 : 130 : GElf_Shdr *needshdr = gelf_getshdr (needscn, &needshdrmem);
3474 [ - + ]: 130 : if (unlikely (needdata == NULL || needshdr == NULL))
3475 : 0 : return;
3476 : :
3477 [ + - ]: 184 : for (unsigned int cnt = 0; cnt < needshdr->sh_info; ++cnt)
3478 : : {
3479 : : /* Get the data at the next offset. */
3480 : 184 : GElf_Verneed needmem;
3481 : 184 : GElf_Verneed *need = gelf_getverneed (needdata, offset,
3482 : : &needmem);
3483 [ + - ]: 184 : if (unlikely (need == NULL))
3484 : : break;
3485 : :
3486 : : /* Run through the auxiliary entries. */
3487 : 184 : unsigned int auxoffset = offset + need->vn_aux;
3488 [ + - ]: 350 : for (int cnt2 = need->vn_cnt; --cnt2 >= 0; )
3489 : : {
3490 : 350 : GElf_Vernaux auxmem;
3491 : 350 : GElf_Vernaux *aux = gelf_getvernaux (needdata, auxoffset,
3492 : : &auxmem);
3493 [ + - ]: 350 : if (unlikely (aux == NULL))
3494 : : break;
3495 : :
3496 : 350 : vername[aux->vna_other & 0x7fff]
3497 : 350 : = elf_strptr (ebl->elf, needshdr->sh_link, aux->vna_name);
3498 : 350 : filename[aux->vna_other & 0x7fff]
3499 : 350 : = elf_strptr (ebl->elf, needshdr->sh_link, need->vn_file);
3500 : :
3501 [ + + ]: 350 : if (aux->vna_next == 0)
3502 : : break;
3503 : 166 : auxoffset += aux->vna_next;
3504 : : }
3505 : :
3506 [ + + ]: 184 : 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 : 130 : GElf_Shdr glink_mem;
3520 : 130 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
3521 : : &glink_mem);
3522 : 130 : size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_HALF, 1, EV_CURRENT);
3523 [ - + ]: 130 : 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 : 130 : 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 : 130 : (unsigned int) elf_ndxscn (scn),
3534 : 130 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
3535 : 130 : (int) (shdr->sh_size / sh_entsize),
3536 : : class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
3537 : : shdr->sh_offset,
3538 [ + + ]: 130 : (unsigned int) shdr->sh_link,
3539 : 130 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
3540 : :
3541 : : /* Now we can finally look at the actual contents of this section. */
3542 [ + + ]: 3296 : for (unsigned int cnt = 0; cnt < shdr->sh_size / sh_entsize; ++cnt)
3543 : : {
3544 [ + + ]: 3166 : if (cnt % 2 == 0)
3545 : 1600 : printf ("\n %4d:", cnt);
3546 : :
3547 : 3166 : GElf_Versym symmem;
3548 : 3166 : GElf_Versym *sym = gelf_getversym (data, cnt, &symmem);
3549 [ + - ]: 3166 : if (sym == NULL)
3550 : : break;
3551 : :
3552 [ + + + ]: 3166 : switch (*sym)
3553 : : {
3554 : 238 : ssize_t n;
3555 : 238 : case 0:
3556 : 238 : fputs_unlocked (_(" 0 *local* "),
3557 : : stdout);
3558 : 238 : break;
3559 : :
3560 : 502 : case 1:
3561 : 502 : fputs_unlocked (_(" 1 *global* "),
3562 : : stdout);
3563 : 502 : break;
3564 : :
3565 : 2426 : default:
3566 [ + - ]: 4852 : n = printf ("%4d%c%s",
3567 [ + - ]: 2426 : *sym & 0x7fff, *sym & 0x8000 ? 'h' : ' ',
3568 : : (vername != NULL
3569 [ + - ]: 2426 : && (unsigned int) (*sym & 0x7fff) < nvername)
3570 : 2426 : ? vername[*sym & 0x7fff] : "???");
3571 [ + - ]: 2426 : if ((unsigned int) (*sym & 0x7fff) < nvername
3572 [ + - + + ]: 2426 : && filename != NULL && filename[*sym & 0x7fff] != NULL)
3573 : 2122 : n += printf ("(%s)", filename[*sym & 0x7fff]);
3574 : 3166 : printf ("%*s", MAX (0, 33 - (int) n), " ");
3575 : : break;
3576 : : }
3577 : : }
3578 [ - + ]: 260 : putchar_unlocked ('\n');
3579 : : }
3580 : :
3581 : :
3582 : : static void
3583 : 130 : 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 : 130 : uint32_t *counts = xcalloc (maxlength + 1, sizeof (uint32_t));
3588 : :
3589 [ + + ]: 550 : for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt)
3590 : 420 : ++counts[lengths[cnt]];
3591 : :
3592 : 130 : GElf_Shdr glink_mem;
3593 : 130 : GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf,
3594 : 130 : shdr->sh_link),
3595 : : &glink_mem);
3596 [ - + ]: 130 : 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 [ + + ]: 260 : 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 : 130 : (unsigned int) elf_ndxscn (scn),
3610 : 130 : elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
3611 : : (int) nbucket,
3612 : 130 : gelf_getclass (ebl->elf) == ELFCLASS32 ? 10 : 18,
3613 : : shdr->sh_addr,
3614 : : shdr->sh_offset,
3615 : 130 : (unsigned int) shdr->sh_link,
3616 : 130 : elf_strptr (ebl->elf, shstrndx, glink->sh_name));
3617 : :
3618 [ + - ]: 130 : if (extrastr != NULL)
3619 : 130 : fputs (extrastr, stdout);
3620 : :
3621 [ + - ]: 130 : if (likely (nbucket > 0))
3622 : : {
3623 : 130 : uint64_t success = 0;
3624 : :
3625 : : /* xgettext:no-c-format */
3626 : 130 : fputs_unlocked (_("\
3627 : : Length Number % of total Coverage\n"), stdout);
3628 : 130 : printf (_(" 0 %6" PRIu32 " %5.1f%%\n"),
3629 : 130 : counts[0], (counts[0] * 100.0) / nbucket);
3630 : :
3631 : 130 : uint64_t nzero_counts = 0;
3632 [ + + ]: 228 : for (Elf32_Word cnt = 1; cnt <= maxlength; ++cnt)
3633 : : {
3634 : 98 : nzero_counts += counts[cnt] * cnt;
3635 : 98 : printf (_("\
3636 : : %7d %6" PRIu32 " %5.1f%% %5.1f%%\n"),
3637 : 98 : (int) cnt, counts[cnt], (counts[cnt] * 100.0) / nbucket,
3638 : 98 : (nzero_counts * 100.0) / nsyms);
3639 : : }
3640 : :
3641 : : Elf32_Word acc = 0;
3642 [ + + ]: 228 : for (Elf32_Word cnt = 1; cnt <= maxlength; ++cnt)
3643 : : {
3644 : 98 : acc += cnt;
3645 : 98 : success += counts[cnt] * acc;
3646 : : }
3647 : :
3648 [ + + ]: 130 : if (nzero_counts > 0)
3649 : 192 : printf (_("\
3650 : : Average number of tests: successful lookup: %f\n\
3651 : : unsuccessful lookup: %f\n"),
3652 : 62 : (double) success / (double) nzero_counts,
3653 : 62 : (double) nzero_counts / (double) nbucket);
3654 : : }
3655 : :
3656 : 130 : 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 : 130 : handle_gnu_hash (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx)
3792 : : {
3793 : 130 : uint32_t *lengths = NULL;
3794 : 130 : Elf_Data *data = elf_getdata (scn, NULL);
3795 [ - + ]: 130 : 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 [ - + ]: 130 : 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 : 130 : Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0];
3812 : 130 : 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 : 130 : Elf32_Word bitmask_words = ((Elf32_Word *) data->d_buf)[2];
3819 [ + + ]: 130 : if (gelf_getclass (ebl->elf) == ELFCLASS64)
3820 : 114 : bitmask_words *= 2;
3821 : :
3822 [ - + ]: 130 : if (bitmask_words == 0)
3823 : 0 : goto invalid_data;
3824 : :
3825 : 130 : 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 : 130 : uint64_t used_buf = (4ULL + bitmask_words + nbucket) * sizeof (Elf32_Word);
3830 : 130 : uint32_t max_nsyms = (data->d_size - used_buf) / sizeof (Elf32_Word);
3831 [ - + ]: 130 : if (used_buf > data->d_size)
3832 : 0 : goto invalid_data;
3833 : :
3834 : 130 : lengths = xcalloc (nbucket, sizeof (uint32_t));
3835 : :
3836 : 130 : Elf32_Word *bitmask = &((Elf32_Word *) data->d_buf)[4];
3837 : 130 : Elf32_Word *bucket = &((Elf32_Word *) data->d_buf)[4 + bitmask_words];
3838 : 130 : Elf32_Word *chain = &((Elf32_Word *) data->d_buf)[4 + bitmask_words
3839 : 130 : + nbucket];
3840 : :
3841 : : /* Compute distribution of chain lengths. */
3842 : 130 : uint_fast32_t maxlength = 0;
3843 : 130 : uint_fast32_t nsyms = 0;
3844 [ + + ]: 550 : for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt)
3845 [ + + ]: 420 : if (bucket[cnt] != 0)
3846 : : {
3847 : 232 : Elf32_Word inner = bucket[cnt] - symbias;
3848 : 414 : do
3849 : : {
3850 : 414 : ++nsyms;
3851 [ + + ]: 414 : if (maxlength < ++lengths[cnt])
3852 : 98 : ++maxlength;
3853 [ - + ]: 414 : if (inner >= max_nsyms)
3854 : 0 : goto invalid_data;
3855 : : }
3856 [ + + ]: 414 : while ((chain[inner++] & 1) == 0);
3857 : : }
3858 : :
3859 : : /* Count bits in bitmask. */
3860 : : uint_fast32_t nbits = 0;
3861 [ + + ]: 446 : for (Elf32_Word cnt = 0; cnt < bitmask_words; ++cnt)
3862 : : {
3863 : 316 : uint_fast32_t word = bitmask[cnt];
3864 : :
3865 : 316 : word = (word & 0x55555555) + ((word >> 1) & 0x55555555);
3866 : 316 : word = (word & 0x33333333) + ((word >> 2) & 0x33333333);
3867 : 316 : word = (word & 0x0f0f0f0f) + ((word >> 4) & 0x0f0f0f0f);
3868 : 316 : word = (word & 0x00ff00ff) + ((word >> 8) & 0x00ff00ff);
3869 : 316 : nbits += (word & 0x0000ffff) + ((word >> 16) & 0x0000ffff);
3870 : : }
3871 : :
3872 : 260 : 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 : 130 : ((nbits * 100 + 50)
3878 : 130 : / (uint_fast32_t) (bitmask_words
3879 : : * sizeof (Elf32_Word) * 8)),
3880 : : (unsigned int) shift);
3881 : :
3882 : 130 : print_hash_info (ebl, scn, shdr, shstrndx, maxlength, nbucket, nsyms,
3883 : : lengths, str);
3884 : :
3885 : 130 : free (str);
3886 : 130 : 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 : 184 : handle_hash (Ebl *ebl)
3894 : : {
3895 : : /* Get the section header string table index. */
3896 : 184 : size_t shstrndx;
3897 [ - + ]: 184 : 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 [ + + ]: 6004 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
3902 : : {
3903 : : /* Handle the section if it is a symbol table. */
3904 : 5820 : GElf_Shdr shdr_mem;
3905 : 5820 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
3906 : :
3907 [ + - ]: 5820 : if (likely (shdr != NULL))
3908 : : {
3909 [ + + ]: 5820 : if ((shdr->sh_type == SHT_HASH || shdr->sh_type == SHT_GNU_HASH)
3910 [ - + ]: 130 : && (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 [ - + ]: 5820 : 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 [ + + ]: 5820 : else if (shdr->sh_type == SHT_GNU_HASH)
3930 : 130 : handle_gnu_hash (ebl, scn, shdr, shstrndx);
3931 : : }
3932 : : }
3933 : 184 : }
3934 : :
3935 : :
3936 : : static void
3937 : 192 : print_liblist (Ebl *ebl)
3938 : : {
3939 : : /* Find the library list sections. For this we have to search
3940 : : through the section table. */
3941 : 192 : Elf_Scn *scn = NULL;
3942 : :
3943 : : /* Get the section header string table index. */
3944 : 192 : size_t shstrndx;
3945 [ - + ]: 192 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
3946 : 0 : error_exit (0, _("cannot get section header string table index"));
3947 : :
3948 [ + + ]: 6130 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
3949 : : {
3950 : 5938 : GElf_Shdr shdr_mem;
3951 : 5938 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
3952 : :
3953 [ + - - + ]: 5938 : 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 : 192 : 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 : 192 : Elf_Scn *scn = NULL;
4011 : :
4012 : : /* Get the section header string table index. */
4013 : 192 : size_t shstrndx;
4014 [ - + ]: 192 : if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
4015 : 0 : error_exit (0, _("cannot get section header string table index"));
4016 : :
4017 [ + + ]: 6130 : while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
4018 : : {
4019 : 5938 : GElf_Shdr shdr_mem;
4020 : 5938 : GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
4021 : :
4022 [ + - + + ]: 5938 : if (shdr == NULL || (shdr->sh_type != SHT_GNU_ATTRIBUTES
4023 [ + + ]: 5932 : && (shdr->sh_type != SHT_ARM_ATTRIBUTES
4024 [ - + ]: 2 : || ehdr->e_machine != EM_ARM)
4025 [ + + ]: 5930 : && (shdr->sh_type != SHT_CSKY_ATTRIBUTES
4026 [ + - ]: 2 : || ehdr->e_machine != EM_CSKY)
4027 [ - + ]: 5930 : && (shdr->sh_type != SHT_RISCV_ATTRIBUTES
4028 [ # # ]: 0 : || ehdr->e_machine != EM_RISCV)))
4029 : 5930 : 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 : 2150430 : 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 : 2150430 : GElf_Sym sym;
4235 : 2150430 : GElf_Off off = 0;
4236 [ + + ]: 13042 : const char *name = (print_address_names && ! print_unresolved_addresses)
4237 : 12878 : ? dwfl_module_addrinfo (dwflmod, address, &off, &sym, NULL, NULL, NULL)
4238 [ + + ]: 2150430 : : NULL;
4239 : :
4240 : 2150430 : const char *scn;
4241 [ + + ]: 2150430 : if (print_unresolved_addresses)
4242 : : {
4243 : 168 : address = raw;
4244 : 168 : scn = NULL;
4245 : : }
4246 : : else
4247 : : {
4248 : : /* Relativize the address. */
4249 : 2150262 : int n = dwfl_module_relocations (dwflmod);
4250 [ + + ]: 2150262 : 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 : 2147526 : scn = (i < 0 ? NULL
4254 [ - + ]: 2147526 : : dwfl_module_relocation_info (dwflmod, i, NULL));
4255 : : }
4256 : :
4257 [ - + ]: 2150430 : if ((name != NULL
4258 : 12470 : ? (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 : 2156 : : printf ("%#0*" PRIx64 " <%s+%#" PRIx64 ">",
4270 : 1078 : 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 : 20072 : : printf ("%s+%#0*" PRIx64 " <%s>",
4276 : 10036 : scn, 2 + address_size * 2, address, name))
4277 : : : (address_size == 0
4278 : 160 : ? printf ("%#" PRIx64 " <%s>", address, name)
4279 : 1648 : : printf ("%#0*" PRIx64 " <%s>",
4280 : 824 : 2 + address_size * 2, address, name))))
4281 : : : (scn != NULL
4282 : : ? (address_size == 0
4283 : 780008 : ? printf ("%s+%#" PRIx64, scn, address)
4284 : 1357474 : : printf ("%s+%#0*" PRIx64, scn, 2 + address_size * 2, address))
4285 : : : (address_size == 0
4286 : 70 : ? printf ("%#" PRIx64, address)
4287 [ + + + + : 4300452 : : printf ("%#0*" PRIx64, 2 + address_size * 2, address)))) < 0)
+ + + + +
+ + + + +
+ + + + +
+ + + ]
4288 : 0 : error_exit (0, _("sprintf failure"));
4289 : 2150430 : }
4290 : :
4291 : :
4292 : : static const char *
4293 : 2232764 : dwarf_tag_string (unsigned int tag)
4294 : : {
4295 [ - + + - : 2232764 : switch (tag)
- - - - +
+ + + + -
- - - - -
+ - + - +
- - + + -
+ - - - -
- - - + -
+ - + + +
- - - - -
- + - - +
- - - + -
+ + + + -
- - - - +
+ + + - +
+ + + - -
- ]
4296 : : {
4297 : : #define DWARF_ONE_KNOWN_DW_TAG(NAME, CODE) case CODE: return #NAME;
4298 : 2232764 : 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 : 8651356 : dwarf_attr_string (unsigned int attrnum)
4308 : : {
4309 [ + - + - : 8651356 : switch (attrnum)
- - - + -
- + + + -
- - - + +
- + - - +
- + - + -
- - - - -
- - - - -
- - - - -
- - - + -
+ - + - +
- - - + +
- - - + -
+ - + + -
- + + + +
- + + + -
+ - - + -
+ - + + -
+ - - + +
+ + - - -
- - + + +
+ - + - +
- - - - +
+ - + - +
+ - + + +
+ + - - +
- - - + -
+ - - - -
+ + - + -
- - - + -
- - + + -
+ - - - -
+ + - - -
- - + + -
- - - - -
- + ]
4310 : : {
4311 : : #define DWARF_ONE_KNOWN_DW_AT(NAME, CODE) case CODE: return #NAME;
4312 : 8651354 : 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 : 8661582 : dwarf_form_string (unsigned int form)
4322 : : {
4323 [ + + + + : 8661582 : switch (form)
+ - - - -
- + - - +
+ + + + +
+ + + - +
+ - - + -
- + - - +
+ + + + +
- + + - -
- + - + ]
4324 : : {
4325 : : #define DWARF_ONE_KNOWN_DW_FORM(NAME, CODE) case CODE: return #NAME;
4326 : 8661578 : 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 : 3672 : dwarf_lang_string (unsigned int lang)
4336 : : {
4337 [ + - - + : 3672 : switch (lang)
+ + + - -
- - - - -
- + - - -
- - - - -
- - - - -
- - - - -
- - - +
- ]
4338 : : {
4339 : : #define DWARF_ONE_KNOWN_DW_LANG(NAME, CODE) case CODE: return #NAME;
4340 : 3670 : 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 : 52782 : dwarf_encoding_string (unsigned int code)
4367 : : {
4368 : 52782 : 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 : 52782 : if (likely (code < sizeof (known) / sizeof (known[0])))
4376 : 52782 : 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 : 1137866 : dwarf_locexpr_opcode_string (unsigned int code)
4520 : : {
4521 : 1137866 : 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 : 1137866 : if (likely (code < sizeof (known) / sizeof (known[0])))
4532 : 1137866 : return known[code];
4533 : :
4534 : : return NULL;
4535 : : }
4536 : :
4537 : :
4538 : : static const char *
4539 : 3418 : dwarf_unit_string (unsigned int type)
4540 : : {
4541 [ - + - - : 3418 : 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 : 132040 : dwarf_range_list_encoding_string (unsigned int kind)
4554 : : {
4555 [ - + + - : 132040 : switch (kind)
+ - - -
+ ]
4556 : : {
4557 : : #define DWARF_ONE_KNOWN_DW_RLE(NAME, CODE) case CODE: return #NAME;
4558 : 123614 : 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 : 620904 : dwarf_loc_list_encoding_string (unsigned int kind)
4568 : : {
4569 [ - - + + : 620904 : switch (kind)
- + - + -
- + ]
4570 : : {
4571 : : #define DWARF_ONE_KNOWN_DW_LLE(NAME, CODE) case CODE: return #NAME;
4572 : 602826 : 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 : 10226 : dwarf_line_content_description_string (unsigned int kind)
4584 : : {
4585 [ + + - - : 10226 : switch (kind)
- + ]
4586 : : {
4587 : : #define DWARF_ONE_KNOWN_DW_LNCT(NAME, CODE) case CODE: return #NAME;
4588 : 10218 : 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 : 20375868 : 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 : 20375868 : static char unknown_buf[20];
4603 : :
4604 [ + + ]: 20375868 : 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 : 2232764 : dwarf_tag_name (unsigned int tag)
4626 : : {
4627 : 2232764 : const char *ret = dwarf_tag_string (tag);
4628 : 2232764 : return string_or_unknown (ret, tag, DW_TAG_lo_user, DW_TAG_hi_user, true);
4629 : : }
4630 : :
4631 : : static const char *
4632 : 8651356 : dwarf_attr_name (unsigned int attr)
4633 : : {
4634 : 8651356 : const char *ret = dwarf_attr_string (attr);
4635 : 8651356 : return string_or_unknown (ret, attr, DW_AT_lo_user, DW_AT_hi_user, true);
4636 : : }
4637 : :
4638 : :
4639 : : static const char *
4640 : 8661582 : dwarf_form_name (unsigned int form)
4641 : : {
4642 : 8661582 : const char *ret = dwarf_form_string (form);
4643 : 8661582 : return string_or_unknown (ret, form, 0, 0, true);
4644 : : }
4645 : :
4646 : :
4647 : : static const char *
4648 : 3668 : dwarf_lang_name (unsigned int lang)
4649 : : {
4650 : 3668 : const char *ret = dwarf_lang_string (lang);
4651 : 3668 : 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 : 52782 : dwarf_encoding_name (unsigned int code)
4665 : : {
4666 [ + - ]: 52782 : const char *ret = dwarf_encoding_string (code);
4667 : 52782 : 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 : 3418 : dwarf_unit_name (unsigned int type)
4737 : : {
4738 : 3418 : const char *ret = dwarf_unit_string (type);
4739 : 3418 : return string_or_unknown (ret, type, DW_UT_lo_user, DW_UT_hi_user, true);
4740 : : }
4741 : :
4742 : :
4743 : : static const char *
4744 : 132040 : dwarf_range_list_encoding_name (unsigned int kind)
4745 : : {
4746 : 132040 : const char *ret = dwarf_range_list_encoding_string (kind);
4747 : 132040 : return string_or_unknown (ret, kind, 0, 0, false);
4748 : : }
4749 : :
4750 : :
4751 : : static const char *
4752 : 620904 : dwarf_loc_list_encoding_name (unsigned int kind)
4753 : : {
4754 : 620904 : const char *ret = dwarf_loc_list_encoding_string (kind);
4755 : 620904 : return string_or_unknown (ret, kind, 0, 0, false);
4756 : : }
4757 : :
4758 : :
4759 : : static const char *
4760 : 10226 : dwarf_line_content_description_name (unsigned int kind)
4761 : : {
4762 : 10226 : const char *ret = dwarf_line_content_description_string (kind);
4763 : 10226 : 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 : 777960 : 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 [ + + ]: 777960 : const unsigned int ref_size = vers < 3 ? addrsize : offset_size;
4827 : :
4828 [ - + ]: 777960 : 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 [ + + ]: 1915826 : while (len-- > 0)
4839 : 1137866 : {
4840 : 1137866 : uint_fast8_t op = *data++;
4841 : :
4842 [ + - ]: 1137866 : const char *op_name = dwarf_locexpr_opcode_string (op);
4843 [ - + ]: 1137866 : 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 [ + - + + : 1137866 : switch (op)
+ + + + -
- + + - +
- - + + +
+ + - - -
- + + + ]
4854 : : {
4855 : 25788 : case DW_OP_addr:;
4856 : : /* Address operand. */
4857 : 25788 : Dwarf_Word addr;
4858 [ - + ]: 25788 : NEED (addrsize);
4859 [ + + ]: 25788 : if (addrsize == 4)
4860 [ + + ]: 108 : addr = read_4ubyte_unaligned (dbg, data);
4861 [ + - ]: 25680 : else if (addrsize == 8)
4862 [ + + ]: 25680 : addr = read_8ubyte_unaligned (dbg, data);
4863 : : else
4864 : 0 : goto invalid;
4865 : 25788 : data += addrsize;
4866 : 25788 : CONSUME (addrsize);
4867 : :
4868 : 25788 : printf ("%*s[%2" PRIuMAX "] %s ",
4869 : : indent, "", (uintmax_t) offset, op_name);
4870 : 25788 : print_dwarf_addr (dwflmod, 0, addr, addr);
4871 : 25788 : printf ("\n");
4872 : :
4873 : 25788 : offset += 1 + addrsize;
4874 : 25788 : 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 : 26926 : 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 [ - + ]: 26926 : NEED (1);
4901 : 53852 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu8 "\n",
4902 : : indent, "", (uintmax_t) offset,
4903 : 26926 : op_name, *((uint8_t *) data));
4904 : 26926 : ++data;
4905 : 26926 : --len;
4906 : 26926 : offset += 2;
4907 : 26926 : break;
4908 : :
4909 : 3224 : case DW_OP_const2u:
4910 [ - + ]: 3224 : 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 [ - + ]: 3224 : op_name, read_2ubyte_unaligned (dbg, data));
4915 : 3224 : CONSUME (2);
4916 : 3224 : data += 2;
4917 : 3224 : offset += 3;
4918 : 3224 : 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 : 4986 : case DW_OP_const1s:
4943 [ - + ]: 4986 : NEED (1);
4944 : : // XXX value might be modified by relocation
4945 : 9972 : printf ("%*s[%2" PRIuMAX "] %s %" PRId8 "\n",
4946 : : indent, "", (uintmax_t) offset,
4947 : 4986 : op_name, *((int8_t *) data));
4948 : 4986 : ++data;
4949 : 4986 : --len;
4950 : 4986 : offset += 2;
4951 : 4986 : 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 : 26530 : case DW_OP_piece:
4987 : : case DW_OP_regx:
4988 : : case DW_OP_plus_uconst:
4989 : 26530 : case DW_OP_constu:;
4990 : 26530 : const unsigned char *start = data;
4991 : 26530 : uint64_t uleb;
4992 [ - + ]: 26530 : NEED (1);
4993 : 26530 : get_uleb128 (uleb, data, data + len);
4994 : 26530 : printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 "\n",
4995 : : indent, "", (uintmax_t) offset, op_name, uleb);
4996 [ - + ]: 26530 : CONSUME (data - start);
4997 : 26530 : offset += 1 + (data - start);
4998 : 26530 : 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 : 199682 : case DW_OP_fbreg:
5034 : : case DW_OP_breg0 ... DW_OP_breg31:
5035 : : case DW_OP_consts:
5036 : 199682 : start = data;
5037 : 199682 : int64_t sleb;
5038 [ - + ]: 199682 : NEED (1);
5039 : 199682 : get_sleb128 (sleb, data, data + len);
5040 : 199682 : printf ("%*s[%2" PRIuMAX "] %s %" PRId64 "\n",
5041 : : indent, "", (uintmax_t) offset, op_name, sleb);
5042 [ - + ]: 199682 : CONSUME (data - start);
5043 : 199682 : offset += 1 + (data - start);
5044 : 199682 : 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 : 5024 : case DW_OP_implicit_pointer:
5103 : : case DW_OP_GNU_implicit_pointer:
5104 : : /* DIE offset operand. */
5105 : 5024 : start = data;
5106 [ - + ]: 5024 : NEED (ref_size);
5107 [ - + ]: 5024 : if (ref_size != 4 && ref_size != 8)
5108 : 0 : goto invalid; /* Cannot be used in CFA. */
5109 [ + - ]: 5024 : if (ref_size == 4)
5110 [ - + ]: 5024 : addr = read_4ubyte_unaligned (dbg, data);
5111 : : else
5112 [ # # ]: 0 : addr = read_8ubyte_unaligned (dbg, data);
5113 : 5024 : data += ref_size;
5114 : : /* Byte offset operand. */
5115 [ - + ]: 5024 : NEED (1);
5116 : 5024 : get_sleb128 (sleb, data, data + len);
5117 : :
5118 : 5024 : printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "] %+" PRId64 "\n",
5119 : : indent, "", (intmax_t) offset,
5120 : : op_name, (uintmax_t) addr, sleb);
5121 [ - + ]: 5024 : CONSUME (data - start);
5122 : 5024 : offset += 1 + (data - start);
5123 : 5024 : break;
5124 : :
5125 : 63630 : case DW_OP_entry_value:
5126 : : case DW_OP_GNU_entry_value:
5127 : : /* Size plus expression block. */
5128 : 63630 : start = data;
5129 [ - + ]: 63630 : NEED (1);
5130 : 63630 : get_uleb128 (uleb, data, data + len);
5131 : 63630 : printf ("%*s[%2" PRIuMAX "] %s:\n",
5132 : : indent, "", (uintmax_t) offset, op_name);
5133 [ - + ]: 63630 : NEED (uleb);
5134 : 63630 : print_ops (dwflmod, dbg, indent + 5, indent + 5, vers,
5135 : : addrsize, offset_size, cu, uleb, data);
5136 : 63630 : data += uleb;
5137 [ - + ]: 63630 : CONSUME (data - start);
5138 : 63630 : offset += 1 + (data - start);
5139 : 63630 : 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 : 777152 : printf ("%*s[%2" PRIuMAX "] %s\n",
5244 : : indent, "", (uintmax_t) offset, op_name);
5245 : 777152 : ++offset;
5246 : 777152 : break;
5247 : : }
5248 : :
5249 : 1137866 : indent = indentrest;
5250 : 1137866 : 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 : 21186 : cudie_base (Dwarf_Die *cudie)
5380 : : {
5381 : 21186 : 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 [ - + ]: 21186 : 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 : 21186 : return base;
5395 : : }
5396 : :
5397 : : static Dwarf_Addr
5398 : 21186 : listptr_base (struct listptr *p)
5399 : : {
5400 : 21186 : Dwarf_Die cu = CUDIE (p->cu);
5401 : 21186 : 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 : 1728962 : compare_listptr (const void *a, const void *b)
5409 : : {
5410 : 1728962 : const char *name = sort_listptr_name;
5411 : 1728962 : struct listptr *p1 = (void *) a;
5412 : 1728962 : struct listptr *p2 = (void *) b;
5413 : :
5414 [ + + ]: 1728962 : if (p1->offset < p2->offset)
5415 : : return -1;
5416 [ + + ]: 166286 : if (p1->offset > p2->offset)
5417 : : return 1;
5418 : :
5419 [ + - - + ]: 8030 : if (!p1->warned && !p2->warned)
5420 : : {
5421 [ - + ]: 8030 : if (p1->addr64 != p2->addr64)
5422 : : {
5423 : 0 : p1->warned = p2->warned = true;
5424 : 8030 : error (0, 0,
5425 : 0 : _("%s %#" PRIx64 " used with different address sizes"),
5426 : : name, (uint64_t) p1->offset);
5427 : : }
5428 [ - + ]: 8030 : if (p1->dwarf64 != p2->dwarf64)
5429 : : {
5430 : 0 : p1->warned = p2->warned = true;
5431 : 8030 : error (0, 0,
5432 : 0 : _("%s %#" PRIx64 " used with different offset sizes"),
5433 : 0 : name, (uint64_t) p1->offset);
5434 : : }
5435 [ - + ]: 8030 : if (listptr_base (p1) != listptr_base (p2))
5436 : : {
5437 : 0 : p1->warned = p2->warned = true;
5438 : 8030 : error (0, 0,
5439 : 0 : _("%s %#" PRIx64 " used with different base addresses"),
5440 : 0 : name, (uint64_t) p1->offset);
5441 : : }
5442 [ + - ]: 8030 : 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 : 500 : reset_listptr (struct listptr_table *table)
5472 : : {
5473 : 500 : free (table->table);
5474 : 500 : table->table = NULL;
5475 : 500 : table->n = table->alloc = 0;
5476 : : }
5477 : :
5478 : : /* Returns false if offset doesn't fit. See struct listptr. */
5479 : : static bool
5480 : 250676 : 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 [ + + ]: 250676 : if (print_debug_sections & section)
5485 : : {
5486 [ + + ]: 250424 : 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 : 250424 : struct listptr *p = &table->table[table->n++];
5497 : :
5498 : 250424 : *p = (struct listptr)
5499 : : {
5500 : 250424 : .addr64 = address_size == 8,
5501 : 250424 : .dwarf64 = offset_size == 8,
5502 : : .offset = offset,
5503 : : .cu = cu,
5504 : : .attr = attr
5505 : : };
5506 : :
5507 [ + - ]: 250424 : 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 : 107600 : 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 [ + - ]: 107600 : if (*idxp < table->n)
5580 : : {
5581 [ + - ]: 213952 : while (++*idxp < table->n)
5582 : : {
5583 : 213952 : Dwarf_Off next = table->table[*idxp].offset;
5584 [ + + ]: 213952 : if (next > off)
5585 : 107600 : 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 : 1457346 : get_listptr (struct listptr_table *table, size_t idx)
5594 : : {
5595 : 1457346 : if (idx >= table->n)
5596 : : return NULL;
5597 : 1457172 : 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 : 4918 : 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 : 4918 : while (*idxp < table->n
5609 [ + - + + ]: 38422 : && table->table[*idxp].offset < start)
5610 : 33504 : ++*idxp;
5611 : :
5612 [ + - ]: 4918 : if (*idxp < table->n
5613 [ + - ]: 4918 : && table->table[*idxp].offset >= start
5614 [ + - ]: 4918 : && table->table[*idxp].offset < end)
5615 : : {
5616 : 4918 : struct listptr *p = &table->table[*idxp];
5617 : 4918 : *base = listptr_base (p);
5618 : 4918 : *cu = p->cu;
5619 : 4918 : 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 : 728504 : listptr_attr (struct listptr_table *table, size_t idxp,
5630 : : Dwarf_Off offset, unsigned int attr)
5631 : : {
5632 : 1457310 : struct listptr *listptr;
5633 : 1457310 : do
5634 : : {
5635 [ + + ]: 1457310 : listptr = get_listptr (table, idxp);
5636 [ + - ]: 1457146 : if (listptr == NULL)
5637 : : return false;
5638 : :
5639 [ + + + + ]: 1457146 : if (listptr->offset == offset && listptr->attr == attr)
5640 : : return true;
5641 : :
5642 : 1349546 : idxp++;
5643 : : }
5644 [ + + ]: 1349546 : 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 [ + + ]: 3618 : while (offset < sh_size)
5667 : : {
5668 : 3530 : printf (_("\nAbbreviation section at offset %" PRIu64 ":\n"),
5669 : : offset);
5670 : :
5671 : 326626 : while (1)
5672 : 161548 : {
5673 : 165078 : size_t length;
5674 : 165078 : Dwarf_Abbrev abbrev;
5675 : :
5676 : 165078 : int res = dwarf_offabbrev (dbg, offset, &length, &abbrev);
5677 [ + + ]: 165078 : if (res != 0)
5678 : : {
5679 [ - + ]: 3530 : 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 : 3530 : ++offset;
5689 : 3530 : break;
5690 : : }
5691 : :
5692 : : /* We know these calls can never fail. */
5693 : 161548 : unsigned int code = dwarf_getabbrevcode (&abbrev);
5694 : 161548 : unsigned int tag = dwarf_getabbrevtag (&abbrev);
5695 : 161548 : int has_children = dwarf_abbrevhaschildren (&abbrev);
5696 : :
5697 [ + + ]: 161548 : 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 : 161548 : size_t cnt = 0;
5704 : 161548 : unsigned int name;
5705 : 161548 : unsigned int form;
5706 : 161548 : Dwarf_Sword data;
5707 : 161548 : Dwarf_Off enoffset;
5708 : 161548 : while (dwarf_getabbrevattr_data (&abbrev, cnt, &name, &form,
5709 [ + + ]: 924480 : &data, &enoffset) == 0)
5710 : : {
5711 : 762932 : printf (" attr: %s, form: %s",
5712 : : dwarf_attr_name (name), dwarf_form_name (form));
5713 [ + + ]: 762932 : if (form == DW_FORM_implicit_const)
5714 : 54224 : printf (" (%" PRId64 ")", data);
5715 : 762932 : printf (", offset: %#" PRIx64 "\n", (uint64_t) enoffset);
5716 : 762932 : ++cnt;
5717 : : }
5718 : :
5719 : 161548 : 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 [ + + ]: 3602 : while (readp < readendp)
6036 : : {
6037 : 3512 : const unsigned char *hdrstart = readp;
6038 : 3512 : size_t start_offset = hdrstart - (const unsigned char *) data->d_buf;
6039 : :
6040 : 3512 : printf (_("\nTable at offset %zu:\n"), start_offset);
6041 [ - + ]: 3512 : 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 [ + + ]: 3512 : Dwarf_Word length = read_4ubyte_unaligned_inc (dbg, readp);
6050 : 3512 : unsigned int length_bytes = 4;
6051 [ - + ]: 3512 : 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 : 3512 : const unsigned char *nexthdr = readp + length;
6060 : 3512 : printf (_("\n Length: %6" PRIu64 "\n"),
6061 : : (uint64_t) length);
6062 : :
6063 [ - + ]: 3512 : if (unlikely (length > (size_t) (readendp - readp)))
6064 : 0 : goto invalid_data;
6065 : :
6066 [ - + ]: 3512 : if (length == 0)
6067 : 0 : continue;
6068 : :
6069 [ - + ]: 3512 : if (readp + 2 > readendp)
6070 : 0 : goto invalid_data;
6071 [ + + ]: 3512 : uint_fast16_t version = read_2ubyte_unaligned_inc (dbg, readp);
6072 : 3512 : printf (_(" DWARF version: %6" PRIuFAST16 "\n"),
6073 : : version);
6074 [ - + ]: 3512 : if (version != 2)
6075 : : {
6076 : 0 : error (0, 0, _("unsupported aranges version"));
6077 : 0 : goto next_table;
6078 : : }
6079 : :
6080 : 3512 : Dwarf_Word offset;
6081 [ - + ]: 3512 : if (readp + length_bytes > readendp)
6082 : 0 : goto invalid_data;
6083 [ - + ]: 3512 : if (length_bytes == 8)
6084 [ # # ]: 0 : offset = read_8ubyte_unaligned_inc (dbg, readp);
6085 : : else
6086 [ + + ]: 3512 : offset = read_4ubyte_unaligned_inc (dbg, readp);
6087 : 3512 : printf (_(" CU offset: %6" PRIx64 "\n"),
6088 : : (uint64_t) offset);
6089 : :
6090 [ - + ]: 3512 : if (readp + 1 > readendp)
6091 : 0 : goto invalid_data;
6092 : 3512 : unsigned int address_size = *readp++;
6093 : 3512 : printf (_(" Address size: %6" PRIu64 "\n"),
6094 : : (uint64_t) address_size);
6095 [ - + ]: 3512 : if (address_size != 4 && address_size != 8)
6096 : : {
6097 : 0 : error (0, 0, _("unsupported address size"));
6098 : 0 : goto next_table;
6099 : : }
6100 : :
6101 [ - + ]: 3512 : if (readp + 1 > readendp)
6102 : 0 : goto invalid_data;
6103 : 3512 : unsigned int segment_size = *readp++;
6104 : 3512 : printf (_(" Segment size: %6" PRIu64 "\n\n"),
6105 : : (uint64_t) segment_size);
6106 [ - + - - ]: 3512 : 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 : 3512 : readp += ((2 * address_size - ((readp - hdrstart) % (2 * address_size)))
6114 : 3512 : % (2 * address_size));
6115 : :
6116 : 3512 : while (readp < nexthdr)
6117 : : {
6118 : 7298 : Dwarf_Word range_address;
6119 : 7298 : Dwarf_Word range_length;
6120 : 7298 : Dwarf_Word segment = 0;
6121 [ - + ]: 7298 : if (readp + 2 * address_size + segment_size > readendp)
6122 : 0 : goto invalid_data;
6123 [ + + ]: 7298 : 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 [ + + ]: 7206 : range_address = read_8ubyte_unaligned_inc (dbg, readp);
6131 [ + + ]: 7206 : range_length = read_8ubyte_unaligned_inc (dbg, readp);
6132 : : }
6133 : :
6134 [ - + ]: 7298 : if (segment_size == 4)
6135 [ # # ]: 0 : segment = read_4ubyte_unaligned_inc (dbg, readp);
6136 [ - + ]: 7298 : else if (segment_size == 8)
6137 [ # # ]: 0 : segment = read_8ubyte_unaligned_inc (dbg, readp);
6138 : :
6139 [ + + ]: 7298 : if (range_address == 0 && range_length == 0 && segment == 0)
6140 : : break;
6141 : :
6142 : 3786 : printf (" ");
6143 : 3786 : print_dwarf_addr (dwflmod, address_size, range_address,
6144 : : range_address);
6145 : 3786 : printf ("..");
6146 : 3786 : print_dwarf_addr (dwflmod, address_size,
6147 : 3786 : range_address + range_length - 1,
6148 : : range_length);
6149 [ - + ]: 3786 : if (segment_size != 0)
6150 : 0 : printf (" (%" PRIx64 ")\n", (uint64_t) segment);
6151 : : else
6152 [ + - ]: 11084 : printf ("\n");
6153 : : }
6154 : :
6155 : 3512 : next_table:
6156 [ - + ]: 3512 : 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 : 132040 : uint8_t kind = *readp++;
6340 : 132040 : uint64_t op1, op2;
6341 : :
6342 : : /* Skip padding. */
6343 [ - + ]: 132040 : if (start_of_list && kind == DW_RLE_end_of_list)
6344 : 0 : continue;
6345 : :
6346 [ + + ]: 132040 : if (start_of_list)
6347 : : {
6348 : 27682 : base = cu_base;
6349 : 27682 : printf (" Offset: %" PRIx64 ", Index: %" PRIx64 "\n",
6350 : 27682 : (uint64_t) (readp - (unsigned char *) data->d_buf - 1),
6351 : 27682 : (uint64_t) (readp - offset_array_start - 1));
6352 : 27682 : start_of_list = false;
6353 : : }
6354 : :
6355 : 132040 : printf (" %s", dwarf_range_list_encoding_name (kind));
6356 [ + - - - : 132040 : switch (kind)
+ + - +
- ]
6357 : : {
6358 : 27682 : case DW_RLE_end_of_list:
6359 : 27682 : start_of_list = true;
6360 : 27682 : 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 : 95018 : case DW_RLE_offset_pair:
6447 [ - + ]: 95018 : if ((uint64_t) (nexthdr - readp) < 1)
6448 : 0 : goto invalid_range;
6449 : 95018 : get_uleb128 (op1, readp, nexthdr);
6450 [ - + ]: 95018 : if ((uint64_t) (nexthdr - readp) < 1)
6451 : 0 : goto invalid_range;
6452 : 95018 : get_uleb128 (op2, readp, nexthdr);
6453 : 95018 : printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
6454 [ + - ]: 95018 : if (! print_unresolved_addresses)
6455 : : {
6456 : 95018 : op1 += base;
6457 : 95018 : op2 += base;
6458 : 95018 : printf (" ");
6459 : 95018 : print_dwarf_addr (dwflmod, address_size, op1, op1);
6460 : 95018 : printf ("..\n ");
6461 : 95018 : |