LCOV - code coverage report
Current view: top level - debuginfod - debuginfod-find.c (source / functions) Hit Total Coverage
Test: elfutils-0.183 Lines: 77 88 87.5 %
Date: 2021-02-07 19:08:58 Functions: 3 3 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 36 48 75.0 %

           Branch data     Line data    Source code
       1                 :            : /* Command-line frontend for retrieving ELF / DWARF / source files
       2                 :            :    from the debuginfod.
       3                 :            :    Copyright (C) 2019-2020 Red Hat, Inc.
       4                 :            :    This file is part of elfutils.
       5                 :            : 
       6                 :            :    This file is free software; you can redistribute it and/or modify
       7                 :            :    it under the terms of the GNU General Public License as published by
       8                 :            :    the Free Software Foundation; either version 3 of the License, or
       9                 :            :    (at your option) any later version.
      10                 :            : 
      11                 :            :    elfutils is distributed in the hope that it will be useful, but
      12                 :            :    WITHOUT ANY WARRANTY; without even the implied warranty of
      13                 :            :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      14                 :            :    General Public License for more details.
      15                 :            : 
      16                 :            :    You should have received a copy of the GNU General Public License
      17                 :            :    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
      18                 :            : 
      19                 :            : 
      20                 :            : #include "config.h"
      21                 :            : #include "printversion.h"
      22                 :            : #include "debuginfod.h"
      23                 :            : #include <errno.h>
      24                 :            : #include <stdio.h>
      25                 :            : #include <stdlib.h>
      26                 :            : #include <string.h>
      27                 :            : #include <time.h>
      28                 :            : #include <argp.h>
      29                 :            : #include <unistd.h>
      30                 :            : #include <fcntl.h>
      31                 :            : #include <gelf.h>
      32                 :            : #include <libdwelf.h>
      33                 :            : 
      34                 :            : 
      35                 :            : /* Name and version of program.  */
      36                 :            : ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
      37                 :            : 
      38                 :            : /* Bug report address.  */
      39                 :            : ARGP_PROGRAM_BUG_ADDRESS_DEF = PACKAGE_BUGREPORT;
      40                 :            : 
      41                 :            : /* Short description of program.  */
      42                 :            : static const char doc[] = N_("Request debuginfo-related content "
      43                 :            :                              "from debuginfods listed in $" DEBUGINFOD_URLS_ENV_VAR ".");
      44                 :            : 
      45                 :            : /* Strings for arguments in help texts.  */
      46                 :            : static const char args_doc[] = N_("debuginfo BUILDID\n"
      47                 :            :                                   "debuginfo PATH\n"
      48                 :            :                                   "executable BUILDID\n"
      49                 :            :                                   "executable PATH\n"
      50                 :            :                                   "source BUILDID /FILENAME\n"
      51                 :            :                                   "source PATH /FILENAME\n");
      52                 :            : 
      53                 :            : 
      54                 :            : /* Definitions of arguments for argp functions.  */
      55                 :            : static const struct argp_option options[] =
      56                 :            :   {
      57                 :            :    { "verbose", 'v', NULL, 0, "Increase verbosity.", 0 },
      58                 :            :    { NULL, 0, NULL, 0, NULL, 0 }
      59                 :            :   };
      60                 :            : 
      61                 :            : /* debuginfod connection handle.  */
      62                 :            : static debuginfod_client *client;
      63                 :            : static int verbose;
      64                 :            : 
      65                 :          3 : int progressfn(debuginfod_client *c __attribute__((__unused__)),
      66                 :            :                long a, long b)
      67                 :            : {
      68                 :          3 :   static bool first = true;
      69                 :          3 :   static struct timespec last;
      70                 :          3 :   struct timespec now;
      71                 :          3 :   uint64_t delta;
      72         [ +  + ]:          3 :   if (!first)
      73                 :            :     {
      74                 :          2 :       clock_gettime (CLOCK_MONOTONIC, &now);
      75                 :          4 :       delta = ((now.tv_sec - last.tv_sec) * 1000000
      76                 :          2 :                + (now.tv_nsec - last.tv_nsec) / 1000);
      77                 :            :     }
      78                 :            :   else
      79                 :            :     {
      80                 :          1 :       first = false;
      81                 :          1 :       delta = 250000;
      82                 :            :     }
      83                 :            : 
      84                 :            :   /* Show progress the first time and then at most 5 times a second. */
      85         [ -  + ]:          3 :   if (delta > 200000)
      86                 :            :     {
      87                 :          1 :       fprintf (stderr, "Progress %ld / %ld\n", a, b);
      88                 :          1 :       clock_gettime (CLOCK_MONOTONIC, &last);
      89                 :            :     }
      90                 :          3 :   return 0;
      91                 :            : }
      92                 :            : 
      93                 :            : 
      94                 :        291 : static error_t parse_opt (int key, char *arg, struct argp_state *state)
      95                 :            : {
      96                 :        291 :   (void) arg;
      97                 :        291 :   (void) state;
      98         [ +  + ]:        291 :   switch (key)
      99                 :            :     {
     100                 :          1 :     case 'v': verbose++;
     101                 :          1 :       debuginfod_set_progressfn (client, & progressfn);
     102                 :          1 :       debuginfod_set_verbose_fd (client, STDERR_FILENO);
     103                 :          1 :       break;
     104                 :            :     default: return ARGP_ERR_UNKNOWN;
     105                 :            :     }
     106                 :          1 :   return 0;
     107                 :            : }
     108                 :            : 
     109                 :            : 
     110                 :            : /* Data structure to communicate with argp functions.  */
     111                 :            : static struct argp argp =
     112                 :            :   {
     113                 :            :    options, parse_opt, args_doc, doc, NULL, NULL, NULL
     114                 :            :   };
     115                 :            : 
     116                 :            : 
     117                 :            : 
     118                 :            : int
     119                 :         58 : main(int argc, char** argv)
     120                 :            : {
     121                 :         58 :   elf_version (EV_CURRENT);
     122                 :            : 
     123                 :         58 :   client = debuginfod_begin ();
     124         [ -  + ]:         58 :   if (client == NULL)
     125                 :            :     {
     126                 :          0 :       fprintf(stderr, "Couldn't create debuginfod client context\n");
     127                 :          0 :       return 1;
     128                 :            :     }
     129                 :            : 
     130                 :            :   /* Exercise user data pointer, to support testing only. */
     131                 :         58 :   debuginfod_set_user_data (client, (void *)"Progress");
     132                 :            : 
     133                 :         58 :   int remaining;
     134                 :         58 :   (void) argp_parse (&argp, argc, argv, ARGP_IN_ORDER|ARGP_NO_ARGS, &remaining, NULL);
     135                 :            : 
     136 [ +  - ][ -  + ]:         58 :   if (argc < 2 || remaining+1 == argc) /* no arguments or at least two non-option words */
     137                 :            :     {
     138                 :          0 :       argp_help (&argp, stderr, ARGP_HELP_USAGE, argv[0]);
     139                 :          0 :       return 1;
     140                 :            :     }
     141                 :            : 
     142                 :            :   /* If we were passed an ELF file name in the BUILDID slot, look in there. */
     143                 :         58 :   unsigned char* build_id = (unsigned char*) argv[remaining+1];
     144                 :         58 :   int build_id_len = 0; /* assume text */
     145                 :            : 
     146                 :         58 :   int any_non_hex = 0;
     147                 :         58 :   int i;
     148         [ +  + ]:       2312 :   for (i = 0; build_id[i] != '\0'; i++)
     149         [ +  + ]:       2254 :     if ((build_id[i] >= '0' && build_id[i] <= '9') ||
     150                 :            :         (build_id[i] >= 'a' && build_id[i] <= 'f'))
     151                 :            :       ;
     152                 :            :     else
     153                 :          6 :       any_non_hex = 1;
     154                 :            : 
     155                 :         58 :   int fd = -1;
     156                 :         58 :   Elf* elf = NULL;
     157         [ +  + ]:         58 :   if (any_non_hex) /* raw build-id */
     158                 :            :     {
     159                 :          1 :       fd = open ((char*) build_id, O_RDONLY);
     160         [ -  + ]:          1 :       if (fd < 0)
     161                 :          0 :         fprintf (stderr, "Cannot open %s: %s\n", build_id, strerror(errno));
     162                 :            :     }
     163         [ +  - ]:          1 :   if (fd >= 0)
     164                 :            :     {
     165                 :          1 :       elf = dwelf_elf_begin (fd);
     166         [ -  + ]:          1 :       if (elf == NULL)
     167                 :          0 :         fprintf (stderr, "Cannot open as ELF file %s: %s\n", build_id,
     168                 :            :                  elf_errmsg (-1));
     169                 :            :     }
     170         [ +  + ]:         58 :   if (elf != NULL)
     171                 :            :     {
     172                 :          1 :       const void *extracted_build_id;
     173                 :          1 :       ssize_t s = dwelf_elf_gnu_build_id(elf, &extracted_build_id);
     174         [ +  - ]:          1 :       if (s > 0)
     175                 :            :         {
     176                 :            :           /* Success: replace the build_id pointer/len with the binary blob
     177                 :            :              that elfutils is keeping for us.  It'll remain valid until elf_end(). */
     178                 :          1 :           build_id = (unsigned char*) extracted_build_id;
     179                 :          1 :           build_id_len = s;
     180                 :            :         }
     181                 :            :       else
     182                 :          0 :         fprintf (stderr, "Cannot extract build-id from %s: %s\n", build_id, elf_errmsg(-1));
     183                 :            :     }
     184                 :            : 
     185                 :         58 :   char *cache_name;
     186                 :         58 :   int rc = 0;
     187                 :            : 
     188                 :            :   /* Check whether FILETYPE is valid and call the appropriate
     189                 :            :      debuginfod_find_* function. If FILETYPE is "source"
     190                 :            :      then ensure a FILENAME was also supplied as an argument.  */
     191         [ +  + ]:         58 :   if (strcmp(argv[remaining], "debuginfo") == 0)
     192                 :         21 :     rc = debuginfod_find_debuginfo(client,
     193                 :            :                                    build_id, build_id_len,
     194                 :            :                                    &cache_name);
     195         [ +  + ]:         37 :   else if (strcmp(argv[remaining], "executable") == 0)
     196                 :         23 :     rc = debuginfod_find_executable(client,
     197                 :            :                                     build_id, build_id_len,
     198                 :            :                                     &cache_name);
     199         [ +  - ]:         14 :   else if (strcmp(argv[remaining], "source") == 0)
     200                 :            :     {
     201 [ +  - ][ -  + ]:         14 :       if (remaining+2 == argc || argv[remaining+2][0] != '/')
     202                 :            :         {
     203                 :          0 :           fprintf(stderr, "If FILETYPE is \"source\" then absolute /FILENAME must be given\n");
     204                 :          0 :           return 1;
     205                 :            :         }
     206                 :         14 :       rc = debuginfod_find_source(client,
     207                 :            :                                   build_id, build_id_len,
     208                 :            :                                   argv[remaining+2], &cache_name);
     209                 :            :     }
     210                 :            :   else
     211                 :            :     {
     212                 :          0 :       argp_help (&argp, stderr, ARGP_HELP_USAGE, argv[0]);
     213                 :          0 :       return 1;
     214                 :            :     }
     215                 :            : 
     216         [ +  + ]:         58 :   if (verbose)
     217                 :            :     {
     218                 :          1 :       const char* url = debuginfod_get_url (client);
     219         [ +  - ]:          1 :       if (url != NULL)
     220                 :          1 :         fprintf(stderr, "Downloaded from %s\n", url);
     221                 :            :     }
     222                 :            : 
     223                 :         58 :   debuginfod_end (client);
     224         [ +  + ]:         58 :   if (elf)
     225                 :          1 :     elf_end(elf);
     226         [ +  + ]:         58 :   if (fd >= 0)
     227                 :          1 :     close (fd);
     228                 :            : 
     229         [ +  + ]:         58 :   if (rc < 0)
     230                 :            :     {
     231                 :          5 :       fprintf(stderr, "Server query failed: %s\n", strerror(-rc));
     232                 :          5 :       return 1;
     233                 :            :     }
     234                 :            : 
     235                 :         53 :   printf("%s\n", cache_name);
     236                 :         53 :   free (cache_name);
     237                 :            : 
     238                 :         53 :   return 0;
     239                 :            : }

Generated by: LCOV version 1.13