LCOV - code coverage report
Current view: top level - libdw - dwarf_begin_elf.c (source / functions) Hit Total Coverage
Test: elfutils-0.189 Lines: 164 250 65.6 %
Date: 2023-04-14 15:57:06 Functions: 6 7 85.7 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 121 184 65.8 %

           Branch data     Line data    Source code
       1                 :            : /* Create descriptor from ELF descriptor for processing file.
       2                 :            :    Copyright (C) 2002-2011, 2014, 2015, 2017, 2018 Red Hat, Inc.
       3                 :            :    Copyright (C) 2023, Mark J. Wielaard <mark@klomp.org>
       4                 :            :    This file is part of elfutils.
       5                 :            : 
       6                 :            :    This file is free software; you can redistribute it and/or modify
       7                 :            :    it under the terms of either
       8                 :            : 
       9                 :            :      * the GNU Lesser General Public License as published by the Free
      10                 :            :        Software Foundation; either version 3 of the License, or (at
      11                 :            :        your option) any later version
      12                 :            : 
      13                 :            :    or
      14                 :            : 
      15                 :            :      * the GNU General Public License as published by the Free
      16                 :            :        Software Foundation; either version 2 of the License, or (at
      17                 :            :        your option) any later version
      18                 :            : 
      19                 :            :    or both in parallel, as here.
      20                 :            : 
      21                 :            :    elfutils is distributed in the hope that it will be useful, but
      22                 :            :    WITHOUT ANY WARRANTY; without even the implied warranty of
      23                 :            :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      24                 :            :    General Public License for more details.
      25                 :            : 
      26                 :            :    You should have received copies of the GNU General Public License and
      27                 :            :    the GNU Lesser General Public License along with this program.  If
      28                 :            :    not, see <http://www.gnu.org/licenses/>.  */
      29                 :            : 
      30                 :            : #ifdef HAVE_CONFIG_H
      31                 :            : # include <config.h>
      32                 :            : #endif
      33                 :            : 
      34                 :            : #include <system.h>
      35                 :            : 
      36                 :            : #include <assert.h>
      37                 :            : #include <stdbool.h>
      38                 :            : #include <stddef.h>
      39                 :            : #include <stdlib.h>
      40                 :            : #include <stdio.h>
      41                 :            : #include <string.h>
      42                 :            : #include <sys/types.h>
      43                 :            : #include <sys/stat.h>
      44                 :            : #include <fcntl.h>
      45                 :            : 
      46                 :            : #include "libelfP.h"
      47                 :            : #include "libdwP.h"
      48                 :            : 
      49                 :            : 
      50                 :            : /* Section names.  (Note .debug_str_offsets is the largest 19 chars.)  */
      51                 :            : static const char dwarf_scnnames[IDX_last][19] =
      52                 :            : {
      53                 :            :   [IDX_debug_info] = ".debug_info",
      54                 :            :   [IDX_debug_types] = ".debug_types",
      55                 :            :   [IDX_debug_abbrev] = ".debug_abbrev",
      56                 :            :   [IDX_debug_addr] = ".debug_addr",
      57                 :            :   [IDX_debug_aranges] = ".debug_aranges",
      58                 :            :   [IDX_debug_line] = ".debug_line",
      59                 :            :   [IDX_debug_line_str] = ".debug_line_str",
      60                 :            :   [IDX_debug_frame] = ".debug_frame",
      61                 :            :   [IDX_debug_loc] = ".debug_loc",
      62                 :            :   [IDX_debug_loclists] = ".debug_loclists",
      63                 :            :   [IDX_debug_pubnames] = ".debug_pubnames",
      64                 :            :   [IDX_debug_str] = ".debug_str",
      65                 :            :   [IDX_debug_str_offsets] = ".debug_str_offsets",
      66                 :            :   [IDX_debug_macinfo] = ".debug_macinfo",
      67                 :            :   [IDX_debug_macro] = ".debug_macro",
      68                 :            :   [IDX_debug_ranges] = ".debug_ranges",
      69                 :            :   [IDX_debug_rnglists] = ".debug_rnglists",
      70                 :            :   [IDX_gnu_debugaltlink] = ".gnu_debugaltlink"
      71                 :            : };
      72                 :            : #define ndwarf_scnnames (sizeof (dwarf_scnnames) / sizeof (dwarf_scnnames[0]))
      73                 :            : 
      74                 :            : /* Map from section index to string section index.
      75                 :            :    Non-string sections should have STR_SCN_IDX_last.  */
      76                 :            : static const enum string_section_index scn_to_string_section_idx[IDX_last] =
      77                 :            : {
      78                 :            :   [IDX_debug_info] = STR_SCN_IDX_last,
      79                 :            :   [IDX_debug_types] = STR_SCN_IDX_last,
      80                 :            :   [IDX_debug_abbrev] = STR_SCN_IDX_last,
      81                 :            :   [IDX_debug_addr] = STR_SCN_IDX_last,
      82                 :            :   [IDX_debug_aranges] = STR_SCN_IDX_last,
      83                 :            :   [IDX_debug_line] = STR_SCN_IDX_last,
      84                 :            :   [IDX_debug_line_str] = STR_SCN_IDX_debug_line_str,
      85                 :            :   [IDX_debug_frame] = STR_SCN_IDX_last,
      86                 :            :   [IDX_debug_loc] = STR_SCN_IDX_last,
      87                 :            :   [IDX_debug_loclists] = STR_SCN_IDX_last,
      88                 :            :   [IDX_debug_pubnames] = STR_SCN_IDX_last,
      89                 :            :   [IDX_debug_str] = STR_SCN_IDX_debug_str,
      90                 :            :   [IDX_debug_str_offsets] = STR_SCN_IDX_last,
      91                 :            :   [IDX_debug_macinfo] = STR_SCN_IDX_last,
      92                 :            :   [IDX_debug_macro] = STR_SCN_IDX_last,
      93                 :            :   [IDX_debug_ranges] = STR_SCN_IDX_last,
      94                 :            :   [IDX_debug_rnglists] = STR_SCN_IDX_last,
      95                 :            :   [IDX_gnu_debugaltlink] = STR_SCN_IDX_last
      96                 :            : };
      97                 :            : 
      98                 :            : static enum dwarf_type
      99                 :     171102 : scn_dwarf_type (Dwarf *result, size_t shstrndx, Elf_Scn *scn)
     100                 :            : {
     101                 :     171102 :   GElf_Shdr shdr_mem;
     102                 :     171102 :   GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
     103         [ +  - ]:     171102 :   if (shdr == NULL)
     104                 :            :     return TYPE_UNKNOWN;
     105                 :            : 
     106                 :     342204 :   const char *scnname = elf_strptr (result->elf, shstrndx,
     107                 :     171102 :                                     shdr->sh_name);
     108         [ +  + ]:     171102 :   if (scnname != NULL)
     109                 :            :     {
     110         [ +  + ]:     171061 :       if (startswith (scnname, ".gnu.debuglto_.debug"))
     111                 :            :         return TYPE_GNU_LTO;
     112   [ +  +  +  + ]:     171056 :       else if (startswith (scnname, ".debug_") || startswith (scnname, ".zdebug_"))
     113                 :            :         {
     114                 :       6123 :           size_t len = strlen (scnname);
     115         [ +  + ]:       6123 :           if (strcmp (scnname + len - 4, ".dwo") == 0)
     116                 :            :             return TYPE_DWO;
     117                 :            :           else
     118                 :       5705 :             return TYPE_PLAIN;
     119                 :            :         }
     120                 :            :     }
     121                 :            :   return TYPE_UNKNOWN;
     122                 :            : }
     123                 :            : static Dwarf *
     124                 :     288195 : check_section (Dwarf *result, size_t shstrndx, Elf_Scn *scn, bool inscngrp)
     125                 :            : {
     126                 :     288195 :   GElf_Shdr shdr_mem;
     127                 :     288195 :   GElf_Shdr *shdr;
     128                 :            : 
     129                 :            :   /* Get the section header data.  */
     130                 :     288195 :   shdr = gelf_getshdr (scn, &shdr_mem);
     131         [ -  + ]:     288195 :   if (shdr == NULL)
     132                 :            :     /* We may read /proc/PID/mem with only program headers mapped and section
     133                 :            :        headers out of the mapped pages.  */
     134                 :          0 :     goto err;
     135                 :            : 
     136                 :            :   /* Ignore any SHT_NOBITS sections.  Debugging sections should not
     137                 :            :      have been stripped, but in case of a corrupt file we won't try
     138                 :            :      to look at the missing data.  */
     139         [ +  + ]:     288195 :   if (unlikely (shdr->sh_type == SHT_NOBITS))
     140                 :            :     return result;
     141                 :            : 
     142                 :            :   /* Make sure the section is part of a section group only iff we
     143                 :            :      really need it.  If we are looking for the global (= non-section
     144                 :            :      group debug info) we have to ignore all the info in section
     145                 :            :      groups.  If we are looking into a section group we cannot look at
     146                 :            :      a section which isn't part of the section group.  */
     147   [ +  -  +  + ]:     272265 :   if (! inscngrp && (shdr->sh_flags & SHF_GROUP) != 0)
     148                 :            :     /* Ignore the section.  */
     149                 :            :     return result;
     150                 :            : 
     151                 :            : 
     152                 :            :   /* We recognize the DWARF section by their names.  This is not very
     153                 :            :      safe and stable but the best we can do.  */
     154                 :     544528 :   const char *scnname = elf_strptr (result->elf, shstrndx,
     155                 :     272264 :                                     shdr->sh_name);
     156         [ +  + ]:     272264 :   if (scnname == NULL)
     157                 :            :     {
     158                 :            :       /* The section name must be valid.  Otherwise is the ELF file
     159                 :            :          invalid.  */
     160                 :          1 :     err:
     161                 :          1 :       Dwarf_Sig8_Hash_free (&result->sig8_hash);
     162                 :          1 :       __libdw_seterrno (DWARF_E_INVALID_ELF);
     163                 :          1 :       free (result);
     164                 :          1 :       return NULL;
     165                 :            :     }
     166                 :            : 
     167                 :            :   /* Recognize the various sections.  Most names start with .debug_.
     168                 :            :      They might be compressed (and start with .z).  Or end with .dwo
     169                 :            :      for split dwarf sections.  Or start with .gnu.debuglto_ for
     170                 :            :      LTO debug sections.  We should only use one consistent set at
     171                 :            :      a time.  We prefer PLAIN over DWO over LTO.  */
     172                 :            :   size_t cnt;
     173                 :    4704361 :   bool gnu_compressed = false;
     174         [ +  + ]:    4704361 :   for (cnt = 0; cnt < ndwarf_scnnames; ++cnt)
     175                 :            :     {
     176                 :    4471880 :       size_t dbglen = strlen (dwarf_scnnames[cnt]);
     177                 :    4471880 :       size_t scnlen = strlen (scnname);
     178         [ +  + ]:    4471880 :       if (strncmp (scnname, dwarf_scnnames[cnt], dbglen) == 0
     179         [ +  + ]:      39832 :           && (dbglen == scnlen
     180         [ +  + ]:        550 :               || (scnlen == dbglen + 4
     181         [ +  + ]:        432 :                   && strstr (scnname, ".dwo") == scnname + dbglen)))
     182                 :            :         {
     183         [ +  + ]:      39700 :           if (dbglen == scnlen)
     184                 :            :             {
     185         [ -  + ]:      39282 :               if (result->type == TYPE_PLAIN)
     186                 :            :                 break;
     187                 :            :             }
     188         [ -  + ]:        418 :           else if (result->type == TYPE_DWO)
     189                 :            :             break;
     190                 :            :         }
     191   [ +  +  +  + ]:    4432180 :       else if (scnname[0] == '.' && scnname[1] == 'z'
     192         [ +  + ]:        594 :                && (strncmp (&scnname[2], &dwarf_scnnames[cnt][1],
     193                 :            :                             dbglen - 1) == 0
     194         [ -  + ]:         82 :                    && (scnlen == dbglen + 1
     195         [ #  # ]:          0 :                        || (scnlen == dbglen + 5
     196                 :          0 :                            && strstr (scnname,
     197         [ #  # ]:          0 :                                       ".dwo") == scnname + dbglen + 1))))
     198                 :            :         {
     199         [ +  - ]:         82 :           if (scnlen == dbglen + 1)
     200                 :            :             {
     201         [ -  + ]:         82 :               if (result->type == TYPE_PLAIN)
     202                 :            :                 {
     203                 :            :                   gnu_compressed = true;
     204                 :            :                   break;
     205                 :            :                 }
     206                 :            :             }
     207         [ #  # ]:          0 :           else if (result->type <= TYPE_DWO)
     208                 :            :             {
     209                 :            :               gnu_compressed = true;
     210                 :            :               break;
     211                 :            :             }
     212                 :            :         }
     213         [ +  + ]:    4432098 :       else if (scnlen > 14 /* .gnu.debuglto_ prefix. */
     214         [ +  + ]:     130368 :                && startswith (scnname, ".gnu.debuglto_")
     215         [ +  + ]:         90 :                && strcmp (&scnname[14], dwarf_scnnames[cnt]) == 0)
     216                 :            :         {
     217         [ +  - ]:          5 :           if (result->type == TYPE_GNU_LTO)
     218                 :            :             break;
     219                 :            :         }
     220                 :            :     }
     221                 :            : 
     222         [ +  + ]:     272263 :   if (cnt >= ndwarf_scnnames)
     223                 :            :     /* Not a debug section; ignore it. */
     224                 :            :     return result;
     225                 :            : 
     226         [ +  - ]:      39782 :   if (unlikely (result->sectiondata[cnt] != NULL))
     227                 :            :     /* A section appears twice.  That's bad.  We ignore the section.  */
     228                 :            :     return result;
     229                 :            : 
     230                 :            :   /* We cannot know whether or not a GNU compressed section has already
     231                 :            :      been uncompressed or not, so ignore any errors.  */
     232         [ +  + ]:      39782 :   if (gnu_compressed)
     233                 :         82 :     elf_compress_gnu (scn, 0, 0);
     234                 :            : 
     235         [ +  + ]:      39782 :   if ((shdr->sh_flags & SHF_COMPRESSED) != 0)
     236                 :            :     {
     237         [ +  - ]:        333 :       if (elf_compress (scn, 0, 0) < 0)
     238                 :            :         {
     239                 :            :           /* It would be nice if we could fail with a specific error.
     240                 :            :              But we don't know if this was an essential section or not.
     241                 :            :              So just continue for now. See also valid_p().  */
     242                 :            :           return result;
     243                 :            :         }
     244                 :            :     }
     245                 :            : 
     246                 :            :   /* Get the section data.  Should be raw bytes, no conversion needed.  */
     247                 :      39782 :   Elf_Data *data = elf_rawdata (scn, NULL);
     248         [ -  + ]:      39782 :   if (data == NULL)
     249                 :          0 :     goto err;
     250                 :            : 
     251   [ +  +  +  - ]:      39782 :   if (data->d_buf == NULL || data->d_size == 0)
     252                 :            :     /* No data actually available, ignore it. */
     253                 :            :     return result;
     254                 :            : 
     255                 :            :   /* We can now read the section data into results. */
     256                 :      39776 :   result->sectiondata[cnt] = data;
     257                 :            : 
     258                 :            :   /* If the section contains string data, we want to know a size of a prefix
     259                 :            :      where any string will be null-terminated. */
     260                 :      39776 :   enum string_section_index string_section_idx = scn_to_string_section_idx[cnt];
     261         [ +  + ]:      39776 :   if (string_section_idx < STR_SCN_IDX_last)
     262                 :            :     {
     263                 :            :       size_t size = data->d_size;
     264                 :            :       /* Reduce the size by the number of non-zero bytes at the end of the
     265                 :            :          section.  */
     266   [ +  -  -  + ]:       5736 :       while (size > 0 && *((const char *) data->d_buf + size - 1) != '\0')
     267                 :            :         --size;
     268                 :       5736 :       result->string_section_size[string_section_idx] = size;
     269                 :            :     }
     270                 :            : 
     271                 :            :   return result;
     272                 :            : }
     273                 :            : 
     274                 :            : 
     275                 :            : /* Helper function to set debugdir field.  We want to cache the dir
     276                 :            :    where we found this Dwarf ELF file to locate alt and dwo files.  */
     277                 :            : char *
     278                 :       6500 : __libdw_debugdir (int fd)
     279                 :            : {
     280                 :            :   /* strlen ("/proc/self/fd/") = 14 + strlen (<MAXINT>) = 10 + 1 = 25.  */
     281                 :       6500 :   char devfdpath[25];
     282         [ -  + ]:       6500 :   sprintf (devfdpath, "/proc/self/fd/%u", fd);
     283         [ -  + ]:       6500 :   char *fdpath = realpath (devfdpath, NULL);
     284                 :       6500 :   char *fddir;
     285   [ +  +  +  - ]:       6500 :   if (fdpath != NULL && fdpath[0] == '/'
     286         [ +  - ]:       6073 :       && (fddir = strrchr (fdpath, '/')) != NULL)
     287                 :            :     {
     288                 :       6073 :       *++fddir = '\0';
     289                 :       6073 :       return fdpath;
     290                 :            :     }
     291                 :            :   return NULL;
     292                 :            : }
     293                 :            : 
     294                 :            : 
     295                 :            : /* Check whether all the necessary DWARF information is available.  */
     296                 :            : static Dwarf *
     297                 :       5952 : valid_p (Dwarf *result)
     298                 :            : {
     299                 :            :   /* We looked at all the sections.  Now determine whether all the
     300                 :            :      sections with debugging information we need are there.
     301                 :            : 
     302                 :            :      Require at least one section that can be read "standalone".  */
     303         [ +  + ]:       5952 :   if (likely (result != NULL)
     304   [ +  +  +  +  :       5951 :       && unlikely (result->sectiondata[IDX_debug_info] == NULL
                   +  + ]
     305                 :            :                    && result->sectiondata[IDX_debug_line] == NULL
     306                 :            :                    && result->sectiondata[IDX_debug_frame] == NULL))
     307                 :            :     {
     308                 :        176 :       Dwarf_Sig8_Hash_free (&result->sig8_hash);
     309                 :        176 :       __libdw_seterrno (DWARF_E_NO_DWARF);
     310                 :        176 :       free (result);
     311                 :        176 :       result = NULL;
     312                 :            :     }
     313                 :            : 
     314                 :            :   /* We are setting up some "fake" CUs, which need an address size.
     315                 :            :      Check the ELF class to come up with something reasonable.  */
     316                 :       5952 :   int elf_addr_size = 8;
     317         [ +  + ]:       5952 :   if (result != NULL)
     318                 :            :     {
     319                 :       5775 :       GElf_Ehdr ehdr;
     320         [ -  + ]:       5775 :       if (gelf_getehdr (result->elf, &ehdr) == NULL)
     321                 :            :         {
     322                 :          0 :           Dwarf_Sig8_Hash_free (&result->sig8_hash);
     323                 :          0 :           __libdw_seterrno (DWARF_E_INVALID_ELF);
     324                 :          0 :           free (result);
     325                 :          0 :           result = NULL;
     326                 :            :         }
     327         [ +  + ]:       5775 :       else if (ehdr.e_ident[EI_CLASS] == ELFCLASS32)
     328                 :        118 :         elf_addr_size = 4;
     329                 :            :     }
     330                 :            : 
     331                 :            :   /* For dwarf_location_attr () we need a "fake" CU to indicate
     332                 :            :      where the "fake" attribute data comes from.  This is a block
     333                 :            :      inside the .debug_loc or .debug_loclists section.  */
     334   [ +  +  +  + ]:       5952 :   if (result != NULL && result->sectiondata[IDX_debug_loc] != NULL)
     335                 :            :     {
     336                 :       5274 :       result->fake_loc_cu = malloc (sizeof (Dwarf_CU));
     337         [ -  + ]:       5274 :       if (unlikely (result->fake_loc_cu == NULL))
     338                 :            :         {
     339                 :          0 :           Dwarf_Sig8_Hash_free (&result->sig8_hash);
     340                 :          0 :           __libdw_seterrno (DWARF_E_NOMEM);
     341                 :          0 :           free (result);
     342                 :          0 :           result = NULL;
     343                 :            :         }
     344                 :            :       else
     345                 :            :         {
     346                 :       5274 :           result->fake_loc_cu->sec_idx = IDX_debug_loc;
     347                 :       5274 :           result->fake_loc_cu->dbg = result;
     348                 :       5274 :           result->fake_loc_cu->startp
     349                 :       5274 :             = result->sectiondata[IDX_debug_loc]->d_buf;
     350                 :       5274 :           result->fake_loc_cu->endp
     351                 :       5274 :             = (result->sectiondata[IDX_debug_loc]->d_buf
     352                 :       5274 :                + result->sectiondata[IDX_debug_loc]->d_size);
     353                 :       5274 :           result->fake_loc_cu->locs = NULL;
     354                 :       5274 :           result->fake_loc_cu->address_size = elf_addr_size;
     355                 :       5274 :           result->fake_loc_cu->offset_size = 4;
     356                 :       5274 :           result->fake_loc_cu->version = 4;
     357                 :       5274 :           result->fake_loc_cu->split = NULL;
     358                 :            :         }
     359                 :            :     }
     360                 :            : 
     361   [ +  +  +  + ]:       5952 :   if (result != NULL && result->sectiondata[IDX_debug_loclists] != NULL)
     362                 :            :     {
     363                 :         46 :       result->fake_loclists_cu = malloc (sizeof (Dwarf_CU));
     364         [ -  + ]:         46 :       if (unlikely (result->fake_loclists_cu == NULL))
     365                 :            :         {
     366                 :          0 :           Dwarf_Sig8_Hash_free (&result->sig8_hash);
     367                 :          0 :           __libdw_seterrno (DWARF_E_NOMEM);
     368                 :          0 :           free (result->fake_loc_cu);
     369                 :          0 :           free (result);
     370                 :          0 :           result = NULL;
     371                 :            :         }
     372                 :            :       else
     373                 :            :         {
     374                 :         46 :           result->fake_loclists_cu->sec_idx = IDX_debug_loclists;
     375                 :         46 :           result->fake_loclists_cu->dbg = result;
     376                 :         46 :           result->fake_loclists_cu->startp
     377                 :         46 :             = result->sectiondata[IDX_debug_loclists]->d_buf;
     378                 :         46 :           result->fake_loclists_cu->endp
     379                 :         46 :             = (result->sectiondata[IDX_debug_loclists]->d_buf
     380                 :         46 :                + result->sectiondata[IDX_debug_loclists]->d_size);
     381                 :         46 :           result->fake_loclists_cu->locs = NULL;
     382                 :         46 :           result->fake_loclists_cu->address_size = elf_addr_size;
     383                 :         46 :           result->fake_loclists_cu->offset_size = 4;
     384                 :         46 :           result->fake_loclists_cu->version = 5;
     385                 :         46 :           result->fake_loclists_cu->split = NULL;
     386                 :            :         }
     387                 :            :     }
     388                 :            : 
     389                 :            :   /* For DW_OP_constx/GNU_const_index and DW_OP_addrx/GNU_addr_index
     390                 :            :      the dwarf_location_attr () will need a "fake" address CU to
     391                 :            :      indicate where the attribute data comes from.  This is a just
     392                 :            :      inside the .debug_addr section, if it exists.  */
     393   [ +  +  +  + ]:       5952 :   if (result != NULL && result->sectiondata[IDX_debug_addr] != NULL)
     394                 :            :     {
     395                 :         41 :       result->fake_addr_cu = malloc (sizeof (Dwarf_CU));
     396         [ -  + ]:         41 :       if (unlikely (result->fake_addr_cu == NULL))
     397                 :            :         {
     398                 :          0 :           Dwarf_Sig8_Hash_free (&result->sig8_hash);
     399                 :          0 :           __libdw_seterrno (DWARF_E_NOMEM);
     400                 :          0 :           free (result->fake_loc_cu);
     401                 :          0 :           free (result->fake_loclists_cu);
     402                 :          0 :           free (result);
     403                 :          0 :           result = NULL;
     404                 :            :         }
     405                 :            :       else
     406                 :            :         {
     407                 :         41 :           result->fake_addr_cu->sec_idx = IDX_debug_addr;
     408                 :         41 :           result->fake_addr_cu->dbg = result;
     409                 :         41 :           result->fake_addr_cu->startp
     410                 :         41 :             = result->sectiondata[IDX_debug_addr]->d_buf;
     411                 :         41 :           result->fake_addr_cu->endp
     412                 :         41 :             = (result->sectiondata[IDX_debug_addr]->d_buf
     413                 :         41 :                + result->sectiondata[IDX_debug_addr]->d_size);
     414                 :         41 :           result->fake_addr_cu->locs = NULL;
     415                 :         41 :           result->fake_addr_cu->address_size = elf_addr_size;
     416                 :         41 :           result->fake_addr_cu->offset_size = 4;
     417                 :         41 :           result->fake_addr_cu->version = 5;
     418                 :         41 :           result->fake_addr_cu->split = NULL;
     419                 :            :         }
     420                 :            :     }
     421                 :            : 
     422         [ +  + ]:       5952 :   if (result != NULL)
     423                 :       5775 :     result->debugdir = __libdw_debugdir (result->elf->fildes);
     424                 :            : 
     425                 :       5952 :   return result;
     426                 :            : }
     427                 :            : 
     428                 :            : 
     429                 :            : static Dwarf *
     430                 :       5952 : global_read (Dwarf *result, Elf *elf, size_t shstrndx)
     431                 :            : {
     432                 :       5952 :   Elf_Scn *scn = NULL;
     433                 :            : 
     434                 :            :   /* First check the type (PLAIN, DWO, LTO) we are looking for.  We
     435                 :            :      prefer PLAIN if available over DWO, over LTO.  */
     436   [ +  +  +  + ]:     177054 :   while ((scn = elf_nextscn (elf, scn)) != NULL && result->type != TYPE_PLAIN)
     437                 :            :     {
     438                 :     171102 :       enum dwarf_type type = scn_dwarf_type (result, shstrndx, scn);
     439         [ +  + ]:     171102 :       if (type > result->type)
     440                 :       5776 :         result->type = type;
     441                 :            :     }
     442                 :            : 
     443                 :            :   scn = NULL;
     444   [ +  +  +  + ]:     294147 :   while (result != NULL && (scn = elf_nextscn (elf, scn)) != NULL)
     445                 :     288195 :     result = check_section (result, shstrndx, scn, false);
     446                 :            : 
     447                 :       5952 :   return valid_p (result);
     448                 :            : }
     449                 :            : 
     450                 :            : 
     451                 :            : static Dwarf *
     452                 :          0 : scngrp_read (Dwarf *result, Elf *elf, size_t shstrndx, Elf_Scn *scngrp)
     453                 :            : {
     454                 :          0 :   GElf_Shdr shdr_mem;
     455                 :          0 :   GElf_Shdr *shdr = gelf_getshdr (scngrp, &shdr_mem);
     456         [ #  # ]:          0 :   if (shdr == NULL)
     457                 :            :     {
     458                 :          0 :       Dwarf_Sig8_Hash_free (&result->sig8_hash);
     459                 :          0 :       __libdw_seterrno (DWARF_E_INVALID_ELF);
     460                 :          0 :       free (result);
     461                 :          0 :       return NULL;
     462                 :            :     }
     463                 :            : 
     464         [ #  # ]:          0 :   if ((shdr->sh_flags & SHF_COMPRESSED) != 0
     465         [ #  # ]:          0 :       && elf_compress (scngrp, 0, 0) < 0)
     466                 :            :     {
     467                 :          0 :       Dwarf_Sig8_Hash_free (&result->sig8_hash);
     468                 :          0 :       __libdw_seterrno (DWARF_E_COMPRESSED_ERROR);
     469                 :          0 :       free (result);
     470                 :          0 :       return NULL;
     471                 :            :     }
     472                 :            : 
     473                 :            :   /* SCNGRP is the section descriptor for a section group which might
     474                 :            :      contain debug sections.  */
     475                 :          0 :   Elf_Data *data = elf_getdata (scngrp, NULL);
     476         [ #  # ]:          0 :   if (data == NULL)
     477                 :            :     {
     478                 :            :       /* We cannot read the section content.  Fail!  */
     479                 :          0 :       Dwarf_Sig8_Hash_free (&result->sig8_hash);
     480                 :          0 :       free (result);
     481                 :          0 :       return NULL;
     482                 :            :     }
     483                 :            : 
     484                 :            :   /* The content of the section is a number of 32-bit words which
     485                 :            :      represent section indices.  The first word is a flag word.  */
     486                 :          0 :   Elf32_Word *scnidx = (Elf32_Word *) data->d_buf;
     487                 :          0 :   size_t cnt;
     488                 :            : 
     489                 :            :   /* First check the type (PLAIN, DWO, LTO) we are looking for.  We
     490                 :            :      prefer PLAIN if available over DWO, over LTO.  */
     491         [ #  # ]:          0 :   for (cnt = 1; cnt * sizeof (Elf32_Word) <= data->d_size; ++cnt)
     492                 :            :     {
     493                 :          0 :       Elf_Scn *scn = elf_getscn (elf, scnidx[cnt]);
     494         [ #  # ]:          0 :       if (scn == NULL)
     495                 :            :         {
     496                 :            :           /* A section group refers to a non-existing section.  Should
     497                 :            :              never happen.  */
     498                 :          0 :           Dwarf_Sig8_Hash_free (&result->sig8_hash);
     499                 :          0 :           __libdw_seterrno (DWARF_E_INVALID_ELF);
     500                 :          0 :           free (result);
     501                 :          0 :           return NULL;
     502                 :            :         }
     503                 :            : 
     504                 :          0 :       enum dwarf_type type = scn_dwarf_type (result, shstrndx, scn);
     505         [ #  # ]:          0 :       if (type > result->type)
     506                 :          0 :         result->type = type;
     507                 :            :     }
     508                 :            : 
     509   [ #  #  #  # ]:          0 :   for (cnt = 1; cnt * sizeof (Elf32_Word) <= data->d_size && result != NULL; ++cnt)
     510                 :            :     {
     511                 :          0 :       Elf_Scn *scn = elf_getscn (elf, scnidx[cnt]);
     512         [ #  # ]:          0 :       assert (scn != NULL); // checked above
     513                 :          0 :       result = check_section (result, shstrndx, scn, true);
     514         [ #  # ]:          0 :       if (result == NULL)
     515                 :            :         break;
     516                 :            :     }
     517                 :            : 
     518                 :          0 :   return valid_p (result);
     519                 :            : }
     520                 :            : 
     521                 :            : 
     522                 :            : Dwarf *
     523                 :       5952 : dwarf_begin_elf (Elf *elf, Dwarf_Cmd cmd, Elf_Scn *scngrp)
     524                 :            : {
     525                 :       5952 :   GElf_Ehdr *ehdr;
     526                 :       5952 :   GElf_Ehdr ehdr_mem;
     527                 :            : 
     528                 :            :   /* Get the ELF header of the file.  We need various pieces of
     529                 :            :      information from it.  */
     530                 :       5952 :   ehdr = gelf_getehdr (elf, &ehdr_mem);
     531         [ -  + ]:       5952 :   if (ehdr == NULL)
     532                 :            :     {
     533         [ #  # ]:          0 :       if (elf_kind (elf) != ELF_K_ELF)
     534                 :          0 :         __libdw_seterrno (DWARF_E_NOELF);
     535                 :            :       else
     536                 :          0 :         __libdw_seterrno (DWARF_E_GETEHDR_ERROR);
     537                 :            : 
     538                 :          0 :       return NULL;
     539                 :            :     }
     540                 :            : 
     541                 :            : 
     542                 :            :   /* Default memory allocation size.  */
     543                 :       5952 :   size_t mem_default_size = sysconf (_SC_PAGESIZE) - 4 * sizeof (void *);
     544         [ -  + ]:       5952 :   assert (sizeof (struct Dwarf) < mem_default_size);
     545                 :            : 
     546                 :            :   /* Allocate the data structure.  */
     547                 :       5952 :   Dwarf *result = calloc (1, sizeof (Dwarf));
     548         [ +  - ]:       5952 :   if (unlikely (result == NULL)
     549         [ -  + ]:       5952 :       || unlikely (Dwarf_Sig8_Hash_init (&result->sig8_hash, 11) < 0))
     550                 :            :     {
     551                 :          0 :       free (result);
     552                 :          0 :       __libdw_seterrno (DWARF_E_NOMEM);
     553                 :          0 :       return NULL;
     554                 :            :     }
     555                 :            : 
     556                 :            :   /* Fill in some values.  */
     557         [ +  + ]:       5952 :   if ((BYTE_ORDER == LITTLE_ENDIAN && ehdr->e_ident[EI_DATA] == ELFDATA2MSB)
     558                 :            :       || (BYTE_ORDER == BIG_ENDIAN && ehdr->e_ident[EI_DATA] == ELFDATA2LSB))
     559                 :         78 :     result->other_byte_order = true;
     560                 :            : 
     561                 :       5952 :   result->elf = elf;
     562                 :       5952 :   result->alt_fd = -1;
     563                 :            : 
     564                 :            :   /* Initialize the memory handling.  Initial blocks are allocated on first
     565                 :            :      actual allocation.  */
     566                 :       5952 :   result->mem_default_size = mem_default_size;
     567                 :       5952 :   result->oom_handler = __libdw_oom;
     568         [ -  + ]:       5952 :   if (pthread_rwlock_init(&result->mem_rwl, NULL) != 0)
     569                 :            :     {
     570                 :          0 :       free (result);
     571                 :          0 :       __libdw_seterrno (DWARF_E_NOMEM); /* no memory.  */
     572                 :          0 :       return NULL;
     573                 :            :     }
     574                 :       5952 :   result->mem_stacks = 0;
     575                 :       5952 :   result->mem_tails = NULL;
     576                 :            : 
     577         [ +  - ]:       5952 :   if (cmd == DWARF_C_READ || cmd == DWARF_C_RDWR)
     578                 :            :     {
     579                 :            :       /* All sections are recognized by name, so pass the section header
     580                 :            :          string index along to easily get the section names.  */
     581                 :       5952 :       size_t shstrndx;
     582         [ -  + ]:       5952 :       if (elf_getshdrstrndx (elf, &shstrndx) != 0)
     583                 :            :         {
     584                 :          0 :           Dwarf_Sig8_Hash_free (&result->sig8_hash);
     585                 :          0 :           __libdw_seterrno (DWARF_E_INVALID_ELF);
     586                 :          0 :           free (result);
     587                 :          0 :           return NULL;
     588                 :            :         }
     589                 :            : 
     590                 :            :       /* If the caller provides a section group we get the DWARF
     591                 :            :          sections only from this section group.  Otherwise we search
     592                 :            :          for the first section with the required name.  Further
     593                 :            :          sections with the name are ignored.  The DWARF specification
     594                 :            :          does not really say this is allowed.  */
     595         [ +  - ]:       5952 :       if (scngrp == NULL)
     596                 :       5952 :         return global_read (result, elf, shstrndx);
     597                 :            :       else
     598                 :          0 :         return scngrp_read (result, elf, shstrndx, scngrp);
     599                 :            :     }
     600         [ #  # ]:          0 :   else if (cmd == DWARF_C_WRITE)
     601                 :            :     {
     602                 :          0 :       Dwarf_Sig8_Hash_free (&result->sig8_hash);
     603                 :          0 :       __libdw_seterrno (DWARF_E_UNIMPL);
     604                 :          0 :       free (result);
     605                 :          0 :       return NULL;
     606                 :            :     }
     607                 :            : 
     608                 :          0 :   Dwarf_Sig8_Hash_free (&result->sig8_hash);
     609                 :          0 :   __libdw_seterrno (DWARF_E_INVALID_CMD);
     610                 :          0 :   free (result);
     611                 :          0 :   return NULL;
     612                 :            : }
     613                 :            : INTDEF(dwarf_begin_elf)

Generated by: LCOV version 1.14