LCOV - code coverage report
Current view: top level - src - readelf.c (source / functions) Hit Total Coverage
Test: elfutils-0.189 Lines: 4575 6702 68.3 %
Date: 2023-04-14 15:57:06 Functions: 138 153 90.2 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 2573 4823 53.3 %

           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                 :            :    This file is part of elfutils.
       4                 :            : 
       5                 :            :    This file is free software; you can redistribute it and/or modify
       6                 :            :    it under the terms of the GNU General Public License as published by
       7                 :            :    the Free Software Foundation; either version 3 of the License, or
       8                 :            :    (at your option) any later version.
       9                 :            : 
      10                 :            :    elfutils is distributed in the hope that it will be useful, but
      11                 :            :    WITHOUT ANY WARRANTY; without even the implied warranty of
      12                 :            :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      13                 :            :    GNU General Public License for more details.
      14                 :            : 
      15                 :            :    You should have received a copy of the GNU General Public License
      16                 :            :    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
      17                 :            : 
      18                 :            : #ifdef HAVE_CONFIG_H
      19                 :            : # include <config.h>
      20                 :            : #endif
      21                 :            : 
      22                 :            : #include <argp.h>
      23                 :            : #include <assert.h>
      24                 :            : #include <ctype.h>
      25                 :            : #include <dwarf.h>
      26                 :            : #include <errno.h>
      27                 :            : #include <fcntl.h>
      28                 :            : #include <gelf.h>
      29                 :            : #include <inttypes.h>
      30                 :            : #include <langinfo.h>
      31                 :            : #include <libdw.h>
      32                 :            : #include <libdwfl.h>
      33                 :            : #include <locale.h>
      34                 :            : #include <stdarg.h>
      35                 :            : #include <stdbool.h>
      36                 :            : #include <stdio.h>
      37                 :            : #include <stdio_ext.h>
      38                 :            : #include <stdlib.h>
      39                 :            : #include <string.h>
      40                 :            : #include <strings.h>
      41                 :            : #include <time.h>
      42                 :            : #include <unistd.h>
      43                 :            : #include <sys/stat.h>
      44                 :            : #include <signal.h>
      45                 :            : 
      46                 :            : #include <libeu.h>
      47                 :            : #include <system.h>
      48                 :            : #include <printversion.h>
      49                 :            : #include "../libelf/libelfP.h"
      50                 :            : #include "../libelf/common.h"
      51                 :            : #include "../libebl/libeblP.h"
      52                 :            : #include "../libdwelf/libdwelf.h"
      53                 :            : #include "../libdw/libdwP.h"
      54                 :            : #include "../libdwfl/libdwflP.h"
      55                 :            : #include "../libdw/memory-access.h"
      56                 :            : 
      57                 :            : #include "../libdw/known-dwarf.h"
      58                 :            : 
      59                 :            : #ifdef __linux__
      60                 :            : #define CORE_SIGILL  SIGILL
      61                 :            : #define CORE_SIGBUS  SIGBUS
      62                 :            : #define CORE_SIGFPE  SIGFPE
      63                 :            : #define CORE_SIGSEGV SIGSEGV
      64                 :            : #define CORE_SI_USER SI_USER
      65                 :            : #else
      66                 :            : /* We want the linux version of those as that is what shows up in the core files. */
      67                 :            : #define CORE_SIGILL  4  /* Illegal instruction (ANSI).  */
      68                 :            : #define CORE_SIGBUS  7  /* BUS error (4.2 BSD).  */
      69                 :            : #define CORE_SIGFPE  8  /* Floating-point exception (ANSI).  */
      70                 :            : #define CORE_SIGSEGV 11 /* Segmentation violation (ANSI).  */
      71                 :            : #define CORE_SI_USER 0  /* Sent by kill, sigsend.  */
      72                 :            : #endif
      73                 :            : 
      74                 :            : /* Name and version of program.  */
      75                 :            : ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
      76                 :            : 
      77                 :            : /* Bug report address.  */
      78                 :            : ARGP_PROGRAM_BUG_ADDRESS_DEF = PACKAGE_BUGREPORT;
      79                 :            : 
      80                 :            : /* argp key value for --elf-section, non-ascii.  */
      81                 :            : #define ELF_INPUT_SECTION 256
      82                 :            : 
      83                 :            : /* argp key value for --dwarf-skeleton, non-ascii.  */
      84                 :            : #define DWARF_SKELETON 257
      85                 :            : 
      86                 :            : /* argp key value for --dyn-syms, non-ascii.  */
      87                 :            : #define PRINT_DYNSYM_TABLE 258
      88                 :            : 
      89                 :            : /* Terrible hack for hooking unrelated skeleton/split compile units,
      90                 :            :    see __libdw_link_skel_split in print_debug.  */
      91                 :            : static bool do_not_close_dwfl = false;
      92                 :            : 
      93                 :            : /* Definitions of arguments for argp functions.  */
      94                 :            : static const struct argp_option options[] =
      95                 :            : {
      96                 :            :   { NULL, 0, NULL, 0, N_("ELF input selection:"), 0 },
      97                 :            :   { "elf-section", ELF_INPUT_SECTION, "SECTION", OPTION_ARG_OPTIONAL,
      98                 :            :     N_("Use the named SECTION (default .gnu_debugdata) as (compressed) ELF "
      99                 :            :        "input data"), 0 },
     100                 :            :   { "dwarf-skeleton", DWARF_SKELETON, "FILE", 0,
     101                 :            :     N_("Used with -w to find the skeleton Compile Units in FILE associated "
     102                 :            :        "with the Split Compile units in a .dwo input file"), 0 },
     103                 :            :   { NULL, 0, NULL, 0, N_("ELF output selection:"), 0 },
     104                 :            :   { "all", 'a', NULL, 0,
     105                 :            :     N_("All these plus -p .strtab -p .dynstr -p .comment"), 0 },
     106                 :            :   { "dynamic", 'd', NULL, 0, N_("Display the dynamic segment"), 0 },
     107                 :            :   { "file-header", 'h', NULL, 0, N_("Display the ELF file header"), 0 },
     108                 :            :   { "histogram", 'I', NULL, 0,
     109                 :            :     N_("Display histogram of bucket list lengths"), 0 },
     110                 :            :   { "program-headers", 'l', NULL, 0, N_("Display the program headers"), 0 },
     111                 :            :   { "segments", 'l', NULL, OPTION_ALIAS | OPTION_HIDDEN, NULL, 0 },
     112                 :            :   { "relocs", 'r', NULL, 0, N_("Display relocations"), 0 },
     113                 :            :   { "section-groups", 'g', NULL, 0, N_("Display the section groups"), 0 },
     114                 :            :   { "section-headers", 'S', NULL, 0, N_("Display the sections' headers"), 0 },
     115                 :            :   { "sections", 'S', NULL, OPTION_ALIAS | OPTION_HIDDEN, NULL, 0 },
     116                 :            :   { "symbols", 's', "SECTION", OPTION_ARG_OPTIONAL,
     117                 :            :     N_("Display the symbol table sections"), 0 },
     118                 :            :   { "syms", 's', NULL, OPTION_ALIAS | OPTION_HIDDEN, NULL, 0 },
     119                 :            :   { "dyn-syms", PRINT_DYNSYM_TABLE, NULL, 0,
     120                 :            :     N_("Display (only) the dynamic symbol table"), 0 },
     121                 :            :   { "version-info", 'V', NULL, 0, N_("Display versioning information"), 0 },
     122                 :            :   { "notes", 'n', "SECTION", OPTION_ARG_OPTIONAL, N_("Display the ELF notes"), 0 },
     123                 :            :   { "arch-specific", 'A', NULL, 0,
     124                 :            :     N_("Display architecture specific information, if any"), 0 },
     125                 :            :   { "exception", 'e', NULL, 0,
     126                 :            :     N_("Display sections for exception handling"), 0 },
     127                 :            : 
     128                 :            :   { NULL, 0, NULL, 0, N_("Additional output selection:"), 0 },
     129                 :            :   { "debug-dump", 'w', "SECTION", OPTION_ARG_OPTIONAL,
     130                 :            :     N_("Display DWARF section content.  SECTION can be one of abbrev, addr, "
     131                 :            :        "aranges, decodedaranges, frame, gdb_index, info, info+, loc, line, "
     132                 :            :        "decodedline, ranges, pubnames, str, macinfo, macro or exception"), 0 },
     133                 :            :   { "hex-dump", 'x', "SECTION", 0,
     134                 :            :     N_("Dump the uninterpreted contents of SECTION, by number or name"), 0 },
     135                 :            :   { "strings", 'p', "SECTION", OPTION_ARG_OPTIONAL,
     136                 :            :     N_("Print string contents of sections"), 0 },
     137                 :            :   { "string-dump", 'p', NULL, OPTION_ALIAS | OPTION_HIDDEN, NULL, 0 },
     138                 :            :   { "archive-index", 'c', NULL, 0,
     139                 :            :     N_("Display the symbol index of an archive"), 0 },
     140                 :            :   { "use-dynamic", 'D', NULL, 0,
     141                 :            :     N_("Use the dynamic segment when possible for displaying info"), 0 },
     142                 :            : 
     143                 :            :   { NULL, 0, NULL, 0, N_("Output control:"), 0 },
     144                 :            :   { "numeric-addresses", 'N', NULL, 0,
     145                 :            :     N_("Do not find symbol names for addresses in DWARF data"), 0 },
     146                 :            :   { "unresolved-address-offsets", 'U', NULL, 0,
     147                 :            :     N_("Display just offsets instead of resolving values to addresses in DWARF data"), 0 },
     148                 :            :   { "wide", 'W', NULL, 0,
     149                 :            :     N_("Ignored for compatibility (lines always wide)"), 0 },
     150                 :            :   { "decompress", 'z', NULL, 0,
     151                 :            :     N_("Show compression information for compressed sections (when used with -S); decompress section before dumping data (when used with -p or -x)"), 0 },
     152                 :            :   { NULL, 0, NULL, 0, NULL, 0 }
     153                 :            : };
     154                 :            : 
     155                 :            : /* Short description of program.  */
     156                 :            : static const char doc[] = N_("\
     157                 :            : Print information from ELF file in human-readable form.");
     158                 :            : 
     159                 :            : /* Strings for arguments in help texts.  */
     160                 :            : static const char args_doc[] = N_("FILE...");
     161                 :            : 
     162                 :            : /* Prototype for option handler.  */
     163                 :            : static error_t parse_opt (int key, char *arg, struct argp_state *state);
     164                 :            : 
     165                 :            : /* Data structure to communicate with argp functions.  */
     166                 :            : static struct argp argp =
     167                 :            : {
     168                 :            :   options, parse_opt, args_doc, doc, NULL, NULL, NULL
     169                 :            : };
     170                 :            : 
     171                 :            : /* If non-null, the section from which we should read to (compressed) ELF.  */
     172                 :            : static const char *elf_input_section = NULL;
     173                 :            : 
     174                 :            : /* If non-null, the file that contains the skeleton CUs.  */
     175                 :            : static const char *dwarf_skeleton = NULL;
     176                 :            : 
     177                 :            : /* Flags set by the option controlling the output.  */
     178                 :            : 
     179                 :            : /* True if dynamic segment should be printed.  */
     180                 :            : static bool print_dynamic_table;
     181                 :            : 
     182                 :            : /* True if the file header should be printed.  */
     183                 :            : static bool print_file_header;
     184                 :            : 
     185                 :            : /* True if the program headers should be printed.  */
     186                 :            : static bool print_program_header;
     187                 :            : 
     188                 :            : /* True if relocations should be printed.  */
     189                 :            : static bool print_relocations;
     190                 :            : 
     191                 :            : /* True if the section headers should be printed.  */
     192                 :            : static bool print_section_header;
     193                 :            : 
     194                 :            : /* True if the symbol table should be printed.  */
     195                 :            : static bool print_symbol_table;
     196                 :            : 
     197                 :            : /* True if (only) the dynsym table should be printed.  */
     198                 :            : static bool print_dynsym_table;
     199                 :            : 
     200                 :            : /* True if reconstruct dynamic symbol table from the PT_DYNAMIC segment.  */
     201                 :            : static bool use_dynamic_segment;
     202                 :            : 
     203                 :            : /* A specific section name, or NULL to print all symbol tables.  */
     204                 :            : static char *symbol_table_section;
     205                 :            : 
     206                 :            : /* A specific section name, or NULL to print all ELF notes.  */
     207                 :            : static char *notes_section;
     208                 :            : 
     209                 :            : /* True if the version information should be printed.  */
     210                 :            : static bool print_version_info;
     211                 :            : 
     212                 :            : /* True if section groups should be printed.  */
     213                 :            : static bool print_section_groups;
     214                 :            : 
     215                 :            : /* True if bucket list length histogram should be printed.  */
     216                 :            : static bool print_histogram;
     217                 :            : 
     218                 :            : /* True if the architecture specific data should be printed.  */
     219                 :            : static bool print_arch;
     220                 :            : 
     221                 :            : /* True if note section content should be printed.  */
     222                 :            : static bool print_notes;
     223                 :            : 
     224                 :            : /* True if SHF_STRINGS section content should be printed.  */
     225                 :            : static bool print_string_sections;
     226                 :            : 
     227                 :            : /* True if archive index should be printed.  */
     228                 :            : static bool print_archive_index;
     229                 :            : 
     230                 :            : /* True if any of the control options except print_archive_index is set.  */
     231                 :            : static bool any_control_option;
     232                 :            : 
     233                 :            : /* True if we should print addresses from DWARF in symbolic form.  */
     234                 :            : static bool print_address_names = true;
     235                 :            : 
     236                 :            : /* True if we should print raw values instead of relativized addresses.  */
     237                 :            : static bool print_unresolved_addresses = false;
     238                 :            : 
     239                 :            : /* True if we should print the .debug_aranges section using libdw.  */
     240                 :            : static bool decodedaranges = false;
     241                 :            : 
     242                 :            : /* True if we should print the .debug_aranges section using libdw.  */
     243                 :            : static bool decodedline = false;
     244                 :            : 
     245                 :            : /* True if we want to show more information about compressed sections.  */
     246                 :            : static bool print_decompress = false;
     247                 :            : 
     248                 :            : /* True if we want to show split compile units for debug_info skeletons.  */
     249                 :            : static bool show_split_units = false;
     250                 :            : 
     251                 :            : /* Select printing of debugging sections.  */
     252                 :            : static enum section_e
     253                 :            : {
     254                 :            :   section_abbrev = 1,           /* .debug_abbrev  */
     255                 :            :   section_aranges = 2,          /* .debug_aranges  */
     256                 :            :   section_frame = 4,            /* .debug_frame or .eh_frame & al.  */
     257                 :            :   section_info = 8,             /* .debug_info, (implies .debug_types)  */
     258                 :            :   section_line = 16,            /* .debug_line  */
     259                 :            :   section_loc = 32,             /* .debug_loc  */
     260                 :            :   section_pubnames = 64,        /* .debug_pubnames  */
     261                 :            :   section_str = 128,            /* .debug_str  */
     262                 :            :   section_macinfo = 256,        /* .debug_macinfo  */
     263                 :            :   section_ranges = 512,         /* .debug_ranges  */
     264                 :            :   section_exception = 1024,     /* .eh_frame & al.  */
     265                 :            :   section_gdb_index = 2048,     /* .gdb_index  */
     266                 :            :   section_macro = 4096,         /* .debug_macro  */
     267                 :            :   section_addr = 8192,          /* .debug_addr  */
     268                 :            :   section_types = 16384,        /* .debug_types (implied by .debug_info)  */
     269                 :            :   section_all = (section_abbrev | section_aranges | section_frame
     270                 :            :                  | section_info | section_line | section_loc
     271                 :            :                  | section_pubnames | section_str | section_macinfo
     272                 :            :                  | section_ranges | section_exception | section_gdb_index
     273                 :            :                  | section_macro | section_addr | section_types)
     274                 :            : } print_debug_sections, implicit_debug_sections;
     275                 :            : 
     276                 :            : /* Select hex dumping of sections.  */
     277                 :            : static struct section_argument *dump_data_sections;
     278                 :            : static struct section_argument **dump_data_sections_tail = &dump_data_sections;
     279                 :            : 
     280                 :            : /* Select string dumping of sections.  */
     281                 :            : static struct section_argument *string_sections;
     282                 :            : static struct section_argument **string_sections_tail = &string_sections;
     283                 :            : 
     284                 :            : struct section_argument
     285                 :            : {
     286                 :            :   struct section_argument *next;
     287                 :            :   const char *arg;
     288                 :            :   bool implicit;
     289                 :            : };
     290                 :            : 
     291                 :            : /* Numbers of sections and program headers in the file.  */
     292                 :            : static size_t shnum;
     293                 :            : static size_t phnum;
     294                 :            : 
     295                 :            : 
     296                 :            : /* Declarations of local functions.  */
     297                 :            : static void process_file (int fd, const char *fname, bool only_one);
     298                 :            : static void process_elf_file (Dwfl_Module *dwflmod, int fd);
     299                 :            : static void print_ehdr (Ebl *ebl, GElf_Ehdr *ehdr);
     300                 :            : static void print_shdr (Ebl *ebl, GElf_Ehdr *ehdr);
     301                 :            : static void print_phdr (Ebl *ebl, GElf_Ehdr *ehdr);
     302                 :            : static void print_scngrp (Ebl *ebl);
     303                 :            : static void print_dynamic (Ebl *ebl);
     304                 :            : static void print_relocs (Ebl *ebl, GElf_Ehdr *ehdr);
     305                 :            : static void handle_relocs_rel (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn,
     306                 :            :                                GElf_Shdr *shdr);
     307                 :            : static void handle_relocs_rela (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn,
     308                 :            :                                 GElf_Shdr *shdr);
     309                 :            : static bool print_symtab (Ebl *ebl, int type);
     310                 :            : static void handle_symtab (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr);
     311                 :            : static void print_verinfo (Ebl *ebl);
     312                 :            : static void handle_verneed (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr);
     313                 :            : static void handle_verdef (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr);
     314                 :            : static void handle_versym (Ebl *ebl, Elf_Scn *scn,
     315                 :            :                            GElf_Shdr *shdr);
     316                 :            : static void print_debug (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr);
     317                 :            : static void handle_hash (Ebl *ebl);
     318                 :            : static void handle_notes (Ebl *ebl, GElf_Ehdr *ehdr);
     319                 :            : static void print_liblist (Ebl *ebl);
     320                 :            : static void print_attributes (Ebl *ebl, const GElf_Ehdr *ehdr);
     321                 :            : static void dump_data (Ebl *ebl);
     322                 :            : static void dump_strings (Ebl *ebl);
     323                 :            : static void print_strings (Ebl *ebl);
     324                 :            : static void dump_archive_index (Elf *, const char *);
     325                 :            : 
     326                 :            : enum dyn_idx
     327                 :            : {
     328                 :            :   i_strsz,
     329                 :            :   i_verneed,
     330                 :            :   i_verdef,
     331                 :            :   i_versym,
     332                 :            :   i_symtab,
     333                 :            :   i_strtab,
     334                 :            :   i_hash,
     335                 :            :   i_gnu_hash,
     336                 :            :   i_max
     337                 :            : };
     338                 :            : 
     339                 :            : /* Declarations of local functions for use-dynamic.  */
     340                 :            : static Elf_Data *get_dynscn_strtab (Elf *elf, GElf_Phdr *phdr);
     341                 :            : static void get_dynscn_addrs (Elf *elf, GElf_Phdr *phdr, GElf_Addr addrs[i_max]);
     342                 :            : static void find_offsets (Elf *elf, GElf_Addr main_bias, size_t n,
     343                 :            :                           GElf_Addr addrs[n], GElf_Off offs[n]);
     344                 :            : 
     345                 :            : /* Looked up once with gettext in main.  */
     346                 :            : static char *yes_str;
     347                 :            : static char *no_str;
     348                 :            : 
     349                 :            : static void
     350                 :        974 : cleanup_list (struct section_argument *list)
     351                 :            : {
     352   [ +  +  +  + ]:       1407 :   while (list != NULL)
     353                 :            :     {
     354                 :        433 :       struct section_argument *a = list;
     355                 :        433 :       list = a->next;
     356                 :        433 :       free (a);
     357                 :            :     }
     358                 :            : }
     359                 :            : 
     360                 :            : int
     361                 :        487 : main (int argc, char *argv[])
     362                 :            : {
     363                 :            :   /* We use no threads here which can interfere with handling a stream.  */
     364                 :        487 :   (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER);
     365                 :            : 
     366                 :            :   /* Set locale.  */
     367                 :        487 :   setlocale (LC_ALL, "");
     368                 :            : 
     369                 :            :   /* Initialize the message catalog.  */
     370                 :        487 :   textdomain (PACKAGE_TARNAME);
     371                 :            : 
     372                 :            :   /* Look up once.  */
     373                 :        487 :   yes_str = _("yes");
     374                 :        487 :   no_str = _("no");
     375                 :            : 
     376                 :            :   /* Parse and process arguments.  */
     377                 :        487 :   int remaining;
     378                 :        487 :   argp_parse (&argp, argc, argv, 0, &remaining, NULL);
     379                 :            : 
     380                 :            :   /* Before we start tell the ELF library which version we are using.  */
     381                 :        487 :   elf_version (EV_CURRENT);
     382                 :            : 
     383                 :            :   /* Now process all the files given at the command line.  */
     384                 :        487 :   bool only_one = remaining + 1 == argc;
     385                 :        526 :   do
     386                 :            :     {
     387                 :            :       /* Open the file.  */
     388                 :        526 :       int fd = open (argv[remaining], O_RDONLY);
     389         [ -  + ]:        526 :       if (fd == -1)
     390                 :            :         {
     391                 :          0 :           error (0, errno, _("cannot open input file '%s'"), argv[remaining]);
     392                 :          0 :           continue;
     393                 :            :         }
     394                 :            : 
     395                 :        526 :       process_file (fd, argv[remaining], only_one);
     396                 :            : 
     397                 :        526 :       close (fd);
     398                 :            :     }
     399         [ +  + ]:        526 :   while (++remaining < argc);
     400                 :            : 
     401                 :        487 :   cleanup_list (dump_data_sections);
     402                 :        487 :   cleanup_list (string_sections);
     403                 :            : 
     404                 :        487 :   return error_message_count != 0;
     405                 :            : }
     406                 :            : 
     407                 :            : static void
     408                 :        433 : add_dump_section (const char *name,
     409                 :            :                   int key,
     410                 :            :                   bool implicit)
     411                 :            : {
     412                 :        433 :   struct section_argument *a = xmalloc (sizeof *a);
     413                 :        433 :   a->arg = name;
     414                 :        433 :   a->next = NULL;
     415                 :        433 :   a->implicit = implicit;
     416                 :        866 :   struct section_argument ***tailp
     417         [ +  + ]:        433 :     = key == 'x' ? &dump_data_sections_tail : &string_sections_tail;
     418                 :        433 :   **tailp = a;
     419                 :        433 :   *tailp = &a->next;
     420                 :        433 : }
     421                 :            : 
     422                 :            : /* Handle program arguments.  */
     423                 :            : static error_t
     424                 :       3041 : parse_opt (int key, char *arg,
     425                 :            :            struct argp_state *state __attribute__ ((unused)))
     426                 :            : {
     427   [ +  +  +  +  :       3041 :   switch (key)
          -  +  +  -  +  
          +  +  +  +  +  
          -  +  +  +  +  
          +  +  -  +  +  
             +  +  -  + ]
     428                 :            :     {
     429                 :        142 :     case 'a':
     430                 :        142 :       print_file_header = true;
     431                 :        142 :       print_program_header = true;
     432                 :        142 :       print_relocations = true;
     433                 :        142 :       print_section_header = true;
     434                 :        142 :       print_symbol_table = true;
     435                 :        142 :       print_version_info = true;
     436                 :        142 :       print_dynamic_table = true;
     437                 :        142 :       print_section_groups = true;
     438                 :        142 :       print_histogram = true;
     439                 :        142 :       print_arch = true;
     440                 :        142 :       print_notes = true;
     441                 :        142 :       implicit_debug_sections |= section_exception;
     442                 :        142 :       add_dump_section (".strtab", key, true);
     443                 :        142 :       add_dump_section (".dynstr", key, true);
     444                 :        142 :       add_dump_section (".comment", key, true);
     445                 :        142 :       any_control_option = true;
     446                 :        142 :       break;
     447                 :          4 :     case 'A':
     448                 :          4 :       print_arch = true;
     449                 :          4 :       any_control_option = true;
     450                 :          4 :       break;
     451                 :          3 :     case 'd':
     452                 :          3 :       print_dynamic_table = true;
     453                 :          3 :       any_control_option = true;
     454                 :          3 :       break;
     455                 :          1 :     case 'D':
     456                 :          1 :       use_dynamic_segment = true;
     457                 :          1 :       break;
     458                 :          0 :     case 'e':
     459                 :          0 :       print_debug_sections |= section_exception;
     460                 :          0 :       any_control_option = true;
     461                 :          0 :       break;
     462                 :          9 :     case 'g':
     463                 :          9 :       print_section_groups = true;
     464                 :          9 :       any_control_option = true;
     465                 :          9 :       break;
     466                 :          3 :     case 'h':
     467                 :          3 :       print_file_header = true;
     468                 :          3 :       any_control_option = true;
     469                 :          3 :       break;
     470                 :          0 :     case 'I':
     471                 :          0 :       print_histogram = true;
     472                 :          0 :       any_control_option = true;
     473                 :          0 :       break;
     474                 :          2 :     case 'l':
     475                 :          2 :       print_program_header = true;
     476                 :          2 :       any_control_option = true;
     477                 :          2 :       break;
     478                 :         23 :     case 'n':
     479                 :         23 :       print_notes = true;
     480                 :         23 :       any_control_option = true;
     481                 :         23 :       notes_section = arg;
     482                 :         23 :       break;
     483                 :          1 :     case 'r':
     484                 :          1 :       print_relocations = true;
     485                 :          1 :       any_control_option = true;
     486                 :          1 :      break;
     487                 :        163 :     case 'S':
     488                 :        163 :       print_section_header = true;
     489                 :        163 :       any_control_option = true;
     490                 :        163 :       break;
     491                 :         17 :     case 's':
     492                 :         17 :       print_symbol_table = true;
     493                 :         17 :       any_control_option = true;
     494                 :         17 :       symbol_table_section = arg;
     495                 :         17 :       break;
     496                 :          1 :     case PRINT_DYNSYM_TABLE:
     497                 :          1 :       print_dynsym_table = true;
     498                 :          1 :       any_control_option = true;
     499                 :          1 :       break;
     500                 :          0 :     case 'V':
     501                 :          0 :       print_version_info = true;
     502                 :          0 :       any_control_option = true;
     503                 :          0 :       break;
     504                 :          2 :     case 'c':
     505                 :          2 :       print_archive_index = true;
     506                 :          2 :       break;
     507                 :        126 :     case 'w':
     508         [ +  + ]:        126 :       if (arg == NULL)
     509                 :            :         {
     510                 :         41 :           print_debug_sections = section_all;
     511                 :         41 :           implicit_debug_sections = section_info;
     512                 :         41 :           show_split_units = true;
     513                 :            :         }
     514         [ -  + ]:         85 :       else if (strcmp (arg, "abbrev") == 0)
     515                 :          0 :         print_debug_sections |= section_abbrev;
     516         [ +  + ]:         85 :       else if (strcmp (arg, "addr") == 0)
     517                 :            :         {
     518                 :          2 :           print_debug_sections |= section_addr;
     519                 :          2 :           implicit_debug_sections |= section_info;
     520                 :            :         }
     521         [ +  + ]:         83 :       else if (strcmp (arg, "aranges") == 0)
     522                 :          3 :         print_debug_sections |= section_aranges;
     523         [ +  + ]:         80 :       else if (strcmp (arg, "decodedaranges") == 0)
     524                 :            :         {
     525                 :          1 :           print_debug_sections |= section_aranges;
     526                 :          1 :           decodedaranges = true;
     527                 :            :         }
     528         [ +  + ]:         79 :       else if (strcmp (arg, "ranges") == 0)
     529                 :            :         {
     530                 :         13 :           print_debug_sections |= section_ranges;
     531                 :         13 :           implicit_debug_sections |= section_info;
     532                 :            :         }
     533   [ +  +  +  + ]:         66 :       else if (strcmp (arg, "frame") == 0 || strcmp (arg, "frames") == 0)
     534                 :          3 :         print_debug_sections |= section_frame;
     535         [ +  + ]:         63 :       else if (strcmp (arg, "info") == 0)
     536                 :            :         {
     537                 :         19 :           print_debug_sections |= section_info;
     538                 :         19 :           print_debug_sections |= section_types;
     539                 :            :         }
     540         [ +  + ]:         44 :       else if (strcmp (arg, "info+") == 0)
     541                 :            :         {
     542                 :          2 :           print_debug_sections |= section_info;
     543                 :          2 :           print_debug_sections |= section_types;
     544                 :          2 :           show_split_units = true;
     545                 :            :         }
     546         [ +  + ]:         42 :       else if (strcmp (arg, "loc") == 0)
     547                 :            :         {
     548                 :         19 :           print_debug_sections |= section_loc;
     549                 :         19 :           implicit_debug_sections |= section_info;
     550                 :            :         }
     551         [ +  + ]:         23 :       else if (strcmp (arg, "line") == 0)
     552                 :          8 :         print_debug_sections |= section_line;
     553         [ +  + ]:         15 :       else if (strcmp (arg, "decodedline") == 0)
     554                 :            :         {
     555                 :          7 :           print_debug_sections |= section_line;
     556                 :          7 :           decodedline = true;
     557                 :            :         }
     558         [ -  + ]:          8 :       else if (strcmp (arg, "pubnames") == 0)
     559                 :          0 :         print_debug_sections |= section_pubnames;
     560         [ +  + ]:          8 :       else if (strcmp (arg, "str") == 0)
     561                 :            :         {
     562                 :          3 :           print_debug_sections |= section_str;
     563                 :            :           /* For mapping string offset tables to CUs.  */
     564                 :          3 :           implicit_debug_sections |= section_info;
     565                 :            :         }
     566         [ -  + ]:          5 :       else if (strcmp (arg, "macinfo") == 0)
     567                 :          0 :         print_debug_sections |= section_macinfo;
     568         [ +  + ]:          5 :       else if (strcmp (arg, "macro") == 0)
     569                 :          3 :         print_debug_sections |= section_macro;
     570         [ -  + ]:          2 :       else if (strcmp (arg, "exception") == 0)
     571                 :          0 :         print_debug_sections |= section_exception;
     572         [ +  - ]:          2 :       else if (strcmp (arg, "gdb_index") == 0)
     573                 :          2 :         print_debug_sections |= section_gdb_index;
     574                 :            :       else
     575                 :            :         {
     576                 :          0 :           fprintf (stderr, _("Unknown DWARF debug section `%s'.\n"),
     577                 :            :                    arg);
     578                 :          0 :           argp_help (&argp, stderr, ARGP_HELP_SEE,
     579                 :            :                      program_invocation_short_name);
     580                 :          0 :           exit (1);
     581                 :            :         }
     582                 :        126 :       any_control_option = true;
     583                 :        126 :       break;
     584                 :          1 :     case 'p':
     585                 :          1 :       any_control_option = true;
     586         [ -  + ]:          1 :       if (arg == NULL)
     587                 :            :         {
     588                 :          0 :           print_string_sections = true;
     589                 :          0 :           break;
     590                 :            :         }
     591                 :          7 :       FALLTHROUGH;
     592                 :            :     case 'x':
     593                 :          7 :       add_dump_section (arg, key, false);
     594                 :          7 :       any_control_option = true;
     595                 :          7 :       break;
     596                 :          3 :     case 'N':
     597                 :          3 :       print_address_names = false;
     598                 :          3 :       break;
     599                 :         28 :     case 'U':
     600                 :         28 :       print_unresolved_addresses = true;
     601                 :         28 :       break;
     602                 :          0 :     case ARGP_KEY_NO_ARGS:
     603                 :          0 :       fputs (_("Missing file name.\n"), stderr);
     604                 :          0 :       goto do_argp_help;
     605                 :        487 :     case ARGP_KEY_FINI:
     606   [ +  +  -  + ]:        487 :       if (! any_control_option && ! print_archive_index)
     607                 :            :         {
     608                 :          0 :           fputs (_("No operation specified.\n"), stderr);
     609                 :          0 :         do_argp_help:
     610                 :          0 :           argp_help (&argp, stderr, ARGP_HELP_SEE,
     611                 :            :                      program_invocation_short_name);
     612                 :          0 :           exit (EXIT_FAILURE);
     613                 :            :         }
     614                 :            :       break;
     615                 :            :     case 'W':                   /* Ignored.  */
     616                 :            :       break;
     617                 :         61 :     case 'z':
     618                 :         61 :       print_decompress = true;
     619                 :         61 :       break;
     620                 :          5 :     case ELF_INPUT_SECTION:
     621         [ +  - ]:          5 :       if (arg == NULL)
     622                 :          5 :         elf_input_section = ".gnu_debugdata";
     623                 :            :       else
     624                 :          0 :         elf_input_section = arg;
     625                 :            :       break;
     626                 :          5 :     case DWARF_SKELETON:
     627                 :          5 :       dwarf_skeleton = arg;
     628                 :          5 :       break;
     629                 :            :     default:
     630                 :            :       return ARGP_ERR_UNKNOWN;
     631                 :            :     }
     632                 :            :   return 0;
     633                 :            : }
     634                 :            : 
     635                 :            : 
     636                 :            : /* Create a file descriptor to read the data from the
     637                 :            :    elf_input_section given a file descriptor to an ELF file.  */
     638                 :            : static int
     639                 :          5 : open_input_section (int fd)
     640                 :            : {
     641                 :          5 :   size_t shnums;
     642                 :          5 :   size_t cnt;
     643                 :          5 :   size_t shstrndx;
     644                 :          5 :   Elf *elf = elf_begin (fd, ELF_C_READ_MMAP, NULL);
     645         [ -  + ]:          5 :   if (elf == NULL)
     646                 :            :     {
     647                 :          0 :       error (0, 0, _("cannot generate Elf descriptor: %s"),
     648                 :            :              elf_errmsg (-1));
     649                 :          0 :       return -1;
     650                 :            :     }
     651                 :            : 
     652         [ -  + ]:          5 :   if (elf_getshdrnum (elf, &shnums) < 0)
     653                 :            :     {
     654                 :          0 :       error (0, 0, _("cannot determine number of sections: %s"),
     655                 :            :              elf_errmsg (-1));
     656                 :          0 :     open_error:
     657                 :          0 :       elf_end (elf);
     658                 :          0 :       return -1;
     659                 :            :     }
     660                 :            : 
     661         [ -  + ]:          5 :   if (elf_getshdrstrndx (elf, &shstrndx) < 0)
     662                 :            :     {
     663                 :          0 :       error (0, 0, _("cannot get section header string table index"));
     664                 :          0 :       goto open_error;
     665                 :            :     }
     666                 :            : 
     667         [ +  - ]:        118 :   for (cnt = 0; cnt < shnums; ++cnt)
     668                 :            :     {
     669                 :        118 :       Elf_Scn *scn = elf_getscn (elf, cnt);
     670         [ -  + ]:        118 :       if (scn == NULL)
     671                 :            :         {
     672                 :          0 :           error (0, 0, _("cannot get section: %s"),
     673                 :            :                  elf_errmsg (-1));
     674                 :          0 :           goto open_error;
     675                 :            :         }
     676                 :            : 
     677                 :        118 :       GElf_Shdr shdr_mem;
     678                 :        118 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
     679         [ -  + ]:        118 :       if (unlikely (shdr == NULL))
     680                 :            :         {
     681                 :          0 :           error (0, 0, _("cannot get section header: %s"),
     682                 :            :                  elf_errmsg (-1));
     683                 :          0 :           goto open_error;
     684                 :            :         }
     685                 :            : 
     686                 :        118 :       const char *sname = elf_strptr (elf, shstrndx, shdr->sh_name);
     687         [ -  + ]:        118 :       if (sname == NULL)
     688                 :            :         {
     689                 :          0 :           error (0, 0, _("cannot get section name"));
     690                 :          0 :           goto open_error;
     691                 :            :         }
     692                 :            : 
     693         [ +  + ]:        118 :       if (strcmp (sname, elf_input_section) == 0)
     694                 :            :         {
     695                 :          5 :           Elf_Data *data = elf_rawdata (scn, NULL);
     696         [ -  + ]:          5 :           if (data == NULL)
     697                 :            :             {
     698                 :          0 :               error (0, 0, _("cannot get %s content: %s"),
     699                 :            :                      sname, elf_errmsg (-1));
     700                 :          0 :               goto open_error;
     701                 :            :             }
     702                 :            : 
     703                 :            :           /* Create (and immediately unlink) a temporary file to store
     704                 :            :              section data in to create a file descriptor for it.  */
     705         [ +  - ]:          5 :           const char *tmpdir = getenv ("TMPDIR") ?: P_tmpdir;
     706                 :          5 :           static const char suffix[] = "/readelfXXXXXX";
     707                 :          5 :           int tmplen = strlen (tmpdir) + sizeof (suffix);
     708                 :          5 :           char *tempname = alloca (tmplen);
     709                 :          5 :           sprintf (tempname, "%s%s", tmpdir, suffix);
     710                 :            : 
     711                 :          5 :           int sfd = mkstemp (tempname);
     712         [ -  + ]:          5 :           if (sfd == -1)
     713                 :            :             {
     714                 :          0 :               error (0, 0, _("cannot create temp file '%s'"),
     715                 :            :                      tempname);
     716                 :          0 :               goto open_error;
     717                 :            :             }
     718                 :          5 :           unlink (tempname);
     719                 :            : 
     720                 :          5 :           ssize_t size = data->d_size;
     721         [ -  + ]:          5 :           if (write_retry (sfd, data->d_buf, size) != size)
     722                 :            :             {
     723                 :          0 :               error (0, 0, _("cannot write section data"));
     724                 :          0 :               goto open_error;
     725                 :            :             }
     726                 :            : 
     727         [ -  + ]:          5 :           if (elf_end (elf) != 0)
     728                 :            :             {
     729                 :          0 :               error (0, 0, _("error while closing Elf descriptor: %s"),
     730                 :            :                      elf_errmsg (-1));
     731                 :          5 :               return -1;
     732                 :            :             }
     733                 :            : 
     734         [ -  + ]:          5 :           if (lseek (sfd, 0, SEEK_SET) == -1)
     735                 :            :             {
     736                 :          0 :               error (0, 0, _("error while rewinding file descriptor"));
     737                 :          0 :               return -1;
     738                 :            :             }
     739                 :            : 
     740                 :            :           return sfd;
     741                 :            :         }
     742                 :            :     }
     743                 :            : 
     744                 :            :   /* Named section not found.  */
     745         [ #  # ]:          0 :   if (elf_end (elf) != 0)
     746                 :          0 :     error (0, 0, _("error while closing Elf descriptor: %s"),
     747                 :            :            elf_errmsg (-1));
     748                 :            :   return -1;
     749                 :            : }
     750                 :            : 
     751                 :            : /* Check if the file is an archive, and if so dump its index.  */
     752                 :            : static void
     753                 :          2 : check_archive_index (int fd, const char *fname, bool only_one)
     754                 :            : {
     755                 :            :   /* Create an `Elf' descriptor.  */
     756                 :          2 :   Elf *elf = elf_begin (fd, ELF_C_READ_MMAP, NULL);
     757         [ -  + ]:          2 :   if (elf == NULL)
     758                 :          0 :     error (0, 0, _("cannot generate Elf descriptor: %s"),
     759                 :            :            elf_errmsg (-1));
     760                 :            :   else
     761                 :            :     {
     762         [ +  - ]:          2 :       if (elf_kind (elf) == ELF_K_AR)
     763                 :            :         {
     764         [ -  + ]:          2 :           if (!only_one)
     765                 :          0 :             printf ("\n%s:\n\n", fname);
     766                 :          2 :           dump_archive_index (elf, fname);
     767                 :            :         }
     768                 :            :       else
     769                 :          2 :         error (0, 0,
     770                 :          0 :                _("'%s' is not an archive, cannot print archive index"),
     771                 :            :                fname);
     772                 :            : 
     773                 :            :       /* Now we can close the descriptor.  */
     774         [ -  + ]:          2 :       if (elf_end (elf) != 0)
     775                 :          0 :         error (0, 0, _("error while closing Elf descriptor: %s"),
     776                 :            :                elf_errmsg (-1));
     777                 :            :     }
     778                 :          2 : }
     779                 :            : 
     780                 :            : /* Trivial callback used for checking if we opened an archive.  */
     781                 :            : static int
     782                 :        476 : count_dwflmod (Dwfl_Module *dwflmod __attribute__ ((unused)),
     783                 :            :                void **userdata __attribute__ ((unused)),
     784                 :            :                const char *name __attribute__ ((unused)),
     785                 :            :                Dwarf_Addr base __attribute__ ((unused)),
     786                 :            :                void *arg)
     787                 :            : {
     788         [ +  - ]:        476 :   if (*(bool *) arg)
     789                 :            :     return DWARF_CB_ABORT;
     790                 :        476 :   *(bool *) arg = true;
     791                 :        476 :   return DWARF_CB_OK;
     792                 :            : }
     793                 :            : 
     794                 :            : struct process_dwflmod_args
     795                 :            : {
     796                 :            :   int fd;
     797                 :            :   bool only_one;
     798                 :            : };
     799                 :            : 
     800                 :            : static int
     801                 :        524 : process_dwflmod (Dwfl_Module *dwflmod,
     802                 :            :                  void **userdata __attribute__ ((unused)),
     803                 :            :                  const char *name __attribute__ ((unused)),
     804                 :            :                  Dwarf_Addr base __attribute__ ((unused)),
     805                 :            :                  void *arg)
     806                 :            : {
     807                 :        524 :   const struct process_dwflmod_args *a = arg;
     808                 :            : 
     809                 :            :   /* Print the file name.  */
     810         [ +  + ]:        524 :   if (!a->only_one)
     811                 :            :     {
     812                 :         48 :       const char *fname;
     813                 :         48 :       dwfl_module_info (dwflmod, NULL, NULL, NULL, NULL, NULL, &fname, NULL);
     814                 :            : 
     815                 :         48 :       printf ("\n%s:\n\n", fname);
     816                 :            :     }
     817                 :            : 
     818                 :        524 :   process_elf_file (dwflmod, a->fd);
     819                 :            : 
     820                 :        524 :   return DWARF_CB_OK;
     821                 :            : }
     822                 :            : 
     823                 :            : /* Stub libdwfl callback, only the ELF handle already open is ever used.
     824                 :            :    Only used for finding the alternate debug file if the Dwarf comes from
     825                 :            :    the main file.  We are not interested in separate debuginfo.  */
     826                 :            : static int
     827                 :        176 : find_no_debuginfo (Dwfl_Module *mod,
     828                 :            :                    void **userdata,
     829                 :            :                    const char *modname,
     830                 :            :                    Dwarf_Addr base,
     831                 :            :                    const char *file_name,
     832                 :            :                    const char *debuglink_file,
     833                 :            :                    GElf_Word debuglink_crc,
     834                 :            :                    char **debuginfo_file_name)
     835                 :            : {
     836                 :        176 :   Dwarf_Addr dwbias;
     837                 :        176 :   dwfl_module_info (mod, NULL, NULL, NULL, &dwbias, NULL, NULL, NULL);
     838                 :            : 
     839                 :            :   /* We are only interested if the Dwarf has been setup on the main
     840                 :            :      elf file but is only missing the alternate debug link.  If dwbias
     841                 :            :      hasn't even been setup, this is searching for separate debuginfo
     842                 :            :      for the main elf.  We don't care in that case.  */
     843         [ +  + ]:        176 :   if (dwbias == (Dwarf_Addr) -1)
     844                 :            :     return -1;
     845                 :            : 
     846                 :         22 :   return dwfl_standard_find_debuginfo (mod, userdata, modname, base,
     847                 :            :                                        file_name, debuglink_file,
     848                 :            :                                        debuglink_crc, debuginfo_file_name);
     849                 :            : }
     850                 :            : 
     851                 :            : static Dwfl *
     852                 :        533 : create_dwfl (int fd, const char *fname)
     853                 :            : {
     854                 :            :   /* Duplicate an fd for dwfl_report_offline to swallow.  */
     855                 :        533 :   int dwfl_fd = dup (fd);
     856         [ -  + ]:        533 :   if (unlikely (dwfl_fd < 0))
     857                 :          0 :     error_exit (errno, "dup");
     858                 :            : 
     859                 :            :   /* Use libdwfl in a trivial way to open the libdw handle for us.
     860                 :            :      This takes care of applying relocations to DWARF data in ET_REL files.  */
     861                 :        533 :   static const Dwfl_Callbacks callbacks =
     862                 :            :     {
     863                 :            :       .section_address = dwfl_offline_section_address,
     864                 :            :       .find_debuginfo = find_no_debuginfo
     865                 :            :     };
     866                 :        533 :   Dwfl *dwfl = dwfl_begin (&callbacks);
     867         [ +  - ]:        533 :   if (likely (dwfl != NULL))
     868                 :            :     /* Let 0 be the logical address of the file (or first in archive).  */
     869                 :        533 :     dwfl->offline_next_address = 0;
     870         [ -  + ]:        533 :   if (dwfl_report_offline (dwfl, fname, fname, dwfl_fd) == NULL)
     871                 :            :     {
     872                 :          0 :       struct stat st;
     873         [ #  # ]:          0 :       if (fstat (dwfl_fd, &st) != 0)
     874                 :          0 :         error (0, errno, _("cannot stat input file"));
     875         [ #  # ]:          0 :       else if (unlikely (st.st_size == 0))
     876                 :          0 :         error (0, 0, _("input file is empty"));
     877                 :            :       else
     878                 :          0 :         error (0, 0, _("failed reading '%s': %s"),
     879                 :            :                fname, dwfl_errmsg (-1));
     880                 :          0 :       close (dwfl_fd);          /* Consumed on success, not on failure.  */
     881                 :          0 :       dwfl = NULL;
     882                 :            :     }
     883                 :            :   else
     884                 :        533 :     dwfl_report_end (dwfl, NULL, NULL);
     885                 :            : 
     886                 :        533 :   return dwfl;
     887                 :            : }
     888                 :            : 
     889                 :            : /* Process one input file.  */
     890                 :            : static void
     891                 :        526 : process_file (int fd, const char *fname, bool only_one)
     892                 :            : {
     893         [ +  + ]:        526 :   if (print_archive_index)
     894                 :          2 :     check_archive_index (fd, fname, only_one);
     895                 :            : 
     896         [ +  + ]:        526 :   if (!any_control_option)
     897                 :            :     return;
     898                 :            : 
     899         [ +  + ]:        524 :   if (elf_input_section != NULL)
     900                 :            :     {
     901                 :            :       /* Replace fname and fd with section content. */
     902                 :          5 :       char *fnname = alloca (strlen (fname) + strlen (elf_input_section) + 2);
     903                 :          5 :       sprintf (fnname, "%s:%s", fname, elf_input_section);
     904                 :          5 :       fd = open_input_section (fd);
     905         [ -  + ]:          5 :       if (fd == -1)
     906                 :            :         {
     907                 :          0 :           error (0, 0, _("No such section '%s' in '%s'"),
     908                 :            :                  elf_input_section, fname);
     909                 :          0 :           return;
     910                 :            :         }
     911                 :            :       fname = fnname;
     912                 :            :     }
     913                 :            : 
     914                 :        524 :   Dwfl *dwfl = create_dwfl (fd, fname);
     915         [ +  - ]:        524 :   if (dwfl != NULL)
     916                 :            :     {
     917         [ +  + ]:        524 :       if (only_one)
     918                 :            :         {
     919                 :            :           /* Clear ONLY_ONE if we have multiple modules, from an archive.  */
     920                 :        476 :           bool seen = false;
     921                 :        476 :           only_one = dwfl_getmodules (dwfl, &count_dwflmod, &seen, 0) == 0;
     922                 :            :         }
     923                 :            : 
     924                 :            :       /* Process the one or more modules gleaned from this file.  */
     925                 :        524 :       struct process_dwflmod_args a = { .fd = fd, .only_one = only_one };
     926                 :        524 :       dwfl_getmodules (dwfl, &process_dwflmod, &a, 0);
     927                 :            :     }
     928                 :            :   /* Terrible hack for hooking unrelated skeleton/split compile units,
     929                 :            :      see __libdw_link_skel_split in print_debug.  */
     930         [ +  - ]:        524 :   if (! do_not_close_dwfl)
     931                 :        524 :     dwfl_end (dwfl);
     932                 :            : 
     933                 :            :   /* Need to close the replaced fd if we created it.  Caller takes
     934                 :            :      care of original.  */
     935         [ +  + ]:        524 :   if (elf_input_section != NULL)
     936                 :          5 :     close (fd);
     937                 :            : }
     938                 :            : 
     939                 :            : /* Check whether there are any compressed sections in the ELF file.  */
     940                 :            : static bool
     941                 :        267 : elf_contains_chdrs (Elf *elf)
     942                 :            : {
     943                 :        267 :   Elf_Scn *scn = NULL;
     944         [ +  + ]:     792785 :   while ((scn = elf_nextscn (elf, scn)) != NULL)
     945                 :            :     {
     946                 :     792575 :       GElf_Shdr shdr_mem;
     947                 :     792575 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
     948   [ +  -  +  + ]:     792575 :       if (shdr != NULL && (shdr->sh_flags & SHF_COMPRESSED) != 0)
     949                 :         57 :         return true;
     950                 :            :     }
     951                 :            :   return false;
     952                 :            : }
     953                 :            : 
     954                 :            : /* Process one ELF file.  */
     955                 :            : static void
     956                 :        524 : process_elf_file (Dwfl_Module *dwflmod, int fd)
     957                 :            : {
     958                 :        524 :   GElf_Addr dwflbias;
     959                 :        524 :   Elf *elf = dwfl_module_getelf (dwflmod, &dwflbias);
     960                 :            : 
     961                 :        524 :   GElf_Ehdr ehdr_mem;
     962                 :        524 :   GElf_Ehdr *ehdr = gelf_getehdr (elf, &ehdr_mem);
     963                 :            : 
     964         [ -  + ]:        524 :   if (ehdr == NULL)
     965                 :            :     {
     966                 :          0 :       error (0, 0, _("cannot read ELF header: %s"), elf_errmsg (-1));
     967                 :          0 :       return;
     968                 :            :     }
     969                 :            : 
     970                 :        524 :   Ebl *ebl = ebl_openbackend (elf);
     971         [ -  + ]:        524 :   if (unlikely (ebl == NULL))
     972                 :            :     {
     973                 :          0 :     ebl_error:
     974                 :          0 :       error (0, errno, _("cannot create EBL handle"));
     975                 :          0 :       return;
     976                 :            :     }
     977                 :            : 
     978                 :            :   /* Determine the number of sections.  */
     979         [ -  + ]:        524 :   if (unlikely (elf_getshdrnum (ebl->elf, &shnum) < 0))
     980                 :          0 :     error_exit (0, _("cannot determine number of sections: %s"),
     981                 :            :                 elf_errmsg (-1));
     982                 :            : 
     983                 :            :   /* Determine the number of phdrs.  */
     984         [ -  + ]:        524 :   if (unlikely (elf_getphdrnum (ebl->elf, &phnum) < 0))
     985                 :          0 :     error_exit (0, _("cannot determine number of program headers: %s"),
     986                 :            :                 elf_errmsg (-1));
     987                 :            : 
     988                 :            :   /* For an ET_REL file, libdwfl has adjusted the in-core shdrs and
     989                 :            :      may have applied relocation to some sections.  If there are any
     990                 :            :      compressed sections, any pass (or libdw/libdwfl) might have
     991                 :            :      uncompressed them.  So we need to get a fresh Elf handle on the
     992                 :            :      file to display those.  */
     993                 :       1048 :   bool print_unchanged = ((print_section_header
     994         [ +  + ]:        219 :                            || print_relocations
     995         [ +  + ]:        218 :                            || dump_data_sections != NULL
     996         [ +  + ]:        212 :                            || print_notes)
     997   [ +  +  +  + ]:        554 :                           && (ehdr->e_type == ET_REL
     998         [ +  + ]:        267 :                               || elf_contains_chdrs (ebl->elf)));
     999                 :            : 
    1000                 :        524 :   Elf *pure_elf = NULL;
    1001                 :        524 :   Ebl *pure_ebl = ebl;
    1002         [ +  + ]:        524 :   if (print_unchanged)
    1003                 :            :     {
    1004                 :            :       /* Read the file afresh.  */
    1005                 :        125 :       off_t aroff = elf_getaroff (elf);
    1006                 :        125 :       pure_elf = dwelf_elf_begin (fd);
    1007         [ -  + ]:        125 :       if (aroff > 0)
    1008                 :            :         {
    1009                 :            :           /* Archive member.  */
    1010                 :          0 :           (void) elf_rand (pure_elf, aroff);
    1011                 :          0 :           Elf *armem = elf_begin (-1, ELF_C_READ_MMAP, pure_elf);
    1012                 :          0 :           elf_end (pure_elf);
    1013                 :          0 :           pure_elf = armem;
    1014                 :            :         }
    1015         [ -  + ]:        125 :       if (pure_elf == NULL)
    1016                 :            :         {
    1017                 :          0 :           error (0, 0, _("cannot read ELF: %s"), elf_errmsg (-1));
    1018                 :          0 :           return;
    1019                 :            :         }
    1020                 :        125 :       pure_ebl = ebl_openbackend (pure_elf);
    1021         [ -  + ]:        125 :       if (pure_ebl == NULL)
    1022                 :          0 :         goto ebl_error;
    1023                 :            :     }
    1024                 :            : 
    1025                 :        524 :   bool symtab_printed = false;
    1026                 :            : 
    1027         [ +  + ]:        524 :   if (print_file_header)
    1028                 :        145 :     print_ehdr (ebl, ehdr);
    1029         [ +  + ]:        524 :   if (print_section_header)
    1030                 :        305 :     print_shdr (pure_ebl, ehdr);
    1031         [ +  + ]:        524 :   if (print_program_header)
    1032                 :        144 :     print_phdr (ebl, ehdr);
    1033         [ +  + ]:        524 :   if (print_section_groups)
    1034                 :        151 :     print_scngrp (ebl);
    1035         [ +  + ]:        524 :   if (print_dynamic_table)
    1036                 :        145 :     print_dynamic (ebl);
    1037         [ +  + ]:        524 :   if (print_relocations)
    1038                 :        143 :     print_relocs (pure_ebl, ehdr);
    1039         [ +  + ]:        524 :   if (print_histogram)
    1040                 :        142 :     handle_hash (ebl);
    1041   [ +  +  +  + ]:        524 :   if (print_symbol_table || print_dynsym_table)
    1042                 :        160 :     symtab_printed |= print_symtab (ebl, SHT_DYNSYM);
    1043         [ +  + ]:        524 :   if (print_version_info)
    1044                 :        142 :     print_verinfo (ebl);
    1045         [ +  + ]:        524 :   if (print_symbol_table)
    1046                 :        159 :     symtab_printed |= print_symtab (ebl, SHT_SYMTAB);
    1047                 :            : 
    1048   [ +  +  +  + ]:        524 :   if ((print_symbol_table || print_dynsym_table)
    1049   [ +  +  +  + ]:        160 :       && !symtab_printed && symbol_table_section != NULL)
    1050                 :          1 :     printf ("WARNING: %s: '%s'\n", _("cannot find section"),
    1051                 :            :         symbol_table_section);
    1052                 :            : 
    1053         [ +  + ]:        524 :   if (print_arch)
    1054                 :        146 :     print_liblist (ebl);
    1055         [ +  + ]:        524 :   if (print_arch)
    1056                 :        146 :     print_attributes (ebl, ehdr);
    1057         [ +  + ]:        524 :   if (dump_data_sections != NULL)
    1058                 :          6 :     dump_data (pure_ebl);
    1059         [ +  + ]:        524 :   if (string_sections != NULL)
    1060                 :        143 :     dump_strings (ebl);
    1061         [ +  + ]:        524 :   if ((print_debug_sections | implicit_debug_sections) != 0)
    1062                 :        293 :     print_debug (dwflmod, ebl, ehdr);
    1063         [ +  + ]:        524 :   if (print_notes)
    1064                 :        165 :     handle_notes (pure_ebl, ehdr);
    1065         [ -  + ]:        524 :   if (print_string_sections)
    1066                 :          0 :     print_strings (ebl);
    1067                 :            : 
    1068         [ +  + ]:        524 :   if (pure_ebl != ebl)
    1069                 :            :     {
    1070                 :        125 :       ebl_closebackend (ebl);
    1071                 :        125 :       ebl_closebackend (pure_ebl);
    1072                 :        125 :       elf_end (pure_elf);
    1073                 :            :     }
    1074                 :            :   else
    1075                 :        399 :     ebl_closebackend (ebl);
    1076                 :            : }
    1077                 :            : 
    1078                 :            : 
    1079                 :            : /* Print file type.  */
    1080                 :            : static void
    1081                 :        145 : print_file_type (unsigned short int e_type)
    1082                 :            : {
    1083         [ +  - ]:        145 :   if (likely (e_type <= ET_CORE))
    1084                 :            :     {
    1085                 :        145 :       static const char *const knowntypes[] =
    1086                 :            :       {
    1087                 :            :         N_("NONE (None)"),
    1088                 :            :         N_("REL (Relocatable file)"),
    1089                 :            :         N_("EXEC (Executable file)"),
    1090                 :            :         N_("DYN (Shared object file)"),
    1091                 :            :         N_("CORE (Core file)")
    1092                 :            :       };
    1093                 :        145 :       puts (_(knowntypes[e_type]));
    1094                 :            :     }
    1095         [ #  # ]:          0 :   else if (e_type >= ET_LOOS && e_type <= ET_HIOS)
    1096                 :          0 :     printf (_("OS Specific: (%x)\n"),  e_type);
    1097         [ #  # ]:          0 :   else if (e_type >= ET_LOPROC /* && e_type <= ET_HIPROC always true */)
    1098                 :          0 :     printf (_("Processor Specific: (%x)\n"),  e_type);
    1099                 :            :   else
    1100                 :          0 :     puts ("???");
    1101                 :        145 : }
    1102                 :            : 
    1103                 :            : 
    1104                 :            : /* Print ELF header.  */
    1105                 :            : static void
    1106                 :        145 : print_ehdr (Ebl *ebl, GElf_Ehdr *ehdr)
    1107                 :            : {
    1108                 :        145 :   fputs_unlocked (_("ELF Header:\n  Magic:  "), stdout);
    1109         [ +  + ]:       2465 :   for (size_t cnt = 0; cnt < EI_NIDENT; ++cnt)
    1110                 :       2320 :     printf (" %02hhx", ehdr->e_ident[cnt]);
    1111                 :            : 
    1112                 :        145 :   printf (_("\n  Class:                             %s\n"),
    1113         [ +  + ]:        145 :           ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? "ELF32"
    1114                 :            :           : ehdr->e_ident[EI_CLASS] == ELFCLASS64 ? "ELF64"
    1115         [ -  + ]:        117 :           : "\?\?\?");
    1116                 :            : 
    1117                 :        145 :   printf (_("  Data:                              %s\n"),
    1118         [ +  + ]:        145 :           ehdr->e_ident[EI_DATA] == ELFDATA2LSB
    1119                 :            :           ? "2's complement, little endian"
    1120                 :            :           : ehdr->e_ident[EI_DATA] == ELFDATA2MSB
    1121         [ -  + ]:         12 :           ? "2's complement, big endian" : "\?\?\?");
    1122                 :            : 
    1123                 :        435 :   printf (_("  Ident Version:                     %hhd %s\n"),
    1124                 :        145 :           ehdr->e_ident[EI_VERSION],
    1125         [ +  - ]:        145 :           ehdr->e_ident[EI_VERSION] == EV_CURRENT ? _("(current)")
    1126                 :            :           : "(\?\?\?)");
    1127                 :            : 
    1128                 :        145 :   char buf[512];
    1129                 :        145 :   printf (_("  OS/ABI:                            %s\n"),
    1130                 :        145 :           ebl_osabi_name (ebl, ehdr->e_ident[EI_OSABI], buf, sizeof (buf)));
    1131                 :            : 
    1132                 :        290 :   printf (_("  ABI Version:                       %hhd\n"),
    1133                 :        145 :           ehdr->e_ident[EI_ABIVERSION]);
    1134                 :            : 
    1135                 :        145 :   fputs_unlocked (_("  Type:                              "), stdout);
    1136                 :        145 :   print_file_type (ehdr->e_type);
    1137                 :            : 
    1138                 :        145 :   const char *machine = dwelf_elf_e_machine_string (ehdr->e_machine);
    1139         [ +  - ]:        145 :   if (machine != NULL)
    1140                 :        145 :     printf (_("  Machine:                           %s\n"), machine);
    1141                 :            :   else
    1142                 :        145 :     printf (_("  Machine:                           <unknown>: 0x%x\n"),
    1143                 :          0 :             ehdr->e_machine);
    1144                 :            : 
    1145                 :        145 :   printf (_("  Version:                           %d %s\n"),
    1146                 :            :           ehdr->e_version,
    1147         [ +  - ]:        145 :           ehdr->e_version  == EV_CURRENT ? _("(current)") : "(\?\?\?)");
    1148                 :            : 
    1149                 :        145 :   printf (_("  Entry point address:               %#" PRIx64 "\n"),
    1150                 :            :           ehdr->e_entry);
    1151                 :            : 
    1152                 :        145 :   printf (_("  Start of program headers:          %" PRId64 " %s\n"),
    1153                 :            :           ehdr->e_phoff, _("(bytes into file)"));
    1154                 :            : 
    1155                 :        145 :   printf (_("  Start of section headers:          %" PRId64 " %s\n"),
    1156                 :            :           ehdr->e_shoff, _("(bytes into file)"));
    1157                 :            : 
    1158                 :        145 :   printf (_("  Flags:                             %s\n"),
    1159                 :            :           ebl_machine_flag_name (ebl, ehdr->e_flags, buf, sizeof (buf)));
    1160                 :            : 
    1161                 :        290 :   printf (_("  Size of this header:               %" PRId16 " %s\n"),
    1162                 :        145 :           ehdr->e_ehsize, _("(bytes)"));
    1163                 :            : 
    1164                 :        290 :   printf (_("  Size of program header entries:    %" PRId16 " %s\n"),
    1165                 :        145 :           ehdr->e_phentsize, _("(bytes)"));
    1166                 :            : 
    1167                 :        290 :   printf (_("  Number of program headers entries: %" PRId16),
    1168                 :        145 :           ehdr->e_phnum);
    1169         [ +  + ]:        145 :   if (ehdr->e_phnum == PN_XNUM)
    1170                 :            :     {
    1171                 :          1 :       GElf_Shdr shdr_mem;
    1172                 :          1 :       GElf_Shdr *shdr = gelf_getshdr (elf_getscn (ebl->elf, 0), &shdr_mem);
    1173         [ +  - ]:          1 :       if (shdr != NULL)
    1174                 :          1 :         printf (_(" (%" PRIu32 " in [0].sh_info)"),
    1175                 :          1 :                 (uint32_t) shdr->sh_info);
    1176                 :            :       else
    1177                 :          0 :         fputs_unlocked (_(" ([0] not available)"), stdout);
    1178                 :            :     }
    1179         [ -  + ]:        145 :   fputc_unlocked ('\n', stdout);
    1180                 :            : 
    1181                 :        290 :   printf (_("  Size of section header entries:    %" PRId16 " %s\n"),
    1182                 :        145 :           ehdr->e_shentsize, _("(bytes)"));
    1183                 :            : 
    1184                 :        290 :   printf (_("  Number of section headers entries: %" PRId16),
    1185                 :        145 :           ehdr->e_shnum);
    1186         [ -  + ]:        145 :   if (ehdr->e_shnum == 0)
    1187                 :            :     {
    1188                 :          0 :       GElf_Shdr shdr_mem;
    1189                 :          0 :       GElf_Shdr *shdr = gelf_getshdr (elf_getscn (ebl->elf, 0), &shdr_mem);
    1190         [ #  # ]:          0 :       if (shdr != NULL)
    1191                 :          0 :         printf (_(" (%" PRIu32 " in [0].sh_size)"),
    1192                 :          0 :                 (uint32_t) shdr->sh_size);
    1193                 :            :       else
    1194                 :          0 :         fputs_unlocked (_(" ([0] not available)"), stdout);
    1195                 :            :     }
    1196         [ -  + ]:        145 :   fputc_unlocked ('\n', stdout);
    1197                 :            : 
    1198         [ -  + ]:        145 :   if (unlikely (ehdr->e_shstrndx == SHN_XINDEX))
    1199                 :            :     {
    1200                 :          0 :       GElf_Shdr shdr_mem;
    1201                 :          0 :       GElf_Shdr *shdr = gelf_getshdr (elf_getscn (ebl->elf, 0), &shdr_mem);
    1202         [ #  # ]:          0 :       if (shdr != NULL)
    1203                 :            :         /* We managed to get the zeroth section.  */
    1204                 :          0 :         snprintf (buf, sizeof (buf), _(" (%" PRIu32 " in [0].sh_link)"),
    1205                 :          0 :                   (uint32_t) shdr->sh_link);
    1206                 :            :       else
    1207                 :            :         {
    1208                 :          0 :           strncpy (buf, _(" ([0] not available)"), sizeof (buf) - 1);
    1209                 :          0 :           buf[sizeof (buf) - 1] = '\0';
    1210                 :            :         }
    1211                 :            : 
    1212                 :          0 :       printf (_("  Section header string table index: XINDEX%s\n\n"),
    1213                 :            :               buf);
    1214                 :            :     }
    1215                 :            :   else
    1216                 :        145 :     printf (_("  Section header string table index: %" PRId16 "\n\n"),
    1217                 :            :             ehdr->e_shstrndx);
    1218                 :        145 : }
    1219                 :            : 
    1220                 :            : 
    1221                 :            : static const char *
    1222                 :      39964 : get_visibility_type (int value)
    1223                 :            : {
    1224   [ -  +  -  -  :      39964 :   switch (value)
                      + ]
    1225                 :            :     {
    1226                 :            :     case STV_DEFAULT:
    1227                 :            :       return "DEFAULT";
    1228                 :          0 :     case STV_INTERNAL:
    1229                 :          0 :       return "INTERNAL";
    1230                 :        534 :     case STV_HIDDEN:
    1231                 :        534 :       return "HIDDEN";
    1232                 :          0 :     case STV_PROTECTED:
    1233                 :          0 :       return "PROTECTED";
    1234                 :          0 :     default:
    1235                 :          0 :       return "???";
    1236                 :            :     }
    1237                 :            : }
    1238                 :            : 
    1239                 :            : static const char *
    1240                 :        192 : elf_ch_type_name (unsigned int code)
    1241                 :            : {
    1242                 :        192 :   switch (code)
    1243                 :            :     {
    1244                 :            :     case 0:
    1245                 :            :       return "NONE";
    1246                 :         12 :     case ELFCOMPRESS_ZLIB:
    1247                 :         12 :       return "ZLIB";
    1248                 :        180 :     case ELFCOMPRESS_ZSTD:
    1249                 :        180 :       return "ZSTD";
    1250                 :          0 :     default:
    1251                 :          0 :       return "UNKNOWN";
    1252                 :            :     }
    1253                 :            : }
    1254                 :            : 
    1255                 :            : /* Print the section headers.  */
    1256                 :            : static void
    1257                 :        305 : print_shdr (Ebl *ebl, GElf_Ehdr *ehdr)
    1258                 :            : {
    1259                 :        305 :   size_t cnt;
    1260                 :        305 :   size_t shstrndx;
    1261                 :            : 
    1262         [ +  + ]:        305 :   if (! print_file_header)
    1263                 :            :     {
    1264                 :        163 :       size_t sections;
    1265         [ -  + ]:        163 :       if (unlikely (elf_getshdrnum (ebl->elf, &sections) < 0))
    1266                 :          0 :         error_exit (0, _("cannot get number of sections: %s"),
    1267                 :            :                     elf_errmsg (-1));
    1268                 :            : 
    1269                 :        163 :       printf (_("\
    1270                 :            : There are %zd section headers, starting at offset %#" PRIx64 ":\n\
    1271                 :            : \n"),
    1272                 :            :               sections, ehdr->e_shoff);
    1273                 :            :     }
    1274                 :            : 
    1275                 :            :   /* Get the section header string table index.  */
    1276         [ -  + ]:        305 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    1277                 :          0 :     error_exit (0, _("cannot get section header string table index: %s"),
    1278                 :            :                 elf_errmsg (-1));
    1279                 :            : 
    1280                 :        305 :   puts (_("Section Headers:"));
    1281                 :            : 
    1282         [ +  + ]:        305 :   if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
    1283                 :        109 :     puts (_("[Nr] Name                 Type         Addr     Off    Size   ES Flags Lk Inf Al"));
    1284                 :            :   else
    1285                 :        196 :     puts (_("[Nr] Name                 Type         Addr             Off      Size     ES Flags Lk Inf Al"));
    1286                 :            : 
    1287         [ +  + ]:        305 :   if (print_decompress)
    1288                 :            :     {
    1289         [ +  + ]:         56 :       if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
    1290                 :         28 :         puts (_("     [Compression  Size   Al]"));
    1291                 :            :       else
    1292                 :         28 :         puts (_("     [Compression  Size     Al]"));
    1293                 :            :     }
    1294                 :            : 
    1295         [ +  + ]:    1580853 :   for (cnt = 0; cnt < shnum; ++cnt)
    1296                 :            :     {
    1297                 :    1580548 :       Elf_Scn *scn = elf_getscn (ebl->elf, cnt);
    1298                 :            : 
    1299         [ -  + ]:    1580548 :       if (unlikely (scn == NULL))
    1300                 :          0 :         error_exit (0, _("cannot get section: %s"),
    1301                 :            :                     elf_errmsg (-1));
    1302                 :            : 
    1303                 :            :       /* Get the section header.  */
    1304                 :    1580548 :       GElf_Shdr shdr_mem;
    1305                 :    1580548 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    1306         [ -  + ]:    1580548 :       if (unlikely (shdr == NULL))
    1307                 :          0 :         error_exit (0, _("cannot get section header: %s"),
    1308                 :            :                     elf_errmsg (-1));
    1309                 :            : 
    1310                 :    1580548 :       char flagbuf[20];
    1311                 :    1580548 :       char *cp = flagbuf;
    1312         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_WRITE)
    1313                 :       1681 :         *cp++ = 'W';
    1314         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_ALLOC)
    1315                 :       5049 :         *cp++ = 'A';
    1316         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_EXECINSTR)
    1317                 :        927 :         *cp++ = 'X';
    1318         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_MERGE)
    1319                 :        264 :         *cp++ = 'M';
    1320         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_STRINGS)
    1321                 :        246 :         *cp++ = 'S';
    1322         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_INFO_LINK)
    1323                 :        213 :         *cp++ = 'I';
    1324         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_LINK_ORDER)
    1325                 :          2 :         *cp++ = 'L';
    1326         [ -  + ]:    1580548 :       if (shdr->sh_flags & SHF_OS_NONCONFORMING)
    1327                 :          0 :         *cp++ = 'N';
    1328         [ -  + ]:    1580548 :       if (shdr->sh_flags & SHF_GROUP)
    1329                 :          0 :         *cp++ = 'G';
    1330         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_TLS)
    1331                 :         19 :         *cp++ = 'T';
    1332         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_COMPRESSED)
    1333                 :        207 :         *cp++ = 'C';
    1334         [ -  + ]:    1580548 :       if (shdr->sh_flags & SHF_ORDERED)
    1335                 :          0 :         *cp++ = 'O';
    1336         [ -  + ]:    1580548 :       if (shdr->sh_flags & SHF_EXCLUDE)
    1337                 :          0 :         *cp++ = 'E';
    1338         [ +  + ]:    1580548 :       if (shdr->sh_flags & SHF_GNU_RETAIN)
    1339                 :          1 :         *cp++ = 'R';
    1340                 :    1580548 :       *cp = '\0';
    1341                 :            : 
    1342                 :    1580548 :       const char *sname;
    1343                 :    1580548 :       char buf[128];
    1344         [ -  + ]:    1580548 :       sname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name) ?: "<corrupt>";
    1345         [ +  + ]:    3161096 :       printf ("[%2zu] %-20s %-12s %0*" PRIx64 " %0*" PRIx64 " %0*" PRIx64
    1346                 :            :               " %2" PRId64 " %-5s %2" PRId32 " %3" PRId32
    1347                 :            :               " %2" PRId64 "\n",
    1348                 :            :               cnt, sname,
    1349                 :    1580548 :               ebl_section_type_name (ebl, shdr->sh_type, buf, sizeof (buf)),
    1350                 :            :               ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, shdr->sh_addr,
    1351                 :            :               ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8, shdr->sh_offset,
    1352         [ +  + ]:    1580548 :               ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8, shdr->sh_size,
    1353                 :            :               shdr->sh_entsize, flagbuf, shdr->sh_link, shdr->sh_info,
    1354                 :            :               shdr->sh_addralign);
    1355                 :            : 
    1356         [ +  + ]:    1580548 :       if (print_decompress)
    1357                 :            :         {
    1358         [ +  + ]:        940 :           if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
    1359                 :            :             {
    1360                 :        192 :               GElf_Chdr chdr;
    1361         [ +  - ]:        192 :               if (gelf_getchdr (scn, &chdr) != NULL)
    1362   [ +  +  -  - ]:        384 :                 printf ("     [ELF %s (%" PRId32 ") %0*" PRIx64
    1363                 :            :                         " %2" PRId64 "]\n",
    1364                 :            :                         elf_ch_type_name (chdr.ch_type),
    1365                 :            :                         chdr.ch_type,
    1366         [ +  + ]:        192 :                         ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8,
    1367                 :            :                         chdr.ch_size, chdr.ch_addralign);
    1368                 :            :               else
    1369                 :        192 :                 error (0, 0,
    1370                 :          0 :                        _("bad compression header for section %zd: %s"),
    1371                 :            :                        elf_ndxscn (scn), elf_errmsg (-1));
    1372                 :            :             }
    1373         [ +  + ]:        748 :           else if (startswith (sname, ".zdebug"))
    1374                 :            :             {
    1375                 :         12 :               ssize_t size;
    1376         [ +  - ]:         12 :               if ((size = dwelf_scn_gnu_compressed_size (scn)) >= 0)
    1377                 :    1580560 :                 printf ("     [GNU ZLIB     %0*zx   ]\n",
    1378         [ +  + ]:         12 :                         ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 6 : 8, size);
    1379                 :            :               else
    1380                 :    1580548 :                 error (0, 0,
    1381                 :          0 :                        _("bad gnu compressed size for section %zd: %s"),
    1382                 :            :                        elf_ndxscn (scn), elf_errmsg (-1));
    1383                 :            :             }
    1384                 :            :         }
    1385                 :            :     }
    1386                 :            : 
    1387         [ -  + ]:        305 :   fputc_unlocked ('\n', stdout);
    1388                 :        305 : }
    1389                 :            : 
    1390                 :            : 
    1391                 :            : /* Print the program header.  */
    1392                 :            : static void
    1393                 :        144 : print_phdr (Ebl *ebl, GElf_Ehdr *ehdr)
    1394                 :            : {
    1395         [ +  + ]:        144 :   if (phnum == 0)
    1396                 :            :     /* No program header, this is OK in relocatable objects.  */
    1397                 :         36 :     return;
    1398                 :            : 
    1399                 :        108 :   puts (_("Program Headers:"));
    1400         [ +  + ]:        108 :   if (ehdr->e_ident[EI_CLASS] == ELFCLASS32)
    1401                 :         16 :     puts (_("\
    1402                 :            :   Type           Offset   VirtAddr   PhysAddr   FileSiz  MemSiz   Flg Align"));
    1403                 :            :   else
    1404                 :         92 :     puts (_("\
    1405                 :            :   Type           Offset   VirtAddr           PhysAddr           FileSiz  MemSiz   Flg Align"));
    1406                 :            : 
    1407                 :            :   /* Process all program headers.  */
    1408                 :            :   bool has_relro = false;
    1409                 :            :   GElf_Addr relro_from = 0;
    1410                 :            :   GElf_Addr relro_to = 0;
    1411         [ +  + ]:       1189 :   for (size_t cnt = 0; cnt < phnum; ++cnt)
    1412                 :            :     {
    1413                 :       1081 :       char buf[128];
    1414                 :       1081 :       GElf_Phdr mem;
    1415                 :       1081 :       GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &mem);
    1416                 :            : 
    1417                 :            :       /* If for some reason the header cannot be returned show this.  */
    1418         [ -  + ]:       1081 :       if (unlikely (phdr == NULL))
    1419                 :            :         {
    1420                 :          0 :           puts ("  ???");
    1421                 :          0 :           continue;
    1422                 :            :         }
    1423                 :            : 
    1424                 :       1081 :       printf ("  %-14s 0x%06" PRIx64 " 0x%0*" PRIx64 " 0x%0*" PRIx64
    1425                 :            :               " 0x%06" PRIx64 " 0x%06" PRIx64 " %c%c%c 0x%" PRIx64 "\n",
    1426                 :       1081 :               ebl_segment_type_name (ebl, phdr->p_type, buf, sizeof (buf)),
    1427                 :            :               phdr->p_offset,
    1428                 :            :               ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, phdr->p_vaddr,
    1429         [ +  + ]:       1081 :               ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 8 : 16, phdr->p_paddr,
    1430                 :            :               phdr->p_filesz,
    1431                 :            :               phdr->p_memsz,
    1432         [ -  + ]:       1081 :               phdr->p_flags & PF_R ? 'R' : ' ',
    1433         [ +  + ]:       1081 :               phdr->p_flags & PF_W ? 'W' : ' ',
    1434         [ +  + ]:       1081 :               phdr->p_flags & PF_X ? 'E' : ' ',
    1435                 :            :               phdr->p_align);
    1436                 :            : 
    1437         [ +  + ]:       1081 :       if (phdr->p_type == PT_INTERP)
    1438                 :            :         {
    1439                 :            :           /* If we are sure the file offset is valid then we can show
    1440                 :            :              the user the name of the interpreter.  We check whether
    1441                 :            :              there is a section at the file offset.  Normally there
    1442                 :            :              would be a section called ".interp".  But in separate
    1443                 :            :              .debug files it is a NOBITS section (and so doesn't match
    1444                 :            :              with gelf_offscn).  Which probably means the offset is
    1445                 :            :              not valid another reason could be because the ELF file
    1446                 :            :              just doesn't contain any section headers, in that case
    1447                 :            :              just play it safe and don't display anything.  */
    1448                 :            : 
    1449                 :        106 :           Elf_Scn *scn = gelf_offscn (ebl->elf, phdr->p_offset);
    1450                 :        106 :           GElf_Shdr shdr_mem;
    1451                 :        106 :           GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    1452                 :            : 
    1453                 :        106 :           size_t maxsize;
    1454                 :        106 :           char *filedata = elf_rawfile (ebl->elf, &maxsize);
    1455                 :            : 
    1456   [ +  -  +  + ]:        106 :           if (shdr != NULL && shdr->sh_type == SHT_PROGBITS
    1457   [ +  -  +  - ]:         79 :               && filedata != NULL && phdr->p_offset < maxsize
    1458         [ +  - ]:         79 :               && phdr->p_filesz <= maxsize - phdr->p_offset
    1459         [ +  - ]:         79 :               && memchr (filedata + phdr->p_offset, '\0',
    1460                 :            :                          phdr->p_filesz) != NULL)
    1461                 :        106 :             printf (_("\t[Requesting program interpreter: %s]\n"),
    1462                 :            :                     filedata + phdr->p_offset);
    1463                 :            :         }
    1464         [ +  + ]:        975 :       else if (phdr->p_type == PT_GNU_RELRO)
    1465                 :            :         {
    1466                 :         93 :           has_relro = true;
    1467                 :         93 :           relro_from = phdr->p_vaddr;
    1468                 :         93 :           relro_to = relro_from + phdr->p_memsz;
    1469                 :            :         }
    1470                 :            :     }
    1471                 :            : 
    1472                 :        108 :   size_t sections;
    1473         [ -  + ]:        108 :   if (unlikely (elf_getshdrnum (ebl->elf, &sections) < 0))
    1474                 :          0 :     error_exit (0, _("cannot get number of sections: %s"),
    1475                 :            :                 elf_errmsg (-1));
    1476                 :            : 
    1477         [ +  - ]:        108 :   if (sections == 0)
    1478                 :            :     /* No sections in the file.  Punt.  */
    1479                 :            :     return;
    1480                 :            : 
    1481                 :            :   /* Get the section header string table index.  */
    1482                 :        108 :   size_t shstrndx;
    1483         [ -  + ]:        108 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    1484                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    1485                 :            : 
    1486                 :        108 :   puts (_("\n Section to Segment mapping:\n  Segment Sections..."));
    1487                 :            : 
    1488         [ +  + ]:       1189 :   for (size_t cnt = 0; cnt < phnum; ++cnt)
    1489                 :            :     {
    1490                 :            :       /* Print the segment number.  */
    1491                 :       1081 :       printf ("   %2.2zu     ", cnt);
    1492                 :            : 
    1493                 :       1081 :       GElf_Phdr phdr_mem;
    1494                 :       1081 :       GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &phdr_mem);
    1495                 :            :       /* This must not happen.  */
    1496         [ -  + ]:       1081 :       if (unlikely (phdr == NULL))
    1497                 :          0 :         error_exit (0, _("cannot get program header: %s"),
    1498                 :            :                     elf_errmsg (-1));
    1499                 :            : 
    1500                 :            :       /* Iterate over the sections.  */
    1501                 :            :       bool in_relro = false;
    1502                 :            :       bool in_ro = false;
    1503         [ +  + ]:      34658 :       for (size_t inner = 1; inner < shnum; ++inner)
    1504                 :            :         {
    1505                 :      33577 :           Elf_Scn *scn = elf_getscn (ebl->elf, inner);
    1506                 :            :           /* This should not happen.  */
    1507         [ -  + ]:      33577 :           if (unlikely (scn == NULL))
    1508                 :          0 :             error_exit (0, _("cannot get section: %s"),
    1509                 :            :                         elf_errmsg (-1));
    1510                 :            : 
    1511                 :            :           /* Get the section header.  */
    1512                 :      33577 :           GElf_Shdr shdr_mem;
    1513                 :      33577 :           GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    1514         [ -  + ]:      33577 :           if (unlikely (shdr == NULL))
    1515                 :          0 :             error_exit (0, _("cannot get section header: %s"),
    1516                 :            :                         elf_errmsg (-1));
    1517                 :            : 
    1518         [ +  - ]:      33577 :           if (shdr->sh_size > 0
    1519                 :            :               /* Compare allocated sections by VMA, unallocated
    1520                 :            :                  sections by file offset.  */
    1521   [ +  +  +  + ]:      67154 :               && (shdr->sh_flags & SHF_ALLOC
    1522                 :      26778 :                   ? (shdr->sh_addr >= phdr->p_vaddr
    1523         [ +  + ]:      26778 :                      && (shdr->sh_addr + shdr->sh_size
    1524         [ +  + ]:      17871 :                          <= phdr->p_vaddr + phdr->p_memsz))
    1525                 :       6799 :                   : (shdr->sh_offset >= phdr->p_offset
    1526         [ +  + ]:       6799 :                      && (shdr->sh_offset + shdr->sh_size
    1527         [ +  + ]:       5828 :                          <= phdr->p_offset + phdr->p_filesz))))
    1528                 :            :             {
    1529         [ +  + ]:       3771 :               if (has_relro && !in_relro
    1530         [ +  + ]:       2508 :                   && shdr->sh_addr >= relro_from
    1531         [ +  + ]:        467 :                   && shdr->sh_addr + shdr->sh_size <= relro_to)
    1532                 :            :                 {
    1533                 :        290 :                   fputs_unlocked (" [RELRO:", stdout);
    1534                 :        290 :                   in_relro = true;
    1535                 :            :                 }
    1536   [ +  +  +  + ]:       3481 :               else if (has_relro && in_relro && shdr->sh_addr >= relro_to)
    1537                 :            :                 {
    1538                 :         93 :                   fputs_unlocked ("]", stdout);
    1539                 :         93 :                   in_relro =  false;
    1540                 :            :                 }
    1541         [ +  + ]:       3388 :               else if (has_relro && in_relro
    1542         [ -  + ]:        680 :                        && shdr->sh_addr + shdr->sh_size > relro_to)
    1543                 :          0 :                 fputs_unlocked ("] <RELRO:", stdout);
    1544         [ +  + ]:       3388 :               else if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0)
    1545                 :            :                 {
    1546         [ +  + ]:       1964 :                   if (!in_ro)
    1547                 :            :                     {
    1548                 :        222 :                       fputs_unlocked (" [RO:", stdout);
    1549                 :        222 :                       in_ro = true;
    1550                 :            :                     }
    1551                 :            :                 }
    1552                 :            :               else
    1553                 :            :                 {
    1554                 :            :                   /* Determine the segment this section is part of.  */
    1555                 :            :                   size_t cnt2;
    1556                 :            :                   GElf_Phdr phdr2_mem;
    1557                 :            :                   GElf_Phdr *phdr2 = NULL;
    1558         [ +  - ]:       6370 :                   for (cnt2 = 0; cnt2 < phnum; ++cnt2)
    1559                 :            :                     {
    1560                 :       6370 :                       phdr2 = gelf_getphdr (ebl->elf, cnt2, &phdr2_mem);
    1561                 :            : 
    1562   [ +  -  +  + ]:       6370 :                       if (phdr2 != NULL && phdr2->p_type == PT_LOAD
    1563         [ +  - ]:       3578 :                           && shdr->sh_addr >= phdr2->p_vaddr
    1564                 :       3578 :                           && (shdr->sh_addr + shdr->sh_size
    1565         [ +  + ]:       3578 :                               <= phdr2->p_vaddr + phdr2->p_memsz))
    1566                 :            :                         break;
    1567                 :            :                     }
    1568                 :            : 
    1569         [ +  - ]:       1424 :                   if (cnt2 < phnum)
    1570                 :            :                     {
    1571   [ +  +  +  + ]:       1424 :                       if ((phdr2->p_flags & PF_W) == 0 && !in_ro)
    1572                 :            :                         {
    1573                 :        325 :                           fputs_unlocked (" [RO:", stdout);
    1574                 :        325 :                           in_ro = true;
    1575                 :            :                         }
    1576   [ +  +  -  + ]:       1099 :                       else if ((phdr2->p_flags & PF_W) != 0 && in_ro)
    1577                 :            :                         {
    1578                 :          0 :                           fputs_unlocked ("]", stdout);
    1579                 :          0 :                           in_ro = false;
    1580                 :            :                         }
    1581                 :            :                     }
    1582                 :            :                 }
    1583                 :            : 
    1584                 :       3771 :               printf (" %s",
    1585                 :       3771 :                       elf_strptr (ebl->elf, shstrndx, shdr->sh_name));
    1586                 :            : 
    1587                 :            :               /* Signal that this section is only partially covered.  */
    1588         [ +  + ]:       3771 :               if (has_relro && in_relro
    1589         [ -  + ]:        970 :                        && shdr->sh_addr + shdr->sh_size > relro_to)
    1590                 :            :                 {
    1591                 :          0 :                   fputs_unlocked (">", stdout);
    1592                 :          0 :                   in_relro =  false;
    1593                 :            :                 }
    1594                 :            :             }
    1595                 :            :         }
    1596         [ +  + ]:       1081 :       if (in_relro || in_ro)
    1597                 :        744 :         fputs_unlocked ("]", stdout);
    1598                 :            : 
    1599                 :            :       /* Finish the line.  */
    1600         [ -  + ]:       2162 :       fputc_unlocked ('\n', stdout);
    1601                 :            :     }
    1602                 :            : }
    1603                 :            : 
    1604                 :            : 
    1605                 :            : static const char *
    1606                 :        472 : section_name (Ebl *ebl, GElf_Shdr *shdr)
    1607                 :            : {
    1608                 :        472 :   size_t shstrndx;
    1609   [ +  -  -  + ]:        472 :   if (shdr == NULL || elf_getshdrstrndx (ebl->elf, &shstrndx) < 0)
    1610                 :          0 :     return "???";
    1611         [ -  + ]:        472 :   return elf_strptr (ebl->elf, shstrndx, shdr->sh_name) ?: "???";
    1612                 :            : }
    1613                 :            : 
    1614                 :            : 
    1615                 :            : static void
    1616                 :         16 : handle_scngrp (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
    1617                 :            : {
    1618                 :            :   /* Get the data of the section.  */
    1619                 :         16 :   Elf_Data *data = elf_getdata (scn, NULL);
    1620                 :            : 
    1621                 :         16 :   Elf_Scn *symscn = elf_getscn (ebl->elf, shdr->sh_link);
    1622                 :         16 :   GElf_Shdr symshdr_mem;
    1623                 :         16 :   GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
    1624                 :         16 :   Elf_Data *symdata = elf_getdata (symscn, NULL);
    1625                 :            : 
    1626   [ +  -  +  - ]:         16 :   if (data == NULL || data->d_size < sizeof (Elf32_Word) || symshdr == NULL
    1627         [ -  + ]:         16 :       || symdata == NULL)
    1628                 :          0 :     return;
    1629                 :            : 
    1630                 :            :   /* Get the section header string table index.  */
    1631                 :         16 :   size_t shstrndx;
    1632         [ -  + ]:         16 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    1633                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    1634                 :            : 
    1635                 :         16 :   Elf32_Word *grpref = (Elf32_Word *) data->d_buf;
    1636                 :            : 
    1637                 :         16 :   GElf_Sym sym_mem;
    1638                 :         16 :   GElf_Sym *sym = gelf_getsym (symdata, shdr->sh_info, &sym_mem);
    1639                 :            : 
    1640   [ -  +  +  + ]:         32 :   printf ((grpref[0] & GRP_COMDAT)
    1641                 :          4 :           ? ngettext ("\
    1642                 :            : \nCOMDAT section group [%2zu] '%s' with signature '%s' contains %zu entry:\n",
    1643                 :            :                       "\
    1644                 :            : \nCOMDAT section group [%2zu] '%s' with signature '%s' contains %zu entries:\n",
    1645                 :            :                       data->d_size / sizeof (Elf32_Word) - 1)
    1646                 :         12 :           : ngettext ("\
    1647                 :            : \nSection group [%2zu] '%s' with signature '%s' contains %zu entry:\n", "\
    1648                 :            : \nSection group [%2zu] '%s' with signature '%s' contains %zu entries:\n",
    1649                 :            :                       data->d_size / sizeof (Elf32_Word) - 1),
    1650                 :            :           elf_ndxscn (scn),
    1651                 :         16 :           elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    1652                 :            :           (sym == NULL ? NULL
    1653                 :         16 :            : elf_strptr (ebl->elf, symshdr->sh_link, sym->st_name))
    1654                 :          0 :           ?: _("<INVALID SYMBOL>"),
    1655         [ +  - ]:         16 :           data->d_size / sizeof (Elf32_Word) - 1);
    1656                 :            : 
    1657         [ +  + ]:         52 :   for (size_t cnt = 1; cnt < data->d_size / sizeof (Elf32_Word); ++cnt)
    1658                 :            :     {
    1659                 :         36 :       GElf_Shdr grpshdr_mem;
    1660                 :         36 :       GElf_Shdr *grpshdr = gelf_getshdr (elf_getscn (ebl->elf, grpref[cnt]),
    1661                 :            :                                          &grpshdr_mem);
    1662                 :            : 
    1663                 :         36 :       const char *str;
    1664         [ +  - ]:         72 :       printf ("  [%2u] %s\n",
    1665                 :            :               grpref[cnt],
    1666                 :            :               grpshdr != NULL
    1667         [ -  + ]:         36 :               && (str = elf_strptr (ebl->elf, shstrndx, grpshdr->sh_name))
    1668                 :          0 :               ? str : _("<INVALID SECTION>"));
    1669                 :            :     }
    1670                 :            : }
    1671                 :            : 
    1672                 :            : 
    1673                 :            : static void
    1674                 :        151 : print_scngrp (Ebl *ebl)
    1675                 :            : {
    1676                 :            :   /* Find all relocation sections and handle them.  */
    1677                 :        151 :   Elf_Scn *scn = NULL;
    1678                 :            : 
    1679         [ +  + ]:       4457 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
    1680                 :            :     {
    1681                 :            :        /* Handle the section if it is a symbol table.  */
    1682                 :       4306 :       GElf_Shdr shdr_mem;
    1683                 :       4306 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    1684                 :            : 
    1685   [ +  -  +  + ]:       4306 :       if (shdr != NULL && shdr->sh_type == SHT_GROUP)
    1686                 :            :         {
    1687         [ -  + ]:         16 :           if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
    1688                 :            :             {
    1689         [ #  # ]:          0 :               if (elf_compress (scn, 0, 0) < 0)
    1690                 :          0 :                 printf ("WARNING: %s [%zd]\n",
    1691                 :            :                         _("Couldn't uncompress section"),
    1692                 :            :                         elf_ndxscn (scn));
    1693                 :          0 :               shdr = gelf_getshdr (scn, &shdr_mem);
    1694         [ #  # ]:          0 :               if (unlikely (shdr == NULL))
    1695                 :          0 :                 error_exit (0, _("cannot get section [%zd] header: %s"),
    1696                 :            :                             elf_ndxscn (scn),
    1697                 :            :                             elf_errmsg (-1));
    1698                 :            :             }
    1699                 :         16 :           handle_scngrp (ebl, scn, shdr);
    1700                 :            :         }
    1701                 :            :     }
    1702                 :        151 : }
    1703                 :            : 
    1704                 :            : 
    1705                 :            : static const struct flags
    1706                 :            : {
    1707                 :            :   int mask;
    1708                 :            :   const char *str;
    1709                 :            : } dt_flags[] =
    1710                 :            :   {
    1711                 :            :     { DF_ORIGIN, "ORIGIN" },
    1712                 :            :     { DF_SYMBOLIC, "SYMBOLIC" },
    1713                 :            :     { DF_TEXTREL, "TEXTREL" },
    1714                 :            :     { DF_BIND_NOW, "BIND_NOW" },
    1715                 :            :     { DF_STATIC_TLS, "STATIC_TLS" }
    1716                 :            :   };
    1717                 :            : static const int ndt_flags = sizeof (dt_flags) / sizeof (dt_flags[0]);
    1718                 :            : 
    1719                 :            : static const struct flags dt_flags_1[] =
    1720                 :            :   {
    1721                 :            :     { DF_1_NOW, "NOW" },
    1722                 :            :     { DF_1_GLOBAL, "GLOBAL" },
    1723                 :            :     { DF_1_GROUP, "GROUP" },
    1724                 :            :     { DF_1_NODELETE, "NODELETE" },
    1725                 :            :     { DF_1_LOADFLTR, "LOADFLTR" },
    1726                 :            :     { DF_1_INITFIRST, "INITFIRST" },
    1727                 :            :     { DF_1_NOOPEN, "NOOPEN" },
    1728                 :            :     { DF_1_ORIGIN, "ORIGIN" },
    1729                 :            :     { DF_1_DIRECT, "DIRECT" },
    1730                 :            :     { DF_1_TRANS, "TRANS" },
    1731                 :            :     { DF_1_INTERPOSE, "INTERPOSE" },
    1732                 :            :     { DF_1_NODEFLIB, "NODEFLIB" },
    1733                 :            :     { DF_1_NODUMP, "NODUMP" },
    1734                 :            :     { DF_1_CONFALT, "CONFALT" },
    1735                 :            :     { DF_1_ENDFILTEE, "ENDFILTEE" },
    1736                 :            :     { DF_1_DISPRELDNE, "DISPRELDNE" },
    1737                 :            :     { DF_1_DISPRELPND, "DISPRELPND" },
    1738                 :            :   };
    1739                 :            : static const int ndt_flags_1 = sizeof (dt_flags_1) / sizeof (dt_flags_1[0]);
    1740                 :            : 
    1741                 :            : static const struct flags dt_feature_1[] =
    1742                 :            :   {
    1743                 :            :     { DTF_1_PARINIT, "PARINIT" },
    1744                 :            :     { DTF_1_CONFEXP, "CONFEXP" }
    1745                 :            :   };
    1746                 :            : static const int ndt_feature_1 = (sizeof (dt_feature_1)
    1747                 :            :                                   / sizeof (dt_feature_1[0]));
    1748                 :            : 
    1749                 :            : static const struct flags dt_posflag_1[] =
    1750                 :            :   {
    1751                 :            :     { DF_P1_LAZYLOAD, "LAZYLOAD" },
    1752                 :            :     { DF_P1_GROUPPERM, "GROUPPERM" }
    1753                 :            :   };
    1754                 :            : static const int ndt_posflag_1 = (sizeof (dt_posflag_1)
    1755                 :            :                                   / sizeof (dt_posflag_1[0]));
    1756                 :            : 
    1757                 :            : 
    1758                 :            : static void
    1759                 :         39 : print_flags (int class, GElf_Xword d_val, const struct flags *flags,
    1760                 :            :                 int nflags)
    1761                 :            : {
    1762                 :         39 :   bool first = true;
    1763                 :         39 :   int cnt;
    1764                 :            : 
    1765         [ +  + ]:        588 :   for (cnt = 0; cnt < nflags; ++cnt)
    1766         [ +  + ]:        549 :     if (d_val & flags[cnt].mask)
    1767                 :            :       {
    1768         [ +  + ]:         34 :         if (!first)
    1769         [ -  + ]:         18 :           putchar_unlocked (' ');
    1770                 :         34 :         fputs_unlocked (flags[cnt].str, stdout);
    1771                 :         34 :         d_val &= ~flags[cnt].mask;
    1772                 :         34 :         first = false;
    1773                 :            :       }
    1774                 :            : 
    1775         [ +  + ]:         39 :   if (d_val != 0)
    1776                 :            :     {
    1777         [ +  + ]:         33 :       if (!first)
    1778         [ -  + ]:         10 :         putchar_unlocked (' ');
    1779         [ +  + ]:         33 :       printf ("%#0*" PRIx64, class == ELFCLASS32 ? 10 : 18, d_val);
    1780                 :            :     }
    1781                 :            : 
    1782         [ -  + ]:         39 :   putchar_unlocked ('\n');
    1783                 :         39 : }
    1784                 :            : 
    1785                 :            : 
    1786                 :            : static void
    1787                 :          7 : print_dt_flags (int class, GElf_Xword d_val)
    1788                 :            : {
    1789                 :          7 :   print_flags (class, d_val, dt_flags, ndt_flags);
    1790                 :          7 : }
    1791                 :            : 
    1792                 :            : 
    1793                 :            : static void
    1794                 :         30 : print_dt_flags_1 (int class, GElf_Xword d_val)
    1795                 :            : {
    1796                 :         30 :   print_flags (class, d_val, dt_flags_1, ndt_flags_1);
    1797                 :         30 : }
    1798                 :            : 
    1799                 :            : 
    1800                 :            : static void
    1801                 :          1 : print_dt_feature_1 (int class, GElf_Xword d_val)
    1802                 :            : {
    1803                 :          1 :   print_flags (class, d_val, dt_feature_1, ndt_feature_1);
    1804                 :          1 : }
    1805                 :            : 
    1806                 :            : 
    1807                 :            : static void
    1808                 :          1 : print_dt_posflag_1 (int class, GElf_Xword d_val)
    1809                 :            : {
    1810                 :          1 :   print_flags (class, d_val, dt_posflag_1, ndt_posflag_1);
    1811                 :          1 : }
    1812                 :            : 
    1813                 :            : 
    1814                 :            : static size_t
    1815                 :         82 : get_dyn_ents (Elf_Data * dyn_data)
    1816                 :            : {
    1817                 :         82 :   GElf_Dyn *dyn;
    1818                 :         82 :   GElf_Dyn dyn_mem;
    1819                 :         82 :   size_t dyn_idx = 0;
    1820                 :       2060 :   do
    1821                 :            :     {
    1822                 :       2060 :       dyn = gelf_getdyn(dyn_data, dyn_idx, &dyn_mem);
    1823         [ +  - ]:       2060 :       if (dyn != NULL)
    1824                 :       2060 :         ++dyn_idx;
    1825                 :            :     }
    1826   [ +  -  +  + ]:       2060 :   while (dyn != NULL && dyn->d_tag != DT_NULL);
    1827                 :            : 
    1828                 :         82 :   return dyn_idx;
    1829                 :            : }
    1830                 :            : 
    1831                 :            : 
    1832                 :            : static void
    1833                 :         82 : handle_dynamic (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, GElf_Phdr *phdr)
    1834                 :            : {
    1835                 :         82 :   int class = gelf_getclass (ebl->elf);
    1836                 :         82 :   GElf_Shdr glink_mem;
    1837                 :         82 :   GElf_Shdr *glink;
    1838                 :         82 :   Elf_Data *data;
    1839                 :         82 :   size_t cnt;
    1840                 :         82 :   size_t shstrndx;
    1841                 :         82 :   size_t dyn_ents;
    1842                 :            : 
    1843                 :            :   /* Get the data of the section.  */
    1844   [ +  +  +  - ]:         82 :   if (use_dynamic_segment && phdr != NULL)
    1845                 :          1 :     data = elf_getdata_rawchunk(ebl->elf, phdr->p_offset,
    1846                 :            :                                 phdr->p_filesz, ELF_T_DYN);
    1847                 :            :   else
    1848                 :         81 :     data = elf_getdata (scn, NULL);
    1849                 :            : 
    1850         [ -  + ]:         82 :   if (data == NULL)
    1851                 :          0 :     return;
    1852                 :            : 
    1853                 :            :   /* Get the dynamic section entry number */
    1854                 :         82 :   dyn_ents = get_dyn_ents (data);
    1855                 :            : 
    1856   [ +  +  +  - ]:         82 :   if (!use_dynamic_segment && shdr != NULL)
    1857                 :            :     {
    1858                 :            :       /* Get the section header string table index.  */
    1859         [ -  + ]:         81 :       if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    1860                 :          0 :         error_exit (0, _("cannot get section header string table index"));
    1861                 :            : 
    1862                 :         81 :       glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link), &glink_mem);
    1863         [ -  + ]:         81 :       if (glink == NULL)
    1864                 :          0 :         error_exit (0, _("invalid sh_link value in section %zu"),
    1865                 :            :                     elf_ndxscn (scn));
    1866                 :            : 
    1867                 :         81 :       printf (ngettext ("\
    1868                 :            : \nDynamic segment contains %lu entry:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "  Link to section: [%2u] '%s'\n",
    1869                 :            :                     "\
    1870                 :            : \nDynamic segment contains %lu entries:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "  Link to section: [%2u] '%s'\n",
    1871                 :            :                         dyn_ents),
    1872                 :            :               (unsigned long int) dyn_ents,
    1873                 :            :               class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
    1874                 :            :               shdr->sh_offset,
    1875         [ +  + ]:         81 :               (int) shdr->sh_link,
    1876                 :         81 :               elf_strptr (ebl->elf, shstrndx, glink->sh_name));
    1877                 :            :     }
    1878         [ +  - ]:          1 :   else if (phdr != NULL)
    1879                 :            :     {
    1880         [ +  - ]:          2 :       printf (ngettext ("\
    1881                 :            : \nDynamic segment contains %lu entry:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "\n",
    1882                 :            :                     "\
    1883                 :            : \nDynamic segment contains %lu entries:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "\n",
    1884                 :            :                         dyn_ents),
    1885                 :            :               (unsigned long int) dyn_ents,
    1886                 :            :               class == ELFCLASS32 ? 10 : 18, phdr->p_paddr,
    1887                 :            :               phdr->p_offset);
    1888                 :            :     }
    1889                 :            : 
    1890                 :         82 :   fputs_unlocked (_("  Type              Value\n"), stdout);
    1891                 :            : 
    1892                 :            :   /* if --use-dynamic option is enabled,
    1893                 :            :      use the string table to get the related library info.  */
    1894                 :         82 :   Elf_Data *strtab_data = NULL;
    1895   [ +  +  +  - ]:         82 :   if (use_dynamic_segment && phdr != NULL)
    1896                 :            :     {
    1897                 :          1 :       strtab_data = get_dynscn_strtab(ebl->elf, phdr);
    1898         [ -  + ]:          1 :       if (strtab_data == NULL)
    1899                 :          0 :         error_exit (0, _("cannot get string table by using dynamic segment"));
    1900                 :            :     }
    1901                 :            : 
    1902         [ +  + ]:       2142 :   for (cnt = 0; cnt < dyn_ents; ++cnt)
    1903                 :            :     {
    1904                 :       2060 :       GElf_Dyn dynmem;
    1905                 :       2060 :       GElf_Dyn *dyn = gelf_getdyn (data, cnt, &dynmem);
    1906         [ +  - ]:       2060 :       if (dyn == NULL)
    1907                 :            :         break;
    1908                 :            : 
    1909                 :       2060 :       char buf[64];
    1910                 :       2060 :       printf ("  %-17s ",
    1911                 :            :               ebl_dynamic_tag_name (ebl, dyn->d_tag, buf, sizeof (buf)));
    1912                 :            : 
    1913                 :       2060 :       char *name = NULL;
    1914                 :       2060 :       if (dyn->d_tag == DT_NEEDED
    1915         [ +  + ]:       2060 :           || dyn->d_tag == DT_SONAME
    1916         [ +  + ]:       1909 :           || dyn->d_tag == DT_RPATH
    1917         [ +  + ]:       1908 :           || dyn->d_tag == DT_RUNPATH)
    1918                 :            :         {
    1919   [ +  +  +  - ]:        153 :           if (! use_dynamic_segment && shdr != NULL)
    1920                 :        151 :             name = elf_strptr (ebl->elf, shdr->sh_link, dyn->d_un.d_val);
    1921         [ +  - ]:          2 :           else if (dyn->d_un.d_val < strtab_data->d_size
    1922                 :          2 :                    && memrchr (strtab_data->d_buf + dyn->d_un.d_val, '\0',
    1923         [ +  - ]:          2 :                                strtab_data->d_size - 1 - dyn->d_un.d_val) != NULL)
    1924                 :          2 :             name = ((char *) strtab_data->d_buf) + dyn->d_un.d_val;
    1925                 :            :         }
    1926                 :            : 
    1927   [ +  +  +  +  :       2060 :       switch (dyn->d_tag)
          +  +  +  +  +  
             +  +  +  + ]
    1928                 :            :         {
    1929                 :        162 :         case DT_NULL:
    1930                 :            :         case DT_DEBUG:
    1931                 :            :         case DT_BIND_NOW:
    1932                 :            :         case DT_TEXTREL:
    1933                 :            :           /* No further output.  */
    1934         [ -  + ]:        162 :           fputc_unlocked ('\n', stdout);
    1935                 :            :           break;
    1936                 :            : 
    1937                 :        148 :         case DT_NEEDED:
    1938                 :        148 :           printf (_("Shared library: [%s]\n"), name);
    1939                 :            :           break;
    1940                 :            : 
    1941                 :          3 :         case DT_SONAME:
    1942                 :          3 :           printf (_("Library soname: [%s]\n"), name);
    1943                 :            :           break;
    1944                 :            : 
    1945                 :          1 :         case DT_RPATH:
    1946                 :          1 :           printf (_("Library rpath: [%s]\n"), name);
    1947                 :            :           break;
    1948                 :            : 
    1949                 :          1 :         case DT_RUNPATH:
    1950                 :          1 :           printf (_("Library runpath: [%s]\n"), name);
    1951                 :            :           break;
    1952                 :            : 
    1953                 :        545 :         case DT_PLTRELSZ:
    1954                 :            :         case DT_RELASZ:
    1955                 :            :         case DT_STRSZ:
    1956                 :            :         case DT_RELSZ:
    1957                 :            :         case DT_RELAENT:
    1958                 :            :         case DT_SYMENT:
    1959                 :            :         case DT_RELENT:
    1960                 :            :         case DT_PLTPADSZ:
    1961                 :            :         case DT_MOVEENT:
    1962                 :            :         case DT_MOVESZ:
    1963                 :            :         case DT_INIT_ARRAYSZ:
    1964                 :            :         case DT_FINI_ARRAYSZ:
    1965                 :            :         case DT_SYMINSZ:
    1966                 :            :         case DT_SYMINENT:
    1967                 :            :         case DT_GNU_CONFLICTSZ:
    1968                 :            :         case DT_GNU_LIBLISTSZ:
    1969                 :        545 :           printf (_("%" PRId64 " (bytes)\n"), dyn->d_un.d_val);
    1970                 :            :           break;
    1971                 :            : 
    1972                 :        122 :         case DT_VERDEFNUM:
    1973                 :            :         case DT_VERNEEDNUM:
    1974                 :            :         case DT_RELACOUNT:
    1975                 :            :         case DT_RELCOUNT:
    1976                 :        122 :           printf ("%" PRId64 "\n", dyn->d_un.d_val);
    1977                 :            :           break;
    1978                 :            : 
    1979                 :         68 :         case DT_PLTREL:;
    1980                 :         68 :           const char *tagname = ebl_dynamic_tag_name (ebl, dyn->d_un.d_val,
    1981                 :            :                                                       NULL, 0);
    1982         [ +  + ]:         68 :           puts (tagname ?: "???");
    1983                 :         68 :           break;
    1984                 :            : 
    1985                 :          7 :         case DT_FLAGS:
    1986                 :          7 :           print_dt_flags (class, dyn->d_un.d_val);
    1987                 :            :           break;
    1988                 :            : 
    1989                 :         30 :         case DT_FLAGS_1:
    1990                 :         30 :           print_dt_flags_1 (class, dyn->d_un.d_val);
    1991                 :            :           break;
    1992                 :            : 
    1993                 :          1 :         case DT_FEATURE_1:
    1994                 :          1 :           print_dt_feature_1 (class, dyn->d_un.d_val);
    1995                 :            :           break;
    1996                 :            : 
    1997                 :          1 :         case DT_POSFLAG_1:
    1998                 :          1 :           print_dt_posflag_1 (class, dyn->d_un.d_val);
    1999                 :            :           break;
    2000                 :            : 
    2001                 :        971 :         default:
    2002         [ +  + ]:       3031 :           printf ("%#0*" PRIx64 "\n",
    2003                 :            :                   class == ELFCLASS32 ? 10 : 18, dyn->d_un.d_val);
    2004                 :            :           break;
    2005                 :            :         }
    2006                 :            :     }
    2007                 :            : }
    2008                 :            : 
    2009                 :            : 
    2010                 :            : /* Print the dynamic segment.  */
    2011                 :            : static void
    2012                 :        145 : print_dynamic (Ebl *ebl)
    2013                 :            : {
    2014         [ +  + ]:        682 :   for (size_t i = 0; i < phnum; ++i)
    2015                 :            :     {
    2016                 :        646 :       GElf_Phdr phdr_mem;
    2017                 :        646 :       GElf_Phdr *phdr = gelf_getphdr (ebl->elf, i, &phdr_mem);
    2018                 :            : 
    2019   [ +  -  +  + ]:        646 :       if (phdr != NULL && phdr->p_type == PT_DYNAMIC)
    2020                 :            :         {
    2021                 :        109 :           Elf_Scn *scn = gelf_offscn (ebl->elf, phdr->p_offset);
    2022                 :        109 :           GElf_Shdr shdr_mem;
    2023                 :        109 :           GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    2024         [ +  + ]:        109 :           if ((use_dynamic_segment && phdr != NULL)
    2025   [ +  +  +  + ]:        108 :               || (shdr != NULL && shdr->sh_type == SHT_DYNAMIC))
    2026                 :         82 :             handle_dynamic (ebl, scn, shdr, phdr);
    2027                 :        109 :           break;
    2028                 :            :         }
    2029                 :            :     }
    2030                 :        145 : }
    2031                 :            : 
    2032                 :            : 
    2033                 :            : /* Print relocations.  */
    2034                 :            : static void
    2035                 :        143 : print_relocs (Ebl *ebl, GElf_Ehdr *ehdr)
    2036                 :            : {
    2037                 :            :   /* Find all relocation sections and handle them.  */
    2038                 :        143 :   Elf_Scn *scn = NULL;
    2039                 :            : 
    2040         [ +  + ]:       4233 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
    2041                 :            :     {
    2042                 :            :        /* Handle the section if it is a symbol table.  */
    2043                 :       4090 :       GElf_Shdr shdr_mem;
    2044                 :       4090 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    2045                 :            : 
    2046         [ +  - ]:       4090 :       if (likely (shdr != NULL))
    2047                 :            :         {
    2048         [ +  + ]:       4090 :           if (shdr->sh_type == SHT_REL)
    2049                 :         56 :             handle_relocs_rel (ebl, ehdr, scn, shdr);
    2050         [ +  + ]:       4034 :           else if (shdr->sh_type == SHT_RELA)
    2051                 :        283 :             handle_relocs_rela (ebl, ehdr, scn, shdr);
    2052                 :            :         }
    2053                 :            :     }
    2054                 :        143 : }
    2055                 :            : 
    2056                 :            : 
    2057                 :            : /* Handle a relocation section.  */
    2058                 :            : static void
    2059                 :         56 : handle_relocs_rel (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, GElf_Shdr *shdr)
    2060                 :            : {
    2061                 :         56 :   int class = gelf_getclass (ebl->elf);
    2062                 :         56 :   size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_REL, 1, EV_CURRENT);
    2063                 :         56 :   int nentries = shdr->sh_size / sh_entsize;
    2064                 :            : 
    2065                 :            :   /* Get the data of the section.  */
    2066                 :         56 :   Elf_Data *data = elf_getdata (scn, NULL);
    2067         [ +  - ]:         56 :   if (data == NULL)
    2068                 :          0 :     return;
    2069                 :            : 
    2070                 :            :   /* Get the symbol table information.  */
    2071                 :         56 :   Elf_Scn *symscn = elf_getscn (ebl->elf, shdr->sh_link);
    2072                 :         56 :   GElf_Shdr symshdr_mem;
    2073                 :         56 :   GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
    2074                 :         56 :   Elf_Data *symdata = elf_getdata (symscn, NULL);
    2075                 :            : 
    2076                 :            :   /* Get the section header of the section the relocations are for.  */
    2077                 :         56 :   GElf_Shdr destshdr_mem;
    2078                 :         56 :   GElf_Shdr *destshdr = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_info),
    2079                 :            :                                       &destshdr_mem);
    2080                 :            : 
    2081   [ +  -  -  + ]:         56 :   if (unlikely (symshdr == NULL || symdata == NULL || destshdr == NULL))
    2082                 :            :     {
    2083                 :          0 :       printf (_("\nInvalid symbol table at offset %#0" PRIx64 "\n"),
    2084                 :            :               shdr->sh_offset);
    2085                 :          0 :       return;
    2086                 :            :     }
    2087                 :            : 
    2088                 :            :   /* Search for the optional extended section index table.  */
    2089                 :         56 :   Elf_Data *xndxdata = NULL;
    2090                 :         56 :   int xndxscnidx = elf_scnshndx (scn);
    2091         [ -  + ]:         56 :   if (unlikely (xndxscnidx > 0))
    2092                 :          0 :     xndxdata = elf_getdata (elf_getscn (ebl->elf, xndxscnidx), NULL);
    2093                 :            : 
    2094                 :            :   /* Get the section header string table index.  */
    2095                 :         56 :   size_t shstrndx;
    2096         [ -  + ]:         56 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    2097                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    2098                 :            : 
    2099         [ +  + ]:         56 :   if (shdr->sh_info != 0)
    2100                 :         46 :     printf (ngettext ("\
    2101                 :            : \nRelocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
    2102                 :            :                     "\
    2103                 :            : \nRelocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
    2104                 :            :                       nentries),
    2105                 :            :             elf_ndxscn (scn),
    2106                 :         46 :             elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    2107                 :         46 :             (unsigned int) shdr->sh_info,
    2108                 :         46 :             elf_strptr (ebl->elf, shstrndx, destshdr->sh_name),
    2109                 :            :             shdr->sh_offset,
    2110                 :            :             nentries);
    2111                 :            :   else
    2112                 :            :     /* The .rel.dyn section does not refer to a specific section but
    2113                 :            :        instead of section index zero.  Do not try to print a section
    2114                 :            :        name.  */
    2115                 :         10 :     printf (ngettext ("\
    2116                 :            : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
    2117                 :            :                     "\
    2118                 :            : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
    2119                 :            :                       nentries),
    2120                 :         10 :             (unsigned int) elf_ndxscn (scn),
    2121                 :         10 :             elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    2122                 :            :             shdr->sh_offset,
    2123                 :            :             nentries);
    2124         [ +  - ]:         56 :   fputs_unlocked (class == ELFCLASS32
    2125                 :         56 :                   ? _("\
    2126                 :            :   Offset      Type                 Value       Name\n")
    2127                 :          0 :                   : _("\
    2128                 :            :   Offset              Type                 Value               Name\n"),
    2129                 :            :          stdout);
    2130                 :            : 
    2131                 :         56 :   int is_statically_linked = 0;
    2132         [ +  + ]:      13009 :   for (int cnt = 0; cnt < nentries; ++cnt)
    2133                 :            :     {
    2134                 :      12953 :       GElf_Rel relmem;
    2135                 :      12953 :       GElf_Rel *rel = gelf_getrel (data, cnt, &relmem);
    2136         [ +  - ]:      12953 :       if (likely (rel != NULL))
    2137                 :            :         {
    2138                 :      12953 :           char buf[128];
    2139                 :      12953 :           GElf_Sym symmem;
    2140                 :      12953 :           Elf32_Word xndx;
    2141                 :      25906 :           GElf_Sym *sym = gelf_getsymshndx (symdata, xndxdata,
    2142                 :      12953 :                                             GELF_R_SYM (rel->r_info),
    2143                 :            :                                             &symmem, &xndx);
    2144         [ -  + ]:      12953 :           if (unlikely (sym == NULL))
    2145                 :            :             {
    2146                 :            :               /* As a special case we have to handle relocations in static
    2147                 :            :                  executables.  This only happens for IRELATIVE relocations
    2148                 :            :                  (so far).  There is no symbol table.  */
    2149         [ #  # ]:          0 :               if (is_statically_linked == 0)
    2150                 :            :                 {
    2151                 :            :                   /* Find the program header and look for a PT_INTERP entry. */
    2152                 :          0 :                   is_statically_linked = -1;
    2153         [ #  # ]:          0 :                   if (ehdr->e_type == ET_EXEC)
    2154                 :            :                     {
    2155                 :          0 :                       is_statically_linked = 1;
    2156                 :            : 
    2157         [ #  # ]:          0 :                       for (size_t inner = 0; inner < phnum; ++inner)
    2158                 :            :                         {
    2159                 :          0 :                           GElf_Phdr phdr_mem;
    2160                 :          0 :                           GElf_Phdr *phdr = gelf_getphdr (ebl->elf, inner,
    2161                 :            :                                                           &phdr_mem);
    2162   [ #  #  #  # ]:          0 :                           if (phdr != NULL && phdr->p_type == PT_INTERP)
    2163                 :            :                             {
    2164                 :          0 :                               is_statically_linked = -1;
    2165                 :          0 :                               break;
    2166                 :            :                             }
    2167                 :            :                         }
    2168                 :            :                     }
    2169                 :            :                 }
    2170                 :            : 
    2171   [ #  #  #  # ]:          0 :               if (is_statically_linked > 0 && shdr->sh_link == 0)
    2172   [ #  #  #  # ]:          0 :                 printf ("\
    2173                 :            :   %#0*" PRIx64 "  %-20s %*s  %s\n",
    2174                 :            :                         class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2175                 :          0 :                         ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
    2176                 :            :                         /* Avoid the leading R_ which isn't carrying any
    2177                 :            :                            information.  */
    2178                 :          0 :                         ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2179                 :            :                                                buf, sizeof (buf)) + 2
    2180                 :          0 :                         : _("<INVALID RELOC>"),
    2181                 :            :                         class == ELFCLASS32 ? 10 : 18, "",
    2182                 :          0 :                         elf_strptr (ebl->elf, shstrndx, destshdr->sh_name));
    2183                 :            :               else
    2184   [ #  #  #  # ]:          0 :                 printf ("  %#0*" PRIx64 "  %-20s <%s %ld>\n",
    2185                 :            :                         class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2186                 :          0 :                         ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
    2187                 :            :                         /* Avoid the leading R_ which isn't carrying any
    2188                 :            :                            information.  */
    2189                 :          0 :                         ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2190                 :            :                                                buf, sizeof (buf)) + 2
    2191                 :          0 :                         : _("<INVALID RELOC>"),
    2192                 :            :                         _("INVALID SYMBOL"),
    2193                 :          0 :                         (long int) GELF_R_SYM (rel->r_info));
    2194                 :            :             }
    2195         [ +  + ]:      12953 :           else if (GELF_ST_TYPE (sym->st_info) != STT_SECTION)
    2196         [ -  + ]:      13038 :             printf ("  %#0*" PRIx64 "  %-20s %#0*" PRIx64 "  %s\n",
    2197                 :            :                     class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2198         [ +  - ]:         85 :                     likely (ebl_reloc_type_check (ebl,
    2199                 :            :                                                   GELF_R_TYPE (rel->r_info)))
    2200                 :            :                     /* Avoid the leading R_ which isn't carrying any
    2201                 :            :                        information.  */
    2202                 :         85 :                     ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2203                 :            :                                            buf, sizeof (buf)) + 2
    2204                 :          0 :                     : _("<INVALID RELOC>"),
    2205                 :            :                     class == ELFCLASS32 ? 10 : 18, sym->st_value,
    2206                 :         85 :                     elf_strptr (ebl->elf, symshdr->sh_link, sym->st_name));
    2207                 :            :           else
    2208                 :            :             {
    2209                 :            :               /* This is a relocation against a STT_SECTION symbol.  */
    2210                 :      12868 :               GElf_Shdr secshdr_mem;
    2211                 :      12868 :               GElf_Shdr *secshdr;
    2212                 :      12868 :               secshdr = gelf_getshdr (elf_getscn (ebl->elf,
    2213         [ +  - ]:      12868 :                                                   sym->st_shndx == SHN_XINDEX
    2214                 :          0 :                                                   ? xndx : sym->st_shndx),
    2215                 :            :                                       &secshdr_mem);
    2216                 :            : 
    2217         [ -  + ]:      12868 :               if (unlikely (secshdr == NULL))
    2218   [ #  #  #  # ]:          0 :                 printf ("  %#0*" PRIx64 "  %-20s <%s %ld>\n",
    2219                 :            :                         class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2220                 :          0 :                         ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
    2221                 :            :                         /* Avoid the leading R_ which isn't carrying any
    2222                 :            :                            information.  */
    2223                 :          0 :                         ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2224                 :            :                                                buf, sizeof (buf)) + 2
    2225                 :          0 :                         : _("<INVALID RELOC>"),
    2226                 :            :                         _("INVALID SECTION"),
    2227         [ #  # ]:          0 :                         (long int) (sym->st_shndx == SHN_XINDEX
    2228                 :          0 :                                     ? xndx : sym->st_shndx));
    2229                 :            :               else
    2230   [ -  +  +  - ]:      38604 :                 printf ("  %#0*" PRIx64 "  %-20s %#0*" PRIx64 "  %s\n",
    2231                 :            :                         class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2232                 :      12868 :                         ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
    2233                 :            :                         /* Avoid the leading R_ which isn't carrying any
    2234                 :            :                            information.  */
    2235                 :      12868 :                         ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2236                 :            :                                                buf, sizeof (buf)) + 2
    2237                 :          0 :                         : _("<INVALID RELOC>"),
    2238                 :            :                         class == ELFCLASS32 ? 10 : 18, sym->st_value,
    2239                 :      12868 :                         elf_strptr (ebl->elf, shstrndx, secshdr->sh_name));
    2240                 :            :             }
    2241                 :            :         }
    2242                 :            :     }
    2243                 :            : }
    2244                 :            : 
    2245                 :            : 
    2246                 :            : /* Handle a relocation section.  */
    2247                 :            : static void
    2248                 :        283 : handle_relocs_rela (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn, GElf_Shdr *shdr)
    2249                 :            : {
    2250                 :        283 :   int class = gelf_getclass (ebl->elf);
    2251                 :        283 :   size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_RELA, 1, EV_CURRENT);
    2252                 :        283 :   int nentries = shdr->sh_size / sh_entsize;
    2253                 :            : 
    2254                 :            :   /* Get the data of the section.  */
    2255                 :        283 :   Elf_Data *data = elf_getdata (scn, NULL);
    2256         [ +  - ]:        283 :   if (data == NULL)
    2257                 :          0 :     return;
    2258                 :            : 
    2259                 :            :   /* Get the symbol table information.  */
    2260                 :        283 :   Elf_Scn *symscn = elf_getscn (ebl->elf, shdr->sh_link);
    2261                 :        283 :   GElf_Shdr symshdr_mem;
    2262                 :        283 :   GElf_Shdr *symshdr = gelf_getshdr (symscn, &symshdr_mem);
    2263                 :        283 :   Elf_Data *symdata = elf_getdata (symscn, NULL);
    2264                 :            : 
    2265                 :            :   /* Get the section header of the section the relocations are for.  */
    2266                 :        283 :   GElf_Shdr destshdr_mem;
    2267                 :        283 :   GElf_Shdr *destshdr = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_info),
    2268                 :            :                                       &destshdr_mem);
    2269                 :            : 
    2270   [ +  -  -  + ]:        283 :   if (unlikely (symshdr == NULL || symdata == NULL || destshdr == NULL))
    2271                 :            :     {
    2272                 :          0 :       printf (_("\nInvalid symbol table at offset %#0" PRIx64 "\n"),
    2273                 :            :               shdr->sh_offset);
    2274                 :          0 :       return;
    2275                 :            :     }
    2276                 :            : 
    2277                 :            :   /* Search for the optional extended section index table.  */
    2278                 :        283 :   Elf_Data *xndxdata = NULL;
    2279                 :        283 :   int xndxscnidx = elf_scnshndx (scn);
    2280         [ -  + ]:        283 :   if (unlikely (xndxscnidx > 0))
    2281                 :          0 :     xndxdata = elf_getdata (elf_getscn (ebl->elf, xndxscnidx), NULL);
    2282                 :            : 
    2283                 :            :   /* Get the section header string table index.  */
    2284                 :        283 :   size_t shstrndx;
    2285         [ -  + ]:        283 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    2286                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    2287                 :            : 
    2288         [ +  + ]:        283 :   if (shdr->sh_info != 0)
    2289                 :        214 :     printf (ngettext ("\
    2290                 :            : \nRelocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
    2291                 :            :                     "\
    2292                 :            : \nRelocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
    2293                 :            :                     nentries),
    2294                 :            :           elf_ndxscn (scn),
    2295                 :        214 :           elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    2296                 :        214 :           (unsigned int) shdr->sh_info,
    2297                 :        214 :           elf_strptr (ebl->elf, shstrndx, destshdr->sh_name),
    2298                 :            :           shdr->sh_offset,
    2299                 :            :           nentries);
    2300                 :            :   else
    2301                 :            :     /* The .rela.dyn section does not refer to a specific section but
    2302                 :            :        instead of section index zero.  Do not try to print a section
    2303                 :            :        name.  */
    2304                 :         69 :     printf (ngettext ("\
    2305                 :            : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
    2306                 :            :                     "\
    2307                 :            : \nRelocation section [%2u] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
    2308                 :            :                       nentries),
    2309                 :         69 :             (unsigned int) elf_ndxscn (scn),
    2310                 :         69 :             elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    2311                 :            :             shdr->sh_offset,
    2312                 :            :             nentries);
    2313         [ +  + ]:        283 :   fputs_unlocked (class == ELFCLASS32
    2314                 :         16 :                   ? _("\
    2315                 :            :   Offset      Type            Value       Addend Name\n")
    2316                 :        267 :                   : _("\
    2317                 :            :   Offset              Type            Value               Addend Name\n"),
    2318                 :            :                   stdout);
    2319                 :            : 
    2320                 :        283 :   int is_statically_linked = 0;
    2321         [ +  + ]:      86545 :   for (int cnt = 0; cnt < nentries; ++cnt)
    2322                 :            :     {
    2323                 :      86262 :       GElf_Rela relmem;
    2324                 :      86262 :       GElf_Rela *rel = gelf_getrela (data, cnt, &relmem);
    2325         [ +  - ]:      86262 :       if (likely (rel != NULL))
    2326                 :            :         {
    2327                 :      86262 :           char buf[64];
    2328                 :      86262 :           GElf_Sym symmem;
    2329                 :      86262 :           Elf32_Word xndx;
    2330                 :     172524 :           GElf_Sym *sym = gelf_getsymshndx (symdata, xndxdata,
    2331                 :      86262 :                                             GELF_R_SYM (rel->r_info),
    2332                 :            :                                             &symmem, &xndx);
    2333                 :            : 
    2334         [ -  + ]:      86262 :           if (unlikely (sym == NULL))
    2335                 :            :             {
    2336                 :            :               /* As a special case we have to handle relocations in static
    2337                 :            :                  executables.  This only happens for IRELATIVE relocations
    2338                 :            :                  (so far).  There is no symbol table.  */
    2339         [ #  # ]:          0 :               if (is_statically_linked == 0)
    2340                 :            :                 {
    2341                 :            :                   /* Find the program header and look for a PT_INTERP entry. */
    2342                 :          0 :                   is_statically_linked = -1;
    2343         [ #  # ]:          0 :                   if (ehdr->e_type == ET_EXEC)
    2344                 :            :                     {
    2345                 :          0 :                       is_statically_linked = 1;
    2346                 :            : 
    2347         [ #  # ]:          0 :                       for (size_t inner = 0; inner < phnum; ++inner)
    2348                 :            :                         {
    2349                 :          0 :                           GElf_Phdr phdr_mem;
    2350                 :          0 :                           GElf_Phdr *phdr = gelf_getphdr (ebl->elf, inner,
    2351                 :            :                                                           &phdr_mem);
    2352   [ #  #  #  # ]:          0 :                           if (phdr != NULL && phdr->p_type == PT_INTERP)
    2353                 :            :                             {
    2354                 :          0 :                               is_statically_linked = -1;
    2355                 :          0 :                               break;
    2356                 :            :                             }
    2357                 :            :                         }
    2358                 :            :                     }
    2359                 :            :                 }
    2360                 :            : 
    2361   [ #  #  #  # ]:          0 :               if (is_statically_linked > 0 && shdr->sh_link == 0)
    2362   [ #  #  #  # ]:          0 :                 printf ("\
    2363                 :            :   %#0*" PRIx64 "  %-15s %*s  %#6" PRIx64 " %s\n",
    2364                 :            :                         class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2365                 :          0 :                         ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
    2366                 :            :                         /* Avoid the leading R_ which isn't carrying any
    2367                 :            :                            information.  */
    2368                 :          0 :                         ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2369                 :            :                                                buf, sizeof (buf)) + 2
    2370                 :          0 :                         : _("<INVALID RELOC>"),
    2371                 :            :                         class == ELFCLASS32 ? 10 : 18, "",
    2372                 :            :                         rel->r_addend,
    2373                 :          0 :                         elf_strptr (ebl->elf, shstrndx, destshdr->sh_name));
    2374                 :            :               else
    2375   [ #  #  #  # ]:          0 :                 printf ("  %#0*" PRIx64 "  %-15s <%s %ld>\n",
    2376                 :            :                         class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2377                 :          0 :                         ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
    2378                 :            :                         /* Avoid the leading R_ which isn't carrying any
    2379                 :            :                            information.  */
    2380                 :          0 :                         ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2381                 :            :                                                buf, sizeof (buf)) + 2
    2382                 :          0 :                         : _("<INVALID RELOC>"),
    2383                 :            :                         _("INVALID SYMBOL"),
    2384                 :          0 :                         (long int) GELF_R_SYM (rel->r_info));
    2385                 :            :             }
    2386         [ +  + ]:      86262 :           else if (GELF_ST_TYPE (sym->st_info) != STT_SECTION)
    2387         [ +  + ]:     150291 :             printf ("\
    2388                 :            :   %#0*" PRIx64 "  %-15s %#0*" PRIx64 "  %+6" PRId64 " %s\n",
    2389                 :            :                     class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2390         [ +  - ]:      64029 :                     likely (ebl_reloc_type_check (ebl,
    2391                 :            :                                                   GELF_R_TYPE (rel->r_info)))
    2392                 :            :                     /* Avoid the leading R_ which isn't carrying any
    2393                 :            :                        information.  */
    2394                 :      64029 :                     ? 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, sym->st_value,
    2398                 :            :                     rel->r_addend,
    2399                 :      64029 :                     elf_strptr (ebl->elf, symshdr->sh_link, sym->st_name));
    2400                 :            :           else
    2401                 :            :             {
    2402                 :            :               /* This is a relocation against a STT_SECTION symbol.  */
    2403                 :      22233 :               GElf_Shdr secshdr_mem;
    2404                 :      22233 :               GElf_Shdr *secshdr;
    2405                 :      22233 :               secshdr = gelf_getshdr (elf_getscn (ebl->elf,
    2406         [ +  - ]:      22233 :                                                   sym->st_shndx == SHN_XINDEX
    2407                 :          0 :                                                   ? xndx : sym->st_shndx),
    2408                 :            :                                       &secshdr_mem);
    2409                 :            : 
    2410         [ -  + ]:      22233 :               if (unlikely (secshdr == NULL))
    2411   [ #  #  #  # ]:          0 :                 printf ("  %#0*" PRIx64 "  %-15s <%s %ld>\n",
    2412                 :            :                         class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2413                 :          0 :                         ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
    2414                 :            :                         /* Avoid the leading R_ which isn't carrying any
    2415                 :            :                            information.  */
    2416                 :          0 :                         ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2417                 :            :                                                buf, sizeof (buf)) + 2
    2418                 :          0 :                         : _("<INVALID RELOC>"),
    2419                 :            :                         _("INVALID SECTION"),
    2420         [ #  # ]:          0 :                         (long int) (sym->st_shndx == SHN_XINDEX
    2421                 :          0 :                                     ? xndx : sym->st_shndx));
    2422                 :            :               else
    2423   [ +  +  +  - ]:      66699 :                 printf ("\
    2424                 :            :   %#0*" PRIx64 "  %-15s %#0*" PRIx64 "  %+6" PRId64 " %s\n",
    2425                 :            :                         class == ELFCLASS32 ? 10 : 18, rel->r_offset,
    2426                 :      22233 :                         ebl_reloc_type_check (ebl, GELF_R_TYPE (rel->r_info))
    2427                 :            :                         /* Avoid the leading R_ which isn't carrying any
    2428                 :            :                            information.  */
    2429                 :      22233 :                         ? ebl_reloc_type_name (ebl, GELF_R_TYPE (rel->r_info),
    2430                 :            :                                                buf, sizeof (buf)) + 2
    2431                 :          0 :                         : _("<INVALID RELOC>"),
    2432                 :            :                         class == ELFCLASS32 ? 10 : 18, sym->st_value,
    2433                 :            :                         rel->r_addend,
    2434                 :      22233 :                         elf_strptr (ebl->elf, shstrndx, secshdr->sh_name));
    2435                 :            :             }
    2436                 :            :         }
    2437                 :            :     }
    2438                 :            : }
    2439                 :            : 
    2440                 :            : 
    2441                 :            : /* Print the program header.  Return true if a symtab is printed,
    2442                 :            :    false otherwise.  */
    2443                 :            : static bool
    2444                 :        319 : print_symtab (Ebl *ebl, int type)
    2445                 :            : {
    2446                 :            :   /* Find the symbol table(s).  For this we have to search through the
    2447                 :            :      section table.  */
    2448                 :        319 :   Elf_Scn *scn = NULL;
    2449                 :        319 :   bool symtab_printed = false;
    2450                 :            : 
    2451         [ +  + ]:       9420 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
    2452                 :            :     {
    2453                 :            :       /* Handle the section if it is a symbol table.  */
    2454                 :       9101 :       GElf_Shdr shdr_mem;
    2455                 :       9101 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    2456                 :            : 
    2457   [ +  -  +  + ]:       9101 :       if (shdr != NULL && shdr->sh_type == (GElf_Word) type)
    2458                 :            :         {
    2459         [ +  + ]:        187 :           if (symbol_table_section != NULL)
    2460                 :            :             {
    2461                 :            :               /* Get the section header string table index.  */
    2462                 :          7 :               size_t shstrndx;
    2463                 :          7 :               const char *sname;
    2464         [ -  + ]:          7 :               if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    2465                 :          0 :                 error_exit (0,
    2466                 :            :                             _("cannot get section header string table index"));
    2467                 :          7 :               sname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name);
    2468   [ +  -  +  + ]:          7 :               if (sname == NULL || strcmp (sname, symbol_table_section) != 0)
    2469                 :          4 :                 continue;
    2470                 :            :             }
    2471                 :            : 
    2472         [ -  + ]:        183 :           if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
    2473                 :            :             {
    2474         [ #  # ]:          0 :               if (elf_compress (scn, 0, 0) < 0)
    2475                 :          0 :                 printf ("WARNING: %s [%zd]\n",
    2476                 :            :                         _("Couldn't uncompress section"),
    2477                 :            :                         elf_ndxscn (scn));
    2478                 :          0 :               shdr = gelf_getshdr (scn, &shdr_mem);
    2479         [ #  # ]:          0 :               if (unlikely (shdr == NULL))
    2480                 :          0 :                 error_exit (0,
    2481                 :            :                             _("cannot get section [%zd] header: %s"),
    2482                 :            :                             elf_ndxscn (scn), elf_errmsg (-1));
    2483                 :            :             }
    2484                 :        183 :           handle_symtab (ebl, scn, shdr);
    2485                 :        183 :           symtab_printed = true;
    2486                 :            :         }
    2487                 :            :     }
    2488                 :            : 
    2489                 :        319 :   return symtab_printed;
    2490                 :            : }
    2491                 :            : 
    2492                 :            : 
    2493                 :            : static void
    2494                 :        183 : handle_symtab (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
    2495                 :            : {
    2496                 :        183 :   Elf_Data *versym_data = NULL;
    2497                 :        183 :   Elf_Data *verneed_data = NULL;
    2498                 :        183 :   Elf_Data *verdef_data = NULL;
    2499                 :        183 :   Elf_Data *xndx_data = NULL;
    2500                 :        183 :   int class = gelf_getclass (ebl->elf);
    2501                 :        183 :   Elf32_Word verneed_stridx = 0;
    2502                 :        183 :   Elf32_Word verdef_stridx = 0;
    2503                 :            : 
    2504                 :            :   /* Get the data of the section.  */
    2505                 :        183 :   Elf_Data *data = elf_getdata (scn, NULL);
    2506         [ -  + ]:        183 :   if (data == NULL)
    2507                 :          0 :     return;
    2508                 :            : 
    2509                 :            :   /* Find out whether we have other sections we might need.  */
    2510                 :            :   Elf_Scn *runscn = NULL;
    2511         [ +  + ]:       5554 :   while ((runscn = elf_nextscn (ebl->elf, runscn)) != NULL)
    2512                 :            :     {
    2513                 :       5371 :       GElf_Shdr runshdr_mem;
    2514                 :       5371 :       GElf_Shdr *runshdr = gelf_getshdr (runscn, &runshdr_mem);
    2515                 :            : 
    2516         [ +  - ]:       5371 :       if (likely (runshdr != NULL))
    2517                 :            :         {
    2518         [ +  + ]:       5371 :           if (runshdr->sh_type == SHT_GNU_versym
    2519         [ +  + ]:        115 :               && runshdr->sh_link == elf_ndxscn (scn))
    2520                 :            :             /* Bingo, found the version information.  Now get the data.  */
    2521                 :         89 :             versym_data = elf_getdata (runscn, NULL);
    2522         [ +  + ]:       5282 :           else if (runshdr->sh_type == SHT_GNU_verneed)
    2523                 :            :             {
    2524                 :            :               /* This is the information about the needed versions.  */
    2525                 :        115 :               verneed_data = elf_getdata (runscn, NULL);
    2526                 :        115 :               verneed_stridx = runshdr->sh_link;
    2527                 :            :             }
    2528         [ +  + ]:       5167 :           else if (runshdr->sh_type == SHT_GNU_verdef)
    2529                 :            :             {
    2530                 :            :               /* This is the information about the defined versions.  */
    2531                 :          4 :               verdef_data = elf_getdata (runscn, NULL);
    2532                 :          4 :               verdef_stridx = runshdr->sh_link;
    2533                 :            :             }
    2534         [ -  + ]:       5163 :           else if (runshdr->sh_type == SHT_SYMTAB_SHNDX
    2535         [ #  # ]:          0 :               && runshdr->sh_link == elf_ndxscn (scn))
    2536                 :            :             /* Extended section index.  */
    2537                 :          0 :             xndx_data = elf_getdata (runscn, NULL);
    2538                 :            :         }
    2539                 :            :     }
    2540                 :            : 
    2541                 :            :   /* Get the section header string table index.  */
    2542                 :        183 :   size_t shstrndx;
    2543         [ -  + ]:        183 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    2544                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    2545                 :            : 
    2546                 :        183 :   GElf_Shdr glink_mem;
    2547                 :        183 :   GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
    2548                 :            :                                    &glink_mem);
    2549         [ -  + ]:        183 :   if (glink == NULL)
    2550                 :          0 :     error_exit (0, _("invalid sh_link value in section %zu"),
    2551                 :            :                 elf_ndxscn (scn));
    2552                 :            : 
    2553                 :            :   /* Now we can compute the number of entries in the section.  */
    2554                 :        366 :   unsigned int nsyms = data->d_size / (class == ELFCLASS32
    2555                 :            :                                        ? sizeof (Elf32_Sym)
    2556         [ +  + ]:        183 :                                        : sizeof (Elf64_Sym));
    2557                 :            : 
    2558                 :        183 :   printf (ngettext ("\nSymbol table [%2u] '%s' contains %u entry:\n",
    2559                 :            :                     "\nSymbol table [%2u] '%s' contains %u entries:\n",
    2560                 :            :                     nsyms),
    2561                 :        183 :           (unsigned int) elf_ndxscn (scn),
    2562                 :        183 :           elf_strptr (ebl->elf, shstrndx, shdr->sh_name), nsyms);
    2563                 :        183 :   printf (ngettext (" %lu local symbol  String table: [%2u] '%s'\n",
    2564                 :            :                     " %lu local symbols  String table: [%2u] '%s'\n",
    2565                 :            :                     shdr->sh_info),
    2566                 :        183 :           (unsigned long int) shdr->sh_info,
    2567                 :        183 :           (unsigned int) shdr->sh_link,
    2568                 :        183 :           elf_strptr (ebl->elf, shstrndx, glink->sh_name));
    2569                 :            : 
    2570         [ +  + ]:        183 :   fputs_unlocked (class == ELFCLASS32
    2571                 :         27 :                   ? _("\
    2572                 :            :   Num:    Value   Size Type    Bind   Vis          Ndx Name\n")
    2573                 :        156 :                   : _("\
    2574                 :            :   Num:            Value   Size Type    Bind   Vis          Ndx Name\n"),
    2575                 :            :                   stdout);
    2576                 :            : 
    2577         [ +  + ]:      40147 :   for (unsigned int cnt = 0; cnt < nsyms; ++cnt)
    2578                 :            :     {
    2579                 :      39964 :       char typebuf[64];
    2580                 :      39964 :       char bindbuf[64];
    2581                 :      39964 :       char scnbuf[64];
    2582                 :      39964 :       Elf32_Word xndx;
    2583                 :      39964 :       GElf_Sym sym_mem;
    2584                 :      39964 :       GElf_Sym *sym = gelf_getsymshndx (data, xndx_data, cnt, &sym_mem, &xndx);
    2585                 :            : 
    2586         [ -  + ]:      39964 :       if (unlikely (sym == NULL))
    2587                 :          0 :         continue;
    2588                 :            : 
    2589                 :            :       /* Determine the real section index.  */
    2590         [ +  - ]:      39964 :       if (likely (sym->st_shndx != SHN_XINDEX))
    2591                 :      39964 :         xndx = sym->st_shndx;
    2592                 :            : 
    2593         [ +  + ]:      79215 :       printf (_("\
    2594                 :            : %5u: %0*" PRIx64 " %6" PRId64 " %-7s %-6s %-9s %6s %s"),
    2595                 :            :               cnt,
    2596                 :            :               class == ELFCLASS32 ? 8 : 16,
    2597                 :            :               sym->st_value,
    2598                 :            :               sym->st_size,
    2599                 :      39964 :               ebl_symbol_type_name (ebl, GELF_ST_TYPE (sym->st_info),
    2600                 :            :                                     typebuf, sizeof (typebuf)),
    2601                 :      39964 :               ebl_symbol_binding_name (ebl, GELF_ST_BIND (sym->st_info),
    2602                 :            :                                        bindbuf, sizeof (bindbuf)),
    2603                 :      39964 :               get_visibility_type (GELF_ST_VISIBILITY (sym->st_other)),
    2604                 :      39964 :               ebl_section_name (ebl, sym->st_shndx, xndx, scnbuf,
    2605                 :            :                                 sizeof (scnbuf), NULL, shnum),
    2606                 :      39964 :               elf_strptr (ebl->elf, shdr->sh_link, sym->st_name));
    2607                 :            : 
    2608         [ +  + ]:      39964 :       if (versym_data != NULL)
    2609                 :            :         {
    2610                 :            :           /* Get the version information.  */
    2611                 :       1961 :           GElf_Versym versym_mem;
    2612                 :       1961 :           GElf_Versym *versym = gelf_getversym (versym_data, cnt, &versym_mem);
    2613                 :            : 
    2614   [ +  -  +  + ]:       1961 :           if (versym != NULL && ((*versym & 0x8000) != 0 || *versym > 1))
    2615                 :            :             {
    2616                 :       1417 :               bool is_nobits = false;
    2617                 :       1417 :               bool check_def = xndx != SHN_UNDEF;
    2618                 :            : 
    2619   [ +  +  -  + ]:       1417 :               if (xndx < SHN_LORESERVE || sym->st_shndx == SHN_XINDEX)
    2620                 :            :                 {
    2621                 :       1407 :                   GElf_Shdr symshdr_mem;
    2622                 :       1407 :                   GElf_Shdr *symshdr =
    2623                 :       1407 :                     gelf_getshdr (elf_getscn (ebl->elf, xndx), &symshdr_mem);
    2624                 :            : 
    2625                 :       1407 :                   is_nobits = (symshdr != NULL
    2626   [ +  -  +  + ]:       1407 :                                && symshdr->sh_type == SHT_NOBITS);
    2627                 :            :                 }
    2628                 :            : 
    2629         [ +  + ]:       1417 :               if (is_nobits || ! check_def)
    2630                 :            :                 {
    2631                 :            :                   /* We must test both.  */
    2632                 :       1265 :                   GElf_Vernaux vernaux_mem;
    2633                 :       1265 :                   GElf_Vernaux *vernaux = NULL;
    2634                 :       1265 :                   size_t vn_offset = 0;
    2635                 :            : 
    2636                 :       1265 :                   GElf_Verneed verneed_mem;
    2637                 :       1265 :                   GElf_Verneed *verneed = gelf_getverneed (verneed_data, 0,
    2638                 :            :                                                            &verneed_mem);
    2639         [ +  - ]:       5775 :                   while (verneed != NULL)
    2640                 :            :                     {
    2641                 :       5775 :                       size_t vna_offset = vn_offset;
    2642                 :            : 
    2643                 :       5775 :                       vernaux = gelf_getvernaux (verneed_data,
    2644                 :       5775 :                                                  vna_offset += verneed->vn_aux,
    2645                 :            :                                                  &vernaux_mem);
    2646         [ +  - ]:       9844 :                       while (vernaux != NULL
    2647         [ +  + ]:       9844 :                              && vernaux->vna_other != *versym
    2648         [ +  + ]:       8579 :                              && vernaux->vna_next != 0
    2649                 :       4069 :                              && (verneed_data->d_size - vna_offset
    2650         [ +  - ]:       4069 :                                  >= vernaux->vna_next))
    2651                 :            :                         {
    2652                 :            :                           /* Update the offset.  */
    2653                 :       4069 :                           vna_offset += vernaux->vna_next;
    2654                 :            : 
    2655                 :       4069 :                           vernaux = (vernaux->vna_next == 0
    2656                 :            :                                      ? NULL
    2657                 :       4069 :                                      : gelf_getvernaux (verneed_data,
    2658                 :            :                                                         vna_offset,
    2659                 :            :                                                         &vernaux_mem));
    2660                 :            :                         }
    2661                 :            : 
    2662                 :            :                       /* Check whether we found the version.  */
    2663   [ +  -  +  + ]:       5775 :                       if (vernaux != NULL && vernaux->vna_other == *versym)
    2664                 :            :                         /* Found it.  */
    2665                 :            :                         break;
    2666                 :            : 
    2667         [ +  - ]:       4510 :                       if (verneed_data->d_size - vn_offset < verneed->vn_next)
    2668                 :            :                         break;
    2669                 :            : 
    2670                 :       4510 :                       vn_offset += verneed->vn_next;
    2671                 :       4510 :                       verneed = (verneed->vn_next == 0
    2672                 :            :                                  ? NULL
    2673         [ +  - ]:       4510 :                                  : gelf_getverneed (verneed_data, vn_offset,
    2674                 :            :                                                     &verneed_mem));
    2675                 :            :                     }
    2676                 :            : 
    2677   [ +  -  +  - ]:       1265 :                   if (vernaux != NULL && vernaux->vna_other == *versym)
    2678                 :            :                     {
    2679                 :       1265 :                       printf ("@%s (%u)",
    2680                 :            :                               elf_strptr (ebl->elf, verneed_stridx,
    2681                 :       1265 :                                           vernaux->vna_name),
    2682                 :            :                               (unsigned int) vernaux->vna_other);
    2683                 :       1265 :                       check_def = 0;
    2684                 :            :                     }
    2685         [ #  # ]:          0 :                   else if (unlikely (! is_nobits))
    2686                 :          0 :                     error (0, 0, _("bad dynamic symbol"));
    2687                 :            :                   else
    2688                 :            :                     check_def = 1;
    2689                 :            :                 }
    2690                 :            : 
    2691   [ +  -  +  - ]:       1417 :               if (check_def && *versym != 0x8001)
    2692                 :            :                 {
    2693                 :            :                   /* We must test both.  */
    2694                 :        152 :                   size_t vd_offset = 0;
    2695                 :            : 
    2696                 :        152 :                   GElf_Verdef verdef_mem;
    2697                 :        152 :                   GElf_Verdef *verdef = gelf_getverdef (verdef_data, 0,
    2698                 :            :                                                         &verdef_mem);
    2699         [ +  - ]:        433 :                   while (verdef != NULL)
    2700                 :            :                     {
    2701         [ +  + ]:        433 :                       if (verdef->vd_ndx == (*versym & 0x7fff))
    2702                 :            :                         /* Found the definition.  */
    2703                 :            :                         break;
    2704                 :            : 
    2705         [ +  - ]:        281 :                       if (verdef_data->d_size - vd_offset < verdef->vd_next)
    2706                 :            :                         break;
    2707                 :            : 
    2708                 :        281 :                       vd_offset += verdef->vd_next;
    2709                 :        281 :                       verdef = (verdef->vd_next == 0
    2710                 :            :                                 ? NULL
    2711         [ +  - ]:        281 :                                 : gelf_getverdef (verdef_data, vd_offset,
    2712                 :            :                                                   &verdef_mem));
    2713                 :            :                     }
    2714                 :            : 
    2715         [ +  - ]:        152 :                   if (verdef != NULL)
    2716                 :            :                     {
    2717                 :        152 :                       GElf_Verdaux verdaux_mem;
    2718                 :        152 :                       GElf_Verdaux *verdaux
    2719                 :        304 :                         = gelf_getverdaux (verdef_data,
    2720                 :        152 :                                            vd_offset + verdef->vd_aux,
    2721                 :            :                                            &verdaux_mem);
    2722                 :            : 
    2723         [ +  - ]:        152 :                       if (verdaux != NULL)
    2724         [ +  - ]:        304 :                         printf ((*versym & 0x8000) ? "@%s" : "@@%s",
    2725                 :            :                                 elf_strptr (ebl->elf, verdef_stridx,
    2726                 :        152 :                                             verdaux->vda_name));
    2727                 :            :                     }
    2728                 :            :                 }
    2729                 :            :             }
    2730                 :            :         }
    2731                 :            : 
    2732         [ +  + ]:      79928 :       putchar_unlocked ('\n');
    2733                 :            :     }
    2734                 :            : }
    2735                 :            : 
    2736                 :            : 
    2737                 :            : /* Print version information.  */
    2738                 :            : static void
    2739                 :        142 : print_verinfo (Ebl *ebl)
    2740                 :            : {
    2741                 :            :   /* Find the version information sections.  For this we have to
    2742                 :            :      search through the section table.  */
    2743                 :        142 :   Elf_Scn *scn = NULL;
    2744                 :            : 
    2745         [ +  + ]:       4198 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
    2746                 :            :     {
    2747                 :            :       /* Handle the section if it is part of the versioning handling.  */
    2748                 :       4056 :       GElf_Shdr shdr_mem;
    2749                 :       4056 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    2750                 :            : 
    2751         [ +  - ]:       4056 :       if (likely (shdr != NULL))
    2752                 :            :         {
    2753         [ +  + ]:       4056 :           if (shdr->sh_type == SHT_GNU_verneed)
    2754                 :         79 :             handle_verneed (ebl, scn, shdr);
    2755         [ +  + ]:       3977 :           else if (shdr->sh_type == SHT_GNU_verdef)
    2756                 :          2 :             handle_verdef (ebl, scn, shdr);
    2757         [ +  + ]:       3975 :           else if (shdr->sh_type == SHT_GNU_versym)
    2758                 :         79 :             handle_versym (ebl, scn, shdr);
    2759                 :            :         }
    2760                 :            :     }
    2761                 :        142 : }
    2762                 :            : 
    2763                 :            : 
    2764                 :            : static const char *
    2765                 :        190 : get_ver_flags (unsigned int flags)
    2766                 :            : {
    2767                 :        190 :   static char buf[32];
    2768                 :        190 :   char *endp;
    2769                 :            : 
    2770         [ +  + ]:        190 :   if (flags == 0)
    2771                 :        188 :     return _("none");
    2772                 :            : 
    2773         [ +  - ]:          2 :   if (flags & VER_FLG_BASE)
    2774                 :          2 :     endp = stpcpy (buf, "BASE ");
    2775                 :            :   else
    2776                 :            :     endp = buf;
    2777                 :            : 
    2778         [ -  + ]:          2 :   if (flags & VER_FLG_WEAK)
    2779                 :            :     {
    2780         [ #  # ]:          0 :       if (endp != buf)
    2781                 :          0 :         endp = stpcpy (endp, "| ");
    2782                 :            : 
    2783                 :          0 :       endp = stpcpy (endp, "WEAK ");
    2784                 :            :     }
    2785                 :            : 
    2786         [ -  + ]:          2 :   if (unlikely (flags & ~(VER_FLG_BASE | VER_FLG_WEAK)))
    2787                 :            :     {
    2788                 :          0 :       strncpy (endp, _("| <unknown>"), buf + sizeof (buf) - endp);
    2789                 :          0 :       buf[sizeof (buf) - 1] = '\0';
    2790                 :            :     }
    2791                 :            : 
    2792                 :            :   return buf;
    2793                 :            : }
    2794                 :            : 
    2795                 :            : 
    2796                 :            : static void
    2797                 :         79 : handle_verneed (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
    2798                 :            : {
    2799                 :         79 :   int class = gelf_getclass (ebl->elf);
    2800                 :            : 
    2801                 :            :   /* Get the data of the section.  */
    2802                 :         79 :   Elf_Data *data = elf_getdata (scn, NULL);
    2803         [ -  + ]:         79 :   if (data == NULL)
    2804                 :          0 :     return;
    2805                 :            : 
    2806                 :            :   /* Get the section header string table index.  */
    2807                 :         79 :   size_t shstrndx;
    2808         [ -  + ]:         79 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    2809                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    2810                 :            : 
    2811                 :         79 :   GElf_Shdr glink_mem;
    2812                 :         79 :   GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
    2813                 :            :                                    &glink_mem);
    2814         [ -  + ]:         79 :   if (glink == NULL)
    2815                 :          0 :     error_exit (0, _("invalid sh_link value in section %zu"),
    2816                 :            :                 elf_ndxscn (scn));
    2817                 :            : 
    2818                 :         79 :   printf (ngettext ("\
    2819                 :            : \nVersion needs section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "  Link to section: [%2u] '%s'\n",
    2820                 :            :                     "\
    2821                 :            : \nVersion needs section [%2u] '%s' contains %d entries:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "  Link to section: [%2u] '%s'\n",
    2822                 :            :                     shdr->sh_info),
    2823                 :         79 :           (unsigned int) elf_ndxscn (scn),
    2824                 :         79 :           elf_strptr (ebl->elf, shstrndx, shdr->sh_name), shdr->sh_info,
    2825                 :            :           class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
    2826                 :            :           shdr->sh_offset,
    2827         [ +  + ]:         79 :           (unsigned int) shdr->sh_link,
    2828                 :         79 :           elf_strptr (ebl->elf, shstrndx, glink->sh_name));
    2829                 :            : 
    2830                 :         79 :   unsigned int offset = 0;
    2831         [ +  - ]:        123 :   for (int cnt = shdr->sh_info; --cnt >= 0; )
    2832                 :            :     {
    2833                 :            :       /* Get the data at the next offset.  */
    2834                 :        123 :       GElf_Verneed needmem;
    2835                 :        123 :       GElf_Verneed *need = gelf_getverneed (data, offset, &needmem);
    2836         [ +  - ]:        123 :       if (unlikely (need == NULL))
    2837                 :            :         break;
    2838                 :            : 
    2839                 :        369 :       printf (_("  %#06x: Version: %hu  File: %s  Cnt: %hu\n"),
    2840                 :        123 :               offset, (unsigned short int) need->vn_version,
    2841                 :        123 :               elf_strptr (ebl->elf, shdr->sh_link, need->vn_file),
    2842                 :        123 :               (unsigned short int) need->vn_cnt);
    2843                 :            : 
    2844                 :        123 :       unsigned int auxoffset = offset + need->vn_aux;
    2845         [ +  - ]:        178 :       for (int cnt2 = need->vn_cnt; --cnt2 >= 0; )
    2846                 :            :         {
    2847                 :        178 :           GElf_Vernaux auxmem;
    2848                 :        178 :           GElf_Vernaux *aux = gelf_getvernaux (data, auxoffset, &auxmem);
    2849         [ +  - ]:        178 :           if (unlikely (aux == NULL))
    2850                 :            :             break;
    2851                 :            : 
    2852                 :        178 :           printf (_("  %#06x: Name: %s  Flags: %s  Version: %hu\n"),
    2853                 :            :                   auxoffset,
    2854                 :        178 :                   elf_strptr (ebl->elf, shdr->sh_link, aux->vna_name),
    2855                 :        178 :                   get_ver_flags (aux->vna_flags),
    2856                 :        178 :                   (unsigned short int) aux->vna_other);
    2857                 :            : 
    2858         [ +  + ]:        178 :           if (aux->vna_next == 0)
    2859                 :            :             break;
    2860                 :            : 
    2861                 :         55 :           auxoffset += aux->vna_next;
    2862                 :            :         }
    2863                 :            : 
    2864                 :            :       /* Find the next offset.  */
    2865         [ +  + ]:        123 :       if (need->vn_next == 0)
    2866                 :            :         break;
    2867                 :            : 
    2868                 :         44 :       offset += need->vn_next;
    2869                 :            :     }
    2870                 :            : }
    2871                 :            : 
    2872                 :            : 
    2873                 :            : static void
    2874                 :          2 : handle_verdef (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
    2875                 :            : {
    2876                 :            :   /* Get the data of the section.  */
    2877                 :          2 :   Elf_Data *data = elf_getdata (scn, NULL);
    2878         [ -  + ]:          2 :   if (data == NULL)
    2879                 :          0 :     return;
    2880                 :            : 
    2881                 :            :   /* Get the section header string table index.  */
    2882                 :          2 :   size_t shstrndx;
    2883         [ -  + ]:          2 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    2884                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    2885                 :            : 
    2886                 :          2 :   GElf_Shdr glink_mem;
    2887                 :          2 :   GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
    2888                 :            :                                    &glink_mem);
    2889         [ -  + ]:          2 :   if (glink == NULL)
    2890                 :          0 :     error_exit (0, _("invalid sh_link value in section %zu"),
    2891                 :            :                 elf_ndxscn (scn));
    2892                 :            : 
    2893                 :          2 :   int class = gelf_getclass (ebl->elf);
    2894                 :          2 :   printf (ngettext ("\
    2895                 :            : \nVersion definition section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "  Link to section: [%2u] '%s'\n",
    2896                 :            :                     "\
    2897                 :            : \nVersion definition section [%2u] '%s' contains %d entries:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "  Link to section: [%2u] '%s'\n",
    2898                 :            :                     shdr->sh_info),
    2899                 :          2 :           (unsigned int) elf_ndxscn (scn),
    2900                 :          2 :           elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    2901                 :            :           shdr->sh_info,
    2902                 :            :           class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
    2903                 :            :           shdr->sh_offset,
    2904         [ +  - ]:          2 :           (unsigned int) shdr->sh_link,
    2905                 :          2 :           elf_strptr (ebl->elf, shstrndx, glink->sh_name));
    2906                 :            : 
    2907                 :          2 :   unsigned int offset = 0;
    2908         [ +  - ]:         12 :   for (int cnt = shdr->sh_info; --cnt >= 0; )
    2909                 :            :     {
    2910                 :            :       /* Get the data at the next offset.  */
    2911                 :         12 :       GElf_Verdef defmem;
    2912                 :         12 :       GElf_Verdef *def = gelf_getverdef (data, offset, &defmem);
    2913         [ +  - ]:         12 :       if (unlikely (def == NULL))
    2914                 :            :         break;
    2915                 :            : 
    2916                 :         12 :       unsigned int auxoffset = offset + def->vd_aux;
    2917                 :         12 :       GElf_Verdaux auxmem;
    2918                 :         12 :       GElf_Verdaux *aux = gelf_getverdaux (data, auxoffset, &auxmem);
    2919         [ +  - ]:         12 :       if (unlikely (aux == NULL))
    2920                 :            :         break;
    2921                 :            : 
    2922                 :         48 :       printf (_("\
    2923                 :            :   %#06x: Version: %hd  Flags: %s  Index: %hd  Cnt: %hd  Name: %s\n"),
    2924                 :         12 :               offset, def->vd_version,
    2925                 :         12 :               get_ver_flags (def->vd_flags),
    2926                 :         12 :               def->vd_ndx,
    2927                 :         12 :               def->vd_cnt,
    2928                 :         12 :               elf_strptr (ebl->elf, shdr->sh_link, aux->vda_name));
    2929                 :            : 
    2930                 :         12 :       auxoffset += aux->vda_next;
    2931         [ +  + ]:         12 :       for (int cnt2 = 1; cnt2 < def->vd_cnt; ++cnt2)
    2932                 :            :         {
    2933                 :          8 :           aux = gelf_getverdaux (data, auxoffset, &auxmem);
    2934         [ +  - ]:          8 :           if (unlikely (aux == NULL))
    2935                 :            :             break;
    2936                 :            : 
    2937                 :          8 :           printf (_("  %#06x: Parent %d: %s\n"),
    2938                 :            :                   auxoffset, cnt2,
    2939                 :          8 :                   elf_strptr (ebl->elf, shdr->sh_link, aux->vda_name));
    2940                 :            : 
    2941         [ -  + ]:          8 :           if (aux->vda_next == 0)
    2942                 :            :             break;
    2943                 :            : 
    2944                 :          0 :           auxoffset += aux->vda_next;
    2945                 :            :         }
    2946                 :            : 
    2947                 :            :       /* Find the next offset.  */
    2948         [ +  + ]:         12 :       if (def->vd_next == 0)
    2949                 :            :         break;
    2950                 :         10 :       offset += def->vd_next;
    2951                 :            :     }
    2952                 :            : }
    2953                 :            : 
    2954                 :            : 
    2955                 :            : static void
    2956                 :         79 : handle_versym (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr)
    2957                 :            : {
    2958                 :         79 :   int class = gelf_getclass (ebl->elf);
    2959                 :         79 :   const char **vername;
    2960                 :         79 :   const char **filename;
    2961                 :            : 
    2962                 :            :   /* Get the data of the section.  */
    2963                 :         79 :   Elf_Data *data = elf_getdata (scn, NULL);
    2964         [ +  - ]:         79 :   if (data == NULL)
    2965                 :          0 :     return;
    2966                 :            : 
    2967                 :            :   /* Get the section header string table index.  */
    2968                 :         79 :   size_t shstrndx;
    2969         [ -  + ]:         79 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    2970                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    2971                 :            : 
    2972                 :            :   /* We have to find the version definition section and extract the
    2973                 :            :      version names.  */
    2974                 :            :   Elf_Scn *defscn = NULL;
    2975                 :            :   Elf_Scn *needscn = NULL;
    2976                 :            : 
    2977                 :            :   Elf_Scn *verscn = NULL;
    2978         [ +  + ]:       2399 :   while ((verscn = elf_nextscn (ebl->elf, verscn)) != NULL)
    2979                 :            :     {
    2980                 :       2320 :       GElf_Shdr vershdr_mem;
    2981                 :       2320 :       GElf_Shdr *vershdr = gelf_getshdr (verscn, &vershdr_mem);
    2982                 :            : 
    2983         [ +  - ]:       2320 :       if (likely (vershdr != NULL))
    2984                 :            :         {
    2985         [ +  + ]:       2320 :           if (vershdr->sh_type == SHT_GNU_verdef)
    2986                 :            :             defscn = verscn;
    2987         [ +  + ]:       2318 :           else if (vershdr->sh_type == SHT_GNU_verneed)
    2988                 :         79 :             needscn = verscn;
    2989                 :            :         }
    2990                 :            :     }
    2991                 :            : 
    2992                 :         79 :   size_t nvername;
    2993         [ +  - ]:         79 :   if (defscn != NULL || needscn != NULL)
    2994                 :            :     {
    2995                 :            :       /* We have a version information (better should have).  Now get
    2996                 :            :          the version names.  First find the maximum version number.  */
    2997                 :         79 :       nvername = 0;
    2998         [ +  + ]:         79 :       if (defscn != NULL)
    2999                 :            :         {
    3000                 :            :           /* Run through the version definitions and find the highest
    3001                 :            :              index.  */
    3002                 :          2 :           unsigned int offset = 0;
    3003                 :          2 :           Elf_Data *defdata;
    3004                 :          2 :           GElf_Shdr defshdrmem;
    3005                 :          2 :           GElf_Shdr *defshdr;
    3006                 :            : 
    3007                 :          2 :           defdata = elf_getdata (defscn, NULL);
    3008         [ +  - ]:          2 :           if (unlikely (defdata == NULL))
    3009                 :          0 :             return;
    3010                 :            : 
    3011                 :          2 :           defshdr = gelf_getshdr (defscn, &defshdrmem);
    3012         [ +  - ]:          2 :           if (unlikely (defshdr == NULL))
    3013                 :            :             return;
    3014                 :            : 
    3015         [ +  - ]:         12 :           for (unsigned int cnt = 0; cnt < defshdr->sh_info; ++cnt)
    3016                 :            :             {
    3017                 :         12 :               GElf_Verdef defmem;
    3018                 :         12 :               GElf_Verdef *def;
    3019                 :            : 
    3020                 :            :               /* Get the data at the next offset.  */
    3021                 :         12 :               def = gelf_getverdef (defdata, offset, &defmem);
    3022         [ +  - ]:         12 :               if (unlikely (def == NULL))
    3023                 :            :                 break;
    3024                 :            : 
    3025                 :         12 :               nvername = MAX (nvername, (size_t) (def->vd_ndx & 0x7fff));
    3026                 :            : 
    3027         [ +  + ]:         12 :               if (def->vd_next == 0)
    3028                 :            :                 break;
    3029                 :         10 :               offset += def->vd_next;
    3030                 :            :             }
    3031                 :            :         }
    3032         [ +  - ]:         79 :       if (needscn != NULL)
    3033                 :            :         {
    3034                 :         79 :           unsigned int offset = 0;
    3035                 :         79 :           Elf_Data *needdata;
    3036                 :         79 :           GElf_Shdr needshdrmem;
    3037                 :         79 :           GElf_Shdr *needshdr;
    3038                 :            : 
    3039                 :         79 :           needdata = elf_getdata (needscn, NULL);
    3040         [ +  - ]:         79 :           if (unlikely (needdata == NULL))
    3041                 :          0 :             return;
    3042                 :            : 
    3043                 :         79 :           needshdr = gelf_getshdr (needscn, &needshdrmem);
    3044         [ +  - ]:         79 :           if (unlikely (needshdr == NULL))
    3045                 :            :             return;
    3046                 :            : 
    3047         [ +  - ]:        123 :           for (unsigned int cnt = 0; cnt < needshdr->sh_info; ++cnt)
    3048                 :            :             {
    3049                 :        123 :               GElf_Verneed needmem;
    3050                 :        123 :               GElf_Verneed *need;
    3051                 :        123 :               unsigned int auxoffset;
    3052                 :        123 :               int cnt2;
    3053                 :            : 
    3054                 :            :               /* Get the data at the next offset.  */
    3055                 :        123 :               need = gelf_getverneed (needdata, offset, &needmem);
    3056         [ +  - ]:        123 :               if (unlikely (need == NULL))
    3057                 :            :                 break;
    3058                 :            : 
    3059                 :            :               /* Run through the auxiliary entries.  */
    3060                 :        123 :               auxoffset = offset + need->vn_aux;
    3061         [ +  - ]:        178 :               for (cnt2 = need->vn_cnt; --cnt2 >= 0; )
    3062                 :            :                 {
    3063                 :        178 :                   GElf_Vernaux auxmem;
    3064                 :        178 :                   GElf_Vernaux *aux;
    3065                 :            : 
    3066                 :        178 :                   aux = gelf_getvernaux (needdata, auxoffset, &auxmem);
    3067         [ +  - ]:        178 :                   if (unlikely (aux == NULL))
    3068                 :            :                     break;
    3069                 :            : 
    3070                 :        178 :                   nvername = MAX (nvername,
    3071                 :            :                                   (size_t) (aux->vna_other & 0x7fff));
    3072                 :            : 
    3073         [ +  + ]:        178 :                   if (aux->vna_next == 0)
    3074                 :            :                     break;
    3075                 :         55 :                   auxoffset += aux->vna_next;
    3076                 :            :                 }
    3077                 :            : 
    3078         [ +  + ]:        123 :               if (need->vn_next == 0)
    3079                 :            :                 break;
    3080                 :         44 :               offset += need->vn_next;
    3081                 :            :             }
    3082                 :            :         }
    3083                 :            : 
    3084                 :            :       /* This is the number of versions we know about.  */
    3085                 :         79 :       ++nvername;
    3086                 :            : 
    3087                 :            :       /* Allocate the array.  */
    3088                 :         79 :       vername = (const char **) alloca (nvername * sizeof (const char *));
    3089         [ +  + ]:         79 :       memset(vername, 0, nvername * sizeof (const char *));
    3090                 :         79 :       filename = (const char **) alloca (nvername * sizeof (const char *));
    3091                 :         79 :       memset(filename, 0, nvername * sizeof (const char *));
    3092                 :            : 
    3093                 :            :       /* Run through the data structures again and collect the strings.  */
    3094         [ +  + ]:         79 :       if (defscn != NULL)
    3095                 :            :         {
    3096                 :            :           /* Run through the version definitions and find the highest
    3097                 :            :              index.  */
    3098                 :          2 :           unsigned int offset = 0;
    3099                 :          2 :           Elf_Data *defdata;
    3100                 :          2 :           GElf_Shdr defshdrmem;
    3101                 :          2 :           GElf_Shdr *defshdr;
    3102                 :            : 
    3103                 :          2 :           defdata = elf_getdata (defscn, NULL);
    3104         [ +  - ]:          2 :           if (unlikely (defdata == NULL))
    3105                 :          0 :             return;
    3106                 :            : 
    3107                 :          2 :           defshdr = gelf_getshdr (defscn, &defshdrmem);
    3108         [ +  - ]:          2 :           if (unlikely (defshdr == NULL))
    3109                 :            :             return;
    3110                 :            : 
    3111         [ +  - ]:         12 :           for (unsigned int cnt = 0; cnt < defshdr->sh_info; ++cnt)
    3112                 :            :             {
    3113                 :            : 
    3114                 :            :               /* Get the data at the next offset.  */
    3115                 :         12 :               GElf_Verdef defmem;
    3116                 :         12 :               GElf_Verdef *def = gelf_getverdef (defdata, offset, &defmem);
    3117         [ +  - ]:         12 :               if (unlikely (def == NULL))
    3118                 :            :                 break;
    3119                 :            : 
    3120                 :         12 :               GElf_Verdaux auxmem;
    3121                 :         24 :               GElf_Verdaux *aux = gelf_getverdaux (defdata,
    3122                 :         12 :                                                    offset + def->vd_aux,
    3123                 :            :                                                    &auxmem);
    3124         [ +  - ]:         12 :               if (unlikely (aux == NULL))
    3125                 :            :                 break;
    3126                 :            : 
    3127                 :         12 :               vername[def->vd_ndx & 0x7fff]
    3128                 :         12 :                 = elf_strptr (ebl->elf, defshdr->sh_link, aux->vda_name);
    3129                 :         12 :               filename[def->vd_ndx & 0x7fff] = NULL;
    3130                 :            : 
    3131         [ +  + ]:         12 :               if (def->vd_next == 0)
    3132                 :            :                 break;
    3133                 :         10 :               offset += def->vd_next;
    3134                 :            :             }
    3135                 :            :         }
    3136         [ +  - ]:         79 :       if (needscn != NULL)
    3137                 :            :         {
    3138                 :         79 :           unsigned int offset = 0;
    3139                 :            : 
    3140                 :         79 :           Elf_Data *needdata = elf_getdata (needscn, NULL);
    3141                 :         79 :           GElf_Shdr needshdrmem;
    3142                 :         79 :           GElf_Shdr *needshdr = gelf_getshdr (needscn, &needshdrmem);
    3143         [ -  + ]:         79 :           if (unlikely (needdata == NULL || needshdr == NULL))
    3144                 :          0 :             return;
    3145                 :            : 
    3146         [ +  - ]:        123 :           for (unsigned int cnt = 0; cnt < needshdr->sh_info; ++cnt)
    3147                 :            :             {
    3148                 :            :               /* Get the data at the next offset.  */
    3149                 :        123 :               GElf_Verneed needmem;
    3150                 :        123 :               GElf_Verneed *need = gelf_getverneed (needdata, offset,
    3151                 :            :                                                     &needmem);
    3152         [ +  - ]:        123 :               if (unlikely (need == NULL))
    3153                 :            :                 break;
    3154                 :            : 
    3155                 :            :               /* Run through the auxiliary entries.  */
    3156                 :        123 :               unsigned int auxoffset = offset + need->vn_aux;
    3157         [ +  - ]:        178 :               for (int cnt2 = need->vn_cnt; --cnt2 >= 0; )
    3158                 :            :                 {
    3159                 :        178 :                   GElf_Vernaux auxmem;
    3160                 :        178 :                   GElf_Vernaux *aux = gelf_getvernaux (needdata, auxoffset,
    3161                 :            :                                                        &auxmem);
    3162         [ +  - ]:        178 :                   if (unlikely (aux == NULL))
    3163                 :            :                     break;
    3164                 :            : 
    3165                 :        178 :                   vername[aux->vna_other & 0x7fff]
    3166                 :        178 :                     = elf_strptr (ebl->elf, needshdr->sh_link, aux->vna_name);
    3167                 :        178 :                   filename[aux->vna_other & 0x7fff]
    3168                 :        178 :                     = elf_strptr (ebl->elf, needshdr->sh_link, need->vn_file);
    3169                 :            : 
    3170         [ +  + ]:        178 :                   if (aux->vna_next == 0)
    3171                 :            :                     break;
    3172                 :         55 :                   auxoffset += aux->vna_next;
    3173                 :            :                 }
    3174                 :            : 
    3175         [ +  + ]:        123 :               if (need->vn_next == 0)
    3176                 :            :                 break;
    3177                 :         44 :               offset += need->vn_next;
    3178                 :            :             }
    3179                 :            :         }
    3180                 :            :     }
    3181                 :            :   else
    3182                 :            :     {
    3183                 :            :       vername = NULL;
    3184                 :            :       nvername = 1;
    3185                 :            :       filename = NULL;
    3186                 :            :     }
    3187                 :            : 
    3188                 :         79 :   GElf_Shdr glink_mem;
    3189                 :         79 :   GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link),
    3190                 :            :                                    &glink_mem);
    3191                 :         79 :   size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_HALF, 1, EV_CURRENT);
    3192         [ -  + ]:         79 :   if (glink == NULL)
    3193                 :          0 :     error_exit (0, _("invalid sh_link value in section %zu"),
    3194                 :            :                 elf_ndxscn (scn));
    3195                 :            : 
    3196                 :            :   /* Print the header.  */
    3197                 :         79 :   printf (ngettext ("\
    3198                 :            : \nVersion symbols section [%2u] '%s' contains %d entry:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "  Link to section: [%2u] '%s'",
    3199                 :            :                     "\
    3200                 :            : \nVersion symbols section [%2u] '%s' contains %d entries:\n Addr: %#0*" PRIx64 "  Offset: %#08" PRIx64 "  Link to section: [%2u] '%s'",
    3201                 :            :                     shdr->sh_size / sh_entsize),
    3202                 :         79 :           (unsigned int) elf_ndxscn (scn),
    3203                 :         79 :           elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    3204                 :         79 :           (int) (shdr->sh_size / sh_entsize),
    3205                 :            :           class == ELFCLASS32 ? 10 : 18, shdr->sh_addr,
    3206                 :            :           shdr->sh_offset,
    3207         [ +  + ]:         79 :           (unsigned int) shdr->sh_link,
    3208                 :         79 :           elf_strptr (ebl->elf, shstrndx, glink->sh_name));
    3209                 :            : 
    3210                 :            :   /* Now we can finally look at the actual contents of this section.  */
    3211         [ +  + ]:       1911 :   for (unsigned int cnt = 0; cnt < shdr->sh_size / sh_entsize; ++cnt)
    3212                 :            :     {
    3213         [ +  + ]:       1832 :       if (cnt % 2 == 0)
    3214                 :        926 :         printf ("\n %4d:", cnt);
    3215                 :            : 
    3216                 :       1832 :       GElf_Versym symmem;
    3217                 :       1832 :       GElf_Versym *sym = gelf_getversym (data, cnt, &symmem);
    3218         [ +  - ]:       1832 :       if (sym == NULL)
    3219                 :            :         break;
    3220                 :            : 
    3221      [ +  +  + ]:       1832 :       switch (*sym)
    3222                 :            :         {
    3223                 :        412 :           ssize_t n;
    3224                 :        412 :         case 0:
    3225                 :        412 :           fputs_unlocked (_("   0 *local*                     "),
    3226                 :            :                           stdout);
    3227                 :        412 :           break;
    3228                 :            : 
    3229                 :         22 :         case 1:
    3230                 :         22 :           fputs_unlocked (_("   1 *global*                    "),
    3231                 :            :                           stdout);
    3232                 :         22 :           break;
    3233                 :            : 
    3234                 :       1398 :         default:
    3235         [ +  - ]:       2796 :           n = printf ("%4d%c%s",
    3236         [ +  - ]:       1398 :                       *sym & 0x7fff, *sym & 0x8000 ? 'h' : ' ',
    3237                 :            :                       (vername != NULL
    3238         [ +  - ]:       1398 :                        && (unsigned int) (*sym & 0x7fff) < nvername)
    3239                 :       1398 :                       ? vername[*sym & 0x7fff] : "???");
    3240         [ +  - ]:       1398 :           if ((unsigned int) (*sym & 0x7fff) < nvername
    3241   [ +  -  +  + ]:       1398 :               && filename != NULL && filename[*sym & 0x7fff] != NULL)
    3242                 :       1246 :             n += printf ("(%s)", filename[*sym & 0x7fff]);
    3243                 :       1832 :           printf ("%*s", MAX (0, 33 - (int) n), " ");
    3244                 :            :           break;
    3245                 :            :         }
    3246                 :            :     }
    3247         [ -  + ]:        158 :   putchar_unlocked ('\n');
    3248                 :            : }
    3249                 :            : 
    3250                 :            : 
    3251                 :            : static void
    3252                 :         79 : print_hash_info (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx,
    3253                 :            :                  uint_fast32_t maxlength, Elf32_Word nbucket,
    3254                 :            :                  uint_fast32_t nsyms, uint32_t *lengths, const char *extrastr)
    3255                 :            : {
    3256                 :         79 :   uint32_t *counts = xcalloc (maxlength + 1, sizeof (uint32_t));
    3257                 :            : 
    3258         [ +  + ]:        309 :   for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt)
    3259                 :        230 :     ++counts[lengths[cnt]];
    3260                 :            : 
    3261                 :         79 :   GElf_Shdr glink_mem;
    3262                 :         79 :   GElf_Shdr *glink = gelf_getshdr (elf_getscn (ebl->elf,
    3263                 :         79 :                                                shdr->sh_link),
    3264                 :            :                                    &glink_mem);
    3265         [ -  + ]:         79 :   if (glink == NULL)
    3266                 :            :     {
    3267                 :          0 :       error (0, 0, _("invalid sh_link value in section %zu"),
    3268                 :            :              elf_ndxscn (scn));
    3269                 :          0 :       return;
    3270                 :            :     }
    3271                 :            : 
    3272         [ +  + ]:        158 :   printf (ngettext ("\
    3273                 :            : \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",
    3274                 :            :                     "\
    3275                 :            : \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",
    3276                 :            :                     nbucket),
    3277                 :         79 :           (unsigned int) elf_ndxscn (scn),
    3278                 :         79 :           elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    3279                 :            :           (int) nbucket,
    3280                 :         79 :           gelf_getclass (ebl->elf) == ELFCLASS32 ? 10 : 18,
    3281                 :            :           shdr->sh_addr,
    3282                 :            :           shdr->sh_offset,
    3283                 :         79 :           (unsigned int) shdr->sh_link,
    3284                 :         79 :           elf_strptr (ebl->elf, shstrndx, glink->sh_name));
    3285                 :            : 
    3286         [ +  - ]:         79 :   if (extrastr != NULL)
    3287                 :         79 :     fputs (extrastr, stdout);
    3288                 :            : 
    3289         [ +  - ]:         79 :   if (likely (nbucket > 0))
    3290                 :            :     {
    3291                 :         79 :       uint64_t success = 0;
    3292                 :            : 
    3293                 :            :       /* xgettext:no-c-format */
    3294                 :         79 :       fputs_unlocked (_("\
    3295                 :            :  Length  Number  % of total  Coverage\n"), stdout);
    3296                 :         79 :       printf (_("      0  %6" PRIu32 "      %5.1f%%\n"),
    3297                 :         79 :               counts[0], (counts[0] * 100.0) / nbucket);
    3298                 :            : 
    3299                 :         79 :       uint64_t nzero_counts = 0;
    3300         [ +  + ]:        138 :       for (Elf32_Word cnt = 1; cnt <= maxlength; ++cnt)
    3301                 :            :         {
    3302                 :         59 :           nzero_counts += counts[cnt] * cnt;
    3303                 :         59 :           printf (_("\
    3304                 :            : %7d  %6" PRIu32 "      %5.1f%%    %5.1f%%\n"),
    3305                 :         59 :                   (int) cnt, counts[cnt], (counts[cnt] * 100.0) / nbucket,
    3306                 :         59 :                   (nzero_counts * 100.0) / nsyms);
    3307                 :            :         }
    3308                 :            : 
    3309                 :            :       Elf32_Word acc = 0;
    3310         [ +  + ]:        138 :       for (Elf32_Word cnt = 1; cnt <= maxlength; ++cnt)
    3311                 :            :         {
    3312                 :         59 :           acc += cnt;
    3313                 :         59 :           success += counts[cnt] * acc;
    3314                 :            :         }
    3315                 :            : 
    3316                 :        158 :       printf (_("\
    3317                 :            :  Average number of tests:   successful lookup: %f\n\
    3318                 :            :                           unsuccessful lookup: %f\n"),
    3319                 :         79 :               (double) success / (double) nzero_counts,
    3320                 :         79 :               (double) nzero_counts / (double) nbucket);
    3321                 :            :     }
    3322                 :            : 
    3323                 :         79 :   free (counts);
    3324                 :            : }
    3325                 :            : 
    3326                 :            : 
    3327                 :            : /* This function handles the traditional System V-style hash table format.  */
    3328                 :            : static void
    3329                 :          0 : handle_sysv_hash (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx)
    3330                 :            : {
    3331                 :          0 :   Elf_Data *data = elf_getdata (scn, NULL);
    3332         [ #  # ]:          0 :   if (unlikely (data == NULL))
    3333                 :            :     {
    3334                 :          0 :       error (0, 0, _("cannot get data for section %d: %s"),
    3335                 :          0 :              (int) elf_ndxscn (scn), elf_errmsg (-1));
    3336                 :          0 :       return;
    3337                 :            :     }
    3338                 :            : 
    3339         [ #  # ]:          0 :   if (unlikely (data->d_size < 2 * sizeof (Elf32_Word)))
    3340                 :            :     {
    3341                 :          0 :     invalid_data:
    3342                 :          0 :       error (0, 0, _("invalid data in sysv.hash section %d"),
    3343                 :          0 :              (int) elf_ndxscn (scn));
    3344                 :          0 :       return;
    3345                 :            :     }
    3346                 :            : 
    3347                 :          0 :   Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0];
    3348                 :          0 :   Elf32_Word nchain = ((Elf32_Word *) data->d_buf)[1];
    3349                 :            : 
    3350                 :          0 :   uint64_t used_buf = (2ULL + nchain + nbucket) * sizeof (Elf32_Word);
    3351         [ #  # ]:          0 :   if (used_buf > data->d_size)
    3352                 :          0 :     goto invalid_data;
    3353                 :            : 
    3354                 :          0 :   Elf32_Word *bucket = &((Elf32_Word *) data->d_buf)[2];
    3355                 :          0 :   Elf32_Word *chain = &((Elf32_Word *) data->d_buf)[2 + nbucket];
    3356                 :            : 
    3357                 :          0 :   uint32_t *lengths = xcalloc (nbucket, sizeof (uint32_t));
    3358                 :            : 
    3359                 :          0 :   uint_fast32_t maxlength = 0;
    3360                 :          0 :   uint_fast32_t nsyms = 0;
    3361         [ #  # ]:          0 :   for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt)
    3362                 :            :     {
    3363                 :          0 :       Elf32_Word inner = bucket[cnt];
    3364                 :          0 :       Elf32_Word chain_len = 0;
    3365         [ #  # ]:          0 :       while (inner > 0 && inner < nchain)
    3366                 :            :         {
    3367                 :          0 :           ++nsyms;
    3368                 :          0 :           ++chain_len;
    3369         [ #  # ]:          0 :           if (chain_len > nchain)
    3370                 :            :             {
    3371                 :          0 :               error (0, 0, _("invalid chain in sysv.hash section %d"),
    3372                 :          0 :                      (int) elf_ndxscn (scn));
    3373                 :          0 :               free (lengths);
    3374                 :          0 :               return;
    3375                 :            :             }
    3376         [ #  # ]:          0 :           if (maxlength < ++lengths[cnt])
    3377                 :          0 :             ++maxlength;
    3378                 :            : 
    3379                 :          0 :           inner = chain[inner];
    3380                 :            :         }
    3381                 :            :     }
    3382                 :            : 
    3383                 :          0 :   print_hash_info (ebl, scn, shdr, shstrndx, maxlength, nbucket, nsyms,
    3384                 :            :                    lengths, NULL);
    3385                 :            : 
    3386                 :          0 :   free (lengths);
    3387                 :            : }
    3388                 :            : 
    3389                 :            : 
    3390                 :            : /* This function handles the incorrect, System V-style hash table
    3391                 :            :    format some 64-bit architectures use.  */
    3392                 :            : static void
    3393                 :          0 : handle_sysv_hash64 (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx)
    3394                 :            : {
    3395                 :          0 :   Elf_Data *data = elf_getdata (scn, NULL);
    3396         [ #  # ]:          0 :   if (unlikely (data == NULL))
    3397                 :            :     {
    3398                 :          0 :       error (0, 0, _("cannot get data for section %d: %s"),
    3399                 :          0 :              (int) elf_ndxscn (scn), elf_errmsg (-1));
    3400                 :          0 :       return;
    3401                 :            :     }
    3402                 :            : 
    3403         [ #  # ]:          0 :   if (unlikely (data->d_size < 2 * sizeof (Elf64_Xword)))
    3404                 :            :     {
    3405                 :          0 :     invalid_data:
    3406                 :          0 :       error (0, 0, _("invalid data in sysv.hash64 section %d"),
    3407                 :          0 :              (int) elf_ndxscn (scn));
    3408                 :          0 :       return;
    3409                 :            :     }
    3410                 :            : 
    3411                 :          0 :   Elf64_Xword nbucket = ((Elf64_Xword *) data->d_buf)[0];
    3412                 :          0 :   Elf64_Xword nchain = ((Elf64_Xword *) data->d_buf)[1];
    3413                 :            : 
    3414                 :          0 :   uint64_t maxwords = data->d_size / sizeof (Elf64_Xword);
    3415         [ #  # ]:          0 :   if (maxwords < 2
    3416         [ #  # ]:          0 :       || maxwords - 2 < nbucket
    3417         [ #  # ]:          0 :       || maxwords - 2 - nbucket < nchain)
    3418                 :          0 :     goto invalid_data;
    3419                 :            : 
    3420                 :          0 :   Elf64_Xword *bucket = &((Elf64_Xword *) data->d_buf)[2];
    3421                 :          0 :   Elf64_Xword *chain = &((Elf64_Xword *) data->d_buf)[2 + nbucket];
    3422                 :            : 
    3423                 :          0 :   uint32_t *lengths = xcalloc (nbucket, sizeof (uint32_t));
    3424                 :            : 
    3425                 :          0 :   uint_fast32_t maxlength = 0;
    3426                 :          0 :   uint_fast32_t nsyms = 0;
    3427         [ #  # ]:          0 :   for (Elf64_Xword cnt = 0; cnt < nbucket; ++cnt)
    3428                 :            :     {
    3429                 :          0 :       Elf64_Xword inner = bucket[cnt];
    3430                 :          0 :       Elf64_Xword chain_len = 0;
    3431         [ #  # ]:          0 :       while (inner > 0 && inner < nchain)
    3432                 :            :         {
    3433                 :          0 :           ++nsyms;
    3434                 :          0 :           ++chain_len;
    3435         [ #  # ]:          0 :           if (chain_len > nchain)
    3436                 :            :             {
    3437                 :          0 :               error (0, 0, _("invalid chain in sysv.hash64 section %d"),
    3438                 :          0 :                      (int) elf_ndxscn (scn));
    3439                 :          0 :               free (lengths);
    3440                 :          0 :               return;
    3441                 :            :             }
    3442         [ #  # ]:          0 :           if (maxlength < ++lengths[cnt])
    3443                 :          0 :             ++maxlength;
    3444                 :            : 
    3445                 :          0 :           inner = chain[inner];
    3446                 :            :         }
    3447                 :            :     }
    3448                 :            : 
    3449                 :          0 :   print_hash_info (ebl, scn, shdr, shstrndx, maxlength, nbucket, nsyms,
    3450                 :            :                    lengths, NULL);
    3451                 :            : 
    3452                 :          0 :   free (lengths);
    3453                 :            : }
    3454                 :            : 
    3455                 :            : 
    3456                 :            : /* This function handles the GNU-style hash table format.  */
    3457                 :            : static void
    3458                 :         79 : handle_gnu_hash (Ebl *ebl, Elf_Scn *scn, GElf_Shdr *shdr, size_t shstrndx)
    3459                 :            : {
    3460                 :         79 :   uint32_t *lengths = NULL;
    3461                 :         79 :   Elf_Data *data = elf_getdata (scn, NULL);
    3462         [ -  + ]:         79 :   if (unlikely (data == NULL))
    3463                 :            :     {
    3464                 :          0 :       error (0, 0, _("cannot get data for section %d: %s"),
    3465                 :          0 :              (int) elf_ndxscn (scn), elf_errmsg (-1));
    3466                 :          0 :       return;
    3467                 :            :     }
    3468                 :            : 
    3469         [ -  + ]:         79 :   if (unlikely (data->d_size < 4 * sizeof (Elf32_Word)))
    3470                 :            :     {
    3471                 :          0 :     invalid_data:
    3472                 :          0 :       free (lengths);
    3473                 :          0 :       error (0, 0, _("invalid data in gnu.hash section %d"),
    3474                 :          0 :              (int) elf_ndxscn (scn));
    3475                 :          0 :       return;
    3476                 :            :     }
    3477                 :            : 
    3478                 :         79 :   Elf32_Word nbucket = ((Elf32_Word *) data->d_buf)[0];
    3479                 :         79 :   Elf32_Word symbias = ((Elf32_Word *) data->d_buf)[1];
    3480                 :            : 
    3481                 :            :   /* Next comes the size of the bitmap.  It's measured in words for
    3482                 :            :      the architecture.  It's 32 bits for 32 bit archs, and 64 bits for
    3483                 :            :      64 bit archs.  There is always a bloom filter present, so zero is
    3484                 :            :      an invalid value.  */
    3485                 :         79 :   Elf32_Word bitmask_words = ((Elf32_Word *) data->d_buf)[2];
    3486         [ +  + ]:         79 :   if (gelf_getclass (ebl->elf) == ELFCLASS64)
    3487                 :         69 :     bitmask_words *= 2;
    3488                 :            : 
    3489         [ -  + ]:         79 :   if (bitmask_words == 0)
    3490                 :          0 :     goto invalid_data;
    3491                 :            : 
    3492                 :         79 :   Elf32_Word shift = ((Elf32_Word *) data->d_buf)[3];
    3493                 :            : 
    3494                 :            :   /* Is there still room for the sym chain?
    3495                 :            :      Use uint64_t calculation to prevent 32bit overflow.  */
    3496                 :         79 :   uint64_t used_buf = (4ULL + bitmask_words + nbucket) * sizeof (Elf32_Word);
    3497                 :         79 :   uint32_t max_nsyms = (data->d_size - used_buf) / sizeof (Elf32_Word);
    3498         [ -  + ]:         79 :   if (used_buf > data->d_size)
    3499                 :          0 :     goto invalid_data;
    3500                 :            : 
    3501                 :         79 :   lengths = xcalloc (nbucket, sizeof (uint32_t));
    3502                 :            : 
    3503                 :         79 :   Elf32_Word *bitmask = &((Elf32_Word *) data->d_buf)[4];
    3504                 :         79 :   Elf32_Word *bucket = &((Elf32_Word *) data->d_buf)[4 + bitmask_words];
    3505                 :         79 :   Elf32_Word *chain = &((Elf32_Word *) data->d_buf)[4 + bitmask_words
    3506                 :         79 :                                                     + nbucket];
    3507                 :            : 
    3508                 :            :   /* Compute distribution of chain lengths.  */
    3509                 :         79 :   uint_fast32_t maxlength = 0;
    3510                 :         79 :   uint_fast32_t nsyms = 0;
    3511         [ +  + ]:        309 :   for (Elf32_Word cnt = 0; cnt < nbucket; ++cnt)
    3512         [ +  + ]:        230 :     if (bucket[cnt] != 0)
    3513                 :            :       {
    3514                 :        122 :         Elf32_Word inner = bucket[cnt] - symbias;
    3515                 :        223 :         do
    3516                 :            :           {
    3517                 :        223 :             ++nsyms;
    3518         [ +  + ]:        223 :             if (maxlength < ++lengths[cnt])
    3519                 :         59 :               ++maxlength;
    3520         [ -  + ]:        223 :             if (inner >= max_nsyms)
    3521                 :          0 :               goto invalid_data;
    3522                 :            :           }
    3523         [ +  + ]:        223 :         while ((chain[inner++] & 1) == 0);
    3524                 :            :       }
    3525                 :            : 
    3526                 :            :   /* Count bits in bitmask.  */
    3527                 :            :   uint_fast32_t nbits = 0;
    3528         [ +  + ]:        263 :   for (Elf32_Word cnt = 0; cnt < bitmask_words; ++cnt)
    3529                 :            :     {
    3530                 :        184 :       uint_fast32_t word = bitmask[cnt];
    3531                 :            : 
    3532                 :        184 :       word = (word & 0x55555555) + ((word >> 1) & 0x55555555);
    3533                 :        184 :       word = (word & 0x33333333) + ((word >> 2) & 0x33333333);
    3534                 :        184 :       word = (word & 0x0f0f0f0f) + ((word >> 4) & 0x0f0f0f0f);
    3535                 :        184 :       word = (word & 0x00ff00ff) + ((word >> 8) & 0x00ff00ff);
    3536                 :        184 :       nbits += (word & 0x0000ffff) + ((word >> 16) & 0x0000ffff);
    3537                 :            :     }
    3538                 :            : 
    3539                 :        158 :   char *str = xasprintf (_("\
    3540                 :            :  Symbol Bias: %u\n\
    3541                 :            :  Bitmask Size: %zu bytes  %" PRIuFAST32 "%% bits set  2nd hash shift: %u\n"),
    3542                 :            :                          (unsigned int) symbias,
    3543                 :            :                          bitmask_words * sizeof (Elf32_Word),
    3544                 :         79 :                          ((nbits * 100 + 50)
    3545                 :         79 :                           / (uint_fast32_t) (bitmask_words
    3546                 :            :                                               * sizeof (Elf32_Word) * 8)),
    3547                 :            :                           (unsigned int) shift);
    3548                 :            : 
    3549                 :         79 :   print_hash_info (ebl, scn, shdr, shstrndx, maxlength, nbucket, nsyms,
    3550                 :            :                    lengths, str);
    3551                 :            : 
    3552                 :         79 :   free (str);
    3553                 :         79 :   free (lengths);
    3554                 :            : }
    3555                 :            : 
    3556                 :            : 
    3557                 :            : /* Find the symbol table(s).  For this we have to search through the
    3558                 :            :    section table.  */
    3559                 :            : static void
    3560                 :        142 : handle_hash (Ebl *ebl)
    3561                 :            : {
    3562                 :            :   /* Get the section header string table index.  */
    3563                 :        142 :   size_t shstrndx;
    3564         [ -  + ]:        142 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    3565                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    3566                 :            : 
    3567                 :            :   Elf_Scn *scn = NULL;
    3568         [ +  + ]:       4198 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
    3569                 :            :     {
    3570                 :            :       /* Handle the section if it is a symbol table.  */
    3571                 :       4056 :       GElf_Shdr shdr_mem;
    3572                 :       4056 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    3573                 :            : 
    3574         [ +  - ]:       4056 :       if (likely (shdr != NULL))
    3575                 :            :         {
    3576         [ +  + ]:       4056 :           if ((shdr->sh_type == SHT_HASH || shdr->sh_type == SHT_GNU_HASH)
    3577         [ -  + ]:         79 :               && (shdr->sh_flags & SHF_COMPRESSED) != 0)
    3578                 :            :             {
    3579         [ #  # ]:          0 :               if (elf_compress (scn, 0, 0) < 0)
    3580                 :          0 :                 printf ("WARNING: %s [%zd]\n",
    3581                 :            :                         _("Couldn't uncompress section"),
    3582                 :            :                         elf_ndxscn (scn));
    3583                 :          0 :               shdr = gelf_getshdr (scn, &shdr_mem);
    3584         [ #  # ]:          0 :               if (unlikely (shdr == NULL))
    3585                 :          0 :                 error_exit (0, _("cannot get section [%zd] header: %s"),
    3586                 :            :                             elf_ndxscn (scn), elf_errmsg (-1));
    3587                 :            :             }
    3588                 :            : 
    3589         [ -  + ]:       4056 :           if (shdr->sh_type == SHT_HASH)
    3590                 :            :             {
    3591         [ #  # ]:          0 :               if (ebl_sysvhash_entrysize (ebl) == sizeof (Elf64_Xword))
    3592                 :          0 :                 handle_sysv_hash64 (ebl, scn, shdr, shstrndx);
    3593                 :            :               else
    3594                 :          0 :                 handle_sysv_hash (ebl, scn, shdr, shstrndx);
    3595                 :            :             }
    3596         [ +  + ]:       4056 :           else if (shdr->sh_type == SHT_GNU_HASH)
    3597                 :         79 :             handle_gnu_hash (ebl, scn, shdr, shstrndx);
    3598                 :            :         }
    3599                 :            :     }
    3600                 :        142 : }
    3601                 :            : 
    3602                 :            : 
    3603                 :            : static void
    3604                 :        146 : print_liblist (Ebl *ebl)
    3605                 :            : {
    3606                 :            :   /* Find the library list sections.  For this we have to search
    3607                 :            :      through the section table.  */
    3608                 :        146 :   Elf_Scn *scn = NULL;
    3609                 :            : 
    3610                 :            :   /* Get the section header string table index.  */
    3611                 :        146 :   size_t shstrndx;
    3612         [ -  + ]:        146 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    3613                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    3614                 :            : 
    3615         [ +  + ]:       4261 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
    3616                 :            :     {
    3617                 :       4115 :       GElf_Shdr shdr_mem;
    3618                 :       4115 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    3619                 :            : 
    3620   [ +  -  -  + ]:       4115 :       if (shdr != NULL && shdr->sh_type == SHT_GNU_LIBLIST)
    3621                 :            :         {
    3622                 :          0 :           size_t sh_entsize = gelf_fsize (ebl->elf, ELF_T_LIB, 1, EV_CURRENT);
    3623                 :          0 :           int nentries = shdr->sh_size / sh_entsize;
    3624                 :          0 :           printf (ngettext ("\
    3625                 :            : \nLibrary list section [%2zu] '%s' at offset %#0" PRIx64 " contains %d entry:\n",
    3626                 :            :                             "\
    3627                 :            : \nLibrary list section [%2zu] '%s' at offset %#0" PRIx64 " contains %d entries:\n",
    3628                 :            :                             nentries),
    3629                 :            :                   elf_ndxscn (scn),
    3630                 :          0 :                   elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    3631                 :            :                   shdr->sh_offset,
    3632                 :            :                   nentries);
    3633                 :            : 
    3634                 :          0 :           Elf_Data *data = elf_getdata (scn, NULL);
    3635         [ #  # ]:          0 :           if (data == NULL)
    3636                 :          0 :             return;
    3637                 :            : 
    3638                 :          0 :           puts (_("\
    3639                 :            :        Library                       Time Stamp          Checksum Version Flags"));
    3640                 :            : 
    3641         [ #  # ]:          0 :           for (int cnt = 0; cnt < nentries; ++cnt)
    3642                 :            :             {
    3643                 :          0 :               GElf_Lib lib_mem;
    3644                 :          0 :               GElf_Lib *lib = gelf_getlib (data, cnt, &lib_mem);
    3645         [ #  # ]:          0 :               if (unlikely (lib == NULL))
    3646                 :          0 :                 continue;
    3647                 :            : 
    3648                 :          0 :               time_t t = (time_t) lib->l_time_stamp;
    3649                 :          0 :               struct tm *tm = gmtime (&t);
    3650         [ #  # ]:          0 :               if (unlikely (tm == NULL))
    3651                 :          0 :                 continue;
    3652                 :            : 
    3653                 :          0 :               printf ("  [%2d] %-29s %04u-%02u-%02uT%02u:%02u:%02u %08x %-7u %u\n",
    3654                 :          0 :                       cnt, elf_strptr (ebl->elf, shdr->sh_link, lib->l_name),
    3655                 :          0 :                       tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
    3656                 :            :                       tm->tm_hour, tm->tm_min, tm->tm_sec,
    3657                 :          0 :                       (unsigned int) lib->l_checksum,
    3658                 :          0 :                       (unsigned int) lib->l_version,
    3659                 :          0 :                       (unsigned int) lib->l_flags);
    3660                 :            :             }
    3661                 :            :         }
    3662                 :            :     }
    3663                 :            : }
    3664                 :            : 
    3665                 :            : static inline size_t
    3666                 :         12 : left (Elf_Data *data,
    3667                 :            :       const unsigned char *p)
    3668                 :            : {
    3669                 :         12 :   return (const unsigned char *) data->d_buf + data->d_size - p;
    3670                 :            : }
    3671                 :            : 
    3672                 :            : static void
    3673                 :        146 : print_attributes (Ebl *ebl, const GElf_Ehdr *ehdr)
    3674                 :            : {
    3675                 :            :   /* Find the object attributes sections.  For this we have to search
    3676                 :            :      through the section table.  */
    3677                 :        146 :   Elf_Scn *scn = NULL;
    3678                 :            : 
    3679                 :            :   /* Get the section header string table index.  */
    3680                 :        146 :   size_t shstrndx;
    3681         [ -  + ]:        146 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
    3682                 :          0 :     error_exit (0, _("cannot get section header string table index"));
    3683                 :            : 
    3684         [ +  + ]:       4261 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
    3685                 :            :     {
    3686                 :       4115 :       GElf_Shdr shdr_mem;
    3687                 :       4115 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    3688                 :            : 
    3689   [ +  -  +  + ]:       4115 :       if (shdr == NULL || (shdr->sh_type != SHT_GNU_ATTRIBUTES
    3690         [ +  + ]:       4112 :                            && (shdr->sh_type != SHT_ARM_ATTRIBUTES
    3691         [ -  + ]:          1 :                                || ehdr->e_machine != EM_ARM)
    3692         [ +  + ]:       4111 :                            && (shdr->sh_type != SHT_CSKY_ATTRIBUTES
    3693         [ +  - ]:          1 :                                || ehdr->e_machine != EM_CSKY)
    3694         [ -  + ]:       4111 :                            && (shdr->sh_type != SHT_RISCV_ATTRIBUTES
    3695         [ #  # ]:          0 :                                || ehdr->e_machine != EM_RISCV)))
    3696                 :       4111 :         continue;
    3697                 :            : 
    3698                 :          4 :       printf (_("\
    3699                 :            : \nObject attributes section [%2zu] '%s' of %" PRIu64
    3700                 :            :                        " bytes at offset %#0" PRIx64 ":\n"),
    3701                 :            :               elf_ndxscn (scn),
    3702                 :          4 :               elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
    3703                 :            :               shdr->sh_size, shdr->sh_offset);
    3704                 :            : 
    3705                 :          4 :       Elf_Data *data = elf_rawdata (scn, NULL);
    3706   [ +  -  +  - ]:          4 :       if (unlikely (data == NULL || data->d_size == 0))
    3707                 :          0 :         return;
    3708                 :            : 
    3709                 :          4 :       const unsigned char *p = data->d_buf;
    3710                 :            : 
    3711                 :            :       /* There is only one 'version', A.  */
    3712         [ +  - ]:          4 :       if (unlikely (*p++ != 'A'))
    3713                 :            :         return;
    3714                 :            : 
    3715                 :          4 :       fputs_unlocked (_("  Owner          Size\n"), stdout);
    3716                 :            : 
    3717                 :            :       /* Loop over the sections.  */
    3718         [ +  + ]:          8 :       while (left (data, p) >= 4)
    3719                 :            :         {
    3720                 :            :           /* Section length.  */
    3721                 :          4 :           uint32_t len;
    3722         [ +  + ]:          4 :           memcpy (&len, p, sizeof len);
    3723                 :            : 
    3724         [ +  + ]:          4 :           if (MY_ELFDATA != ehdr->e_ident[EI_DATA])
    3725                 :          2 :             CONVERT (len);
    3726                 :            : 
    3727         [ +  - ]:          4 :           if (unlikely (len > left (data, p)))
    3728                 :            :             break;
    3729                 :            : 
    3730                 :            :           /* Section vendor name.  */
    3731                 :          4 :           const unsigned char *name = p + sizeof len;
    3732                 :          4 :           p += len;
    3733                 :            : 
    3734                 :          4 :           unsigned const char *q = memchr (name, '\0', len);
    3735         [ +  - ]:          4 :           if (unlikely (q == NULL))
    3736                 :            :             break;
    3737                 :          4 :           ++q;
    3738                 :            : 
    3739                 :          4 :           printf (_("  %-13s  %4" PRIu32 "\n"), name, len);
    3740                 :            : 
    3741                 :          8 :           bool gnu_vendor = (q - name == sizeof "gnu"
    3742   [ +  +  -  + ]:          4 :                              && !memcmp (name, "gnu", sizeof "gnu"));
    3743                 :            : 
    3744                 :            :           /* Loop over subsections.  */
    3745         [ +  + ]:          4 :           if (shdr->sh_type != SHT_GNU_ATTRIBUTES
    3746         [ +  - ]:          3 :               || gnu_vendor)
    3747         [ +  + ]:          8 :             while (q < p)
    3748                 :            :               {
    3749                 :          4 :                 const unsigned char *const sub = q;
    3750                 :            : 
    3751                 :          4 :                 unsigned int subsection_tag;
    3752                 :          4 :                 get_uleb128 (subsection_tag, q, p);
    3753         [ +  - ]:          4 :                 if (unlikely (q >= p))
    3754                 :            :                   break;
    3755                 :            : 
    3756                 :          4 :                 uint32_t subsection_len;
    3757         [ +  - ]:          4 :                 if (unlikely (p - sub < (ptrdiff_t) sizeof subsection_len))
    3758                 :            :                   break;
    3759                 :            : 
    3760         [ +  + ]:          4 :                 memcpy (&subsection_len, q, sizeof subsection_len);
    3761                 :            : 
    3762         [ +  + ]:          4 :                 if (MY_ELFDATA != ehdr->e_ident[EI_DATA])
    3763                 :          2 :                   CONVERT (subsection_len);
    3764                 :            : 
    3765                 :            :                 /* Don't overflow, ptrdiff_t might be 32bits, but signed.  */
    3766   [ +  -  +  - ]:          4 :                 if (unlikely (subsection_len == 0
    3767                 :            :                               || subsection_len >= (uint32_t) PTRDIFF_MAX
    3768                 :            :                               || p - sub < (ptrdiff_t) subsection_len))
    3769                 :            :                   break;
    3770                 :            : 
    3771                 :          4 :                 const unsigned char *r = q + sizeof subsection_len;
    3772                 :          4 :                 q = sub + subsection_len;
    3773                 :            : 
    3774         [ -  + ]:          4 :                 switch (subsection_tag)
    3775                 :            :                   {
    3776                 :          0 :                   default:
    3777                 :            :                     /* Unknown subsection, print and skip.  */
    3778                 :          4 :                     printf (_("    %-4u %12" PRIu32 "\n"),
    3779                 :            :                             subsection_tag, subsection_len);
    3780                 :            :                     break;
    3781                 :            : 
    3782                 :          4 :                   case 1:       /* Tag_File */
    3783                 :          4 :                     printf (_("    File: %11" PRIu32 "\n"),
    3784                 :            :                             subsection_len);
    3785                 :            : 
    3786         [ +  + ]:         26 :                     while (r < q)
    3787                 :            :                       {
    3788                 :         22 :                         unsigned int tag;
    3789                 :         22 :                         get_uleb128 (tag, r, q);
    3790         [ +  - ]:         22 :                         if (unlikely (r >= q))
    3791                 :            :                           break;
    3792                 :            : 
    3793                 :            :                         /* GNU style tags have either a uleb128 value,
    3794                 :            :                            when lowest bit is not set, or a string
    3795                 :            :                            when the lowest bit is set.
    3796                 :            :                            "compatibility" (32) is special.  It has
    3797                 :            :                            both a string and a uleb128 value.  For
    3798                 :            :                            non-gnu we assume 6 till 31 only take ints.
    3799                 :            :                            XXX see arm backend, do we need a separate
    3800                 :            :                            hook?  */
    3801                 :         22 :                         uint64_t value = 0;
    3802                 :         22 :                         const char *string = NULL;
    3803   [ +  -  +  + ]:         22 :                         if (tag == 32 || (tag & 1) == 0
    3804   [ +  -  +  + ]:          8 :                             || (! gnu_vendor && (tag > 5 && tag < 32)))
    3805                 :            :                           {
    3806                 :            :                             // Note r >= q check above.
    3807                 :         21 :                             get_uleb128 (value, r, q);
    3808         [ +  - ]:         21 :                             if (r > q)
    3809                 :            :                               break;
    3810                 :            :                           }
    3811         [ +  - ]:         22 :                         if (tag == 32
    3812         [ +  + ]:         22 :                             || ((tag & 1) != 0
    3813         [ +  - ]:          8 :                                 && (gnu_vendor
    3814         [ +  - ]:          8 :                                     || (! gnu_vendor && tag > 32)))
    3815   [ +  +  +  + ]:         22 :                             || (! gnu_vendor && tag > 3 && tag < 6))
    3816                 :            :                           {
    3817                 :          1 :                             string = (const char *) r;
    3818                 :          1 :                             r = memchr (r, '\0', q - r);
    3819         [ +  - ]:          1 :                             if (r == NULL)
    3820                 :            :                               break;
    3821                 :          1 :                             ++r;
    3822                 :            :                           }
    3823                 :            : 
    3824                 :         22 :                         const char *tag_name = NULL;
    3825                 :         22 :                         const char *value_name = NULL;
    3826                 :         22 :                         ebl_check_object_attribute (ebl, (const char *) name,
    3827                 :            :                                                     tag, value,
    3828                 :            :                                                     &tag_name, &value_name);
    3829                 :            : 
    3830         [ +  - ]:         22 :                         if (tag_name != NULL)
    3831                 :            :                           {
    3832         [ -  + ]:         22 :                             if (tag == 32)
    3833                 :          0 :                               printf (_("      %s: %" PRId64 ", %s\n"),
    3834                 :            :                                       tag_name, value, string);
    3835   [ +  +  +  + ]:         22 :                             else if (string == NULL && value_name == NULL)
    3836                 :          1 :                               printf (_("      %s: %" PRId64 "\n"),
    3837                 :            :                                       tag_name, value);
    3838                 :            :                             else
    3839         [ +  + ]:         21 :                               printf (_("      %s: %s\n"),
    3840                 :            :                                       tag_name, string ?: value_name);
    3841                 :            :                           }
    3842                 :            :                         else
    3843                 :            :                           {
    3844                 :            :                             /* For "gnu" vendor 32 "compatibility" has
    3845                 :            :                                already been handled above.  */
    3846   [ #  #  #  # ]:          0 :                             assert (tag != 32
    3847                 :            :                                     || strcmp ((const char *) name, "gnu"));
    3848         [ #  # ]:          0 :                             if (string == NULL)
    3849                 :          0 :                               printf (_("      %u: %" PRId64 "\n"),
    3850                 :            :                                       tag, value);
    3851                 :            :                             else
    3852                 :         22 :                               printf (_("      %u: %s\n"),
    3853                 :            :                                       tag, string);
    3854                 :            :                           }
    3855                 :            :                       }
    3856                 :            :                   }
    3857                 :            :               }
    3858                 :            :         }
    3859                 :            :     }
    3860                 :            : }
    3861                 :            : 
    3862                 :            : /* Returns either the (relocated) data from the Dwarf, or tries to get
    3863                 :            :    the "raw" (uncompressed) data from the Elf section. Produces a
    3864                 :            :    warning if the data cannot be found (or decompressed).  */
    3865                 :            : static Elf_Data *
    3866                 :        371 : get_debug_elf_data (Dwarf *dbg, Ebl *ebl, int idx, Elf_Scn *scn)
    3867                 :            : {
    3868                 :            :   /* We prefer to get the section data from the Dwarf because that
    3869                 :            :      might have been relocated already.  Note this is subtly wrong if
    3870                 :            :      there are multiple sections with the same .debug name.  */
    3871         [ -  + ]:        371 :   if (dbg->sectiondata[idx] != NULL)
    3872                 :            :     return dbg->sectiondata[idx];
    3873                 :            : 
    3874                 :          0 :   GElf_Shdr shdr_mem;
    3875                 :          0 :   GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
    3876   [ #  #  #  # ]:          0 :   if (shdr != NULL && (shdr->sh_flags & SHF_COMPRESSED) != 0)
    3877                 :            :     {
    3878         [ #  # ]:          0 :       if (elf_compress (scn, 0, 0) < 0)
    3879                 :            :         {
    3880                 :          0 :           error (0, 0, "%s [%zd] '%s'\n",
    3881                 :            :                  _("Couldn't uncompress section"),
    3882                 :            :                  elf_ndxscn (scn), section_name (ebl, shdr));
    3883                 :          0 :           return NULL;
    3884                 :            :         }
    3885                 :            :     }
    3886                 :            : 
    3887                 :          0 :   Elf_Data *data = elf_getdata (scn, NULL);
    3888         [ #  # ]:          0 :   if (data == NULL)
    3889                 :          0 :     error (0, 0, "%s [%zd] '%s': %s\n",
    3890                 :            :            _("Couldn't get data from section"),
    3891                 :            :            elf_ndxscn (scn), section_name (ebl, shdr), elf_errmsg (-1));
    3892                 :            : 
    3893                 :          0 :   return elf_getdata (scn, NULL);
    3894                 :            : }
    3895                 :            : 
    3896                 :            : void
    3897                 :    1031386 : print_dwarf_addr (Dwfl_Module *dwflmod,
    3898                 :            :                   int address_size, Dwarf_Addr address, Dwarf_Addr raw)
    3899                 :            : {
    3900                 :            :   /* See if there is a name we can give for this address.  */
    3901                 :    1031386 :   GElf_Sym sym;
    3902                 :    1031386 :   GElf_Off off = 0;
    3903         [ +  + ]:    1031356 :   const char *name = (print_address_names && ! print_unresolved_addresses)
    3904                 :    1031274 :     ? dwfl_module_addrinfo (dwflmod, address, &off, &sym, NULL, NULL, NULL)
    3905         [ +  + ]:    1031386 :     : NULL;
    3906                 :            : 
    3907                 :    1031386 :   const char *scn;
    3908         [ +  + ]:    1031386 :   if (print_unresolved_addresses)
    3909                 :            :     {
    3910                 :         84 :       address = raw;
    3911                 :         84 :       scn = NULL;
    3912                 :            :     }
    3913                 :            :   else
    3914                 :            :     {
    3915                 :            :       /* Relativize the address.  */
    3916                 :    1031302 :       int n = dwfl_module_relocations (dwflmod);
    3917         [ +  + ]:    1031302 :       int i = n < 1 ? -1 : dwfl_module_relocate_address (dwflmod, &address);
    3918                 :            : 
    3919                 :            :       /* In an ET_REL file there is a section name to refer to.  */
    3920                 :    1029890 :       scn = (i < 0 ? NULL
    3921         [ +  - ]:    1029890 :              : dwfl_module_relocation_info (dwflmod, i, NULL));
    3922                 :            :     }
    3923                 :            : 
    3924         [ -  + ]:    1031386 :   if ((name != NULL
    3925                 :    1013335 :        ? (off != 0
    3926                 :            :           ? (scn != NULL
    3927                 :            :              ? (address_size == 0
    3928                 :     349483 :                 ? printf ("%s+%#" PRIx64 " <%s+%#" PRIx64 ">",
    3929                 :            :                           scn, address, name, off)
    3930                 :    1229974 :                 : printf ("%s+%#0*" PRIx64 " <%s+%#" PRIx64 ">",
    3931                 :     614987 :                           scn, 2 + address_size * 2, address,
    3932                 :            :                           name, off))
    3933                 :            :              : (address_size == 0
    3934                 :        182 :                 ? printf ("%#" PRIx64 " <%s+%#" PRIx64 ">",
    3935                 :            :                           address, name, off)
    3936                 :       1120 :                 : printf ("%#0*" PRIx64 " <%s+%#" PRIx64 ">",
    3937                 :        560 :                           2 + address_size * 2, address,
    3938                 :            :                           name, off)))
    3939                 :            :           : (scn != NULL
    3940                 :            :              ? (address_size == 0
    3941                 :      15595 :                 ? printf ("%s+%#" PRIx64 " <%s>", scn, address, name)
    3942                 :      64058 :                 : printf ("%s+%#0*" PRIx64 " <%s>",
    3943                 :      32029 :                            scn, 2 + address_size * 2, address, name))
    3944                 :            :              : (address_size == 0
    3945                 :         80 :                 ? printf ("%#" PRIx64 " <%s>", address, name)
    3946                 :        838 :                 : printf ("%#0*" PRIx64 " <%s>",
    3947                 :        419 :                           2 + address_size * 2, address, name))))
    3948                 :            :        : (scn != NULL
    3949                 :            :           ? (address_size == 0
    3950                 :       7994 :              ? printf ("%s+%#" PRIx64, scn, address)
    3951                 :       9802 :              : printf ("%s+%#0*" PRIx64, scn, 2 + address_size * 2, address))
    3952                 :            :           : (address_size == 0
    3953                 :         35 :              ? printf ("%#" PRIx64, address)
    3954   [ +  +  +  +  :    2062552 :              : printf ("%#0*" PRIx64, 2 + address_size * 2, address)))) < 0)
          +  +  +  +  +  
          +  +  +  +  +  
          +  +  +  +  +  
                +  +  + ]
    3955                 :          0 :     error_exit (0, _("sprintf failure"));
    3956                 :    1031386 : }
    3957                 :            : 
    3958                 :            : 
    3959                 :            : static const char *
    3960                 :    1021702 : dwarf_tag_string (unsigned int tag)
    3961                 :            : {
    3962   [ -  +  +  -  :    1021702 :   switch (tag)
          -  -  -  -  +  
          -  +  +  -  -  
          -  -  -  -  -  
          +  -  +  -  +  
          -  -  +  +  -  
          +  -  -  -  -  
          -  -  -  +  -  
          +  -  +  +  +  
          -  -  -  -  -  
          -  +  -  -  +  
          -  -  -  +  -  
          +  +  +  +  -  
          -  -  -  -  +  
          +  +  +  -  +  
          +  +  +  -  -  
                      - ]
    3963                 :            :     {
    3964                 :            : #define DWARF_ONE_KNOWN_DW_TAG(NAME, CODE) case CODE: return #NAME;
    3965                 :    1021702 :       DWARF_ALL_KNOWN_DW_TAG
    3966                 :            : #undef DWARF_ONE_KNOWN_DW_TAG
    3967                 :          0 :     default:
    3968                 :          0 :       return NULL;
    3969                 :            :     }
    3970                 :            : }
    3971                 :            : 
    3972                 :            : 
    3973                 :            : static const char *
    3974                 :    4019687 : dwarf_attr_string (unsigned int attrnum)
    3975                 :            : {
    3976   [ +  -  +  -  :    4019687 :   switch (attrnum)
          -  +  -  +  -  
          -  +  +  +  -  
          -  -  -  +  +  
          -  +  -  -  +  
          -  +  -  +  -  
          -  -  -  -  -  
          -  -  -  -  -  
          -  -  -  -  -  
          -  -  -  +  -  
          +  -  +  -  +  
          -  -  -  +  +  
          -  -  -  +  -  
          +  -  -  +  -  
          -  +  +  +  -  
          -  +  +  -  -  
          -  -  -  +  -  
          +  -  +  -  -  
          +  -  -  +  +  
          +  +  -  -  -  
          -  -  +  +  +  
          +  -  +  -  +  
          -  -  -  -  +  
          +  -  +  -  +  
          +  -  +  +  +  
          +  +  -  -  +  
          -  -  -  +  -  
          +  -  -  -  -  
          +  +  -  +  -  
          -  -  -  +  -  
          -  -  +  +  -  
          +  -  -  -  -  
          +  -  -  -  -  
          -  -  +  +  -  
          -  -  -  -  -  
                   -  + ]
    3977                 :            :     {
    3978                 :            : #define DWARF_ONE_KNOWN_DW_AT(NAME, CODE) case CODE: return #NAME;
    3979                 :    4019686 :       DWARF_ALL_KNOWN_DW_AT
    3980                 :            : #undef DWARF_ONE_KNOWN_DW_AT
    3981                 :          0 :     default:
    3982                 :          0 :       return NULL;
    3983                 :            :     }
    3984                 :            : }
    3985                 :            : 
    3986                 :            : 
    3987                 :            : static const char *
    3988                 :    4019693 : dwarf_form_string (unsigned int form)
    3989                 :            : {
    3990   [ +  +  +  +  :    4019693 :   switch (form)
          +  -  -  -  -  
          -  +  -  -  +  
          -  +  +  +  +  
          +  +  +  -  +  
          +  -  -  +  -  
          -  +  -  -  +  
          +  +  +  +  +  
          -  +  -  -  -  
             -  +  -  + ]
    3991                 :            :     {
    3992                 :            : #define DWARF_ONE_KNOWN_DW_FORM(NAME, CODE) case CODE: return #NAME;
    3993                 :    4019691 :       DWARF_ALL_KNOWN_DW_FORM
    3994                 :            : #undef DWARF_ONE_KNOWN_DW_FORM
    3995                 :          0 :     default:
    3996                 :          0 :       return NULL;
    3997                 :            :     }
    3998                 :            : }
    3999                 :            : 
    4000                 :            : 
    4001                 :            : static const char *
    4002                 :       1735 : dwarf_lang_string (unsigned int lang)
    4003                 :            : {
    4004   [ +  -  -  +  :       1735 :   switch (lang)
          +  +  +  -  -  
          -  -  -  -  -  
          -  -  -  -  -  
          -  -  -  -  -  
          -  -  -  -  -  
          -  -  -  -  -  
             -  -  -  -  
                      - ]
    4005                 :            :     {
    4006                 :            : #define DWARF_ONE_KNOWN_DW_LANG(NAME, CODE) case CODE: return #NAME;
    4007                 :       1735 :       DWARF_ALL_KNOWN_DW_LANG
    4008                 :            : #undef DWARF_ONE_KNOWN_DW_LANG
    4009                 :          0 :     default:
    4010                 :          0 :       return NULL;
    4011                 :            :     }
    4012                 :            : }
    4013                 :            : 
    4014                 :            : 
    4015                 :            : static const char *
    4016                 :       3468 : dwarf_inline_string (unsigned int code)
    4017                 :            : {
    4018                 :       3468 :   static const char *const known[] =
    4019                 :            :     {
    4020                 :            : #define DWARF_ONE_KNOWN_DW_INL(NAME, CODE) [CODE] = #NAME,
    4021                 :            :       DWARF_ALL_KNOWN_DW_INL
    4022                 :            : #undef DWARF_ONE_KNOWN_DW_INL
    4023                 :            :     };
    4024                 :            : 
    4025                 :       3468 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4026                 :       3468 :     return known[code];
    4027                 :            : 
    4028                 :            :   return NULL;
    4029                 :            : }
    4030                 :            : 
    4031                 :            : 
    4032                 :            : static const char *
    4033                 :      30932 : dwarf_encoding_string (unsigned int code)
    4034                 :            : {
    4035                 :      30932 :   static const char *const known[] =
    4036                 :            :     {
    4037                 :            : #define DWARF_ONE_KNOWN_DW_ATE(NAME, CODE) [CODE] = #NAME,
    4038                 :            :       DWARF_ALL_KNOWN_DW_ATE
    4039                 :            : #undef DWARF_ONE_KNOWN_DW_ATE
    4040                 :            :     };
    4041                 :            : 
    4042                 :      30932 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4043                 :      30932 :     return known[code];
    4044                 :            : 
    4045                 :            :   return NULL;
    4046                 :            : }
    4047                 :            : 
    4048                 :            : 
    4049                 :            : static const char *
    4050                 :          0 : dwarf_access_string (unsigned int code)
    4051                 :            : {
    4052                 :          0 :   static const char *const known[] =
    4053                 :            :     {
    4054                 :            : #define DWARF_ONE_KNOWN_DW_ACCESS(NAME, CODE) [CODE] = #NAME,
    4055                 :            :       DWARF_ALL_KNOWN_DW_ACCESS
    4056                 :            : #undef DWARF_ONE_KNOWN_DW_ACCESS
    4057                 :            :     };
    4058                 :            : 
    4059                 :          0 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4060                 :          0 :     return known[code];
    4061                 :            : 
    4062                 :            :   return NULL;
    4063                 :            : }
    4064                 :            : 
    4065                 :            : 
    4066                 :            : static const char *
    4067                 :          0 : dwarf_defaulted_string (unsigned int code)
    4068                 :            : {
    4069                 :          0 :   static const char *const known[] =
    4070                 :            :     {
    4071                 :            : #define DWARF_ONE_KNOWN_DW_DEFAULTED(NAME, CODE) [CODE] = #NAME,
    4072                 :            :       DWARF_ALL_KNOWN_DW_DEFAULTED
    4073                 :            : #undef DWARF_ONE_KNOWN_DW_DEFAULTED
    4074                 :            :     };
    4075                 :            : 
    4076                 :          0 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4077                 :          0 :     return known[code];
    4078                 :            : 
    4079                 :            :   return NULL;
    4080                 :            : }
    4081                 :            : 
    4082                 :            : 
    4083                 :            : static const char *
    4084                 :          0 : dwarf_visibility_string (unsigned int code)
    4085                 :            : {
    4086                 :          0 :   static const char *const known[] =
    4087                 :            :     {
    4088                 :            : #define DWARF_ONE_KNOWN_DW_VIS(NAME, CODE) [CODE] = #NAME,
    4089                 :            :       DWARF_ALL_KNOWN_DW_VIS
    4090                 :            : #undef DWARF_ONE_KNOWN_DW_VIS
    4091                 :            :     };
    4092                 :            : 
    4093                 :          0 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4094                 :          0 :     return known[code];
    4095                 :            : 
    4096                 :            :   return NULL;
    4097                 :            : }
    4098                 :            : 
    4099                 :            : 
    4100                 :            : static const char *
    4101                 :          0 : dwarf_virtuality_string (unsigned int code)
    4102                 :            : {
    4103                 :          0 :   static const char *const known[] =
    4104                 :            :     {
    4105                 :            : #define DWARF_ONE_KNOWN_DW_VIRTUALITY(NAME, CODE) [CODE] = #NAME,
    4106                 :            :       DWARF_ALL_KNOWN_DW_VIRTUALITY
    4107                 :            : #undef DWARF_ONE_KNOWN_DW_VIRTUALITY
    4108                 :            :     };
    4109                 :            : 
    4110                 :          0 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4111                 :          0 :     return known[code];
    4112                 :            : 
    4113                 :            :   return NULL;
    4114                 :            : }
    4115                 :            : 
    4116                 :            : 
    4117                 :            : static const char *
    4118                 :          0 : dwarf_identifier_case_string (unsigned int code)
    4119                 :            : {
    4120                 :          0 :   static const char *const known[] =
    4121                 :            :     {
    4122                 :            : #define DWARF_ONE_KNOWN_DW_ID(NAME, CODE) [CODE] = #NAME,
    4123                 :            :       DWARF_ALL_KNOWN_DW_ID
    4124                 :            : #undef DWARF_ONE_KNOWN_DW_ID
    4125                 :            :     };
    4126                 :            : 
    4127                 :          0 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4128                 :          0 :     return known[code];
    4129                 :            : 
    4130                 :            :   return NULL;
    4131                 :            : }
    4132                 :            : 
    4133                 :            : 
    4134                 :            : static const char *
    4135                 :          0 : dwarf_calling_convention_string (unsigned int code)
    4136                 :            : {
    4137                 :          0 :   static const char *const known[] =
    4138                 :            :     {
    4139                 :            : #define DWARF_ONE_KNOWN_DW_CC(NAME, CODE) [CODE] = #NAME,
    4140                 :            :       DWARF_ALL_KNOWN_DW_CC
    4141                 :            : #undef DWARF_ONE_KNOWN_DW_CC
    4142                 :            :     };
    4143                 :            : 
    4144                 :          0 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4145                 :          0 :     return known[code];
    4146                 :            : 
    4147                 :            :   return NULL;
    4148                 :            : }
    4149                 :            : 
    4150                 :            : 
    4151                 :            : static const char *
    4152                 :          0 : dwarf_ordering_string (unsigned int code)
    4153                 :            : {
    4154                 :          0 :   static const char *const known[] =
    4155                 :            :     {
    4156                 :            : #define DWARF_ONE_KNOWN_DW_ORD(NAME, CODE) [CODE] = #NAME,
    4157                 :            :       DWARF_ALL_KNOWN_DW_ORD
    4158                 :            : #undef DWARF_ONE_KNOWN_DW_ORD
    4159                 :            :     };
    4160                 :            : 
    4161                 :          0 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4162                 :          0 :     return known[code];
    4163                 :            : 
    4164                 :            :   return NULL;
    4165                 :            : }
    4166                 :            : 
    4167                 :            : 
    4168                 :            : static const char *
    4169                 :          8 : dwarf_discr_list_string (unsigned int code)
    4170                 :            : {
    4171                 :          8 :   static const char *const known[] =
    4172                 :            :     {
    4173                 :            : #define DWARF_ONE_KNOWN_DW_DSC(NAME, CODE) [CODE] = #NAME,
    4174                 :            :       DWARF_ALL_KNOWN_DW_DSC
    4175                 :            : #undef DWARF_ONE_KNOWN_DW_DSC
    4176                 :            :     };
    4177                 :            : 
    4178                 :          8 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4179                 :          8 :     return known[code];
    4180                 :            : 
    4181                 :            :   return NULL;
    4182                 :            : }
    4183                 :            : 
    4184                 :            : 
    4185                 :            : static const char *
    4186                 :     537059 : dwarf_locexpr_opcode_string (unsigned int code)
    4187                 :            : {
    4188                 :     537059 :   static const char *const known[] =
    4189                 :            :     {
    4190                 :            :       /* Normally we can't afford building huge table of 64K entries,
    4191                 :            :          most of them zero, just because there are a couple defined
    4192                 :            :          values at the far end.  In case of opcodes, it's OK.  */
    4193                 :            : #define DWARF_ONE_KNOWN_DW_OP(NAME, CODE) [CODE] = #NAME,
    4194                 :            :       DWARF_ALL_KNOWN_DW_OP
    4195                 :            : #undef DWARF_ONE_KNOWN_DW_OP
    4196                 :            :     };
    4197                 :            : 
    4198                 :     537059 :   if (likely (code < sizeof (known) / sizeof (known[0])))
    4199                 :     537059 :     return known[code];
    4200                 :            : 
    4201                 :            :   return NULL;
    4202                 :            : }
    4203                 :            : 
    4204                 :            : 
    4205                 :            : static const char *
    4206                 :          8 : dwarf_unit_string (unsigned int type)
    4207                 :            : {
    4208   [ -  +  -  -  :          8 :   switch (type)
                -  -  + ]
    4209                 :            :     {
    4210                 :            : #define DWARF_ONE_KNOWN_DW_UT(NAME, CODE) case CODE: return #NAME;
    4211                 :          7 :       DWARF_ALL_KNOWN_DW_UT
    4212                 :            : #undef DWARF_ONE_KNOWN_DW_UT
    4213                 :          0 :     default:
    4214                 :          0 :       return NULL;
    4215                 :            :     }
    4216                 :            : }
    4217                 :            : 
    4218                 :            : 
    4219                 :            : static const char *
    4220                 :         16 : dwarf_range_list_encoding_string (unsigned int kind)
    4221                 :            : {
    4222   [ -  +  +  -  :         16 :   switch (kind)
             +  -  -  -  
                      + ]
    4223                 :            :     {
    4224                 :            : #define DWARF_ONE_KNOWN_DW_RLE(NAME, CODE) case CODE: return #NAME;
    4225                 :         14 :       DWARF_ALL_KNOWN_DW_RLE
    4226                 :            : #undef DWARF_ONE_KNOWN_DW_RLE
    4227                 :          0 :     default:
    4228                 :          0 :       return NULL;
    4229                 :            :     }
    4230                 :            : }
    4231                 :            : 
    4232                 :            : 
    4233                 :            : static const char *
    4234                 :         91 : dwarf_loc_list_encoding_string (unsigned int kind)
    4235                 :            : {
    4236   [ -  -  +  +  :         91 :   switch (kind)
          -  +  -  +  -  
                   -  + ]
    4237                 :            :     {
    4238                 :            : #define DWARF_ONE_KNOWN_DW_LLE(NAME, CODE) case CODE: return #NAME;
    4239                 :         86 :       DWARF_ALL_KNOWN_DW_LLE
    4240                 :            : #undef DWARF_ONE_KNOWN_DW_LLE
    4241                 :            :     /* DW_LLE_GNU_view_pair is special/incompatible with default codes.  */
    4242                 :          0 :     case DW_LLE_GNU_view_pair: return "GNU_view_pair";
    4243                 :          0 :     default:
    4244                 :          0 :       return NULL;
    4245                 :            :     }
    4246                 :            : }
    4247                 :            : 
    4248                 :            : 
    4249                 :            : static const char *
    4250                 :          6 : dwarf_line_content_description_string (unsigned int kind)
    4251                 :            : {
    4252   [ +  +  -  -  :          6 :   switch (kind)
                   -  - ]
    4253                 :            :     {
    4254                 :            : #define DWARF_ONE_KNOWN_DW_LNCT(NAME, CODE) case CODE: return #NAME;
    4255                 :          6 :       DWARF_ALL_KNOWN_DW_LNCT
    4256                 :            : #undef DWARF_ONE_KNOWN_DW_LNCT
    4257                 :          0 :     default:
    4258                 :          0 :       return NULL;
    4259                 :            :     }
    4260                 :            : }
    4261                 :            : 
    4262                 :            : 
    4263                 :            : /* Used by all dwarf_foo_name functions.  */
    4264                 :            : static const char *
    4265                 :    9097346 : string_or_unknown (const char *known, unsigned int code,
    4266                 :            :                    unsigned int lo_user, unsigned int hi_user,
    4267                 :            :                    bool print_unknown_num)
    4268                 :            : {
    4269                 :    9097346 :   static char unknown_buf[20];
    4270                 :            : 
    4271         [ -  + ]:    9097346 :   if (likely (known != NULL))
    4272                 :            :     return known;
    4273                 :            : 
    4274   [ #  #  #  # ]:          0 :   if (lo_user != 0 && code >= lo_user && code <= hi_user)
    4275                 :            :     {
    4276                 :          0 :       snprintf (unknown_buf, sizeof unknown_buf, "lo_user+%#x",
    4277                 :            :                 code - lo_user);
    4278                 :          0 :       return unknown_buf;
    4279                 :            :     }
    4280                 :            : 
    4281         [ #  # ]:          0 :   if (print_unknown_num)
    4282                 :            :     {
    4283                 :          0 :       snprintf (unknown_buf, sizeof unknown_buf, "??? (%#x)", code);
    4284                 :          0 :       return unknown_buf;
    4285                 :            :     }
    4286                 :            : 
    4287                 :            :   return "???";
    4288                 :            : }
    4289                 :            : 
    4290                 :            : 
    4291                 :            : static const char *
    4292                 :    1021702 : dwarf_tag_name (unsigned int tag)
    4293                 :            : {
    4294                 :    1021702 :   const char *ret = dwarf_tag_string (tag);
    4295                 :    1021702 :   return string_or_unknown (ret, tag, DW_TAG_lo_user, DW_TAG_hi_user, true);
    4296                 :            : }
    4297                 :            : 
    4298                 :            : static const char *
    4299                 :    4019687 : dwarf_attr_name (unsigned int attr)
    4300                 :            : {
    4301                 :    4019687 :   const char *ret = dwarf_attr_string (attr);
    4302                 :    4019687 :   return string_or_unknown (ret, attr, DW_AT_lo_user, DW_AT_hi_user, true);
    4303                 :            : }
    4304                 :            : 
    4305                 :            : 
    4306                 :            : static const char *
    4307                 :    4019693 : dwarf_form_name (unsigned int form)
    4308                 :            : {
    4309                 :    4019693 :   const char *ret = dwarf_form_string (form);
    4310                 :    4019693 :   return string_or_unknown (ret, form, 0, 0, true);
    4311                 :            : }
    4312                 :            : 
    4313                 :            : 
    4314                 :            : static const char *
    4315                 :       1735 : dwarf_lang_name (unsigned int lang)
    4316                 :            : {
    4317                 :       1735 :   const char *ret = dwarf_lang_string (lang);
    4318                 :       1735 :   return string_or_unknown (ret, lang, DW_LANG_lo_user, DW_LANG_hi_user, false);
    4319                 :            : }
    4320                 :            : 
    4321                 :            : 
    4322                 :            : static const char *
    4323                 :       3468 : dwarf_inline_name (unsigned int code)
    4324                 :            : {
    4325         [ +  - ]:       3468 :   const char *ret = dwarf_inline_string (code);
    4326                 :       3468 :   return string_or_unknown (ret, code, 0, 0, false);
    4327                 :            : }
    4328                 :            : 
    4329                 :            : 
    4330                 :            : static const char *
    4331                 :      30932 : dwarf_encoding_name (unsigned int code)
    4332                 :            : {
    4333         [ +  - ]:      30932 :   const char *ret = dwarf_encoding_string (code);
    4334                 :      30932 :   return string_or_unknown (ret, code, DW_ATE_lo_user, DW_ATE_hi_user, false);
    4335                 :            : }
    4336                 :            : 
    4337                 :            : 
    4338                 :            : static const char *
    4339                 :          0 : dwarf_access_name (unsigned int code)
    4340                 :            : {
    4341         [ #  # ]:          0 :   const char *ret = dwarf_access_string (code);
    4342                 :          0 :   return string_or_unknown (ret, code, 0, 0, false);
    4343                 :            : }
    4344                 :            : 
    4345                 :            : 
    4346                 :            : static const char *
    4347                 :          0 : dwarf_defaulted_name (unsigned int code)
    4348                 :            : {
    4349         [ #  # ]:          0 :   const char *ret = dwarf_defaulted_string (code);
    4350                 :          0 :   return string_or_unknown (ret, code, 0, 0, false);
    4351                 :            : }
    4352                 :            : 
    4353                 :            : 
    4354                 :            : static const char *
    4355                 :          0 : dwarf_visibility_name (unsigned int code)
    4356                 :            : {
    4357         [ #  # ]:          0 :   const char *ret = dwarf_visibility_string (code);
    4358                 :          0 :   return string_or_unknown (ret, code, 0, 0, false);
    4359                 :            : }
    4360                 :            : 
    4361                 :            : 
    4362                 :            : static const char *
    4363                 :          0 : dwarf_virtuality_name (unsigned int code)
    4364                 :            : {
    4365         [ #  # ]:          0 :   const char *ret = dwarf_virtuality_string (code);
    4366                 :          0 :   return string_or_unknown (ret, code, 0, 0, false);
    4367                 :            : }
    4368                 :            : 
    4369                 :            : 
    4370                 :            : static const char *
    4371                 :          0 : dwarf_identifier_case_name (unsigned int code)
    4372                 :            : {
    4373         [ #  # ]:          0 :   const char *ret = dwarf_identifier_case_string (code);
    4374                 :          0 :   return string_or_unknown (ret, code, 0, 0, false);
    4375                 :            : }
    4376                 :            : 
    4377                 :            : 
    4378                 :            : static const char *
    4379                 :          0 : dwarf_calling_convention_name (unsigned int code)
    4380                 :            : {
    4381         [ #  # ]:          0 :   const char *ret = dwarf_calling_convention_string (code);
    4382                 :          0 :   return string_or_unknown (ret, code, DW_CC_lo_user, DW_CC_hi_user, false);
    4383                 :            : }
    4384                 :            : 
    4385                 :            : 
    4386                 :            : static const char *
    4387                 :          0 : dwarf_ordering_name (unsigned int code)
    4388                 :            : {
    4389         [ #  # ]:          0 :   const char *ret = dwarf_ordering_string (code);
    4390                 :          0 :   return string_or_unknown (ret, code, 0, 0, false);
    4391                 :            : }
    4392                 :            : 
    4393                 :            : 
    4394                 :            : static const char *
    4395                 :          8 : dwarf_discr_list_name (unsigned int code)
    4396                 :            : {
    4397         [ +  - ]:          8 :   const char *ret = dwarf_discr_list_string (code);
    4398                 :          8 :   return string_or_unknown (ret, code, 0, 0, false);
    4399                 :            : }
    4400                 :            : 
    4401                 :            : 
    4402                 :            : static const char *
    4403                 :          8 : dwarf_unit_name (unsigned int type)
    4404                 :            : {
    4405                 :          8 :   const char *ret = dwarf_unit_string (type);
    4406                 :          8 :   return string_or_unknown (ret, type, DW_UT_lo_user, DW_UT_hi_user, true);
    4407                 :            : }
    4408                 :            : 
    4409                 :            : 
    4410                 :            : static const char *
    4411                 :         16 : dwarf_range_list_encoding_name (unsigned int kind)
    4412                 :            : {
    4413                 :         16 :   const char *ret = dwarf_range_list_encoding_string (kind);
    4414                 :         16 :   return string_or_unknown (ret, kind, 0, 0, false);
    4415                 :            : }
    4416                 :            : 
    4417                 :            : 
    4418                 :            : static const char *
    4419                 :         91 : dwarf_loc_list_encoding_name (unsigned int kind)
    4420                 :            : {
    4421                 :         91 :   const char *ret = dwarf_loc_list_encoding_string (kind);
    4422                 :         91 :   return string_or_unknown (ret, kind, 0, 0, false);
    4423                 :            : }
    4424                 :            : 
    4425                 :            : 
    4426                 :            : static const char *
    4427                 :          6 : dwarf_line_content_description_name (unsigned int kind)
    4428                 :            : {
    4429                 :          6 :   const char *ret = dwarf_line_content_description_string (kind);
    4430                 :          6 :   return string_or_unknown (ret, kind, DW_LNCT_lo_user, DW_LNCT_hi_user,
    4431                 :            :                             false);
    4432                 :            : }
    4433                 :            : 
    4434                 :            : 
    4435                 :            : static void
    4436                 :        434 : print_block (size_t n, const void *block)
    4437                 :            : {
    4438         [ -  + ]:        434 :   if (n == 0)
    4439                 :          0 :     puts (_("empty block"));
    4440                 :            :   else
    4441                 :            :     {
    4442                 :        434 :       printf (_("%zu byte block:"), n);
    4443                 :        434 :       const unsigned char *data = block;
    4444                 :       2386 :       do
    4445                 :       2386 :         printf (" %02x", *data++);
    4446         [ +  + ]:       2386 :       while (--n > 0);
    4447                 :        434 :       putchar ('\n');
    4448                 :            :     }
    4449                 :        434 : }
    4450                 :            : 
    4451                 :            : static void
    4452                 :          0 : print_bytes (size_t n, const unsigned char *bytes)
    4453                 :            : {
    4454                 :          0 :   while (n-- > 0)
    4455                 :            :     {
    4456                 :          0 :       printf ("%02x", *bytes++);
    4457         [ #  # ]:          0 :       if (n > 0)
    4458         [ #  # ]:          0 :         printf (" ");
    4459                 :            :     }
    4460                 :          0 : }
    4461                 :            : 
    4462                 :            : static int
    4463                 :         68 : get_indexed_addr (Dwarf_CU *cu, Dwarf_Word idx, Dwarf_Addr *addr)
    4464                 :            : {
    4465         [ +  - ]:         68 :   if (cu == NULL)
    4466                 :            :     return -1;
    4467                 :            : 
    4468                 :         68 :   Elf_Data *debug_addr = cu->dbg->sectiondata[IDX_debug_addr];
    4469         [ +  - ]:         68 :   if (debug_addr == NULL)
    4470                 :            :     return -1;
    4471                 :            : 
    4472                 :         68 :   Dwarf_Off base = __libdw_cu_addr_base (cu);
    4473                 :         68 :   Dwarf_Word off = idx * cu->address_size;
    4474         [ +  - ]:         68 :   if (base > debug_addr->d_size
    4475         [ +  - ]:         68 :       || off > debug_addr->d_size - base
    4476         [ +  - ]:         68 :       || cu->address_size > debug_addr->d_size - base - off)
    4477                 :            :     return -1;
    4478                 :            : 
    4479                 :         68 :   const unsigned char *addrp = debug_addr->d_buf + base + off;
    4480         [ -  + ]:         68 :   if (cu->address_size == 4)
    4481         [ #  # ]:          0 :     *addr = read_4ubyte_unaligned (cu->dbg, addrp);
    4482                 :            :   else
    4483         [ -  + ]:         68 :     *addr = read_8ubyte_unaligned (cu->dbg, addrp);
    4484                 :            : 
    4485                 :            :   return 0;
    4486                 :            : }
    4487                 :            : 
    4488                 :            : static void
    4489                 :     374610 : print_ops (Dwfl_Module *dwflmod, Dwarf *dbg, int indent, int indentrest,
    4490                 :            :            unsigned int vers, unsigned int addrsize, unsigned int offset_size,
    4491                 :            :            struct Dwarf_CU *cu, Dwarf_Word len, const unsigned char *data)
    4492                 :            : {
    4493         [ +  + ]:     374610 :   const unsigned int ref_size = vers < 3 ? addrsize : offset_size;
    4494                 :            : 
    4495         [ -  + ]:     374610 :   if (len == 0)
    4496                 :            :     {
    4497                 :          0 :       printf ("%*s(empty)\n", indent, "");
    4498                 :          0 :       return;
    4499                 :            :     }
    4500                 :            : 
    4501                 :            : #define NEED(n)         if (len < (Dwarf_Word) (n)) goto invalid
    4502                 :            : #define CONSUME(n)      NEED (n); else len -= (n)
    4503                 :            : 
    4504                 :            :   Dwarf_Word offset = 0;
    4505         [ +  + ]:     911669 :   while (len-- > 0)
    4506                 :            :     {
    4507                 :     537059 :       uint_fast8_t op = *data++;
    4508                 :            : 
    4509         [ +  - ]:     537059 :       const char *op_name = dwarf_locexpr_opcode_string (op);
    4510         [ -  + ]:     537059 :       if (unlikely (op_name == NULL))
    4511                 :            :         {
    4512                 :          0 :           static char buf[20];
    4513         [ #  # ]:          0 :           if (op >= DW_OP_lo_user)
    4514                 :          0 :             snprintf (buf, sizeof buf, "lo_user+%#x", op - DW_OP_lo_user);
    4515                 :            :           else
    4516                 :          0 :             snprintf (buf, sizeof buf, "??? (%#x)", op);
    4517                 :            :           op_name = buf;
    4518                 :            :         }
    4519                 :            : 
    4520   [ +  -  +  +  :     537059 :       switch (op)
          +  +  +  +  -  
          -  +  +  -  +  
          -  -  +  +  +  
          +  +  +  -  -  
             -  +  +  + ]
    4521                 :            :         {
    4522                 :      11917 :         case DW_OP_addr:;
    4523                 :            :           /* Address operand.  */
    4524                 :      11917 :           Dwarf_Word addr;
    4525         [ -  + ]:      11917 :           NEED (addrsize);
    4526         [ +  + ]:      11917 :           if (addrsize == 4)
    4527         [ +  + ]:         42 :             addr = read_4ubyte_unaligned (dbg, data);
    4528         [ +  - ]:      11875 :           else if (addrsize == 8)
    4529         [ +  + ]:      11875 :             addr = read_8ubyte_unaligned (dbg, data);
    4530                 :            :           else
    4531                 :          0 :             goto invalid;
    4532                 :      11917 :           data += addrsize;
    4533                 :      11917 :           CONSUME (addrsize);
    4534                 :            : 
    4535                 :      11917 :           printf ("%*s[%2" PRIuMAX "] %s ",
    4536                 :            :                   indent, "", (uintmax_t) offset, op_name);
    4537                 :      11917 :           print_dwarf_addr (dwflmod, 0, addr, addr);
    4538                 :      11917 :           printf ("\n");
    4539                 :            : 
    4540                 :      11917 :           offset += 1 + addrsize;
    4541                 :      11917 :           break;
    4542                 :            : 
    4543                 :          0 :         case DW_OP_call_ref:
    4544                 :            :         case DW_OP_GNU_variable_value:
    4545                 :            :           /* Offset operand.  */
    4546         [ #  # ]:          0 :           if (ref_size != 4 && ref_size != 8)
    4547                 :          0 :             goto invalid; /* Cannot be used in CFA.  */
    4548         [ #  # ]:          0 :           NEED (ref_size);
    4549         [ #  # ]:          0 :           if (ref_size == 4)
    4550         [ #  # ]:          0 :             addr = read_4ubyte_unaligned (dbg, data);
    4551                 :            :           else
    4552         [ #  # ]:          0 :             addr = read_8ubyte_unaligned (dbg, data);
    4553                 :          0 :           data += ref_size;
    4554                 :          0 :           CONSUME (ref_size);
    4555                 :            :           /* addr is a DIE offset, so format it as one.  */
    4556                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "]\n",
    4557                 :            :                   indent, "", (uintmax_t) offset,
    4558                 :            :                   op_name, (uintmax_t) addr);
    4559                 :          0 :           offset += 1 + ref_size;
    4560                 :          0 :           break;
    4561                 :            : 
    4562                 :      11790 :         case DW_OP_deref_size:
    4563                 :            :         case DW_OP_xderef_size:
    4564                 :            :         case DW_OP_pick:
    4565                 :            :         case DW_OP_const1u:
    4566                 :            :           // XXX value might be modified by relocation
    4567         [ -  + ]:      11790 :           NEED (1);
    4568                 :      23580 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu8 "\n",
    4569                 :            :                   indent, "", (uintmax_t) offset,
    4570                 :      11790 :                   op_name, *((uint8_t *) data));
    4571                 :      11790 :           ++data;
    4572                 :      11790 :           --len;
    4573                 :      11790 :           offset += 2;
    4574                 :      11790 :           break;
    4575                 :            : 
    4576                 :       1631 :         case DW_OP_const2u:
    4577         [ -  + ]:       1631 :           NEED (2);
    4578                 :            :           // XXX value might be modified by relocation
    4579                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu16 "\n",
    4580                 :            :                   indent, "", (uintmax_t) offset,
    4581         [ -  + ]:       1631 :                   op_name, read_2ubyte_unaligned (dbg, data));
    4582                 :       1631 :           CONSUME (2);
    4583                 :       1631 :           data += 2;
    4584                 :       1631 :           offset += 3;
    4585                 :       1631 :           break;
    4586                 :            : 
    4587                 :       1132 :         case DW_OP_const4u:
    4588         [ -  + ]:       1132 :           NEED (4);
    4589                 :            :           // XXX value might be modified by relocation
    4590                 :       3396 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu32 "\n",
    4591                 :            :                   indent, "", (uintmax_t) offset,
    4592         [ -  + ]:       1132 :                   op_name, read_4ubyte_unaligned (dbg, data));
    4593                 :       1132 :           CONSUME (4);
    4594                 :       1132 :           data += 4;
    4595                 :       1132 :           offset += 5;
    4596                 :       1132 :           break;
    4597                 :            : 
    4598                 :         56 :         case DW_OP_const8u:
    4599         [ -  + ]:         56 :           NEED (8);
    4600                 :            :           // XXX value might be modified by relocation
    4601                 :        168 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 "\n",
    4602                 :            :                   indent, "", (uintmax_t) offset,
    4603         [ -  + ]:         56 :                   op_name, (uint64_t) read_8ubyte_unaligned (dbg, data));
    4604                 :         56 :           CONSUME (8);
    4605                 :         56 :           data += 8;
    4606                 :         56 :           offset += 9;
    4607                 :         56 :           break;
    4608                 :            : 
    4609                 :       2753 :         case DW_OP_const1s:
    4610         [ -  + ]:       2753 :           NEED (1);
    4611                 :            :           // XXX value might be modified by relocation
    4612                 :       5506 :           printf ("%*s[%2" PRIuMAX "] %s %" PRId8 "\n",
    4613                 :            :                   indent, "", (uintmax_t) offset,
    4614                 :       2753 :                   op_name, *((int8_t *) data));
    4615                 :       2753 :           ++data;
    4616                 :       2753 :           --len;
    4617                 :       2753 :           offset += 2;
    4618                 :       2753 :           break;
    4619                 :            : 
    4620                 :          5 :         case DW_OP_const2s:
    4621         [ -  + ]:          5 :           NEED (2);
    4622                 :            :           // XXX value might be modified by relocation
    4623                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s %" PRId16 "\n",
    4624                 :            :                   indent, "", (uintmax_t) offset,
    4625         [ -  + ]:          5 :                   op_name, read_2sbyte_unaligned (dbg, data));
    4626                 :          5 :           CONSUME (2);
    4627                 :          5 :           data += 2;
    4628                 :          5 :           offset += 3;
    4629                 :          5 :           break;
    4630                 :            : 
    4631                 :          0 :         case DW_OP_const4s:
    4632         [ #  # ]:          0 :           NEED (4);
    4633                 :            :           // XXX value might be modified by relocation
    4634                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s %" PRId32 "\n",
    4635                 :            :                   indent, "", (uintmax_t) offset,
    4636         [ #  # ]:          0 :                   op_name, read_4sbyte_unaligned (dbg, data));
    4637                 :          0 :           CONSUME (4);
    4638                 :          0 :           data += 4;
    4639                 :          0 :           offset += 5;
    4640                 :          0 :           break;
    4641                 :            : 
    4642                 :          0 :         case DW_OP_const8s:
    4643         [ #  # ]:          0 :           NEED (8);
    4644                 :            :           // XXX value might be modified by relocation
    4645                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s %" PRId64 "\n",
    4646                 :            :                   indent, "", (uintmax_t) offset,
    4647         [ #  # ]:          0 :                   op_name, read_8sbyte_unaligned (dbg, data));
    4648                 :          0 :           CONSUME (8);
    4649                 :          0 :           data += 8;
    4650                 :          0 :           offset += 9;
    4651                 :          0 :           break;
    4652                 :            : 
    4653                 :       7235 :         case DW_OP_piece:
    4654                 :            :         case DW_OP_regx:
    4655                 :            :         case DW_OP_plus_uconst:
    4656                 :       7235 :         case DW_OP_constu:;
    4657                 :       7235 :           const unsigned char *start = data;
    4658                 :       7235 :           uint64_t uleb;
    4659         [ -  + ]:       7235 :           NEED (1);
    4660                 :       7235 :           get_uleb128 (uleb, data, data + len);
    4661                 :       7235 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 "\n",
    4662                 :            :                   indent, "", (uintmax_t) offset, op_name, uleb);
    4663         [ -  + ]:       7235 :           CONSUME (data - start);
    4664                 :       7235 :           offset += 1 + (data - start);
    4665                 :       7235 :           break;
    4666                 :            : 
    4667                 :          2 :         case DW_OP_addrx:
    4668                 :            :         case DW_OP_GNU_addr_index:
    4669                 :            :         case DW_OP_constx:
    4670                 :          2 :         case DW_OP_GNU_const_index:;
    4671                 :          2 :           start = data;
    4672         [ -  + ]:          2 :           NEED (1);
    4673                 :          2 :           get_uleb128 (uleb, data, data + len);
    4674                 :          2 :           printf ("%*s[%2" PRIuMAX "] %s [%" PRIu64 "] ",
    4675                 :            :                   indent, "", (uintmax_t) offset, op_name, uleb);
    4676         [ -  + ]:          2 :           CONSUME (data - start);
    4677                 :          2 :           offset += 1 + (data - start);
    4678         [ -  + ]:          2 :           if (get_indexed_addr (cu, uleb, &addr) != 0)
    4679                 :          0 :             printf ("???\n");
    4680                 :            :           else
    4681                 :            :             {
    4682                 :          2 :               print_dwarf_addr (dwflmod, 0, addr, addr);
    4683                 :          2 :               printf ("\n");
    4684                 :            :             }
    4685                 :            :           break;
    4686                 :            : 
    4687                 :          0 :         case DW_OP_bit_piece:
    4688                 :          0 :           start = data;
    4689                 :          0 :           uint64_t uleb2;
    4690         [ #  # ]:          0 :           NEED (1);
    4691                 :          0 :           get_uleb128 (uleb, data, data + len);
    4692                 :          0 :           NEED (1);
    4693                 :          0 :           get_uleb128 (uleb2, data, data + len);
    4694                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 ", %" PRIu64 "\n",
    4695                 :            :                   indent, "", (uintmax_t) offset, op_name, uleb, uleb2);
    4696         [ #  # ]:          0 :           CONSUME (data - start);
    4697                 :          0 :           offset += 1 + (data - start);
    4698                 :          0 :           break;
    4699                 :            : 
    4700                 :      94039 :         case DW_OP_fbreg:
    4701                 :            :         case DW_OP_breg0 ... DW_OP_breg31:
    4702                 :            :         case DW_OP_consts:
    4703                 :      94039 :           start = data;
    4704                 :      94039 :           int64_t sleb;
    4705         [ -  + ]:      94039 :           NEED (1);
    4706                 :      94039 :           get_sleb128 (sleb, data, data + len);
    4707                 :      94039 :           printf ("%*s[%2" PRIuMAX "] %s %" PRId64 "\n",
    4708                 :            :                   indent, "", (uintmax_t) offset, op_name, sleb);
    4709         [ -  + ]:      94039 :           CONSUME (data - start);
    4710                 :      94039 :           offset += 1 + (data - start);
    4711                 :      94039 :           break;
    4712                 :            : 
    4713                 :          0 :         case DW_OP_bregx:
    4714                 :          0 :           start = data;
    4715         [ #  # ]:          0 :           NEED (1);
    4716                 :          0 :           get_uleb128 (uleb, data, data + len);
    4717                 :          0 :           NEED (1);
    4718                 :          0 :           get_sleb128 (sleb, data, data + len);
    4719                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 " %" PRId64 "\n",
    4720                 :            :                   indent, "", (uintmax_t) offset, op_name, uleb, sleb);
    4721         [ #  # ]:          0 :           CONSUME (data - start);
    4722                 :          0 :           offset += 1 + (data - start);
    4723                 :          0 :           break;
    4724                 :            : 
    4725                 :          0 :         case DW_OP_call2:
    4726         [ #  # ]:          0 :           NEED (2);
    4727                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s [%6" PRIx16 "]\n",
    4728                 :            :                   indent, "", (uintmax_t) offset, op_name,
    4729         [ #  # ]:          0 :                   read_2ubyte_unaligned (dbg, data));
    4730                 :          0 :           CONSUME (2);
    4731                 :          0 :           data += 2;
    4732                 :          0 :           offset += 3;
    4733                 :          0 :           break;
    4734                 :            : 
    4735                 :          4 :         case DW_OP_call4:
    4736         [ -  + ]:          4 :           NEED (4);
    4737                 :         12 :           printf ("%*s[%2" PRIuMAX "] %s [%6" PRIx32 "]\n",
    4738                 :            :                   indent, "", (uintmax_t) offset, op_name,
    4739         [ -  + ]:          4 :                   read_4ubyte_unaligned (dbg, data));
    4740                 :          4 :           CONSUME (4);
    4741                 :          4 :           data += 4;
    4742                 :          4 :           offset += 5;
    4743                 :          4 :           break;
    4744                 :            : 
    4745                 :        208 :         case DW_OP_skip:
    4746                 :            :         case DW_OP_bra:
    4747         [ -  + ]:        208 :           NEED (2);
    4748                 :        416 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIuMAX "\n",
    4749                 :            :                   indent, "", (uintmax_t) offset, op_name,
    4750         [ -  + ]:        208 :                   (uintmax_t) (offset + read_2sbyte_unaligned (dbg, data) + 3));
    4751                 :        208 :           CONSUME (2);
    4752                 :        208 :           data += 2;
    4753                 :        208 :           offset += 3;
    4754                 :        208 :           break;
    4755                 :            : 
    4756                 :        332 :         case DW_OP_implicit_value:
    4757                 :        332 :           start = data;
    4758         [ -  + ]:        332 :           NEED (1);
    4759                 :        332 :           get_uleb128 (uleb, data, data + len);
    4760                 :        332 :           printf ("%*s[%2" PRIuMAX "] %s: ",
    4761                 :            :                   indent, "", (uintmax_t) offset, op_name);
    4762         [ -  + ]:        332 :           NEED (uleb);
    4763                 :        332 :           print_block (uleb, data);
    4764                 :        332 :           data += uleb;
    4765         [ -  + ]:        332 :           CONSUME (data - start);
    4766                 :        332 :           offset += 1 + (data - start);
    4767                 :        332 :           break;
    4768                 :            : 
    4769                 :       3244 :         case DW_OP_implicit_pointer:
    4770                 :            :         case DW_OP_GNU_implicit_pointer:
    4771                 :            :           /* DIE offset operand.  */
    4772                 :       3244 :           start = data;
    4773         [ -  + ]:       3244 :           NEED (ref_size);
    4774         [ -  + ]:       3244 :           if (ref_size != 4 && ref_size != 8)
    4775                 :          0 :             goto invalid; /* Cannot be used in CFA.  */
    4776         [ +  - ]:       3244 :           if (ref_size == 4)
    4777         [ -  + ]:       3244 :             addr = read_4ubyte_unaligned (dbg, data);
    4778                 :            :           else
    4779         [ #  # ]:          0 :             addr = read_8ubyte_unaligned (dbg, data);
    4780                 :       3244 :           data += ref_size;
    4781                 :            :           /* Byte offset operand.  */
    4782         [ -  + ]:       3244 :           NEED (1);
    4783                 :       3244 :           get_sleb128 (sleb, data, data + len);
    4784                 :            : 
    4785                 :       3244 :           printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "] %+" PRId64 "\n",
    4786                 :            :                   indent, "", (intmax_t) offset,
    4787                 :            :                   op_name, (uintmax_t) addr, sleb);
    4788         [ -  + ]:       3244 :           CONSUME (data - start);
    4789                 :       3244 :           offset += 1 + (data - start);
    4790                 :       3244 :           break;
    4791                 :            : 
    4792                 :      30989 :         case DW_OP_entry_value:
    4793                 :            :         case DW_OP_GNU_entry_value:
    4794                 :            :           /* Size plus expression block.  */
    4795                 :      30989 :           start = data;
    4796         [ -  + ]:      30989 :           NEED (1);
    4797                 :      30989 :           get_uleb128 (uleb, data, data + len);
    4798                 :      30989 :           printf ("%*s[%2" PRIuMAX "] %s:\n",
    4799                 :            :                   indent, "", (uintmax_t) offset, op_name);
    4800         [ -  + ]:      30989 :           NEED (uleb);
    4801                 :      30989 :           print_ops (dwflmod, dbg, indent + 5, indent + 5, vers,
    4802                 :            :                      addrsize, offset_size, cu, uleb, data);
    4803                 :      30989 :           data += uleb;
    4804         [ -  + ]:      30989 :           CONSUME (data - start);
    4805                 :      30989 :           offset += 1 + (data - start);
    4806                 :      30989 :           break;
    4807                 :            : 
    4808                 :        102 :         case DW_OP_const_type:
    4809                 :            :         case DW_OP_GNU_const_type:
    4810                 :            :           /* uleb128 CU relative DW_TAG_base_type DIE offset, 1-byte
    4811                 :            :              unsigned size plus block.  */
    4812                 :        102 :           start = data;
    4813         [ -  + ]:        102 :           NEED (1);
    4814                 :        102 :           get_uleb128 (uleb, data, data + len);
    4815   [ +  -  +  - ]:        102 :           if (! print_unresolved_addresses && cu != NULL)
    4816                 :        102 :             uleb += cu->start;
    4817                 :        102 :           NEED (1);
    4818                 :        102 :           uint8_t usize = *(uint8_t *) data++;
    4819         [ -  + ]:        102 :           NEED (usize);
    4820                 :        102 :           printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "] ",
    4821                 :            :                   indent, "", (uintmax_t) offset, op_name, uleb);
    4822                 :        102 :           print_block (usize, data);
    4823                 :        102 :           data += usize;
    4824         [ -  + ]:        102 :           CONSUME (data - start);
    4825                 :        102 :           offset += 1 + (data - start);
    4826                 :        102 :           break;
    4827                 :            : 
    4828                 :          0 :         case DW_OP_regval_type:
    4829                 :            :         case DW_OP_GNU_regval_type:
    4830                 :            :           /* uleb128 register number, uleb128 CU relative
    4831                 :            :              DW_TAG_base_type DIE offset.  */
    4832                 :          0 :           start = data;
    4833         [ #  # ]:          0 :           NEED (1);
    4834                 :          0 :           get_uleb128 (uleb, data, data + len);
    4835                 :          0 :           NEED (1);
    4836                 :          0 :           get_uleb128 (uleb2, data, data + len);
    4837   [ #  #  #  # ]:          0 :           if (! print_unresolved_addresses && cu != NULL)
    4838                 :          0 :             uleb2 += cu->start;
    4839                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu64 " [%6" PRIx64 "]\n",
    4840                 :            :                   indent, "", (uintmax_t) offset, op_name, uleb, uleb2);
    4841         [ #  # ]:          0 :           CONSUME (data - start);
    4842                 :          0 :           offset += 1 + (data - start);
    4843                 :          0 :           break;
    4844                 :            : 
    4845                 :          0 :         case DW_OP_deref_type:
    4846                 :            :         case DW_OP_GNU_deref_type:
    4847                 :            :           /* 1-byte unsigned size of value, uleb128 CU relative
    4848                 :            :              DW_TAG_base_type DIE offset.  */
    4849                 :          0 :           start = data;
    4850         [ #  # ]:          0 :           NEED (1);
    4851                 :          0 :           usize = *(uint8_t *) data++;
    4852                 :          0 :           NEED (1);
    4853                 :          0 :           get_uleb128 (uleb, data, data + len);
    4854   [ #  #  #  # ]:          0 :           if (! print_unresolved_addresses && cu != NULL)
    4855                 :          0 :             uleb += cu->start;
    4856                 :          0 :           printf ("%*s[%2" PRIuMAX "] %s %" PRIu8 " [%6" PRIxMAX "]\n",
    4857                 :            :                   indent, "", (uintmax_t) offset,
    4858                 :            :                   op_name, usize, uleb);
    4859         [ #  # ]:          0 :           CONSUME (data - start);
    4860                 :          0 :           offset += 1 + (data - start);
    4861                 :          0 :           break;
    4862                 :            : 
    4863                 :          0 :         case DW_OP_xderef_type:
    4864                 :            :           /* 1-byte unsigned size of value, uleb128 base_type DIE offset.  */
    4865                 :          0 :           start = data;
    4866         [ #  # ]:          0 :           NEED (1);
    4867                 :          0 :           usize = *(uint8_t *) data++;
    4868                 :          0 :           NEED (1);
    4869                 :          0 :           get_uleb128 (uleb, data, data + len);
    4870                 :          0 :           printf ("%*s[%4" PRIuMAX "] %s %" PRIu8 " [%6" PRIxMAX "]\n",
    4871                 :            :                   indent, "", (uintmax_t) offset,
    4872                 :            :                   op_name, usize, uleb);
    4873         [ #  # ]:          0 :           CONSUME (data - start);
    4874                 :          0 :           offset += 1 + (data - start);
    4875                 :          0 :           break;
    4876                 :            : 
    4877                 :       1222 :         case DW_OP_convert:
    4878                 :            :         case DW_OP_GNU_convert:
    4879                 :            :         case DW_OP_reinterpret:
    4880                 :            :         case DW_OP_GNU_reinterpret:
    4881                 :            :           /* uleb128 CU relative offset to DW_TAG_base_type, or zero
    4882                 :            :              for conversion to untyped.  */
    4883                 :       1222 :           start = data;
    4884         [ -  + ]:       1222 :           NEED (1);
    4885                 :       1222 :           get_uleb128 (uleb, data, data + len);
    4886   [ +  +  +  -  :       1222 :           if (uleb != 0 && ! print_unresolved_addresses && cu != NULL)
                   +  - ]
    4887                 :        927 :             uleb += cu->start;
    4888                 :       1222 :           printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "]\n",
    4889                 :            :                   indent, "", (uintmax_t) offset, op_name, uleb);
    4890         [ -  + ]:       1222 :           CONSUME (data - start);
    4891                 :       1222 :           offset += 1 + (data - start);
    4892                 :       1222 :           break;
    4893                 :            : 
    4894                 :          3 :         case DW_OP_GNU_parameter_ref:
    4895                 :            :           /* 4 byte CU relative reference to the abstract optimized away
    4896                 :            :              DW_TAG_formal_parameter.  */
    4897         [ -  + ]:          3 :           NEED (4);
    4898         [ -  + ]:          3 :           uintmax_t param_off = (uintmax_t) read_4ubyte_unaligned (dbg, data);
    4899   [ +  -  +  - ]:          3 :           if (! print_unresolved_addresses && cu != NULL)
    4900                 :          3 :             param_off += cu->start;
    4901                 :          3 :           printf ("%*s[%2" PRIuMAX "] %s [%6" PRIxMAX "]\n",
    4902                 :            :                   indent, "", (uintmax_t) offset, op_name, param_off);
    4903                 :          3 :           CONSUME (4);
    4904                 :          3 :           data += 4;
    4905                 :          3 :           offset += 5;
    4906                 :          3 :           break;
    4907                 :            : 
    4908                 :            :         default:
    4909                 :            :           /* No Operand.  */
    4910                 :     370395 :           printf ("%*s[%2" PRIuMAX "] %s\n",
    4911                 :            :                   indent, "", (uintmax_t) offset, op_name);
    4912                 :     370395 :           ++offset;
    4913                 :     370395 :           break;
    4914                 :            :         }
    4915                 :            : 
    4916                 :     537059 :       indent = indentrest;
    4917                 :     537059 :       continue;
    4918                 :            : 
    4919                 :          0 :     invalid:
    4920                 :          0 :       printf (_("%*s[%2" PRIuMAX "] %s  <TRUNCATED>\n"),
    4921                 :            :               indent, "", (uintmax_t) offset, op_name);
    4922                 :            :       break;
    4923                 :            :     }
    4924                 :            : }
    4925                 :            : 
    4926                 :            : 
    4927                 :            : /* Turn the addresses into file offsets by using the phdrs.  */
    4928                 :            : static void
    4929                 :          1 : find_offsets(Elf *elf, GElf_Addr main_bias, size_t n,
    4930                 :            :                   GElf_Addr addrs[n], GElf_Off offs[n])
    4931                 :            : {
    4932                 :          1 :   size_t unsolved = n;
    4933         [ +  + ]:          9 :   for (size_t i = 0; i < phnum; ++i) {
    4934                 :          8 :     GElf_Phdr phdr_mem;
    4935                 :          8 :     GElf_Phdr *phdr = gelf_getphdr(elf, i, &phdr_mem);
    4936   [ +  -  +  +  :          8 :     if (phdr != NULL && phdr->p_type == PT_LOAD && phdr->p_memsz > 0)
                   +  - ]
    4937         [ +  + ]:         17 :       for (size_t j = 0; j < n; ++j)
    4938   [ +  +  +  + ]:         16 :         if (offs[j] == 0 && addrs[j] >= phdr->p_vaddr + main_bias &&
    4939         [ +  - ]:          8 :             addrs[j] - (phdr->p_vaddr + main_bias) < phdr->p_filesz) {
    4940                 :          8 :           offs[j] = addrs[j] - (phdr->p_vaddr + main_bias) + phdr->p_offset;
    4941         [ +  + ]:          8 :           if (--unsolved == 0)
    4942                 :            :             break;
    4943                 :            :         }
    4944                 :            :   }
    4945                 :          1 : }
    4946                 :            : 
    4947                 :            : /* The dynamic segment (type PT_DYNAMIC), contains the .dynamic section.
    4948                 :            :    And .dynamic section contains an array of the dynamic structures.
    4949                 :            :    We use the array to get:
    4950                 :            :     DT_STRTAB: the address of the string table
    4951                 :            :     DT_SYMTAB: the address of the symbol table
    4952                 :            :     DT_STRSZ: the size, in bytes, of the string table
    4953                 :            :     ...  */
    4954                 :            : static void
    4955                 :          1 : get_dynscn_addrs(Elf *elf, GElf_Phdr *phdr, GElf_Addr addrs[i_max])
    4956                 :            : {
    4957                 :          1 :   Elf_Data *data = elf_getdata_rawchunk(
    4958                 :          1 :     elf, phdr->p_offset, phdr->p_filesz, ELF_T_DYN);
    4959                 :            : 
    4960                 :          1 :   int dyn_idx = 0;
    4961                 :         45 :   for (;; ++dyn_idx) {
    4962                 :         23 :     GElf_Dyn dyn_mem;
    4963                 :         23 :     GElf_Dyn *dyn = gelf_getdyn(data, dyn_idx, &dyn_mem);
    4964                 :            :     /* DT_NULL Marks end of dynamic section.  */
    4965   [ +  -  +  + ]:         23 :     if (dyn == NULL || dyn->d_tag == DT_NULL)
    4966                 :            :       break;
    4967                 :            : 
    4968   [ +  -  +  +  :         22 :     switch (dyn->d_tag) {
             +  +  +  +  
                      + ]
    4969                 :          1 :     case DT_SYMTAB:
    4970                 :          1 :       addrs[i_symtab] = dyn->d_un.d_ptr;
    4971                 :          1 :       break;
    4972                 :            : 
    4973                 :          0 :     case DT_HASH:
    4974                 :          0 :       addrs[i_hash] = dyn->d_un.d_ptr;
    4975                 :          0 :       break;
    4976                 :            : 
    4977                 :          1 :     case DT_GNU_HASH:
    4978                 :          1 :       addrs[i_gnu_hash] = dyn->d_un.d_ptr;
    4979                 :          1 :       break;
    4980                 :            : 
    4981                 :          1 :     case DT_STRTAB:
    4982                 :          1 :       addrs[i_strtab] = dyn->d_un.d_ptr;
    4983                 :          1 :       break;
    4984                 :            : 
    4985                 :          1 :     case DT_VERSYM:
    4986                 :          1 :       addrs[i_versym] = dyn->d_un.d_ptr;
    4987                 :          1 :       break;
    4988                 :            : 
    4989                 :          1 :     case DT_VERDEF:
    4990                 :          1 :       addrs[i_verdef] = dyn->d_un.d_ptr;
    4991                 :          1 :       break;
    4992                 :            : 
    4993                 :          1 :     case DT_VERNEED:
    4994                 :          1 :       addrs[i_verneed] = dyn->d_un.d_ptr;
    4995                 :          1 :       break;
    4996                 :            : 
    4997                 :          1 :     case DT_STRSZ:
    4998                 :          1 :       addrs[i_strsz] = dyn->d_un.d_val;
    4999                 :          1 :       break;
    5000                 :            :     }
    5001                 :         22 :   }
    5002                 :          1 : }
    5003                 :            : 
    5004                 :            : 
    5005                 :            : /* Use dynamic segment to get data for the string table section.  */
    5006                 :            : static Elf_Data *
    5007                 :          1 : get_dynscn_strtab(Elf *elf, GElf_Phdr *phdr)
    5008                 :            : {
    5009                 :          1 :   Elf_Data *strtab_data;
    5010                 :          1 :   GElf_Addr addrs[i_max] = {0,};
    5011                 :          1 :   GElf_Off offs[i_max] = {0,};
    5012                 :          1 :   get_dynscn_addrs(elf, phdr, addrs);
    5013                 :          1 :   find_offsets(elf, 0, i_max, addrs, offs);
    5014                 :          2 :   strtab_data = elf_getdata_rawchunk(
    5015                 :          1 :           elf, offs[i_strtab], addrs[i_strsz], ELF_T_BYTE);
    5016                 :          1 :   return strtab_data;
    5017                 :            : }
    5018                 :            : 
    5019                 :            : 
    5020                 :            : struct listptr
    5021                 :            : {
    5022                 :            :   Dwarf_Off offset:(64 - 3);
    5023                 :            :   bool addr64:1;
    5024                 :            :   bool dwarf64:1;
    5025                 :            :   bool warned:1;
    5026                 :            :   struct Dwarf_CU *cu;
    5027                 :            :   unsigned int attr;
    5028                 :            : };
    5029                 :            : 
    5030                 :            : #define listptr_offset_size(p)  ((p)->dwarf64 ? 8 : 4)
    5031                 :            : #define listptr_address_size(p) ((p)->addr64 ? 8 : 4)
    5032                 :            : 
    5033                 :            : static Dwarf_Addr
    5034                 :     125021 : cudie_base (Dwarf_Die *cudie)
    5035                 :            : {
    5036                 :     125021 :   Dwarf_Addr base;
    5037                 :            :   /* Find the base address of the compilation unit.  It will normally
    5038                 :            :      be specified by DW_AT_low_pc.  In DWARF-3 draft 4, the base
    5039                 :            :      address could be overridden by DW_AT_entry_pc.  It's been
    5040                 :            :      removed, but GCC emits DW_AT_entry_pc and not DW_AT_lowpc for
    5041                 :            :      compilation units with discontinuous ranges.  */
    5042         [ -  + ]:     125021 :   if (unlikely (dwarf_lowpc (cudie, &base) != 0))
    5043                 :            :     {
    5044                 :          0 :       Dwarf_Attribute attr_mem;
    5045         [ #  # ]:          0 :       if (dwarf_formaddr (dwarf_attr (cudie, DW_AT_entry_pc, &attr_mem),
    5046                 :            :                           &base) != 0)
    5047                 :          0 :         base = 0;
    5048                 :            :     }
    5049                 :     125021 :   return base;
    5050                 :            : }
    5051                 :            : 
    5052                 :            : static Dwarf_Addr
    5053                 :     125021 : listptr_base (struct listptr *p)
    5054                 :            : {
    5055                 :     125021 :   Dwarf_Die cu = CUDIE (p->cu);
    5056                 :     125021 :   return cudie_base (&cu);
    5057                 :            : }
    5058                 :            : 
    5059                 :            : /* To store the name used in compare_listptr */
    5060                 :            : static const char *sort_listptr_name;
    5061                 :            : 
    5062                 :            : static int
    5063                 :     831603 : compare_listptr (const void *a, const void *b)
    5064                 :            : {
    5065                 :     831603 :   const char *name = sort_listptr_name;
    5066                 :     831603 :   struct listptr *p1 = (void *) a;
    5067                 :     831603 :   struct listptr *p2 = (void *) b;
    5068                 :            : 
    5069         [ +  + ]:     831603 :   if (p1->offset < p2->offset)
    5070                 :            :     return -1;
    5071         [ +  + ]:      80893 :   if (p1->offset > p2->offset)
    5072                 :            :     return 1;
    5073                 :            : 
    5074   [ +  -  +  - ]:       3746 :   if (!p1->warned && !p2->warned)
    5075                 :            :     {
    5076         [ -  + ]:       3746 :       if (p1->addr64 != p2->addr64)
    5077                 :            :         {
    5078                 :          0 :           p1->warned = p2->warned = true;
    5079                 :       3746 :           error (0, 0,
    5080                 :          0 :                  _("%s %#" PRIx64 " used with different address sizes"),
    5081                 :            :                  name, (uint64_t) p1->offset);
    5082                 :            :         }
    5083         [ -  + ]:       3746 :       if (p1->dwarf64 != p2->dwarf64)
    5084                 :            :         {
    5085                 :          0 :           p1->warned = p2->warned = true;
    5086                 :       3746 :           error (0, 0,
    5087                 :          0 :                  _("%s %#" PRIx64 " used with different offset sizes"),
    5088                 :          0 :                  name, (uint64_t) p1->offset);
    5089                 :            :         }
    5090         [ -  + ]:       3746 :       if (listptr_base (p1) != listptr_base (p2))
    5091                 :            :         {
    5092                 :          0 :           p1->warned = p2->warned = true;
    5093                 :       3746 :           error (0, 0,
    5094                 :          0 :                  _("%s %#" PRIx64 " used with different base addresses"),
    5095                 :          0 :                  name, (uint64_t) p1->offset);
    5096                 :            :         }
    5097         [ -  + ]:       3746 :       if (p1->attr != p2 ->attr)
    5098                 :            :         {
    5099                 :          0 :           p1->warned = p2->warned = true;
    5100                 :          0 :           error (0, 0,
    5101                 :          0 :                  _("%s %#" PRIx64
    5102                 :            :                           " used with different attribute %s and %s"),
    5103                 :          0 :                  name, (uint64_t) p1->offset, dwarf_attr_name (p1->attr),
    5104                 :            :                  dwarf_attr_name (p2->attr));
    5105                 :            :         }
    5106                 :            :     }
    5107                 :            : 
    5108                 :            :   return 0;
    5109                 :            : }
    5110                 :            : 
    5111                 :            : struct listptr_table
    5112                 :            : {
    5113                 :            :   size_t n;
    5114                 :            :   size_t alloc;
    5115                 :            :   struct listptr *table;
    5116                 :            : };
    5117                 :            : 
    5118                 :            : static struct listptr_table known_locsptr;
    5119                 :            : static struct listptr_table known_loclistsptr;
    5120                 :            : static struct listptr_table known_rangelistptr;
    5121                 :            : static struct listptr_table known_rnglistptr;
    5122                 :            : static struct listptr_table known_addrbases;
    5123                 :            : static struct listptr_table known_stroffbases;
    5124                 :            : 
    5125                 :            : static void
    5126                 :        293 : reset_listptr (struct listptr_table *table)
    5127                 :            : {
    5128                 :        293 :   free (table->table);
    5129                 :        293 :   table->table = NULL;
    5130                 :        293 :   table->n = table->alloc = 0;
    5131                 :            : }
    5132                 :            : 
    5133                 :            : /* Returns false if offset doesn't fit.  See struct listptr.  */
    5134                 :            : static bool
    5135                 :     121094 : notice_listptr (enum section_e section, struct listptr_table *table,
    5136                 :            :                 uint_fast8_t address_size, uint_fast8_t offset_size,
    5137                 :            :                 struct Dwarf_CU *cu, Dwarf_Off offset, unsigned int attr)
    5138                 :            : {
    5139         [ +  + ]:     121094 :   if (print_debug_sections & section)
    5140                 :            :     {
    5141         [ +  + ]:     120968 :       if (table->n == table->alloc)
    5142                 :            :         {
    5143         [ +  + ]:        200 :           if (table->alloc == 0)
    5144                 :         83 :             table->alloc = 128;
    5145                 :            :           else
    5146                 :        117 :             table->alloc *= 2;
    5147                 :        200 :           table->table = xrealloc (table->table,
    5148                 :        200 :                                    table->alloc * sizeof table->table[0]);
    5149                 :            :         }
    5150                 :            : 
    5151                 :     120968 :       struct listptr *p = &table->table[table->n++];
    5152                 :            : 
    5153                 :     120968 :       *p = (struct listptr)
    5154                 :            :         {
    5155                 :     120968 :           .addr64 = address_size == 8,
    5156                 :     120968 :           .dwarf64 = offset_size == 8,
    5157                 :            :           .offset = offset,
    5158                 :            :           .cu = cu,
    5159                 :            :           .attr = attr
    5160                 :            :         };
    5161                 :            : 
    5162         [ -  + ]:     120968 :       if (p->offset != offset)
    5163                 :            :         {
    5164                 :          0 :           table->n--;
    5165                 :          0 :           return false;
    5166                 :            :         }
    5167                 :            :     }
    5168                 :            :   return true;
    5169                 :            : }
    5170                 :            : 
    5171                 :            : static void
    5172                 :         87 : sort_listptr (struct listptr_table *table, const char *name)
    5173                 :            : {
    5174         [ +  + ]:         87 :   if (table->n > 0)
    5175                 :            :     {
    5176                 :         83 :       sort_listptr_name = name;
    5177                 :         83 :       qsort (table->table, table->n, sizeof table->table[0],
    5178                 :            :              &compare_listptr);
    5179                 :            :     }
    5180                 :         87 : }
    5181                 :            : 
    5182                 :            : static bool
    5183                 :     117532 : skip_listptr_hole (struct listptr_table *table, size_t *idxp,
    5184                 :            :                    uint_fast8_t *address_sizep, uint_fast8_t *offset_sizep,
    5185                 :            :                    Dwarf_Addr *base, struct Dwarf_CU **cu, ptrdiff_t offset,
    5186                 :            :                    unsigned char **readp, unsigned char *endp,
    5187                 :            :                    unsigned int *attr)
    5188                 :            : {
    5189         [ +  - ]:     117532 :   if (table->n == 0)
    5190                 :            :     return false;
    5191                 :            : 
    5192   [ +  -  +  + ]:     186250 :   while (*idxp < table->n && table->table[*idxp].offset < (Dwarf_Off) offset)
    5193                 :      68718 :     ++*idxp;
    5194                 :            : 
    5195                 :     117532 :   struct listptr *p = &table->table[*idxp];
    5196                 :            : 
    5197         [ +  - ]:     117532 :   if (*idxp == table->n
    5198         [ -  + ]:     117532 :       || p->offset >= (Dwarf_Off) (endp - *readp + offset))
    5199                 :            :     {
    5200                 :          0 :       *readp = endp;
    5201                 :          0 :       printf (_(" [%6tx]  <UNUSED GARBAGE IN REST OF SECTION>\n"),
    5202                 :            :               offset);
    5203                 :          0 :       return true;
    5204                 :            :     }
    5205                 :            : 
    5206         [ +  + ]:     117532 :   if (p->offset != (Dwarf_Off) offset)
    5207                 :            :     {
    5208                 :         11 :       *readp += p->offset - offset;
    5209                 :         11 :       printf (_(" [%6tx]  <UNUSED GARBAGE> ... %" PRIu64 " bytes ...\n"),
    5210                 :            :               offset, (Dwarf_Off) p->offset - offset);
    5211                 :         11 :       return true;
    5212                 :            :     }
    5213                 :            : 
    5214         [ +  - ]:     117521 :   if (address_sizep != NULL)
    5215         [ +  + ]:     117529 :     *address_sizep = listptr_address_size (p);
    5216         [ +  + ]:     117521 :   if (offset_sizep != NULL)
    5217         [ +  - ]:     207040 :     *offset_sizep = listptr_offset_size (p);
    5218         [ +  - ]:     117521 :   if (base != NULL)
    5219                 :     117521 :     *base = listptr_base (p);
    5220         [ +  - ]:     117521 :   if (cu != NULL)
    5221                 :     117521 :     *cu = p->cu;
    5222         [ +  + ]:     117521 :   if (attr != NULL)
    5223                 :     103520 :     *attr = p->attr;
    5224                 :            : 
    5225                 :            :   return false;
    5226                 :            : }
    5227                 :            : 
    5228                 :            : static Dwarf_Off
    5229                 :      51724 : next_listptr_offset (struct listptr_table *table, size_t *idxp, Dwarf_Off off)
    5230                 :            : {
    5231                 :            :   /* Note that multiple attributes could in theory point to the same loclist
    5232                 :            :      offset, so make sure we pick one that is bigger than the current one.
    5233                 :            :      The table is sorted on offset.  */
    5234         [ +  - ]:      51724 :   if (*idxp < table->n)
    5235                 :            :     {
    5236         [ +  - ]:      52147 :       while (++*idxp < table->n)
    5237                 :            :         {
    5238                 :      52147 :           Dwarf_Off next = table->table[*idxp].offset;
    5239         [ +  + ]:      52147 :           if (next > off)
    5240                 :      51724 :             return next;
    5241                 :            :         }
    5242                 :            :     }
    5243                 :            :   return 0;
    5244                 :            : }
    5245                 :            : 
    5246                 :            : /* Returns the listptr associated with the given index, or NULL.  */
    5247                 :            : static struct listptr *
    5248                 :        356 : get_listptr (struct listptr_table *table, size_t idx)
    5249                 :            : {
    5250                 :        356 :   if (idx >= table->n)
    5251                 :            :     return NULL;
    5252                 :        303 :   return &table->table[idx];
    5253                 :            : }
    5254                 :            : 
    5255                 :            : /* Returns the next index, base address and CU associated with the
    5256                 :            :    list unit offsets.  If there is none false is returned, otherwise
    5257                 :            :    true.  Assumes the table has been sorted.  */
    5258                 :            : static bool
    5259                 :          8 : listptr_cu (struct listptr_table *table, size_t *idxp,
    5260                 :            :             Dwarf_Off start, Dwarf_Off end,
    5261                 :            :             Dwarf_Addr *base, struct Dwarf_CU **cu)
    5262                 :            : {
    5263         [ +  - ]:         17 :   while (*idxp < table->n
    5264         [ +  + ]:         17 :          && table->table[*idxp].offset < start)
    5265                 :          9 :     ++*idxp;
    5266                 :            : 
    5267         [ +  - ]:          8 :   if (*idxp < table->n
    5268         [ +  - ]:          8 :       && table->table[*idxp].offset >= start
    5269         [ +  - ]:          8 :       && table->table[*idxp].offset < end)
    5270                 :            :     {
    5271                 :          8 :       struct listptr *p = &table->table[*idxp];
    5272                 :          8 :       *base = listptr_base (p);
    5273                 :          8 :       *cu = p->cu;
    5274                 :          8 :       return true;
    5275                 :            :     }
    5276                 :            : 
    5277                 :            :   return false;
    5278                 :            : }
    5279                 :            : 
    5280                 :            : /* Returns the next index with the current CU for the given attribute.
    5281                 :            :    If there is none false is returned, otherwise true.  Assumes the
    5282                 :            :    table has been sorted.  */
    5283                 :            : static bool
    5284                 :         92 : listptr_attr (struct listptr_table *table, size_t idxp,
    5285                 :            :               Dwarf_Off offset, unsigned int attr)
    5286                 :            : {
    5287                 :        346 :   struct listptr *listptr;
    5288                 :        346 :   do
    5289                 :            :     {
    5290         [ +  + ]:        346 :       listptr = get_listptr (table, idxp);
    5291         [ +  - ]:        298 :       if (listptr == NULL)
    5292                 :            :         return false;
    5293                 :            : 
    5294   [ +  +  +  + ]:        298 :       if (listptr->offset == offset && listptr->attr == attr)
    5295                 :            :         return true;
    5296                 :            : 
    5297                 :        297 :       idxp++;
    5298                 :            :     }
    5299         [ +  + ]:        297 :   while (listptr->offset <= offset);
    5300                 :            : 
    5301                 :            :   return false;
    5302                 :            : }
    5303                 :            : 
    5304                 :            : static void
    5305                 :         42 : print_debug_abbrev_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
    5306                 :            :                             Ebl *ebl, GElf_Ehdr *ehdr __attribute__ ((unused)),
    5307                 :            :                             Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
    5308                 :            : {
    5309                 :         42 :   Elf_Data *elf_data = get_debug_elf_data (dbg, ebl, IDX_debug_abbrev, scn);
    5310         [ +  - ]:         42 :   if (elf_data == NULL)
    5311                 :            :     return;
    5312                 :            : 
    5313                 :         42 :   const size_t sh_size = elf_data->d_size;
    5314                 :            : 
    5315                 :         42 :   printf (_("\nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"
    5316                 :            :                    " [ Code]\n"),
    5317                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    5318                 :         42 :           (uint64_t) shdr->sh_offset);
    5319                 :            : 
    5320                 :         42 :   Dwarf_Off offset = 0;
    5321         [ +  + ]:       1708 :   while (offset < sh_size)
    5322                 :            :     {
    5323                 :       1666 :       printf (_("\nAbbreviation section at offset %" PRIu64 ":\n"),
    5324                 :            :               offset);
    5325                 :            : 
    5326                 :     150822 :       while (1)
    5327                 :      74578 :         {
    5328                 :      76244 :           size_t length;
    5329                 :      76244 :           Dwarf_Abbrev abbrev;
    5330                 :            : 
    5331                 :      76244 :           int res = dwarf_offabbrev (dbg, offset, &length, &abbrev);
    5332         [ +  + ]:      76244 :           if (res != 0)
    5333                 :            :             {
    5334         [ -  + ]:       1666 :               if (unlikely (res < 0))
    5335                 :            :                 {
    5336                 :          0 :                   printf (_("\
    5337                 :            :  *** error while reading abbreviation: %s\n"),
    5338                 :            :                           dwarf_errmsg (-1));
    5339                 :          0 :                   return;
    5340                 :            :                 }
    5341                 :            : 
    5342                 :            :               /* This is the NUL byte at the end of the section.  */
    5343                 :       1666 :               ++offset;
    5344                 :       1666 :               break;
    5345                 :            :             }
    5346                 :            : 
    5347                 :            :           /* We know these calls can never fail.  */
    5348                 :      74578 :           unsigned int code = dwarf_getabbrevcode (&abbrev);
    5349                 :      74578 :           unsigned int tag = dwarf_getabbrevtag (&abbrev);
    5350                 :      74578 :           int has_children = dwarf_abbrevhaschildren (&abbrev);
    5351                 :            : 
    5352         [ +  + ]:      74578 :           printf (_(" [%5u] offset: %" PRId64
    5353                 :            :                            ", children: %s, tag: %s\n"),
    5354                 :            :                   code, (int64_t) offset,
    5355                 :            :                   has_children ? yes_str : no_str,
    5356                 :            :                   dwarf_tag_name (tag));
    5357                 :            : 
    5358                 :      74578 :           size_t cnt = 0;
    5359                 :      74578 :           unsigned int name;
    5360                 :      74578 :           unsigned int form;
    5361                 :      74578 :           Dwarf_Sword data;
    5362                 :      74578 :           Dwarf_Off enoffset;
    5363         [ +  + ]:     423924 :           while (dwarf_getabbrevattr_data (&abbrev, cnt, &name, &form,
    5364                 :            :                                            &data, &enoffset) == 0)
    5365                 :            :             {
    5366                 :     349346 :               printf ("          attr: %s, form: %s",
    5367                 :            :                       dwarf_attr_name (name), dwarf_form_name (form));
    5368         [ -  + ]:     349346 :               if (form == DW_FORM_implicit_const)
    5369                 :          0 :                 printf (" (%" PRId64 ")", data);
    5370                 :     349346 :               printf (", offset: %#" PRIx64 "\n", (uint64_t) enoffset);
    5371                 :     349346 :               ++cnt;
    5372                 :            :             }
    5373                 :            : 
    5374                 :      74578 :           offset += length;
    5375                 :            :         }
    5376                 :            :     }
    5377                 :            : }
    5378                 :            : 
    5379                 :            : 
    5380                 :            : static void
    5381                 :          2 : print_debug_addr_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
    5382                 :            :                           Ebl *ebl, GElf_Ehdr *ehdr,
    5383                 :            :                           Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
    5384                 :            : {
    5385                 :          2 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_addr, scn);
    5386         [ +  - ]:          2 :   if (data == NULL)
    5387                 :            :     return;
    5388                 :            : 
    5389                 :          2 :   printf (_("\
    5390                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    5391                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    5392                 :          2 :           (uint64_t) shdr->sh_offset);
    5393                 :            : 
    5394         [ +  - ]:          2 :   if (shdr->sh_size == 0)
    5395                 :            :     return;
    5396                 :            : 
    5397                 :          2 :   size_t idx = 0;
    5398                 :          2 :   sort_listptr (&known_addrbases, "addr_base");
    5399                 :            : 
    5400                 :          2 :   const unsigned char *start = (const unsigned char *) data->d_buf;
    5401                 :          2 :   const unsigned char *readp = start;
    5402                 :          2 :   const unsigned char *readendp = ((const unsigned char *) data->d_buf
    5403                 :          2 :                                    + data->d_size);
    5404                 :            : 
    5405                 :          2 :   while (readp < readendp)
    5406                 :            :     {
    5407                 :            :       /* We cannot really know whether or not there is an header.  The
    5408                 :            :          DebugFission extension to DWARF4 doesn't add one.  The DWARF5
    5409                 :            :          .debug_addr variant does.  Whether or not we have an header,
    5410                 :            :          DW_AT_[GNU_]addr_base points at "index 0".  So if the current
    5411                 :            :          offset equals the CU addr_base then we can just start
    5412                 :            :          printing addresses.  If there is no CU with an exact match
    5413                 :            :          then we'll try to parse the header first.  */
    5414                 :          4 :       Dwarf_Off off = (Dwarf_Off) (readp
    5415                 :          4 :                                    - (const unsigned char *) data->d_buf);
    5416                 :            : 
    5417                 :          4 :       printf ("Table at offset %" PRIx64 " ", off);
    5418                 :            : 
    5419         [ +  - ]:          4 :       struct listptr *listptr = get_listptr (&known_addrbases, idx++);
    5420                 :          4 :       const unsigned char *next_unitp;
    5421                 :            : 
    5422                 :          4 :       uint64_t unit_length;
    5423                 :          4 :       uint16_t version;
    5424                 :          4 :       uint8_t address_size;
    5425                 :          4 :       uint8_t segment_size;
    5426         [ -  + ]:          4 :       if (listptr == NULL)
    5427                 :            :         {
    5428                 :          0 :           error (0, 0, "Warning: No CU references .debug_addr after %" PRIx64,
    5429                 :            :                  off);
    5430                 :            : 
    5431                 :            :           /* We will have to assume it is just addresses to the end... */
    5432         [ #  # ]:          0 :           address_size = ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
    5433                 :          0 :           next_unitp = readendp;
    5434                 :          0 :           printf ("Unknown CU:\n");
    5435                 :            :         }
    5436                 :            :       else
    5437                 :            :         {
    5438                 :          4 :           Dwarf_Die cudie;
    5439         [ -  + ]:          4 :           if (dwarf_cu_die (listptr->cu, &cudie,
    5440                 :            :                             NULL, NULL, NULL, NULL,
    5441                 :            :                             NULL, NULL) == NULL)
    5442                 :          0 :             printf ("Unknown CU (%s):\n", dwarf_errmsg (-1));
    5443                 :            :           else
    5444                 :          4 :             printf ("for CU [%6" PRIx64 "]:\n", dwarf_dieoffset (&cudie));
    5445                 :            : 
    5446         [ +  + ]:          4 :           if (listptr->offset == off)
    5447                 :            :             {
    5448         [ -  + ]:          2 :               address_size = listptr_address_size (listptr);
    5449                 :          2 :               segment_size = 0;
    5450                 :          2 :               version = 4;
    5451                 :            : 
    5452                 :            :               /* The addresses start here, but where do they end?  */
    5453         [ +  + ]:          2 :               listptr = get_listptr (&known_addrbases, idx);
    5454         [ +  - ]:          1 :               if (listptr == NULL)
    5455                 :            :                 next_unitp = readendp;
    5456         [ +  - ]:          1 :               else if (listptr->cu->version < 5)
    5457                 :            :                 {
    5458                 :          1 :                   next_unitp = start + listptr->offset;
    5459   [ +  -  -  + ]:          1 :                   if (listptr->offset < off || listptr->offset > data->d_size)
    5460                 :            :                     {
    5461                 :          0 :                       error (0, 0,
    5462                 :            :                              "Warning: Bad address base for next unit at %"
    5463                 :            :                              PRIx64, off);
    5464                 :          0 :                       next_unitp = readendp;
    5465                 :            :                     }
    5466                 :            :                 }
    5467                 :            :               else
    5468                 :            :                 {
    5469                 :            :                   /* Tricky, we don't have a header for this unit, but
    5470                 :            :                      there is one for the next.  We will have to
    5471                 :            :                      "guess" how big it is and subtract it from the
    5472                 :            :                      offset (because that points after the header).  */
    5473         [ #  # ]:          0 :                   unsigned int offset_size = listptr_offset_size (listptr);
    5474                 :          0 :                   Dwarf_Off next_off = (listptr->offset
    5475                 :          0 :                                         - (offset_size == 4 ? 4 : 12) /* len */
    5476                 :            :                                         - 2 /* version */
    5477                 :            :                                         - 1 /* address size */
    5478                 :          0 :                                         - 1); /* segment selector size */
    5479                 :          0 :                   next_unitp = start + next_off;
    5480   [ #  #  #  # ]:          0 :                   if (next_off < off || next_off > data->d_size)
    5481                 :            :                     {
    5482                 :          0 :                       error (0, 0,
    5483                 :            :                              "Warning: Couldn't calculate .debug_addr "
    5484                 :            :                              " unit length at %" PRIx64, off);
    5485                 :          0 :                       next_unitp = readendp;
    5486                 :            :                     }
    5487                 :            :                 }
    5488                 :          2 :               unit_length = (uint64_t) (next_unitp - readp);
    5489                 :            : 
    5490                 :            :               /* Pretend we have a header.  */
    5491                 :          2 :               printf ("\n");
    5492                 :          2 :               printf (_(" Length:         %8" PRIu64 "\n"),
    5493                 :            :                       unit_length);
    5494                 :          2 :               printf (_(" DWARF version:  %8" PRIu16 "\n"), version);
    5495                 :          2 :               printf (_(" Address size:   %8" PRIu64 "\n"),
    5496                 :            :                       (uint64_t) address_size);
    5497                 :          2 :               printf (_(" Segment size:   %8" PRIu64 "\n"),
    5498                 :            :                       (uint64_t) segment_size);
    5499                 :          4 :               printf ("\n");
    5500                 :            :             }
    5501                 :            :           else
    5502                 :            :             {
    5503                 :            :               /* OK, we have to parse an header first.  */
    5504         [ -  + ]:          2 :               unit_length = read_4ubyte_unaligned_inc (dbg, readp);
    5505         [ -  + ]:          2 :               if (unlikely (unit_length == 0xffffffff))
    5506                 :            :                 {
    5507         [ #  # ]:          0 :                   if (unlikely (readp > readendp - 8))
    5508                 :            :                     {
    5509                 :          0 :                     invalid_data:
    5510                 :          0 :                       error (0, 0, "Invalid data");
    5511                 :          0 :                       return;
    5512                 :            :                     }
    5513         [ #  # ]:          0 :                   unit_length = read_8ubyte_unaligned_inc (dbg, readp);
    5514                 :            :                 }
    5515                 :          2 :               printf ("\n");
    5516                 :          2 :               printf (_(" Length:         %8" PRIu64 "\n"),
    5517                 :            :                       unit_length);
    5518                 :            : 
    5519                 :            :               /* We need at least 2-bytes (version) + 1-byte
    5520                 :            :                  (addr_size) + 1-byte (segment_size) = 4 bytes to
    5521                 :            :                  complete the header.  And this unit cannot go beyond
    5522                 :            :                  the section data.  */
    5523         [ +  - ]:          2 :               if (readp > readendp - 4
    5524         [ +  - ]:          2 :                   || unit_length < 4
    5525         [ -  + ]:          2 :                   || unit_length > (uint64_t) (readendp - readp))
    5526                 :          0 :                 goto invalid_data;
    5527                 :            : 
    5528                 :          2 :               next_unitp = readp + unit_length;
    5529                 :            : 
    5530         [ -  + ]:          2 :               version = read_2ubyte_unaligned_inc (dbg, readp);
    5531                 :          2 :               printf (_(" DWARF version:  %8" PRIu16 "\n"), version);
    5532                 :            : 
    5533         [ -  + ]:          2 :               if (version != 5)
    5534                 :            :                 {
    5535                 :          0 :                   error (0, 0, _("Unknown version"));
    5536                 :          0 :                   goto next_unit;
    5537                 :            :                 }
    5538                 :            : 
    5539                 :          2 :               address_size = *readp++;
    5540                 :          2 :               printf (_(" Address size:   %8" PRIu64 "\n"),
    5541                 :            :                       (uint64_t) address_size);
    5542                 :            : 
    5543         [ -  + ]:          2 :               if (address_size != 4 && address_size != 8)
    5544                 :            :                 {
    5545                 :          0 :                   error (0, 0, _("unsupported address size"));
    5546                 :          0 :                   goto next_unit;
    5547                 :            :                 }
    5548                 :            : 
    5549                 :          2 :               segment_size = *readp++;
    5550                 :          2 :               printf (_(" Segment size:   %8" PRIu64 "\n"),
    5551                 :            :                       (uint64_t) segment_size);
    5552                 :          2 :               printf ("\n");
    5553                 :            : 
    5554         [ -  + ]:          2 :               if (segment_size != 0)
    5555                 :            :                 {
    5556                 :          0 :                   error (0, 0, _("unsupported segment size"));
    5557                 :          0 :                   goto next_unit;
    5558                 :            :                 }
    5559                 :            : 
    5560         [ -  + ]:          2 :               if (listptr->offset != (Dwarf_Off) (readp - start))
    5561                 :            :                 {
    5562                 :          0 :                   error (0, 0, "Address index doesn't start after header");
    5563                 :          0 :                   goto next_unit;
    5564                 :            :                 }
    5565                 :            :             }
    5566                 :            :         }
    5567                 :            : 
    5568                 :          4 :       int digits = 1;
    5569                 :          4 :       size_t addresses = (next_unitp - readp) / address_size;
    5570         [ +  + ]:          8 :       while (addresses >= 10)
    5571                 :            :         {
    5572                 :          4 :           ++digits;
    5573                 :          4 :           addresses /= 10;
    5574                 :            :         }
    5575                 :            : 
    5576                 :          4 :       unsigned int uidx = 0;
    5577                 :          4 :       size_t index_offset =  readp - (const unsigned char *) data->d_buf;
    5578                 :          4 :       printf (" Addresses start at offset 0x%zx:\n", index_offset);
    5579                 :         76 :       while (readp <= next_unitp - address_size)
    5580                 :            :         {
    5581   [ -  +  -  +  :         72 :           Dwarf_Addr addr = read_addr_unaligned_inc (address_size, dbg,
             -  -  -  + ]
    5582                 :            :                                                      readp);
    5583                 :         72 :           printf (" [%*u] ", digits, uidx++);
    5584                 :         72 :           print_dwarf_addr (dwflmod, address_size, addr, addr);
    5585         [ +  + ]:         76 :           printf ("\n");
    5586                 :            :         }
    5587                 :          4 :       printf ("\n");
    5588                 :            : 
    5589         [ +  - ]:          4 :       if (readp != next_unitp)
    5590         [ +  + ]:          6 :         error (0, 0, "extra %zd bytes at end of unit",
    5591                 :          0 :                (size_t) (next_unitp - readp));
    5592                 :            : 
    5593                 :          4 :     next_unit:
    5594                 :            :       readp = next_unitp;
    5595                 :            :     }
    5596                 :            : }
    5597                 :            : 
    5598                 :            : /* Print content of DWARF .debug_aranges section.  We fortunately do
    5599                 :            :    not have to know a bit about the structure of the section, libdwarf
    5600                 :            :    takes care of it.  */
    5601                 :            : static void
    5602                 :          1 : print_decoded_aranges_section (Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn,
    5603                 :            :                                GElf_Shdr *shdr, Dwarf *dbg)
    5604                 :            : {
    5605                 :          1 :   Dwarf_Aranges *aranges;
    5606                 :          1 :   size_t cnt;
    5607         [ -  + ]:          1 :   if (unlikely (dwarf_getaranges (dbg, &aranges, &cnt) != 0))
    5608                 :            :     {
    5609                 :          0 :       error (0, 0, _("cannot get .debug_aranges content: %s"),
    5610                 :            :              dwarf_errmsg (-1));
    5611                 :          0 :       return;
    5612                 :            :     }
    5613                 :            : 
    5614                 :          1 :   GElf_Shdr glink_mem;
    5615                 :          1 :   GElf_Shdr *glink;
    5616                 :          1 :   glink = gelf_getshdr (elf_getscn (ebl->elf, shdr->sh_link), &glink_mem);
    5617         [ -  + ]:          1 :   if (glink == NULL)
    5618                 :            :     {
    5619                 :          0 :       error (0, 0, _("invalid sh_link value in section %zu"),
    5620                 :            :              elf_ndxscn (scn));
    5621                 :          0 :       return;
    5622                 :            :     }
    5623                 :            : 
    5624                 :          1 :   printf (ngettext ("\
    5625                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 " contains %zu entry:\n",
    5626                 :            :                     "\
    5627                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 " contains %zu entries:\n",
    5628                 :            :                     cnt),
    5629                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    5630                 :          1 :           (uint64_t) shdr->sh_offset, cnt);
    5631                 :            : 
    5632                 :            :   /* Compute floor(log16(cnt)).  */
    5633                 :          1 :   size_t tmp = cnt;
    5634                 :          1 :   int digits = 1;
    5635         [ -  + ]:          1 :   while (tmp >= 16)
    5636                 :            :     {
    5637                 :          0 :       ++digits;
    5638                 :          0 :       tmp >>= 4;
    5639                 :            :     }
    5640                 :            : 
    5641         [ +  + ]:          6 :   for (size_t n = 0; n < cnt; ++n)
    5642                 :            :     {
    5643                 :          5 :       Dwarf_Arange *runp = dwarf_onearange (aranges, n);
    5644         [ -  + ]:          5 :       if (unlikely (runp == NULL))
    5645                 :            :         {
    5646                 :          0 :           printf ("cannot get arange %zu: %s\n", n, dwarf_errmsg (-1));
    5647                 :          0 :           return;
    5648                 :            :         }
    5649                 :            : 
    5650                 :          5 :       Dwarf_Addr start;
    5651                 :          5 :       Dwarf_Word length;
    5652                 :          5 :       Dwarf_Off offset;
    5653                 :            : 
    5654         [ -  + ]:          5 :       if (unlikely (dwarf_getarangeinfo (runp, &start, &length, &offset) != 0))
    5655                 :          0 :         printf (_(" [%*zu] ???\n"), digits, n);
    5656                 :            :       else
    5657                 :          5 :         printf (_(" [%*zu] start: %0#*" PRIx64
    5658                 :            :                          ", length: %5" PRIu64 ", CU DIE offset: %6"
    5659                 :            :                          PRId64 "\n"),
    5660         [ -  + ]:          5 :                 digits, n, ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 10 : 18,
    5661                 :            :                 (uint64_t) start, (uint64_t) length, (int64_t) offset);
    5662                 :            :     }
    5663                 :            : }
    5664                 :            : 
    5665                 :            : 
    5666                 :            : /* Print content of DWARF .debug_aranges section.  */
    5667                 :            : static void
    5668                 :         46 : print_debug_aranges_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
    5669                 :            :                              Ebl *ebl, GElf_Ehdr *ehdr, Elf_Scn *scn,
    5670                 :            :                              GElf_Shdr *shdr, Dwarf *dbg)
    5671                 :            : {
    5672         [ +  + ]:         46 :   if (decodedaranges)
    5673                 :            :     {
    5674                 :          1 :       print_decoded_aranges_section (ebl, ehdr, scn, shdr, dbg);
    5675                 :          1 :       return;
    5676                 :            :     }
    5677                 :            : 
    5678                 :         45 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_aranges, scn);
    5679         [ +  - ]:         45 :   if (data == NULL)
    5680                 :            :     return;
    5681                 :            : 
    5682                 :         45 :   printf (_("\
    5683                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    5684                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    5685                 :         45 :           (uint64_t) shdr->sh_offset);
    5686                 :            : 
    5687                 :         45 :   const unsigned char *readp = data->d_buf;
    5688                 :         45 :   const unsigned char *readendp = readp + data->d_size;
    5689                 :            : 
    5690         [ +  + ]:       1708 :   while (readp < readendp)
    5691                 :            :     {
    5692                 :       1663 :       const unsigned char *hdrstart = readp;
    5693                 :       1663 :       size_t start_offset = hdrstart - (const unsigned char *) data->d_buf;
    5694                 :            : 
    5695                 :       1663 :       printf (_("\nTable at offset %zu:\n"), start_offset);
    5696         [ -  + ]:       1663 :       if (readp + 4 > readendp)
    5697                 :            :         {
    5698                 :          0 :         invalid_data:
    5699                 :          0 :           error (0, 0, _("invalid data in section [%zu] '%s'"),
    5700                 :            :                  elf_ndxscn (scn), section_name (ebl, shdr));
    5701                 :          0 :           return;
    5702                 :            :         }
    5703                 :            : 
    5704         [ +  + ]:       1663 :       Dwarf_Word length = read_4ubyte_unaligned_inc (dbg, readp);
    5705                 :       1663 :       unsigned int length_bytes = 4;
    5706         [ -  + ]:       1663 :       if (length == DWARF3_LENGTH_64_BIT)
    5707                 :            :         {
    5708         [ #  # ]:          0 :           if (readp + 8 > readendp)
    5709                 :          0 :             goto invalid_data;
    5710         [ #  # ]:          0 :           length = read_8ubyte_unaligned_inc (dbg, readp);
    5711                 :          0 :           length_bytes = 8;
    5712                 :            :         }
    5713                 :            : 
    5714                 :       1663 :       const unsigned char *nexthdr = readp + length;
    5715                 :       1663 :       printf (_("\n Length:        %6" PRIu64 "\n"),
    5716                 :            :               (uint64_t) length);
    5717                 :            : 
    5718         [ -  + ]:       1663 :       if (unlikely (length > (size_t) (readendp - readp)))
    5719                 :          0 :         goto invalid_data;
    5720                 :            : 
    5721         [ -  + ]:       1663 :       if (length == 0)
    5722                 :          0 :         continue;
    5723                 :            : 
    5724         [ -  + ]:       1663 :       if (readp + 2 > readendp)
    5725                 :          0 :         goto invalid_data;
    5726         [ +  + ]:       1663 :       uint_fast16_t version = read_2ubyte_unaligned_inc (dbg, readp);
    5727                 :       1663 :       printf (_(" DWARF version: %6" PRIuFAST16 "\n"),
    5728                 :            :               version);
    5729         [ -  + ]:       1663 :       if (version != 2)
    5730                 :            :         {
    5731                 :          0 :           error (0, 0, _("unsupported aranges version"));
    5732                 :          0 :           goto next_table;
    5733                 :            :         }
    5734                 :            : 
    5735                 :       1663 :       Dwarf_Word offset;
    5736         [ -  + ]:       1663 :       if (readp + length_bytes > readendp)
    5737                 :          0 :         goto invalid_data;
    5738         [ -  + ]:       1663 :       if (length_bytes == 8)
    5739         [ #  # ]:          0 :         offset = read_8ubyte_unaligned_inc (dbg, readp);
    5740                 :            :       else
    5741         [ +  + ]:       1663 :         offset = read_4ubyte_unaligned_inc (dbg, readp);
    5742                 :       1663 :       printf (_(" CU offset:     %6" PRIx64 "\n"),
    5743                 :            :               (uint64_t) offset);
    5744                 :            : 
    5745         [ -  + ]:       1663 :       if (readp + 1 > readendp)
    5746                 :          0 :         goto invalid_data;
    5747                 :       1663 :       unsigned int address_size = *readp++;
    5748                 :       1663 :       printf (_(" Address size:  %6" PRIu64 "\n"),
    5749                 :            :               (uint64_t) address_size);
    5750         [ -  + ]:       1663 :       if (address_size != 4 && address_size != 8)
    5751                 :            :         {
    5752                 :          0 :           error (0, 0, _("unsupported address size"));
    5753                 :          0 :           goto next_table;
    5754                 :            :         }
    5755                 :            : 
    5756         [ -  + ]:       1663 :       if (readp + 1 > readendp)
    5757                 :          0 :         goto invalid_data;
    5758                 :       1663 :       unsigned int segment_size = *readp++;
    5759                 :       1663 :       printf (_(" Segment size:  %6" PRIu64 "\n\n"),
    5760                 :            :               (uint64_t) segment_size);
    5761   [ -  +  -  - ]:       1663 :       if (segment_size != 0 && segment_size != 4 && segment_size != 8)
    5762                 :            :         {
    5763                 :          0 :           error (0, 0, _("unsupported segment size"));
    5764                 :          0 :           goto next_table;
    5765                 :            :         }
    5766                 :            : 
    5767                 :            :       /* Round the address to the next multiple of 2*address_size.  */
    5768                 :       1663 :       readp += ((2 * address_size - ((readp - hdrstart) % (2 * address_size)))
    5769                 :       1663 :                 % (2 * address_size));
    5770                 :            : 
    5771                 :       1663 :       while (readp < nexthdr)
    5772                 :            :         {
    5773                 :       3375 :           Dwarf_Word range_address;
    5774                 :       3375 :           Dwarf_Word range_length;
    5775                 :       3375 :           Dwarf_Word segment = 0;
    5776         [ -  + ]:       3375 :           if (readp + 2 * address_size + segment_size > readendp)
    5777                 :          0 :             goto invalid_data;
    5778         [ +  + ]:       3375 :           if (address_size == 4)
    5779                 :            :             {
    5780         [ +  + ]:         46 :               range_address = read_4ubyte_unaligned_inc (dbg, readp);
    5781         [ +  + ]:         46 :               range_length = read_4ubyte_unaligned_inc (dbg, readp);
    5782                 :            :             }
    5783                 :            :           else
    5784                 :            :             {
    5785         [ +  + ]:       3329 :               range_address = read_8ubyte_unaligned_inc (dbg, readp);
    5786         [ +  + ]:       3329 :               range_length = read_8ubyte_unaligned_inc (dbg, readp);
    5787                 :            :             }
    5788                 :            : 
    5789         [ -  + ]:       3375 :           if (segment_size == 4)
    5790         [ #  # ]:          0 :             segment = read_4ubyte_unaligned_inc (dbg, readp);
    5791         [ -  + ]:       3375 :           else if (segment_size == 8)
    5792         [ #  # ]:          0 :             segment = read_8ubyte_unaligned_inc (dbg, readp);
    5793                 :            : 
    5794         [ +  + ]:       3375 :           if (range_address == 0 && range_length == 0 && segment == 0)
    5795                 :            :             break;
    5796                 :            : 
    5797                 :       1712 :           printf ("   ");
    5798                 :       1712 :           print_dwarf_addr (dwflmod, address_size, range_address,
    5799                 :            :                             range_address);
    5800                 :       1712 :           printf ("..");
    5801                 :       1712 :           print_dwarf_addr (dwflmod, address_size,
    5802                 :       1712 :                             range_address + range_length - 1,
    5803                 :            :                             range_length);
    5804         [ -  + ]:       1712 :           if (segment_size != 0)
    5805                 :          0 :             printf (" (%" PRIx64 ")\n", (uint64_t) segment);
    5806                 :            :           else
    5807         [ +  - ]:       5087 :             printf ("\n");
    5808                 :            :         }
    5809                 :            : 
    5810                 :       1663 :     next_table:
    5811         [ -  + ]:       1663 :       if (readp != nexthdr)
    5812                 :            :         {
    5813                 :          0 :           size_t padding = nexthdr - readp;
    5814                 :          0 :           printf (_("   %zu padding bytes\n"), padding);
    5815                 :          0 :           readp = nexthdr;
    5816                 :            :         }
    5817                 :            :     }
    5818                 :            : }
    5819                 :            : 
    5820                 :            : 
    5821                 :            : static bool is_split_dwarf (Dwarf *dbg, uint64_t *id, Dwarf_CU **split_cu);
    5822                 :            : 
    5823                 :            : /* Returns true and sets cu and cu_base if the given Dwarf is a split
    5824                 :            :    DWARF (.dwo) file.  */
    5825                 :            : static bool
    5826                 :          0 : split_dwarf_cu_base (Dwarf *dbg, Dwarf_CU **cu, Dwarf_Addr *cu_base)
    5827                 :            : {
    5828                 :          0 :   uint64_t id;
    5829         [ #  # ]:          0 :   if (is_split_dwarf (dbg, &id, cu))
    5830                 :            :     {
    5831                 :          0 :       Dwarf_Die cudie;
    5832         [ #  # ]:          0 :       if (dwarf_cu_info (*cu, NULL, NULL, &cudie, NULL, NULL, NULL, NULL) == 0)
    5833                 :            :         {
    5834                 :          0 :           *cu_base = cudie_base (&cudie);
    5835                 :          0 :           return true;
    5836                 :            :         }
    5837                 :            :     }
    5838                 :            :   return false;
    5839                 :            : }
    5840                 :            : 
    5841                 :            : /* Print content of DWARF .debug_rnglists section.  */
    5842                 :            : static void
    5843                 :          3 : print_debug_rnglists_section (Dwfl_Module *dwflmod,
    5844                 :            :                               Ebl *ebl,
    5845                 :            :                               GElf_Ehdr *ehdr __attribute__ ((unused)),
    5846                 :            :                               Elf_Scn *scn, GElf_Shdr *shdr,
    5847                 :            :                               Dwarf *dbg __attribute__((unused)))
    5848                 :            : {
    5849                 :          3 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_rnglists, scn);
    5850         [ +  - ]:          3 :   if (data == NULL)
    5851                 :          0 :     return;
    5852                 :            : 
    5853                 :          3 :   printf (_("\
    5854                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    5855                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    5856                 :          3 :           (uint64_t) shdr->sh_offset);
    5857                 :            : 
    5858                 :            :   /* For the listptr to get the base address/CU.  */
    5859                 :          3 :   sort_listptr (&known_rnglistptr, "rnglistptr");
    5860                 :          3 :   size_t listptr_idx = 0;
    5861                 :            : 
    5862                 :          3 :   const unsigned char *readp = data->d_buf;
    5863                 :          3 :   const unsigned char *const dataend = ((unsigned char *) data->d_buf
    5864                 :          3 :                                         + data->d_size);
    5865         [ +  + ]:          6 :   while (readp < dataend)
    5866                 :            :     {
    5867         [ -  + ]:          3 :       if (unlikely (readp > dataend - 4))
    5868                 :            :         {
    5869                 :          0 :         invalid_data:
    5870                 :          0 :           error (0, 0, _("invalid data in section [%zu] '%s'"),
    5871                 :            :                  elf_ndxscn (scn), section_name (ebl, shdr));
    5872                 :          0 :           return;
    5873                 :            :         }
    5874                 :            : 
    5875                 :          3 :       ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
    5876                 :          3 :       printf (_("Table at Offset 0x%" PRIx64 ":\n\n"),
    5877                 :            :               (uint64_t) offset);
    5878                 :            : 
    5879         [ -  + ]:          3 :       uint64_t unit_length = read_4ubyte_unaligned_inc (dbg, readp);
    5880                 :          3 :       unsigned int offset_size = 4;
    5881         [ -  + ]:          3 :       if (unlikely (unit_length == 0xffffffff))
    5882                 :            :         {
    5883         [ #  # ]:          0 :           if (unlikely (readp > dataend - 8))
    5884                 :          0 :             goto invalid_data;
    5885                 :            : 
    5886         [ #  # ]:          0 :           unit_length = read_8ubyte_unaligned_inc (dbg, readp);
    5887                 :          0 :           offset_size = 8;
    5888                 :            :         }
    5889                 :          3 :       printf (_(" Length:         %8" PRIu64 "\n"), unit_length);
    5890                 :            : 
    5891                 :            :       /* We need at least 2-bytes + 1-byte + 1-byte + 4-bytes = 8
    5892                 :            :          bytes to complete the header.  And this unit cannot go beyond
    5893                 :            :          the section data.  */
    5894         [ +  - ]:          3 :       if (readp > dataend - 8
    5895         [ +  - ]:          3 :           || unit_length < 8
    5896         [ -  + ]:          3 :           || unit_length > (uint64_t) (dataend - readp))
    5897                 :          0 :         goto invalid_data;
    5898                 :            : 
    5899                 :          3 :       const unsigned char *nexthdr = readp + unit_length;
    5900                 :            : 
    5901         [ -  + ]:          3 :       uint16_t version = read_2ubyte_unaligned_inc (dbg, readp);
    5902                 :          3 :       printf (_(" DWARF version:  %8" PRIu16 "\n"), version);
    5903                 :            : 
    5904         [ -  + ]:          3 :       if (version != 5)
    5905                 :            :         {
    5906                 :          0 :           error (0, 0, _("Unknown version"));
    5907                 :          0 :           goto next_table;
    5908                 :            :         }
    5909                 :            : 
    5910                 :          3 :       uint8_t address_size = *readp++;
    5911                 :          3 :       printf (_(" Address size:   %8" PRIu64 "\n"),
    5912                 :            :               (uint64_t) address_size);
    5913                 :            : 
    5914         [ -  + ]:          3 :       if (address_size != 4 && address_size != 8)
    5915                 :            :         {
    5916                 :          0 :           error (0, 0, _("unsupported address size"));
    5917                 :          0 :           goto next_table;
    5918                 :            :         }
    5919                 :            : 
    5920                 :          3 :       uint8_t segment_size = *readp++;
    5921                 :          3 :       printf (_(" Segment size:   %8" PRIu64 "\n"),
    5922                 :            :               (uint64_t) segment_size);
    5923                 :            : 
    5924   [ -  +  -  - ]:          3 :       if (segment_size != 0 && segment_size != 4 && segment_size != 8)
    5925                 :            :         {
    5926                 :          0 :           error (0, 0, _("unsupported segment size"));
    5927                 :          0 :           goto next_table;
    5928                 :            :         }
    5929                 :            : 
    5930         [ -  + ]:          3 :       uint32_t offset_entry_count = read_4ubyte_unaligned_inc (dbg, readp);
    5931                 :          3 :       printf (_(" Offset entries: %8" PRIu64 "\n"),
    5932                 :            :               (uint64_t) offset_entry_count);
    5933                 :            : 
    5934                 :            :       /* We need the CU that uses this unit to get the initial base address. */
    5935                 :          3 :       Dwarf_Addr cu_base = 0;
    5936                 :          3 :       struct Dwarf_CU *cu = NULL;
    5937         [ -  + ]:          3 :       if (listptr_cu (&known_rnglistptr, &listptr_idx,
    5938                 :            :                       (Dwarf_Off) offset,
    5939                 :          3 :                       (Dwarf_Off) (nexthdr - (unsigned char *) data->d_buf),
    5940                 :            :                       &cu_base, &cu)
    5941         [ #  # ]:          0 :           || split_dwarf_cu_base (dbg, &cu, &cu_base))
    5942                 :          3 :         {
    5943                 :          3 :           Dwarf_Die cudie;
    5944         [ -  + ]:          3 :           if (dwarf_cu_die (cu, &cudie,
    5945                 :            :                             NULL, NULL, NULL, NULL,
    5946                 :            :                             NULL, NULL) == NULL)
    5947                 :          0 :             printf (_(" Unknown CU base: "));
    5948                 :            :           else
    5949                 :          3 :             printf (_(" CU [%6" PRIx64 "] base: "),
    5950                 :            :                     dwarf_dieoffset (&cudie));
    5951                 :          3 :           print_dwarf_addr (dwflmod, address_size, cu_base, cu_base);
    5952                 :          3 :           printf ("\n");
    5953                 :            :         }
    5954                 :            :       else
    5955                 :          0 :         printf (_(" Not associated with a CU.\n"));
    5956                 :            : 
    5957                 :          3 :       printf ("\n");
    5958                 :            : 
    5959                 :          3 :       const unsigned char *offset_array_start = readp;
    5960         [ +  + ]:          3 :       if (offset_entry_count > 0)
    5961                 :            :         {
    5962                 :          1 :           uint64_t max_entries = (unit_length - 8) / offset_size;
    5963         [ -  + ]:          1 :           if (offset_entry_count > max_entries)
    5964                 :            :             {
    5965                 :          0 :               error (0, 0,
    5966                 :          0 :                      _("too many offset entries for unit length"));
    5967                 :          0 :               offset_entry_count = max_entries;
    5968                 :            :             }
    5969                 :            : 
    5970                 :          1 :           printf (_("  Offsets starting at 0x%" PRIx64 ":\n"),
    5971                 :            :                   (uint64_t) (offset_array_start
    5972                 :          1 :                               - (unsigned char *) data->d_buf));
    5973         [ +  + ]:          3 :           for (uint32_t idx = 0; idx < offset_entry_count; idx++)
    5974                 :            :             {
    5975                 :          2 :               printf ("   [%6" PRIu32 "] ", idx);
    5976         [ +  - ]:          2 :               if (offset_size == 4)
    5977                 :            :                 {
    5978         [ -  + ]:          2 :                   uint32_t off = read_4ubyte_unaligned_inc (dbg, readp);
    5979                 :          2 :                   printf ("0x%" PRIx32 "\n", off);
    5980                 :            :                 }
    5981                 :            :               else
    5982                 :            :                 {
    5983         [ #  # ]:          0 :                   uint64_t off = read_8ubyte_unaligned_inc (dbg, readp);
    5984                 :          2 :                   printf ("0x%" PRIx64 "\n", off);
    5985                 :            :                 }
    5986                 :            :             }
    5987                 :          1 :           printf ("\n");
    5988                 :            :         }
    5989                 :            : 
    5990                 :          3 :       Dwarf_Addr base = cu_base;
    5991                 :          3 :       bool start_of_list = true;
    5992                 :          3 :       while (readp < nexthdr)
    5993                 :            :         {
    5994                 :         16 :           uint8_t kind = *readp++;
    5995                 :         16 :           uint64_t op1, op2;
    5996                 :            : 
    5997                 :            :           /* Skip padding.  */
    5998         [ -  + ]:         16 :           if (start_of_list && kind == DW_RLE_end_of_list)
    5999                 :          0 :             continue;
    6000                 :            : 
    6001         [ +  + ]:         16 :           if (start_of_list)
    6002                 :            :             {
    6003                 :          5 :               base = cu_base;
    6004                 :          5 :               printf ("  Offset: %" PRIx64 ", Index: %" PRIx64 "\n",
    6005                 :          5 :                       (uint64_t) (readp - (unsigned char *) data->d_buf - 1),
    6006                 :          5 :                       (uint64_t) (readp - offset_array_start - 1));
    6007                 :          5 :               start_of_list = false;
    6008                 :            :             }
    6009                 :            : 
    6010                 :         16 :           printf ("    %s", dwarf_range_list_encoding_name (kind));
    6011   [ +  -  -  -  :         16 :           switch (kind)
             +  +  -  +  
                      - ]
    6012                 :            :             {
    6013                 :          5 :             case DW_RLE_end_of_list:
    6014                 :          5 :               start_of_list = true;
    6015                 :          5 :               printf ("\n\n");
    6016                 :            :               break;
    6017                 :            : 
    6018                 :          0 :             case DW_RLE_base_addressx:
    6019         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    6020                 :            :                 {
    6021                 :          0 :                 invalid_range:
    6022                 :          0 :                   error (0, 0, _("invalid range list data"));
    6023                 :          0 :                   goto next_table;
    6024                 :            :                 }
    6025                 :          0 :               get_uleb128 (op1, readp, nexthdr);
    6026                 :          0 :               printf (" %" PRIx64 "\n", op1);
    6027         [ #  # ]:          0 :               if (! print_unresolved_addresses)
    6028                 :            :                 {
    6029                 :          0 :                   Dwarf_Addr addr;
    6030         [ #  # ]:          0 :                   if (get_indexed_addr (cu, op1, &addr) != 0)
    6031                 :          0 :                     printf ("      ???\n");
    6032                 :            :                   else
    6033                 :            :                     {
    6034                 :          0 :                       printf ("      ");
    6035                 :          0 :                       print_dwarf_addr (dwflmod, address_size, addr, addr);
    6036                 :          0 :                       printf ("\n");
    6037                 :            :                     }
    6038                 :            :                 }
    6039                 :            :               break;
    6040                 :            : 
    6041                 :          0 :             case DW_RLE_startx_endx:
    6042         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    6043                 :          0 :                 goto invalid_range;
    6044                 :          0 :               get_uleb128 (op1, readp, nexthdr);
    6045         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    6046                 :          0 :                 goto invalid_range;
    6047                 :          0 :               get_uleb128 (op2, readp, nexthdr);
    6048                 :          0 :               printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
    6049         [ #  # ]:          0 :               if (! print_unresolved_addresses)
    6050                 :            :                 {
    6051                 :          0 :                   Dwarf_Addr addr1;
    6052                 :          0 :                   Dwarf_Addr addr2;
    6053         [ #  # ]:          0 :                   if (get_indexed_addr (cu, op1, &addr1) != 0
    6054         [ #  # ]:          0 :                       || get_indexed_addr (cu, op2, &addr2) != 0)
    6055                 :            :                     {
    6056                 :          0 :                       printf ("      ???..\n");
    6057                 :          0 :                       printf ("      ???\n");
    6058                 :            :                     }
    6059                 :            :                   else
    6060                 :            :                     {
    6061                 :          0 :                       printf ("      ");
    6062                 :          0 :                       print_dwarf_addr (dwflmod, address_size, addr1, addr1);
    6063                 :          0 :                       printf ("..\n      ");
    6064                 :          0 :                       print_dwarf_addr (dwflmod, address_size,
    6065                 :            :                                         addr2 - 1, addr2);
    6066                 :          0 :                       printf ("\n");
    6067                 :            :                     }
    6068                 :            :                 }
    6069                 :            :               break;
    6070                 :            : 
    6071                 :          0 :             case DW_RLE_startx_length:
    6072         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    6073                 :          0 :                 goto invalid_range;
    6074                 :          0 :               get_uleb128 (op1, readp, nexthdr);
    6075         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    6076                 :          0 :                 goto invalid_range;
    6077                 :          0 :               get_uleb128 (op2, readp, nexthdr);
    6078                 :          0 :               printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
    6079         [ #  # ]:          0 :               if (! print_unresolved_addresses)
    6080                 :            :                 {
    6081                 :          0 :                   Dwarf_Addr addr1;
    6082                 :          0 :                   Dwarf_Addr addr2;
    6083         [ #  # ]:          0 :                   if (get_indexed_addr (cu, op1, &addr1) != 0)
    6084                 :            :                     {
    6085                 :          0 :                       printf ("      ???..\n");
    6086                 :          0 :                       printf ("      ???\n");
    6087                 :            :                     }
    6088                 :            :                   else
    6089                 :            :                     {
    6090                 :          0 :                       addr2 = addr1 + op2;
    6091                 :          0 :                       printf ("      ");
    6092                 :          0 :                       print_dwarf_addr (dwflmod, address_size, addr1, addr1);
    6093                 :          0 :                       printf ("..\n      ");
    6094                 :          0 :                       print_dwarf_addr (dwflmod, address_size,
    6095                 :            :                                         addr2 - 1, addr2);
    6096                 :          0 :                       printf ("\n");
    6097                 :            :                     }
    6098                 :            :                 }
    6099                 :            :               break;
    6100                 :            : 
    6101                 :          4 :             case DW_RLE_offset_pair:
    6102         [ -  + ]:          4 :               if ((uint64_t) (nexthdr - readp) < 1)
    6103                 :          0 :                 goto invalid_range;
    6104                 :          4 :               get_uleb128 (op1, readp, nexthdr);
    6105         [ -  + ]:          4 :               if ((uint64_t) (nexthdr - readp) < 1)
    6106                 :          0 :                 goto invalid_range;
    6107                 :          4 :               get_uleb128 (op2, readp, nexthdr);
    6108                 :          4 :               printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
    6109         [ +  - ]:          4 :               if (! print_unresolved_addresses)
    6110                 :            :                 {
    6111                 :          4 :                   op1 += base;
    6112                 :          4 :                   op2 += base;
    6113                 :          4 :                   printf ("      ");
    6114                 :          4 :                   print_dwarf_addr (dwflmod, address_size, op1, op1);
    6115                 :          4 :                   printf ("..\n      ");
    6116                 :          4 :                   print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
    6117                 :          4 :                   printf ("\n");
    6118                 :            :                 }
    6119                 :            :               break;
    6120                 :            : 
    6121                 :          2 :             case DW_RLE_base_address:
    6122         [ -  + ]:          2 :               if (address_size == 4)
    6123                 :            :                 {
    6124         [ #  # ]:          0 :                   if ((uint64_t) (nexthdr - readp) < 4)
    6125                 :          0 :                     goto invalid_range;
    6126         [ #  # ]:          0 :                   op1 = read_4ubyte_unaligned_inc (dbg, readp);
    6127                 :            :                 }
    6128                 :            :               else
    6129                 :            :                 {
    6130         [ -  + ]:          2 :                   if ((uint64_t) (nexthdr - readp) < 8)
    6131                 :          0 :                     goto invalid_range;
    6132         [ -  + ]:          2 :                   op1 = read_8ubyte_unaligned_inc (dbg, readp);
    6133                 :            :                 }
    6134                 :          2 :               base = op1;
    6135                 :          2 :               printf (" 0x%" PRIx64 "\n", base);
    6136         [ +  - ]:          2 :               if (! print_unresolved_addresses)
    6137                 :            :                 {
    6138                 :          2 :                   printf ("      ");
    6139                 :          2 :                   print_dwarf_addr (dwflmod, address_size, base, base);
    6140                 :          2 :                   printf ("\n");
    6141                 :            :                 }
    6142                 :            :               break;
    6143                 :            : 
    6144                 :          0 :             case DW_RLE_start_end:
    6145         [ #  # ]:          0 :               if (address_size == 4)
    6146                 :            :                 {
    6147         [ #  # ]:          0 :                   if ((uint64_t) (nexthdr - readp) < 8)
    6148                 :          0 :                     goto invalid_range;
    6149         [ #  # ]:          0 :                   op1 = read_4ubyte_unaligned_inc (dbg, readp);
    6150         [ #  # ]:          0 :                   op2 = read_4ubyte_unaligned_inc (dbg, readp);
    6151                 :            :                 }
    6152                 :            :               else
    6153                 :            :                 {
    6154         [ #  # ]:          0 :                   if ((uint64_t) (nexthdr - readp) < 16)
    6155                 :          0 :                     goto invalid_range;
    6156         [ #  # ]:          0 :                   op1 = read_8ubyte_unaligned_inc (dbg, readp);
    6157         [ #  # ]:          0 :                   op2 = read_8ubyte_unaligned_inc (dbg, readp);
    6158                 :            :                 }
    6159                 :          0 :               printf (" 0x%" PRIx64 "..0x%" PRIx64 "\n", op1, op2);
    6160         [ #  # ]:          0 :               if (! print_unresolved_addresses)
    6161                 :            :                 {
    6162                 :          0 :                   printf ("      ");
    6163                 :          0 :                   print_dwarf_addr (dwflmod, address_size, op1, op1);
    6164                 :          0 :                   printf ("..\n      ");
    6165                 :          0 :                   print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
    6166                 :          0 :                   printf ("\n");
    6167                 :            :                 }
    6168                 :            :               break;
    6169                 :            : 
    6170                 :          5 :             case DW_RLE_start_length:
    6171         [ -  + ]:          5 :               if (address_size == 4)
    6172                 :            :                 {
    6173         [ #  # ]:          0 :                   if ((uint64_t) (nexthdr - readp) < 4)
    6174                 :          0 :                     goto invalid_range;
    6175         [ #  # ]:          0 :                   op1 = read_4ubyte_unaligned_inc (dbg, readp);
    6176                 :            :                 }
    6177                 :            :               else
    6178                 :            :                 {
    6179         [ -  + ]:          5 :                   if ((uint64_t) (nexthdr - readp) < 8)
    6180                 :          0 :                     goto invalid_range;
    6181         [ -  + ]:          5 :                   op1 = read_8ubyte_unaligned_inc (dbg, readp);
    6182                 :            :                 }
    6183         [ -  + ]:          5 :               if ((uint64_t) (nexthdr - readp) < 1)
    6184                 :          0 :                 goto invalid_range;
    6185                 :          5 :               get_uleb128 (op2, readp, nexthdr);
    6186                 :          5 :               printf (" 0x%" PRIx64 ", %" PRIx64 "\n", op1, op2);
    6187         [ +  + ]:          5 :               if (! print_unresolved_addresses)
    6188                 :            :                 {
    6189                 :          4 :                   op2 = op1 + op2;
    6190                 :          4 :                   printf ("      ");
    6191                 :          4 :                   print_dwarf_addr (dwflmod, address_size, op1, op1);
    6192                 :          4 :                   printf ("..\n      ");
    6193                 :          4 :                   print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
    6194         [ +  + ]:         23 :                   printf ("\n");
    6195                 :            :                 }
    6196                 :            :               break;
    6197                 :            : 
    6198                 :          0 :             default:
    6199                 :          0 :               goto invalid_range;
    6200                 :            :             }
    6201                 :            :         }
    6202                 :            : 
    6203                 :          3 :     next_table:
    6204         [ -  + ]:          3 :       if (readp != nexthdr)
    6205                 :            :         {
    6206                 :          0 :           size_t padding = nexthdr - readp;
    6207                 :          0 :           printf (_("   %zu padding bytes\n\n"), padding);
    6208                 :          0 :           readp = nexthdr;
    6209                 :            :         }
    6210                 :            :     }
    6211                 :            : }
    6212                 :            : 
    6213                 :            : /* Print content of DWARF .debug_ranges section.  */
    6214                 :            : static void
    6215                 :         32 : print_debug_ranges_section (Dwfl_Module *dwflmod,
    6216                 :            :                             Ebl *ebl, GElf_Ehdr *ehdr,
    6217                 :            :                             Elf_Scn *scn, GElf_Shdr *shdr,
    6218                 :            :                             Dwarf *dbg)
    6219                 :            : {
    6220                 :         32 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_ranges, scn);
    6221         [ -  + ]:         32 :   if (data == NULL)
    6222                 :          0 :     return;
    6223                 :            : 
    6224                 :         32 :   printf (_("\
    6225                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    6226                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    6227                 :         32 :           (uint64_t) shdr->sh_offset);
    6228                 :            : 
    6229                 :         32 :   sort_listptr (&known_rangelistptr, "rangelistptr");
    6230                 :         32 :   size_t listptr_idx = 0;
    6231                 :            : 
    6232         [ +  + ]:         32 :   uint_fast8_t address_size = ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
    6233                 :            : 
    6234                 :         32 :   bool first = true;
    6235                 :         32 :   Dwarf_Addr base = 0;
    6236                 :         32 :   unsigned char *const endp = (unsigned char *) data->d_buf + data->d_size;
    6237                 :         32 :   unsigned char *readp = data->d_buf;
    6238                 :         32 :   Dwarf_CU *last_cu = NULL;
    6239         [ +  + ]:      62577 :   while (readp < endp)
    6240                 :            :     {
    6241                 :      62545 :       ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
    6242                 :      62545 :       Dwarf_CU *cu = last_cu;
    6243                 :            : 
    6244   [ +  +  +  + ]:      62545 :       if (first && skip_listptr_hole (&known_rangelistptr, &listptr_idx,
    6245                 :            :                                       &address_size, NULL, &base, &cu,
    6246                 :            :                                       offset, &readp, endp, NULL))
    6247                 :         11 :         continue;
    6248                 :            : 
    6249         [ +  + ]:      62534 :       if (last_cu != cu)
    6250                 :            :         {
    6251                 :        963 :           Dwarf_Die cudie;
    6252         [ -  + ]:        963 :           if (dwarf_cu_die (cu, &cudie,
    6253                 :            :                             NULL, NULL, NULL, NULL,
    6254                 :            :                             NULL, NULL) == NULL)
    6255                 :          0 :             printf (_("\n Unknown CU base: "));
    6256                 :            :           else
    6257                 :        963 :             printf (_("\n CU [%6" PRIx64 "] base: "),
    6258                 :            :                     dwarf_dieoffset (&cudie));
    6259                 :        963 :           print_dwarf_addr (dwflmod, address_size, base, base);
    6260                 :        963 :           printf ("\n");
    6261                 :            :         }
    6262                 :      62534 :       last_cu = cu;
    6263                 :            : 
    6264         [ -  + ]:      62534 :       if (unlikely (data->d_size - offset < (size_t) address_size * 2))
    6265                 :            :         {
    6266                 :          0 :           printf (_(" [%6tx]  <INVALID DATA>\n"), offset);
    6267                 :          0 :           break;
    6268                 :            :         }
    6269                 :            : 
    6270                 :      62534 :       Dwarf_Addr begin;
    6271                 :      62534 :       Dwarf_Addr end;
    6272         [ +  + ]:      62534 :       if (address_size == 8)
    6273                 :            :         {
    6274         [ -  + ]:      62518 :           begin = read_8ubyte_unaligned_inc (dbg, readp);
    6275         [ -  + ]:      62518 :           end = read_8ubyte_unaligned_inc (dbg, readp);
    6276                 :            :         }
    6277                 :            :       else
    6278                 :            :         {
    6279         [ -  + ]:         16 :           begin = read_4ubyte_unaligned_inc (dbg, readp);
    6280         [ -  + ]:         16 :           end = read_4ubyte_unaligned_inc (dbg, readp);
    6281         [ +  - ]:         16 :           if (begin == (Dwarf_Addr) (uint32_t) -1)
    6282                 :            :             begin = (Dwarf_Addr) -1l;
    6283                 :            :         }
    6284                 :            : 
    6285         [ -  + ]:      62534 :       if (begin == (Dwarf_Addr) -1l) /* Base address entry.  */
    6286                 :            :         {
    6287         [ #  # ]:          0 :           if (first)
    6288                 :          0 :             printf (" [%6tx] ", offset);
    6289                 :            :           else
    6290                 :          0 :             printf ("          ");
    6291                 :          0 :           puts (_("base address"));
    6292                 :          0 :           printf ("          ");
    6293                 :          0 :           print_dwarf_addr (dwflmod, address_size, end, end);
    6294                 :          0 :           printf ("\n");
    6295                 :          0 :           base = end;
    6296                 :          0 :           first = false;
    6297                 :            :         }
    6298         [ +  + ]:      62534 :       else if (begin == 0 && end == 0) /* End of list entry.  */
    6299                 :            :         {
    6300         [ +  + ]:      14001 :           if (first)
    6301                 :         11 :             printf (_(" [%6tx] empty list\n"), offset);
    6302                 :            :           first = true;
    6303                 :            :         }
    6304                 :            :       else
    6305                 :            :         {
    6306                 :            :           /* We have an address range entry.  */
    6307         [ +  + ]:      48533 :           if (first)            /* First address range entry in a list.  */
    6308                 :      13990 :             printf (" [%6tx] ", offset);
    6309                 :            :           else
    6310                 :      34543 :             printf ("          ");
    6311                 :            : 
    6312                 :      48533 :           printf ("range %" PRIx64 ", %" PRIx64 "\n", begin, end);
    6313         [ +  + ]:      48533 :           if (! print_unresolved_addresses)
    6314                 :            :             {
    6315                 :      48523 :               printf ("          ");
    6316                 :      48523 :               print_dwarf_addr (dwflmod, address_size, base + begin,
    6317                 :            :                                 base + begin);
    6318                 :      48523 :               printf ("..\n          ");
    6319                 :      48523 :               print_dwarf_addr (dwflmod, address_size,
    6320                 :            :                                 base + end - 1, base + end);
    6321                 :      62534 :               printf ("\n");
    6322                 :            :             }
    6323                 :            : 
    6324                 :            :           first = false;
    6325                 :            :         }
    6326                 :            :     }
    6327                 :            : }
    6328                 :            : 
    6329                 :            : #define REGNAMESZ 16
    6330                 :            : static const char *
    6331                 :      18952 : register_info (Ebl *ebl, unsigned int regno, const Ebl_Register_Location *loc,
    6332                 :            :                char name[REGNAMESZ], int *bits, int *type)
    6333                 :            : {
    6334                 :      18952 :   const char *set;
    6335                 :      18952 :   const char *pfx;
    6336                 :      18952 :   int ignore;
    6337   [ +  +  +  + ]:      55160 :   ssize_t n = ebl_register_info (ebl, regno, name, REGNAMESZ, &pfx, &set,
    6338                 :            :                                  bits ?: &ignore, type ?: &ignore);
    6339         [ -  + ]:      18952 :   if (n <= 0)
    6340                 :            :     {
    6341         [ #  # ]:          0 :       if (loc != NULL)
    6342                 :          0 :         snprintf (name, REGNAMESZ, "reg%u", loc->regno);
    6343                 :            :       else
    6344                 :          0 :         snprintf (name, REGNAMESZ, "??? 0x%x", regno);
    6345         [ #  # ]:          0 :       if (bits != NULL)
    6346         [ #  # ]:          0 :         *bits = loc != NULL ? loc->bits : 0;
    6347         [ #  # ]:          0 :       if (type != NULL)
    6348                 :          0 :         *type = DW_ATE_unsigned;
    6349                 :          0 :       set = "??? unrecognized";
    6350                 :            :     }
    6351                 :            :   else
    6352                 :            :     {
    6353   [ +  +  -  + ]:      18952 :       if (bits != NULL && *bits <= 0)
    6354         [ #  # ]:          0 :         *bits = loc != NULL ? loc->bits : 0;
    6355   [ +  +  -  + ]:      18952 :       if (type != NULL && *type == DW_ATE_void)
    6356                 :          0 :         *type = DW_ATE_unsigned;
    6357                 :            : 
    6358                 :            :     }
    6359                 :      18952 :   return set;
    6360                 :            : }
    6361                 :            : 
    6362                 :            : static const unsigned char *
    6363                 :        168 : read_encoded (unsigned int encoding, const unsigned char *readp,
    6364                 :            :               const unsigned char *const endp, uint64_t *res, Dwarf *dbg)
    6365                 :            : {
    6366         [ -  + ]:        168 :   if ((encoding & 0xf) == DW_EH_PE_absptr)
    6367                 :          0 :     encoding = gelf_getclass (dbg->elf) == ELFCLASS32
    6368         [ #  # ]:          0 :       ? DW_EH_PE_udata4 : DW_EH_PE_udata8;
    6369                 :            : 
    6370   [ -  -  -  +  :        168 :   switch (encoding & 0xf)
             -  -  +  -  
                      - ]
    6371                 :            :     {
    6372                 :          0 :     case DW_EH_PE_uleb128:
    6373         [ #  # ]:          0 :       if (readp >= endp)
    6374                 :          0 :         goto invalid;
    6375                 :          0 :       get_uleb128 (*res, readp, endp);
    6376                 :          0 :       break;
    6377                 :          0 :     case DW_EH_PE_sleb128:
    6378         [ #  # ]:          0 :       if (readp >= endp)
    6379                 :          0 :         goto invalid;
    6380                 :          0 :       get_sleb128 (*res, readp, endp);
    6381                 :          0 :       break;
    6382                 :          0 :     case DW_EH_PE_udata2:
    6383         [ #  # ]:          0 :       if (readp + 2 > endp)
    6384                 :          0 :         goto invalid;
    6385         [ #  # ]:          0 :       *res = read_2ubyte_unaligned_inc (dbg, readp);
    6386                 :          0 :       break;
    6387                 :         84 :     case DW_EH_PE_udata4:
    6388         [ -  + ]:         84 :       if (readp + 4 > endp)
    6389                 :          0 :         goto invalid;
    6390         [ -  + ]:         84 :       *res = read_4ubyte_unaligned_inc (dbg, readp);
    6391                 :         84 :       break;
    6392                 :          0 :     case DW_EH_PE_udata8:
    6393         [ #  # ]:          0 :       if (readp + 8 > endp)
    6394                 :          0 :         goto invalid;
    6395         [ #  # ]:          0 :       *res = read_8ubyte_unaligned_inc (dbg, readp);
    6396                 :          0 :       break;
    6397                 :          0 :     case DW_EH_PE_sdata2:
    6398         [ #  # ]:          0 :       if (readp + 2 > endp)
    6399                 :          0 :         goto invalid;
    6400         [ #  # ]:          0 :       *res = read_2sbyte_unaligned_inc (dbg, readp);
    6401                 :          0 :       break;
    6402                 :         84 :     case DW_EH_PE_sdata4:
    6403         [ -  + ]:         84 :       if (readp + 4 > endp)
    6404                 :          0 :         goto invalid;
    6405         [ -  + ]:         84 :       *res = read_4sbyte_unaligned_inc (dbg, readp);
    6406                 :         84 :       break;
    6407                 :          0 :     case DW_EH_PE_sdata8:
    6408         [ #  # ]:          0 :       if (readp + 8 > endp)
    6409                 :          0 :         goto invalid;
    6410         [ #  # ]:          0 :       *res = read_8sbyte_unaligned_inc (dbg, readp);
    6411                 :          0 :       break;
    6412                 :            :     default:
    6413                 :          0 :     invalid:
    6414                 :          0 :       error (1, 0,
    6415                 :          0 :              _("invalid encoding"));
    6416                 :            :     }
    6417                 :            : 
    6418                 :        168 :   return readp;
    6419                 :            : }
    6420                 :            : 
    6421                 :            : static const char *
    6422                 :      18104 : regname (Ebl *ebl, unsigned int regno, char *regnamebuf)
    6423                 :            : {
    6424                 :      18104 :   register_info (ebl, regno, NULL, regnamebuf, NULL, NULL);
    6425                 :            : 
    6426                 :      18104 :   return regnamebuf;
    6427                 :            : }
    6428                 :            : 
    6429                 :            : static void
    6430                 :      13218 : print_cfa_program (const unsigned char *readp, const unsigned char *const endp,
    6431                 :            :                    Dwarf_Word vma_base, unsigned int code_align,
    6432                 :            :                    int data_align,
    6433                 :            :                    unsigned int version, unsigned int ptr_size,
    6434                 :            :                    unsigned int encoding,
    6435                 :            :                    Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr, Dwarf *dbg)
    6436                 :            : {
    6437                 :      13218 :   char regnamebuf[REGNAMESZ];
    6438                 :            : 
    6439                 :      13218 :   puts ("\n   Program:");
    6440                 :      13218 :   Dwarf_Word pc = vma_base;
    6441                 :      13218 :   while (readp < endp)
    6442                 :            :     {
    6443                 :     192802 :       unsigned int opcode = *readp++;
    6444                 :            : 
    6445         [ +  + ]:     192802 :       if (opcode < DW_CFA_advance_loc)
    6446                 :            :         /* Extended opcode.  */
    6447   [ +  -  +  +  :     116595 :         switch (opcode)
          +  +  -  +  -  
          -  +  +  +  +  
          +  +  -  +  -  
          -  -  -  -  -  
                +  -  - ]
    6448                 :            :           {
    6449                 :      38189 :             uint64_t op1;
    6450                 :      38189 :             int64_t sop1;
    6451                 :      38189 :             uint64_t op2;
    6452                 :      38189 :             int64_t sop2;
    6453                 :            : 
    6454                 :      38189 :           case DW_CFA_nop:
    6455                 :      38189 :             puts ("     nop");
    6456                 :      38189 :             break;
    6457                 :          0 :           case DW_CFA_set_loc:
    6458         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6459                 :          0 :               goto invalid;
    6460                 :          0 :             readp = read_encoded (encoding, readp, endp, &op1, dbg);
    6461                 :     116595 :             printf ("     set_loc %#" PRIx64 " to %#" PRIx64 "\n",
    6462                 :          0 :                     op1, pc = vma_base + op1);
    6463                 :            :             break;
    6464                 :       4573 :           case DW_CFA_advance_loc1:
    6465         [ -  + ]:       4573 :             if ((uint64_t) (endp - readp) < 1)
    6466                 :          0 :               goto invalid;
    6467                 :       9146 :             printf ("     advance_loc1 %u to %#" PRIx64 "\n",
    6468                 :       4573 :                     *readp, pc += *readp * code_align);
    6469                 :       4573 :             ++readp;
    6470                 :       4573 :             break;
    6471                 :       1345 :           case DW_CFA_advance_loc2:
    6472         [ -  + ]:       1345 :             if ((uint64_t) (endp - readp) < 2)
    6473                 :          0 :               goto invalid;
    6474         [ -  + ]:       1345 :             op1 = read_2ubyte_unaligned_inc (dbg, readp);
    6475                 :     117940 :             printf ("     advance_loc2 %" PRIu64 " to %#" PRIx64 "\n",
    6476                 :       1345 :                     op1, pc += op1 * code_align);
    6477                 :            :             break;
    6478                 :         24 :           case DW_CFA_advance_loc4:
    6479         [ -  + ]:         24 :             if ((uint64_t) (endp - readp) < 4)
    6480                 :          0 :               goto invalid;
    6481         [ +  - ]:         24 :             op1 = read_4ubyte_unaligned_inc (dbg, readp);
    6482                 :     116619 :             printf ("     advance_loc4 %" PRIu64 " to %#" PRIx64 "\n",
    6483                 :         24 :                     op1, pc += op1 * code_align);
    6484                 :            :             break;
    6485                 :          4 :           case DW_CFA_offset_extended:
    6486         [ -  + ]:          4 :             if ((uint64_t) (endp - readp) < 1)
    6487                 :          0 :               goto invalid;
    6488                 :          4 :             get_uleb128 (op1, readp, endp);
    6489         [ -  + ]:          4 :             if ((uint64_t) (endp - readp) < 1)
    6490                 :          0 :               goto invalid;
    6491                 :          4 :             get_uleb128 (op2, readp, endp);
    6492                 :          4 :             printf ("     offset_extended r%" PRIu64 " (%s) at cfa%+" PRId64
    6493                 :            :                     "\n",
    6494                 :            :                     op1, regname (ebl, op1, regnamebuf), op2 * data_align);
    6495                 :            :             break;
    6496                 :          0 :           case DW_CFA_restore_extended:
    6497         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6498                 :          0 :               goto invalid;
    6499                 :          0 :             get_uleb128 (op1, readp, endp);
    6500                 :          0 :             printf ("     restore_extended r%" PRIu64 " (%s)\n",
    6501                 :            :                     op1, regname (ebl, op1, regnamebuf));
    6502                 :            :             break;
    6503                 :         67 :           case DW_CFA_undefined:
    6504         [ -  + ]:         67 :             if ((uint64_t) (endp - readp) < 1)
    6505                 :          0 :               goto invalid;
    6506                 :         67 :             get_uleb128 (op1, readp, endp);
    6507                 :         67 :             printf ("     undefined r%" PRIu64 " (%s)\n", op1,
    6508                 :            :                     regname (ebl, op1, regnamebuf));
    6509                 :            :             break;
    6510                 :          0 :           case DW_CFA_same_value:
    6511         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6512                 :          0 :               goto invalid;
    6513                 :          0 :             get_uleb128 (op1, readp, endp);
    6514                 :          0 :             printf ("     same_value r%" PRIu64 " (%s)\n", op1,
    6515                 :            :                     regname (ebl, op1, regnamebuf));
    6516                 :            :             break;
    6517                 :          0 :           case DW_CFA_register:
    6518         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6519                 :          0 :               goto invalid;
    6520                 :          0 :             get_uleb128 (op1, readp, endp);
    6521         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6522                 :          0 :               goto invalid;
    6523                 :          0 :             get_uleb128 (op2, readp, endp);
    6524                 :          0 :             printf ("     register r%" PRIu64 " (%s) in r%" PRIu64 " (%s)\n",
    6525                 :            :                     op1, regname (ebl, op1, regnamebuf), op2,
    6526                 :            :                     regname (ebl, op2, regnamebuf));
    6527                 :            :             break;
    6528                 :       7799 :           case DW_CFA_remember_state:
    6529                 :       7799 :             puts ("     remember_state");
    6530                 :       7799 :             break;
    6531                 :       7799 :           case DW_CFA_restore_state:
    6532                 :       7799 :             puts ("     restore_state");
    6533                 :       7799 :             break;
    6534                 :        328 :           case DW_CFA_def_cfa:
    6535         [ -  + ]:        328 :             if ((uint64_t) (endp - readp) < 1)
    6536                 :          0 :               goto invalid;
    6537                 :        328 :             get_uleb128 (op1, readp, endp);
    6538         [ -  + ]:        328 :             if ((uint64_t) (endp - readp) < 1)
    6539                 :          0 :               goto invalid;
    6540                 :        328 :             get_uleb128 (op2, readp, endp);
    6541                 :        328 :             printf ("     def_cfa r%" PRIu64 " (%s) at offset %" PRIu64 "\n",
    6542                 :            :                     op1, regname (ebl, op1, regnamebuf), op2);
    6543                 :            :             break;
    6544                 :         75 :           case DW_CFA_def_cfa_register:
    6545         [ -  + ]:         75 :             if ((uint64_t) (endp - readp) < 1)
    6546                 :          0 :               goto invalid;
    6547                 :         75 :             get_uleb128 (op1, readp, endp);
    6548                 :         75 :             printf ("     def_cfa_register r%" PRIu64 " (%s)\n",
    6549                 :            :                     op1, regname (ebl, op1, regnamebuf));
    6550                 :            :             break;
    6551                 :      56301 :           case DW_CFA_def_cfa_offset:
    6552         [ -  + ]:      56301 :             if ((uint64_t) (endp - readp) < 1)
    6553                 :          0 :               goto invalid;
    6554                 :      56301 :             get_uleb128 (op1, readp, endp);
    6555                 :      56301 :             printf ("     def_cfa_offset %" PRIu64 "\n", op1);
    6556                 :            :             break;
    6557                 :         71 :           case DW_CFA_def_cfa_expression:
    6558         [ -  + ]:         71 :             if ((uint64_t) (endp - readp) < 1)
    6559                 :          0 :               goto invalid;
    6560                 :         71 :             get_uleb128 (op1, readp, endp);     /* Length of DW_FORM_block.  */
    6561                 :         71 :             printf ("     def_cfa_expression %" PRIu64 "\n", op1);
    6562         [ -  + ]:         71 :             if ((uint64_t) (endp - readp) < op1)
    6563                 :            :               {
    6564                 :          0 :             invalid:
    6565                 :          0 :                 fputs (_("         <INVALID DATA>\n"), stdout);
    6566                 :          0 :                 return;
    6567                 :            :               }
    6568                 :         71 :             print_ops (dwflmod, dbg, 10, 10, version, ptr_size, 0, NULL,
    6569                 :            :                        op1, readp);
    6570                 :         71 :             readp += op1;
    6571                 :         71 :             break;
    6572                 :          0 :           case DW_CFA_expression:
    6573         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6574                 :          0 :               goto invalid;
    6575                 :          0 :             get_uleb128 (op1, readp, endp);
    6576         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6577                 :          0 :               goto invalid;
    6578                 :          0 :             get_uleb128 (op2, readp, endp);     /* Length of DW_FORM_block.  */
    6579                 :          0 :             printf ("     expression r%" PRIu64 " (%s) \n",
    6580                 :            :                     op1, regname (ebl, op1, regnamebuf));
    6581         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < op2)
    6582                 :          0 :               goto invalid;
    6583                 :          0 :             print_ops (dwflmod, dbg, 10, 10, version, ptr_size, 0, NULL,
    6584                 :            :                        op2, readp);
    6585                 :          0 :             readp += op2;
    6586                 :          0 :             break;
    6587                 :         16 :           case DW_CFA_offset_extended_sf:
    6588         [ -  + ]:         16 :             if ((uint64_t) (endp - readp) < 1)
    6589                 :          0 :               goto invalid;
    6590                 :         16 :             get_uleb128 (op1, readp, endp);
    6591         [ -  + ]:         16 :             if ((uint64_t) (endp - readp) < 1)
    6592                 :          0 :               goto invalid;
    6593                 :         16 :             get_sleb128 (sop2, readp, endp);
    6594                 :         16 :             printf ("     offset_extended_sf r%" PRIu64 " (%s) at cfa%+"
    6595                 :            :                     PRId64 "\n",
    6596                 :            :                     op1, regname (ebl, op1, regnamebuf), sop2 * data_align);
    6597                 :            :             break;
    6598                 :          0 :           case DW_CFA_def_cfa_sf:
    6599         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6600                 :          0 :               goto invalid;
    6601                 :          0 :             get_uleb128 (op1, readp, endp);
    6602         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6603                 :          0 :               goto invalid;
    6604                 :          0 :             get_sleb128 (sop2, readp, endp);
    6605                 :          0 :             printf ("     def_cfa_sf r%" PRIu64 " (%s) at offset %" PRId64 "\n",
    6606                 :            :                     op1, regname (ebl, op1, regnamebuf), sop2 * data_align);
    6607                 :            :             break;
    6608                 :          0 :           case DW_CFA_def_cfa_offset_sf:
    6609         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6610                 :          0 :               goto invalid;
    6611                 :          0 :             get_sleb128 (sop1, readp, endp);
    6612                 :          0 :             printf ("     def_cfa_offset_sf %" PRId64 "\n", sop1 * data_align);
    6613                 :            :             break;
    6614                 :          0 :           case DW_CFA_val_offset:
    6615         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6616                 :          0 :               goto invalid;
    6617                 :          0 :             get_uleb128 (op1, readp, endp);
    6618         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6619                 :          0 :               goto invalid;
    6620                 :          0 :             get_uleb128 (op2, readp, endp);
    6621                 :          0 :             printf ("     val_offset %" PRIu64 " at offset %" PRIu64 "\n",
    6622                 :            :                     op1, op2 * data_align);
    6623                 :            :             break;
    6624                 :          0 :           case DW_CFA_val_offset_sf:
    6625         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6626                 :          0 :               goto invalid;
    6627                 :          0 :             get_uleb128 (op1, readp, endp);
    6628         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6629                 :          0 :               goto invalid;
    6630                 :          0 :             get_sleb128 (sop2, readp, endp);
    6631                 :          0 :             printf ("     val_offset_sf %" PRIu64 " at offset %" PRId64 "\n",
    6632                 :            :                     op1, sop2 * data_align);
    6633                 :            :             break;
    6634                 :          0 :           case DW_CFA_val_expression:
    6635         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6636                 :          0 :               goto invalid;
    6637                 :          0 :             get_uleb128 (op1, readp, endp);
    6638         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6639                 :          0 :               goto invalid;
    6640                 :          0 :             get_uleb128 (op2, readp, endp);     /* Length of DW_FORM_block.  */
    6641                 :          0 :             printf ("     val_expression r%" PRIu64 " (%s)\n",
    6642                 :            :                     op1, regname (ebl, op1, regnamebuf));
    6643         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < op2)
    6644                 :          0 :               goto invalid;
    6645                 :          0 :             print_ops (dwflmod, dbg, 10, 10, version, ptr_size, 0,
    6646                 :            :                        NULL, op2, readp);
    6647                 :          0 :             readp += op2;
    6648                 :          0 :             break;
    6649                 :          0 :           case DW_CFA_MIPS_advance_loc8:
    6650         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 8)
    6651                 :          0 :               goto invalid;
    6652         [ #  # ]:          0 :             op1 = read_8ubyte_unaligned_inc (dbg, readp);
    6653                 :     116595 :             printf ("     MIPS_advance_loc8 %" PRIu64 " to %#" PRIx64 "\n",
    6654                 :          0 :                     op1, pc += op1 * code_align);
    6655                 :            :             break;
    6656                 :          4 :           case DW_CFA_GNU_window_save:  /* DW_CFA_AARCH64_negate_ra_state  */
    6657         [ +  - ]:          4 :             if (ehdr->e_machine == EM_AARCH64)
    6658                 :          4 :               puts ("     AARCH64_negate_ra_state");
    6659                 :            :             else
    6660                 :          0 :               puts ("     GNU_window_save");
    6661                 :            :             break;
    6662                 :          0 :           case DW_CFA_GNU_args_size:
    6663         [ #  # ]:          0 :             if ((uint64_t) (endp - readp) < 1)
    6664                 :          0 :               goto invalid;
    6665                 :          0 :             get_uleb128 (op1, readp, endp);
    6666                 :          0 :             printf ("     args_size %" PRIu64 "\n", op1);
    6667                 :            :             break;
    6668                 :            :           default:
    6669                 :     116595 :             printf ("     ??? (%u)\n", opcode);
    6670                 :            :             break;
    6671                 :            :           }
    6672         [ +  + ]:      76207 :       else if (opcode < DW_CFA_offset)
    6673                 :     264613 :         printf ("     advance_loc %u to %#" PRIx64 "\n",
    6674                 :      58593 :                 opcode & 0x3f, pc += (opcode & 0x3f) * code_align);
    6675         [ +  + ]:      17614 :       else if (opcode < DW_CFA_restore)
    6676                 :            :         {
    6677                 :      15907 :           uint64_t offset;
    6678         [ -  + ]:      15907 :           if ((uint64_t) (endp - readp) < 1)
    6679                 :          0 :             goto invalid;
    6680                 :      15907 :           get_uleb128 (offset, readp, endp);
    6681                 :      15907 :           printf ("     offset r%u (%s) at cfa%+" PRId64 "\n",
    6682                 :            :                   opcode & 0x3f, regname (ebl, opcode & 0x3f, regnamebuf),
    6683                 :            :                   offset * data_align);
    6684                 :            :         }
    6685                 :            :       else
    6686         [ +  + ]:     207727 :         printf ("     restore r%u (%s)\n",
    6687                 :            :                 opcode & 0x3f, regname (ebl, opcode & 0x3f, regnamebuf));
    6688                 :            :     }
    6689                 :            : }
    6690                 :            : 
    6691                 :            : 
    6692                 :            : static unsigned int
    6693                 :      12951 : encoded_ptr_size (int encoding, unsigned int ptr_size)
    6694                 :            : {
    6695   [ -  +  -  + ]:      12951 :   switch (encoding & 7)
    6696                 :            :     {
    6697                 :            :     case DW_EH_PE_udata4:
    6698                 :            :       return 4;
    6699                 :          0 :     case DW_EH_PE_udata8:
    6700                 :          0 :       return 8;
    6701                 :         48 :     case 0:
    6702                 :         48 :       return ptr_size;
    6703                 :            :     }
    6704                 :            : 
    6705                 :          0 :   fprintf (stderr, "Unsupported pointer encoding: %#x, "
    6706                 :            :            "assuming pointer size of %d.\n", encoding, ptr_size);
    6707                 :          0 :   return ptr_size;
    6708                 :            : }
    6709                 :            : 
    6710                 :            : 
    6711                 :            : static unsigned int
    6712                 :        479 : print_encoding (unsigned int val)
    6713                 :            : {
    6714   [ -  -  -  +  :        479 :   switch (val & 0xf)
          -  -  -  +  -  
                      - ]
    6715                 :            :     {
    6716                 :          0 :     case DW_EH_PE_absptr:
    6717                 :          0 :       fputs ("absptr", stdout);
    6718                 :          0 :       break;
    6719                 :          0 :     case DW_EH_PE_uleb128:
    6720                 :          0 :       fputs ("uleb128", stdout);
    6721                 :          0 :       break;
    6722                 :          0 :     case DW_EH_PE_udata2:
    6723                 :          0 :       fputs ("udata2", stdout);
    6724                 :          0 :       break;
    6725                 :         84 :     case DW_EH_PE_udata4:
    6726                 :         84 :       fputs ("udata4", stdout);
    6727                 :         84 :       break;
    6728                 :          0 :     case DW_EH_PE_udata8:
    6729                 :          0 :       fputs ("udata8", stdout);
    6730                 :          0 :       break;
    6731                 :          0 :     case DW_EH_PE_sleb128:
    6732                 :          0 :       fputs ("sleb128", stdout);
    6733                 :          0 :       break;
    6734                 :          0 :     case DW_EH_PE_sdata2:
    6735                 :          0 :       fputs ("sdata2", stdout);
    6736                 :          0 :       break;
    6737                 :        395 :     case DW_EH_PE_sdata4:
    6738                 :        395 :       fputs ("sdata4", stdout);
    6739                 :        395 :       break;
    6740                 :          0 :     case DW_EH_PE_sdata8:
    6741                 :          0 :       fputs ("sdata8", stdout);
    6742                 :          0 :       break;
    6743                 :            :     default:
    6744                 :            :       /* We did not use any of the bits after all.  */
    6745                 :            :       return val;
    6746                 :            :     }
    6747                 :            : 
    6748                 :        479 :   return val & ~0xf;
    6749                 :            : }
    6750                 :            : 
    6751                 :            : 
    6752                 :            : static unsigned int
    6753                 :        395 : print_relinfo (unsigned int val)
    6754                 :            : {
    6755   [ +  -  +  -  :        395 :   switch (val & 0x70)
                   -  - ]
    6756                 :            :     {
    6757                 :        311 :     case DW_EH_PE_pcrel:
    6758                 :        311 :       fputs ("pcrel", stdout);
    6759                 :        311 :       break;
    6760                 :          0 :     case DW_EH_PE_textrel:
    6761                 :          0 :       fputs ("textrel", stdout);
    6762                 :          0 :       break;
    6763                 :         84 :     case DW_EH_PE_datarel:
    6764                 :         84 :       fputs ("datarel", stdout);
    6765                 :         84 :       break;
    6766                 :          0 :     case DW_EH_PE_funcrel:
    6767                 :          0 :       fputs ("funcrel", stdout);
    6768                 :          0 :       break;
    6769                 :          0 :     case DW_EH_PE_aligned:
    6770                 :          0 :       fputs ("aligned", stdout);
    6771                 :          0 :       break;
    6772                 :            :     default:
    6773                 :            :       return val;
    6774                 :            :     }
    6775                 :            : 
    6776                 :        395 :   return val & ~0x70;
    6777                 :            : }
    6778                 :            : 
    6779                 :            : 
    6780                 :            : static void
    6781                 :        479 : print_encoding_base (const char *pfx, unsigned int fde_encoding)
    6782                 :            : {
    6783                 :        479 :   printf ("(%s", pfx);
    6784                 :            : 
    6785         [ -  + ]:        479 :   if (fde_encoding == DW_EH_PE_omit)
    6786                 :          0 :     puts ("omit)");
    6787                 :            :   else
    6788                 :            :     {
    6789                 :        479 :       unsigned int w = fde_encoding;
    6790                 :            : 
    6791                 :        479 :       w = print_encoding (w);
    6792                 :            : 
    6793         [ +  + ]:        479 :       if (w & 0x70)
    6794                 :            :         {
    6795         [ +  - ]:        395 :           if (w != fde_encoding)
    6796         [ -  + ]:        395 :             fputc_unlocked (' ', stdout);
    6797                 :            : 
    6798                 :        395 :           w = print_relinfo (w);
    6799                 :            :         }
    6800                 :            : 
    6801         [ -  + ]:        479 :       if (w != 0)
    6802         [ #  # ]:          0 :         printf ("%s%x", w != fde_encoding ? " " : "", w);
    6803                 :            : 
    6804                 :        479 :       puts (")");
    6805                 :            :     }
    6806                 :        479 : }
    6807                 :            : 
    6808                 :            : 
    6809                 :            : static void
    6810                 :        122 : print_debug_frame_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr,
    6811                 :            :                            Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
    6812                 :            : {
    6813                 :        122 :   size_t shstrndx;
    6814                 :            :   /* We know this call will succeed since it did in the caller.  */
    6815                 :        122 :   (void) elf_getshdrstrndx (ebl->elf, &shstrndx);
    6816                 :        122 :   const char *scnname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name);
    6817                 :            : 
    6818                 :            :   /* Needed if we find PC-relative addresses.  */
    6819                 :        122 :   GElf_Addr bias;
    6820         [ -  + ]:        122 :   if (dwfl_module_getelf (dwflmod, &bias) == NULL)
    6821                 :            :     {
    6822                 :          0 :       error (0, 0, _("cannot get ELF: %s"), dwfl_errmsg (-1));
    6823                 :          0 :       return;
    6824                 :            :     }
    6825                 :            : 
    6826                 :        122 :   bool is_eh_frame = strcmp (scnname, ".eh_frame") == 0;
    6827                 :        122 :   Elf_Data *data;
    6828         [ +  + ]:        122 :   if (is_eh_frame)
    6829                 :            :     {
    6830                 :         98 :       data = elf_rawdata (scn, NULL);
    6831         [ -  + ]:         98 :       if (data == NULL)
    6832                 :            :         {
    6833                 :          0 :           error (0, 0, _("cannot get %s content: %s"),
    6834                 :            :                  scnname, elf_errmsg (-1));
    6835                 :          0 :           return;
    6836                 :            :         }
    6837                 :            :     }
    6838                 :            :   else
    6839                 :            :     {
    6840                 :         24 :       data = get_debug_elf_data (dbg, ebl, IDX_debug_frame, scn);
    6841         [ +  - ]:         24 :       if (data == NULL)
    6842                 :            :         return;
    6843                 :            :     }
    6844                 :            : 
    6845         [ +  + ]:        122 :   if (is_eh_frame)
    6846                 :         98 :     printf (_("\
    6847                 :            : \nCall frame information section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    6848                 :         98 :             elf_ndxscn (scn), scnname, (uint64_t) shdr->sh_offset);
    6849                 :            :   else
    6850                 :         24 :     printf (_("\
    6851                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    6852                 :         24 :             elf_ndxscn (scn), scnname, (uint64_t) shdr->sh_offset);
    6853                 :            : 
    6854                 :        122 :   struct cieinfo
    6855                 :            :   {
    6856                 :            :     ptrdiff_t cie_offset;
    6857                 :            :     const char *augmentation;
    6858                 :            :     unsigned int code_alignment_factor;
    6859                 :            :     unsigned int data_alignment_factor;
    6860                 :            :     uint8_t address_size;
    6861                 :            :     uint8_t fde_encoding;
    6862                 :            :     uint8_t lsda_encoding;
    6863                 :            :     struct cieinfo *next;
    6864                 :        122 :   } *cies = NULL;
    6865                 :            : 
    6866                 :        122 :   const unsigned char *readp = data->d_buf;
    6867                 :        122 :   const unsigned char *const dataend = ((unsigned char *) data->d_buf
    6868                 :        122 :                                         + data->d_size);
    6869         [ +  + ]:      13424 :   while (readp < dataend)
    6870                 :            :     {
    6871         [ -  + ]:      13302 :       if (unlikely (readp + 4 > dataend))
    6872                 :            :         {
    6873                 :          0 :         invalid_data:
    6874                 :          0 :           error (0, 0, _("invalid data in section [%zu] '%s'"),
    6875                 :            :                      elf_ndxscn (scn), scnname);
    6876                 :          0 :               return;
    6877                 :            :         }
    6878                 :            : 
    6879                 :            :       /* At the beginning there must be a CIE.  There can be multiple,
    6880                 :            :          hence we test tis in a loop.  */
    6881                 :      13302 :       ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
    6882                 :            : 
    6883         [ +  + ]:      13302 :       Dwarf_Word unit_length = read_4ubyte_unaligned_inc (dbg, readp);
    6884                 :      13302 :       unsigned int length = 4;
    6885         [ -  + ]:      13302 :       if (unlikely (unit_length == 0xffffffff))
    6886                 :            :         {
    6887         [ #  # ]:          0 :           if (unlikely (readp + 8 > dataend))
    6888                 :          0 :             goto invalid_data;
    6889                 :            : 
    6890         [ #  # ]:          0 :           unit_length = read_8ubyte_unaligned_inc (dbg, readp);
    6891                 :          0 :           length = 8;
    6892                 :            :         }
    6893                 :            : 
    6894         [ +  + ]:      13302 :       if (unlikely (unit_length == 0))
    6895                 :            :         {
    6896                 :         84 :           printf (_("\n [%6tx] Zero terminator\n"), offset);
    6897                 :         84 :           continue;
    6898                 :            :         }
    6899                 :            : 
    6900                 :      13218 :       Dwarf_Word maxsize = dataend - readp;
    6901         [ -  + ]:      13218 :       if (unlikely (unit_length > maxsize))
    6902                 :          0 :         goto invalid_data;
    6903                 :            : 
    6904         [ +  + ]:      13218 :       unsigned int ptr_size = ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
    6905                 :            : 
    6906                 :      13218 :       ptrdiff_t start = readp - (unsigned char *) data->d_buf;
    6907                 :      13218 :       const unsigned char *const cieend = readp + unit_length;
    6908         [ -  + ]:      13218 :       if (unlikely (cieend > dataend))
    6909                 :          0 :         goto invalid_data;
    6910                 :            : 
    6911                 :      13218 :       Dwarf_Off cie_id;
    6912         [ +  - ]:      13218 :       if (length == 4)
    6913                 :            :         {
    6914         [ -  + ]:      13218 :           if (unlikely (cieend - readp < 4))
    6915                 :          0 :             goto invalid_data;
    6916         [ +  + ]:      13218 :           cie_id = read_4ubyte_unaligned_inc (dbg, readp);
    6917         [ +  + ]:      13218 :           if (!is_eh_frame && cie_id == DW_CIE_ID_32)
    6918                 :         38 :             cie_id = DW_CIE_ID_64;
    6919                 :            :         }
    6920                 :            :       else
    6921                 :            :         {
    6922         [ #  # ]:          0 :           if (unlikely (cieend - readp < 8))
    6923                 :          0 :             goto invalid_data;
    6924         [ #  # ]:          0 :           cie_id = read_8ubyte_unaligned_inc (dbg, readp);
    6925                 :            :         }
    6926                 :            : 
    6927                 :      13218 :       uint_fast8_t version = 2;
    6928                 :      13218 :       unsigned int code_alignment_factor;
    6929                 :      13218 :       int data_alignment_factor;
    6930                 :      13218 :       unsigned int fde_encoding = 0;
    6931                 :      13218 :       unsigned int lsda_encoding = 0;
    6932                 :      13218 :       Dwarf_Word initial_location = 0;
    6933                 :      13218 :       Dwarf_Word vma_base = 0;
    6934                 :            : 
    6935   [ +  +  +  + ]:      13298 :       if (cie_id == (is_eh_frame ? 0 : DW_CIE_ID_64))
    6936                 :            :         {
    6937         [ -  + ]:        267 :           if (unlikely (cieend - readp < 2))
    6938                 :          0 :             goto invalid_data;
    6939                 :        267 :           version = *readp++;
    6940                 :        267 :           const char *const augmentation = (const char *) readp;
    6941                 :        267 :           readp = memchr (readp, '\0', cieend - readp);
    6942         [ -  + ]:        267 :           if (unlikely (readp == NULL))
    6943                 :          0 :             goto invalid_data;
    6944                 :        267 :           ++readp;
    6945                 :            : 
    6946                 :        267 :           uint_fast8_t segment_size = 0;
    6947         [ -  + ]:        267 :           if (version >= 4)
    6948                 :            :             {
    6949         [ #  # ]:          0 :               if (cieend - readp < 5)
    6950                 :          0 :                 goto invalid_data;
    6951                 :          0 :               ptr_size = *readp++;
    6952                 :          0 :               segment_size = *readp++;
    6953                 :            :             }
    6954                 :            : 
    6955         [ -  + ]:        267 :           if (cieend - readp < 1)
    6956                 :          0 :             goto invalid_data;
    6957                 :        267 :           get_uleb128 (code_alignment_factor, readp, cieend);
    6958         [ -  + ]:        267 :           if (cieend - readp < 1)
    6959                 :          0 :             goto invalid_data;
    6960                 :        267 :           get_sleb128 (data_alignment_factor, readp, cieend);
    6961                 :            : 
    6962                 :            :           /* In some variant for unwind data there is another field.  */
    6963         [ -  + ]:        267 :           if (strcmp (augmentation, "eh") == 0)
    6964         [ #  # ]:          0 :             readp += ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
    6965                 :            : 
    6966                 :        267 :           unsigned int return_address_register;
    6967         [ -  + ]:        267 :           if (cieend - readp < 1)
    6968                 :          0 :             goto invalid_data;
    6969         [ +  + ]:        267 :           if (unlikely (version == 1))
    6970                 :        255 :             return_address_register = *readp++;
    6971                 :            :           else
    6972                 :         12 :             get_uleb128 (return_address_register, readp, cieend);
    6973                 :            : 
    6974                 :        267 :           printf ("\n [%6tx] CIE length=%" PRIu64 "\n"
    6975                 :            :                   "   CIE_id:                   %" PRIu64 "\n"
    6976                 :            :                   "   version:                  %u\n"
    6977                 :            :                   "   augmentation:             \"%s\"\n",
    6978                 :            :                   offset, (uint64_t) unit_length, (uint64_t) cie_id,
    6979                 :            :                   version, augmentation);
    6980         [ -  + ]:        267 :           if (version >= 4)
    6981                 :          0 :             printf ("   address_size:             %u\n"
    6982                 :            :                     "   segment_size:             %u\n",
    6983                 :            :                     ptr_size, segment_size);
    6984                 :        267 :           printf ("   code_alignment_factor:    %u\n"
    6985                 :            :                   "   data_alignment_factor:    %d\n"
    6986                 :            :                   "   return_address_register:  %u\n",
    6987                 :            :                   code_alignment_factor,
    6988                 :            :                   data_alignment_factor, return_address_register);
    6989                 :            : 
    6990         [ +  + ]:        267 :           if (augmentation[0] == 'z')
    6991                 :            :             {
    6992         [ -  + ]:        227 :               if (cieend - readp < 1)
    6993                 :          0 :                 goto invalid_data;
    6994                 :            : 
    6995                 :        227 :               unsigned int augmentationlen;
    6996                 :        227 :               get_uleb128 (augmentationlen, readp, cieend);
    6997                 :            : 
    6998         [ -  + ]:        227 :               if (augmentationlen > (size_t) (cieend - readp))
    6999                 :            :                 {
    7000                 :          0 :                   error (0, 0, _("invalid augmentation length"));
    7001                 :          0 :                   readp = cieend;
    7002                 :          0 :                   continue;
    7003                 :            :                 }
    7004                 :            : 
    7005                 :        227 :               const char *hdr = "Augmentation data:";
    7006                 :        227 :               const char *cp = augmentation + 1;
    7007   [ +  +  +  - ]:        454 :               while (*cp != '\0' && cp < augmentation + augmentationlen + 1)
    7008                 :            :                 {
    7009                 :        227 :                   printf ("   %-26s%#x ", hdr, *readp);
    7010                 :        227 :                   hdr = "";
    7011                 :            : 
    7012         [ +  - ]:        227 :                   if (*cp == 'R')
    7013                 :            :                     {
    7014                 :        227 :                       fde_encoding = *readp++;
    7015                 :        227 :                       print_encoding_base (_("FDE address encoding: "),
    7016                 :            :                                            fde_encoding);
    7017                 :            :                     }
    7018         [ #  # ]:          0 :                   else if (*cp == 'L')
    7019                 :            :                     {
    7020                 :          0 :                       lsda_encoding = *readp++;
    7021                 :          0 :                       print_encoding_base (_("LSDA pointer encoding: "),
    7022                 :            :                                            lsda_encoding);
    7023                 :            :                     }
    7024         [ #  # ]:          0 :                   else if (*cp == 'P')
    7025                 :            :                     {
    7026                 :            :                       /* Personality.  This field usually has a relocation
    7027                 :            :                          attached pointing to __gcc_personality_v0.  */
    7028                 :          0 :                       const unsigned char *startp = readp;
    7029                 :          0 :                       unsigned int encoding = *readp++;
    7030                 :          0 :                       uint64_t val = 0;
    7031                 :          0 :                       readp = read_encoded (encoding, readp,
    7032                 :          0 :                                             readp - 1 + augmentationlen,
    7033                 :            :                                             &val, dbg);
    7034                 :            : 
    7035                 :          0 :                       while (++startp < readp)
    7036         [ #  # ]:          0 :                         printf ("%#x ", *startp);
    7037                 :            : 
    7038                 :          0 :                       putchar ('(');
    7039                 :          0 :                       print_encoding (encoding);
    7040                 :          0 :                       putchar (' ');
    7041         [ #  # ]:          0 :                       switch (encoding & 0xf)
    7042                 :            :                         {
    7043                 :          0 :                         case DW_EH_PE_sleb128:
    7044                 :            :                         case DW_EH_PE_sdata2:
    7045                 :            :                         case DW_EH_PE_sdata4:
    7046                 :          0 :                           printf ("%" PRId64 ")\n", val);
    7047                 :            :                           break;
    7048                 :          0 :                         default:
    7049                 :          0 :                           printf ("%#" PRIx64 ")\n", val);
    7050                 :            :                           break;
    7051                 :            :                         }
    7052                 :            :                     }
    7053                 :            :                   else
    7054                 :          0 :                     printf ("(%x)\n", *readp++);
    7055                 :            : 
    7056                 :        227 :                   ++cp;
    7057                 :            :                 }
    7058                 :            :             }
    7059                 :            : 
    7060         [ +  - ]:        267 :           if (likely (ptr_size == 4 || ptr_size == 8))
    7061                 :            :             {
    7062                 :        267 :               struct cieinfo *newp = alloca (sizeof (*newp));
    7063                 :        267 :               newp->cie_offset = offset;
    7064                 :        267 :               newp->augmentation = augmentation;
    7065                 :        267 :               newp->fde_encoding = fde_encoding;
    7066                 :        267 :               newp->lsda_encoding = lsda_encoding;
    7067                 :        267 :               newp->address_size = ptr_size;
    7068                 :        267 :               newp->code_alignment_factor = code_alignment_factor;
    7069                 :        267 :               newp->data_alignment_factor = data_alignment_factor;
    7070                 :        267 :               newp->next = cies;
    7071                 :        267 :               cies = newp;
    7072                 :            :             }
    7073                 :            :         }
    7074                 :            :       else
    7075                 :            :         {
    7076                 :            :           struct cieinfo *cie = cies;
    7077         [ +  - ]:      58946 :           while (cie != NULL)
    7078   [ +  +  +  + ]:     117892 :             if (is_eh_frame
    7079                 :      58904 :                 ? ((Dwarf_Off) start - cie_id) == (Dwarf_Off) cie->cie_offset
    7080                 :         42 :                 : cie_id == (Dwarf_Off) cie->cie_offset)
    7081                 :            :               break;
    7082                 :            :             else
    7083                 :      45995 :               cie = cie->next;
    7084         [ -  + ]:      12951 :           if (unlikely (cie == NULL))
    7085                 :            :             {
    7086                 :          0 :               puts ("invalid CIE reference in FDE");
    7087                 :          0 :               return;
    7088                 :            :             }
    7089                 :            : 
    7090                 :            :           /* Initialize from CIE data.  */
    7091                 :      12951 :           fde_encoding = cie->fde_encoding;
    7092                 :      12951 :           lsda_encoding = cie->lsda_encoding;
    7093                 :      12951 :           ptr_size = encoded_ptr_size (fde_encoding, cie->address_size);
    7094                 :      12951 :           code_alignment_factor = cie->code_alignment_factor;
    7095                 :      12951 :           data_alignment_factor = cie->data_alignment_factor;
    7096                 :            : 
    7097                 :      12951 :           const unsigned char *base = readp;
    7098                 :            :           // XXX There are sometimes relocations for this value
    7099   [ -  +  +  +  :      12951 :           initial_location = read_addr_unaligned_inc (ptr_size, dbg, readp);
             +  +  +  + ]
    7100                 :      25902 :           Dwarf_Word address_range
    7101   [ +  +  +  +  :      12951 :             = read_addr_unaligned_inc (ptr_size, dbg, readp);
                   +  + ]
    7102                 :            : 
    7103                 :            :           /* pcrel for an FDE address is relative to the runtime
    7104                 :            :              address of the start_address field itself.  Sign extend
    7105                 :            :              if necessary to make sure the calculation is done on the
    7106                 :            :              full 64 bit address even when initial_location only holds
    7107                 :            :              the lower 32 bits.  */
    7108                 :      12951 :           Dwarf_Addr pc_start = initial_location;
    7109         [ +  + ]:      12951 :           if (ptr_size == 4)
    7110                 :      12911 :             pc_start = (uint64_t) (int32_t) pc_start;
    7111         [ +  + ]:      12951 :           if ((fde_encoding & 0x70) == DW_EH_PE_pcrel)
    7112                 :      12903 :             pc_start += ((uint64_t) shdr->sh_addr
    7113                 :      12903 :                          + (base - (const unsigned char *) data->d_buf)
    7114                 :      12903 :                          - bias);
    7115                 :            : 
    7116                 :      12951 :           printf ("\n [%6tx] FDE length=%" PRIu64 " cie=[%6tx]\n"
    7117                 :            :                   "   CIE_pointer:              %" PRIu64 "\n"
    7118                 :            :                   "   initial_location:         ",
    7119                 :            :                   offset, (uint64_t) unit_length,
    7120                 :            :                   cie->cie_offset, (uint64_t) cie_id);
    7121                 :      12951 :           print_dwarf_addr (dwflmod, cie->address_size,
    7122                 :            :                             pc_start, initial_location);
    7123         [ +  + ]:      12951 :           if ((fde_encoding & 0x70) == DW_EH_PE_pcrel)
    7124                 :            :             {
    7125                 :      25806 :               vma_base = (((uint64_t) shdr->sh_offset
    7126                 :      12903 :                            + (base - (const unsigned char *) data->d_buf)
    7127                 :      12903 :                            + (uint64_t) initial_location)
    7128                 :            :                           & (ptr_size == 4
    7129                 :            :                              ? UINT64_C (0xffffffff)
    7130         [ -  + ]:      12903 :                              : UINT64_C (0xffffffffffffffff)));
    7131                 :      12903 :               printf (_(" (offset: %#" PRIx64 ")"),
    7132                 :            :                       (uint64_t) vma_base);
    7133                 :            :             }
    7134                 :            : 
    7135                 :      12951 :           printf ("\n   address_range:            %#" PRIx64,
    7136                 :            :                   (uint64_t) address_range);
    7137         [ +  + ]:      12951 :           if ((fde_encoding & 0x70) == DW_EH_PE_pcrel)
    7138                 :      12903 :             printf (_(" (end offset: %#" PRIx64 ")"),
    7139                 :      12903 :                     ((uint64_t) vma_base + (uint64_t) address_range)
    7140                 :            :                     & (ptr_size == 4
    7141                 :            :                        ? UINT64_C (0xffffffff)
    7142         [ -  + ]:      12903 :                        : UINT64_C (0xffffffffffffffff)));
    7143                 :      12951 :           putchar ('\n');
    7144                 :            : 
    7145         [ +  + ]:      12951 :           if (cie->augmentation[0] == 'z')
    7146                 :            :             {
    7147                 :      12903 :               unsigned int augmentationlen;
    7148         [ -  + ]:      12903 :               if (cieend - readp < 1)
    7149                 :          0 :                 goto invalid_data;
    7150                 :      12903 :               get_uleb128 (augmentationlen, readp, cieend);
    7151                 :            : 
    7152         [ -  + ]:      12903 :               if (augmentationlen > (size_t) (cieend - readp))
    7153                 :            :                 {
    7154                 :          0 :                   error (0, 0, _("invalid augmentation length"));
    7155                 :          0 :                   readp = cieend;
    7156                 :          0 :                   continue;
    7157                 :            :                 }
    7158                 :            : 
    7159         [ -  + ]:      12903 :               if (augmentationlen > 0)
    7160                 :            :                 {
    7161                 :          0 :                   const char *hdr = "Augmentation data:";
    7162                 :          0 :                   const char *cp = cie->augmentation + 1;
    7163                 :          0 :                   unsigned int u = 0;
    7164         [ #  # ]:          0 :                   while (*cp != '\0'
    7165         [ #  # ]:          0 :                          && cp < cie->augmentation + augmentationlen + 1)
    7166                 :            :                     {
    7167         [ #  # ]:          0 :                       if (*cp == 'L')
    7168                 :            :                         {
    7169                 :          0 :                           uint64_t lsda_pointer;
    7170                 :          0 :                           const unsigned char *p
    7171                 :          0 :                             = read_encoded (lsda_encoding, &readp[u],
    7172                 :            :                                             &readp[augmentationlen],
    7173                 :            :                                             &lsda_pointer, dbg);
    7174                 :          0 :                           u = p - readp;
    7175                 :          0 :                           printf (_("\
    7176                 :            :    %-26sLSDA pointer: %#" PRIx64 "\n"),
    7177                 :            :                                   hdr, lsda_pointer);
    7178                 :          0 :                           hdr = "";
    7179                 :            :                         }
    7180                 :          0 :                       ++cp;
    7181                 :            :                     }
    7182                 :            : 
    7183         [ #  # ]:          0 :                   while (u < augmentationlen)
    7184                 :            :                     {
    7185                 :          0 :                       printf ("   %-26s%#x\n", hdr, readp[u++]);
    7186                 :          0 :                       hdr = "";
    7187                 :            :                     }
    7188                 :            :                 }
    7189                 :            : 
    7190                 :      12903 :               readp += augmentationlen;
    7191                 :            :             }
    7192                 :            :         }
    7193                 :            : 
    7194                 :            :       /* Handle the initialization instructions.  */
    7195         [ -  + ]:      13218 :       if (ptr_size != 4 && ptr_size !=8)
    7196                 :          0 :         printf ("invalid CIE pointer size (%u), must be 4 or 8.\n", ptr_size);
    7197                 :            :       else
    7198                 :      13218 :         print_cfa_program (readp, cieend, vma_base, code_alignment_factor,
    7199                 :            :                            data_alignment_factor, version, ptr_size,
    7200                 :            :                            fde_encoding, dwflmod, ebl, ehdr, dbg);
    7201                 :      13218 :       readp = cieend;
    7202                 :            :     }
    7203                 :            : }
    7204                 :            : 
    7205                 :            : 
    7206                 :            : /* Returns the signedness (or false if it cannot be determined) and
    7207                 :            :    the byte size (or zero if it cannot be gotten) of the given DIE
    7208                 :            :    DW_AT_type attribute.  Uses dwarf_peel_type and dwarf_aggregate_size.  */
    7209                 :            : static void
    7210                 :     161069 : die_type_sign_bytes (Dwarf_Die *die, bool *is_signed, int *bytes)
    7211                 :            : {
    7212                 :     161069 :   Dwarf_Attribute attr;
    7213                 :     161069 :   Dwarf_Die type;
    7214                 :            : 
    7215                 :     161069 :   *bytes = 0;
    7216                 :     161069 :   *is_signed = false;
    7217                 :            : 
    7218         [ +  + ]:     161069 :   if (dwarf_peel_type (dwarf_formref_die (dwarf_attr_integrate (die,
    7219                 :            :                                                                 DW_AT_type,
    7220                 :            :                                                                 &attr), &type),
    7221                 :            :                        &type) == 0)
    7222                 :            :     {
    7223                 :        440 :       Dwarf_Word val;
    7224                 :        440 :       *is_signed = (dwarf_formudata (dwarf_attr (&type, DW_AT_encoding,
    7225                 :            :                                                  &attr), &val) == 0
    7226   [ +  +  +  + ]:        440 :                     && (val == DW_ATE_signed || val == DW_ATE_signed_char));
    7227                 :            : 
    7228         [ +  - ]:        440 :       if (dwarf_aggregate_size (&type, &val) == 0)
    7229                 :        440 :         *bytes = val;
    7230                 :            :     }
    7231                 :     161069 : }
    7232                 :            : 
    7233                 :            : struct attrcb_args
    7234                 :            : {
    7235                 :            :   Dwfl_Module *dwflmod;
    7236                 :            :   Dwarf *dbg;
    7237                 :            :   Dwarf_Die *dies;
    7238                 :            :   int level;
    7239                 :            :   bool silent;
    7240                 :            :   bool is_split;
    7241                 :            :   unsigned int version;
    7242                 :            :   unsigned int addrsize;
    7243                 :            :   unsigned int offset_size;
    7244                 :            :   struct Dwarf_CU *cu;
    7245                 :            : };
    7246                 :            : 
    7247                 :            : 
    7248                 :            : static int
    7249                 :    3674734 : attr_callback (Dwarf_Attribute *attrp, void *arg)
    7250                 :            : {
    7251                 :    3674734 :   struct attrcb_args *cbargs = (struct attrcb_args *) arg;
    7252                 :    3674734 :   const int level = cbargs->level;
    7253                 :    3674734 :   Dwarf_Die *die = &cbargs->dies[level];
    7254                 :    3674734 :   bool is_split = cbargs->is_split;
    7255                 :            : 
    7256         [ +  - ]:    3674734 :   unsigned int attr = dwarf_whatattr (attrp);
    7257         [ -  + ]:    3674734 :   if (unlikely (attr == 0))
    7258                 :            :     {
    7259         [ #  # ]:          0 :       if (!cbargs->silent)
    7260                 :          0 :         error (0, 0, _("DIE [%" PRIx64 "] "
    7261                 :            :                               "cannot get attribute code: %s"),
    7262                 :            :                dwarf_dieoffset (die), dwarf_errmsg (-1));
    7263                 :          0 :       return DWARF_CB_ABORT;
    7264                 :            :     }
    7265                 :            : 
    7266         [ +  - ]:    3674734 :   unsigned int form = dwarf_whatform (attrp);
    7267         [ -  + ]:    3674734 :   if (unlikely (form == 0))
    7268                 :            :     {
    7269         [ #  # ]:          0 :       if (!cbargs->silent)
    7270                 :          0 :         error (0, 0, _("DIE [%" PRIx64 "] "
    7271                 :            :                               "cannot get attribute form: %s"),
    7272                 :            :                dwarf_dieoffset (die), dwarf_errmsg (-1));
    7273                 :          0 :       return DWARF_CB_ABORT;
    7274                 :            :     }
    7275                 :            : 
    7276   [ +  +  +  +  :    3674734 :   switch (form)
             +  +  +  +  
                      - ]
    7277                 :            :     {
    7278                 :      47881 :     case DW_FORM_addr:
    7279                 :            :     case DW_FORM_addrx:
    7280                 :            :     case DW_FORM_addrx1:
    7281                 :            :     case DW_FORM_addrx2:
    7282                 :            :     case DW_FORM_addrx3:
    7283                 :            :     case DW_FORM_addrx4:
    7284                 :            :     case DW_FORM_GNU_addr_index:
    7285         [ +  + ]:      47881 :       if (!cbargs->silent)
    7286                 :            :         {
    7287                 :      47610 :           Dwarf_Addr addr;
    7288         [ -  + ]:      47610 :           if (unlikely (dwarf_formaddr (attrp, &addr) != 0))
    7289                 :            :             {
    7290                 :          0 :             attrval_out:
    7291         [ #  # ]:          0 :               if (!cbargs->silent)
    7292                 :          0 :                 error (0, 0, _("DIE [%" PRIx64 "] "
    7293                 :            :                                       "cannot get attribute '%s' (%s) value: "
    7294                 :            :                                       "%s"),
    7295                 :            :                        dwarf_dieoffset (die),
    7296                 :            :                        dwarf_attr_name (attr),
    7297                 :            :                        dwarf_form_name (form),
    7298                 :            :                        dwarf_errmsg (-1));
    7299                 :            :               /* Don't ABORT, it might be other attributes can be resolved.  */
    7300                 :          0 :               return DWARF_CB_OK;
    7301                 :            :             }
    7302         [ +  + ]:      47610 :           if (form != DW_FORM_addr )
    7303                 :            :             {
    7304                 :          8 :               Dwarf_Word word;
    7305         [ -  + ]:          8 :               if (dwarf_formudata (attrp, &word) != 0)
    7306                 :          0 :                 goto attrval_out;
    7307                 :          8 :               printf ("           %*s%-20s (%s) [%" PRIx64 "] ",
    7308                 :            :                       (int) (level * 2), "", dwarf_attr_name (attr),
    7309                 :            :                       dwarf_form_name (form), word);
    7310                 :            :             }
    7311                 :            :           else
    7312                 :      47602 :             printf ("           %*s%-20s (%s) ",
    7313                 :            :                     (int) (level * 2), "", dwarf_attr_name (attr),
    7314                 :            :                     dwarf_form_name (form));
    7315                 :      47610 :           print_dwarf_addr (cbargs->dwflmod, cbargs->addrsize, addr, addr);
    7316                 :      47610 :           printf ("\n");
    7317                 :            :         }
    7318                 :    3296427 :       break;
    7319                 :            : 
    7320                 :     622236 :     case DW_FORM_indirect:
    7321                 :            :     case DW_FORM_strp:
    7322                 :            :     case DW_FORM_line_strp:
    7323                 :            :     case DW_FORM_strx:
    7324                 :            :     case DW_FORM_strx1:
    7325                 :            :     case DW_FORM_strx2:
    7326                 :            :     case DW_FORM_strx3:
    7327                 :            :     case DW_FORM_strx4:
    7328                 :            :     case DW_FORM_string:
    7329                 :            :     case DW_FORM_GNU_strp_alt:
    7330                 :            :     case DW_FORM_GNU_str_index:
    7331         [ +  + ]:     622236 :       if (cbargs->silent)
    7332                 :            :         break;
    7333                 :     621481 :       const char *str = dwarf_formstring (attrp);
    7334         [ -  + ]:     621481 :       if (unlikely (str == NULL))
    7335                 :          0 :         goto attrval_out;
    7336                 :     621481 :       printf ("           %*s%-20s (%s) \"%s\"\n",
    7337                 :            :               (int) (level * 2), "", dwarf_attr_name (attr),
    7338                 :            :               dwarf_form_name (form), str);
    7339                 :            :       break;
    7340                 :            : 
    7341                 :     761192 :     case DW_FORM_ref_addr:
    7342                 :            :     case DW_FORM_ref_udata:
    7343                 :            :     case DW_FORM_ref8:
    7344                 :            :     case DW_FORM_ref4:
    7345                 :            :     case DW_FORM_ref2:
    7346                 :            :     case DW_FORM_ref1:
    7347                 :            :     case DW_FORM_GNU_ref_alt:
    7348                 :            :     case DW_FORM_ref_sup4:
    7349                 :            :     case DW_FORM_ref_sup8:
    7350         [ +  + ]:     761192 :       if (cbargs->silent)
    7351                 :            :         break;
    7352                 :     760402 :       Dwarf_Die ref;
    7353         [ -  + ]:     760402 :       if (unlikely (dwarf_formref_die (attrp, &ref) == NULL))
    7354                 :          0 :         goto attrval_out;
    7355                 :            : 
    7356                 :     760402 :       printf ("           %*s%-20s (%s) ",
    7357                 :            :               (int) (level * 2), "", dwarf_attr_name (attr),
    7358                 :            :               dwarf_form_name (form));
    7359         [ +  + ]:     760402 :       if (is_split)
    7360                 :         33 :         printf ("{%6" PRIxMAX "}\n", (uintmax_t) dwarf_dieoffset (&ref));
    7361                 :            :       else
    7362                 :     760369 :         printf ("[%6" PRIxMAX "]\n", (uintmax_t) dwarf_dieoffset (&ref));
    7363                 :            :       break;
    7364                 :            : 
    7365                 :          4 :     case DW_FORM_ref_sig8:
    7366         [ +  - ]:          4 :       if (cbargs->silent)
    7367                 :            :         break;
    7368                 :          4 :       printf ("           %*s%-20s (%s) {%6" PRIx64 "}\n",
    7369                 :            :               (int) (level * 2), "", dwarf_attr_name (attr),
    7370                 :            :               dwarf_form_name (form),
    7371         [ -  + ]:          4 :               (uint64_t) read_8ubyte_unaligned (attrp->cu->dbg, attrp->valp));
    7372                 :            :       break;
    7373                 :            : 
    7374                 :    2071154 :     case DW_FORM_sec_offset:
    7375                 :            :     case DW_FORM_rnglistx:
    7376                 :            :     case DW_FORM_loclistx:
    7377                 :            :     case DW_FORM_implicit_const:
    7378                 :            :     case DW_FORM_udata:
    7379                 :            :     case DW_FORM_sdata:
    7380                 :            :     case DW_FORM_data8: /* Note no data16 here, we see that as block. */
    7381                 :            :     case DW_FORM_data4:
    7382                 :            :     case DW_FORM_data2:
    7383                 :    2071154 :     case DW_FORM_data1:;
    7384                 :    2071154 :       Dwarf_Word num;
    7385         [ -  + ]:    2071154 :       if (unlikely (dwarf_formudata (attrp, &num) != 0))
    7386                 :          0 :         goto attrval_out;
    7387                 :            : 
    7388                 :    2071154 :       const char *valuestr = NULL;
    7389                 :    2071154 :       bool as_hex_id = false;
    7390   [ +  +  +  +  :    2071154 :       switch (attr)
          +  +  -  +  +  
          -  -  -  -  -  
          -  +  -  +  +  
                      + ]
    7391                 :            :         {
    7392                 :            :           /* This case can take either a constant or a loclistptr.  */
    7393                 :     257148 :         case DW_AT_data_member_location:
    7394         [ +  - ]:     257148 :           if (form != DW_FORM_sec_offset
    7395         [ +  + ]:     257148 :               && (cbargs->version >= 4
    7396         [ +  - ]:      23806 :                   || (form != DW_FORM_data4 && form != DW_FORM_data8)))
    7397                 :            :             {
    7398         [ +  - ]:     257148 :               if (!cbargs->silent)
    7399                 :     257148 :                 printf ("           %*s%-20s (%s) %" PRIuMAX "\n",
    7400                 :            :                         (int) (level * 2), "", dwarf_attr_name (attr),
    7401                 :            :                         dwarf_form_name (form), (uintmax_t) num);
    7402                 :     257148 :               return DWARF_CB_OK;
    7403                 :            :             }
    7404                 :     104527 :           FALLTHROUGH;
    7405                 :            : 
    7406                 :            :         /* These cases always take a loclist[ptr] and no constant. */
    7407                 :            :         case DW_AT_location:
    7408                 :            :         case DW_AT_data_location:
    7409                 :            :         case DW_AT_vtable_elem_location:
    7410                 :            :         case DW_AT_string_length:
    7411                 :            :         case DW_AT_use_location:
    7412                 :            :         case DW_AT_frame_base:
    7413                 :            :         case DW_AT_return_addr:
    7414                 :            :         case DW_AT_static_link:
    7415                 :            :         case DW_AT_segment:
    7416                 :            :         case DW_AT_GNU_call_site_value:
    7417                 :            :         case DW_AT_GNU_call_site_data_value:
    7418                 :            :         case DW_AT_GNU_call_site_target:
    7419                 :            :         case DW_AT_GNU_call_site_target_clobbered:
    7420                 :            :         case DW_AT_GNU_locviews:
    7421                 :            :           {
    7422                 :     104527 :             bool nlpt;
    7423         [ +  + ]:     104527 :             if (cbargs->cu->version < 5)
    7424                 :            :               {
    7425         [ +  + ]:     104454 :                 if (! cbargs->is_split)
    7426                 :            :                   {
    7427                 :     104434 :                     nlpt = notice_listptr (section_loc, &known_locsptr,
    7428                 :     104434 :                                            cbargs->addrsize,
    7429                 :     104434 :                                            cbargs->offset_size,
    7430                 :            :                                            cbargs->cu, num, attr);
    7431                 :            :                   }
    7432                 :            :                 else
    7433                 :            :                   nlpt = true;
    7434                 :            :               }
    7435                 :            :             else
    7436                 :            :               {
    7437                 :            :                 /* Only register for a real section offset.  Otherwise
    7438                 :            :                    it is a DW_FORM_loclistx which is just an index
    7439                 :            :                    number and we should already have registered the
    7440                 :            :                    section offset for the index when we saw the
    7441                 :            :                    DW_AT_loclists_base CU attribute.  */
    7442         [ +  + ]:         73 :                 if (form == DW_FORM_sec_offset)
    7443                 :         34 :                   nlpt = notice_listptr (section_loc, &known_loclistsptr,
    7444                 :         34 :                                          cbargs->addrsize, cbargs->offset_size,
    7445                 :            :                                          cbargs->cu, num, attr);
    7446                 :            :                 else
    7447                 :            :                   nlpt = true;
    7448                 :            : 
    7449                 :            :               }
    7450                 :            : 
    7451         [ +  + ]:     104527 :             if (!cbargs->silent)
    7452                 :            :               {
    7453   [ +  +  -  + ]:     104344 :                 if (cbargs->cu->version < 5 || form == DW_FORM_sec_offset)
    7454         [ -  + ]:     104337 :                   printf ("           %*s%-20s (%s) location list [%6"
    7455                 :            :                           PRIxMAX "]%s\n",
    7456                 :            :                           (int) (level * 2), "", dwarf_attr_name (attr),
    7457                 :            :                           dwarf_form_name (form), (uintmax_t) num,
    7458                 :            :                           nlpt ? "" : " <WARNING offset too big>");
    7459                 :            :                 else
    7460                 :          7 :                   printf ("           %*s%-20s (%s) location index [%6"
    7461                 :            :                           PRIxMAX "]\n",
    7462                 :            :                           (int) (level * 2), "", dwarf_attr_name (attr),
    7463                 :            :                           dwarf_form_name (form), (uintmax_t) num);
    7464                 :            :               }
    7465                 :            :           }
    7466                 :            :           return DWARF_CB_OK;
    7467                 :            : 
    7468                 :          5 :         case DW_AT_loclists_base:
    7469                 :            :           {
    7470                 :         10 :             bool nlpt = notice_listptr (section_loc, &known_loclistsptr,
    7471                 :          5 :                                         cbargs->addrsize, cbargs->offset_size,
    7472                 :            :                                         cbargs->cu, num, attr);
    7473                 :            : 
    7474         [ +  + ]:          5 :             if (!cbargs->silent)
    7475         [ -  + ]:          1 :               printf ("           %*s%-20s (%s) location list [%6" PRIxMAX "]%s\n",
    7476                 :            :                       (int) (level * 2), "", dwarf_attr_name (attr),
    7477                 :            :                       dwarf_form_name (form), (uintmax_t) num,
    7478                 :            :                       nlpt ? "" : " <WARNING offset too big>");
    7479                 :            :           }
    7480                 :            :           return DWARF_CB_OK;
    7481                 :            : 
    7482                 :      16610 :         case DW_AT_ranges:
    7483                 :            :         case DW_AT_start_scope:
    7484                 :            :           {
    7485                 :      16610 :             bool nlpt;
    7486         [ +  + ]:      16610 :             if (cbargs->cu->version < 5)
    7487                 :      16593 :               nlpt = notice_listptr (section_ranges, &known_rangelistptr,
    7488                 :      16593 :                                      cbargs->addrsize, cbargs->offset_size,
    7489                 :            :                                      cbargs->cu, num, attr);
    7490                 :            :             else
    7491                 :            :               {
    7492                 :            :                 /* Only register for a real section offset.  Otherwise
    7493                 :            :                    it is a DW_FORM_rangelistx which is just an index
    7494                 :            :                    number and we should already have registered the
    7495                 :            :                    section offset for the index when we saw the
    7496                 :            :                    DW_AT_rnglists_base CU attribute.  */
    7497         [ +  + ]:         17 :                 if (form == DW_FORM_sec_offset)
    7498                 :         11 :                   nlpt = notice_listptr (section_ranges, &known_rnglistptr,
    7499                 :         11 :                                          cbargs->addrsize, cbargs->offset_size,
    7500                 :            :                                          cbargs->cu, num, attr);
    7501                 :            :                 else
    7502                 :            :                   nlpt = true;
    7503                 :            :               }
    7504                 :            : 
    7505         [ +  + ]:      16610 :             if (!cbargs->silent)
    7506                 :            :               {
    7507   [ +  +  +  + ]:      16567 :                 if (cbargs->cu->version < 5 || form == DW_FORM_sec_offset)
    7508         [ -  + ]:      16565 :                   printf ("           %*s%-20s (%s) range list [%6"
    7509                 :            :                           PRIxMAX "]%s\n",
    7510                 :            :                           (int) (level * 2), "", dwarf_attr_name (attr),
    7511                 :            :                           dwarf_form_name (form), (uintmax_t) num,
    7512                 :            :                           nlpt ? "" : " <WARNING offset too big>");
    7513                 :            :                 else
    7514                 :          2 :                   printf ("           %*s%-20s (%s) range index [%6"
    7515                 :            :                           PRIxMAX "]\n",
    7516                 :            :                           (int) (level * 2), "", dwarf_attr_name (attr),
    7517                 :            :                           dwarf_form_name (form), (uintmax_t) num);
    7518                 :            :               }
    7519                 :            :           }
    7520                 :            :           return DWARF_CB_OK;
    7521                 :            : 
    7522                 :          4 :         case DW_AT_rnglists_base:
    7523                 :            :           {
    7524                 :          8 :             bool nlpt = notice_listptr (section_ranges, &known_rnglistptr,
    7525                 :          4 :                                         cbargs->addrsize, cbargs->offset_size,
    7526                 :            :                                         cbargs->cu, num, attr);
    7527         [ +  + ]:          4 :             if (!cbargs->silent)
    7528         [ -  + ]:          2 :               printf ("           %*s%-20s (%s) range list [%6"
    7529                 :            :                       PRIxMAX "]%s\n",
    7530                 :            :                       (int) (level * 2), "", dwarf_attr_name (attr),
    7531                 :            :                       dwarf_form_name (form), (uintmax_t) num,
    7532                 :            :                       nlpt ? "" : " <WARNING offset too big>");
    7533                 :            :           }
    7534                 :            :           return DWARF_CB_OK;
    7535                 :            : 
    7536                 :         13 :         case DW_AT_addr_base:
    7537                 :            :         case DW_AT_GNU_addr_base:
    7538                 :            :           {
    7539                 :         26 :             bool addrbase = notice_listptr (section_addr, &known_addrbases,
    7540                 :         13 :                                             cbargs->addrsize,
    7541                 :         13 :                                             cbargs->offset_size,
    7542                 :            :                                             cbargs->cu, num, attr);
    7543         [ +  + ]:         13 :             if (!cbargs->silent)
    7544         [ -  + ]:          5 :               printf ("           %*s%-20s (%s) address base [%6"
    7545                 :            :                       PRIxMAX "]%s\n",
    7546                 :            :                       (int) (level * 2), "", dwarf_attr_name (attr),
    7547                 :            :                       dwarf_form_name (form), (uintmax_t) num,
    7548                 :            :                       addrbase ? "" : " <WARNING offset too big>");
    7549                 :            :           }
    7550                 :            :           return DWARF_CB_OK;
    7551                 :            : 
    7552                 :          0 :         case DW_AT_str_offsets_base:
    7553                 :            :           {
    7554                 :          0 :             bool stroffbase = notice_listptr (section_str, &known_stroffbases,
    7555                 :          0 :                                               cbargs->addrsize,
    7556                 :          0 :                                               cbargs->offset_size,
    7557                 :            :                                               cbargs->cu, num, attr);
    7558         [ #  # ]:          0 :             if (!cbargs->silent)
    7559         [ -  - ]:     378307 :               printf ("           %*s%-20s (%s) str offsets base [%6"
    7560                 :            :                       PRIxMAX "]%s\n",
    7561                 :            :                       (int) (level * 2), "", dwarf_attr_name (attr),
    7562                 :            :                       dwarf_form_name (form), (uintmax_t) num,
    7563                 :            :                       stroffbase ? "" : " <WARNING offset too big>");
    7564                 :            :           }
    7565                 :            :           return DWARF_CB_OK;
    7566                 :            : 
    7567                 :       1735 :         case DW_AT_language:
    7568                 :       1735 :           valuestr = dwarf_lang_name (num);
    7569                 :       1735 :           break;
    7570                 :      30932 :         case DW_AT_encoding:
    7571                 :      30932 :           valuestr = dwarf_encoding_name (num);
    7572                 :      30932 :           break;
    7573                 :          0 :         case DW_AT_accessibility:
    7574                 :          0 :           valuestr = dwarf_access_name (num);
    7575                 :          0 :           break;
    7576                 :          0 :         case DW_AT_defaulted:
    7577                 :          0 :           valuestr = dwarf_defaulted_name (num);
    7578                 :          0 :           break;
    7579                 :          0 :         case DW_AT_visibility:
    7580                 :          0 :           valuestr = dwarf_visibility_name (num);
    7581                 :          0 :           break;
    7582                 :          0 :         case DW_AT_virtuality:
    7583                 :          0 :           valuestr = dwarf_virtuality_name (num);
    7584                 :          0 :           break;
    7585                 :          0 :         case DW_AT_identifier_case:
    7586                 :          0 :           valuestr = dwarf_identifier_case_name (num);
    7587                 :          0 :           break;
    7588                 :          0 :         case DW_AT_calling_convention:
    7589                 :          0 :           valuestr = dwarf_calling_convention_name (num);
    7590                 :          0 :           break;
    7591                 :       3468 :         case DW_AT_inline:
    7592                 :       3468 :           valuestr = dwarf_inline_name (num);
    7593                 :       3468 :           break;
    7594                 :          0 :         case DW_AT_ordering:
    7595                 :          0 :           valuestr = dwarf_ordering_name (num);
    7596                 :          0 :           break;
    7597                 :     451506 :         case DW_AT_decl_file:
    7598                 :            :         case DW_AT_call_file:
    7599                 :            :           {
    7600         [ +  + ]:     451506 :             if (cbargs->silent)
    7601                 :            :               break;
    7602                 :            : 
    7603                 :            :             /* Try to get the actual file, the current interface only
    7604                 :            :                gives us full paths, but we only want to show the file
    7605                 :            :                name for now.  */
    7606                 :     451082 :             Dwarf_Die cudie;
    7607         [ +  - ]:     451082 :             if (dwarf_cu_die (cbargs->cu, &cudie,
    7608                 :            :                               NULL, NULL, NULL, NULL, NULL, NULL) != NULL)
    7609                 :            :               {
    7610                 :     451082 :                 Dwarf_Files *files;
    7611                 :     451082 :                 size_t nfiles;
    7612         [ +  - ]:     451082 :                 if (dwarf_getsrcfiles (&cudie, &files, &nfiles) == 0)
    7613                 :            :                   {
    7614                 :     451082 :                     valuestr = dwarf_filesrc (files, num, NULL, NULL);
    7615         [ +  - ]:     451082 :                     if (valuestr != NULL)
    7616                 :            :                       {
    7617                 :     451082 :                         char *filename = strrchr (valuestr, '/');
    7618         [ +  - ]:     451082 :                         if (filename != NULL)
    7619                 :     451082 :                           valuestr = filename + 1;
    7620                 :            :                       }
    7621                 :            :                     else
    7622                 :          0 :                       error (0, 0, _("invalid file (%" PRId64 "): %s"),
    7623                 :            :                              num, dwarf_errmsg (-1));
    7624                 :            :                   }
    7625                 :            :                 else
    7626                 :          0 :                   error (0, 0, _("no srcfiles for CU [%" PRIx64 "]"),
    7627                 :            :                          dwarf_dieoffset (&cudie));
    7628                 :            :               }
    7629                 :            :             else
    7630                 :          0 :              error (0, 0, _("couldn't get DWARF CU: %s"),
    7631                 :            :                     dwarf_errmsg (-1));
    7632         [ -  + ]:     451082 :             if (valuestr == NULL)
    7633                 :            :               valuestr = "???";
    7634                 :            :           }
    7635                 :     451082 :           break;
    7636                 :         13 :         case DW_AT_GNU_dwo_id:
    7637                 :         13 :           as_hex_id = true;
    7638                 :         13 :           break;
    7639                 :            : 
    7640                 :            :         default:
    7641                 :            :           /* Nothing.  */
    7642                 :            :           break;
    7643                 :            :         }
    7644                 :            : 
    7645         [ +  + ]:    1692847 :       if (cbargs->silent)
    7646                 :            :         break;
    7647                 :            : 
    7648                 :            :       /* When highpc is in constant form it is relative to lowpc.
    7649                 :            :          In that case also show the address.  */
    7650                 :    1690992 :       Dwarf_Addr highpc;
    7651   [ +  +  +  - ]:    1690992 :       if (attr == DW_AT_high_pc && dwarf_highpc (die, &highpc) == 0)
    7652                 :            :         {
    7653                 :      11432 :           printf ("           %*s%-20s (%s) %" PRIuMAX " (",
    7654                 :            :                   (int) (level * 2), "", dwarf_attr_name (attr),
    7655                 :            :                   dwarf_form_name (form), (uintmax_t) num);
    7656                 :      11432 :           print_dwarf_addr (cbargs->dwflmod, cbargs->addrsize, highpc, highpc);
    7657                 :      11432 :           printf (")\n");
    7658                 :            :         }
    7659                 :            :       else
    7660                 :            :         {
    7661         [ +  + ]:    1679560 :           if (as_hex_id)
    7662                 :            :             {
    7663                 :          2 :               printf ("           %*s%-20s (%s) 0x%.16" PRIx64 "\n",
    7664                 :            :                       (int) (level * 2), "", dwarf_attr_name (attr),
    7665                 :            :                       dwarf_form_name (form), num);
    7666                 :            :             }
    7667                 :            :           else
    7668                 :            :             {
    7669                 :    1679558 :               Dwarf_Sword snum = 0;
    7670                 :    1679558 :               bool is_signed;
    7671                 :    1679558 :               int bytes = 0;
    7672         [ +  + ]:    1679558 :               if (attr == DW_AT_const_value)
    7673                 :     161065 :                 die_type_sign_bytes (die, &is_signed, &bytes);
    7674                 :            :               else
    7675                 :    1518493 :                 is_signed = (form == DW_FORM_sdata
    7676                 :    1518493 :                              || form == DW_FORM_implicit_const);
    7677                 :            : 
    7678         [ +  + ]:    1679558 :               if (is_signed)
    7679         [ -  + ]:        147 :                 if (unlikely (dwarf_formsdata (attrp, &snum) != 0))
    7680                 :          0 :                   goto attrval_out;
    7681                 :            : 
    7682         [ +  + ]:    1679558 :               if (valuestr == NULL)
    7683                 :            :                 {
    7684                 :    1192646 :                   printf ("           %*s%-20s (%s) ",
    7685                 :            :                           (int) (level * 2), "", dwarf_attr_name (attr),
    7686                 :            :                           dwarf_form_name (form));
    7687                 :            :                 }
    7688                 :            :               else
    7689                 :            :                 {
    7690                 :     486912 :                   printf ("           %*s%-20s (%s) %s (",
    7691                 :            :                           (int) (level * 2), "", dwarf_attr_name (attr),
    7692                 :            :                           dwarf_form_name (form), valuestr);
    7693                 :            :                 }
    7694                 :            : 
    7695   [ +  +  +  +  :    1679558 :               switch (bytes)
                      + ]
    7696                 :            :                 {
    7697                 :          2 :                 case 1:
    7698         [ +  + ]:          2 :                   if (is_signed)
    7699                 :          1 :                     printf ("%" PRId8, (int8_t) snum);
    7700                 :            :                   else
    7701                 :          1 :                     printf ("%" PRIu8, (uint8_t) num);
    7702                 :            :                   break;
    7703                 :            : 
    7704                 :          2 :                 case 2:
    7705         [ +  + ]:          2 :                   if (is_signed)
    7706                 :          1 :                     printf ("%" PRId16, (int16_t) snum);
    7707                 :            :                   else
    7708                 :          1 :                     printf ("%" PRIu16, (uint16_t) num);
    7709                 :            :                   break;
    7710                 :            : 
    7711                 :        130 :                 case 4:
    7712         [ +  + ]:        130 :                   if (is_signed)
    7713                 :        123 :                     printf ("%" PRId32, (int32_t) snum);
    7714                 :            :                   else
    7715                 :          7 :                     printf ("%" PRIu32, (uint32_t) num);
    7716                 :            :                   break;
    7717                 :            : 
    7718                 :        302 :                 case 8:
    7719         [ +  + ]:        302 :                   if (is_signed)
    7720                 :          1 :                     printf ("%" PRId64, (int64_t) snum);
    7721                 :            :                   else
    7722                 :        301 :                     printf ("%" PRIu64, (uint64_t) num);
    7723                 :            :                   break;
    7724                 :            : 
    7725                 :    1679122 :                 default:
    7726         [ +  + ]:    1679122 :                   if (is_signed)
    7727                 :         21 :                     printf ("%" PRIdMAX, (intmax_t) snum);
    7728                 :            :                   else
    7729                 :    1679101 :                     printf ("%" PRIuMAX, (uintmax_t) num);
    7730                 :            :                   break;
    7731                 :            :                 }
    7732                 :            : 
    7733                 :            :               /* Make clear if we switched from a signed encoding to
    7734                 :            :                  an unsigned value.  */
    7735         [ +  + ]:    1679558 :               if (attr == DW_AT_const_value
    7736         [ +  + ]:     161065 :                   && (form == DW_FORM_sdata || form == DW_FORM_implicit_const)
    7737         [ +  + ]:       1218 :                   && !is_signed)
    7738                 :       1212 :                 printf (" (%" PRIdMAX ")", (intmax_t) num);
    7739                 :            : 
    7740         [ +  + ]:    1679558 :               if (valuestr == NULL)
    7741                 :    1192646 :                 printf ("\n");
    7742                 :            :               else
    7743                 :    1679558 :                 printf (")\n");
    7744                 :            :             }
    7745                 :            :         }
    7746                 :            :       break;
    7747                 :            : 
    7748                 :       9122 :     case DW_FORM_flag:
    7749         [ +  + ]:       9122 :       if (cbargs->silent)
    7750                 :            :         break;
    7751                 :       9048 :       bool flag;
    7752         [ -  + ]:       9048 :       if (unlikely (dwarf_formflag (attrp, &flag) != 0))
    7753                 :          0 :         goto attrval_out;
    7754                 :            : 
    7755                 :       9048 :       printf ("           %*s%-20s (%s) %s\n",
    7756                 :            :               (int) (level * 2), "", dwarf_attr_name (attr),
    7757         [ +  - ]:       9048 :               dwarf_form_name (form), flag ? yes_str : no_str);
    7758                 :            :       break;
    7759                 :            : 
    7760                 :      60845 :     case DW_FORM_flag_present:
    7761         [ +  + ]:      60845 :       if (cbargs->silent)
    7762                 :            :         break;
    7763                 :      60568 :       printf ("           %*s%-20s (%s) %s\n",
    7764                 :            :               (int) (level * 2), "", dwarf_attr_name (attr),
    7765                 :            :               dwarf_form_name (form), yes_str);
    7766                 :            :       break;
    7767                 :            : 
    7768                 :     102300 :     case DW_FORM_exprloc:
    7769                 :            :     case DW_FORM_block4:
    7770                 :            :     case DW_FORM_block2:
    7771                 :            :     case DW_FORM_block1:
    7772                 :            :     case DW_FORM_block:
    7773                 :            :     case DW_FORM_data16: /* DWARF5 calls this a constant class.  */
    7774         [ +  + ]:     102300 :       if (cbargs->silent)
    7775                 :            :         break;
    7776                 :     102169 :       Dwarf_Block block;
    7777         [ -  + ]:     102169 :       if (unlikely (dwarf_formblock (attrp, &block) != 0))
    7778                 :          0 :         goto attrval_out;
    7779                 :            : 
    7780                 :     102169 :       printf ("           %*s%-20s (%s) ",
    7781                 :            :               (int) (level * 2), "", dwarf_attr_name (attr),
    7782                 :            :               dwarf_form_name (form));
    7783                 :            : 
    7784      [ -  +  + ]:     102169 :       switch (attr)
    7785                 :            :         {
    7786                 :          0 :         default:
    7787         [ #  # ]:          0 :           if (form != DW_FORM_exprloc)
    7788                 :            :             {
    7789                 :          0 :               print_block (block.length, block.data);
    7790                 :          0 :               break;
    7791                 :            :             }
    7792                 :     102165 :           FALLTHROUGH;
    7793                 :            : 
    7794                 :            :         case DW_AT_location:
    7795                 :            :         case DW_AT_data_location:
    7796                 :            :         case DW_AT_data_member_location:
    7797                 :            :         case DW_AT_vtable_elem_location:
    7798                 :            :         case DW_AT_string_length:
    7799                 :            :         case DW_AT_use_location:
    7800                 :            :         case DW_AT_frame_base:
    7801                 :            :         case DW_AT_return_addr:
    7802                 :            :         case DW_AT_static_link:
    7803                 :            :         case DW_AT_allocated:
    7804                 :            :         case DW_AT_associated:
    7805                 :            :         case DW_AT_bit_size:
    7806                 :            :         case DW_AT_bit_offset:
    7807                 :            :         case DW_AT_bit_stride:
    7808                 :            :         case DW_AT_byte_size:
    7809                 :            :         case DW_AT_byte_stride:
    7810                 :            :         case DW_AT_count:
    7811                 :            :         case DW_AT_lower_bound:
    7812                 :            :         case DW_AT_upper_bound:
    7813                 :            :         case DW_AT_GNU_call_site_value:
    7814                 :            :         case DW_AT_GNU_call_site_data_value:
    7815                 :            :         case DW_AT_GNU_call_site_target:
    7816                 :            :         case DW_AT_GNU_call_site_target_clobbered:
    7817         [ +  + ]:     102165 :           if (form == DW_FORM_exprloc
    7818         [ +  - ]:         70 :               || (form != DW_FORM_data16
    7819         [ +  - ]:         70 :                   && attrp->cu->version < 4)) /* blocks were expressions.  */
    7820                 :            :             {
    7821                 :     102165 :               putchar ('\n');
    7822                 :     102165 :               print_ops (cbargs->dwflmod, cbargs->dbg,
    7823                 :     102165 :                          12 + level * 2, 12 + level * 2,
    7824                 :            :                          cbargs->version, cbargs->addrsize, cbargs->offset_size,
    7825                 :     102165 :                          attrp->cu, block.length, block.data);
    7826                 :            :             }
    7827                 :            :           else
    7828                 :          0 :             print_block (block.length, block.data);
    7829                 :            :           break;
    7830                 :            : 
    7831                 :          4 :         case DW_AT_discr_list:
    7832         [ -  + ]:          4 :           if (block.length == 0)
    7833                 :          0 :             puts ("<default>");
    7834         [ +  - ]:          4 :           else if (form != DW_FORM_data16)
    7835                 :            :             {
    7836                 :          4 :               const unsigned char *readp = block.data;
    7837                 :          4 :               const unsigned char *readendp = readp + block.length;
    7838                 :            : 
    7839                 :            :               /* See if we are dealing with a signed or unsigned
    7840                 :            :                  values.  If the parent of this variant DIE is a
    7841                 :            :                  variant_part then it will either have a discriminant
    7842                 :            :                  which points to the member which type is the
    7843                 :            :                  discriminant type.  Or the variant_part itself has a
    7844                 :            :                  type representing the discriminant.  */
    7845                 :          4 :               bool is_signed = false;
    7846         [ +  - ]:          4 :               if (level > 0)
    7847                 :            :                 {
    7848                 :          4 :                   Dwarf_Die *parent = &cbargs->dies[level - 1];
    7849         [ +  - ]:          4 :                   if (dwarf_tag (die) == DW_TAG_variant
    7850         [ +  - ]:          4 :                       && dwarf_tag (parent) == DW_TAG_variant_part)
    7851                 :            :                     {
    7852                 :          4 :                       Dwarf_Die member;
    7853                 :          4 :                       Dwarf_Attribute discr_attr;
    7854                 :          4 :                       int bytes;
    7855         [ +  - ]:          4 :                       if (dwarf_formref_die (dwarf_attr (parent,
    7856                 :            :                                                          DW_AT_discr,
    7857                 :            :                                                          &discr_attr),
    7858                 :            :                                              &member) != NULL)
    7859                 :          4 :                         die_type_sign_bytes (&member, &is_signed, &bytes);
    7860                 :            :                       else
    7861                 :          0 :                         die_type_sign_bytes (parent, &is_signed, &bytes);
    7862                 :            :                     }
    7863                 :            :                 }
    7864                 :         12 :               while (readp < readendp)
    7865                 :            :                 {
    7866                 :          8 :                   int d = (int) *readp++;
    7867                 :          8 :                   printf ("%s ", dwarf_discr_list_name (d));
    7868         [ -  + ]:          8 :                   if (readp >= readendp)
    7869                 :          0 :                     goto attrval_out;
    7870                 :            : 
    7871                 :          8 :                   Dwarf_Word val;
    7872                 :          8 :                   Dwarf_Sword sval;
    7873         [ +  + ]:          8 :                   if (d == DW_DSC_label)
    7874                 :            :                     {
    7875         [ +  + ]:          4 :                       if (is_signed)
    7876                 :            :                         {
    7877                 :          2 :                           get_sleb128 (sval, readp, readendp);
    7878                 :          2 :                           printf ("%" PRId64 "", sval);
    7879                 :            :                         }
    7880                 :            :                       else
    7881                 :            :                         {
    7882                 :          2 :                           get_uleb128 (val, readp, readendp);
    7883                 :          2 :                           printf ("%" PRIu64 "", val);
    7884                 :            :                         }
    7885                 :            :                     }
    7886         [ +  - ]:          4 :                   else if (d == DW_DSC_range)
    7887                 :            :                     {
    7888         [ +  + ]:          4 :                       if (is_signed)
    7889                 :            :                         {
    7890                 :          3 :                           get_sleb128 (sval, readp, readendp);
    7891                 :          3 :                           printf ("%" PRId64 "..", sval);
    7892         [ -  + ]:          3 :                           if (readp >= readendp)
    7893                 :          0 :                             goto attrval_out;
    7894                 :          3 :                           get_sleb128 (sval, readp, readendp);
    7895                 :          3 :                           printf ("%" PRId64 "", sval);
    7896                 :            :                         }
    7897                 :            :                       else
    7898                 :            :                         {
    7899                 :          1 :                           get_uleb128 (val, readp, readendp);
    7900                 :          1 :                           printf ("%" PRIu64 "..", val);
    7901         [ -  + ]:          1 :                           if (readp >= readendp)
    7902                 :          0 :                             goto attrval_out;
    7903                 :          1 :                           get_uleb128 (val, readp, readendp);
    7904                 :          1 :                           printf ("%" PRIu64 "", val);
    7905                 :            :                         }
    7906                 :            :                     }
    7907                 :            :                   else
    7908                 :            :                     {
    7909                 :          0 :                       print_block (readendp - readp, readp);
    7910                 :          0 :                       break;
    7911                 :            :                     }
    7912         [ +  + ]:          8 :                   if (readp < readendp)
    7913         [ +  + ]:         16 :                     printf (", ");
    7914                 :            :                 }
    7915                 :          4 :               putchar ('\n');
    7916                 :            :             }
    7917                 :            :           else
    7918                 :          0 :             print_block (block.length, block.data);
    7919                 :            :           break;
    7920                 :            :         }
    7921                 :            :       break;
    7922                 :            : 
    7923                 :          0 :     default:
    7924         [ #  # ]:          0 :       if (cbargs->silent)
    7925                 :            :         break;
    7926                 :          0 :       printf ("           %*s%-20s (%s) ???\n",
    7927                 :            :               (int) (level * 2), "", dwarf_attr_name (attr),
    7928                 :            :               dwarf_form_name (form));
    7929                 :            :       break;
    7930                 :            :     }
    7931                 :            : 
    7932                 :    3296427 :   return DWARF_CB_OK;
    7933                 :            : }
    7934                 :            : 
    7935                 :            : static void
    7936                 :        101 : print_debug_units (Dwfl_Module *dwflmod,
    7937                 :            :                    Ebl *ebl, GElf_Ehdr *ehdr __attribute__ ((unused)),
    7938                 :            :                    Elf_Scn *scn, GElf_Shdr *shdr,
    7939                 :            :                    Dwarf *dbg, bool debug_types)
    7940                 :            : {
    7941   [ +  +  +  + ]:        101 :   const bool silent = !(print_debug_sections & section_info) && !debug_types;
    7942                 :        101 :   const char *secname = section_name (ebl, shdr);
    7943                 :            : 
    7944                 :            :   /* Check section actually exists.  */
    7945         [ +  + ]:        101 :   if (!silent)
    7946         [ +  - ]:         65 :     if (get_debug_elf_data (dbg, ebl,
    7947                 :            :                             debug_types ? IDX_debug_types : IDX_debug_info,
    7948                 :            :                             scn) == NULL)
    7949                 :          0 :       return;
    7950                 :            : 
    7951         [ +  + ]:        101 :   if (!silent)
    7952                 :         65 :     printf (_("\
    7953                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n [Offset]\n"),
    7954                 :         65 :             elf_ndxscn (scn), secname, (uint64_t) shdr->sh_offset);
    7955                 :            : 
    7956                 :            :   /* If the section is empty we don't have to do anything.  */
    7957   [ +  +  +  - ]:        101 :   if (!silent && shdr->sh_size == 0)
    7958                 :            :     return;
    7959                 :            : 
    7960                 :        101 :   int maxdies = 20;
    7961                 :        101 :   Dwarf_Die *dies = xmalloc (maxdies * sizeof (Dwarf_Die));
    7962                 :            : 
    7963                 :            :   /* New compilation unit.  */
    7964                 :        101 :   Dwarf_Half version;
    7965                 :            : 
    7966                 :        101 :   Dwarf_Die result;
    7967                 :        101 :   Dwarf_Off abbroffset;
    7968                 :        101 :   uint8_t addrsize;
    7969                 :        101 :   uint8_t offsize;
    7970                 :        101 :   uint64_t unit_id;
    7971                 :        101 :   Dwarf_Off subdie_off;
    7972                 :            : 
    7973                 :        101 :   int unit_res;
    7974                 :        101 :   Dwarf_CU *cu;
    7975                 :        101 :   Dwarf_CU cu_mem;
    7976                 :        101 :   uint8_t unit_type;
    7977                 :        101 :   Dwarf_Die cudie;
    7978                 :            : 
    7979                 :            :   /* We cheat a little because we want to see only the CUs from .debug_info
    7980                 :            :      or .debug_types.  We know the Dwarf_CU struct layout.  Set it up at
    7981                 :            :      the end of .debug_info if we want .debug_types only.  Check the returned
    7982                 :            :      Dwarf_CU is still in the expected section.  */
    7983         [ +  + ]:        101 :   if (debug_types)
    7984                 :            :     {
    7985                 :          1 :       cu_mem.dbg = dbg;
    7986                 :          1 :       cu_mem.end = dbg->sectiondata[IDX_debug_info]->d_size;
    7987                 :          1 :       cu_mem.sec_idx = IDX_debug_info;
    7988                 :          1 :       cu = &cu_mem;
    7989                 :            :     }
    7990                 :            :   else
    7991                 :        100 :     cu = NULL;
    7992                 :            : 
    7993                 :            :  next_cu:
    7994                 :       1845 :   unit_res = dwarf_get_units (dbg, cu, &cu, &version, &unit_type,
    7995                 :            :                               &cudie, NULL);
    7996         [ +  + ]:       1845 :   if (unit_res == 1)
    7997                 :        100 :     goto do_return;
    7998                 :            : 
    7999         [ -  + ]:       1745 :   if (unit_res == -1)
    8000                 :            :     {
    8001         [ #  # ]:          0 :       if (!silent)
    8002                 :          0 :         error (0, 0, _("cannot get next unit: %s"), dwarf_errmsg (-1));
    8003                 :          0 :       goto do_return;
    8004                 :            :     }
    8005                 :            : 
    8006   [ +  +  +  + ]:       3488 :   if (cu->sec_idx != (size_t) (debug_types ? IDX_debug_types : IDX_debug_info))
    8007                 :          1 :     goto do_return;
    8008                 :            : 
    8009                 :       1744 :   dwarf_cu_die (cu, &result, NULL, &abbroffset, &addrsize, &offsize,
    8010                 :            :                 &unit_id, &subdie_off);
    8011                 :            : 
    8012         [ +  + ]:       1744 :   if (!silent)
    8013                 :            :     {
    8014                 :       1694 :       Dwarf_Off offset = cu->start;
    8015   [ +  +  +  - ]:       1694 :       if (debug_types && version < 5)
    8016                 :          2 :         {
    8017                 :          2 :           Dwarf_Die typedie;
    8018                 :          2 :           Dwarf_Off dieoffset;
    8019                 :          2 :           dieoffset = dwarf_dieoffset (dwarf_offdie_types (dbg, cu->start
    8020                 :            :                                                            + subdie_off,
    8021                 :            :                                                            &typedie));
    8022                 :          2 :           printf (_(" Type unit at offset %" PRIu64 ":\n"
    8023                 :            :                            " Version: %" PRIu16
    8024                 :            :                            ", Abbreviation section offset: %" PRIu64
    8025                 :            :                            ", Address size: %" PRIu8
    8026                 :            :                            ", Offset size: %" PRIu8
    8027                 :            :                            "\n Type signature: %#" PRIx64
    8028                 :            :                            ", Type offset: %#" PRIx64 " [%" PRIx64 "]\n"),
    8029                 :            :                   (uint64_t) offset, version, abbroffset, addrsize, offsize,
    8030                 :            :                   unit_id, (uint64_t) subdie_off, dieoffset);
    8031                 :            :         }
    8032                 :            :       else
    8033                 :            :         {
    8034                 :       1692 :           printf (_(" Compilation unit at offset %" PRIu64 ":\n"
    8035                 :            :                            " Version: %" PRIu16
    8036                 :            :                            ", Abbreviation section offset: %" PRIu64
    8037                 :            :                            ", Address size: %" PRIu8
    8038                 :            :                            ", Offset size: %" PRIu8 "\n"),
    8039                 :            :                   (uint64_t) offset, version, abbroffset, addrsize, offsize);
    8040                 :            : 
    8041         [ +  + ]:       1692 :           if (version >= 5 || (unit_type != DW_UT_compile
    8042         [ +  + ]:       1687 :                                && unit_type != DW_UT_partial))
    8043                 :            :             {
    8044                 :          6 :               printf (_(" Unit type: %s (%" PRIu8 ")"),
    8045                 :            :                                dwarf_unit_name (unit_type), unit_type);
    8046                 :          6 :               if (unit_type == DW_UT_type
    8047         [ +  + ]:          6 :                   || unit_type == DW_UT_skeleton
    8048         [ +  - ]:          1 :                   || unit_type == DW_UT_split_compile
    8049         [ -  + ]:          1 :                   || unit_type == DW_UT_split_type)
    8050                 :          5 :                 printf (", Unit id: 0x%.16" PRIx64 "", unit_id);
    8051                 :          6 :               if (unit_type == DW_UT_type
    8052         [ -  + ]:          6 :                   || unit_type == DW_UT_split_type)
    8053                 :            :                 {
    8054                 :          0 :                   Dwarf_Die typedie;
    8055                 :          0 :                   Dwarf_Off dieoffset;
    8056                 :          0 :                   dwarf_cu_info (cu, NULL, NULL, NULL, &typedie,
    8057                 :            :                                  NULL, NULL, NULL);
    8058                 :          0 :                   dieoffset = dwarf_dieoffset (&typedie);
    8059                 :          0 :                   printf (", Unit DIE off: %#" PRIx64 " [%" PRIx64 "]",
    8060                 :            :                           subdie_off, dieoffset);
    8061                 :            :                 }
    8062                 :          6 :               printf ("\n");
    8063                 :            :             }
    8064                 :            :         }
    8065                 :            :     }
    8066                 :            : 
    8067         [ +  - ]:       1744 :   if (version < 2 || version > 5
    8068   [ +  -  -  + ]:       1744 :       || unit_type < DW_UT_compile || unit_type > DW_UT_split_type)
    8069                 :            :     {
    8070         [ #  # ]:          0 :       if (!silent)
    8071                 :          0 :         error (0, 0, _("unknown version (%d) or unit type (%d)"),
    8072                 :            :                version, unit_type);
    8073                 :          0 :       goto next_cu;
    8074                 :            :     }
    8075                 :            : 
    8076                 :       1744 :   struct attrcb_args args =
    8077                 :            :     {
    8078                 :            :       .dwflmod = dwflmod,
    8079                 :            :       .silent = silent,
    8080                 :            :       .version = version,
    8081                 :            :       .addrsize = addrsize,
    8082                 :            :       .offset_size = offsize
    8083                 :            :     };
    8084                 :            : 
    8085                 :       1744 :   bool is_split = false;
    8086                 :       1744 :   int level = 0;
    8087                 :       1744 :   dies[0] = cudie;
    8088                 :       1744 :   args.cu = dies[0].cu;
    8089                 :       1744 :   args.dbg = dbg;
    8090                 :       1744 :   args.is_split = is_split;
    8091                 :            : 
    8092                 :            :   /* We might return here again for the split CU subdie.  */
    8093                 :            :   do_cu:
    8094                 :     948117 :   do
    8095                 :            :     {
    8096                 :     948117 :       Dwarf_Off offset = dwarf_dieoffset (&dies[level]);
    8097         [ -  + ]:     948117 :       if (unlikely (offset == (Dwarf_Off) -1))
    8098                 :            :         {
    8099         [ #  # ]:          0 :           if (!silent)
    8100                 :          0 :             error (0, 0, _("cannot get DIE offset: %s"),
    8101                 :            :                    dwarf_errmsg (-1));
    8102                 :          0 :           goto do_return;
    8103                 :            :         }
    8104                 :            : 
    8105                 :     948117 :       int tag = dwarf_tag (&dies[level]);
    8106         [ -  + ]:     948117 :       if (unlikely (tag == DW_TAG_invalid))
    8107                 :            :         {
    8108         [ #  # ]:          0 :           if (!silent)
    8109                 :          0 :             error (0, 0, _("cannot get tag of DIE at offset [%" PRIx64
    8110                 :            :                                   "] in section '%s': %s"),
    8111                 :            :                    (uint64_t) offset, secname, dwarf_errmsg (-1));
    8112                 :          0 :           goto do_return;
    8113                 :            :         }
    8114                 :            : 
    8115         [ +  + ]:     948117 :       if (!silent)
    8116                 :            :         {
    8117                 :     947124 :           unsigned int code = dwarf_getabbrevcode (dies[level].abbrev);
    8118         [ +  + ]:     947124 :           if (is_split)
    8119                 :         48 :             printf (" {%6" PRIx64 "}  ", (uint64_t) offset);
    8120                 :            :           else
    8121                 :     947076 :             printf (" [%6" PRIx64 "]  ", (uint64_t) offset);
    8122                 :     947124 :           printf ("%*s%-20s abbrev: %u\n", (int) (level * 2), "",
    8123                 :            :                   dwarf_tag_name (tag), code);
    8124                 :            :         }
    8125                 :            : 
    8126                 :            :       /* Print the attribute values.  */
    8127                 :     948117 :       args.level = level;
    8128                 :     948117 :       args.dies = dies;
    8129                 :     948117 :       (void) dwarf_getattrs (&dies[level], attr_callback, &args, 0);
    8130                 :            : 
    8131                 :            :       /* Make room for the next level's DIE.  */
    8132         [ -  + ]:     948117 :       if (level + 1 == maxdies)
    8133                 :          0 :         dies = xrealloc (dies, (maxdies += 10) * sizeof (Dwarf_Die));
    8134                 :            : 
    8135                 :     948117 :       int res = dwarf_child (&dies[level], &dies[level + 1]);
    8136         [ +  + ]:     948117 :       if (res > 0)
    8137                 :            :         {
    8138         [ +  + ]:     948117 :           while ((res = dwarf_siblingof (&dies[level], &dies[level])) == 1)
    8139         [ +  + ]:     127793 :             if (level-- == 0)
    8140                 :            :               break;
    8141                 :            : 
    8142         [ -  + ]:     822072 :           if (unlikely (res == -1))
    8143                 :            :             {
    8144         [ #  # ]:          0 :               if (!silent)
    8145                 :          0 :                 error (0, 0, _("cannot get next DIE: %s\n"),
    8146                 :            :                        dwarf_errmsg (-1));
    8147                 :          0 :               goto do_return;
    8148                 :            :             }
    8149                 :            :         }
    8150         [ -  + ]:     126045 :       else if (unlikely (res < 0))
    8151                 :            :         {
    8152         [ #  # ]:          0 :           if (!silent)
    8153                 :          0 :             error (0, 0, _("cannot get next DIE: %s"),
    8154                 :            :                    dwarf_errmsg (-1));
    8155                 :          0 :           goto do_return;
    8156                 :            :         }
    8157                 :            :       else
    8158                 :            :         ++level;
    8159                 :            :     }
    8160         [ +  + ]:     948117 :   while (level >= 0);
    8161                 :            : 
    8162                 :            :   /* We might want to show the split compile unit if this was a skeleton.
    8163                 :            :      We need to scan it if we are requesting printing .debug_ranges for
    8164                 :            :      DWARF4 since GNU DebugFission uses "offsets" into the main ranges
    8165                 :            :      section.  */
    8166         [ +  + ]:       1748 :   if (unit_type == DW_UT_skeleton
    8167   [ +  +  +  + ]:         13 :       && ((!silent && show_split_units)
    8168   [ +  +  +  + ]:         10 :           || (version < 5 && (print_debug_sections & section_ranges) != 0)))
    8169                 :            :     {
    8170                 :          5 :       Dwarf_Die subdie;
    8171         [ +  - ]:          5 :       if (dwarf_cu_info (cu, NULL, NULL, NULL, &subdie, NULL, NULL, NULL) != 0
    8172         [ +  + ]:          5 :           || dwarf_tag (&subdie) == DW_TAG_invalid)
    8173                 :            :         {
    8174         [ +  - ]:          1 :           if (!silent)
    8175                 :            :             {
    8176                 :          1 :               Dwarf_Attribute dwo_at;
    8177                 :          2 :               const char *dwo_name =
    8178                 :          1 :                 (dwarf_formstring (dwarf_attr (&cudie, DW_AT_dwo_name,
    8179                 :            :                                                &dwo_at))
    8180         [ -  + ]:          1 :                  ?: (dwarf_formstring (dwarf_attr (&cudie, DW_AT_GNU_dwo_name,
    8181                 :            :                                                    &dwo_at))
    8182         [ #  # ]:          0 :                      ?: "<unknown>"));
    8183                 :          1 :               fprintf (stderr,
    8184                 :            :                        "Could not find split unit '%s', id: %" PRIx64 "\n",
    8185                 :            :                        dwo_name, unit_id);
    8186                 :            :             }
    8187                 :            :         }
    8188                 :            :       else
    8189                 :            :         {
    8190                 :          4 :           Dwarf_CU *split_cu = subdie.cu;
    8191                 :          4 :           dwarf_cu_die (split_cu, &result, NULL, &abbroffset,
    8192                 :            :                         &addrsize, &offsize, &unit_id, &subdie_off);
    8193                 :          4 :           Dwarf_Off offset = cu->start;
    8194                 :            : 
    8195         [ +  + ]:          4 :           if (!silent)
    8196                 :            :             {
    8197                 :          2 :               printf (_(" Split compilation unit at offset %"
    8198                 :            :                                PRIu64 ":\n"
    8199                 :            :                                " Version: %" PRIu16
    8200                 :            :                                ", Abbreviation section offset: %" PRIu64
    8201                 :            :                                ", Address size: %" PRIu8
    8202                 :            :                                ", Offset size: %" PRIu8 "\n"),
    8203                 :            :                       (uint64_t) offset, version, abbroffset,
    8204                 :            :                       addrsize, offsize);
    8205                 :          2 :               printf (_(" Unit type: %s (%" PRIu8 ")"),
    8206                 :            :                       dwarf_unit_name (unit_type), unit_type);
    8207                 :          2 :               printf (", Unit id: 0x%.16" PRIx64 "", unit_id);
    8208                 :          2 :               printf ("\n");
    8209                 :            :             }
    8210                 :            : 
    8211                 :          4 :           unit_type = DW_UT_split_compile;
    8212                 :          4 :           is_split = true;
    8213                 :          4 :           level = 0;
    8214                 :          4 :           dies[0] = subdie;
    8215                 :          4 :           args.cu = dies[0].cu;
    8216                 :          4 :           args.dbg = split_cu->dbg;
    8217                 :          4 :           args.is_split = is_split;
    8218                 :          4 :           goto do_cu;
    8219                 :            :         }
    8220                 :            :     }
    8221                 :            : 
    8222                 :            :   /* And again... */
    8223                 :       1744 :   goto next_cu;
    8224                 :            : 
    8225                 :        101 :  do_return:
    8226                 :        101 :   free (dies);
    8227                 :            : }
    8228                 :            : 
    8229                 :            : static void
    8230                 :        100 : print_debug_info_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr,
    8231                 :            :                           Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
    8232                 :            : {
    8233                 :         20 :   print_debug_units (dwflmod, ebl, ehdr, scn, shdr, dbg, false);
    8234                 :         20 : }
    8235                 :            : 
    8236                 :            : static void
    8237                 :          1 : print_debug_types_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr,
    8238                 :            :                            Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
    8239                 :            : {
    8240                 :          1 :   print_debug_units (dwflmod, ebl, ehdr, scn, shdr, dbg, true);
    8241                 :          1 : }
    8242                 :            : 
    8243                 :            : 
    8244                 :            : static void
    8245                 :         39 : print_decoded_line_section (Dwfl_Module *dwflmod, Ebl *ebl,
    8246                 :            :                             GElf_Ehdr *ehdr __attribute__ ((unused)),
    8247                 :            :                             Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
    8248                 :            : {
    8249                 :         39 :   printf (_("\
    8250                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n\n"),
    8251                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    8252                 :         39 :           (uint64_t) shdr->sh_offset);
    8253                 :            : 
    8254                 :         78 :   size_t address_size
    8255         [ +  + ]:         39 :     = elf_getident (ebl->elf, NULL)[EI_CLASS] == ELFCLASS32 ? 4 : 8;
    8256                 :            : 
    8257                 :         39 :   Dwarf_Lines *lines;
    8258                 :         39 :   size_t nlines;
    8259                 :         39 :   Dwarf_Off off, next_off = 0;
    8260                 :         39 :   Dwarf_CU *cu = NULL;
    8261         [ +  + ]:         84 :   while (dwarf_next_lines (dbg, off = next_off, &next_off, &cu, NULL, NULL,
    8262                 :            :                            &lines, &nlines) == 0)
    8263                 :            :     {
    8264                 :         45 :       Dwarf_Die cudie;
    8265   [ +  +  +  - ]:         45 :       if (cu != NULL && dwarf_cu_info (cu, NULL, NULL, &cudie,
    8266                 :            :                                        NULL, NULL, NULL, NULL) == 0)
    8267                 :         43 :         printf (" CU [%" PRIx64 "] %s\n",
    8268                 :            :                 dwarf_dieoffset (&cudie), dwarf_diename (&cudie));
    8269                 :            :       else
    8270                 :            :         {
    8271                 :            :           /* DWARF5 lines can be independent of any CU, but they probably
    8272                 :            :              are used by some CU.  Determine the CU this block is for.  */
    8273                 :          2 :           Dwarf_Off cuoffset;
    8274                 :          2 :           Dwarf_Off ncuoffset = 0;
    8275                 :          2 :           size_t hsize;
    8276         [ +  - ]:          3 :           while (dwarf_nextcu (dbg, cuoffset = ncuoffset, &ncuoffset, &hsize,
    8277                 :            :                                NULL, NULL, NULL) == 0)
    8278                 :            :             {
    8279         [ -  + ]:          3 :               if (dwarf_offdie (dbg, cuoffset + hsize, &cudie) == NULL)
    8280                 :          0 :                 continue;
    8281                 :          3 :               Dwarf_Attribute stmt_list;
    8282         [ -  + ]:          3 :               if (dwarf_attr (&cudie, DW_AT_stmt_list, &stmt_list) == NULL)
    8283                 :          0 :                 continue;
    8284                 :          3 :               Dwarf_Word lineoff;
    8285         [ -  + ]:          3 :               if (dwarf_formudata (&stmt_list, &lineoff) != 0)
    8286                 :          0 :                 continue;
    8287         [ +  + ]:          3 :               if (lineoff == off)
    8288                 :            :                 {
    8289                 :            :                   /* Found the CU.  */
    8290                 :          2 :                   cu = cudie.cu;
    8291                 :          2 :                   break;
    8292                 :            :                 }
    8293                 :            :             }
    8294                 :            : 
    8295         [ +  - ]:          2 :           if (cu != NULL)
    8296                 :          2 :             printf (" CU [%" PRIx64 "] %s\n",
    8297                 :            :                     dwarf_dieoffset (&cudie), dwarf_diename (&cudie));
    8298                 :            :           else
    8299                 :          2 :             printf (" No CU\n");
    8300                 :            :         }
    8301                 :            : 
    8302                 :         45 :       printf ("  line:col SBPE* disc isa op address"
    8303                 :            :               " (Statement Block Prologue Epilogue *End)\n");
    8304                 :         45 :       const char *last_file = "";
    8305         [ +  + ]:        348 :       for (size_t n = 0; n < nlines; n++)
    8306                 :            :         {
    8307                 :        303 :           Dwarf_Line *line = dwarf_onesrcline (lines, n);
    8308         [ -  + ]:        303 :           if (line == NULL)
    8309                 :            :             {
    8310                 :          0 :               printf ("  dwarf_onesrcline: %s\n", dwarf_errmsg (-1));
    8311                 :          0 :               continue;
    8312                 :            :             }
    8313                 :        303 :           Dwarf_Word mtime, length;
    8314                 :        303 :           const char *file = dwarf_linesrc (line, &mtime, &length);
    8315         [ -  + ]:        303 :           if (file == NULL)
    8316                 :            :             {
    8317                 :          0 :               printf ("  <%s> (mtime: ?, length: ?)\n", dwarf_errmsg (-1));
    8318                 :          0 :               last_file = "";
    8319                 :            :             }
    8320         [ +  + ]:        303 :           else if (strcmp (last_file, file) != 0)
    8321                 :            :             {
    8322                 :         53 :               printf ("  %s (mtime: %" PRIu64 ", length: %" PRIu64 ")\n",
    8323                 :            :                       file, mtime, length);
    8324                 :         53 :               last_file = file;
    8325                 :            :             }
    8326                 :            : 
    8327                 :        303 :           int lineno, colno;
    8328                 :        303 :           bool statement, endseq, block, prologue_end, epilogue_begin;
    8329                 :        303 :           unsigned int lineop, isa, disc;
    8330                 :        303 :           Dwarf_Addr address;
    8331                 :        303 :           dwarf_lineaddr (line, &address);
    8332                 :        303 :           dwarf_lineno (line, &lineno);
    8333                 :        303 :           dwarf_linecol (line, &colno);
    8334                 :        303 :           dwarf_lineop_index (line, &lineop);
    8335                 :        303 :           dwarf_linebeginstatement (line, &statement);
    8336                 :        303 :           dwarf_lineendsequence (line, &endseq);
    8337                 :        303 :           dwarf_lineblock (line, &block);
    8338                 :        303 :           dwarf_lineprologueend (line, &prologue_end);
    8339                 :        303 :           dwarf_lineepiloguebegin (line, &epilogue_begin);
    8340                 :        303 :           dwarf_lineisa (line, &isa);
    8341                 :        303 :           dwarf_linediscriminator (line, &disc);
    8342                 :            : 
    8343                 :            :           /* End sequence is special, it is one byte past.  */
    8344                 :        303 :           printf ("  %4d:%-3d %c%c%c%c%c %4d %3d %2d ",
    8345                 :            :                   lineno, colno,
    8346         [ +  + ]:        303 :                   (statement ? 'S' : ' '),
    8347         [ +  - ]:        303 :                   (block ? 'B' : ' '),
    8348         [ +  + ]:        303 :                   (prologue_end ? 'P' : ' '),
    8349         [ +  - ]:        303 :                   (epilogue_begin ? 'E' : ' '),
    8350         [ +  + ]:        303 :                   (endseq ? '*' : ' '),
    8351                 :            :                   disc, isa, lineop);
    8352                 :        303 :           print_dwarf_addr (dwflmod, address_size,
    8353         [ +  + ]:        303 :                             address - (endseq ? 1 : 0), address);
    8354                 :        303 :           printf ("\n");
    8355                 :            : 
    8356         [ +  + ]:        303 :           if (endseq)
    8357                 :        303 :             printf("\n");
    8358                 :            :         }
    8359                 :            :     }
    8360                 :         39 : }
    8361                 :            : 
    8362                 :            : 
    8363                 :            : /* Print the value of a form.
    8364                 :            :    Returns new value of readp, or readendp on failure.  */
    8365                 :            : static const unsigned char *
    8366                 :         20 : print_form_data (Dwarf *dbg, int form, const unsigned char *readp,
    8367                 :            :                  const unsigned char *readendp, unsigned int offset_len,
    8368                 :            :                  Dwarf_Off str_offsets_base)
    8369                 :            : {
    8370                 :         20 :   Dwarf_Word val;
    8371                 :         20 :   unsigned char *endp;
    8372                 :         20 :   Elf_Data *data;
    8373                 :         20 :   char *str;
    8374   [ +  -  -  -  :         20 :   switch (form)
          -  -  -  -  -  
          -  -  -  -  +  
          -  -  -  -  -  
                   -  - ]
    8375                 :            :     {
    8376                 :          8 :     case DW_FORM_data1:
    8377         [ -  + ]:          8 :       if (readendp - readp < 1)
    8378                 :            :         {
    8379                 :          0 :         invalid_data:
    8380                 :          0 :           error (0, 0, "invalid data");
    8381                 :          0 :           return readendp;
    8382                 :            :         }
    8383                 :          8 :       val = *readp++;
    8384                 :          8 :       printf (" %" PRIx8, (unsigned int) val);
    8385                 :            :       break;
    8386                 :            : 
    8387                 :          0 :     case DW_FORM_data2:
    8388         [ #  # ]:          0 :       if (readendp - readp < 2)
    8389                 :          0 :         goto invalid_data;
    8390         [ #  # ]:          0 :       val = read_2ubyte_unaligned_inc (dbg, readp);
    8391                 :          0 :       printf(" %" PRIx16, (unsigned int) val);
    8392                 :            :       break;
    8393                 :            : 
    8394                 :          0 :     case DW_FORM_data4:
    8395         [ #  # ]:          0 :       if (readendp - readp < 4)
    8396                 :          0 :         goto invalid_data;
    8397         [ #  # ]:          0 :       val = read_4ubyte_unaligned_inc (dbg, readp);
    8398                 :          0 :       printf (" %" PRIx32, (unsigned int) val);
    8399                 :            :       break;
    8400                 :            : 
    8401                 :          0 :     case DW_FORM_data8:
    8402         [ #  # ]:          0 :       if (readendp - readp < 8)
    8403                 :          0 :         goto invalid_data;
    8404         [ #  # ]:          0 :       val = read_8ubyte_unaligned_inc (dbg, readp);
    8405                 :          0 :       printf (" %" PRIx64, val);
    8406                 :            :       break;
    8407                 :            : 
    8408                 :          0 :     case DW_FORM_sdata:
    8409         [ #  # ]:          0 :       if (readendp - readp < 1)
    8410                 :          0 :         goto invalid_data;
    8411                 :          0 :       get_sleb128 (val, readp, readendp);
    8412                 :          0 :       printf (" %" PRIx64, val);
    8413                 :            :       break;
    8414                 :            : 
    8415                 :          0 :     case DW_FORM_udata:
    8416         [ #  # ]:          0 :       if (readendp - readp < 1)
    8417                 :          0 :         goto invalid_data;
    8418                 :          0 :       get_uleb128 (val, readp, readendp);
    8419                 :          0 :       printf (" %" PRIx64, val);
    8420                 :            :       break;
    8421                 :            : 
    8422                 :          0 :     case DW_FORM_block:
    8423         [ #  # ]:          0 :       if (readendp - readp < 1)
    8424                 :          0 :         goto invalid_data;
    8425                 :          0 :       get_uleb128 (val, readp, readendp);
    8426         [ #  # ]:          0 :       if ((size_t) (readendp - readp) < val)
    8427                 :          0 :         goto invalid_data;
    8428                 :          0 :       print_bytes (val, readp);
    8429                 :          0 :       readp += val;
    8430                 :          0 :       break;
    8431                 :            : 
    8432                 :          0 :     case DW_FORM_block1:
    8433         [ #  # ]:          0 :       if (readendp - readp < 1)
    8434                 :          0 :         goto invalid_data;
    8435                 :          0 :       val = *readp++;
    8436         [ #  # ]:          0 :       if ((size_t) (readendp - readp) < val)
    8437                 :          0 :         goto invalid_data;
    8438                 :          0 :       print_bytes (val, readp);
    8439                 :          0 :       readp += val;
    8440                 :          0 :       break;
    8441                 :            : 
    8442                 :          0 :     case DW_FORM_block2:
    8443         [ #  # ]:          0 :       if (readendp - readp < 2)
    8444                 :          0 :         goto invalid_data;
    8445         [ #  # ]:          0 :       val = read_2ubyte_unaligned_inc (dbg, readp);
    8446         [ #  # ]:          0 :       if ((size_t) (readendp - readp) < val)
    8447                 :          0 :         goto invalid_data;
    8448                 :          0 :       print_bytes (val, readp);
    8449                 :          0 :       readp += val;
    8450                 :          0 :       break;
    8451                 :            : 
    8452                 :          0 :     case DW_FORM_block4:
    8453         [ #  # ]:          0 :       if (readendp - readp < 4)
    8454                 :          0 :         goto invalid_data;
    8455         [ #  # ]:          0 :       val = read_4ubyte_unaligned_inc (dbg, readp);
    8456         [ #  # ]:          0 :       if ((size_t) (readendp - readp) < val)
    8457                 :          0 :         goto invalid_data;
    8458                 :          0 :       print_bytes (val, readp);
    8459                 :          0 :       readp += val;
    8460                 :          0 :       break;
    8461                 :            : 
    8462                 :          0 :     case DW_FORM_data16:
    8463         [ #  # ]:          0 :       if (readendp - readp < 16)
    8464                 :          0 :         goto invalid_data;
    8465                 :          0 :       print_bytes (16, readp);
    8466                 :          0 :       readp += 16;
    8467                 :          0 :       break;
    8468                 :            : 
    8469                 :          0 :     case DW_FORM_flag:
    8470         [ #  # ]:          0 :       if (readendp - readp < 1)
    8471                 :          0 :         goto invalid_data;
    8472                 :          0 :       val = *readp++;
    8473         [ #  # ]:          0 :       printf ("%s", val != 0 ? yes_str : no_str);
    8474                 :            :       break;
    8475                 :            : 
    8476                 :          0 :     case DW_FORM_string:
    8477                 :          0 :       endp = memchr (readp, '\0', readendp - readp);
    8478         [ #  # ]:          0 :       if (endp == NULL)
    8479                 :          0 :         goto invalid_data;
    8480                 :          0 :       printf ("%s", readp);
    8481                 :          0 :       readp = endp + 1;
    8482                 :          0 :       break;
    8483                 :            : 
    8484                 :         12 :     case DW_FORM_strp:
    8485                 :            :     case DW_FORM_line_strp:
    8486                 :            :     case DW_FORM_strp_sup:
    8487         [ -  + ]:         12 :       if ((size_t) (readendp - readp) < offset_len)
    8488                 :          0 :         goto invalid_data;
    8489         [ -  + ]:         12 :       if (offset_len == 8)
    8490         [ #  # ]:          0 :         val = read_8ubyte_unaligned_inc (dbg, readp);
    8491                 :            :       else
    8492         [ -  + ]:         12 :         val = read_4ubyte_unaligned_inc (dbg, readp);
    8493         [ -  + ]:         12 :       if (form == DW_FORM_strp)
    8494                 :          0 :         data = dbg->sectiondata[IDX_debug_str];
    8495         [ +  - ]:         12 :       else if (form == DW_FORM_line_strp)
    8496                 :         12 :         data = dbg->sectiondata[IDX_debug_line_str];
    8497                 :            :       else /* form == DW_FORM_strp_sup */
    8498                 :            :         {
    8499                 :          0 :           Dwarf *alt = dwarf_getalt (dbg);
    8500         [ #  # ]:          0 :           data = alt != NULL ? alt->sectiondata[IDX_debug_str] : NULL;
    8501                 :            :         }
    8502   [ +  -  +  - ]:         12 :       if (data == NULL || val >= data->d_size
    8503         [ +  - ]:         12 :           || memchr (data->d_buf + val, '\0', data->d_size - val) == NULL)
    8504                 :            :         str = "???";
    8505                 :            :       else
    8506                 :         12 :         str = (char *) data->d_buf + val;
    8507                 :         12 :       printf ("%s (%" PRIu64 ")", str, val);
    8508                 :            :       break;
    8509                 :            : 
    8510                 :          0 :     case DW_FORM_sec_offset:
    8511         [ #  # ]:          0 :       if ((size_t) (readendp - readp) < offset_len)
    8512                 :          0 :         goto invalid_data;
    8513         [ #  # ]:          0 :       if (offset_len == 8)
    8514         [ #  # ]:          0 :         val = read_8ubyte_unaligned_inc (dbg, readp);
    8515                 :            :       else
    8516         [ #  # ]:          0 :         val = read_4ubyte_unaligned_inc (dbg, readp);
    8517                 :          0 :       printf ("[%" PRIx64 "]", val);
    8518                 :            :       break;
    8519                 :            : 
    8520                 :          0 :     case DW_FORM_strx:
    8521                 :            :     case DW_FORM_GNU_str_index:
    8522         [ #  # ]:          0 :       if (readendp - readp < 1)
    8523                 :          0 :         goto invalid_data;
    8524                 :          0 :       get_uleb128 (val, readp, readendp);
    8525                 :          0 :     strx_val:
    8526                 :          0 :       data = dbg->sectiondata[IDX_debug_str_offsets];
    8527         [ #  # ]:          0 :       if (data == NULL
    8528         [ #  # ]:          0 :           || data->d_size - str_offsets_base < val)
    8529                 :            :         str = "???";
    8530                 :            :       else
    8531                 :            :         {
    8532                 :          0 :           const unsigned char *strreadp = data->d_buf + str_offsets_base + val;
    8533                 :          0 :           const unsigned char *strreadendp = data->d_buf + data->d_size;
    8534         [ #  # ]:          0 :           if ((size_t) (strreadendp - strreadp) < offset_len)
    8535                 :            :             str = "???";
    8536                 :            :           else
    8537                 :            :             {
    8538                 :          0 :               Dwarf_Off idx;
    8539         [ #  # ]:          0 :               if (offset_len == 8)
    8540         [ #  # ]:          0 :                 idx = read_8ubyte_unaligned (dbg, strreadp);
    8541                 :            :               else
    8542         [ #  # ]:          0 :                 idx = read_4ubyte_unaligned (dbg, strreadp);
    8543                 :            : 
    8544                 :          0 :               data = dbg->sectiondata[IDX_debug_str];
    8545   [ #  #  #  # ]:          0 :               if (data == NULL || idx >= data->d_size
    8546         [ #  # ]:          0 :                   || memchr (data->d_buf + idx, '\0',
    8547                 :            :                              data->d_size - idx) == NULL)
    8548                 :            :                 str = "???";
    8549                 :            :               else
    8550                 :          0 :                 str = (char *) data->d_buf + idx;
    8551                 :            :             }
    8552                 :            :         }
    8553                 :          0 :       printf ("%s (%" PRIu64 ")", str, val);
    8554                 :            :       break;
    8555                 :            : 
    8556                 :          0 :     case DW_FORM_strx1:
    8557         [ #  # ]:          0 :       if (readendp - readp < 1)
    8558                 :          0 :         goto invalid_data;
    8559                 :          0 :       val = *readp++;
    8560                 :          0 :       goto strx_val;
    8561                 :            : 
    8562                 :          0 :     case DW_FORM_strx2:
    8563         [ #  # ]:          0 :       if (readendp - readp < 2)
    8564                 :          0 :         goto invalid_data;
    8565         [ #  # ]:          0 :       val = read_2ubyte_unaligned_inc (dbg, readp);
    8566                 :          0 :       goto strx_val;
    8567                 :            : 
    8568                 :          0 :     case DW_FORM_strx3:
    8569         [ #  # ]:          0 :       if (readendp - readp < 3)
    8570                 :          0 :         goto invalid_data;
    8571                 :          0 :       val = read_3ubyte_unaligned_inc (dbg, readp);
    8572                 :          0 :       goto strx_val;
    8573                 :            : 
    8574                 :          0 :     case DW_FORM_strx4:
    8575         [ #  # ]:          0 :       if (readendp - readp < 4)
    8576                 :          0 :         goto invalid_data;
    8577         [ #  # ]:          0 :       val = read_4ubyte_unaligned_inc (dbg, readp);
    8578                 :          0 :       goto strx_val;
    8579                 :            : 
    8580                 :          0 :     default:
    8581                 :          0 :       error (0, 0, _("unknown form: %s"), dwarf_form_name (form));
    8582                 :          0 :       return readendp;
    8583                 :            :     }
    8584                 :            : 
    8585                 :         20 :   return readp;
    8586                 :            : }
    8587                 :            : 
    8588                 :            : /* Only used via run_advance_pc() macro */
    8589                 :            : static inline void
    8590                 :     359130 : run_advance_pc (unsigned int op_advance,
    8591                 :            :                 unsigned int minimum_instr_len,
    8592                 :            :                 unsigned int max_ops_per_instr,
    8593                 :            :                 unsigned int *op_addr_advance,
    8594                 :            :                 Dwarf_Word *address,
    8595                 :            :                 unsigned int *op_index)
    8596                 :            : {
    8597                 :     359130 :   const unsigned int advanced_op_index = (*op_index) + op_advance;
    8598                 :            : 
    8599                 :     359130 :   *op_addr_advance = minimum_instr_len * (advanced_op_index
    8600                 :     359130 :                                          / max_ops_per_instr);
    8601                 :     359130 :   *address = *address + *op_addr_advance;
    8602                 :     359130 :   *op_index = advanced_op_index % max_ops_per_instr;
    8603                 :            : }
    8604                 :            : 
    8605                 :            : static void
    8606                 :         89 : print_debug_line_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr,
    8607                 :            :                           Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
    8608                 :            : {
    8609         [ +  + ]:         89 :   if (decodedline)
    8610                 :            :     {
    8611                 :         39 :       print_decoded_line_section (dwflmod, ebl, ehdr, scn, shdr, dbg);
    8612                 :         78 :       return;
    8613                 :            :     }
    8614                 :            : 
    8615                 :         50 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_line, scn);
    8616         [ +  - ]:         50 :   if (data == NULL)
    8617                 :            :     return;
    8618                 :            : 
    8619                 :         50 :   printf (_("\
    8620                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    8621                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    8622                 :         50 :           (uint64_t) shdr->sh_offset);
    8623                 :            : 
    8624         [ +  - ]:         50 :   if (shdr->sh_size == 0)
    8625                 :            :     return;
    8626                 :            : 
    8627                 :            :   /* There is no functionality in libdw to read the information in the
    8628                 :            :      way it is represented here.  Hardcode the decoder.  */
    8629                 :            : 
    8630                 :         50 :   const unsigned char *linep = (const unsigned char *) data->d_buf;
    8631                 :         50 :   const unsigned char *lineendp;
    8632                 :            : 
    8633                 :         50 :   while (linep
    8634         [ +  + ]:       1730 :          < (lineendp = (const unsigned char *) data->d_buf + data->d_size))
    8635                 :            :     {
    8636                 :       1680 :       size_t start_offset = linep - (const unsigned char *) data->d_buf;
    8637                 :            : 
    8638                 :       1680 :       printf (_("\nTable at offset %zu:\n"), start_offset);
    8639                 :            : 
    8640         [ -  + ]:       1680 :       if (unlikely (linep + 4 > lineendp))
    8641                 :          0 :         goto invalid_data;
    8642         [ +  + ]:       1680 :       Dwarf_Word unit_length = read_4ubyte_unaligned_inc (dbg, linep);
    8643                 :       1680 :       unsigned int length = 4;
    8644         [ -  + ]:       1680 :       if (unlikely (unit_length == 0xffffffff))
    8645                 :            :         {
    8646         [ #  # ]:          0 :           if (unlikely (linep + 8 > lineendp))
    8647                 :            :             {
    8648                 :          0 :             invalid_data:
    8649                 :          0 :               error (0, 0, _("invalid data in section [%zu] '%s'"),
    8650                 :            :                      elf_ndxscn (scn), section_name (ebl, shdr));
    8651                 :          0 :               return;
    8652                 :            :             }
    8653         [ #  # ]:          0 :           unit_length = read_8ubyte_unaligned_inc (dbg, linep);
    8654                 :          0 :           length = 8;
    8655                 :            :         }
    8656                 :            : 
    8657                 :            :       /* Check whether we have enough room in the section.  */
    8658         [ -  + ]:       1680 :       if (unlikely (unit_length > (size_t) (lineendp - linep)))
    8659                 :          0 :         goto invalid_data;
    8660                 :       1680 :       lineendp = linep + unit_length;
    8661                 :            : 
    8662                 :            :       /* The next element of the header is the version identifier.  */
    8663         [ -  + ]:       1680 :       if ((size_t) (lineendp - linep) < 2)
    8664                 :          0 :         goto invalid_data;
    8665         [ +  + ]:       1680 :       uint_fast16_t version = read_2ubyte_unaligned_inc (dbg, linep);
    8666                 :            : 
    8667                 :       3360 :       size_t address_size
    8668         [ +  + ]:       1680 :         = elf_getident (ebl->elf, NULL)[EI_CLASS] == ELFCLASS32 ? 4 : 8;
    8669                 :       1680 :       unsigned char segment_selector_size = 0;
    8670         [ +  + ]:       1680 :       if (version > 4)
    8671                 :            :         {
    8672         [ -  + ]:          2 :           if ((size_t) (lineendp - linep) < 2)
    8673                 :          0 :             goto invalid_data;
    8674                 :          2 :           address_size = *linep++;
    8675                 :          2 :           segment_selector_size = *linep++;
    8676                 :            :         }
    8677                 :            : 
    8678                 :            :       /* Next comes the header length.  */
    8679                 :       1680 :       Dwarf_Word header_length;
    8680         [ +  - ]:       1680 :       if (length == 4)
    8681                 :            :         {
    8682         [ -  + ]:       1680 :           if ((size_t) (lineendp - linep) < 4)
    8683                 :          0 :             goto invalid_data;
    8684         [ +  + ]:       1680 :           header_length = read_4ubyte_unaligned_inc (dbg, linep);
    8685                 :            :         }
    8686                 :            :       else
    8687                 :            :         {
    8688         [ #  # ]:          0 :           if ((size_t) (lineendp - linep) < 8)
    8689                 :          0 :             goto invalid_data;
    8690         [ #  # ]:          0 :           header_length = read_8ubyte_unaligned_inc (dbg, linep);
    8691                 :            :         }
    8692                 :            : 
    8693                 :       1680 :       const unsigned char *header_start = linep;
    8694                 :            : 
    8695                 :            :       /* Next the minimum instruction length.  */
    8696         [ -  + ]:       1680 :       if ((size_t) (lineendp - linep) < 1)
    8697                 :          0 :         goto invalid_data;
    8698                 :       1680 :       uint_fast8_t minimum_instr_len = *linep++;
    8699                 :            : 
    8700                 :            :       /* Next the maximum operations per instruction, in version 4 format.  */
    8701                 :       1680 :       uint_fast8_t max_ops_per_instr;
    8702         [ +  + ]:       1680 :       if (version < 4)
    8703                 :            :         max_ops_per_instr = 1;
    8704                 :            :       else
    8705                 :            :         {
    8706         [ -  + ]:         10 :           if ((size_t) (lineendp - linep) < 1)
    8707                 :          0 :             goto invalid_data;
    8708                 :         10 :           max_ops_per_instr = *linep++;
    8709                 :            :         }
    8710                 :            : 
    8711                 :            :       /* We need at least 4 more bytes.  */
    8712         [ -  + ]:       1680 :       if ((size_t) (lineendp - linep) < 4)
    8713                 :          0 :         goto invalid_data;
    8714                 :            : 
    8715                 :            :       /* Then the flag determining the default value of the is_stmt
    8716                 :            :          register.  */
    8717                 :       1680 :       uint_fast8_t default_is_stmt = *linep++;
    8718                 :            : 
    8719                 :            :       /* Now the line base.  */
    8720                 :       1680 :       int_fast8_t line_base = *linep++;
    8721                 :            : 
    8722                 :            :       /* And the line range.  */
    8723                 :       1680 :       uint_fast8_t line_range = *linep++;
    8724                 :            : 
    8725                 :            :       /* The opcode base.  */
    8726                 :       1680 :       uint_fast8_t opcode_base = *linep++;
    8727                 :            : 
    8728                 :            :       /* Print what we got so far.  */
    8729                 :       1680 :       printf (_("\n"
    8730                 :            :                        " Length:                         %" PRIu64 "\n"
    8731                 :            :                        " DWARF version:                  %" PRIuFAST16 "\n"
    8732                 :            :                        " Prologue length:                %" PRIu64 "\n"
    8733                 :            :                        " Address size:                   %zd\n"
    8734                 :            :                        " Segment selector size:          %zd\n"
    8735                 :            :                        " Min instruction length:         %" PRIuFAST8 "\n"
    8736                 :            :                        " Max operations per instruction: %" PRIuFAST8 "\n"
    8737                 :            :                        " Initial value if 'is_stmt':     %" PRIuFAST8 "\n"
    8738                 :            :                        " Line base:                      %" PRIdFAST8 "\n"
    8739                 :            :                        " Line range:                     %" PRIuFAST8 "\n"
    8740                 :            :                        " Opcode base:                    %" PRIuFAST8 "\n"
    8741                 :            :                        "\n"
    8742                 :            :                        "Opcodes:\n"),
    8743                 :            :               (uint64_t) unit_length, version, (uint64_t) header_length,
    8744                 :            :               address_size, (size_t) segment_selector_size,
    8745                 :            :               minimum_instr_len, max_ops_per_instr,
    8746                 :            :               default_is_stmt, line_base,
    8747                 :            :               line_range, opcode_base);
    8748                 :            : 
    8749         [ -  + ]:       1680 :       if (version < 2 || version > 5)
    8750                 :            :         {
    8751                 :          0 :           error (0, 0, _("cannot handle .debug_line version: %u\n"),
    8752                 :            :                  (unsigned int) version);
    8753                 :          0 :           linep = lineendp;
    8754                 :          0 :           continue;
    8755                 :            :         }
    8756                 :            : 
    8757         [ -  + ]:       1680 :       if (address_size != 4 && address_size != 8)
    8758                 :            :         {
    8759                 :          0 :           error (0, 0, _("cannot handle address size: %u\n"),
    8760                 :            :                  (unsigned int) address_size);
    8761                 :          0 :           linep = lineendp;
    8762                 :          0 :           continue;
    8763                 :            :         }
    8764                 :            : 
    8765         [ -  + ]:       1680 :       if (segment_selector_size != 0)
    8766                 :            :         {
    8767                 :          0 :           error (0, 0, _("cannot handle segment selector size: %u\n"),
    8768                 :            :                  (unsigned int) segment_selector_size);
    8769                 :          0 :           linep = lineendp;
    8770                 :          0 :           continue;
    8771                 :            :         }
    8772                 :            : 
    8773         [ -  + ]:       1680 :       if (unlikely (linep + opcode_base - 1 >= lineendp))
    8774                 :            :         {
    8775                 :          0 :         invalid_unit:
    8776                 :          0 :           error (0, 0,
    8777                 :          0 :                  _("invalid data at offset %tu in section [%zu] '%s'"),
    8778                 :          0 :                  linep - (const unsigned char *) data->d_buf,
    8779                 :            :                  elf_ndxscn (scn), section_name (ebl, shdr));
    8780                 :          0 :           linep = lineendp;
    8781                 :          0 :           continue;
    8782                 :            :         }
    8783                 :       1680 :       int opcode_base_l10 = 1;
    8784                 :       1680 :       unsigned int tmp = opcode_base;
    8785         [ +  + ]:       3357 :       while (tmp > 10)
    8786                 :            :         {
    8787                 :       1677 :           tmp /= 10;
    8788                 :       1677 :           ++opcode_base_l10;
    8789                 :            :         }
    8790                 :       1680 :       const uint8_t *standard_opcode_lengths = linep - 1;
    8791         [ +  + ]:      21831 :       for (uint_fast8_t cnt = 1; cnt < opcode_base; ++cnt)
    8792                 :      20151 :         printf (ngettext ("  [%*" PRIuFAST8 "]  %hhu argument\n",
    8793                 :            :                           "  [%*" PRIuFAST8 "]  %hhu arguments\n",
    8794                 :            :                           (int) linep[cnt - 1]),
    8795                 :      20151 :                 opcode_base_l10, cnt, linep[cnt - 1]);
    8796                 :       1680 :       linep += opcode_base - 1;
    8797                 :            : 
    8798         [ -  + ]:       1680 :       if (unlikely (linep >= lineendp))
    8799                 :          0 :         goto invalid_unit;
    8800                 :            : 
    8801                 :       1680 :       Dwarf_Off str_offsets_base = str_offsets_base_off (dbg, NULL);
    8802                 :            : 
    8803                 :       1680 :       puts (_("\nDirectory table:"));
    8804         [ +  + ]:       1680 :       if (version > 4)
    8805                 :            :         {
    8806                 :          2 :           struct encpair { uint16_t desc; uint16_t form; };
    8807                 :          2 :           struct encpair enc[256];
    8808                 :            : 
    8809                 :          2 :           printf (_("      ["));
    8810         [ -  + ]:          2 :           if ((size_t) (lineendp - linep) < 1)
    8811                 :          0 :             goto invalid_data;
    8812                 :          2 :           unsigned char directory_entry_format_count = *linep++;
    8813                 :          2 :           for (int i = 0; i < directory_entry_format_count; i++)
    8814                 :            :             {
    8815                 :          2 :               uint16_t desc, form;
    8816         [ -  + ]:          2 :               if ((size_t) (lineendp - linep) < 1)
    8817                 :          0 :                 goto invalid_data;
    8818                 :          2 :               get_uleb128 (desc, linep, lineendp);
    8819         [ -  + ]:          2 :               if ((size_t) (lineendp - linep) < 1)
    8820                 :          0 :                 goto invalid_data;
    8821                 :          2 :               get_uleb128 (form, linep, lineendp);
    8822                 :            : 
    8823                 :          2 :               enc[i].desc = desc;
    8824                 :          2 :               enc[i].form = form;
    8825                 :            : 
    8826                 :          2 :               printf ("%s(%s)",
    8827                 :            :                       dwarf_line_content_description_name (desc),
    8828                 :            :                       dwarf_form_name (form));
    8829         [ -  + ]:          2 :               if (i + 1 < directory_entry_format_count)
    8830         [ +  + ]:          4 :                 printf (", ");
    8831                 :            :             }
    8832                 :          2 :           printf ("]\n");
    8833                 :            : 
    8834                 :          2 :           uint64_t directories_count;
    8835         [ -  + ]:          2 :           if ((size_t) (lineendp - linep) < 1)
    8836                 :          0 :             goto invalid_data;
    8837                 :          2 :           get_uleb128 (directories_count, linep, lineendp);
    8838                 :            : 
    8839                 :          2 :           if (directory_entry_format_count == 0
    8840         [ -  + ]:          2 :               && directories_count != 0)
    8841                 :          0 :             goto invalid_data;
    8842                 :            : 
    8843         [ +  + ]:          6 :           for (uint64_t i = 0; i < directories_count; i++)
    8844                 :            :             {
    8845                 :          4 :               printf (" %-5" PRIu64 " ", i);
    8846                 :          4 :               for (int j = 0; j < directory_entry_format_count; j++)
    8847                 :            :                 {
    8848                 :          4 :                   linep = print_form_data (dbg, enc[j].form,
    8849                 :            :                                            linep, lineendp, length,
    8850                 :            :                                            str_offsets_base);
    8851         [ -  + ]:          4 :                   if (j + 1 < directory_entry_format_count)
    8852         [ +  + ]:          8 :                     printf (", ");
    8853                 :            :                 }
    8854                 :          4 :               printf ("\n");
    8855         [ -  + ]:          4 :               if (linep >= lineendp)
    8856                 :          0 :                 goto invalid_unit;
    8857                 :            :             }
    8858                 :            :         }
    8859                 :            :       else
    8860                 :            :         {
    8861   [ +  -  +  + ]:      12226 :           while (linep < lineendp && *linep != 0)
    8862                 :            :             {
    8863                 :      10548 :               unsigned char *endp = memchr (linep, '\0', lineendp - linep);
    8864         [ -  + ]:      10548 :               if (unlikely (endp == NULL))
    8865                 :          0 :                 goto invalid_unit;
    8866                 :            : 
    8867                 :      10548 :               printf (" %s\n", (char *) linep);
    8868                 :            : 
    8869                 :      10548 :               linep = endp + 1;
    8870                 :            :             }
    8871   [ +  -  -  + ]:       1678 :           if (linep >= lineendp || *linep != 0)
    8872                 :          0 :             goto invalid_unit;
    8873                 :            :           /* Skip the final NUL byte.  */
    8874                 :       1678 :           ++linep;
    8875                 :            :         }
    8876                 :            : 
    8877         [ -  + ]:       1680 :       if (unlikely (linep >= lineendp))
    8878                 :          0 :         goto invalid_unit;
    8879                 :            : 
    8880                 :       1680 :       puts (_("\nFile name table:"));
    8881         [ +  + ]:       1680 :       if (version > 4)
    8882                 :            :         {
    8883                 :          2 :           struct encpair { uint16_t desc; uint16_t form; };
    8884                 :          2 :           struct encpair enc[256];
    8885                 :            : 
    8886                 :          2 :           printf (_("      ["));
    8887         [ -  + ]:          2 :           if ((size_t) (lineendp - linep) < 1)
    8888                 :          0 :             goto invalid_data;
    8889                 :          2 :           unsigned char file_name_format_count = *linep++;
    8890                 :          2 :           for (int i = 0; i < file_name_format_count; i++)
    8891                 :            :             {
    8892                 :          4 :               uint64_t desc, form;
    8893         [ -  + ]:          4 :               if ((size_t) (lineendp - linep) < 1)
    8894                 :          0 :                 goto invalid_data;
    8895                 :          4 :               get_uleb128 (desc, linep, lineendp);
    8896         [ -  + ]:          4 :               if ((size_t) (lineendp - linep) < 1)
    8897                 :          0 :                 goto invalid_data;
    8898                 :          4 :               get_uleb128 (form, linep, lineendp);
    8899                 :            : 
    8900         [ -  + ]:          4 :               if (! libdw_valid_user_form (form))
    8901                 :          0 :                 goto invalid_data;
    8902                 :            : 
    8903                 :          4 :               enc[i].desc = desc;
    8904                 :          4 :               enc[i].form = form;
    8905                 :            : 
    8906                 :          4 :               printf ("%s(%s)",
    8907                 :            :                       dwarf_line_content_description_name (desc),
    8908                 :            :                       dwarf_form_name (form));
    8909         [ +  + ]:          4 :               if (i + 1 < file_name_format_count)
    8910         [ +  + ]:          8 :                 printf (", ");
    8911                 :            :             }
    8912                 :          2 :           printf ("]\n");
    8913                 :            : 
    8914                 :          2 :           uint64_t file_name_count;
    8915         [ -  + ]:          2 :           if ((size_t) (lineendp - linep) < 1)
    8916                 :          0 :             goto invalid_data;
    8917                 :          2 :           get_uleb128 (file_name_count, linep, lineendp);
    8918                 :            : 
    8919                 :          2 :           if (file_name_format_count == 0
    8920         [ -  + ]:          2 :               && file_name_count != 0)
    8921                 :          0 :             goto invalid_data;
    8922                 :            : 
    8923         [ +  + ]:         10 :           for (uint64_t i = 0; i < file_name_count; i++)
    8924                 :            :             {
    8925                 :          8 :               printf (" %-5" PRIu64 " ", i);
    8926                 :          8 :               for (int j = 0; j < file_name_format_count; j++)
    8927                 :            :                 {
    8928                 :         16 :                   linep = print_form_data (dbg, enc[j].form,
    8929                 :            :                                            linep, lineendp, length,
    8930                 :            :                                            str_offsets_base);
    8931         [ +  + ]:         16 :                   if (j + 1 < file_name_format_count)
    8932         [ +  + ]:         32 :                     printf (", ");
    8933                 :            :                 }
    8934                 :          8 :               printf ("\n");
    8935         [ -  + ]:          8 :               if (linep > lineendp)
    8936                 :          0 :                 goto invalid_unit;
    8937                 :            :             }
    8938                 :            :         }
    8939                 :            :       else
    8940                 :            :         {
    8941                 :       1678 :           puts (_(" Entry Dir   Time      Size      Name"));
    8942   [ +  -  +  + ]:      28276 :           for (unsigned int cnt = 1; linep < lineendp && *linep != 0; ++cnt)
    8943                 :            :             {
    8944                 :            :               /* First comes the file name.  */
    8945                 :      26598 :               char *fname = (char *) linep;
    8946                 :      26598 :               unsigned char *endp = memchr (fname, '\0', lineendp - linep);
    8947         [ -  + ]:      26598 :               if (unlikely (endp == NULL))
    8948                 :          0 :                 goto invalid_unit;
    8949                 :      26598 :               linep = endp + 1;
    8950                 :            : 
    8951                 :            :               /* Then the index.  */
    8952                 :      26598 :               unsigned int diridx;
    8953         [ -  + ]:      26598 :               if (lineendp - linep < 1)
    8954                 :          0 :                 goto invalid_unit;
    8955                 :      26598 :               get_uleb128 (diridx, linep, lineendp);
    8956                 :            : 
    8957                 :            :               /* Next comes the modification time.  */
    8958                 :      26598 :               unsigned int mtime;
    8959         [ -  + ]:      26598 :               if (lineendp - linep < 1)
    8960                 :          0 :                 goto invalid_unit;
    8961                 :      26598 :               get_uleb128 (mtime, linep, lineendp);
    8962                 :            : 
    8963                 :            :               /* Finally the length of the file.  */
    8964                 :      26598 :               unsigned int fsize;
    8965         [ -  + ]:      26598 :               if (lineendp - linep < 1)
    8966                 :          0 :                 goto invalid_unit;
    8967                 :      26598 :               get_uleb128 (fsize, linep, lineendp);
    8968                 :            : 
    8969                 :      26598 :               printf (" %-5u %-5u %-9u %-9u %s\n",
    8970                 :            :                       cnt, diridx, mtime, fsize, fname);
    8971                 :            :             }
    8972   [ +  -  -  + ]:       1678 :           if (linep >= lineendp || *linep != '\0')
    8973                 :          0 :             goto invalid_unit;
    8974                 :            :           /* Skip the final NUL byte.  */
    8975                 :       1678 :           ++linep;
    8976                 :            :         }
    8977                 :            : 
    8978                 :       1680 :       unsigned int debug_str_offset = 0;
    8979         [ +  + ]:       1680 :       if (unlikely (linep == header_start + header_length - 4))
    8980                 :            :         {
    8981                 :            :           /* CUBINs contain an unsigned 4-byte offset */
    8982         [ -  + ]:          1 :           debug_str_offset = read_4ubyte_unaligned_inc (dbg, linep);
    8983                 :            :         }
    8984                 :            : 
    8985         [ +  + ]:       1680 :       if (linep == lineendp)
    8986                 :            :         {
    8987                 :         18 :           puts (_("\nNo line number statements."));
    8988                 :         18 :           continue;
    8989                 :            :         }
    8990                 :            : 
    8991                 :       1662 :       puts (_("\nLine number statements:"));
    8992                 :       1662 :       Dwarf_Word address = 0;
    8993                 :       1662 :       unsigned int op_index = 0;
    8994                 :       1662 :       size_t line = 1;
    8995                 :       1662 :       uint_fast8_t is_stmt = default_is_stmt;
    8996                 :            : 
    8997                 :            :       /* Apply the "operation advance" from a special opcode
    8998                 :            :          or DW_LNS_advance_pc (as per DWARF4 6.2.5.1).  */
    8999                 :       1662 :       unsigned int op_addr_advance;
    9000                 :            : #define advance_pc(op_advance) run_advance_pc(op_advance, minimum_instr_len, \
    9001                 :            :                       max_ops_per_instr, &op_addr_advance, &address, &op_index)
    9002                 :            : 
    9003         [ -  + ]:       1662 :       if (max_ops_per_instr == 0)
    9004                 :            :         {
    9005                 :          0 :           error (0, 0,
    9006                 :          0 :                  _("invalid maximum operations per instruction is zero"));
    9007                 :          0 :           linep = lineendp;
    9008                 :          0 :           continue;
    9009                 :            :         }
    9010                 :            : 
    9011                 :    1137881 :       while (linep < lineendp)
    9012                 :            :         {
    9013                 :    1136219 :           size_t offset = linep - (const unsigned char *) data->d_buf;
    9014                 :    1136219 :           unsigned int u128;
    9015                 :    1136219 :           int s128;
    9016                 :            : 
    9017                 :            :           /* Read the opcode.  */
    9018                 :    1136219 :           unsigned int opcode = *linep++;
    9019                 :            : 
    9020                 :    1136219 :           printf (" [%6" PRIx64 "]", (uint64_t)offset);
    9021                 :            :           /* Is this a special opcode?  */
    9022         [ +  + ]:    1136219 :           if (likely (opcode >= opcode_base))
    9023                 :            :             {
    9024         [ -  + ]:     330404 :               if (unlikely (line_range == 0))
    9025                 :          0 :                 goto invalid_unit;
    9026                 :            : 
    9027                 :            :               /* Yes.  Handling this is quite easy since the opcode value
    9028                 :            :                  is computed with
    9029                 :            : 
    9030                 :            :                  opcode = (desired line increment - line_base)
    9031                 :            :                            + (line_range * address advance) + opcode_base
    9032                 :            :               */
    9033                 :     330404 :               int line_increment = (line_base
    9034                 :     330404 :                                     + (opcode - opcode_base) % line_range);
    9035                 :            : 
    9036                 :            :               /* Perform the increments.  */
    9037                 :     330404 :               line += line_increment;
    9038                 :     330404 :               advance_pc ((opcode - opcode_base) / line_range);
    9039                 :            : 
    9040                 :     330404 :               printf (_(" special opcode %u: address+%u = "),
    9041                 :            :                       opcode, op_addr_advance);
    9042                 :     330404 :               print_dwarf_addr (dwflmod, 0, address, address);
    9043         [ -  + ]:     330404 :               if (op_index > 0)
    9044                 :          0 :                 printf (_(", op_index = %u, line%+d = %zu\n"),
    9045                 :            :                         op_index, line_increment, line);
    9046                 :            :               else
    9047                 :     330404 :                 printf (_(", line%+d = %zu\n"),
    9048                 :            :                         line_increment, line);
    9049                 :            :             }
    9050         [ +  + ]:     805815 :           else if (opcode == 0)
    9051                 :            :             {
    9052                 :            :               /* This an extended opcode.  */
    9053         [ -  + ]:      56264 :               if (unlikely (linep + 2 > lineendp))
    9054                 :          0 :                 goto invalid_unit;
    9055                 :            : 
    9056                 :            :               /* The length.  */
    9057                 :      56264 :               unsigned int len = *linep++;
    9058                 :            : 
    9059         [ -  + ]:      56264 :               if (unlikely (linep + len > lineendp))
    9060                 :          0 :                 goto invalid_unit;
    9061                 :            : 
    9062                 :            :               /* The sub-opcode.  */
    9063                 :      56264 :               opcode = *linep++;
    9064                 :            : 
    9065                 :      56264 :               printf (_(" extended opcode %u: "), opcode);
    9066                 :            : 
    9067   [ +  +  -  +  :      56264 :               switch (opcode)
                +  -  - ]
    9068                 :            :                 {
    9069                 :       1723 :                 case DW_LNE_end_sequence:
    9070                 :       1723 :                   puts (_(" end of sequence"));
    9071                 :            : 
    9072                 :            :                   /* Reset the registers we care about.  */
    9073                 :       1723 :                   address = 0;
    9074                 :       1723 :                   op_index = 0;
    9075                 :       1723 :                   line = 1;
    9076                 :       1723 :                   is_stmt = default_is_stmt;
    9077                 :       1723 :                   break;
    9078                 :            : 
    9079                 :       2298 :                 case DW_LNE_set_address:
    9080                 :       2298 :                   op_index = 0;
    9081         [ -  + ]:       2298 :                   if (unlikely ((size_t) (lineendp - linep) < address_size))
    9082                 :          0 :                     goto invalid_unit;
    9083         [ +  + ]:       2298 :                   if (address_size == 4)
    9084         [ +  + ]:         21 :                     address = read_4ubyte_unaligned_inc (dbg, linep);
    9085                 :            :                   else
    9086         [ +  + ]:       2277 :                     address = read_8ubyte_unaligned_inc (dbg, linep);
    9087                 :            :                   {
    9088                 :       2298 :                     printf (_(" set address to "));
    9089                 :       2298 :                     print_dwarf_addr (dwflmod, 0, address, address);
    9090                 :       2298 :                     printf ("\n");
    9091                 :            :                   }
    9092                 :            :                   break;
    9093                 :            : 
    9094                 :          0 :                 case DW_LNE_define_file:
    9095                 :            :                   {
    9096                 :          0 :                     char *fname = (char *) linep;
    9097                 :          0 :                     unsigned char *endp = memchr (linep, '\0',
    9098                 :          0 :                                                   lineendp - linep);
    9099         [ #  # ]:          0 :                     if (unlikely (endp == NULL))
    9100                 :          0 :                       goto invalid_unit;
    9101                 :          0 :                     linep = endp + 1;
    9102                 :            : 
    9103                 :          0 :                     unsigned int diridx;
    9104         [ #  # ]:          0 :                     if (lineendp - linep < 1)
    9105                 :          0 :                       goto invalid_unit;
    9106                 :          0 :                     get_uleb128 (diridx, linep, lineendp);
    9107                 :          0 :                     Dwarf_Word mtime;
    9108         [ #  # ]:          0 :                     if (lineendp - linep < 1)
    9109                 :          0 :                       goto invalid_unit;
    9110                 :          0 :                     get_uleb128 (mtime, linep, lineendp);
    9111                 :          0 :                     Dwarf_Word filelength;
    9112         [ #  # ]:          0 :                     if (lineendp - linep < 1)
    9113                 :          0 :                       goto invalid_unit;
    9114                 :          0 :                     get_uleb128 (filelength, linep, lineendp);
    9115                 :            : 
    9116                 :          0 :                     printf (_("\
    9117                 :            :  define new file: dir=%u, mtime=%" PRIu64 ", length=%" PRIu64 ", name=%s\n"),
    9118                 :            :                             diridx, (uint64_t) mtime, (uint64_t) filelength,
    9119                 :            :                             fname);
    9120                 :            :                   }
    9121                 :            :                   break;
    9122                 :            : 
    9123                 :      52236 :                 case DW_LNE_set_discriminator:
    9124                 :            :                   /* Takes one ULEB128 parameter, the discriminator.  */
    9125   [ +  -  -  + ]:      52236 :                   if (unlikely (standard_opcode_lengths[opcode] != 1
    9126                 :            :                                 || lineendp - linep < 1))
    9127                 :          0 :                     goto invalid_unit;
    9128                 :            : 
    9129                 :      52236 :                   get_uleb128 (u128, linep, lineendp);
    9130                 :      52236 :                   printf (_(" set discriminator to %u\n"), u128);
    9131                 :            :                   break;
    9132                 :            : 
    9133                 :          7 :                 case DW_LNE_NVIDIA_inlined_call:
    9134                 :            :                   {
    9135         [ -  + ]:          7 :                     if (unlikely (linep >= lineendp))
    9136                 :          0 :                       goto invalid_data;
    9137                 :            : 
    9138                 :          7 :                     unsigned int context;
    9139                 :          7 :                     get_uleb128 (context, linep, lineendp);
    9140                 :            : 
    9141         [ -  + ]:          7 :                     if (unlikely (linep >= lineendp))
    9142                 :          0 :                       goto invalid_data;
    9143                 :            : 
    9144                 :          7 :                     unsigned int function_name;
    9145                 :          7 :                     get_uleb128 (function_name, linep, lineendp);
    9146                 :          7 :                     function_name += debug_str_offset;
    9147                 :            : 
    9148                 :          7 :                     Elf_Data *str_data = dbg->sectiondata[IDX_debug_str];
    9149                 :          7 :                     char *function_str;
    9150   [ +  -  +  - ]:          7 :                     if (str_data == NULL || function_name >= str_data->d_size
    9151         [ +  - ]:          7 :                         || memchr (str_data->d_buf + function_name, '\0',
    9152                 :            :                                    str_data->d_size - function_name) == NULL)
    9153                 :            :                       function_str = "???";
    9154                 :            :                     else
    9155                 :          7 :                       function_str = (char *) str_data->d_buf + function_name;
    9156                 :            : 
    9157                 :          7 :                     printf (_(" set inlined context %u,"
    9158                 :            :                               " function name %s (0x%x)\n"),
    9159                 :            :                             context, function_str, function_name);
    9160                 :            :                     break;
    9161                 :            :                   }
    9162                 :            : 
    9163                 :          0 :                 case DW_LNE_NVIDIA_set_function_name:
    9164                 :            :                   {
    9165         [ #  # ]:          0 :                     if (unlikely (linep >= lineendp))
    9166                 :          0 :                       goto invalid_data;
    9167                 :            : 
    9168                 :          0 :                     unsigned int function_name;
    9169                 :          0 :                     get_uleb128 (function_name, linep, lineendp);
    9170                 :          0 :                     function_name += debug_str_offset;
    9171                 :            : 
    9172                 :          0 :                     Elf_Data *str_data = dbg->sectiondata[IDX_debug_str];
    9173                 :          0 :                     char *function_str;
    9174   [ #  #  #  # ]:          0 :                     if (str_data == NULL || function_name >= str_data->d_size
    9175         [ #  # ]:          0 :                         || memchr (str_data->d_buf + function_name, '\0',
    9176                 :            :                                    str_data->d_size - function_name) == NULL)
    9177                 :            :                       function_str = "???";
    9178                 :            :                     else
    9179                 :          0 :                       function_str = (char *) str_data->d_buf + function_name;
    9180                 :            : 
    9181                 :          0 :                     printf (_(" set function name %s (0x%x)\n"),
    9182                 :            :                             function_str, function_name);
    9183                 :            :                   }
    9184                 :            :                   break;
    9185                 :            : 
    9186                 :          0 :                 default:
    9187                 :            :                   /* Unknown, ignore it.  */
    9188                 :          0 :                   puts (_(" unknown opcode"));
    9189                 :          0 :                   linep += len - 1;
    9190                 :          0 :                   break;
    9191                 :            :                 }
    9192                 :            :             }
    9193         [ +  - ]:     749551 :           else if (opcode <= DW_LNS_set_isa)
    9194                 :            :             {
    9195                 :            :               /* This is a known standard opcode.  */
    9196   [ +  +  +  +  :     749551 :               switch (opcode)
          +  +  -  +  +  
                +  -  - ]
    9197                 :            :                 {
    9198                 :     113664 :                 case DW_LNS_copy:
    9199                 :            :                   /* Takes no argument.  */
    9200                 :     113664 :                   puts (_(" copy"));
    9201                 :     113664 :                   break;
    9202                 :            : 
    9203                 :       4356 :                 case DW_LNS_advance_pc:
    9204                 :            :                   /* Takes one uleb128 parameter which is added to the
    9205                 :            :                      address.  */
    9206         [ -  + ]:       4356 :                   if (lineendp - linep < 1)
    9207                 :          0 :                     goto invalid_unit;
    9208                 :       4356 :                   get_uleb128 (u128, linep, lineendp);
    9209                 :       4356 :                   advance_pc (u128);
    9210                 :            :                   {
    9211                 :       4356 :                     printf (_(" advance address by %u to "),
    9212                 :            :                             op_addr_advance);
    9213                 :       4356 :                     print_dwarf_addr (dwflmod, 0, address, address);
    9214         [ -  + ]:       4356 :                     if (op_index > 0)
    9215                 :          0 :                       printf (_(", op_index to %u"), op_index);
    9216                 :       4356 :                     printf ("\n");
    9217                 :            :                   }
    9218                 :            :                   break;
    9219                 :            : 
    9220                 :      84529 :                 case DW_LNS_advance_line:
    9221                 :            :                   /* Takes one sleb128 parameter which is added to the
    9222                 :            :                      line.  */
    9223         [ -  + ]:      84529 :                   if (lineendp - linep < 1)
    9224                 :          0 :                     goto invalid_unit;
    9225                 :      84529 :                   get_sleb128 (s128, linep, lineendp);
    9226                 :      84529 :                   line += s128;
    9227                 :      84529 :                   printf (_("\
    9228                 :            :  advance line by constant %d to %" PRId64 "\n"),
    9229                 :            :                           s128, (int64_t) line);
    9230                 :            :                   break;
    9231                 :            : 
    9232                 :      31512 :                 case DW_LNS_set_file:
    9233                 :            :                   /* Takes one uleb128 parameter which is stored in file.  */
    9234         [ -  + ]:      31512 :                   if (lineendp - linep < 1)
    9235                 :          0 :                     goto invalid_unit;
    9236                 :      31512 :                   get_uleb128 (u128, linep, lineendp);
    9237                 :      31512 :                   printf (_(" set file to %" PRIu64 "\n"),
    9238                 :            :                           (uint64_t) u128);
    9239                 :            :                   break;
    9240                 :            : 
    9241                 :     289621 :                 case DW_LNS_set_column:
    9242                 :            :                   /* Takes one uleb128 parameter which is stored in column.  */
    9243   [ +  -  -  + ]:     289621 :                   if (unlikely (standard_opcode_lengths[opcode] != 1
    9244                 :            :                                 || lineendp - linep < 1))
    9245                 :          0 :                     goto invalid_unit;
    9246                 :            : 
    9247                 :     289621 :                   get_uleb128 (u128, linep, lineendp);
    9248                 :     289621 :                   printf (_(" set column to %" PRIu64 "\n"),
    9249                 :            :                           (uint64_t) u128);
    9250                 :            :                   break;
    9251                 :            : 
    9252                 :     201476 :                 case DW_LNS_negate_stmt:
    9253                 :            :                   /* Takes no argument.  */
    9254                 :     201476 :                   is_stmt = 1 - is_stmt;
    9255                 :     201476 :                   printf (_(" set '%s' to %" PRIuFAST8 "\n"),
    9256                 :            :                           "is_stmt", is_stmt);
    9257                 :            :                   break;
    9258                 :            : 
    9259                 :          0 :                 case DW_LNS_set_basic_block:
    9260                 :            :                   /* Takes no argument.  */
    9261                 :          0 :                   puts (_(" set basic block flag"));
    9262                 :          0 :                   break;
    9263                 :            : 
    9264                 :      24370 :                 case DW_LNS_const_add_pc:
    9265                 :            :                   /* Takes no argument.  */
    9266                 :            : 
    9267         [ -  + ]:      24370 :                   if (unlikely (line_range == 0))
    9268                 :          0 :                     goto invalid_unit;
    9269                 :            : 
    9270                 :      24370 :                   advance_pc ((255 - opcode_base) / line_range);
    9271                 :            :                   {
    9272                 :      24370 :                     printf (_(" advance address by constant %u to "),
    9273                 :            :                             op_addr_advance);
    9274                 :      24370 :                     print_dwarf_addr (dwflmod, 0, address, address);
    9275         [ -  + ]:      24370 :                     if (op_index > 0)
    9276                 :          0 :                       printf (_(", op_index to %u"), op_index);
    9277                 :      24370 :                     printf ("\n");
    9278                 :            :                   }
    9279                 :            :                   break;
    9280                 :            : 
    9281                 :         22 :                 case DW_LNS_fixed_advance_pc:
    9282                 :            :                   /* Takes one 16 bit parameter which is added to the
    9283                 :            :                      address.  */
    9284   [ +  -  -  + ]:         22 :                   if (unlikely (standard_opcode_lengths[opcode] != 1
    9285                 :            :                                 || lineendp - linep < 2))
    9286                 :          0 :                     goto invalid_unit;
    9287                 :            : 
    9288         [ -  + ]:         22 :                   u128 = read_2ubyte_unaligned_inc (dbg, linep);
    9289                 :         22 :                   address += u128;
    9290                 :         22 :                   op_index = 0;
    9291                 :            :                   {
    9292                 :         22 :                     printf (_("\
    9293                 :            :  advance address by fixed value %u to \n"),
    9294                 :            :                             u128);
    9295                 :         22 :                     print_dwarf_addr (dwflmod, 0, address, address);
    9296                 :         22 :                     printf ("\n");
    9297                 :            :                   }
    9298                 :            :                   break;
    9299                 :            : 
    9300                 :          1 :                 case DW_LNS_set_prologue_end:
    9301                 :            :                   /* Takes no argument.  */
    9302                 :          1 :                   puts (_(" set prologue end flag"));
    9303                 :          1 :                   break;
    9304                 :            : 
    9305                 :          0 :                 case DW_LNS_set_epilogue_begin:
    9306                 :            :                   /* Takes no argument.  */
    9307                 :          0 :                   puts (_(" set epilogue begin flag"));
    9308                 :          0 :                   break;
    9309                 :            : 
    9310                 :          0 :                 case DW_LNS_set_isa:
    9311                 :            :                   /* Takes one uleb128 parameter which is stored in isa.  */
    9312   [ #  #  #  # ]:          0 :                   if (unlikely (standard_opcode_lengths[opcode] != 1
    9313                 :            :                                 || lineendp - linep < 1))
    9314                 :          0 :                     goto invalid_unit;
    9315                 :            : 
    9316                 :          0 :                   get_uleb128 (u128, linep, lineendp);
    9317         [ +  + ]:    1137881 :                   printf (_(" set isa to %u\n"), u128);
    9318                 :            :                   break;
    9319                 :            :                 }
    9320                 :            :             }
    9321                 :            :           else
    9322                 :            :             {
    9323                 :            :               /* This is a new opcode the generator but not we know about.
    9324                 :            :                  Read the parameters associated with it but then discard
    9325                 :            :                  everything.  Read all the parameters for this opcode.  */
    9326                 :          0 :               printf (ngettext (" unknown opcode with %" PRIu8 " parameter:",
    9327                 :            :                                 " unknown opcode with %" PRIu8 " parameters:",
    9328                 :            :                                 standard_opcode_lengths[opcode]),
    9329                 :          0 :                       standard_opcode_lengths[opcode]);
    9330                 :          0 :               for (int n = standard_opcode_lengths[opcode];
    9331   [ #  #  #  # ]:          0 :                    n > 0 && linep < lineendp; --n)
    9332                 :            :                 {
    9333                 :          0 :                   get_uleb128 (u128, linep, lineendp);
    9334         [ #  # ]:          0 :                   if (n != standard_opcode_lengths[opcode])
    9335         [ #  # ]:          0 :                     putc_unlocked (',', stdout);
    9336                 :          0 :                   printf (" %u", u128);
    9337                 :            :                 }
    9338                 :            : 
    9339                 :            :               /* Next round, ignore this opcode.  */
    9340                 :          0 :               continue;
    9341                 :            :             }
    9342                 :            :         }
    9343                 :            :     }
    9344                 :            : 
    9345                 :            :   /* There must only be one data block.  */
    9346         [ -  + ]:         50 :   assert (elf_getdata (scn, data) == NULL);
    9347                 :            : }
    9348                 :            : 
    9349                 :            : 
    9350                 :            : static void
    9351                 :          4 : print_debug_loclists_section (Dwfl_Module *dwflmod,
    9352                 :            :                               Ebl *ebl,
    9353                 :            :                               GElf_Ehdr *ehdr __attribute__ ((unused)),
    9354                 :            :                               Elf_Scn *scn, GElf_Shdr *shdr,
    9355                 :            :                               Dwarf *dbg)
    9356                 :            : {
    9357                 :          4 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_loclists, scn);
    9358         [ +  - ]:          4 :   if (data == NULL)
    9359                 :          0 :     return;
    9360                 :            : 
    9361                 :          4 :   printf (_("\
    9362                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    9363                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    9364                 :          4 :           (uint64_t) shdr->sh_offset);
    9365                 :            : 
    9366                 :            :   /* For the listptr to get the base address/CU.  */
    9367                 :          4 :   sort_listptr (&known_loclistsptr, "loclistsptr");
    9368                 :          4 :   size_t listptr_idx = 0;
    9369                 :            : 
    9370                 :          4 :   const unsigned char *readp = data->d_buf;
    9371                 :          4 :   const unsigned char *const dataend = ((unsigned char *) data->d_buf
    9372                 :          4 :                                         + data->d_size);
    9373         [ +  + ]:          9 :   while (readp < dataend)
    9374                 :            :     {
    9375         [ -  + ]:          5 :       if (unlikely (readp > dataend - 4))
    9376                 :            :         {
    9377                 :          0 :         invalid_data:
    9378                 :          0 :           error (0, 0, _("invalid data in section [%zu] '%s'"),
    9379                 :            :                  elf_ndxscn (scn), section_name (ebl, shdr));
    9380                 :          0 :           return;
    9381                 :            :         }
    9382                 :            : 
    9383                 :          5 :       ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
    9384                 :          5 :       printf (_("Table at Offset 0x%" PRIx64 ":\n\n"),
    9385                 :            :               (uint64_t) offset);
    9386                 :            : 
    9387         [ -  + ]:          5 :       uint64_t unit_length = read_4ubyte_unaligned_inc (dbg, readp);
    9388                 :          5 :       unsigned int offset_size = 4;
    9389         [ -  + ]:          5 :       if (unlikely (unit_length == 0xffffffff))
    9390                 :            :         {
    9391         [ #  # ]:          0 :           if (unlikely (readp > dataend - 8))
    9392                 :          0 :             goto invalid_data;
    9393                 :            : 
    9394         [ #  # ]:          0 :           unit_length = read_8ubyte_unaligned_inc (dbg, readp);
    9395                 :          0 :           offset_size = 8;
    9396                 :            :         }
    9397                 :          5 :       printf (_(" Length:         %8" PRIu64 "\n"), unit_length);
    9398                 :            : 
    9399                 :            :       /* We need at least 2-bytes + 1-byte + 1-byte + 4-bytes = 8
    9400                 :            :          bytes to complete the header.  And this unit cannot go beyond
    9401                 :            :          the section data.  */
    9402         [ +  - ]:          5 :       if (readp > dataend - 8
    9403         [ +  - ]:          5 :           || unit_length < 8
    9404         [ -  + ]:          5 :           || unit_length > (uint64_t) (dataend - readp))
    9405                 :          0 :         goto invalid_data;
    9406                 :            : 
    9407                 :          5 :       const unsigned char *nexthdr = readp + unit_length;
    9408                 :            : 
    9409         [ -  + ]:          5 :       uint16_t version = read_2ubyte_unaligned_inc (dbg, readp);
    9410                 :          5 :       printf (_(" DWARF version:  %8" PRIu16 "\n"), version);
    9411                 :            : 
    9412         [ -  + ]:          5 :       if (version != 5)
    9413                 :            :         {
    9414                 :          0 :           error (0, 0, _("Unknown version"));
    9415                 :          0 :           goto next_table;
    9416                 :            :         }
    9417                 :            : 
    9418                 :          5 :       uint8_t address_size = *readp++;
    9419                 :          5 :       printf (_(" Address size:   %8" PRIu64 "\n"),
    9420                 :            :               (uint64_t) address_size);
    9421                 :            : 
    9422         [ -  + ]:          5 :       if (address_size != 4 && address_size != 8)
    9423                 :            :         {
    9424                 :          0 :           error (0, 0, _("unsupported address size"));
    9425                 :          0 :           goto next_table;
    9426                 :            :         }
    9427                 :            : 
    9428                 :          5 :       uint8_t segment_size = *readp++;
    9429                 :          5 :       printf (_(" Segment size:   %8" PRIu64 "\n"),
    9430                 :            :               (uint64_t) segment_size);
    9431                 :            : 
    9432         [ -  + ]:          5 :       if (segment_size != 0)
    9433                 :            :         {
    9434                 :          0 :           error (0, 0, _("unsupported segment size"));
    9435                 :          0 :           goto next_table;
    9436                 :            :         }
    9437                 :            : 
    9438         [ -  + ]:          5 :       uint32_t offset_entry_count = read_4ubyte_unaligned_inc (dbg, readp);
    9439                 :          5 :       printf (_(" Offset entries: %8" PRIu64 "\n"),
    9440                 :            :               (uint64_t) offset_entry_count);
    9441                 :            : 
    9442                 :            :       /* We need the CU that uses this unit to get the initial base address. */
    9443                 :          5 :       Dwarf_Addr cu_base = 0;
    9444                 :          5 :       struct Dwarf_CU *cu = NULL;
    9445         [ -  + ]:          5 :       if (listptr_cu (&known_loclistsptr, &listptr_idx,
    9446                 :            :                       (Dwarf_Off) offset,
    9447                 :          5 :                       (Dwarf_Off) (nexthdr - (unsigned char *) data->d_buf),
    9448                 :            :                       &cu_base, &cu)
    9449         [ #  # ]:          0 :           || split_dwarf_cu_base (dbg, &cu, &cu_base))
    9450                 :          5 :         {
    9451                 :          5 :           Dwarf_Die cudie;
    9452         [ -  + ]:          5 :           if (dwarf_cu_die (cu, &cudie,
    9453                 :            :                             NULL, NULL, NULL, NULL,
    9454                 :            :                             NULL, NULL) == NULL)
    9455                 :          0 :             printf (_(" Unknown CU base: "));
    9456                 :            :           else
    9457                 :          5 :             printf (_(" CU [%6" PRIx64 "] base: "),
    9458                 :            :                     dwarf_dieoffset (&cudie));
    9459                 :          5 :           print_dwarf_addr (dwflmod, address_size, cu_base, cu_base);
    9460                 :          5 :           printf ("\n");
    9461                 :            :         }
    9462                 :            :       else
    9463                 :          0 :         printf (_(" Not associated with a CU.\n"));
    9464                 :            : 
    9465                 :          5 :       printf ("\n");
    9466                 :            : 
    9467                 :          5 :       const unsigned char *offset_array_start = readp;
    9468         [ +  + ]:          5 :       if (offset_entry_count > 0)
    9469                 :            :         {
    9470                 :          2 :           uint64_t max_entries = (unit_length - 8) / offset_size;
    9471         [ -  + ]:          2 :           if (offset_entry_count > max_entries)
    9472                 :            :             {
    9473                 :          0 :               error (0, 0,
    9474                 :          0 :                      _("too many offset entries for unit length"));
    9475                 :          0 :               offset_entry_count = max_entries;
    9476                 :            :             }
    9477                 :            : 
    9478                 :          2 :           printf (_("  Offsets starting at 0x%" PRIx64 ":\n"),
    9479                 :            :                   (uint64_t) (offset_array_start
    9480                 :          2 :                               - (unsigned char *) data->d_buf));
    9481         [ +  + ]:         18 :           for (uint32_t idx = 0; idx < offset_entry_count; idx++)
    9482                 :            :             {
    9483                 :         16 :               printf ("   [%6" PRIu32 "] ", idx);
    9484         [ +  - ]:         16 :               if (offset_size == 4)
    9485                 :            :                 {
    9486         [ -  + ]:         16 :                   uint32_t off = read_4ubyte_unaligned_inc (dbg, readp);
    9487                 :         16 :                   printf ("0x%" PRIx32 "\n", off);
    9488                 :            :                 }
    9489                 :            :               else
    9490                 :            :                 {
    9491         [ #  # ]:          0 :                   uint64_t off = read_8ubyte_unaligned_inc (dbg, readp);
    9492                 :         16 :                   printf ("0x%" PRIx64 "\n", off);
    9493                 :            :                 }
    9494                 :            :             }
    9495                 :          2 :           printf ("\n");
    9496                 :            :         }
    9497                 :            : 
    9498                 :          5 :       Dwarf_Addr base = cu_base;
    9499                 :          5 :       bool start_of_list = true;
    9500                 :          5 :       while (readp < nexthdr)
    9501                 :            :         {
    9502                 :         92 :           Dwarf_Off off = (Dwarf_Off) (readp - (unsigned char *) data->d_buf);
    9503         [ +  + ]:         92 :           if (listptr_attr (&known_loclistsptr, listptr_idx, off,
    9504                 :            :                             DW_AT_GNU_locviews))
    9505                 :            :             {
    9506                 :          1 :               Dwarf_Off next_off = next_listptr_offset (&known_loclistsptr,
    9507                 :            :                                                         &listptr_idx, off);
    9508                 :          1 :               const unsigned char *locp = readp;
    9509                 :          1 :               const unsigned char *locendp;
    9510         [ +  - ]:          1 :               if (next_off == 0
    9511                 :          1 :                   || next_off > (size_t) (nexthdr - ((const unsigned char *)
    9512         [ +  - ]:          1 :                                                      data->d_buf)))
    9513                 :            :                 locendp = nexthdr;
    9514                 :            :               else
    9515                 :          1 :                 locendp = (const unsigned char *) data->d_buf + next_off;
    9516                 :            : 
    9517                 :          3 :               printf ("  Offset: %" PRIx64 ", Index: %" PRIx64 "\n",
    9518                 :          1 :                       (uint64_t) (readp - (unsigned char *) data->d_buf),
    9519                 :          1 :                       (uint64_t) (readp - offset_array_start));
    9520                 :            : 
    9521                 :          2 :               while (locp < locendp)
    9522                 :            :                 {
    9523                 :          1 :                   uint64_t v1, v2;
    9524                 :          1 :                   get_uleb128 (v1, locp, locendp);
    9525         [ -  + ]:          1 :                   if (locp >= locendp)
    9526                 :            :                     {
    9527                 :          0 :                       printf (_("    <INVALID DATA>\n"));
    9528                 :            :                       break;
    9529                 :            :                     }
    9530                 :          1 :                   get_uleb128 (v2, locp, locendp);
    9531         [ +  + ]:          2 :                   printf ("    view pair %" PRId64 ", %" PRId64 "\n", v1, v2);
    9532                 :            :                 }
    9533                 :            : 
    9534                 :          1 :               printf ("\n");
    9535                 :          1 :               readp = (unsigned char *) locendp;
    9536                 :          1 :               continue;
    9537                 :            :             }
    9538                 :            : 
    9539                 :         91 :           uint8_t kind = *readp++;
    9540                 :         91 :           uint64_t op1, op2, len;
    9541                 :            : 
    9542                 :            :           /* Skip padding.  */
    9543         [ -  + ]:         91 :           if (start_of_list && kind == DW_LLE_end_of_list)
    9544                 :          0 :             continue;
    9545                 :            : 
    9546         [ +  + ]:         91 :           if (start_of_list)
    9547                 :            :             {
    9548                 :         33 :               base = cu_base;
    9549                 :         33 :               printf ("  Offset: %" PRIx64 ", Index: %" PRIx64 "\n",
    9550                 :         33 :                       (uint64_t) (readp - (unsigned char *) data->d_buf - 1),
    9551                 :         33 :                       (uint64_t) (readp - offset_array_start - 1));
    9552                 :         33 :               start_of_list = false;
    9553                 :            :             }
    9554                 :            : 
    9555                 :         91 :           printf ("    %s", dwarf_loc_list_encoding_name (kind));
    9556   [ +  -  -  +  :         91 :           switch (kind)
          +  -  +  -  +  
                   -  - ]
    9557                 :            :             {
    9558                 :         33 :             case DW_LLE_end_of_list:
    9559                 :         33 :               start_of_list = true;
    9560                 :         33 :               printf ("\n\n");
    9561                 :            :               break;
    9562                 :            : 
    9563                 :          0 :             case DW_LLE_base_addressx:
    9564         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    9565                 :            :                 {
    9566                 :          0 :                 invalid_entry:
    9567                 :          0 :                   error (0, 0, _("invalid loclists data"));
    9568                 :          0 :                   goto next_table;
    9569                 :            :                 }
    9570                 :          0 :               get_uleb128 (op1, readp, nexthdr);
    9571                 :          0 :               printf (" %" PRIx64 "\n", op1);
    9572         [ #  # ]:          0 :               if (! print_unresolved_addresses)
    9573                 :            :                 {
    9574                 :          0 :                   Dwarf_Addr addr;
    9575         [ #  # ]:          0 :                   if (get_indexed_addr (cu, op1, &addr) != 0)
    9576                 :          0 :                     printf ("      ???\n");
    9577                 :            :                   else
    9578                 :            :                     {
    9579                 :          0 :                       printf ("      ");
    9580                 :          0 :                       print_dwarf_addr (dwflmod, address_size, addr, addr);
    9581                 :          0 :                       printf ("\n");
    9582                 :            :                     }
    9583                 :            :                 }
    9584                 :            :               break;
    9585                 :            : 
    9586                 :          0 :             case DW_LLE_startx_endx:
    9587         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    9588                 :          0 :                 goto invalid_entry;
    9589                 :          0 :               get_uleb128 (op1, readp, nexthdr);
    9590         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    9591                 :          0 :                 goto invalid_entry;
    9592                 :          0 :               get_uleb128 (op2, readp, nexthdr);
    9593                 :          0 :               printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
    9594         [ #  # ]:          0 :               if (! print_unresolved_addresses)
    9595                 :            :                 {
    9596                 :          0 :                   Dwarf_Addr addr1;
    9597                 :          0 :                   Dwarf_Addr addr2;
    9598         [ #  # ]:          0 :                   if (get_indexed_addr (cu, op1, &addr1) != 0
    9599         [ #  # ]:          0 :                       || get_indexed_addr (cu, op2, &addr2) != 0)
    9600                 :            :                     {
    9601                 :          0 :                       printf ("      ???..\n");
    9602                 :          0 :                       printf ("      ???\n");
    9603                 :            :                     }
    9604                 :            :                   else
    9605                 :            :                     {
    9606                 :          0 :                       printf ("      ");
    9607                 :          0 :                       print_dwarf_addr (dwflmod, address_size, addr1, addr1);
    9608                 :          0 :                       printf ("..\n      ");
    9609                 :          0 :                       print_dwarf_addr (dwflmod, address_size,
    9610                 :            :                                         addr2 - 1, addr2);
    9611                 :          0 :                       printf ("\n");
    9612                 :            :                     }
    9613                 :            :                 }
    9614         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    9615                 :          0 :                 goto invalid_entry;
    9616                 :          0 :               get_uleb128 (len, readp, nexthdr);
    9617         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < len)
    9618                 :          0 :                 goto invalid_entry;
    9619                 :          0 :               print_ops (dwflmod, dbg, 8, 8, version,
    9620                 :            :                          address_size, offset_size, cu, len, readp);
    9621                 :          0 :               readp += len;
    9622                 :          0 :               break;
    9623                 :            : 
    9624                 :         26 :             case DW_LLE_startx_length:
    9625         [ -  + ]:         26 :               if ((uint64_t) (nexthdr - readp) < 1)
    9626                 :          0 :                 goto invalid_entry;
    9627                 :         26 :               get_uleb128 (op1, readp, nexthdr);
    9628         [ -  + ]:         26 :               if ((uint64_t) (nexthdr - readp) < 1)
    9629                 :          0 :                 goto invalid_entry;
    9630                 :         26 :               get_uleb128 (op2, readp, nexthdr);
    9631                 :         26 :               printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
    9632         [ +  - ]:         26 :               if (! print_unresolved_addresses)
    9633                 :            :                 {
    9634                 :         26 :                   Dwarf_Addr addr1;
    9635                 :         26 :                   Dwarf_Addr addr2;
    9636         [ -  + ]:         26 :                   if (get_indexed_addr (cu, op1, &addr1) != 0)
    9637                 :            :                     {
    9638                 :          0 :                       printf ("      ???..\n");
    9639                 :          0 :                       printf ("      ???\n");
    9640                 :            :                     }
    9641                 :            :                   else
    9642                 :            :                     {
    9643                 :         26 :                       addr2 = addr1 + op2;
    9644                 :         26 :                       printf ("      ");
    9645                 :         26 :                       print_dwarf_addr (dwflmod, address_size, addr1, addr1);
    9646                 :         26 :                       printf ("..\n      ");
    9647                 :         26 :                       print_dwarf_addr (dwflmod, address_size,
    9648                 :            :                                         addr2 - 1, addr2);
    9649                 :         26 :                       printf ("\n");
    9650                 :            :                     }
    9651                 :            :                 }
    9652         [ -  + ]:         26 :               if ((uint64_t) (nexthdr - readp) < 1)
    9653                 :          0 :                 goto invalid_entry;
    9654                 :         26 :               get_uleb128 (len, readp, nexthdr);
    9655         [ -  + ]:         26 :               if ((uint64_t) (nexthdr - readp) < len)
    9656                 :          0 :                 goto invalid_entry;
    9657                 :         26 :               print_ops (dwflmod, dbg, 8, 8, version,
    9658                 :            :                          address_size, offset_size, cu, len, readp);
    9659                 :         26 :               readp += len;
    9660                 :         26 :               break;
    9661                 :            : 
    9662                 :         24 :             case DW_LLE_offset_pair:
    9663         [ -  + ]:         24 :               if ((uint64_t) (nexthdr - readp) < 1)
    9664                 :          0 :                 goto invalid_entry;
    9665                 :         24 :               get_uleb128 (op1, readp, nexthdr);
    9666         [ -  + ]:         24 :               if ((uint64_t) (nexthdr - readp) < 1)
    9667                 :          0 :                 goto invalid_entry;
    9668                 :         24 :               get_uleb128 (op2, readp, nexthdr);
    9669                 :         24 :               printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
    9670         [ +  - ]:         24 :               if (! print_unresolved_addresses)
    9671                 :            :                 {
    9672                 :         24 :                   op1 += base;
    9673                 :         24 :                   op2 += base;
    9674                 :         24 :                   printf ("      ");
    9675                 :         24 :                   print_dwarf_addr (dwflmod, address_size, op1, op1);
    9676                 :         24 :                   printf ("..\n      ");
    9677                 :         24 :                   print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
    9678                 :         24 :                   printf ("\n");
    9679                 :            :                 }
    9680         [ -  + ]:         24 :               if ((uint64_t) (nexthdr - readp) < 1)
    9681                 :          0 :                 goto invalid_entry;
    9682                 :         24 :               get_uleb128 (len, readp, nexthdr);
    9683         [ -  + ]:         24 :               if ((uint64_t) (nexthdr - readp) < len)
    9684                 :          0 :                 goto invalid_entry;
    9685                 :         24 :               print_ops (dwflmod, dbg, 8, 8, version,
    9686                 :            :                          address_size, offset_size, cu, len, readp);
    9687                 :         24 :               readp += len;
    9688                 :         24 :               break;
    9689                 :            : 
    9690                 :          0 :             case DW_LLE_default_location:
    9691         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    9692                 :          0 :                 goto invalid_entry;
    9693                 :          0 :               get_uleb128 (len, readp, nexthdr);
    9694         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < len)
    9695                 :          0 :                 goto invalid_entry;
    9696                 :          0 :               print_ops (dwflmod, dbg, 8, 8, version,
    9697                 :            :                          address_size, offset_size, cu, len, readp);
    9698                 :          0 :               readp += len;
    9699                 :          0 :               break;
    9700                 :            : 
    9701                 :          5 :             case DW_LLE_base_address:
    9702         [ -  + ]:          5 :               if (address_size == 4)
    9703                 :            :                 {
    9704         [ #  # ]:          0 :                   if ((uint64_t) (nexthdr - readp) < 4)
    9705                 :          0 :                     goto invalid_entry;
    9706         [ #  # ]:          0 :                   op1 = read_4ubyte_unaligned_inc (dbg, readp);
    9707                 :            :                 }
    9708                 :            :               else
    9709                 :            :                 {
    9710         [ -  + ]:          5 :                   if ((uint64_t) (nexthdr - readp) < 8)
    9711                 :          0 :                     goto invalid_entry;
    9712         [ -  + ]:          5 :                   op1 = read_8ubyte_unaligned_inc (dbg, readp);
    9713                 :            :                 }
    9714                 :          5 :               base = op1;
    9715                 :          5 :               printf (" 0x%" PRIx64 "\n", base);
    9716         [ +  - ]:          5 :               if (! print_unresolved_addresses)
    9717                 :            :                 {
    9718                 :          5 :                   printf ("      ");
    9719                 :          5 :                   print_dwarf_addr (dwflmod, address_size, base, base);
    9720                 :          5 :                   printf ("\n");
    9721                 :            :                 }
    9722                 :            :               break;
    9723                 :            : 
    9724                 :          0 :             case DW_LLE_start_end:
    9725         [ #  # ]:          0 :               if (address_size == 4)
    9726                 :            :                 {
    9727         [ #  # ]:          0 :                   if ((uint64_t) (nexthdr - readp) < 8)
    9728                 :          0 :                     goto invalid_entry;
    9729         [ #  # ]:          0 :                   op1 = read_4ubyte_unaligned_inc (dbg, readp);
    9730         [ #  # ]:          0 :                   op2 = read_4ubyte_unaligned_inc (dbg, readp);
    9731                 :            :                 }
    9732                 :            :               else
    9733                 :            :                 {
    9734         [ #  # ]:          0 :                   if ((uint64_t) (nexthdr - readp) < 16)
    9735                 :          0 :                     goto invalid_entry;
    9736         [ #  # ]:          0 :                   op1 = read_8ubyte_unaligned_inc (dbg, readp);
    9737         [ #  # ]:          0 :                   op2 = read_8ubyte_unaligned_inc (dbg, readp);
    9738                 :            :                 }
    9739                 :          0 :               printf (" 0x%" PRIx64 "..0x%" PRIx64 "\n", op1, op2);
    9740         [ #  # ]:          0 :               if (! print_unresolved_addresses)
    9741                 :            :                 {
    9742                 :          0 :                   printf ("      ");
    9743                 :          0 :                   print_dwarf_addr (dwflmod, address_size, op1, op1);
    9744                 :          0 :                   printf ("..\n      ");
    9745                 :          0 :                   print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
    9746                 :          0 :                   printf ("\n");
    9747                 :            :                 }
    9748         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    9749                 :          0 :                 goto invalid_entry;
    9750                 :          0 :               get_uleb128 (len, readp, nexthdr);
    9751         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < len)
    9752                 :          0 :                 goto invalid_entry;
    9753                 :          0 :               print_ops (dwflmod, dbg, 8, 8, version,
    9754                 :            :                          address_size, offset_size, cu, len, readp);
    9755                 :          0 :               readp += len;
    9756                 :          0 :               break;
    9757                 :            : 
    9758                 :          3 :             case DW_LLE_start_length:
    9759         [ -  + ]:          3 :               if (address_size == 4)
    9760                 :            :                 {
    9761         [ #  # ]:          0 :                   if ((uint64_t) (nexthdr - readp) < 4)
    9762                 :          0 :                     goto invalid_entry;
    9763         [ #  # ]:          0 :                   op1 = read_4ubyte_unaligned_inc (dbg, readp);
    9764                 :            :                 }
    9765                 :            :               else
    9766                 :            :                 {
    9767         [ -  + ]:          3 :                   if ((uint64_t) (nexthdr - readp) < 8)
    9768                 :          0 :                     goto invalid_entry;
    9769         [ -  + ]:          3 :                   op1 = read_8ubyte_unaligned_inc (dbg, readp);
    9770                 :            :                 }
    9771         [ -  + ]:          3 :               if ((uint64_t) (nexthdr - readp) < 1)
    9772                 :          0 :                 goto invalid_entry;
    9773                 :          3 :               get_uleb128 (op2, readp, nexthdr);
    9774                 :          3 :               printf (" 0x%" PRIx64 ", %" PRIx64 "\n", op1, op2);
    9775         [ +  + ]:          3 :               if (! print_unresolved_addresses)
    9776                 :            :                 {
    9777                 :          2 :                   op2 = op1 + op2;
    9778                 :          2 :                   printf ("      ");
    9779                 :          2 :                   print_dwarf_addr (dwflmod, address_size, op1, op1);
    9780                 :          2 :                   printf ("..\n      ");
    9781                 :          2 :                   print_dwarf_addr (dwflmod, address_size, op2 - 1, op2);
    9782                 :          2 :                   printf ("\n");
    9783                 :            :                 }
    9784         [ -  + ]:          3 :               if ((uint64_t) (nexthdr - readp) < 1)
    9785                 :          0 :                 goto invalid_entry;
    9786                 :          3 :               get_uleb128 (len, readp, nexthdr);
    9787         [ -  + ]:          3 :               if ((uint64_t) (nexthdr - readp) < len)
    9788                 :          0 :                 goto invalid_entry;
    9789                 :          3 :               print_ops (dwflmod, dbg, 8, 8, version,
    9790                 :            :                          address_size, offset_size, cu, len, readp);
    9791                 :          3 :               readp += len;
    9792                 :          3 :               break;
    9793                 :            : 
    9794                 :          0 :             case DW_LLE_GNU_view_pair:
    9795         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    9796                 :          0 :                 goto invalid_entry;
    9797                 :          0 :               get_uleb128 (op1, readp, nexthdr);
    9798         [ #  # ]:          0 :               if ((uint64_t) (nexthdr - readp) < 1)
    9799                 :          0 :                 goto invalid_entry;
    9800                 :          0 :               get_uleb128 (op2, readp, nexthdr);
    9801         [ +  + ]:         97 :               printf (" %" PRIx64 ", %" PRIx64 "\n", op1, op2);
    9802                 :            :               break;
    9803                 :            : 
    9804                 :          0 :             default:
    9805                 :          0 :               goto invalid_entry;
    9806                 :            :             }
    9807                 :            :         }
    9808                 :            : 
    9809                 :          5 :     next_table:
    9810         [ -  + ]:          5 :       if (readp != nexthdr)
    9811                 :            :         {
    9812                 :          0 :           size_t padding = nexthdr - readp;
    9813                 :          0 :           printf (_("   %zu padding bytes\n\n"), padding);
    9814                 :          0 :           readp = nexthdr;
    9815                 :            :         }
    9816                 :            :     }
    9817                 :            : }
    9818                 :            : 
    9819                 :            : 
    9820                 :            : static void
    9821                 :         42 : print_debug_loc_section (Dwfl_Module *dwflmod,
    9822                 :            :                          Ebl *ebl, GElf_Ehdr *ehdr,
    9823                 :            :                          Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
    9824                 :            : {
    9825                 :         42 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_loc, scn);
    9826         [ -  + ]:         42 :   if (data == NULL)
    9827                 :          0 :     return;
    9828                 :            : 
    9829                 :         42 :   printf (_("\
    9830                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
    9831                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
    9832                 :         42 :           (uint64_t) shdr->sh_offset);
    9833                 :            : 
    9834                 :         42 :   sort_listptr (&known_locsptr, "loclistptr");
    9835                 :         42 :   size_t listptr_idx = 0;
    9836                 :            : 
    9837         [ +  - ]:         42 :   uint_fast8_t address_size = ehdr->e_ident[EI_CLASS] == ELFCLASS32 ? 4 : 8;
    9838                 :         42 :   uint_fast8_t offset_size = 4;
    9839                 :            : 
    9840                 :         42 :   bool first = true;
    9841                 :         42 :   Dwarf_Addr base = 0;
    9842                 :         42 :   unsigned char *readp = data->d_buf;
    9843                 :         42 :   unsigned char *const endp = (unsigned char *) data->d_buf + data->d_size;
    9844                 :         42 :   Dwarf_CU *last_cu = NULL;
    9845         [ +  + ]:     344894 :   while (readp < endp)
    9846                 :            :     {
    9847                 :     344852 :       ptrdiff_t offset = readp - (unsigned char *) data->d_buf;
    9848                 :     344852 :       Dwarf_CU *cu = last_cu;
    9849                 :     344852 :       unsigned int attr = 0;
    9850                 :            : 
    9851   [ +  +  -  + ]:     344852 :       if (first && skip_listptr_hole (&known_locsptr, &listptr_idx,
    9852                 :            :                                       &address_size, &offset_size, &base,
    9853                 :            :                                       &cu, offset, &readp, endp, &attr))
    9854                 :      51723 :         continue;
    9855                 :            : 
    9856         [ +  + ]:     344852 :       if (last_cu != cu)
    9857                 :            :        {
    9858                 :       1469 :         Dwarf_Die cudie;
    9859         [ -  + ]:       1469 :         if (dwarf_cu_die (cu, &cudie,
    9860                 :            :                           NULL, NULL, NULL, NULL,
    9861                 :            :                           NULL, NULL) == NULL)
    9862                 :          0 :           printf (_("\n Unknown CU base: "));
    9863                 :            :         else
    9864                 :       1469 :           printf (_("\n CU [%6" PRIx64 "] base: "),
    9865                 :            :                   dwarf_dieoffset (&cudie));
    9866                 :       1469 :         print_dwarf_addr (dwflmod, address_size, base, base);
    9867                 :       1469 :         printf ("\n");
    9868                 :            :        }
    9869                 :     344852 :       last_cu = cu;
    9870                 :            : 
    9871         [ +  + ]:     344852 :       if (attr == DW_AT_GNU_locviews)
    9872                 :            :         {
    9873                 :      51723 :           Dwarf_Off next_off = next_listptr_offset (&known_locsptr,
    9874                 :            :                                                     &listptr_idx, offset);
    9875                 :      51723 :           const unsigned char *locp = readp;
    9876                 :      51723 :           const unsigned char *locendp;
    9877         [ +  - ]:      51723 :           if (next_off == 0
    9878                 :      51723 :               || next_off > (size_t) (endp
    9879         [ +  - ]:      51723 :                                       - (const unsigned char *) data->d_buf))
    9880                 :      51723 :             locendp = endp;
    9881                 :            :           else
    9882                 :      51723 :             locendp = (const unsigned char *) data->d_buf + next_off;
    9883                 :            : 
    9884         [ +  + ]:     292910 :           while (locp < locendp)
    9885                 :            :             {
    9886                 :     241187 :               uint64_t v1, v2;
    9887                 :     241187 :               get_uleb128 (v1, locp, locendp);
    9888         [ -  + ]:     241187 :               if (locp >= locendp)
    9889                 :            :                 {
    9890                 :          0 :                   printf (_(" [%6tx]  <INVALID DATA>\n"), offset);
    9891                 :            :                   break;
    9892                 :            :                 }
    9893                 :     241187 :               get_uleb128 (v2, locp, locendp);
    9894         [ +  + ]:     241187 :               if (first)                /* First view pair in a list.  */
    9895                 :      51723 :                 printf (" [%6tx] ", offset);
    9896                 :            :               else
    9897                 :     189464 :                 printf ("          ");
    9898                 :     241187 :               printf ("view pair %" PRId64 ", %" PRId64 "\n", v1, v2);
    9899                 :     241187 :               first = false;
    9900                 :            :             }
    9901                 :            : 
    9902                 :      51723 :           first = true;
    9903                 :      51723 :           readp = (unsigned char *) locendp;
    9904                 :      51723 :           continue;
    9905                 :            :         }
    9906                 :            : 
    9907                 :            :       /* GNU DebugFission encoded addresses as addrx.  */
    9908                 :     586258 :       bool is_debugfission = ((cu != NULL
    9909         [ #  # ]:          0 :                                || split_dwarf_cu_base (dbg, &cu, &base))
    9910   [ -  +  +  - ]:     293129 :                               && (cu->version < 5
    9911         [ +  + ]:     293129 :                                   && cu->unit_type == DW_UT_split_compile));
    9912         [ +  + ]:     293129 :       if (!is_debugfission
    9913         [ -  + ]:     293069 :           && unlikely (data->d_size - offset < (size_t) address_size * 2))
    9914                 :            :         {
    9915                 :          0 :         invalid_data:
    9916                 :          0 :           printf (_(" [%6tx]  <INVALID DATA>\n"), offset);
    9917                 :          0 :           break;
    9918                 :            :         }
    9919                 :            : 
    9920                 :     293129 :       Dwarf_Addr begin;
    9921                 :     293129 :       Dwarf_Addr end;
    9922                 :     293129 :       bool use_base = true;
    9923         [ +  + ]:     293129 :       if (is_debugfission)
    9924                 :            :         {
    9925                 :         60 :           const unsigned char *locp = readp;
    9926                 :         60 :           const unsigned char *locendp = readp + data->d_size;
    9927         [ -  + ]:         60 :           if (locp >= locendp)
    9928                 :          0 :             goto invalid_data;
    9929                 :            : 
    9930                 :         60 :           Dwarf_Word idx;
    9931                 :         60 :           unsigned char code = *locp++;
    9932   [ +  -  -  +  :         60 :           switch (code)
                      - ]
    9933                 :            :             {
    9934                 :         20 :             case DW_LLE_GNU_end_of_list_entry:
    9935                 :         20 :               begin = 0;
    9936                 :         20 :               end = 0;
    9937                 :         20 :               break;
    9938                 :            : 
    9939                 :          0 :             case DW_LLE_GNU_base_address_selection_entry:
    9940         [ #  # ]:          0 :               if (locp >= locendp)
    9941                 :          0 :                 goto invalid_data;
    9942                 :          0 :               begin = (Dwarf_Addr) -1;
    9943                 :          0 :               get_uleb128 (idx, locp, locendp);
    9944         [ #  # ]:          0 :               if (get_indexed_addr (cu, idx, &end) != 0)
    9945                 :          0 :                 end = idx; /* ... */
    9946                 :            :               break;
    9947                 :            : 
    9948                 :          0 :             case DW_LLE_GNU_start_end_entry:
    9949         [ #  # ]:          0 :               if (locp >= locendp)
    9950                 :          0 :                 goto invalid_data;
    9951                 :          0 :               get_uleb128 (idx, locp, locendp);
    9952         [ #  # ]:          0 :               if (get_indexed_addr (cu, idx, &begin) != 0)
    9953                 :          0 :                 begin = idx; /* ... */
    9954         [ #  # ]:          0 :               if (locp >= locendp)
    9955                 :          0 :                 goto invalid_data;
    9956                 :          0 :               get_uleb128 (idx, locp, locendp);
    9957         [ #  # ]:          0 :               if (get_indexed_addr (cu, idx, &end) != 0)
    9958                 :          0 :                 end = idx; /* ... */
    9959                 :            :               use_base = false;
    9960                 :            :               break;
    9961                 :            : 
    9962                 :         40 :             case DW_LLE_GNU_start_length_entry:
    9963         [ -  + ]:         40 :               if (locp >= locendp)
    9964                 :          0 :                 goto invalid_data;
    9965                 :         40 :               get_uleb128 (idx, locp, locendp);
    9966         [ -  + ]:         40 :               if (get_indexed_addr (cu, idx, &begin) != 0)
    9967                 :          0 :                 begin = idx; /* ... */
    9968         [ -  + ]:         40 :               if (locendp - locp < 4)
    9969                 :          0 :                 goto invalid_data;
    9970         [ -  + ]:         40 :               end = read_4ubyte_unaligned_inc (dbg, locp);
    9971                 :         40 :               end += begin;
    9972                 :         40 :               use_base = false;
    9973                 :         40 :               break;
    9974                 :            : 
    9975                 :          0 :             default:
    9976                 :          0 :                 goto invalid_data;
    9977                 :            :             }
    9978                 :            : 
    9979                 :         60 :           readp = (unsigned char *) locp;
    9980                 :            :         }
    9981         [ +  - ]:     293069 :       else if (address_size == 8)
    9982                 :            :         {
    9983         [ +  + ]:     293069 :           begin = read_8ubyte_unaligned_inc (dbg, readp);
    9984         [ +  + ]:     293069 :           end = read_8ubyte_unaligned_inc (dbg, readp);
    9985                 :            :         }
    9986                 :            :       else
    9987                 :            :         {
    9988         [ #  # ]:          0 :           begin = read_4ubyte_unaligned_inc (dbg, readp);
    9989         [ #  # ]:          0 :           end = read_4ubyte_unaligned_inc (dbg, readp);
    9990         [ #  # ]:          0 :           if (begin == (Dwarf_Addr) (uint32_t) -1)
    9991                 :          0 :             begin = (Dwarf_Addr) -1l;
    9992                 :            :         }
    9993                 :            : 
    9994         [ -  + ]:     293129 :       if (begin == (Dwarf_Addr) -1l) /* Base address entry.  */
    9995                 :            :         {
    9996         [ #  # ]:          0 :           if (first)
    9997                 :          0 :             printf (" [%6tx] ", offset);
    9998                 :            :           else
    9999                 :          0 :             printf ("          ");
   10000                 :          0 :           puts (_("base address"));
   10001                 :          0 :           printf ("          ");
   10002                 :          0 :           print_dwarf_addr (dwflmod, address_size, end, end);
   10003                 :          0 :           printf ("\n");
   10004                 :          0 :           base = end;
   10005                 :          0 :           first = false;
   10006                 :            :         }
   10007   [ +  +  +  + ]:     293129 :       else if (begin == 0 && end == 0) /* End of list entry.  */
   10008                 :            :         {
   10009         [ -  + ]:      51797 :           if (first)
   10010                 :     293129 :             printf (_(" [%6tx] empty list\n"), offset);
   10011                 :            :           first = true;
   10012                 :            :         }
   10013                 :            :       else
   10014                 :            :         {
   10015                 :            :           /* We have a location expression entry.  */
   10016         [ +  + ]:     241332 :           uint_fast16_t len = read_2ubyte_unaligned_inc (dbg, readp);
   10017                 :            : 
   10018         [ +  + ]:     241332 :           if (first)            /* First entry in a list.  */
   10019                 :      51797 :             printf (" [%6tx] ", offset);
   10020                 :            :           else
   10021                 :     189535 :             printf ("          ");
   10022                 :            : 
   10023                 :     241332 :           printf ("range %" PRIx64 ", %" PRIx64 "\n", begin, end);
   10024         [ +  + ]:     241332 :           if (! print_unresolved_addresses)
   10025                 :            :             {
   10026         [ +  + ]:     241302 :               Dwarf_Addr dab = use_base ? base + begin : begin;
   10027         [ +  + ]:     241302 :               Dwarf_Addr dae = use_base ? base + end : end;
   10028                 :     241302 :               printf ("          ");
   10029                 :     241302 :               print_dwarf_addr (dwflmod, address_size, dab, dab);
   10030                 :     241302 :               printf ("..\n          ");
   10031                 :     241302 :               print_dwarf_addr (dwflmod, address_size, dae - 1, dae);
   10032                 :     241302 :               printf ("\n");
   10033                 :            :             }
   10034                 :            : 
   10035         [ -  + ]:     241332 :           if (endp - readp <= (ptrdiff_t) len)
   10036                 :            :             {
   10037                 :          0 :               fputs (_("   <INVALID DATA>\n"), stdout);
   10038                 :          0 :               break;
   10039                 :            :             }
   10040                 :            : 
   10041         [ +  - ]:     482664 :           print_ops (dwflmod, dbg, 11, 11,
   10042                 :     241332 :                      cu != NULL ? cu->version : 3,
   10043                 :            :                      address_size, offset_size, cu, len, readp);
   10044                 :            : 
   10045                 :     241332 :           first = false;
   10046                 :     241332 :           readp += len;
   10047                 :            :         }
   10048                 :            :     }
   10049                 :            : }
   10050                 :            : 
   10051                 :            : struct mac_culist
   10052                 :            : {
   10053                 :            :   Dwarf_Die die;
   10054                 :            :   Dwarf_Off offset;
   10055                 :            :   Dwarf_Files *files;
   10056                 :            :   struct mac_culist *next;
   10057                 :            : };
   10058                 :            : 
   10059                 :            : 
   10060                 :            : static int
   10061                 :          0 : mac_compare (const void *p1, const void *p2)
   10062                 :            : {
   10063                 :          0 :   struct mac_culist *m1 = (struct mac_culist *) p1;
   10064                 :          0 :   struct mac_culist *m2 = (struct mac_culist *) p2;
   10065                 :            : 
   10066         [ #  # ]:          0 :   if (m1->offset < m2->offset)
   10067                 :            :     return -1;
   10068         [ #  # ]:          0 :   if (m1->offset > m2->offset)
   10069                 :          0 :     return 1;
   10070                 :            :   return 0;
   10071                 :            : }
   10072                 :            : 
   10073                 :            : 
   10074                 :            : static void
   10075                 :          0 : print_debug_macinfo_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
   10076                 :            :                              Ebl *ebl,
   10077                 :            :                              GElf_Ehdr *ehdr __attribute__ ((unused)),
   10078                 :            :                              Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
   10079                 :            : {
   10080                 :          0 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_macinfo, scn);
   10081         [ #  # ]:          0 :   if (data == NULL)
   10082                 :          0 :     return;
   10083                 :            : 
   10084                 :          0 :   printf (_("\
   10085                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
   10086                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
   10087                 :          0 :           (uint64_t) shdr->sh_offset);
   10088         [ #  # ]:          0 :   putc_unlocked ('\n', stdout);
   10089                 :            : 
   10090                 :            :   /* There is no function in libdw to iterate over the raw content of
   10091                 :            :      the section but it is easy enough to do.  */
   10092                 :            : 
   10093                 :            :   /* Get the source file information for all CUs.  */
   10094                 :          0 :   Dwarf_Off offset;
   10095                 :          0 :   Dwarf_Off ncu = 0;
   10096                 :          0 :   size_t hsize;
   10097                 :          0 :   struct mac_culist *culist = NULL;
   10098                 :          0 :   size_t nculist = 0;
   10099         [ #  # ]:          0 :   while (dwarf_nextcu (dbg, offset = ncu, &ncu, &hsize, NULL, NULL, NULL) == 0)
   10100                 :            :     {
   10101                 :          0 :       Dwarf_Die cudie;
   10102         [ #  # ]:          0 :       if (dwarf_offdie (dbg, offset + hsize, &cudie) == NULL)
   10103                 :          0 :         continue;
   10104                 :            : 
   10105                 :          0 :       Dwarf_Attribute attr;
   10106         [ #  # ]:          0 :       if (dwarf_attr (&cudie, DW_AT_macro_info, &attr) == NULL)
   10107                 :          0 :         continue;
   10108                 :            : 
   10109                 :          0 :       Dwarf_Word macoff;
   10110         [ #  # ]:          0 :       if (dwarf_formudata (&attr, &macoff) != 0)
   10111                 :          0 :         continue;
   10112                 :            : 
   10113                 :          0 :       struct mac_culist *newp = (struct mac_culist *) alloca (sizeof (*newp));
   10114                 :          0 :       newp->die = cudie;
   10115                 :          0 :       newp->offset = macoff;
   10116                 :          0 :       newp->files = NULL;
   10117                 :          0 :       newp->next = culist;
   10118                 :          0 :       culist = newp;
   10119                 :          0 :       ++nculist;
   10120                 :            :     }
   10121                 :            : 
   10122                 :            :   /* Convert the list into an array for easier consumption.  */
   10123                 :          0 :   struct mac_culist *cus = (struct mac_culist *) alloca ((nculist + 1)
   10124                 :            :                                                          * sizeof (*cus));
   10125                 :            :   /* Add sentinel.  */
   10126                 :          0 :   cus[nculist].offset = data->d_size;
   10127                 :          0 :   cus[nculist].files = (Dwarf_Files *) -1l;
   10128         [ #  # ]:          0 :   if (nculist > 0)
   10129                 :            :     {
   10130         [ #  # ]:          0 :       for (size_t cnt = nculist - 1; culist != NULL; --cnt)
   10131                 :            :         {
   10132         [ #  # ]:          0 :           assert (cnt < nculist);
   10133                 :          0 :           cus[cnt] = *culist;
   10134                 :          0 :           culist = culist->next;
   10135                 :            :         }
   10136                 :            : 
   10137                 :            :       /* Sort the array according to the offset in the .debug_macinfo
   10138                 :            :          section.  Note we keep the sentinel at the end.  */
   10139                 :          0 :       qsort (cus, nculist, sizeof (*cus), mac_compare);
   10140                 :            :     }
   10141                 :            : 
   10142                 :          0 :   const unsigned char *readp = (const unsigned char *) data->d_buf;
   10143                 :          0 :   const unsigned char *readendp = readp + data->d_size;
   10144                 :          0 :   int level = 1;
   10145                 :            : 
   10146                 :          0 :   while (readp < readendp)
   10147                 :            :     {
   10148                 :          0 :       unsigned int opcode = *readp++;
   10149                 :          0 :       unsigned int u128;
   10150                 :          0 :       unsigned int u128_2;
   10151                 :          0 :       const unsigned char *endp;
   10152                 :            : 
   10153   [ #  #  #  # ]:          0 :       switch (opcode)
   10154                 :            :         {
   10155                 :          0 :         case DW_MACINFO_define:
   10156                 :            :         case DW_MACINFO_undef:
   10157                 :            :         case DW_MACINFO_vendor_ext:
   10158                 :            :           /*  For the first two opcodes the parameters are
   10159                 :            :                 line, string
   10160                 :            :               For the latter
   10161                 :            :                 number, string.
   10162                 :            :               We can treat these cases together.  */
   10163                 :          0 :           get_uleb128 (u128, readp, readendp);
   10164                 :            : 
   10165                 :          0 :           endp = memchr (readp, '\0', readendp - readp);
   10166         [ #  # ]:          0 :           if (unlikely (endp == NULL))
   10167                 :            :             {
   10168                 :          0 :               printf (_("\
   10169                 :            : %*s*** non-terminated string at end of section"),
   10170                 :            :                       level, "");
   10171                 :          0 :               return;
   10172                 :            :             }
   10173                 :            : 
   10174         [ #  # ]:          0 :           if (opcode == DW_MACINFO_define)
   10175                 :          0 :             printf ("%*s#define %s, line %u\n",
   10176                 :            :                     level, "", (char *) readp, u128);
   10177         [ #  # ]:          0 :           else if (opcode == DW_MACINFO_undef)
   10178                 :          0 :             printf ("%*s#undef %s, line %u\n",
   10179                 :            :                     level, "", (char *) readp, u128);
   10180                 :            :           else
   10181                 :          0 :             printf (" #vendor-ext %s, number %u\n", (char *) readp, u128);
   10182                 :            : 
   10183                 :          0 :           readp = endp + 1;
   10184                 :          0 :           break;
   10185                 :            : 
   10186                 :          0 :         case DW_MACINFO_start_file:
   10187                 :            :           /* The two parameters are line and file index, in this order.  */
   10188                 :          0 :           get_uleb128 (u128, readp, readendp);
   10189         [ #  # ]:          0 :           if (readendp - readp < 1)
   10190                 :            :             {
   10191                 :          0 :               printf (_("\
   10192                 :            : %*s*** missing DW_MACINFO_start_file argument at end of section"),
   10193                 :            :                       level, "");
   10194                 :          0 :               return;
   10195                 :            :             }
   10196                 :          0 :           get_uleb128 (u128_2, readp, readendp);
   10197                 :            : 
   10198                 :            :           /* Find the CU DIE for this file.  */
   10199                 :          0 :           size_t macoff = readp - (const unsigned char *) data->d_buf;
   10200                 :          0 :           const char *fname = "???";
   10201   [ #  #  #  # ]:          0 :           if (macoff >= cus[0].offset && cus[0].offset != data->d_size)
   10202                 :            :             {
   10203   [ #  #  #  # ]:          0 :               while (macoff >= cus[1].offset && cus[1].offset != data->d_size)
   10204                 :          0 :                 ++cus;
   10205                 :            : 
   10206         [ #  # ]:          0 :               if (cus[0].files == NULL
   10207         [ #  # ]:          0 :                   && dwarf_getsrcfiles (&cus[0].die, &cus[0].files, NULL) != 0)
   10208                 :          0 :                 cus[0].files = (Dwarf_Files *) -1l;
   10209                 :            : 
   10210         [ #  # ]:          0 :               if (cus[0].files != (Dwarf_Files *) -1l)
   10211                 :          0 :                 fname = (dwarf_filesrc (cus[0].files, u128_2, NULL, NULL)
   10212         [ #  # ]:          0 :                          ?: "???");
   10213                 :            :             }
   10214                 :            : 
   10215                 :          0 :           printf ("%*sstart_file %u, [%u] %s\n",
   10216                 :            :                   level, "", u128, u128_2, fname);
   10217                 :          0 :           ++level;
   10218                 :          0 :           break;
   10219                 :            : 
   10220                 :          0 :         case DW_MACINFO_end_file:
   10221                 :          0 :           --level;
   10222                 :          0 :           printf ("%*send_file\n", level, "");
   10223                 :            :           /* Nothing more to do.  */
   10224                 :            :           break;
   10225                 :            : 
   10226                 :          0 :         default:
   10227                 :            :           // XXX gcc seems to generate files with a trailing zero.
   10228   [ #  #  #  # ]:          0 :           if (unlikely (opcode != 0 || readp != readendp))
   10229         [ #  # ]:          0 :             printf ("%*s*** invalid opcode %u\n", level, "", opcode);
   10230                 :            :           break;
   10231                 :            :         }
   10232                 :            :     }
   10233                 :            : }
   10234                 :            : 
   10235                 :            : 
   10236                 :            : static void
   10237                 :          3 : print_debug_macro_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
   10238                 :            :                            Ebl *ebl,
   10239                 :            :                            GElf_Ehdr *ehdr __attribute__ ((unused)),
   10240                 :            :                            Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
   10241                 :            : {
   10242                 :          3 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_macro, scn);
   10243         [ +  - ]:          3 :   if (data == NULL)
   10244                 :          0 :     return;
   10245                 :            : 
   10246                 :          3 :   printf (_("\
   10247                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
   10248                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
   10249                 :          3 :           (uint64_t) shdr->sh_offset);
   10250         [ -  + ]:          3 :   putc_unlocked ('\n', stdout);
   10251                 :            : 
   10252                 :            :   /* Get the source file information for all CUs.  Uses same
   10253                 :            :      datastructure as macinfo.  But uses offset field to directly
   10254                 :            :      match .debug_line offset.  And just stored in a list.  */
   10255                 :          3 :   Dwarf_Off offset;
   10256                 :          3 :   Dwarf_Off ncu = 0;
   10257                 :          3 :   size_t hsize;
   10258                 :          3 :   struct mac_culist *culist = NULL;
   10259         [ +  + ]:          7 :   while (dwarf_nextcu (dbg, offset = ncu, &ncu, &hsize, NULL, NULL, NULL) == 0)
   10260                 :            :     {
   10261                 :          4 :       Dwarf_Die cudie;
   10262         [ -  + ]:          4 :       if (dwarf_offdie (dbg, offset + hsize, &cudie) == NULL)
   10263                 :          0 :         continue;
   10264                 :            : 
   10265                 :          4 :       Dwarf_Attribute attr;
   10266         [ -  + ]:          4 :       if (dwarf_attr (&cudie, DW_AT_stmt_list, &attr) == NULL)
   10267                 :          0 :         continue;
   10268                 :            : 
   10269                 :          4 :       Dwarf_Word lineoff;
   10270         [ -  + ]:          4 :       if (dwarf_formudata (&attr, &lineoff) != 0)
   10271                 :          0 :         continue;
   10272                 :            : 
   10273                 :          4 :       struct mac_culist *newp = (struct mac_culist *) alloca (sizeof (*newp));
   10274                 :          4 :       newp->die = cudie;
   10275                 :          4 :       newp->offset = lineoff;
   10276                 :          4 :       newp->files = NULL;
   10277                 :          4 :       newp->next = culist;
   10278                 :          4 :       culist = newp;
   10279                 :            :     }
   10280                 :            : 
   10281                 :          3 :   const unsigned char *readp = (const unsigned char *) data->d_buf;
   10282                 :          3 :   const unsigned char *readendp = readp + data->d_size;
   10283                 :            : 
   10284         [ +  + ]:         11 :   while (readp < readendp)
   10285                 :            :     {
   10286                 :         16 :       printf (_(" Offset:             0x%" PRIx64 "\n"),
   10287                 :          8 :               (uint64_t) (readp - (const unsigned char *) data->d_buf));
   10288                 :            : 
   10289                 :            :       // Header, 2 byte version, 1 byte flag, optional .debug_line offset,
   10290                 :            :       // optional vendor extension macro entry table.
   10291         [ -  + ]:          8 :       if (readp + 2 > readendp)
   10292                 :            :         {
   10293                 :          0 :         invalid_data:
   10294                 :          0 :           error (0, 0, _("invalid data"));
   10295                 :          0 :           return;
   10296                 :            :         }
   10297         [ -  + ]:          8 :       const uint16_t vers = read_2ubyte_unaligned_inc (dbg, readp);
   10298                 :          8 :       printf (_(" Version:            %" PRIu16 "\n"), vers);
   10299                 :            : 
   10300                 :            :       // Version 4 is the GNU extension for DWARF4.  DWARF5 will use version
   10301                 :            :       // 5 when it gets standardized.
   10302         [ -  + ]:          8 :       if (vers != 4 && vers != 5)
   10303                 :            :         {
   10304                 :          0 :           printf (_("  unknown version, cannot parse section\n"));
   10305                 :          0 :           return;
   10306                 :            :         }
   10307                 :            : 
   10308         [ -  + ]:          8 :       if (readp + 1 > readendp)
   10309                 :          0 :         goto invalid_data;
   10310                 :          8 :       const unsigned char flag = *readp++;
   10311                 :          8 :       printf (_(" Flag:               0x%" PRIx8), flag);
   10312         [ +  + ]:          8 :       if (flag != 0)
   10313                 :            :         {
   10314                 :          4 :           printf (" (");
   10315         [ -  + ]:          4 :           if ((flag & 0x01) != 0)
   10316                 :            :             {
   10317                 :          0 :               printf ("offset_size");
   10318         [ #  # ]:          0 :               if ((flag & 0xFE) !=  0)
   10319                 :          0 :                 printf (", ");
   10320                 :            :             }
   10321         [ +  - ]:          4 :           if ((flag & 0x02) != 0)
   10322                 :            :             {
   10323                 :          4 :               printf ("debug_line_offset");
   10324         [ -  + ]:          4 :               if ((flag & 0xFC) !=  0)
   10325                 :          0 :                 printf (", ");
   10326                 :            :             }
   10327         [ -  + ]:          4 :           if ((flag & 0x04) != 0)
   10328                 :            :             {
   10329                 :          0 :               printf ("operands_table");
   10330         [ #  # ]:          0 :               if ((flag & 0xF8) !=  0)
   10331                 :          0 :                 printf (", ");
   10332                 :            :             }
   10333         [ -  + ]:          4 :           if ((flag & 0xF8) != 0)
   10334                 :          0 :             printf ("unknown");
   10335                 :          4 :           printf (")");
   10336                 :            :         }
   10337                 :          8 :       printf ("\n");
   10338                 :            : 
   10339         [ +  - ]:          8 :       unsigned int offset_len = (flag & 0x01) ? 8 : 4;
   10340                 :          8 :       printf (_(" Offset length:      %" PRIu8 "\n"), offset_len);
   10341                 :          8 :       Dwarf_Off line_offset = -1;
   10342         [ +  + ]:          8 :       if (flag & 0x02)
   10343                 :            :         {
   10344         [ -  + ]:          4 :           if (offset_len == 8)
   10345         [ #  # ]:          0 :             line_offset = read_8ubyte_unaligned_inc (dbg, readp);
   10346                 :            :           else
   10347         [ -  + ]:          4 :             line_offset = read_4ubyte_unaligned_inc (dbg, readp);
   10348                 :          4 :           printf (_(" .debug_line offset: 0x%" PRIx64 "\n"),
   10349                 :            :                   line_offset);
   10350                 :            :         }
   10351                 :            : 
   10352                 :          4 :       struct mac_culist *cu = NULL;
   10353         [ +  - ]:          4 :       if (line_offset != (Dwarf_Off) -1)
   10354                 :            :         {
   10355                 :            :           cu = culist;
   10356   [ +  -  +  + ]:          5 :           while (cu != NULL && line_offset != cu->offset)
   10357                 :          1 :             cu = cu->next;
   10358                 :            :         }
   10359                 :            : 
   10360         [ +  + ]:          8 :       Dwarf_Off str_offsets_base = str_offsets_base_off (dbg, (cu != NULL
   10361                 :            :                                                                ? cu->die.cu
   10362                 :            :                                                                : NULL));
   10363                 :            : 
   10364                 :          8 :       const unsigned char *vendor[DW_MACRO_hi_user - DW_MACRO_lo_user + 1];
   10365         [ -  + ]:          8 :       memset (vendor, 0, sizeof vendor);
   10366         [ -  + ]:          8 :       if (flag & 0x04)
   10367                 :            :         {
   10368                 :            :           // 1 byte length, for each item, 1 byte opcode, uleb128 number
   10369                 :            :           // of arguments, for each argument 1 byte form code.
   10370         [ #  # ]:          0 :           if (readp + 1 > readendp)
   10371                 :          0 :             goto invalid_data;
   10372                 :          0 :           unsigned int tlen = *readp++;
   10373                 :          0 :           printf (_("  extension opcode table, %" PRIu8 " items:\n"),
   10374                 :            :                   tlen);
   10375         [ #  # ]:          0 :           for (unsigned int i = 0; i < tlen; i++)
   10376                 :            :             {
   10377         [ #  # ]:          0 :               if (readp + 1 > readendp)
   10378                 :          0 :                 goto invalid_data;
   10379                 :          0 :               unsigned int opcode = *readp++;
   10380                 :          0 :               printf (_("    [%" PRIx8 "]"), opcode);
   10381                 :          0 :               if (opcode < DW_MACRO_lo_user
   10382         [ #  # ]:          0 :                   || opcode > DW_MACRO_hi_user)
   10383                 :          0 :                 goto invalid_data;
   10384                 :            :               // Record the start of description for this vendor opcode.
   10385                 :            :               // uleb128 nr args, 1 byte per arg form.
   10386                 :          0 :               vendor[opcode - DW_MACRO_lo_user] = readp;
   10387         [ #  # ]:          0 :               if (readp + 1 > readendp)
   10388                 :          0 :                 goto invalid_data;
   10389                 :          0 :               unsigned int args = *readp++;
   10390         [ #  # ]:          0 :               if (args > 0)
   10391                 :            :                 {
   10392                 :          0 :                   printf (_(" %" PRIu8 " arguments:"), args);
   10393                 :          0 :                   while (args > 0)
   10394                 :            :                     {
   10395         [ #  # ]:          0 :                       if (readp + 1 > readendp)
   10396                 :          0 :                         goto invalid_data;
   10397                 :          0 :                       unsigned int form = *readp++;
   10398                 :          0 :                       printf (" %s", dwarf_form_name (form));
   10399         [ #  # ]:          0 :                       if (! libdw_valid_user_form (form))
   10400                 :          0 :                         goto invalid_data;
   10401                 :          0 :                       args--;
   10402         [ #  # ]:          0 :                       if (args > 0)
   10403   [ #  #  #  # ]:          0 :                         putchar_unlocked (',');
   10404                 :            :                     }
   10405                 :            :                 }
   10406                 :            :               else
   10407                 :          0 :                 printf (_(" no arguments."));
   10408         [ #  # ]:          0 :               putchar_unlocked ('\n');
   10409                 :            :             }
   10410                 :            :         }
   10411         [ -  + ]:          8 :       putchar_unlocked ('\n');
   10412                 :            : 
   10413                 :          8 :       int level = 1;
   10414         [ -  + ]:          8 :       if (readp + 1 > readendp)
   10415                 :          0 :         goto invalid_data;
   10416                 :          8 :       unsigned int opcode = *readp++;
   10417                 :          8 :       while (opcode != 0)
   10418                 :            :         {
   10419                 :        727 :           unsigned int u128;
   10420                 :        727 :           unsigned int u128_2;
   10421                 :        727 :           const unsigned char *endp;
   10422                 :        727 :           uint64_t off;
   10423                 :            : 
   10424   [ +  +  +  -  :        727 :           switch (opcode)
          +  +  +  -  -  
             -  -  -  - ]
   10425                 :            :             {
   10426                 :          6 :             case DW_MACRO_start_file:
   10427                 :          6 :               get_uleb128 (u128, readp, readendp);
   10428         [ -  + ]:          6 :               if (readp >= readendp)
   10429                 :          0 :                 goto invalid_data;
   10430                 :          6 :               get_uleb128 (u128_2, readp, readendp);
   10431                 :            : 
   10432                 :            :               /* Find the CU DIE that matches this line offset.  */
   10433                 :          6 :               const char *fname = "???";
   10434         [ +  - ]:          6 :               if (cu != NULL)
   10435                 :            :                 {
   10436         [ +  + ]:          6 :                   if (cu->files == NULL
   10437         [ -  + ]:          4 :                       && dwarf_getsrcfiles (&cu->die, &cu->files,
   10438                 :            :                                             NULL) != 0)
   10439                 :          0 :                     cu->files = (Dwarf_Files *) -1l;
   10440                 :            : 
   10441         [ +  - ]:          6 :                   if (cu->files != (Dwarf_Files *) -1l)
   10442                 :          6 :                     fname = (dwarf_filesrc (cu->files, u128_2,
   10443         [ -  + ]:          6 :                                             NULL, NULL) ?: "???");
   10444                 :            :                 }
   10445                 :          6 :               printf ("%*sstart_file %u, [%u] %s\n",
   10446                 :            :                       level, "", u128, u128_2, fname);
   10447                 :          6 :               ++level;
   10448                 :          6 :               break;
   10449                 :            : 
   10450                 :          6 :             case DW_MACRO_end_file:
   10451                 :          6 :               --level;
   10452                 :          6 :               printf ("%*send_file\n", level, "");
   10453                 :            :               break;
   10454                 :            : 
   10455                 :          1 :             case DW_MACRO_define:
   10456                 :          1 :               get_uleb128 (u128, readp, readendp);
   10457                 :          1 :               endp = memchr (readp, '\0', readendp - readp);
   10458         [ -  + ]:          1 :               if (endp == NULL)
   10459                 :          0 :                 goto invalid_data;
   10460                 :          1 :               printf ("%*s#define %s, line %u\n",
   10461                 :            :                       level, "", readp, u128);
   10462                 :          1 :               readp = endp + 1;
   10463                 :          1 :               break;
   10464                 :            : 
   10465                 :          0 :             case DW_MACRO_undef:
   10466                 :          0 :               get_uleb128 (u128, readp, readendp);
   10467                 :          0 :               endp = memchr (readp, '\0', readendp - readp);
   10468         [ #  # ]:          0 :               if (endp == NULL)
   10469                 :          0 :                 goto invalid_data;
   10470                 :          0 :               printf ("%*s#undef %s, line %u\n",
   10471                 :            :                       level, "", readp, u128);
   10472                 :          0 :               readp = endp + 1;
   10473                 :          0 :               break;
   10474                 :            : 
   10475                 :        707 :             case DW_MACRO_define_strp:
   10476                 :        707 :               get_uleb128 (u128, readp, readendp);
   10477         [ -  + ]:        707 :               if (readp + offset_len > readendp)
   10478                 :          0 :                 goto invalid_data;
   10479         [ -  + ]:        707 :               if (offset_len == 8)
   10480         [ #  # ]:          0 :                 off = read_8ubyte_unaligned_inc (dbg, readp);
   10481                 :            :               else
   10482         [ -  + ]:        707 :                 off = read_4ubyte_unaligned_inc (dbg, readp);
   10483                 :        707 :               printf ("%*s#define %s, line %u (indirect)\n",
   10484                 :            :                       level, "", dwarf_getstring (dbg, off, NULL), u128);
   10485                 :            :               break;
   10486                 :            : 
   10487                 :          1 :             case DW_MACRO_undef_strp:
   10488                 :          1 :               get_uleb128 (u128, readp, readendp);
   10489         [ -  + ]:          1 :               if (readp + offset_len > readendp)
   10490                 :          0 :                 goto invalid_data;
   10491         [ -  + ]:          1 :               if (offset_len == 8)
   10492         [ #  # ]:          0 :                 off = read_8ubyte_unaligned_inc (dbg, readp);
   10493                 :            :               else
   10494         [ -  + ]:          1 :                 off = read_4ubyte_unaligned_inc (dbg, readp);
   10495                 :          1 :               printf ("%*s#undef %s, line %u (indirect)\n",
   10496                 :            :                       level, "", dwarf_getstring (dbg, off, NULL), u128);
   10497                 :            :               break;
   10498                 :            : 
   10499                 :          6 :             case DW_MACRO_import:
   10500         [ -  + ]:          6 :               if (readp + offset_len > readendp)
   10501                 :          0 :                 goto invalid_data;
   10502         [ -  + ]:          6 :               if (offset_len == 8)
   10503         [ #  # ]:          0 :                 off = read_8ubyte_unaligned_inc (dbg, readp);
   10504                 :            :               else
   10505         [ -  + ]:          6 :                 off = read_4ubyte_unaligned_inc (dbg, readp);
   10506                 :          6 :               printf ("%*s#include offset 0x%" PRIx64 "\n",
   10507                 :            :                       level, "", off);
   10508                 :            :               break;
   10509                 :            : 
   10510                 :          0 :             case DW_MACRO_define_sup:
   10511                 :          0 :               get_uleb128 (u128, readp, readendp);
   10512         [ #  # ]:          0 :               if (readp + offset_len > readendp)
   10513                 :          0 :                 goto invalid_data;
   10514                 :          0 :               printf ("%*s#define ", level, "");
   10515                 :          0 :               readp =  print_form_data (dbg, DW_FORM_strp_sup,
   10516                 :            :                                         readp, readendp, offset_len,
   10517                 :            :                                         str_offsets_base);
   10518                 :          0 :               printf (", line %u (sup)\n", u128);
   10519                 :            :               break;
   10520                 :            : 
   10521                 :          0 :             case DW_MACRO_undef_sup:
   10522                 :          0 :               get_uleb128 (u128, readp, readendp);
   10523         [ #  # ]:          0 :               if (readp + offset_len > readendp)
   10524                 :          0 :                 goto invalid_data;
   10525                 :          0 :               printf ("%*s#undef ", level, "");
   10526                 :          0 :               readp =  print_form_data (dbg, DW_FORM_strp_sup,
   10527                 :            :                                         readp, readendp, offset_len,
   10528                 :            :                                         str_offsets_base);
   10529                 :          0 :               printf (", line %u (sup)\n", u128);
   10530                 :            :               break;
   10531                 :            : 
   10532                 :          0 :             case DW_MACRO_import_sup:
   10533         [ #  # ]:          0 :               if (readp + offset_len > readendp)
   10534                 :          0 :                 goto invalid_data;
   10535         [ #  # ]:          0 :               if (offset_len == 8)
   10536         [ #  # ]:          0 :                 off = read_8ubyte_unaligned_inc (dbg, readp);
   10537                 :            :               else
   10538         [ #  # ]:          0 :                 off = read_4ubyte_unaligned_inc (dbg, readp);
   10539                 :            :               // XXX Needs support for reading from supplementary object file.
   10540                 :          0 :               printf ("%*s#include offset 0x%" PRIx64 " (sup)\n",
   10541                 :            :                       level, "", off);
   10542                 :            :               break;
   10543                 :            : 
   10544                 :          0 :             case DW_MACRO_define_strx:
   10545                 :          0 :               get_uleb128 (u128, readp, readendp);
   10546         [ #  # ]:          0 :               if (readp + offset_len > readendp)
   10547                 :          0 :                 goto invalid_data;
   10548                 :          0 :               printf ("%*s#define ", level, "");
   10549                 :          0 :               readp =  print_form_data (dbg, DW_FORM_strx,
   10550                 :            :                                         readp, readendp, offset_len,
   10551                 :            :                                         str_offsets_base);
   10552                 :          0 :               printf (", line %u (strx)\n", u128);
   10553                 :            :               break;
   10554                 :            : 
   10555                 :          0 :             case DW_MACRO_undef_strx:
   10556                 :          0 :               get_uleb128 (u128, readp, readendp);
   10557         [ #  # ]:          0 :               if (readp + offset_len > readendp)
   10558                 :          0 :                 goto invalid_data;
   10559                 :          0 :               printf ("%*s#undef ", level, "");
   10560                 :          0 :               readp =  print_form_data (dbg, DW_FORM_strx,
   10561                 :            :                                         readp, readendp, offset_len,
   10562                 :            :                                         str_offsets_base);
   10563                 :          0 :               printf (", line %u (strx)\n", u128);
   10564                 :            :               break;
   10565                 :            : 
   10566                 :            :             default:
   10567                 :          0 :               printf ("%*svendor opcode 0x%" PRIx8, level, "", opcode);
   10568         [ #  # ]:          0 :               if (opcode < DW_MACRO_lo_user
   10569                 :            :                   || opcode > DW_MACRO_lo_user
   10570         [ #  # ]:          0 :                   || vendor[opcode - DW_MACRO_lo_user] == NULL)
   10571                 :          0 :                 goto invalid_data;
   10572                 :            : 
   10573                 :          0 :               const unsigned char *op_desc;
   10574                 :          0 :               op_desc = vendor[opcode - DW_MACRO_lo_user];
   10575                 :            : 
   10576                 :            :               // Just skip the arguments, we cannot really interpret them,
   10577                 :            :               // but print as much as we can.
   10578                 :          0 :               unsigned int args = *op_desc++;
   10579         [ #  # ]:          0 :               while (args > 0 && readp < readendp)
   10580                 :            :                 {
   10581                 :          0 :                   unsigned int form = *op_desc++;
   10582                 :          0 :                   readp = print_form_data (dbg, form, readp, readendp,
   10583                 :            :                                            offset_len, str_offsets_base);
   10584                 :          0 :                   args--;
   10585         [ #  # ]:          0 :                   if (args > 0)
   10586         [ #  # ]:          0 :                     printf (", ");
   10587                 :            :                 }
   10588         [ #  # ]:          0 :               putchar_unlocked ('\n');
   10589                 :            :             }
   10590                 :            : 
   10591         [ -  + ]:        727 :           if (readp + 1 > readendp)
   10592                 :          0 :             goto invalid_data;
   10593                 :        727 :           opcode = *readp++;
   10594         [ +  + ]:        727 :           if (opcode == 0)
   10595   [ -  +  +  + ]:        743 :             putchar_unlocked ('\n');
   10596                 :            :         }
   10597                 :            :     }
   10598                 :            : }
   10599                 :            : 
   10600                 :            : 
   10601                 :            : /* Callback for printing global names.  */
   10602                 :            : static int
   10603                 :         34 : print_pubnames (Dwarf *dbg __attribute__ ((unused)), Dwarf_Global *global,
   10604                 :            :                 void *arg)
   10605                 :            : {
   10606                 :         34 :   int *np = (int *) arg;
   10607                 :            : 
   10608                 :         68 :   printf (_(" [%5d] DIE offset: %6" PRId64
   10609                 :            :                    ", CU DIE offset: %6" PRId64 ", name: %s\n"),
   10610                 :         34 :           (*np)++, global->die_offset, global->cu_offset, global->name);
   10611                 :            : 
   10612                 :         34 :   return 0;
   10613                 :            : }
   10614                 :            : 
   10615                 :            : 
   10616                 :            : /* Print the known exported symbols in the DWARF section '.debug_pubnames'.  */
   10617                 :            : static void
   10618                 :          8 : print_debug_pubnames_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
   10619                 :            :                               Ebl *ebl,
   10620                 :            :                               GElf_Ehdr *ehdr __attribute__ ((unused)),
   10621                 :            :                               Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
   10622                 :            : {
   10623                 :            :   /* Check section actually exists.  */
   10624         [ -  + ]:          8 :   if (get_debug_elf_data (dbg, ebl, IDX_debug_pubnames, scn) == NULL)
   10625                 :          0 :       return;
   10626                 :            : 
   10627                 :          8 :   printf (_("\nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
   10628                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
   10629                 :          8 :           (uint64_t) shdr->sh_offset);
   10630                 :            : 
   10631                 :          8 :   int n = 0;
   10632                 :          8 :   (void) dwarf_getpubnames (dbg, print_pubnames, &n, 0);
   10633                 :            : }
   10634                 :            : 
   10635                 :            : /* Print the content of the DWARF string section '.debug_str'
   10636                 :            :    or 'debug_line_str'.  */
   10637                 :            : static void
   10638                 :         47 : print_debug_str_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
   10639                 :            :                          Ebl *ebl,
   10640                 :            :                          GElf_Ehdr *ehdr __attribute__ ((unused)),
   10641                 :            :                          Elf_Scn *scn, GElf_Shdr *shdr,
   10642                 :            :                          Dwarf *dbg __attribute__ ((unused)))
   10643                 :            : {
   10644                 :         47 :   const char *name = section_name (ebl, shdr);
   10645         [ +  - ]:         47 :   int idx = ((name != NULL && strstr (name, "debug_line_str") != NULL)
   10646         [ +  - ]:         47 :              ? IDX_debug_line_str : IDX_debug_str);
   10647                 :         47 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, idx, scn);
   10648         [ +  - ]:         47 :   if (data == NULL)
   10649                 :            :     return;
   10650                 :            : 
   10651                 :         47 :   const size_t sh_size = data->d_size;
   10652                 :            : 
   10653                 :            :   /* Compute floor(log16(shdr->sh_size)).  */
   10654                 :         47 :   GElf_Addr tmp = sh_size;
   10655                 :         47 :   int digits = 1;
   10656         [ +  + ]:        168 :   while (tmp >= 16)
   10657                 :            :     {
   10658                 :        121 :       ++digits;
   10659                 :        121 :       tmp >>= 4;
   10660                 :            :     }
   10661                 :         47 :   digits = MAX (4, digits);
   10662                 :            : 
   10663                 :         47 :   printf (_("\nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"
   10664                 :            :                    " %*s  String\n"),
   10665                 :            :           elf_ndxscn (scn),
   10666                 :         47 :           section_name (ebl, shdr), (uint64_t) shdr->sh_offset,
   10667                 :            :           /* TRANS: the debugstr| prefix makes the string unique.  */
   10668         [ +  - ]:         47 :           digits + 2, sgettext ("debugstr|Offset"));
   10669                 :            : 
   10670                 :         47 :   Dwarf_Off offset = 0;
   10671         [ +  + ]:      76236 :   while (offset < sh_size)
   10672                 :            :     {
   10673                 :      76189 :       size_t len;
   10674                 :      76189 :       const char *str = (const char *) data->d_buf + offset;
   10675                 :      76189 :       const char *endp = memchr (str, '\0', sh_size - offset);
   10676         [ -  + ]:      76189 :       if (unlikely (endp == NULL))
   10677                 :            :         {
   10678                 :          0 :           printf (_(" *** error, missing string terminator\n"));
   10679                 :            :           break;
   10680                 :            :         }
   10681                 :            : 
   10682                 :      76189 :       printf (" [%*" PRIx64 "]  \"%s\"\n", digits, (uint64_t) offset, str);
   10683                 :      76189 :       len = endp - str;
   10684                 :      76189 :       offset += len + 1;
   10685                 :            :     }
   10686                 :            : }
   10687                 :            : 
   10688                 :            : static void
   10689                 :          4 : print_debug_str_offsets_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
   10690                 :            :                                  Ebl *ebl,
   10691                 :            :                                  GElf_Ehdr *ehdr __attribute__ ((unused)),
   10692                 :            :                                  Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
   10693                 :            : {
   10694                 :          4 :   Elf_Data *data = get_debug_elf_data (dbg, ebl, IDX_debug_str_offsets, scn);
   10695         [ +  - ]:          4 :   if (data == NULL)
   10696                 :            :     return;
   10697                 :            : 
   10698                 :          4 :   printf (_("\
   10699                 :            : \nDWARF section [%2zu] '%s' at offset %#" PRIx64 ":\n"),
   10700                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
   10701                 :          4 :           (uint64_t) shdr->sh_offset);
   10702                 :            : 
   10703         [ +  - ]:          4 :   if (shdr->sh_size == 0)
   10704                 :            :     return;
   10705                 :            : 
   10706                 :          4 :   size_t idx = 0;
   10707                 :          4 :   sort_listptr (&known_stroffbases, "str_offsets");
   10708                 :            : 
   10709                 :          4 :   const unsigned char *start = (const unsigned char *) data->d_buf;
   10710                 :          4 :   const unsigned char *readp = start;
   10711                 :          4 :   const unsigned char *readendp = ((const unsigned char *) data->d_buf
   10712                 :          4 :                                    + data->d_size);
   10713                 :            : 
   10714                 :          4 :   while (readp < readendp)
   10715                 :            :     {
   10716                 :            :       /* Most string offset tables will have a header.  For split
   10717                 :            :          dwarf unit GNU DebugFission didn't add one.  But they were
   10718                 :            :          also only defined for split units (main or skeleton units
   10719                 :            :          didn't have indirect strings).  So if we don't have a
   10720                 :            :          DW_AT_str_offsets_base at all and this is offset zero, then
   10721                 :            :          just start printing offsets immediately, if this is a .dwo
   10722                 :            :          section.  */
   10723                 :          4 :       Dwarf_Off off = (Dwarf_Off) (readp
   10724                 :          4 :                                    - (const unsigned char *) data->d_buf);
   10725                 :            : 
   10726                 :          4 :       printf ("Table at offset %" PRIx64 " ", off);
   10727                 :            : 
   10728         [ -  + ]:          4 :       struct listptr *listptr = get_listptr (&known_stroffbases, idx++);
   10729                 :          4 :       const unsigned char *next_unitp = readendp;
   10730                 :          0 :       uint8_t offset_size;
   10731                 :          0 :       bool has_header;
   10732         [ #  # ]:          0 :       if (listptr == NULL)
   10733                 :            :         {
   10734                 :            :           /* This can happen for .dwo files.  There is only an header
   10735                 :            :              in the case this is a version 5 split DWARF file.  */
   10736                 :          4 :           Dwarf_CU *cu;
   10737                 :          4 :           uint8_t unit_type;
   10738         [ -  + ]:          4 :           if (dwarf_get_units (dbg, NULL, &cu, NULL, &unit_type,
   10739                 :            :                                NULL, NULL) != 0)
   10740                 :            :             {
   10741                 :          0 :               error (0, 0, "Warning: Cannot find any DWARF unit.");
   10742                 :            :               /* Just guess some values.  */
   10743                 :          0 :               has_header = false;
   10744                 :          0 :               offset_size = 4;
   10745                 :            :             }
   10746         [ +  - ]:          4 :           else if (off == 0
   10747                 :          4 :                    && (unit_type == DW_UT_split_type
   10748         [ +  - ]:          4 :                        || unit_type == DW_UT_split_compile))
   10749                 :            :             {
   10750                 :          4 :               has_header = cu->version > 4;
   10751                 :          4 :               offset_size = cu->offset_size;
   10752                 :            :             }
   10753                 :            :           else
   10754                 :            :             {
   10755                 :          0 :               error (0, 0,
   10756                 :            :                      "Warning: No CU references .debug_str_offsets after %"
   10757                 :            :                      PRIx64, off);
   10758                 :          0 :               has_header = cu->version > 4;
   10759                 :          0 :               offset_size = cu->offset_size;
   10760                 :            :             }
   10761                 :          4 :           printf ("\n");
   10762                 :            :         }
   10763                 :            :       else
   10764                 :            :         {
   10765                 :            :           /* This must be DWARF5, since GNU DebugFission didn't define
   10766                 :            :              DW_AT_str_offsets_base.  */
   10767                 :          0 :           has_header = true;
   10768                 :            : 
   10769                 :          0 :           Dwarf_Die cudie;
   10770         [ #  # ]:          0 :           if (dwarf_cu_die (listptr->cu, &cudie,
   10771                 :            :                             NULL, NULL, NULL, NULL,
   10772                 :            :                             NULL, NULL) == NULL)
   10773                 :          0 :             printf ("Unknown CU (%s):\n", dwarf_errmsg (-1));
   10774                 :            :           else
   10775                 :          0 :             printf ("for CU [%6" PRIx64 "]:\n", dwarf_dieoffset (&cudie));
   10776                 :            :         }
   10777                 :            : 
   10778         [ +  + ]:          4 :       if (has_header)
   10779                 :            :         {
   10780                 :          2 :           uint64_t unit_length;
   10781                 :          2 :           uint16_t version;
   10782                 :          2 :           uint16_t padding;
   10783                 :            : 
   10784         [ -  + ]:          2 :           unit_length = read_4ubyte_unaligned_inc (dbg, readp);
   10785         [ -  + ]:          2 :           if (unlikely (unit_length == 0xffffffff))
   10786                 :            :             {
   10787         [ #  # ]:          0 :               if (unlikely (readp > readendp - 8))
   10788                 :            :                 {
   10789                 :          0 :                 invalid_data:
   10790                 :          0 :                   error (0, 0, "Invalid data");
   10791                 :          0 :                   return;
   10792                 :            :                 }
   10793         [ #  # ]:          0 :               unit_length = read_8ubyte_unaligned_inc (dbg, readp);
   10794                 :          0 :               offset_size = 8;
   10795                 :            :             }
   10796                 :            :           else
   10797                 :            :             offset_size = 4;
   10798                 :            : 
   10799                 :          2 :           printf ("\n");
   10800                 :          2 :           printf (_(" Length:        %8" PRIu64 "\n"),
   10801                 :            :                   unit_length);
   10802                 :          2 :           printf (_(" Offset size:   %8" PRIu8 "\n"),
   10803                 :            :                   offset_size);
   10804                 :            : 
   10805                 :            :           /* We need at least 2-bytes (version) + 2-bytes (padding) =
   10806                 :            :              4 bytes to complete the header.  And this unit cannot go
   10807                 :            :              beyond the section data.  */
   10808         [ +  - ]:          2 :           if (readp > readendp - 4
   10809         [ +  - ]:          2 :               || unit_length < 4
   10810         [ -  + ]:          2 :               || unit_length > (uint64_t) (readendp - readp))
   10811                 :          0 :             goto invalid_data;
   10812                 :            : 
   10813                 :          2 :           next_unitp = readp + unit_length;
   10814                 :            : 
   10815         [ -  + ]:          2 :           version = read_2ubyte_unaligned_inc (dbg, readp);
   10816                 :          2 :           printf (_(" DWARF version: %8" PRIu16 "\n"), version);
   10817                 :            : 
   10818         [ -  + ]:          2 :           if (version != 5)
   10819                 :            :             {
   10820                 :          0 :               error (0, 0, _("Unknown version"));
   10821                 :          0 :               goto next_unit;
   10822                 :            :             }
   10823                 :            : 
   10824         [ -  + ]:          2 :           padding = read_2ubyte_unaligned_inc (dbg, readp);
   10825                 :          2 :           printf (_(" Padding:       %8" PRIx16 "\n"), padding);
   10826                 :            : 
   10827         [ -  + ]:          2 :           if (listptr != NULL
   10828         [ #  # ]:          0 :               && listptr->offset != (Dwarf_Off) (readp - start))
   10829                 :            :             {
   10830                 :          0 :               error (0, 0, "String offsets index doesn't start after header");
   10831                 :          0 :               goto next_unit;
   10832                 :            :             }
   10833                 :            : 
   10834                 :          2 :           printf ("\n");
   10835                 :            :         }
   10836                 :            : 
   10837                 :          4 :       int digits = 1;
   10838                 :          4 :       size_t offsets = (next_unitp - readp) / offset_size;
   10839         [ +  + ]:          8 :       while (offsets >= 10)
   10840                 :            :         {
   10841                 :          4 :           ++digits;
   10842                 :          4 :           offsets /= 10;
   10843                 :            :         }
   10844                 :            : 
   10845                 :          4 :       unsigned int uidx = 0;
   10846                 :          4 :       size_t index_offset =  readp - (const unsigned char *) data->d_buf;
   10847                 :          4 :       printf (" Offsets start at 0x%zx:\n", index_offset);
   10848                 :         64 :       while (readp <= next_unitp - offset_size)
   10849                 :            :         {
   10850                 :         60 :           Dwarf_Word offset;
   10851         [ +  - ]:         60 :           if (offset_size == 4)
   10852         [ -  + ]:         60 :             offset = read_4ubyte_unaligned_inc (dbg, readp);
   10853                 :            :           else
   10854         [ #  # ]:          0 :             offset = read_8ubyte_unaligned_inc (dbg, readp);
   10855                 :         60 :           const char *str = dwarf_getstring (dbg, offset, NULL);
   10856   [ -  +  +  + ]:        124 :           printf (" [%*u] [%*" PRIx64 "]  \"%s\"\n",
   10857                 :         60 :                   digits, uidx++, (int) offset_size * 2, offset, str ?: "???");
   10858                 :            :         }
   10859                 :          4 :       printf ("\n");
   10860                 :            : 
   10861         [ +  - ]:          4 :       if (readp != next_unitp)
   10862         [ +  + ]:          8 :         error (0, 0, "extra %zd bytes at end of unit",
   10863                 :          0 :                (size_t) (next_unitp - readp));
   10864                 :            : 
   10865                 :          4 :     next_unit:
   10866                 :            :       readp = next_unitp;
   10867                 :            :     }
   10868                 :            : }
   10869                 :            : 
   10870                 :            : 
   10871                 :            : /* Print the content of the call frame search table section
   10872                 :            :    '.eh_frame_hdr'.  */
   10873                 :            : static void
   10874                 :         84 : print_debug_frame_hdr_section (Dwfl_Module *dwflmod __attribute__ ((unused)),
   10875                 :            :                                Ebl *ebl __attribute__ ((unused)),
   10876                 :            :                                GElf_Ehdr *ehdr __attribute__ ((unused)),
   10877                 :            :                                Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
   10878                 :            : {
   10879                 :         84 :   printf (_("\
   10880                 :            : \nCall frame search table section [%2zu] '.eh_frame_hdr':\n"),
   10881                 :            :           elf_ndxscn (scn));
   10882                 :            : 
   10883                 :         84 :   Elf_Data *data = elf_rawdata (scn, NULL);
   10884                 :            : 
   10885         [ -  + ]:         84 :   if (unlikely (data == NULL))
   10886                 :            :     {
   10887                 :          0 :       error (0, 0, _("cannot get %s content: %s"),
   10888                 :            :              ".eh_frame_hdr", elf_errmsg (-1));
   10889                 :          0 :       return;
   10890                 :            :     }
   10891                 :            : 
   10892                 :         84 :   const unsigned char *readp = data->d_buf;
   10893                 :         84 :   const unsigned char *const dataend = ((unsigned char *) data->d_buf
   10894                 :         84 :                                         + data->d_size);
   10895                 :            : 
   10896         [ -  + ]:         84 :   if (unlikely (readp + 4 > dataend))
   10897                 :            :     {
   10898                 :          0 :     invalid_data:
   10899                 :          0 :       error (0, 0, _("invalid data"));
   10900                 :          0 :       return;
   10901                 :            :     }
   10902                 :            : 
   10903                 :         84 :   unsigned int version = *readp++;
   10904                 :         84 :   unsigned int eh_frame_ptr_enc = *readp++;
   10905                 :         84 :   unsigned int fde_count_enc = *readp++;
   10906                 :         84 :   unsigned int table_enc = *readp++;
   10907                 :            : 
   10908                 :         84 :   printf (" version:          %u\n"
   10909                 :            :           " eh_frame_ptr_enc: %#x ",
   10910                 :            :           version, eh_frame_ptr_enc);
   10911                 :         84 :   print_encoding_base ("", eh_frame_ptr_enc);
   10912                 :         84 :   printf (" fde_count_enc:    %#x ", fde_count_enc);
   10913                 :         84 :   print_encoding_base ("", fde_count_enc);
   10914                 :         84 :   printf (" table_enc:        %#x ", table_enc);
   10915                 :         84 :   print_encoding_base ("", table_enc);
   10916                 :            : 
   10917                 :         84 :   uint64_t eh_frame_ptr = 0;
   10918         [ +  - ]:         84 :   if (eh_frame_ptr_enc != DW_EH_PE_omit)
   10919                 :            :     {
   10920                 :         84 :       readp = read_encoded (eh_frame_ptr_enc, readp, dataend, &eh_frame_ptr,
   10921                 :            :                             dbg);
   10922         [ -  + ]:         84 :       if (unlikely (readp == NULL))
   10923                 :          0 :         goto invalid_data;
   10924                 :            : 
   10925                 :         84 :       printf (" eh_frame_ptr:     %#" PRIx64, eh_frame_ptr);
   10926         [ +  - ]:         84 :       if ((eh_frame_ptr_enc & 0x70) == DW_EH_PE_pcrel)
   10927                 :        168 :         printf (" (offset: %#" PRIx64 ")",
   10928                 :            :                 /* +4 because of the 4 byte header of the section.  */
   10929                 :         84 :                 (uint64_t) shdr->sh_offset + 4 + eh_frame_ptr);
   10930                 :            : 
   10931         [ -  + ]:         84 :       putchar_unlocked ('\n');
   10932                 :            :     }
   10933                 :            : 
   10934                 :         84 :   uint64_t fde_count = 0;
   10935         [ +  - ]:         84 :   if (fde_count_enc != DW_EH_PE_omit)
   10936                 :            :     {
   10937                 :         84 :       readp = read_encoded (fde_count_enc, readp, dataend, &fde_count, dbg);
   10938         [ -  + ]:         84 :       if (unlikely (readp == NULL))
   10939                 :          0 :         goto invalid_data;
   10940                 :            : 
   10941                 :         84 :       printf (" fde_count:        %" PRIu64 "\n", fde_count);
   10942                 :            :     }
   10943                 :            : 
   10944   [ +  -  +  - ]:         84 :   if (fde_count == 0 || table_enc == DW_EH_PE_omit)
   10945                 :            :     return;
   10946                 :            : 
   10947                 :         84 :   puts (" Table:");
   10948                 :            : 
   10949                 :            :   /* Optimize for the most common case.  */
   10950         [ +  - ]:         84 :   if (table_enc == (DW_EH_PE_datarel | DW_EH_PE_sdata4))
   10951         [ +  + ]:      12876 :     while (fde_count > 0 && readp + 8 <= dataend)
   10952                 :            :       {
   10953         [ -  + ]:      12792 :         int32_t initial_location = read_4sbyte_unaligned_inc (dbg, readp);
   10954                 :      12792 :         uint64_t initial_offset = ((uint64_t) shdr->sh_offset
   10955                 :      12792 :                                    + (int64_t) initial_location);
   10956         [ -  + ]:      12792 :         int32_t address = read_4sbyte_unaligned_inc (dbg, readp);
   10957                 :            :         // XXX Possibly print symbol name or section offset for initial_offset
   10958         [ +  - ]:      12876 :         printf ("  %#" PRIx32 " (offset: %#6" PRIx64 ") -> %#" PRIx32
   10959                 :            :                 " fde=[%6" PRIx64 "]\n",
   10960                 :            :                 initial_location, initial_offset,
   10961                 :      12792 :                 address, address - (eh_frame_ptr + 4));
   10962                 :            :       }
   10963                 :            :   else
   10964                 :         84 :     while (0 && readp < dataend)
   10965                 :            :       {
   10966                 :            : 
   10967                 :         84 :       }
   10968                 :            : }
   10969                 :            : 
   10970                 :            : 
   10971                 :            : /* Print the content of the exception handling table section
   10972                 :            :    '.eh_frame_hdr'.  */
   10973                 :            : static void
   10974                 :          0 : print_debug_exception_table (Dwfl_Module *dwflmod __attribute__ ((unused)),
   10975                 :            :                              Ebl *ebl __attribute__ ((unused)),
   10976                 :            :                              GElf_Ehdr *ehdr __attribute__ ((unused)),
   10977                 :            :                              Elf_Scn *scn,
   10978                 :            :                              GElf_Shdr *shdr __attribute__ ((unused)),
   10979                 :            :                              Dwarf *dbg __attribute__ ((unused)))
   10980                 :            : {
   10981                 :          0 :   printf (_("\
   10982                 :            : \nException handling table section [%2zu] '.gcc_except_table':\n"),
   10983                 :            :           elf_ndxscn (scn));
   10984                 :            : 
   10985                 :          0 :   Elf_Data *data = elf_rawdata (scn, NULL);
   10986                 :            : 
   10987         [ #  # ]:          0 :   if (unlikely (data == NULL))
   10988                 :            :     {
   10989                 :          0 :       error (0, 0, _("cannot get %s content: %s"),
   10990                 :            :              ".gcc_except_table", elf_errmsg (-1));
   10991                 :          0 :       return;
   10992                 :            :     }
   10993                 :            : 
   10994                 :          0 :   const unsigned char *readp = data->d_buf;
   10995                 :          0 :   const unsigned char *const dataend = readp + data->d_size;
   10996                 :            : 
   10997         [ #  # ]:          0 :   if (unlikely (readp + 1 > dataend))
   10998                 :            :     {
   10999                 :          0 :     invalid_data:
   11000                 :          0 :       error (0, 0, _("invalid data"));
   11001                 :          0 :       return;
   11002                 :            :     }
   11003                 :          0 :   unsigned int lpstart_encoding = *readp++;
   11004                 :          0 :   printf (_(" LPStart encoding:    %#x "), lpstart_encoding);
   11005                 :          0 :   print_encoding_base ("", lpstart_encoding);
   11006         [ #  # ]:          0 :   if (lpstart_encoding != DW_EH_PE_omit)
   11007                 :            :     {
   11008                 :          0 :       uint64_t lpstart;
   11009                 :          0 :       readp = read_encoded (lpstart_encoding, readp, dataend, &lpstart, dbg);
   11010                 :          0 :       printf (" LPStart:             %#" PRIx64 "\n", lpstart);
   11011                 :            :     }
   11012                 :            : 
   11013         [ #  # ]:          0 :   if (unlikely (readp + 1 > dataend))
   11014                 :          0 :     goto invalid_data;
   11015                 :          0 :   unsigned int ttype_encoding = *readp++;
   11016                 :          0 :   printf (_(" TType encoding:      %#x "), ttype_encoding);
   11017                 :          0 :   print_encoding_base ("", ttype_encoding);
   11018                 :          0 :   const unsigned char *ttype_base = NULL;
   11019         [ #  # ]:          0 :   if (ttype_encoding != DW_EH_PE_omit)
   11020                 :            :     {
   11021                 :          0 :       unsigned int ttype_base_offset;
   11022         [ #  # ]:          0 :       if (readp >= dataend)
   11023                 :          0 :         goto invalid_data;
   11024                 :          0 :       get_uleb128 (ttype_base_offset, readp, dataend);
   11025                 :          0 :       printf (" TType base offset:   %#x\n", ttype_base_offset);
   11026         [ #  # ]:          0 :       if ((size_t) (dataend - readp) > ttype_base_offset)
   11027                 :          0 :         ttype_base = readp + ttype_base_offset;
   11028                 :            :     }
   11029                 :            : 
   11030         [ #  # ]:          0 :   if (unlikely (readp + 1 > dataend))
   11031                 :          0 :     goto invalid_data;
   11032                 :          0 :   unsigned int call_site_encoding = *readp++;
   11033                 :          0 :   printf (_(" Call site encoding:  %#x "), call_site_encoding);
   11034                 :          0 :   print_encoding_base ("", call_site_encoding);
   11035                 :          0 :   unsigned int call_site_table_len;
   11036         [ #  # ]:          0 :   if (readp >= dataend)
   11037                 :          0 :     goto invalid_data;
   11038                 :          0 :   get_uleb128 (call_site_table_len, readp, dataend);
   11039                 :            : 
   11040                 :          0 :   const unsigned char *const action_table = readp + call_site_table_len;
   11041         [ #  # ]:          0 :   if (unlikely (action_table > dataend))
   11042                 :          0 :     goto invalid_data;
   11043                 :            :   unsigned int u = 0;
   11044                 :            :   unsigned int max_action = 0;
   11045         [ #  # ]:          0 :   while (readp < action_table)
   11046                 :            :     {
   11047         [ #  # ]:          0 :       if (u == 0)
   11048                 :          0 :         puts (_("\n Call site table:"));
   11049                 :            : 
   11050                 :          0 :       uint64_t call_site_start;
   11051                 :          0 :       readp = read_encoded (call_site_encoding, readp, dataend,
   11052                 :            :                             &call_site_start, dbg);
   11053                 :          0 :       uint64_t call_site_length;
   11054                 :          0 :       readp = read_encoded (call_site_encoding, readp, dataend,
   11055                 :            :                             &call_site_length, dbg);
   11056                 :          0 :       uint64_t landing_pad;
   11057                 :          0 :       readp = read_encoded (call_site_encoding, readp, dataend,
   11058                 :            :                             &landing_pad, dbg);
   11059                 :          0 :       unsigned int action;
   11060         [ #  # ]:          0 :       if (readp >= dataend)
   11061                 :          0 :         goto invalid_data;
   11062                 :          0 :       get_uleb128 (action, readp, dataend);
   11063                 :          0 :       max_action = MAX (action, max_action);
   11064                 :          0 :       printf (_(" [%4u] Call site start:   %#" PRIx64 "\n"
   11065                 :            :                        "        Call site length:  %" PRIu64 "\n"
   11066                 :            :                        "        Landing pad:       %#" PRIx64 "\n"
   11067                 :            :                        "        Action:            %u\n"),
   11068                 :            :               u++, call_site_start, call_site_length, landing_pad, action);
   11069                 :            :     }
   11070         [ #  # ]:          0 :   if (readp != action_table)
   11071                 :          0 :     goto invalid_data;
   11072                 :            : 
   11073                 :          0 :   unsigned int max_ar_filter = 0;
   11074         [ #  # ]:          0 :   if (max_action > 0)
   11075                 :            :     {
   11076                 :          0 :       puts ("\n Action table:");
   11077                 :            : 
   11078                 :          0 :       size_t maxdata = (size_t) (dataend - action_table);
   11079   [ #  #  #  # ]:          0 :       if (max_action > maxdata || maxdata - max_action < 1)
   11080                 :            :         {
   11081                 :          0 :         invalid_action_table:
   11082                 :          0 :           fputs (_("   <INVALID DATA>\n"), stdout);
   11083                 :          0 :           return;
   11084                 :            :         }
   11085                 :            : 
   11086                 :          0 :       const unsigned char *const action_table_end
   11087                 :          0 :         = action_table + max_action + 1;
   11088                 :            : 
   11089                 :          0 :       u = 0;
   11090                 :          0 :       do
   11091                 :            :         {
   11092                 :          0 :           int ar_filter;
   11093                 :          0 :           get_sleb128 (ar_filter, readp, action_table_end);
   11094         [ #  # ]:          0 :           if (ar_filter > 0 && (unsigned int) ar_filter > max_ar_filter)
   11095                 :          0 :             max_ar_filter = ar_filter;
   11096                 :          0 :           int ar_disp;
   11097         [ #  # ]:          0 :           if (readp >= action_table_end)
   11098                 :          0 :             goto invalid_action_table;
   11099                 :          0 :           get_sleb128 (ar_disp, readp, action_table_end);
   11100                 :            : 
   11101                 :          0 :           printf (" [%4u] ar_filter:  % d\n"
   11102                 :            :                   "        ar_disp:    % -5d",
   11103                 :            :                   u, ar_filter, ar_disp);
   11104         [ #  # ]:          0 :           if (abs (ar_disp) & 1)
   11105                 :          0 :             printf (" -> [%4u]\n", u + (ar_disp + 1) / 2);
   11106         [ #  # ]:          0 :           else if (ar_disp != 0)
   11107                 :          0 :             puts (" -> ???");
   11108                 :            :           else
   11109         [ #  # ]:          0 :             putchar_unlocked ('\n');
   11110                 :          0 :           ++u;
   11111                 :            :         }
   11112         [ #  # ]:          0 :       while (readp < action_table_end);
   11113                 :            :     }
   11114                 :            : 
   11115         [ #  # ]:          0 :   if (max_ar_filter > 0 && ttype_base != NULL)
   11116                 :            :     {
   11117                 :          0 :       unsigned char dsize;
   11118                 :          0 :       puts ("\n TType table:");
   11119                 :            : 
   11120                 :            :       // XXX Not *4, size of encoding;
   11121         [ #  # ]:          0 :       switch (ttype_encoding & 7)
   11122                 :            :         {
   11123                 :            :         case DW_EH_PE_udata2:
   11124                 :            :         case DW_EH_PE_sdata2:
   11125                 :            :           dsize = 2;
   11126                 :            :           break;
   11127                 :            :         case DW_EH_PE_udata4:
   11128                 :            :         case DW_EH_PE_sdata4:
   11129                 :            :           dsize = 4;
   11130                 :            :           break;
   11131                 :            :         case DW_EH_PE_udata8:
   11132                 :            :         case DW_EH_PE_sdata8:
   11133                 :            :           dsize = 8;
   11134                 :            :           break;
   11135                 :          0 :         default:
   11136                 :          0 :           dsize = 0;
   11137                 :          0 :           error (1, 0, _("invalid TType encoding"));
   11138                 :            :         }
   11139                 :            : 
   11140                 :          0 :       if (max_ar_filter
   11141         [ #  # ]:          0 :           > (size_t) (ttype_base - (const unsigned char *) data->d_buf) / dsize)
   11142                 :          0 :         goto invalid_data;
   11143                 :            : 
   11144                 :          0 :       readp = ttype_base - max_ar_filter * dsize;
   11145                 :          0 :       do
   11146                 :            :         {
   11147                 :          0 :           uint64_t ttype;
   11148                 :          0 :           readp = read_encoded (ttype_encoding, readp, ttype_base, &ttype,
   11149                 :            :                                 dbg);
   11150                 :          0 :           printf (" [%4u] %#" PRIx64 "\n", max_ar_filter--, ttype);
   11151                 :            :         }
   11152         [ #  # ]:          0 :       while (readp < ttype_base);
   11153                 :            :     }
   11154                 :            : }
   11155                 :            : 
   11156                 :            : /* Print the content of the '.gdb_index' section.
   11157                 :            :    http://sourceware.org/gdb/current/onlinedocs/gdb/Index-Section-Format.html
   11158                 :            : */
   11159                 :            : static void
   11160                 :          2 : print_gdb_index_section (Dwfl_Module *dwflmod, Ebl *ebl,
   11161                 :            :                          GElf_Ehdr *ehdr __attribute__ ((unused)),
   11162                 :            :                          Elf_Scn *scn, GElf_Shdr *shdr, Dwarf *dbg)
   11163                 :            : {
   11164                 :          2 :   printf (_("\nGDB section [%2zu] '%s' at offset %#" PRIx64
   11165                 :            :                    " contains %" PRId64 " bytes :\n"),
   11166                 :            :           elf_ndxscn (scn), section_name (ebl, shdr),
   11167                 :          2 :           (uint64_t) shdr->sh_offset, (uint64_t) shdr->sh_size);
   11168                 :            : 
   11169                 :          2 :   Elf_Data *data = elf_rawdata (scn, NULL);
   11170                 :            : 
   11171         [ -  + ]:          2 :   if (unlikely (data == NULL))
   11172                 :            :     {
   11173                 :          0 :       error (0, 0, _("cannot get %s content: %s"),
   11174                 :            :              ".gdb_index", elf_errmsg (-1));
   11175                 :          0 :       return;
   11176                 :            :     }
   11177                 :            : 
   11178                 :            :   // .gdb_index is always in little endian.
   11179                 :          2 :   Dwarf dummy_dbg = { .other_byte_order = MY_ELFDATA != ELFDATA2LSB };
   11180                 :          2 :   dbg = &dummy_dbg;
   11181                 :            : 
   11182                 :          2 :   const unsigned char *readp = data->d_buf;
   11183                 :          2 :   const unsigned char *const dataend = readp + data->d_size;
   11184                 :            : 
   11185         [ -  + ]:          2 :   if (unlikely (readp + 4 > dataend))
   11186                 :            :     {
   11187                 :          0 :     invalid_data:
   11188                 :          0 :       error (0, 0, _("invalid data"));
   11189                 :          0 :       return;
   11190                 :            :     }
   11191                 :            : 
   11192                 :          2 :   int32_t vers = read_4ubyte_unaligned (dbg, readp);
   11193                 :          2 :   printf (_(" Version:         %" PRId32 "\n"), vers);
   11194                 :            : 
   11195                 :            :   // The only difference between version 4 and version 5 is the
   11196                 :            :   // hash used for generating the table.  Version 6 contains symbols
   11197                 :            :   // for inlined functions, older versions didn't.  Version 7 adds
   11198                 :            :   // symbol kinds.  Version 8 just indicates that it correctly includes
   11199                 :            :   // TUs for symbols.
   11200         [ -  + ]:          2 :   if (vers < 4 || vers > 8)
   11201                 :            :     {
   11202                 :          0 :       printf (_("  unknown version, cannot parse section\n"));
   11203                 :          0 :       return;
   11204                 :            :     }
   11205                 :            : 
   11206                 :          2 :   readp += 4;
   11207         [ -  + ]:          2 :   if (unlikely (readp + 4 > dataend))
   11208                 :          0 :     goto invalid_data;
   11209                 :            : 
   11210                 :          2 :   uint32_t cu_off = read_4ubyte_unaligned (dbg, readp);
   11211                 :          2 :   printf (_(" CU offset:       %#" PRIx32 "\n"), cu_off);
   11212                 :            : 
   11213                 :          2 :   readp += 4;
   11214         [ -  + ]:          2 :   if (unlikely (readp + 4 > dataend))
   11215                 :          0 :     goto invalid_data;
   11216                 :            : 
   11217                 :          2 :   uint32_t tu_off = read_4ubyte_unaligned (dbg, readp);
   11218                 :          2 :   printf (_(" TU offset:       %#" PRIx32 "\n"), tu_off);
   11219                 :            : 
   11220                 :          2 :   readp += 4;
   11221         [ -  + ]:          2 :   if (unlikely (readp + 4 > dataend))
   11222                 :          0 :     goto invalid_data;
   11223                 :            : 
   11224                 :          2 :   uint32_t addr_off = read_4ubyte_unaligned (dbg, readp);
   11225                 :          2 :   printf (_(" address offset:  %#" PRIx32 "\n"), addr_off);
   11226                 :            : 
   11227                 :          2 :   readp += 4;
   11228         [ -  + ]:          2 :   if (unlikely (readp + 4 > dataend))
   11229                 :          0 :     goto invalid_data;
   11230                 :            : 
   11231                 :          2 :   uint32_t sym_off = read_4ubyte_unaligned (dbg, readp);
   11232                 :          2 :   printf (_(" symbol offset:   %#" PRIx32 "\n"), sym_off);
   11233                 :            : 
   11234                 :          2 :   readp += 4;
   11235         [ -  + ]:          2 :   if (unlikely (readp + 4 > dataend))
   11236                 :          0 :     goto invalid_data;
   11237                 :            : 
   11238                 :          2 :   uint32_t const_off = read_4ubyte_unaligned (dbg, readp);
   11239                 :          2 :   printf (_(" constant offset: %#" PRIx32 "\n"), const_off);
   11240                 :            : 
   11241         [ -  + ]:          2 :   if (unlikely ((size_t) (dataend - (const unsigned char *) data->d_buf)
   11242                 :            :                 < const_off))
   11243                 :          0 :     goto invalid_data;
   11244                 :            : 
   11245                 :          2 :   readp = data->d_buf + cu_off;
   11246                 :            : 
   11247                 :          2 :   const unsigned char *nextp = data->d_buf + tu_off;
   11248         [ -  + ]:          2 :   if (tu_off >= data->d_size)
   11249                 :          0 :     goto invalid_data;
   11250                 :            : 
   11251                 :          2 :   size_t cu_nr = (nextp - readp) / 16;
   11252                 :            : 
   11253                 :          2 :   printf (_("\n CU list at offset %#" PRIx32
   11254                 :            :                    " contains %zu entries:\n"),
   11255                 :            :           cu_off, cu_nr);
   11256                 :            : 
   11257                 :          2 :   size_t n = 0;
   11258   [ +  -  +  + ]:          6 :   while (dataend - readp >= 16 && n < cu_nr)
   11259                 :            :     {
   11260                 :          4 :       uint64_t off = read_8ubyte_unaligned (dbg, readp);
   11261                 :          4 :       readp += 8;
   11262                 :            : 
   11263                 :          4 :       uint64_t len = read_8ubyte_unaligned (dbg, readp);
   11264                 :          4 :       readp += 8;
   11265                 :            : 
   11266                 :          4 :       printf (" [%4zu] start: %0#8" PRIx64
   11267                 :            :               ", length: %5" PRIu64 "\n", n, off, len);
   11268                 :          4 :       n++;
   11269                 :            :     }
   11270                 :            : 
   11271                 :          2 :   readp = data->d_buf + tu_off;
   11272                 :          2 :   nextp = data->d_buf + addr_off;
   11273         [ -  + ]:          2 :   if (addr_off >= data->d_size)
   11274                 :          0 :     goto invalid_data;
   11275                 :            : 
   11276                 :          2 :   size_t tu_nr = (nextp - readp) / 24;
   11277                 :            : 
   11278                 :          2 :   printf (_("\n TU list at offset %#" PRIx32
   11279                 :            :                    " contains %zu entries:\n"),
   11280                 :            :           tu_off, tu_nr);
   11281                 :            : 
   11282                 :          2 :   n = 0;
   11283   [ +  -  +  + ]:          4 :   while (dataend - readp >= 24 && n < tu_nr)
   11284                 :            :     {
   11285                 :          2 :       uint64_t off = read_8ubyte_unaligned (dbg, readp);
   11286                 :          2 :       readp += 8;
   11287                 :            : 
   11288                 :          2 :       uint64_t type = read_8ubyte_unaligned (dbg, readp);
   11289                 :          2 :       readp += 8;
   11290                 :            : 
   11291                 :          2 :       uint64_t sig = read_8ubyte_unaligned (dbg, readp);
   11292                 :          2 :       readp += 8;
   11293                 :            : 
   11294                 :          2 :       printf (" [%4zu] CU offset: %5" PRId64
   11295                 :            :               ", type offset: %5" PRId64
   11296                 :            :               ", signature: %0#8" PRIx64 "\n", n, off, type, sig);
   11297                 :          2 :       n++;
   11298                 :            :     }
   11299                 :            : 
   11300                 :          2 :   readp = data->d_buf + addr_off;
   11301                 :          2 :   nextp = data->d_buf + sym_off;
   11302         [ -  + ]:          2 :   if (sym_off >= data->d_size)
   11303                 :          0 :     goto invalid_data;
   11304                 :            : 
   11305                 :          2 :   size_t addr_nr = (nextp - readp) / 20;
   11306                 :            : 
   11307                 :          2 :   printf (_("\n Address list at offset %#" PRIx32
   11308                 :            :                    " contains %zu entries:\n"),
   11309                 :            :           addr_off, addr_nr);
   11310                 :            : 
   11311                 :          2 :   n = 0;
   11312   [ +  -  +  + ]:          6 :   while (dataend - readp >= 20 && n < addr_nr)
   11313                 :            :     {
   11314                 :          4 :       uint64_t low = read_8ubyte_unaligned (dbg, readp);
   11315                 :          4 :       readp += 8;
   11316                 :            : 
   11317                 :          4 :       uint64_t high = read_8ubyte_unaligned (dbg, readp);
   11318                 :          4 :       readp += 8;
   11319                 :            : 
   11320                 :          4 :       uint32_t idx = read_4ubyte_unaligned (dbg, readp);
   11321                 :          4 :       readp += 4;
   11322                 :            : 
   11323                 :          4 :       printf (" [%4zu] ", n);
   11324                 :          4 :       print_dwarf_addr (dwflmod, 8, low, low);
   11325                 :          4 :       printf ("..");
   11326                 :          4 :       print_dwarf_addr (dwflmod, 8, high - 1, high);
   11327                 :          4 :       printf (", CU index: %5" PRId32 "\n", idx);
   11328                 :          4 :       n++;
   11329                 :            :     }
   11330                 :            : 
   11331                 :          2 :   const unsigned char *const_start = data->d_buf + const_off;
   11332         [ -  + ]:          2 :   if (const_off >= data->d_size)
   11333                 :          0 :     goto invalid_data;
   11334                 :            : 
   11335                 :          2 :   readp = data->d_buf + sym_off;
   11336                 :          2 :   nextp = const_start;
   11337                 :          2 :   size_t sym_nr = (nextp - readp) / 8;
   11338                 :            : 
   11339                 :          2 :   printf (_("\n Symbol table at offset %#" PRIx32
   11340                 :            :                    " contains %zu slots:\n"),
   11341                 :            :           addr_off, sym_nr);
   11342                 :            : 
   11343                 :          2 :   n = 0;
   11344   [ +  -  +  + ]:       2050 :   while (dataend - readp >= 8 && n < sym_nr)
   11345                 :            :     {
   11346                 :       2048 :       uint32_t name = read_4ubyte_unaligned (dbg, readp);
   11347                 :       2048 :       readp += 4;
   11348                 :            : 
   11349                 :       2048 :       uint32_t vector = read_4ubyte_unaligned (dbg, readp);
   11350                 :       2048 :       readp += 4;
   11351                 :            : 
   11352         [ +  + ]:       2048 :       if (name != 0 || vector != 0)
   11353                 :            :         {
   11354                 :         14 :           const unsigned char *sym = const_start + name;
   11355   [ +  -  -  + ]:         14 :           if (unlikely ((size_t) (dataend - const_start) < name
   11356                 :            :                         || memchr (sym, '\0', dataend - sym) == NULL))
   11357                 :          0 :             goto invalid_data;
   11358                 :            : 
   11359                 :         14 :           printf (" [%4zu] symbol: %s, CUs: ", n, sym);
   11360                 :            : 
   11361                 :         14 :           const unsigned char *readcus = const_start + vector;
   11362         [ -  + ]:         14 :           if (unlikely ((size_t) (dataend - const_start) < vector))
   11363                 :          0 :             goto invalid_data;
   11364                 :         14 :           uint32_t cus = read_4ubyte_unaligned (dbg, readcus);
   11365                 :         14 :           while (cus--)
   11366                 :            :             {
   11367                 :         16 :               uint32_t cu_kind, cu, kind;
   11368                 :         16 :               bool is_static;
   11369                 :         16 :               readcus += 4;
   11370         [ -  + ]:         16 :               if (unlikely (readcus + 4 > dataend))
   11371                 :          0 :                 goto invalid_data;
   11372                 :         16 :               cu_kind = read_4ubyte_unaligned (dbg, readcus);
   11373                 :         16 :               cu = cu_kind & ((1 << 24) - 1);
   11374                 :         16 :               kind = (cu_kind >> 28) & 7;
   11375                 :         16 :               is_static = cu_kind & (1U << 31);
   11376         [ +  + ]:         16 :               if (cu > cu_nr - 1)
   11377                 :          2 :                 printf ("%" PRId32 "T", cu - (uint32_t) cu_nr);
   11378                 :            :               else
   11379                 :         14 :                 printf ("%" PRId32, cu);
   11380         [ +  + ]:         16 :               if (kind != 0)
   11381                 :            :                 {
   11382                 :          8 :                   printf (" (");
   11383   [ +  +  +  -  :          8 :                   switch (kind)
                      - ]
   11384                 :            :                     {
   11385                 :            :                     case 1:
   11386                 :          3 :                       printf ("type");
   11387                 :            :                       break;
   11388                 :            :                     case 2:
   11389                 :          2 :                       printf ("var");
   11390                 :            :                       break;
   11391                 :            :                     case 3:
   11392                 :          3 :                       printf ("func");
   11393                 :            :                       break;
   11394                 :            :                     case 4:
   11395                 :          0 :                       printf ("other");
   11396                 :            :                       break;
   11397                 :            :                     default:
   11398                 :          0 :                       printf ("unknown-0x%" PRIx32, kind);
   11399                 :            :                       break;
   11400                 :            :                     }
   11401         [ +  + ]:          8 :                   printf (":%c)", (is_static ? 'S' : 'G'));
   11402                 :            :                 }
   11403         [ +  + ]:         16 :               if (cus > 0)
   11404         [ +  + ]:         32 :                 printf (", ");
   11405                 :            :             }
   11406                 :         14 :           printf ("\n");
   11407                 :            :         }
   11408                 :       2048 :       n++;
   11409                 :            :     }
   11410                 :            : }
   11411                 :            : 
   11412                 :            : /* Returns true and sets split DWARF CU id if there is a split compile
   11413                 :            :    unit in the given Dwarf, and no non-split units are found (before it).  */
   11414                 :            : static bool
   11415                 :        196 : is_split_dwarf (Dwarf *dbg, uint64_t *id, Dwarf_CU **split_cu)
   11416                 :            : {
   11417                 :        196 :   Dwarf_CU *cu = NULL;
   11418         [ +  + ]:        196 :   while (dwarf_get_units (dbg, cu, &cu, NULL, NULL, NULL, NULL) == 0)
   11419                 :            :     {
   11420                 :        195 :       uint8_t unit_type;
   11421         [ +  - ]:        195 :       if (dwarf_cu_info (cu, NULL, &unit_type, NULL, NULL,
   11422                 :            :                          id, NULL, NULL) != 0)
   11423                 :        195 :         return false;
   11424                 :            : 
   11425         [ +  + ]:        195 :       if (unit_type != DW_UT_split_compile && unit_type != DW_UT_split_type)
   11426                 :            :         return false;
   11427                 :            : 
   11428                 :            :       /* We really only care about the split compile unit, the types
   11429                 :            :          should be fine and self sufficient.  Also they don't have an
   11430                 :            :          id that we can match with a skeleton unit.  */
   11431         [ +  - ]:          9 :       if (unit_type == DW_UT_split_compile)
   11432                 :            :         {
   11433                 :          9 :           *split_cu = cu;
   11434                 :          9 :           return true;
   11435                 :            :         }
   11436                 :            :     }
   11437                 :            : 
   11438                 :            :   return false;
   11439                 :            : }
   11440                 :            : 
   11441                 :            : /* Check that there is one and only one Dwfl_Module, return in arg.  */
   11442                 :            : static int
   11443                 :          9 : getone_dwflmod (Dwfl_Module *dwflmod,
   11444                 :            :                void **userdata __attribute__ ((unused)),
   11445                 :            :                const char *name __attribute__ ((unused)),
   11446                 :            :                Dwarf_Addr base __attribute__ ((unused)),
   11447                 :            :                void *arg)
   11448                 :            : {
   11449                 :          9 :   Dwfl_Module **m = (Dwfl_Module **) arg;
   11450         [ +  - ]:          9 :   if (*m != NULL)
   11451                 :            :     return DWARF_CB_ABORT;
   11452                 :          9 :   *m = dwflmod;
   11453                 :          9 :   return DWARF_CB_OK;
   11454                 :            : }
   11455                 :            : 
   11456                 :            : static void
   11457                 :        293 : print_debug (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr)
   11458                 :            : {
   11459                 :            :   /* Used for skeleton file, if necessary for split DWARF.  */
   11460                 :        293 :   Dwfl *skel_dwfl = NULL;
   11461                 :        293 :   Dwfl_Module *skel_mod = NULL;
   11462                 :        293 :   char *skel_name = NULL;
   11463                 :        293 :   Dwarf *split_dbg = NULL;
   11464                 :        293 :   Dwarf_CU *split_cu = NULL;
   11465                 :            : 
   11466                 :            :   /* Before we start the real work get a debug context descriptor.  */
   11467                 :        293 :   Dwarf_Addr dwbias;
   11468                 :        293 :   Dwarf *dbg = dwfl_module_getdwarf (dwflmod, &dwbias);
   11469                 :        293 :   Dwarf dummy_dbg =
   11470                 :            :     {
   11471                 :        293 :       .elf = ebl->elf,
   11472                 :        293 :       .other_byte_order = MY_ELFDATA != ehdr->e_ident[EI_DATA]
   11473                 :            :     };
   11474         [ +  + ]:        293 :   if (dbg == NULL)
   11475                 :            :     {
   11476         [ -  + ]:         97 :       if ((print_debug_sections & ~(section_exception|section_frame)) != 0)
   11477                 :          0 :         error (0, 0, _("cannot get debug context descriptor: %s"),
   11478                 :            :                dwfl_errmsg (-1));
   11479                 :            :       dbg = &dummy_dbg;
   11480                 :            :     }
   11481                 :            :   else
   11482                 :            :     {
   11483                 :            :       /* If we are asked about a split dwarf (.dwo) file, use the user
   11484                 :            :          provided, or find the corresponding skeleton file. If we got
   11485                 :            :          a skeleton file, replace the given dwflmod and dbg, with one
   11486                 :            :          derived from the skeleton file to provide enough context.  */
   11487                 :        196 :       uint64_t split_id;
   11488         [ +  + ]:        196 :       if (is_split_dwarf (dbg, &split_id, &split_cu))
   11489                 :            :         {
   11490         [ +  - ]:          9 :           if (dwarf_skeleton != NULL)
   11491                 :          9 :             skel_name = strdup (dwarf_skeleton);
   11492                 :            :           else
   11493                 :            :             {
   11494                 :            :               /* Replace file.dwo with file.o and see if that matches. */
   11495                 :          0 :               const char *fname;
   11496                 :          0 :               dwfl_module_info (dwflmod, NULL, NULL, NULL, NULL, NULL,
   11497                 :            :                                 &fname, NULL);
   11498         [ #  # ]:          0 :               if (fname != NULL)
   11499                 :            :                 {
   11500                 :          0 :                   size_t flen = strlen (fname);
   11501   [ #  #  #  # ]:          0 :                   if (flen > 4 && strcmp (".dwo", fname + flen - 4) == 0)
   11502                 :            :                     {
   11503                 :          0 :                       skel_name = strdup (fname);
   11504         [ #  # ]:          0 :                       if (skel_name != NULL)
   11505                 :            :                         {
   11506                 :          0 :                           skel_name[flen - 3] = 'o';
   11507                 :          0 :                           skel_name[flen - 2] = '\0';
   11508                 :            :                         }
   11509                 :            :                     }
   11510                 :            :                 }
   11511                 :            :             }
   11512                 :            : 
   11513         [ +  - ]:          9 :           if (skel_name != NULL)
   11514                 :            :             {
   11515                 :          9 :               int skel_fd = open (skel_name, O_RDONLY);
   11516         [ -  + ]:          9 :               if (skel_fd == -1)
   11517                 :          0 :                 fprintf (stderr, "Warning: Couldn't open DWARF skeleton file"
   11518                 :            :                          " '%s'\n", skel_name);
   11519                 :            :               else
   11520                 :          9 :                 skel_dwfl = create_dwfl (skel_fd, skel_name);
   11521                 :            : 
   11522         [ +  - ]:          9 :               if (skel_dwfl != NULL)
   11523                 :            :                 {
   11524         [ -  + ]:          9 :                   if (dwfl_getmodules (skel_dwfl, &getone_dwflmod,
   11525                 :            :                                        &skel_mod, 0) != 0)
   11526                 :            :                     {
   11527                 :          0 :                       fprintf (stderr, "Warning: Bad DWARF skeleton,"
   11528                 :            :                                " multiple modules '%s'\n", skel_name);
   11529                 :          0 :                       dwfl_end (skel_dwfl);
   11530                 :          0 :                       skel_mod = NULL;
   11531                 :            :                     }
   11532                 :            :                 }
   11533         [ #  # ]:          0 :               else if (skel_fd != -1)
   11534                 :          0 :                 fprintf (stderr, "Warning: Couldn't create skeleton dwfl for"
   11535                 :            :                          " '%s': %s\n", skel_name, dwfl_errmsg (-1));
   11536                 :            : 
   11537         [ +  - ]:          9 :               if (skel_mod != NULL)
   11538                 :            :                 {
   11539                 :          9 :                   Dwarf *skel_dbg = dwfl_module_getdwarf (skel_mod, &dwbias);
   11540         [ +  - ]:          9 :                   if (skel_dbg != NULL)
   11541                 :            :                     {
   11542                 :            :                       /* First check the skeleton CU DIE, only fetch
   11543                 :            :                          the split DIE if we know the id matches to
   11544                 :            :                          not unnecessary search for any split DIEs we
   11545                 :            :                          don't need. */
   11546                 :          9 :                       Dwarf_CU *cu = NULL;
   11547         [ +  - ]:         13 :                       while (dwarf_get_units (skel_dbg, cu, &cu,
   11548                 :            :                                               NULL, NULL, NULL, NULL) == 0)
   11549                 :            :                         {
   11550                 :         13 :                           uint8_t unit_type;
   11551                 :         13 :                           uint64_t skel_id;
   11552         [ +  - ]:         13 :                           if (dwarf_cu_info (cu, NULL, &unit_type, NULL, NULL,
   11553                 :            :                                              &skel_id, NULL, NULL) == 0
   11554         [ +  - ]:         13 :                               && unit_type == DW_UT_skeleton
   11555         [ +  + ]:         13 :                               && split_id == skel_id)
   11556                 :            :                             {
   11557                 :          9 :                               Dwarf_Die subdie;
   11558         [ +  - ]:          9 :                               if (dwarf_cu_info (cu, NULL, NULL, NULL,
   11559                 :            :                                                  &subdie,
   11560                 :            :                                                  NULL, NULL, NULL) == 0
   11561         [ +  - ]:          9 :                                   && dwarf_tag (&subdie) != DW_TAG_invalid)
   11562                 :            :                                 {
   11563                 :          9 :                                   split_dbg = dwarf_cu_getdwarf (subdie.cu);
   11564         [ -  + ]:          9 :                                   if (split_dbg == NULL)
   11565                 :          0 :                                     fprintf (stderr,
   11566                 :            :                                              "Warning: Couldn't get split_dbg:"
   11567                 :            :                                              " %s\n", dwarf_errmsg (-1));
   11568                 :          9 :                                   break;
   11569                 :            :                                 }
   11570                 :            :                               else
   11571                 :            :                                 {
   11572                 :            :                                   /* Everything matches up, but not
   11573                 :            :                                      according to libdw. Which means
   11574                 :            :                                      the user knew better.  So...
   11575                 :            :                                      Terrible hack... We can never
   11576                 :            :                                      destroy the underlying dwfl
   11577                 :            :                                      because it would free the wrong
   11578                 :            :                                      Dwarfs... So we leak memory...*/
   11579         [ #  # ]:          0 :                                   if (cu->split == NULL
   11580         [ #  # ]:          0 :                                       && dwarf_skeleton != NULL)
   11581                 :            :                                     {
   11582                 :          0 :                                       do_not_close_dwfl = true;
   11583                 :          0 :                                       __libdw_link_skel_split (cu, split_cu);
   11584                 :          0 :                                       split_dbg = dwarf_cu_getdwarf (split_cu);
   11585                 :          0 :                                       break;
   11586                 :            :                                     }
   11587                 :            :                                   else
   11588                 :          0 :                                     fprintf (stderr, "Warning: Couldn't get"
   11589                 :            :                                              " skeleton subdie: %s\n",
   11590                 :            :                                              dwarf_errmsg (-1));
   11591                 :            :                                 }
   11592                 :            :                             }
   11593                 :            :                         }
   11594         [ -  + ]:          9 :                       if (split_dbg == NULL)
   11595                 :          9 :                         fprintf (stderr, "Warning: '%s' didn't contain a skeleton for split id %" PRIx64 "\n", skel_name, split_id);
   11596                 :            :                     }
   11597                 :            :                   else
   11598                 :          0 :                     fprintf (stderr, "Warning: Couldn't get skeleton DWARF:"
   11599                 :            :                              " %s\n", dwfl_errmsg (-1));
   11600                 :            :                 }
   11601                 :            :             }
   11602                 :            : 
   11603         [ +  - ]:          9 :           if (split_dbg != NULL)
   11604                 :            :             {
   11605                 :          9 :               dbg = split_dbg;
   11606                 :          9 :               dwflmod = skel_mod;
   11607                 :            :             }
   11608         [ #  # ]:          0 :           else if (skel_name == NULL)
   11609                 :          0 :             fprintf (stderr,
   11610                 :            :                      "Warning: split DWARF file, but no skeleton found.\n");
   11611                 :            :         }
   11612         [ -  + ]:        187 :       else if (dwarf_skeleton != NULL)
   11613                 :        196 :         fprintf (stderr, "Warning: DWARF skeleton given,"
   11614                 :            :                  " but not a split DWARF file\n");
   11615                 :            :     }
   11616                 :            : 
   11617                 :            :   /* Get the section header string table index.  */
   11618                 :        293 :   size_t shstrndx;
   11619         [ -  + ]:        293 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
   11620                 :          0 :     error_exit (0, _("cannot get section header string table index"));
   11621                 :            : 
   11622                 :            :   /* If the .debug_info section is listed as implicitly required then
   11623                 :            :      we must make sure to handle it before handling any other debug
   11624                 :            :      section.  Various other sections depend on the CU DIEs being
   11625                 :            :      scanned (silently) first.  */
   11626                 :        293 :   bool implicit_info = (implicit_debug_sections & section_info) != 0;
   11627                 :        293 :   bool explicit_info = (print_debug_sections & section_info) != 0;
   11628         [ +  + ]:        293 :   if (implicit_info)
   11629                 :            :     {
   11630                 :            :       Elf_Scn *scn = NULL;
   11631         [ +  - ]:       1534 :       while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
   11632                 :            :         {
   11633                 :       1534 :           GElf_Shdr shdr_mem;
   11634                 :       1534 :           GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
   11635                 :            : 
   11636   [ +  -  +  + ]:       1534 :           if (shdr != NULL && shdr->sh_type == SHT_PROGBITS)
   11637                 :            :             {
   11638                 :       1212 :               const char *name = elf_strptr (ebl->elf, shstrndx,
   11639                 :        606 :                                              shdr->sh_name);
   11640         [ -  + ]:        606 :               if (name == NULL)
   11641                 :          0 :                 continue;
   11642                 :            : 
   11643         [ +  + ]:        606 :               if (strcmp (name, ".debug_info") == 0
   11644         [ +  + ]:        542 :                   || strcmp (name, ".debug_info.dwo") == 0
   11645         [ +  + ]:        533 :                   || strcmp (name, ".zdebug_info") == 0
   11646         [ +  - ]:        527 :                   || strcmp (name, ".zdebug_info.dwo") == 0
   11647         [ +  + ]:        527 :                   || strcmp (name, ".gnu.debuglto_.debug_info") == 0)
   11648                 :            :                 {
   11649                 :         80 :                   print_debug_info_section (dwflmod, ebl, ehdr,
   11650                 :            :                                             scn, shdr, dbg);
   11651                 :         80 :                   break;
   11652                 :            :                 }
   11653                 :            :             }
   11654                 :            :         }
   11655                 :         80 :       print_debug_sections &= ~section_info;
   11656                 :         80 :       implicit_debug_sections &= ~section_info;
   11657                 :            :     }
   11658                 :            : 
   11659                 :            :   /* Look through all the sections for the debugging sections to print.  */
   11660                 :            :   Elf_Scn *scn = NULL;
   11661         [ +  + ]:       9113 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
   11662                 :            :     {
   11663                 :       8820 :       GElf_Shdr shdr_mem;
   11664                 :       8820 :       GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
   11665                 :            : 
   11666   [ +  -  +  + ]:       8820 :       if (shdr != NULL && shdr->sh_type == SHT_PROGBITS)
   11667                 :            :         {
   11668                 :       3747 :           static const struct
   11669                 :            :           {
   11670                 :            :             const char *name;
   11671                 :            :             enum section_e bitmask;
   11672                 :            :             void (*fp) (Dwfl_Module *, Ebl *,
   11673                 :            :                         GElf_Ehdr *, Elf_Scn *, GElf_Shdr *, Dwarf *);
   11674                 :            :           } debug_sections[] =
   11675                 :            :             {
   11676                 :            : #define NEW_SECTION(name) \
   11677                 :            :               { ".debug_" #name, section_##name, print_debug_##name##_section }
   11678                 :            :               NEW_SECTION (abbrev),
   11679                 :            :               NEW_SECTION (addr),
   11680                 :            :               NEW_SECTION (aranges),
   11681                 :            :               NEW_SECTION (frame),
   11682                 :            :               NEW_SECTION (info),
   11683                 :            :               NEW_SECTION (types),
   11684                 :            :               NEW_SECTION (line),
   11685                 :            :               NEW_SECTION (loc),
   11686                 :            :               /* loclists is loc for DWARF5.  */
   11687                 :            :               { ".debug_loclists", section_loc,
   11688                 :            :                 print_debug_loclists_section },
   11689                 :            :               NEW_SECTION (pubnames),
   11690                 :            :               NEW_SECTION (str),
   11691                 :            :               /* A DWARF5 specialised debug string section.  */
   11692                 :            :               { ".debug_line_str", section_str,
   11693                 :            :                 print_debug_str_section },
   11694                 :            :               /* DWARF5 string offsets table.  */
   11695                 :            :               { ".debug_str_offsets", section_str,
   11696                 :            :                 print_debug_str_offsets_section },
   11697                 :            :               NEW_SECTION (macinfo),
   11698                 :            :               NEW_SECTION (macro),
   11699                 :            :               NEW_SECTION (ranges),
   11700                 :            :               /* rnglists is ranges for DWARF5.  */
   11701                 :            :               { ".debug_rnglists", section_ranges,
   11702                 :            :                 print_debug_rnglists_section },
   11703                 :            :               { ".eh_frame", section_frame | section_exception,
   11704                 :            :                 print_debug_frame_section },
   11705                 :            :               { ".eh_frame_hdr", section_frame | section_exception,
   11706                 :            :                 print_debug_frame_hdr_section },
   11707                 :            :               { ".gcc_except_table", section_frame | section_exception,
   11708                 :            :                 print_debug_exception_table },
   11709                 :            :               { ".gdb_index", section_gdb_index, print_gdb_index_section }
   11710                 :            :             };
   11711                 :       3747 :           const int ndebug_sections = (sizeof (debug_sections)
   11712                 :            :                                        / sizeof (debug_sections[0]));
   11713                 :       7494 :           const char *name = elf_strptr (ebl->elf, shstrndx,
   11714                 :       3747 :                                          shdr->sh_name);
   11715         [ -  + ]:       3747 :           if (name == NULL)
   11716                 :          0 :             continue;
   11717                 :            : 
   11718                 :            :           int n;
   11719         [ +  + ]:      61634 :           for (n = 0; n < ndebug_sections; ++n)
   11720                 :            :             {
   11721                 :      59520 :               size_t dbglen = strlen (debug_sections[n].name);
   11722                 :      59520 :               size_t scnlen = strlen (name);
   11723         [ +  + ]:      59520 :               if ((strncmp (name, debug_sections[n].name, dbglen) == 0
   11724         [ +  + ]:       1704 :                    && (dbglen == scnlen
   11725         [ +  + ]:        212 :                        || (scnlen == dbglen + 4
   11726         [ +  + ]:        194 :                            && strstr (name, ".dwo") == name + dbglen)))
   11727   [ +  +  +  + ]:      57974 :                   || (name[0] == '.' && name[1] == 'z'
   11728         [ +  - ]:        566 :                       && debug_sections[n].name[1] == 'd'
   11729         [ +  + ]:        566 :                       && strncmp (&name[2], &debug_sections[n].name[1],
   11730                 :            :                                   dbglen - 1) == 0
   11731         [ -  + ]:         82 :                       && (scnlen == dbglen + 1
   11732         [ #  # ]:          0 :                           || (scnlen == dbglen + 5
   11733         [ #  # ]:          0 :                               && strstr (name, ".dwo") == name + dbglen + 1)))
   11734         [ +  + ]:      57892 :                   || (scnlen > 14 /* .gnu.debuglto_ prefix. */
   11735         [ +  + ]:       4094 :                       && startswith (name, ".gnu.debuglto_")
   11736         [ +  + ]:         36 :                       && strcmp (&name[14], debug_sections[n].name) == 0)
   11737                 :            : )
   11738                 :            :                 {
   11739                 :       1633 :                   if ((print_debug_sections | implicit_debug_sections)
   11740         [ +  + ]:       1633 :                       & debug_sections[n].bitmask)
   11741                 :        551 :                     debug_sections[n].fp (dwflmod, ebl, ehdr, scn, shdr, dbg);
   11742                 :            :                   break;
   11743                 :            :                 }
   11744                 :            :             }
   11745                 :            :         }
   11746                 :            :     }
   11747                 :            : 
   11748                 :        293 :   dwfl_end (skel_dwfl);
   11749                 :        293 :   free (skel_name);
   11750                 :            : 
   11751                 :            :   /* Turn implicit and/or explicit back on in case we go over another file.  */
   11752         [ +  + ]:        293 :   if (implicit_info)
   11753                 :         80 :     implicit_debug_sections |= section_info;
   11754         [ +  + ]:        293 :   if (explicit_info)
   11755                 :         64 :     print_debug_sections |= section_info;
   11756                 :            : 
   11757                 :        293 :   reset_listptr (&known_locsptr);
   11758                 :        293 :   reset_listptr (&known_loclistsptr);
   11759                 :        293 :   reset_listptr (&known_rangelistptr);
   11760                 :        293 :   reset_listptr (&known_rnglistptr);
   11761                 :        293 :   reset_listptr (&known_addrbases);
   11762                 :        293 :   reset_listptr (&known_stroffbases);
   11763                 :        293 : }
   11764                 :            : 
   11765                 :            : 
   11766                 :            : #define ITEM_INDENT             4
   11767                 :            : #define WRAP_COLUMN             75
   11768                 :            : 
   11769                 :            : /* Print "NAME: FORMAT", wrapping when output text would make the line
   11770                 :            :    exceed WRAP_COLUMN.  Unpadded numbers look better for the core items
   11771                 :            :    but this function is also used for registers which should be printed
   11772                 :            :    aligned.  Fortunately registers output uses fixed fields width (such
   11773                 :            :    as %11d) for the alignment.
   11774                 :            : 
   11775                 :            :    Line breaks should not depend on the particular values although that
   11776                 :            :    may happen in some cases of the core items.  */
   11777                 :            : 
   11778                 :            : static unsigned int
   11779                 :            : __attribute__ ((format (printf, 6, 7)))
   11780                 :        821 : print_core_item (unsigned int colno, char sep, unsigned int wrap,
   11781                 :            :                  size_t name_width, const char *name, const char *format, ...)
   11782                 :            : {
   11783                 :        821 :   size_t len = strlen (name);
   11784                 :        821 :   if (name_width < len)
   11785                 :            :     name_width = len;
   11786                 :            : 
   11787                 :        821 :   char *out;
   11788                 :        821 :   va_list ap;
   11789                 :        821 :   va_start (ap, format);
   11790                 :        821 :   int out_len = vasprintf (&out, format, ap);
   11791                 :        821 :   va_end (ap);
   11792         [ -  + ]:        821 :   if (out_len == -1)
   11793                 :          0 :     error_exit (0, _("memory exhausted"));
   11794                 :            : 
   11795                 :        821 :   size_t n = name_width + sizeof ": " - 1 + out_len;
   11796                 :            : 
   11797         [ +  + ]:        821 :   if (colno == 0)
   11798                 :            :     {
   11799                 :         51 :       printf ("%*s", ITEM_INDENT, "");
   11800                 :         51 :       colno = ITEM_INDENT + n;
   11801                 :            :     }
   11802         [ +  + ]:        770 :   else if (colno + 2 + n < wrap)
   11803                 :            :     {
   11804                 :        468 :       printf ("%c ", sep);
   11805                 :        468 :       colno += 2 + n;
   11806                 :            :     }
   11807                 :            :   else
   11808                 :            :     {
   11809                 :        302 :       printf ("\n%*s", ITEM_INDENT, "");
   11810                 :        302 :       colno = ITEM_INDENT + n;
   11811                 :            :     }
   11812                 :            : 
   11813                 :        821 :   printf ("%s: %*s%s", name, (int) (name_width - len), "", out);
   11814                 :            : 
   11815                 :        821 :   free (out);
   11816                 :            : 
   11817                 :        821 :   return colno;
   11818                 :            : }
   11819                 :            : 
   11820                 :            : static const void *
   11821                 :        931 : convert (Elf *core, Elf_Type type, uint_fast16_t count,
   11822                 :            :          void *value, const void *data, size_t size)
   11823                 :            : {
   11824                 :       1862 :   Elf_Data valuedata =
   11825                 :            :     {
   11826                 :            :       .d_type = type,
   11827                 :            :       .d_buf = value,
   11828         [ +  + ]:        931 :       .d_size = size ?: gelf_fsize (core, type, count, EV_CURRENT),
   11829                 :            :       .d_version = EV_CURRENT,
   11830                 :            :     };
   11831                 :        931 :   Elf_Data indata =
   11832                 :            :     {
   11833                 :            :       .d_type = type,
   11834                 :            :       .d_buf = (void *) data,
   11835                 :            :       .d_size = valuedata.d_size,
   11836                 :            :       .d_version = EV_CURRENT,
   11837                 :            :     };
   11838                 :            : 
   11839                 :        931 :   Elf_Data *d = (gelf_getclass (core) == ELFCLASS32
   11840         [ +  + ]:        931 :                  ? elf32_xlatetom : elf64_xlatetom)
   11841                 :        931 :     (&valuedata, &indata, elf_getident (core, NULL)[EI_DATA]);
   11842         [ -  + ]:        931 :   if (d == NULL)
   11843                 :          0 :     error_exit (0, _("cannot convert core note data: %s"),
   11844                 :            :                 elf_errmsg (-1));
   11845                 :            : 
   11846                 :        931 :   return data + indata.d_size;
   11847                 :            : }
   11848                 :            : 
   11849                 :            : typedef uint8_t GElf_Byte;
   11850                 :            : 
   11851                 :            : static unsigned int
   11852                 :        400 : handle_core_item (Elf *core, const Ebl_Core_Item *item, const void *desc,
   11853                 :            :                   unsigned int colno, size_t *repeated_size)
   11854                 :            : {
   11855         [ +  + ]:        400 :   uint_fast16_t count = item->count ?: 1;
   11856                 :            :   /* Ebl_Core_Item count is always a small number.
   11857                 :            :      Make sure the backend didn't put in some large bogus value.  */
   11858         [ -  + ]:         62 :   assert (count < 128);
   11859                 :            : 
   11860                 :            : #define TYPES                                                                 \
   11861                 :            :   DO_TYPE (BYTE, Byte, "0x%.2" PRIx8, "%" PRId8);                         \
   11862                 :            :   DO_TYPE (HALF, Half, "0x%.4" PRIx16, "%" PRId16);                       \
   11863                 :            :   DO_TYPE (WORD, Word, "0x%.8" PRIx32, "%" PRId32);                       \
   11864                 :            :   DO_TYPE (SWORD, Sword, "%" PRId32, "%" PRId32);                         \
   11865                 :            :   DO_TYPE (XWORD, Xword, "0x%.16" PRIx64, "%" PRId64);                            \
   11866                 :            :   DO_TYPE (SXWORD, Sxword, "%" PRId64, "%" PRId64)
   11867                 :            : 
   11868                 :            : #define DO_TYPE(NAME, Name, hex, dec) GElf_##Name Name
   11869                 :        400 :   typedef union { TYPES; } value_t;
   11870                 :        400 :   void *data = alloca (count * sizeof (value_t));
   11871                 :            : #undef DO_TYPE
   11872                 :            : 
   11873                 :            : #define DO_TYPE(NAME, Name, hex, dec) \
   11874                 :            :     GElf_##Name *value_##Name __attribute__((unused)) = data
   11875                 :        400 :   TYPES;
   11876                 :            : #undef DO_TYPE
   11877                 :            : 
   11878                 :        400 :   size_t size = gelf_fsize (core, item->type, count, EV_CURRENT);
   11879                 :        400 :   size_t convsize = size;
   11880         [ +  + ]:        400 :   if (repeated_size != NULL)
   11881                 :            :     {
   11882   [ +  -  -  + ]:          1 :       if (*repeated_size > size && (item->format == 'b' || item->format == 'B'))
   11883                 :            :         {
   11884                 :          0 :           data = alloca (*repeated_size);
   11885                 :          0 :           count *= *repeated_size / size;
   11886                 :          0 :           convsize = count * size;
   11887                 :          0 :           *repeated_size -= convsize;
   11888                 :            :         }
   11889   [ +  -  -  + ]:          1 :       else if (item->count != 0 || item->format != '\n')
   11890                 :          0 :         *repeated_size -= size;
   11891                 :            :     }
   11892                 :            : 
   11893                 :        400 :   convert (core, item->type, count, data, desc + item->offset, convsize);
   11894                 :            : 
   11895                 :        400 :   Elf_Type type = item->type;
   11896         [ +  + ]:        400 :   if (type == ELF_T_ADDR)
   11897         [ +  - ]:          1 :     type = gelf_getclass (core) == ELFCLASS32 ? ELF_T_WORD : ELF_T_XWORD;
   11898                 :            : 
   11899   [ +  +  +  +  :        400 :   switch (item->format)
             +  +  +  -  
                      + ]
   11900                 :            :     {
   11901                 :        193 :     case 'd':
   11902         [ -  + ]:        193 :       assert (count == 1);
   11903   [ +  +  +  +  :        193 :       switch (type)
                -  +  - ]
   11904                 :            :         {
   11905                 :            : #define DO_TYPE(NAME, Name, hex, dec)                                         \
   11906                 :            :           case ELF_T_##NAME:                                                  \
   11907                 :            :             colno = print_core_item (colno, ',', WRAP_COLUMN,                 \
   11908                 :            :                                      0, item->name, dec, value_##Name[0]); \
   11909                 :            :             break
   11910                 :        193 :           TYPES;
   11911                 :            : #undef DO_TYPE
   11912                 :          0 :         default:
   11913                 :          0 :           abort ();
   11914                 :            :         }
   11915                 :            :       break;
   11916                 :            : 
   11917                 :        111 :     case 'x':
   11918         [ -  + ]:        111 :       assert (count == 1);
   11919   [ -  -  +  -  :        111 :       switch (type)
                +  -  - ]
   11920                 :            :         {
   11921                 :            : #define DO_TYPE(NAME, Name, hex, dec)                                         \
   11922                 :            :           case ELF_T_##NAME:                                                  \
   11923                 :            :             colno = print_core_item (colno, ',', WRAP_COLUMN,                 \
   11924                 :            :                                      0, item->name, hex, value_##Name[0]);      \
   11925                 :            :             break
   11926                 :        111 :           TYPES;
   11927                 :            : #undef DO_TYPE
   11928                 :          0 :         default:
   11929                 :          0 :           abort ();
   11930                 :            :         }
   11931                 :            :       break;
   11932                 :            : 
   11933                 :         22 :     case 'b':
   11934                 :            :     case 'B':
   11935         [ -  + ]:         22 :       assert (size % sizeof (unsigned int) == 0);
   11936                 :         22 :       unsigned int nbits = count * size * 8;
   11937                 :         22 :       unsigned int pop = 0;
   11938         [ +  + ]:         56 :       for (const unsigned int *i = data; (void *) i < data + count * size; ++i)
   11939                 :         34 :         pop += __builtin_popcount (*i);
   11940                 :         22 :       bool negate = pop > nbits / 2;
   11941                 :         22 :       const unsigned int bias = item->format == 'b';
   11942                 :            : 
   11943                 :         22 :       {
   11944         [ -  + ]:         22 :         char printed[(negate ? nbits - pop : pop) * 16 + 1];
   11945                 :         22 :         char *p = printed;
   11946                 :         22 :         *p = '\0';
   11947                 :            : 
   11948                 :         22 :         if (BYTE_ORDER != LITTLE_ENDIAN && size > sizeof (unsigned int))
   11949                 :            :           {
   11950                 :            :             assert (size == sizeof (unsigned int) * 2);
   11951                 :            :             for (unsigned int *i = data;
   11952                 :            :                  (void *) i < data + count * size; i += 2)
   11953                 :            :               {
   11954                 :            :                 unsigned int w = i[1];
   11955                 :            :                 i[1] = i[0];
   11956                 :            :                 i[0] = w;
   11957                 :            :               }
   11958                 :            :           }
   11959                 :            : 
   11960                 :         22 :         unsigned int lastbit = 0;
   11961                 :         22 :         unsigned int run = 0;
   11962                 :         22 :         for (const unsigned int *i = data;
   11963         [ +  + ]:         56 :              (void *) i < data + count * size; ++i)
   11964                 :            :           {
   11965                 :         34 :             unsigned int bit = ((void *) i - data) * 8;
   11966         [ -  + ]:         34 :             unsigned int w = negate ? ~*i : *i;
   11967         [ -  + ]:         34 :             while (w != 0)
   11968                 :            :               {
   11969                 :            :                 /* Note that a right shift equal to (or greater than)
   11970                 :            :                    the number of bits of w is undefined behaviour.  In
   11971                 :            :                    particular when the least significant bit is bit 32
   11972                 :            :                    (w = 0x8000000) then w >>= n is undefined.  So
   11973                 :            :                    explicitly handle that case separately.  */
   11974                 :          0 :                 unsigned int n = ffs (w);
   11975         [ #  # ]:          0 :                 if (n < sizeof (w) * 8)
   11976                 :          0 :                   w >>= n;
   11977                 :            :                 else
   11978                 :            :                   w = 0;
   11979                 :          0 :                 bit += n;
   11980                 :            : 
   11981   [ #  #  #  # ]:          0 :                 if (lastbit != 0 && lastbit + 1 == bit)
   11982                 :          0 :                   ++run;
   11983                 :            :                 else
   11984                 :            :                   {
   11985         [ #  # ]:          0 :                     if (lastbit == 0)
   11986                 :          0 :                       p += sprintf (p, "%u", bit - bias);
   11987         [ #  # ]:          0 :                     else if (run == 0)
   11988                 :          0 :                       p += sprintf (p, ",%u", bit - bias);
   11989                 :            :                     else
   11990                 :          0 :                       p += sprintf (p, "-%u,%u", lastbit - bias, bit - bias);
   11991                 :            :                     run = 0;
   11992                 :            :                   }
   11993                 :            : 
   11994                 :            :                 lastbit = bit;
   11995                 :            :               }
   11996                 :            :           }
   11997   [ -  +  -  - ]:         22 :         if (lastbit > 0 && run > 0 && lastbit + 1 != nbits)
   11998                 :          0 :           p += sprintf (p, "-%u", lastbit - bias);
   11999                 :            : 
   12000         [ +  - ]:         44 :         colno = print_core_item (colno, ',', WRAP_COLUMN, 0, item->name,
   12001                 :            :                                  negate ? "~<%s>" : "<%s>", printed);
   12002                 :            :       }
   12003                 :         22 :       break;
   12004                 :            : 
   12005                 :         44 :     case 'T':
   12006                 :            :     case (char) ('T'|0x80):
   12007         [ -  + ]:         44 :       assert (count == 2);
   12008                 :         44 :       Dwarf_Word sec;
   12009                 :         44 :       Dwarf_Word usec;
   12010   [ -  -  +  -  :         44 :       switch (type)
                +  -  - ]
   12011                 :            :         {
   12012                 :            : #define DO_TYPE(NAME, Name, hex, dec)                                         \
   12013                 :            :           case ELF_T_##NAME:                                                  \
   12014                 :            :             sec = value_##Name[0];                                            \
   12015                 :            :             usec = value_##Name[1];                                           \
   12016                 :            :             break
   12017                 :         44 :           TYPES;
   12018                 :            : #undef DO_TYPE
   12019                 :          0 :         default:
   12020                 :          0 :           abort ();
   12021                 :            :         }
   12022         [ -  + ]:         44 :       if (unlikely (item->format == (char) ('T'|0x80)))
   12023                 :            :         {
   12024                 :            :           /* This is a hack for an ill-considered 64-bit ABI where
   12025                 :            :              tv_usec is actually a 32-bit field with 32 bits of padding
   12026                 :            :              rounding out struct timeval.  We've already converted it as
   12027                 :            :              a 64-bit field.  For little-endian, this just means the
   12028                 :            :              high half is the padding; it's presumably zero, but should
   12029                 :            :              be ignored anyway.  For big-endian, it means the 32-bit
   12030                 :            :              field went into the high half of USEC.  */
   12031                 :          0 :           GElf_Ehdr ehdr_mem;
   12032                 :          0 :           GElf_Ehdr *ehdr = gelf_getehdr (core, &ehdr_mem);
   12033         [ #  # ]:          0 :           if (likely (ehdr->e_ident[EI_DATA] == ELFDATA2MSB))
   12034                 :          0 :             usec >>= 32;
   12035                 :            :           else
   12036                 :          0 :             usec &= UINT32_MAX;
   12037                 :            :         }
   12038                 :         44 :       colno = print_core_item (colno, ',', WRAP_COLUMN, 0, item->name,
   12039                 :            :                                "%" PRIu64 ".%.6" PRIu64, sec, usec);
   12040                 :         44 :       break;
   12041                 :            : 
   12042                 :          9 :     case 'c':
   12043         [ -  + ]:          9 :       assert (count == 1);
   12044                 :          9 :       colno = print_core_item (colno, ',', WRAP_COLUMN, 0, item->name,
   12045                 :          9 :                                "%c", value_Byte[0]);
   12046                 :          9 :       break;
   12047                 :            : 
   12048                 :         18 :     case 's':
   12049                 :         18 :       colno = print_core_item (colno, ',', WRAP_COLUMN, 0, item->name,
   12050                 :            :                                "%.*s", (int) count, value_Byte);
   12051                 :         18 :       break;
   12052                 :            : 
   12053                 :          1 :     case '\n':
   12054                 :            :       /* This is a list of strings separated by '\n'.  */
   12055         [ -  + ]:          1 :       assert (item->count == 0);
   12056         [ -  + ]:          1 :       assert (repeated_size != NULL);
   12057         [ -  + ]:          1 :       assert (item->name == NULL);
   12058         [ -  + ]:          1 :       if (unlikely (item->offset >= *repeated_size))
   12059                 :            :         break;
   12060                 :            : 
   12061                 :          1 :       const char *s = desc + item->offset;
   12062                 :          1 :       size = *repeated_size - item->offset;
   12063                 :          1 :       *repeated_size = 0;
   12064         [ +  - ]:         48 :       while (size > 0)
   12065                 :            :         {
   12066                 :         48 :           const char *eol = memchr (s, '\n', size);
   12067                 :         48 :           int len = size;
   12068         [ +  + ]:         48 :           if (eol != NULL)
   12069                 :         47 :             len = eol - s;
   12070                 :         48 :           printf ("%*s%.*s\n", ITEM_INDENT, "", len, s);
   12071         [ +  + ]:         48 :           if (eol == NULL)
   12072                 :            :             break;
   12073                 :         47 :           size -= eol + 1 - s;
   12074                 :         47 :           s = eol + 1;
   12075                 :            :         }
   12076                 :            : 
   12077                 :            :       colno = WRAP_COLUMN;
   12078                 :            :       break;
   12079                 :            : 
   12080                 :            :     case 'h':
   12081                 :            :       break;
   12082                 :            : 
   12083                 :          0 :     default:
   12084                 :          0 :       error (0, 0, "XXX not handling format '%c' for %s",
   12085                 :            :              item->format, item->name);
   12086                 :            :       break;
   12087                 :            :     }
   12088                 :            : 
   12089                 :            : #undef TYPES
   12090                 :            : 
   12091                 :          0 :   return colno;
   12092                 :            : }
   12093                 :            : 
   12094                 :            : 
   12095                 :            : /* Sort items by group, and by layout offset within each group.  */
   12096                 :            : static int
   12097                 :        895 : compare_core_items (const void *a, const void *b)
   12098                 :            : {
   12099                 :        895 :   const Ebl_Core_Item *const *p1 = a;
   12100                 :        895 :   const Ebl_Core_Item *const *p2 = b;
   12101                 :        895 :   const Ebl_Core_Item *item1 = *p1;
   12102                 :        895 :   const Ebl_Core_Item *item2 = *p2;
   12103                 :            : 
   12104                 :        895 :   return ((item1->group == item2->group ? 0
   12105         [ +  + ]:        895 :            : strcmp (item1->group, item2->group))
   12106         [ -  + ]:        895 :           ?: (int) item1->offset - (int) item2->offset);
   12107                 :            : }
   12108                 :            : 
   12109                 :            : /* Sort item groups by layout offset of the first item in the group.  */
   12110                 :            : static int
   12111                 :        139 : compare_core_item_groups (const void *a, const void *b)
   12112                 :            : {
   12113                 :        139 :   const Ebl_Core_Item *const *const *p1 = a;
   12114                 :        139 :   const Ebl_Core_Item *const *const *p2 = b;
   12115                 :        139 :   const Ebl_Core_Item *const *group1 = *p1;
   12116                 :        139 :   const Ebl_Core_Item *const *group2 = *p2;
   12117                 :        139 :   const Ebl_Core_Item *item1 = *group1;
   12118                 :        139 :   const Ebl_Core_Item *item2 = *group2;
   12119                 :            : 
   12120                 :        139 :   return (int) item1->offset - (int) item2->offset;
   12121                 :            : }
   12122                 :            : 
   12123                 :            : static unsigned int
   12124                 :         37 : handle_core_items (Elf *core, const void *desc, size_t descsz,
   12125                 :            :                    const Ebl_Core_Item *items, size_t nitems)
   12126                 :            : {
   12127         [ +  + ]:         37 :   if (nitems == 0)
   12128                 :            :     return 0;
   12129                 :         34 :   unsigned int colno = 0;
   12130                 :            : 
   12131                 :            :   /* FORMAT '\n' makes sense to be present only as a single item as it
   12132                 :            :      processes all the data of a note.  FORMATs 'b' and 'B' have a special case
   12133                 :            :      if present as a single item but they can be also processed with other
   12134                 :            :      items below.  */
   12135   [ +  +  +  + ]:         34 :   if (nitems == 1 && (items[0].format == '\n' || items[0].format == 'b'
   12136         [ +  - ]:          8 :                       || items[0].format == 'B'))
   12137                 :            :     {
   12138         [ -  + ]:          1 :       assert (items[0].offset == 0);
   12139                 :          1 :       size_t size = descsz;
   12140                 :          1 :       colno = handle_core_item (core, items, desc, colno, &size);
   12141                 :            :       /* If SIZE is not zero here there is some remaining data.  But we do not
   12142                 :            :          know how to process it anyway.  */
   12143                 :          1 :       return colno;
   12144                 :            :     }
   12145         [ +  + ]:        424 :   for (size_t i = 0; i < nitems; ++i)
   12146         [ -  + ]:        391 :     assert (items[i].format != '\n');
   12147                 :            : 
   12148                 :            :   /* Sort to collect the groups together.  */
   12149                 :         33 :   const Ebl_Core_Item *sorted_items[nitems];
   12150         [ +  + ]:        424 :   for (size_t i = 0; i < nitems; ++i)
   12151                 :        391 :     sorted_items[i] = &items[i];
   12152                 :         33 :   qsort (sorted_items, nitems, sizeof sorted_items[0], &compare_core_items);
   12153                 :            : 
   12154                 :            :   /* Collect the unique groups and sort them.  */
   12155                 :         33 :   const Ebl_Core_Item **groups[nitems];
   12156                 :         33 :   groups[0] = &sorted_items[0];
   12157                 :         33 :   size_t ngroups = 1;
   12158         [ +  + ]:        391 :   for (size_t i = 1; i < nitems; ++i)
   12159         [ +  + ]:        358 :     if (sorted_items[i]->group != sorted_items[i - 1]->group
   12160         [ +  - ]:         75 :         && strcmp (sorted_items[i]->group, sorted_items[i - 1]->group))
   12161                 :         75 :       groups[ngroups++] = &sorted_items[i];
   12162                 :         33 :   qsort (groups, ngroups, sizeof groups[0], &compare_core_item_groups);
   12163                 :            : 
   12164                 :            :   /* Write out all the groups.  */
   12165                 :         33 :   const void *last = desc;
   12166                 :         35 :   do
   12167                 :            :     {
   12168         [ +  + ]:        145 :       for (size_t i = 0; i < ngroups; ++i)
   12169                 :            :         {
   12170                 :        110 :           for (const Ebl_Core_Item **item = groups[i];
   12171         [ +  + ]:        509 :                (item < &sorted_items[nitems]
   12172         [ +  + ]:        474 :                 && ((*item)->group == groups[i][0]->group
   12173         [ -  + ]:         75 :                     || !strcmp ((*item)->group, groups[i][0]->group)));
   12174                 :        399 :                ++item)
   12175                 :        399 :             colno = handle_core_item (core, *item, desc, colno, NULL);
   12176                 :            : 
   12177                 :            :           /* Force a line break at the end of the group.  */
   12178                 :        110 :           colno = WRAP_COLUMN;
   12179                 :            :         }
   12180                 :            : 
   12181         [ +  + ]:         35 :       if (descsz == 0)
   12182                 :            :         break;
   12183                 :            : 
   12184                 :            :       /* This set of items consumed a certain amount of the note's data.
   12185                 :            :          If there is more data there, we have another unit of the same size.
   12186                 :            :          Loop to print that out too.  */
   12187                 :         20 :       const Ebl_Core_Item *item = &items[nitems - 1];
   12188                 :         40 :       size_t eltsz = item->offset + gelf_fsize (core, item->type,
   12189                 :         20 :                                                 item->count ?: 1, EV_CURRENT);
   12190                 :            : 
   12191                 :         20 :       int reps = -1;
   12192                 :         20 :       do
   12193                 :            :         {
   12194                 :         20 :           ++reps;
   12195                 :         20 :           desc += eltsz;
   12196                 :         20 :           descsz -= eltsz;
   12197                 :            :         }
   12198   [ +  +  -  + ]:         20 :       while (descsz >= eltsz && !memcmp (desc, last, eltsz));
   12199                 :            : 
   12200         [ +  - ]:         20 :       if (reps == 1)
   12201                 :            :         {
   12202                 :            :           /* For just one repeat, print it unabridged twice.  */
   12203                 :         20 :           desc -= eltsz;
   12204                 :         20 :           descsz += eltsz;
   12205                 :            :         }
   12206         [ -  + ]:         20 :       else if (reps > 1)
   12207                 :          0 :         printf (_("\n%*s... <repeats %u more times> ..."),
   12208                 :            :                 ITEM_INDENT, "", reps);
   12209                 :            : 
   12210                 :         20 :       last = desc;
   12211                 :            :     }
   12212         [ +  + ]:         20 :   while (descsz > 0);
   12213                 :            : 
   12214                 :         33 :   return colno;
   12215                 :            : }
   12216                 :            : 
   12217                 :            : static unsigned int
   12218                 :        162 : handle_core_register (Ebl *ebl, Elf *core, int maxregname,
   12219                 :            :                       const Ebl_Register_Location *regloc, const void *desc,
   12220                 :            :                       unsigned int colno)
   12221                 :            : {
   12222         [ -  + ]:        162 :   if (regloc->bits % 8 != 0)
   12223                 :            :     {
   12224                 :          0 :       error (0, 0, "Warning: Cannot handle register with %" PRIu8 "bits\n",
   12225                 :            :              regloc->bits);
   12226                 :          0 :       return colno;
   12227                 :            :     }
   12228                 :            : 
   12229                 :        162 :   desc += regloc->offset;
   12230                 :            : 
   12231         [ +  + ]:        586 :   for (int reg = regloc->regno; reg < regloc->regno + regloc->count; ++reg)
   12232                 :            :     {
   12233                 :        424 :       char name[REGNAMESZ];
   12234                 :        424 :       int bits;
   12235                 :        424 :       int type;
   12236                 :        424 :       register_info (ebl, reg, regloc, name, &bits, &type);
   12237                 :            : 
   12238                 :            : #define TYPES                                                                 \
   12239                 :            :       BITS (8, BYTE, "%4" PRId8, "0x%.2" PRIx8);                          \
   12240                 :            :       BITS (16, HALF, "%6" PRId16, "0x%.4" PRIx16);                       \
   12241                 :            :       BITS (32, WORD, "%11" PRId32, " 0x%.8" PRIx32);                             \
   12242                 :            :       BITS (64, XWORD, "%20" PRId64, "  0x%.16" PRIx64)
   12243                 :            : 
   12244                 :            : #define BITS(bits, xtype, sfmt, ufmt)                           \
   12245                 :            :       uint##bits##_t b##bits; int##bits##_t b##bits##s
   12246                 :        424 :       union { TYPES; uint64_t b128[2]; } value;
   12247                 :            : #undef  BITS
   12248                 :            : 
   12249         [ +  + ]:        424 :       switch (type)
   12250                 :            :         {
   12251                 :        336 :         case DW_ATE_unsigned:
   12252                 :            :         case DW_ATE_signed:
   12253                 :            :         case DW_ATE_address:
   12254   [ -  +  +  +  :        336 :           switch (bits)
                   +  - ]
   12255                 :            :             {
   12256                 :            : #define BITS(bits, xtype, sfmt, ufmt)                                         \
   12257                 :            :             case bits:                                                        \
   12258                 :            :               desc = convert (core, ELF_T_##xtype, 1, &value, desc, 0);           \
   12259                 :            :               if (type == DW_ATE_signed)                                      \
   12260                 :            :                 colno = print_core_item (colno, ' ', WRAP_COLUMN,             \
   12261                 :            :                                          maxregname, name,                    \
   12262                 :            :                                          sfmt, value.b##bits##s);             \
   12263                 :            :               else                                                            \
   12264                 :            :                 colno = print_core_item (colno, ' ', WRAP_COLUMN,             \
   12265                 :            :                                          maxregname, name,                    \
   12266                 :            :                                          ufmt, value.b##bits);                \
   12267                 :            :               break
   12268                 :            : 
   12269   [ -  -  -  +  :        288 :             TYPES;
             +  +  +  + ]
   12270                 :            : 
   12271                 :         48 :             case 128:
   12272         [ -  + ]:         48 :               assert (type == DW_ATE_unsigned);
   12273                 :         48 :               desc = convert (core, ELF_T_XWORD, 2, &value, desc, 0);
   12274                 :         48 :               int be = elf_getident (core, NULL)[EI_DATA] == ELFDATA2MSB;
   12275                 :         48 :               colno = print_core_item (colno, ' ', WRAP_COLUMN,
   12276                 :            :                                        maxregname, name,
   12277                 :            :                                        "0x%.16" PRIx64 "%.16" PRIx64,
   12278                 :         48 :                                        value.b128[!be], value.b128[be]);
   12279                 :         48 :               break;
   12280                 :            : 
   12281                 :          0 :             default:
   12282                 :          0 :               abort ();
   12283                 :            : #undef  BITS
   12284                 :            :             }
   12285                 :            :           break;
   12286                 :            : 
   12287                 :         88 :         default:
   12288                 :            :           /* Print each byte in hex, the whole thing in native byte order.  */
   12289         [ -  + ]:         88 :           assert (bits % 8 == 0);
   12290                 :         88 :           const uint8_t *bytes = desc;
   12291                 :         88 :           desc += bits / 8;
   12292                 :         88 :           char hex[bits / 4 + 1];
   12293                 :         88 :           hex[bits / 4] = '\0';
   12294                 :         88 :           int incr = 1;
   12295         [ +  + ]:         88 :           if (elf_getident (core, NULL)[EI_DATA] == ELFDATA2LSB)
   12296                 :            :             {
   12297                 :         48 :               bytes += bits / 8 - 1;
   12298                 :         48 :               incr = -1;
   12299                 :            :             }
   12300                 :         88 :           size_t idx = 0;
   12301         [ +  + ]:        872 :           for (char *h = hex; bits > 0; bits -= 8, idx += incr)
   12302                 :            :             {
   12303                 :        784 :               *h++ = "0123456789abcdef"[bytes[idx] >> 4];
   12304                 :        784 :               *h++ = "0123456789abcdef"[bytes[idx] & 0xf];
   12305                 :            :             }
   12306                 :         88 :           colno = print_core_item (colno, ' ', WRAP_COLUMN,
   12307                 :            :                                    maxregname, name, "0x%s", hex);
   12308                 :         88 :           break;
   12309                 :            :         }
   12310                 :        424 :       desc += regloc->pad;
   12311                 :            : 
   12312                 :            : #undef TYPES
   12313                 :            :     }
   12314                 :            : 
   12315                 :            :   return colno;
   12316                 :            : }
   12317                 :            : 
   12318                 :            : 
   12319                 :            : struct register_info
   12320                 :            : {
   12321                 :            :   const Ebl_Register_Location *regloc;
   12322                 :            :   const char *set;
   12323                 :            :   char name[REGNAMESZ];
   12324                 :            :   int regno;
   12325                 :            :   int bits;
   12326                 :            :   int type;
   12327                 :            : };
   12328                 :            : 
   12329                 :            : static int
   12330                 :       2066 : register_bitpos (const struct register_info *r)
   12331                 :            : {
   12332                 :       2066 :   return (r->regloc->offset * 8
   12333                 :       2066 :           + ((r->regno - r->regloc->regno)
   12334                 :       2066 :              * (r->regloc->bits + r->regloc->pad * 8)));
   12335                 :            : }
   12336                 :            : 
   12337                 :            : static int
   12338                 :       1062 : compare_sets_by_info (const struct register_info *r1,
   12339                 :            :                       const struct register_info *r2)
   12340                 :            : {
   12341                 :       1062 :   return ((int) r2->bits - (int) r1->bits
   12342         [ +  + ]:       1062 :           ?: register_bitpos (r1) - register_bitpos (r2));
   12343                 :            : }
   12344                 :            : 
   12345                 :            : /* Sort registers by set, and by size and layout offset within each set.  */
   12346                 :            : static int
   12347                 :       4595 : compare_registers (const void *a, const void *b)
   12348                 :            : {
   12349                 :       4595 :   const struct register_info *r1 = a;
   12350                 :       4595 :   const struct register_info *r2 = b;
   12351                 :            : 
   12352                 :            :   /* Unused elements sort last.  */
   12353         [ +  + ]:       4595 :   if (r1->regloc == NULL)
   12354                 :       3309 :     return r2->regloc == NULL ? 0 : 1;
   12355         [ +  + ]:       1286 :   if (r2->regloc == NULL)
   12356                 :            :     return -1;
   12357                 :            : 
   12358         [ +  + ]:       1121 :   return ((r1->set == r2->set ? 0 : strcmp (r1->set, r2->set))
   12359         [ -  + ]:       1121 :           ?: compare_sets_by_info (r1, r2));
   12360                 :            : }
   12361                 :            : 
   12362                 :            : /* Sort register sets by layout offset of the first register in the set.  */
   12363                 :            : static int
   12364                 :         20 : compare_register_sets (const void *a, const void *b)
   12365                 :            : {
   12366                 :         20 :   const struct register_info *const *p1 = a;
   12367                 :         20 :   const struct register_info *const *p2 = b;
   12368                 :         20 :   return compare_sets_by_info (*p1, *p2);
   12369                 :            : }
   12370                 :            : 
   12371                 :            : static inline bool
   12372                 :        864 : same_set (const struct register_info *a,
   12373                 :            :           const struct register_info *b,
   12374                 :            :           const struct register_info *regs,
   12375                 :            :           size_t maxnreg)
   12376                 :            : {
   12377         [ +  - ]:        864 :   return (a < &regs[maxnreg] && a->regloc != NULL
   12378   [ +  -  +  + ]:        864 :           && b < &regs[maxnreg] && b->regloc != NULL
   12379         [ +  + ]:        846 :           && a->bits == b->bits
   12380   [ +  -  +  +  :       1692 :           && (a->set == b->set || !strcmp (a->set, b->set)));
                   +  - ]
   12381                 :            : }
   12382                 :            : 
   12383                 :            : static unsigned int
   12384                 :         37 : handle_core_registers (Ebl *ebl, Elf *core, const void *desc,
   12385                 :            :                        const Ebl_Register_Location *reglocs, size_t nregloc)
   12386                 :            : {
   12387         [ +  + ]:         37 :   if (nregloc == 0)
   12388                 :            :     return 0;
   12389                 :            : 
   12390                 :         18 :   ssize_t maxnreg = ebl_register_info (ebl, 0, NULL, 0, NULL, NULL, NULL, NULL);
   12391         [ -  + ]:         18 :   if (maxnreg <= 0)
   12392                 :            :     {
   12393         [ #  # ]:          0 :       for (size_t i = 0; i < nregloc; ++i)
   12394                 :          0 :         if (maxnreg < reglocs[i].regno + reglocs[i].count)
   12395                 :            :           maxnreg = reglocs[i].regno + reglocs[i].count;
   12396         [ #  # ]:          0 :       assert (maxnreg > 0);
   12397                 :            :     }
   12398                 :            : 
   12399                 :         18 :   struct register_info regs[maxnreg];
   12400                 :         18 :   memset (regs, 0, sizeof regs);
   12401                 :            : 
   12402                 :            :   /* Sort to collect the sets together.  */
   12403                 :         18 :   int maxreg = 0;
   12404         [ +  + ]:        180 :   for (size_t i = 0; i < nregloc; ++i)
   12405                 :        162 :     for (int reg = reglocs[i].regno;
   12406         [ +  + ]:        586 :          reg < reglocs[i].regno + reglocs[i].count;
   12407                 :        424 :          ++reg)
   12408                 :            :       {
   12409         [ -  + ]:        424 :         assert (reg < maxnreg);
   12410                 :        424 :         if (reg > maxreg)
   12411                 :            :           maxreg = reg;
   12412                 :        424 :         struct register_info *info = &regs[reg];
   12413                 :        424 :         info->regloc = &reglocs[i];
   12414                 :        424 :         info->regno = reg;
   12415                 :        424 :         info->set = register_info (ebl, reg, &reglocs[i],
   12416                 :        424 :                                    info->name, &info->bits, &info->type);
   12417                 :            :       }
   12418                 :         18 :   qsort (regs, maxreg + 1, sizeof regs[0], &compare_registers);
   12419                 :            : 
   12420                 :            :   /* Collect the unique sets and sort them.  */
   12421                 :         18 :   struct register_info *sets[maxreg + 1];
   12422                 :         18 :   sets[0] = &regs[0];
   12423                 :         18 :   size_t nsets = 1;
   12424         [ +  + ]:       1279 :   for (int i = 1; i <= maxreg; ++i)
   12425         [ +  + ]:       1261 :     if (regs[i].regloc != NULL
   12426         [ +  + ]:        406 :         && !same_set (&regs[i], &regs[i - 1], regs, maxnreg))
   12427                 :         16 :       sets[nsets++] = &regs[i];
   12428                 :         18 :   qsort (sets, nsets, sizeof sets[0], &compare_register_sets);
   12429                 :            : 
   12430                 :            :   /* Write out all the sets.  */
   12431                 :         18 :   unsigned int colno = 0;
   12432         [ +  + ]:         52 :   for (size_t i = 0; i < nsets; ++i)
   12433                 :            :     {
   12434                 :            :       /* Find the longest name of a register in this set.  */
   12435                 :         34 :       size_t maxname = 0;
   12436                 :         34 :       const struct register_info *end;
   12437         [ +  + ]:        458 :       for (end = sets[i]; same_set (sets[i], end, regs, maxnreg); ++end)
   12438                 :            :         {
   12439                 :        424 :           size_t len = strlen (end->name);
   12440                 :        424 :           if (len > maxname)
   12441                 :            :             maxname = len;
   12442                 :            :         }
   12443                 :            : 
   12444                 :        196 :       for (const struct register_info *reg = sets[i];
   12445         [ +  + ]:        196 :            reg < end;
   12446                 :        162 :            reg += reg->regloc->count ?: 1)
   12447         [ +  - ]:        162 :         colno = handle_core_register (ebl, core, maxname,
   12448                 :            :                                       reg->regloc, desc, colno);
   12449                 :            : 
   12450                 :            :       /* Force a line break at the end of the group.  */
   12451                 :         34 :       colno = WRAP_COLUMN;
   12452                 :            :     }
   12453                 :            : 
   12454                 :         18 :   return colno;
   12455                 :            : }
   12456                 :            : 
   12457                 :            : static void
   12458                 :          9 : handle_auxv_note (Ebl *ebl, Elf *core, GElf_Word descsz, GElf_Off desc_pos)
   12459                 :            : {
   12460                 :          9 :   Elf_Data *data = elf_getdata_rawchunk (core, desc_pos, descsz, ELF_T_AUXV);
   12461         [ -  + ]:          9 :   if (data == NULL)
   12462                 :          0 :   elf_error:
   12463                 :          0 :     error_exit (0, _("cannot convert core note data: %s"), elf_errmsg (-1));
   12464                 :            : 
   12465                 :          9 :   const size_t nauxv = descsz / gelf_fsize (core, ELF_T_AUXV, 1, EV_CURRENT);
   12466         [ +  + ]:        177 :   for (size_t i = 0; i < nauxv; ++i)
   12467                 :            :     {
   12468                 :        168 :       GElf_auxv_t av_mem;
   12469                 :        168 :       GElf_auxv_t *av = gelf_getauxv (data, i, &av_mem);
   12470         [ -  + ]:        168 :       if (av == NULL)
   12471                 :          0 :         goto elf_error;
   12472                 :            : 
   12473                 :        168 :       const char *name;
   12474                 :        168 :       const char *fmt;
   12475         [ -  + ]:        168 :       if (ebl_auxv_info (ebl, av->a_type, &name, &fmt) == 0)
   12476                 :            :         {
   12477                 :            :           /* Unknown type.  */
   12478         [ #  # ]:          0 :           if (av->a_un.a_val == 0)
   12479                 :          0 :             printf ("    %" PRIu64 "\n", av->a_type);
   12480                 :            :           else
   12481                 :          0 :             printf ("    %" PRIu64 ": %#" PRIx64 "\n",
   12482                 :            :                     av->a_type, av->a_un.a_val);
   12483                 :            :         }
   12484                 :            :       else
   12485   [ +  +  +  -  :        168 :         switch (fmt[0])
                   +  - ]
   12486                 :            :           {
   12487                 :          9 :           case '\0':            /* Normally zero.  */
   12488         [ +  - ]:          9 :             if (av->a_un.a_val == 0)
   12489                 :            :               {
   12490                 :          9 :                 printf ("    %s\n", name);
   12491                 :            :                 break;
   12492                 :            :               }
   12493                 :         74 :             FALLTHROUGH;
   12494                 :            :           case 'x':             /* hex */
   12495                 :            :           case 'p':             /* address */
   12496                 :            :           case 's':             /* address of string */
   12497                 :         74 :             printf ("    %s: %#" PRIx64 "\n", name, av->a_un.a_val);
   12498                 :            :             break;
   12499                 :         81 :           case 'u':
   12500                 :         81 :             printf ("    %s: %" PRIu64 "\n", name, av->a_un.a_val);
   12501                 :            :             break;
   12502                 :          0 :           case 'd':
   12503                 :          0 :             printf ("    %s: %" PRId64 "\n", name, av->a_un.a_val);
   12504                 :            :             break;
   12505                 :            : 
   12506                 :          4 :           case 'b':
   12507                 :          4 :             printf ("    %s: %#" PRIx64 "  ", name, av->a_un.a_val);
   12508                 :          4 :             GElf_Xword bit = 1;
   12509                 :          4 :             const char *pfx = "<";
   12510         [ +  + ]:        110 :             for (const char *p = fmt + 1; *p != 0; p = strchr (p, '\0') + 1)
   12511                 :            :               {
   12512         [ +  + ]:        106 :                 if (av->a_un.a_val & bit)
   12513                 :            :                   {
   12514                 :         77 :                     printf ("%s%s", pfx, p);
   12515                 :         77 :                     pfx = " ";
   12516                 :            :                   }
   12517                 :        106 :                 bit <<= 1;
   12518                 :            :               }
   12519                 :        168 :             printf (">\n");
   12520                 :            :             break;
   12521                 :            : 
   12522                 :          0 :           default:
   12523                 :          0 :             abort ();
   12524                 :            :           }
   12525                 :            :     }
   12526                 :          9 : }
   12527                 :            : 
   12528                 :            : static bool
   12529                 :        195 : buf_has_data (unsigned char const *ptr, unsigned char const *end, size_t sz)
   12530                 :            : {
   12531   [ -  +  -  + ]:        195 :   return ptr < end && (size_t) (end - ptr) >= sz;
   12532                 :            : }
   12533                 :            : 
   12534                 :            : static bool
   12535                 :         18 : buf_read_int (Elf *core, unsigned char const **ptrp, unsigned char const *end,
   12536                 :            :               int *retp)
   12537                 :            : {
   12538   [ +  -  +  - ]:         36 :   if (! buf_has_data (*ptrp, end, 4))
   12539                 :            :     return false;
   12540                 :            : 
   12541                 :         18 :   *ptrp = convert (core, ELF_T_WORD, 1, retp, *ptrp, 4);
   12542                 :         18 :   return true;
   12543                 :            : }
   12544                 :            : 
   12545                 :            : static bool
   12546                 :        177 : buf_read_ulong (Elf *core, unsigned char const **ptrp, unsigned char const *end,
   12547                 :            :                 uint64_t *retp)
   12548                 :            : {
   12549                 :        177 :   size_t sz = gelf_fsize (core, ELF_T_ADDR, 1, EV_CURRENT);
   12550   [ +  -  +  - ]:        354 :   if (! buf_has_data (*ptrp, end, sz))
   12551                 :            :     return false;
   12552                 :            : 
   12553                 :        177 :   union
   12554                 :            :   {
   12555                 :            :     uint64_t u64;
   12556                 :            :     uint32_t u32;
   12557                 :            :   } u;
   12558                 :            : 
   12559                 :        177 :   *ptrp = convert (core, ELF_T_ADDR, 1, &u, *ptrp, sz);
   12560                 :            : 
   12561         [ +  + ]:        177 :   if (sz == 4)
   12562                 :         93 :     *retp = u.u32;
   12563                 :            :   else
   12564                 :         84 :     *retp = u.u64;
   12565                 :            :   return true;
   12566                 :            : }
   12567                 :            : 
   12568                 :            : static void
   12569                 :          6 : handle_siginfo_note (Elf *core, GElf_Word descsz, GElf_Off desc_pos)
   12570                 :            : {
   12571                 :          6 :   Elf_Data *data = elf_getdata_rawchunk (core, desc_pos, descsz, ELF_T_BYTE);
   12572         [ -  + ]:          6 :   if (data == NULL)
   12573                 :          0 :     error_exit (0, _("cannot convert core note data: %s"), elf_errmsg (-1));
   12574                 :            : 
   12575                 :          6 :   unsigned char const *ptr = data->d_buf;
   12576                 :          6 :   unsigned char const *const end = data->d_buf + data->d_size;
   12577                 :            : 
   12578                 :            :   /* Siginfo head is three ints: signal number, error number, origin
   12579                 :            :      code.  */
   12580                 :          6 :   int si_signo, si_errno, si_code;
   12581         [ -  + ]:          6 :   if (! buf_read_int (core, &ptr, end, &si_signo)
   12582         [ -  + ]:          6 :       || ! buf_read_int (core, &ptr, end, &si_errno)
   12583         [ -  + ]:          6 :       || ! buf_read_int (core, &ptr, end, &si_code))
   12584                 :            :     {
   12585                 :          0 :     fail:
   12586                 :          0 :       printf ("    Not enough data in NT_SIGINFO note.\n");
   12587                 :          0 :       return;
   12588                 :            :     }
   12589                 :            : 
   12590                 :            :   /* Next is a pointer-aligned union of structures.  On 64-bit
   12591                 :            :      machines, that implies a word of padding.  */
   12592         [ +  + ]:          6 :   if (gelf_getclass (core) == ELFCLASS64)
   12593                 :          3 :     ptr += 4;
   12594                 :            : 
   12595                 :          6 :   printf ("    si_signo: %d, si_errno: %d, si_code: %d\n",
   12596                 :            :           si_signo, si_errno, si_code);
   12597                 :            : 
   12598         [ +  - ]:          6 :   if (si_code > 0)
   12599         [ +  - ]:          6 :     switch (si_signo)
   12600                 :            :       {
   12601                 :          6 :       case CORE_SIGILL:
   12602                 :            :       case CORE_SIGFPE:
   12603                 :            :       case CORE_SIGSEGV:
   12604                 :            :       case CORE_SIGBUS:
   12605                 :            :         {
   12606                 :          6 :           uint64_t addr;
   12607         [ -  + ]:          6 :           if (! buf_read_ulong (core, &ptr, end, &addr))
   12608                 :          0 :             goto fail;
   12609                 :          6 :           printf ("    fault address: %#" PRIx64 "\n", addr);
   12610                 :          6 :           break;
   12611                 :            :         }
   12612                 :            :       default:
   12613                 :            :         ;
   12614                 :            :       }
   12615         [ #  # ]:          0 :   else if (si_code == CORE_SI_USER)
   12616                 :            :     {
   12617                 :          0 :       int pid, uid;
   12618         [ #  # ]:          0 :       if (! buf_read_int (core, &ptr, end, &pid)
   12619         [ #  # ]:          0 :           || ! buf_read_int (core, &ptr, end, &uid))
   12620                 :          0 :         goto fail;
   12621                 :          0 :       printf ("    sender PID: %d, sender UID: %d\n", pid, uid);
   12622                 :            :     }
   12623                 :            : }
   12624                 :            : 
   12625                 :            : static void
   12626                 :          6 : handle_file_note (Elf *core, GElf_Word descsz, GElf_Off desc_pos)
   12627                 :            : {
   12628                 :          6 :   Elf_Data *data = elf_getdata_rawchunk (core, desc_pos, descsz, ELF_T_BYTE);
   12629         [ -  + ]:          6 :   if (data == NULL)
   12630                 :          0 :     error_exit (0, _("cannot convert core note data: %s"), elf_errmsg (-1));
   12631                 :            : 
   12632                 :          6 :   unsigned char const *ptr = data->d_buf;
   12633                 :          6 :   unsigned char const *const end = data->d_buf + data->d_size;
   12634                 :            : 
   12635                 :          6 :   uint64_t count, page_size;
   12636         [ -  + ]:          6 :   if (! buf_read_ulong (core, &ptr, end, &count)
   12637         [ -  + ]:          6 :       || ! buf_read_ulong (core, &ptr, end, &page_size))
   12638                 :            :     {
   12639                 :          0 :     fail:
   12640                 :          0 :       printf ("    Not enough data in NT_FILE note.\n");
   12641                 :          0 :       return;
   12642                 :            :     }
   12643                 :            : 
   12644                 :          6 :   size_t addrsize = gelf_fsize (core, ELF_T_ADDR, 1, EV_CURRENT);
   12645                 :          6 :   uint64_t maxcount = (size_t) (end - ptr) / (3 * addrsize);
   12646         [ -  + ]:          6 :   if (count > maxcount)
   12647                 :          0 :     goto fail;
   12648                 :            : 
   12649                 :            :   /* Where file names are stored.  */
   12650                 :          6 :   unsigned char const *const fstart = ptr + 3 * count * addrsize;
   12651                 :          6 :   char const *fptr = (char *) fstart;
   12652                 :            : 
   12653                 :          6 :   printf ("    %" PRId64 " files:\n", count);
   12654         [ +  + ]:         59 :   for (uint64_t i = 0; i < count; ++i)
   12655                 :            :     {
   12656                 :         53 :       uint64_t mstart, mend, moffset;
   12657         [ +  - ]:         53 :       if (! buf_read_ulong (core, &ptr, fstart, &mstart)
   12658         [ +  - ]:         53 :           || ! buf_read_ulong (core, &ptr, fstart, &mend)
   12659         [ -  + ]:         53 :           || ! buf_read_ulong (core, &ptr, fstart, &moffset))
   12660                 :          0 :         goto fail;
   12661                 :            : 
   12662                 :         53 :       const char *fnext = memchr (fptr, '\0', (char *) end - fptr);
   12663         [ -  + ]:         53 :       if (fnext == NULL)
   12664                 :          0 :         goto fail;
   12665                 :            : 
   12666                 :         53 :       int ct = printf ("      %08" PRIx64 "-%08" PRIx64
   12667                 :            :                        " %08" PRIx64 " %" PRId64,
   12668                 :            :                        mstart, mend, moffset * page_size, mend - mstart);
   12669         [ +  - ]:         53 :       printf ("%*s%s\n", ct > 50 ? 3 : 53 - ct, "", fptr);
   12670                 :            : 
   12671                 :         53 :       fptr = fnext + 1;
   12672                 :            :     }
   12673                 :            : }
   12674                 :            : 
   12675                 :            : static void
   12676                 :         38 : handle_core_note (Ebl *ebl, const GElf_Nhdr *nhdr,
   12677                 :            :                   const char *name, const void *desc)
   12678                 :            : {
   12679                 :         38 :   GElf_Word regs_offset;
   12680                 :         38 :   size_t nregloc;
   12681                 :         38 :   const Ebl_Register_Location *reglocs;
   12682                 :         38 :   size_t nitems;
   12683                 :         38 :   const Ebl_Core_Item *items;
   12684                 :            : 
   12685         [ +  + ]:         38 :   if (! ebl_core_note (ebl, nhdr, name, desc,
   12686                 :            :                        &regs_offset, &nregloc, &reglocs, &nitems, &items))
   12687                 :          1 :     return;
   12688                 :            : 
   12689                 :            :   /* Pass 0 for DESCSZ when there are registers in the note,
   12690                 :            :      so that the ITEMS array does not describe the whole thing.
   12691                 :            :      For non-register notes, the actual descsz might be a multiple
   12692                 :            :      of the unit size, not just exactly the unit size.  */
   12693                 :         37 :   unsigned int colno = handle_core_items (ebl->elf, desc,
   12694         [ +  + ]:         37 :                                           nregloc == 0 ? nhdr->n_descsz : 0,
   12695                 :            :                                           items, nitems);
   12696         [ +  + ]:         37 :   if (colno != 0)
   12697         [ -  + ]:         34 :     putchar_unlocked ('\n');
   12698                 :            : 
   12699                 :         37 :   colno = handle_core_registers (ebl, ebl->elf, desc + regs_offset,
   12700                 :            :                                  reglocs, nregloc);
   12701         [ +  + ]:         37 :   if (colno != 0)
   12702         [ -  + ]:         55 :     putchar_unlocked ('\n');
   12703                 :            : }
   12704                 :            : 
   12705                 :            : static void
   12706                 :        298 : handle_notes_data (Ebl *ebl, const GElf_Ehdr *ehdr,
   12707                 :            :                    GElf_Off start, Elf_Data *data)
   12708                 :            : {
   12709                 :        298 :   fputs_unlocked (_("  Owner          Data size  Type\n"), stdout);
   12710                 :            : 
   12711         [ -  + ]:        298 :   if (data == NULL)
   12712                 :          0 :     goto bad_note;
   12713                 :            : 
   12714                 :            :   size_t offset = 0;
   12715                 :            :   GElf_Nhdr nhdr;
   12716                 :            :   size_t name_offset;
   12717                 :            :   size_t desc_offset;
   12718         [ +  + ]:       3558 :   while (offset < data->d_size
   12719         [ +  - ]:       3260 :          && (offset = gelf_getnote (data, offset,
   12720                 :            :                                     &nhdr, &name_offset, &desc_offset)) > 0)
   12721                 :            :     {
   12722         [ +  - ]:       3260 :       const char *name = nhdr.n_namesz == 0 ? "" : data->d_buf + name_offset;
   12723                 :       3260 :       const char *desc = data->d_buf + desc_offset;
   12724                 :            : 
   12725                 :            :       /* GNU Build Attributes are weird, they store most of their data
   12726                 :            :          into the owner name field.  Extract just the owner name
   12727                 :            :          prefix here, then use the rest later as data.  */
   12728                 :       3260 :       bool is_gnu_build_attr
   12729                 :       3260 :         = startswith (name, ELF_NOTE_GNU_BUILD_ATTRIBUTE_PREFIX);
   12730                 :       6520 :       const char *print_name = (is_gnu_build_attr
   12731         [ +  + ]:       3260 :                                 ? ELF_NOTE_GNU_BUILD_ATTRIBUTE_PREFIX : name);
   12732                 :       6520 :       size_t print_namesz = (is_gnu_build_attr
   12733         [ +  + ]:       3260 :                              ? strlen (print_name) : nhdr.n_namesz);
   12734                 :            : 
   12735                 :       3260 :       char buf[100];
   12736                 :       3260 :       char buf2[100];
   12737                 :       3260 :       printf (_("  %-13.*s  %9" PRId32 "  %s\n"),
   12738                 :            :               (int) print_namesz, print_name, nhdr.n_descsz,
   12739         [ +  + ]:       3260 :               ehdr->e_type == ET_CORE
   12740                 :         59 :               ? ebl_core_note_type_name (ebl, nhdr.n_type,
   12741                 :            :                                          buf, sizeof (buf))
   12742                 :       3201 :               : ebl_object_note_type_name (ebl, name, nhdr.n_type,
   12743                 :            :                                            nhdr.n_descsz,
   12744                 :            :                                            buf2, sizeof (buf2)));
   12745                 :            : 
   12746                 :            :       /* Filter out invalid entries.  */
   12747                 :       3260 :       if (memchr (name, '\0', nhdr.n_namesz) != NULL
   12748                 :            :           /* XXX For now help broken Linux kernels.  */
   12749                 :            :           || 1)
   12750                 :            :         {
   12751         [ +  + ]:       3260 :           if (ehdr->e_type == ET_CORE)
   12752                 :            :             {
   12753         [ +  + ]:         59 :               if (nhdr.n_type == NT_AUXV
   12754         [ +  - ]:          9 :                   && (nhdr.n_namesz == 4 /* Broken old Linux kernels.  */
   12755   [ +  -  +  - ]:          9 :                       || (nhdr.n_namesz == 5 && name[4] == '\0'))
   12756         [ +  - ]:          9 :                   && !memcmp (name, "CORE", 4))
   12757                 :          9 :                 handle_auxv_note (ebl, ebl->elf, nhdr.n_descsz,
   12758                 :            :                                   start + desc_offset);
   12759   [ +  +  +  - ]:         50 :               else if (nhdr.n_namesz == 5 && strcmp (name, "CORE") == 0)
   12760      [ +  +  + ]:         38 :                 switch (nhdr.n_type)
   12761                 :            :                   {
   12762                 :          6 :                   case NT_SIGINFO:
   12763                 :          6 :                     handle_siginfo_note (ebl->elf, nhdr.n_descsz,
   12764                 :            :                                          start + desc_offset);
   12765                 :          6 :                     break;
   12766                 :            : 
   12767                 :          6 :                   case NT_FILE:
   12768                 :          6 :                     handle_file_note (ebl->elf, nhdr.n_descsz,
   12769                 :            :                                       start + desc_offset);
   12770                 :          6 :                     break;
   12771                 :            : 
   12772                 :         26 :                   default:
   12773                 :         26 :                     handle_core_note (ebl, &nhdr, name, desc);
   12774                 :            :                   }
   12775                 :            :               else
   12776                 :         12 :                 handle_core_note (ebl, &nhdr, name, desc);
   12777                 :            :             }
   12778                 :            :           else
   12779                 :       3201 :             ebl_object_note (ebl, nhdr.n_namesz, name, nhdr.n_type,
   12780                 :            :                              nhdr.n_descsz, desc);
   12781                 :            :         }
   12782                 :            :     }
   12783                 :            : 
   12784         [ +  - ]:        298 :   if (offset == data->d_size)
   12785                 :        298 :     return;
   12786                 :            : 
   12787                 :          0 :  bad_note:
   12788         [ #  # ]:          0 :   error (0, 0,
   12789                 :          0 :          _("cannot get content of note: %s"),
   12790                 :          0 :          data != NULL ? "garbage data" : elf_errmsg (-1));
   12791                 :            : }
   12792                 :            : 
   12793                 :            : static void
   12794                 :        165 : handle_notes (Ebl *ebl, GElf_Ehdr *ehdr)
   12795                 :            : {
   12796                 :            :   /* If we have section headers, just look for SHT_NOTE sections.
   12797                 :            :      In a debuginfo file, the program headers are not reliable.  */
   12798         [ +  + ]:        165 :   if (shnum != 0)
   12799                 :            :     {
   12800                 :            :       /* Get the section header string table index.  */
   12801                 :        154 :       size_t shstrndx;
   12802         [ -  + ]:        154 :       if (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0)
   12803                 :          0 :         error_exit (0, _("cannot get section header string table index"));
   12804                 :            : 
   12805                 :            :       Elf_Scn *scn = NULL;
   12806         [ +  + ]:       4419 :       while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
   12807                 :            :         {
   12808                 :       4265 :           GElf_Shdr shdr_mem;
   12809                 :       4265 :           GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
   12810                 :            : 
   12811   [ +  -  +  + ]:       4265 :           if (shdr == NULL || shdr->sh_type != SHT_NOTE)
   12812                 :            :             /* Not what we are looking for.  */
   12813                 :       3979 :             continue;
   12814                 :            : 
   12815         [ -  + ]:        286 :           if (notes_section != NULL)
   12816                 :            :             {
   12817                 :          0 :               char *sname = elf_strptr (ebl->elf, shstrndx, shdr->sh_name);
   12818   [ #  #  #  # ]:          0 :               if (sname == NULL || strcmp (sname, notes_section) != 0)
   12819                 :          0 :                 continue;
   12820                 :            :             }
   12821                 :            : 
   12822                 :        286 :           printf (_("\
   12823                 :            : \nNote section [%2zu] '%s' of %" PRIu64 " bytes at offset %#0" PRIx64 ":\n"),
   12824                 :            :                   elf_ndxscn (scn),
   12825                 :        286 :                   elf_strptr (ebl->elf, shstrndx, shdr->sh_name),
   12826                 :            :                   shdr->sh_size, shdr->sh_offset);
   12827                 :            : 
   12828                 :        286 :           handle_notes_data (ebl, ehdr, shdr->sh_offset,
   12829                 :            :                              elf_getdata (scn, NULL));
   12830                 :            :         }
   12831                 :        154 :       return;
   12832                 :            :     }
   12833                 :            : 
   12834                 :            :   /* We have to look through the program header to find the note
   12835                 :            :      sections.  There can be more than one.  */
   12836         [ +  + ]:        140 :   for (size_t cnt = 0; cnt < phnum; ++cnt)
   12837                 :            :     {
   12838                 :        129 :       GElf_Phdr mem;
   12839                 :        129 :       GElf_Phdr *phdr = gelf_getphdr (ebl->elf, cnt, &mem);
   12840                 :            : 
   12841   [ +  -  +  + ]:        129 :       if (phdr == NULL || phdr->p_type != PT_NOTE)
   12842                 :            :         /* Not what we are looking for.  */
   12843                 :        117 :         continue;
   12844                 :            : 
   12845                 :         12 :       printf (_("\
   12846                 :            : \nNote segment of %" PRIu64 " bytes at offset %#0" PRIx64 ":\n"),
   12847                 :            :               phdr->p_filesz, phdr->p_offset);
   12848                 :            : 
   12849                 :         12 :       handle_notes_data (ebl, ehdr, phdr->p_offset,
   12850                 :            :                          elf_getdata_rawchunk (ebl->elf,
   12851                 :         12 :                                                phdr->p_offset, phdr->p_filesz,
   12852         [ +  + ]:         12 :                                                (phdr->p_align == 8
   12853                 :            :                                                 ? ELF_T_NHDR8 : ELF_T_NHDR)));
   12854                 :            :     }
   12855                 :            : }
   12856                 :            : 
   12857                 :            : 
   12858                 :            : static void
   12859                 :          6 : hex_dump (const uint8_t *data, size_t len)
   12860                 :            : {
   12861                 :          6 :   size_t pos = 0;
   12862         [ +  + ]:         28 :   while (pos < len)
   12863                 :            :     {
   12864                 :         22 :       printf ("  0x%08zx ", pos);
   12865                 :            : 
   12866                 :         22 :       const size_t chunk = MIN (len - pos, 16);
   12867                 :            : 
   12868         [ +  + ]:        344 :       for (size_t i = 0; i < chunk; ++i)
   12869         [ +  + ]:        322 :         if (i % 4 == 3)
   12870                 :         80 :           printf ("%02x ", data[pos + i]);
   12871                 :            :         else
   12872                 :        322 :           printf ("%02x", data[pos + i]);
   12873                 :            : 
   12874         [ +  + ]:         22 :       if (chunk < 16)
   12875                 :          2 :         printf ("%*s", (int) ((16 - chunk) * 2 + (16 - chunk + 3) / 4), "");
   12876                 :            : 
   12877         [ +  + ]:        344 :       for (size_t i = 0; i < chunk; ++i)
   12878                 :            :         {
   12879                 :        322 :           unsigned char b = data[pos + i];
   12880         [ +  + ]:        644 :           printf ("%c", isprint (b) ? b : '.');
   12881                 :            :         }
   12882                 :            : 
   12883                 :         22 :       putchar ('\n');
   12884                 :         22 :       pos += chunk;
   12885                 :            :     }
   12886                 :          6 : }
   12887                 :            : 
   12888                 :            : static void
   12889                 :          6 : dump_data_section (Elf_Scn *scn, const GElf_Shdr *shdr, const char *name)
   12890                 :            : {
   12891   [ +  -  -  + ]:          6 :   if (shdr->sh_size == 0 || shdr->sh_type == SHT_NOBITS)
   12892                 :          0 :     printf (_("\nSection [%zu] '%s' has no data to dump.\n"),
   12893                 :            :             elf_ndxscn (scn), name);
   12894                 :            :   else
   12895                 :            :     {
   12896         [ +  + ]:          6 :       if (print_decompress)
   12897                 :            :         {
   12898                 :            :           /* We try to decompress the section, but keep the old shdr around
   12899                 :            :              so we can show both the original shdr size and the uncompressed
   12900                 :            :              data size.   */
   12901         [ +  + ]:          4 :           if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
   12902                 :            :             {
   12903         [ -  + ]:          2 :               if (elf_compress (scn, 0, 0) < 0)
   12904                 :          0 :                 printf ("WARNING: %s [%zd]\n",
   12905                 :            :                         _("Couldn't uncompress section"),
   12906                 :            :                         elf_ndxscn (scn));
   12907                 :            :             }
   12908         [ +  - ]:          2 :           else if (startswith (name, ".zdebug"))
   12909                 :            :             {
   12910         [ -  + ]:          2 :               if (elf_compress_gnu (scn, 0, 0) < 0)
   12911                 :          0 :                 printf ("WARNING: %s [%zd]\n",
   12912                 :            :                         _("Couldn't uncompress section"),
   12913                 :            :                         elf_ndxscn (scn));
   12914                 :            :             }
   12915                 :            :         }
   12916                 :            : 
   12917                 :          6 :       Elf_Data *data = elf_rawdata (scn, NULL);
   12918         [ -  + ]:          6 :       if (data == NULL)
   12919                 :          0 :         error (0, 0, _("cannot get data for section [%zu] '%s': %s"),
   12920                 :            :                elf_ndxscn (scn), name, elf_errmsg (-1));
   12921                 :            :       else
   12922                 :            :         {
   12923         [ +  + ]:          6 :           if (data->d_size == shdr->sh_size)
   12924                 :          2 :             printf (_("\nHex dump of section [%zu] '%s', %" PRIu64
   12925                 :            :                              " bytes at offset %#0" PRIx64 ":\n"),
   12926                 :            :                     elf_ndxscn (scn), name,
   12927                 :            :                     shdr->sh_size, shdr->sh_offset);
   12928                 :            :           else
   12929                 :          4 :             printf (_("\nHex dump of section [%zu] '%s', %" PRIu64
   12930                 :            :                              " bytes (%zd uncompressed) at offset %#0"
   12931                 :            :                              PRIx64 ":\n"),
   12932                 :            :                     elf_ndxscn (scn), name,
   12933                 :            :                     shdr->sh_size, data->d_size, shdr->sh_offset);
   12934                 :          6 :           hex_dump (data->d_buf, data->d_size);
   12935                 :            :         }
   12936                 :            :     }
   12937                 :          6 : }
   12938                 :            : 
   12939                 :            : static void
   12940                 :        281 : print_string_section (Elf_Scn *scn, const GElf_Shdr *shdr, const char *name)
   12941                 :            : {
   12942   [ +  -  +  + ]:        281 :   if (shdr->sh_size == 0 || shdr->sh_type == SHT_NOBITS)
   12943                 :         27 :     printf (_("\nSection [%zu] '%s' has no strings to dump.\n"),
   12944                 :            :             elf_ndxscn (scn), name);
   12945                 :            :   else
   12946                 :            :     {
   12947         [ +  + ]:        254 :       if (print_decompress)
   12948                 :            :         {
   12949                 :            :           /* We try to decompress the section, but keep the old shdr around
   12950                 :            :              so we can show both the original shdr size and the uncompressed
   12951                 :            :              data size.  */
   12952         [ -  + ]:          1 :           if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
   12953                 :            :             {
   12954         [ #  # ]:          0 :               if (elf_compress (scn, 0, 0) < 0)
   12955                 :          0 :                 printf ("WARNING: %s [%zd]\n",
   12956                 :            :                         _("Couldn't uncompress section"),
   12957                 :            :                         elf_ndxscn (scn));
   12958                 :            :             }
   12959         [ +  - ]:          1 :           else if (startswith (name, ".zdebug"))
   12960                 :            :             {
   12961         [ -  + ]:          1 :               if (elf_compress_gnu (scn, 0, 0) < 0)
   12962                 :          0 :                 printf ("WARNING: %s [%zd]\n",
   12963                 :            :                         _("Couldn't uncompress section"),
   12964                 :            :                         elf_ndxscn (scn));
   12965                 :            :             }
   12966                 :            :         }
   12967                 :            : 
   12968                 :        254 :       Elf_Data *data = elf_rawdata (scn, NULL);
   12969         [ -  + ]:        254 :       if (data == NULL)
   12970                 :          0 :         error (0, 0, _("cannot get data for section [%zu] '%s': %s"),
   12971                 :            :                elf_ndxscn (scn), name, elf_errmsg (-1));
   12972                 :            :       else
   12973                 :            :         {
   12974         [ +  + ]:        254 :           if (data->d_size == shdr->sh_size)
   12975                 :        253 :             printf (_("\nString section [%zu] '%s' contains %" PRIu64
   12976                 :            :                              " bytes at offset %#0" PRIx64 ":\n"),
   12977                 :            :                     elf_ndxscn (scn), name,
   12978                 :            :                     shdr->sh_size, shdr->sh_offset);
   12979                 :            :           else
   12980                 :          1 :             printf (_("\nString section [%zu] '%s' contains %" PRIu64
   12981                 :            :                              " bytes (%zd uncompressed) at offset %#0"
   12982                 :            :                              PRIx64 ":\n"),
   12983                 :            :                     elf_ndxscn (scn), name,
   12984                 :            :                     shdr->sh_size, data->d_size, shdr->sh_offset);
   12985                 :            : 
   12986                 :        254 :           const char *start = data->d_buf;
   12987                 :        254 :           const char *const limit = start + data->d_size;
   12988                 :      28283 :           do
   12989                 :            :             {
   12990                 :      28283 :               const char *end = memchr (start, '\0', limit - start);
   12991                 :      28283 :               const size_t pos = start - (const char *) data->d_buf;
   12992         [ -  + ]:      28283 :               if (unlikely (end == NULL))
   12993                 :            :                 {
   12994                 :          0 :                   printf ("  [%6zx]- %.*s\n",
   12995                 :            :                           pos, (int) (limit - start), start);
   12996                 :            :                   break;
   12997                 :            :                 }
   12998                 :      28283 :               printf ("  [%6zx]  %s\n", pos, start);
   12999                 :      28283 :               start = end + 1;
   13000         [ +  + ]:      28283 :             } while (start < limit);
   13001                 :            :         }
   13002                 :            :     }
   13003                 :        281 : }
   13004                 :            : 
   13005                 :            : static void
   13006                 :        149 : for_each_section_argument (Elf *elf, const struct section_argument *list,
   13007                 :            :                            void (*dump) (Elf_Scn *scn, const GElf_Shdr *shdr,
   13008                 :            :                                          const char *name))
   13009                 :            : {
   13010                 :            :   /* Get the section header string table index.  */
   13011                 :        149 :   size_t shstrndx;
   13012         [ -  + ]:        149 :   if (elf_getshdrstrndx (elf, &shstrndx) < 0)
   13013                 :          0 :     error_exit (0, _("cannot get section header string table index"));
   13014                 :            : 
   13015         [ +  + ]:        582 :   for (const struct section_argument *a = list; a != NULL; a = a->next)
   13016                 :            :     {
   13017                 :        433 :       Elf_Scn *scn;
   13018                 :        433 :       GElf_Shdr shdr_mem;
   13019                 :        433 :       const char *name = NULL;
   13020                 :            : 
   13021                 :        433 :       char *endp = NULL;
   13022                 :        433 :       unsigned long int shndx = strtoul (a->arg, &endp, 0);
   13023   [ +  +  -  + ]:        433 :       if (endp != a->arg && *endp == '\0')
   13024                 :            :         {
   13025                 :          1 :           scn = elf_getscn (elf, shndx);
   13026         [ -  + ]:          1 :           if (scn == NULL)
   13027                 :            :             {
   13028                 :          0 :               error (0, 0, _("\nsection [%lu] does not exist"), shndx);
   13029                 :          0 :               continue;
   13030                 :            :             }
   13031                 :            : 
   13032         [ -  + ]:          1 :           if (gelf_getshdr (scn, &shdr_mem) == NULL)
   13033                 :          0 :             error_exit (0, _("cannot get section header: %s"),
   13034                 :            :                         elf_errmsg (-1));
   13035                 :          1 :           name = elf_strptr (elf, shstrndx, shdr_mem.sh_name);
   13036                 :          1 :           (*dump) (scn, &shdr_mem, name);
   13037                 :            :         }
   13038                 :            :       else
   13039                 :            :         {
   13040                 :            :           /* Need to look up the section by name.  */
   13041                 :            :           scn = NULL;
   13042                 :            :           bool found = false;
   13043         [ +  + ]:      12678 :           while ((scn = elf_nextscn (elf, scn)) != NULL)
   13044                 :            :             {
   13045         [ -  + ]:      12246 :               if (gelf_getshdr (scn, &shdr_mem) == NULL)
   13046                 :          0 :                 continue;
   13047                 :      12246 :               name = elf_strptr (elf, shstrndx, shdr_mem.sh_name);
   13048         [ -  + ]:      12246 :               if (name == NULL)
   13049                 :          0 :                 continue;
   13050         [ +  + ]:      12246 :               if (!strcmp (name, a->arg))
   13051                 :            :                 {
   13052                 :        286 :                   found = true;
   13053                 :        286 :                   (*dump) (scn, &shdr_mem, name);
   13054                 :            :                 }
   13055                 :            :             }
   13056                 :            : 
   13057   [ +  +  -  + ]:        432 :           if (unlikely (!found) && !a->implicit)
   13058                 :        433 :             error (0, 0, _("\nsection '%s' does not exist"), a->arg);
   13059                 :            :         }
   13060                 :            :     }
   13061                 :        149 : }
   13062                 :            : 
   13063                 :            : static void
   13064                 :          6 : dump_data (Ebl *ebl)
   13065                 :            : {
   13066                 :          6 :   for_each_section_argument (ebl->elf, dump_data_sections, &dump_data_section);
   13067                 :          6 : }
   13068                 :            : 
   13069                 :            : static void
   13070                 :        143 : dump_strings (Ebl *ebl)
   13071                 :            : {
   13072                 :        143 :   for_each_section_argument (ebl->elf, string_sections, &print_string_section);
   13073                 :        143 : }
   13074                 :            : 
   13075                 :            : static void
   13076                 :          0 : print_strings (Ebl *ebl)
   13077                 :            : {
   13078                 :            :   /* Get the section header string table index.  */
   13079                 :          0 :   size_t shstrndx;
   13080         [ #  # ]:          0 :   if (unlikely (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0))
   13081                 :          0 :     error_exit (0, _("cannot get section header string table index"));
   13082                 :            : 
   13083                 :            :   Elf_Scn *scn;
   13084                 :            :   GElf_Shdr shdr_mem;
   13085                 :            :   const char *name;
   13086                 :            :   scn = NULL;
   13087         [ #  # ]:          0 :   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
   13088                 :            :     {
   13089         [ #  # ]:          0 :       if (gelf_getshdr (scn, &shdr_mem) == NULL)
   13090                 :          0 :         continue;
   13091                 :            : 
   13092         [ #  # ]:          0 :       if (shdr_mem.sh_type != SHT_PROGBITS
   13093         [ #  # ]:          0 :           || !(shdr_mem.sh_flags & SHF_STRINGS))
   13094                 :          0 :         continue;
   13095                 :            : 
   13096                 :          0 :       name = elf_strptr (ebl->elf, shstrndx, shdr_mem.sh_name);
   13097         [ #  # ]:          0 :       if (name == NULL)
   13098                 :          0 :         continue;
   13099                 :            : 
   13100                 :          0 :       print_string_section (scn, &shdr_mem, name);
   13101                 :            :     }
   13102                 :          0 : }
   13103                 :            : 
   13104                 :            : static void
   13105                 :          2 : dump_archive_index (Elf *elf, const char *fname)
   13106                 :            : {
   13107                 :          2 :   size_t narsym;
   13108                 :          2 :   const Elf_Arsym *arsym = elf_getarsym (elf, &narsym);
   13109         [ -  + ]:          2 :   if (arsym == NULL)
   13110                 :            :     {
   13111                 :          0 :       int result = elf_errno ();
   13112         [ #  # ]:          0 :       if (unlikely (result != ELF_E_NO_INDEX))
   13113                 :          0 :         error_exit (0, _("cannot get symbol index of archive '%s': %s"),
   13114                 :            :                     fname, elf_errmsg (result));
   13115                 :            :       else
   13116                 :          0 :         printf (_("\nArchive '%s' has no symbol index\n"), fname);
   13117                 :          0 :       return;
   13118                 :            :     }
   13119                 :            : 
   13120                 :          2 :   printf (_("\nIndex of archive '%s' has %zu entries:\n"),
   13121                 :            :           fname, narsym);
   13122                 :            : 
   13123                 :          2 :   size_t as_off = 0;
   13124         [ +  + ]:         11 :   for (const Elf_Arsym *s = arsym; s < &arsym[narsym - 1]; ++s)
   13125                 :            :     {
   13126         [ +  + ]:          9 :       if (s->as_off != as_off)
   13127                 :            :         {
   13128                 :          6 :           as_off = s->as_off;
   13129                 :            : 
   13130                 :          6 :           Elf *subelf = NULL;
   13131         [ +  - ]:          6 :           if (unlikely (elf_rand (elf, as_off) == 0)
   13132         [ -  + ]:          6 :               || unlikely ((subelf = elf_begin (-1, ELF_C_READ_MMAP, elf))
   13133                 :            :                            == NULL))
   13134                 :            : #if __GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 7)
   13135                 :            :             while (1)
   13136                 :            : #endif
   13137                 :          0 :               error_exit (0,
   13138                 :            :                           _("cannot extract member at offset %zu in '%s': %s"),
   13139                 :            :                           as_off, fname, elf_errmsg (-1));
   13140                 :            : 
   13141                 :          6 :           const Elf_Arhdr *h = elf_getarhdr (subelf);
   13142                 :            : 
   13143                 :          6 :           printf (_("Archive member '%s' contains:\n"), h->ar_name);
   13144                 :            : 
   13145                 :          6 :           elf_end (subelf);
   13146                 :            :         }
   13147                 :            : 
   13148                 :          9 :       printf ("\t%s\n", s->as_name);
   13149                 :            :     }
   13150                 :            : }
   13151                 :            : 
   13152                 :            : #include "debugpred.h"

Generated by: LCOV version 1.14