blob: a955735c67fe4afd778cd5edc0d029d5993cf458 [file] [log] [blame]
Roland McGrath59ea7f32007-10-04 08:50:09 +00001/* Find the debuginfo file for a module from its build ID.
Roland McGrathbca43152009-01-05 23:59:32 -08002 Copyright (C) 2007, 2009 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003 This file is part of elfutils.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00004
Mark Wielaardde2ed972012-06-05 17:15:16 +02005 This file is free software; you can redistribute it and/or modify
6 it under the terms of either
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00007
Mark Wielaardde2ed972012-06-05 17:15:16 +02008 * the GNU Lesser General Public License as published by the Free
9 Software Foundation; either version 3 of the License, or (at
10 your option) any later version
11
12 or
13
14 * the GNU General Public License as published by the Free
15 Software Foundation; either version 2 of the License, or (at
16 your option) any later version
17
18 or both in parallel, as here.
19
20 elfutils is distributed in the hope that it will be useful, but
Ulrich Drepper361df7d2006-04-04 21:38:57 +000021 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000024
Mark Wielaardde2ed972012-06-05 17:15:16 +020025 You should have received copies of the GNU General Public License and
26 the GNU Lesser General Public License along with this program. If
27 not, see <http://www.gnu.org/licenses/>. */
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000028
Roland McGrath59ea7f32007-10-04 08:50:09 +000029#include "libdwflP.h"
30#include <unistd.h>
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000031
32
Roland McGrath59ea7f32007-10-04 08:50:09 +000033int
34dwfl_build_id_find_debuginfo (Dwfl_Module *mod,
35 void **userdata __attribute__ ((unused)),
36 const char *modname __attribute__ ((unused)),
37 Dwarf_Addr base __attribute__ ((unused)),
38 const char *file __attribute__ ((unused)),
39 const char *debuglink __attribute__ ((unused)),
40 GElf_Word crc __attribute__ ((unused)),
41 char **debuginfo_file_name)
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000042{
Roland McGrath59ea7f32007-10-04 08:50:09 +000043 int fd = -1;
44 const unsigned char *bits;
45 GElf_Addr vaddr;
46 if (INTUSE(dwfl_module_build_id) (mod, &bits, &vaddr) > 0)
47 fd = __libdwfl_open_by_build_id (mod, true, debuginfo_file_name);
48 if (fd >= 0)
49 {
50 /* We need to open an Elf handle on the file so we can check its
51 build ID note for validation. Backdoor the handle into the
52 module data structure since we had to open it early anyway. */
Roland McGrathbca43152009-01-05 23:59:32 -080053 Dwfl_Error error = __libdw_open_file (&fd, &mod->debug.elf, true, false);
54 if (error != DWFL_E_NOERROR)
55 __libdwfl_seterrno (error);
56 else if (likely (__libdwfl_find_build_id (mod, false,
57 mod->debug.elf) == 2))
58 {
59 /* Also backdoor the gratuitous flag. */
60 mod->debug.valid = true;
61 return fd;
62 }
Roland McGrath59ea7f32007-10-04 08:50:09 +000063 else
64 {
65 /* A mismatch! */
66 elf_end (mod->debug.elf);
67 mod->debug.elf = NULL;
68 close (fd);
69 fd = -1;
Roland McGrath59ea7f32007-10-04 08:50:09 +000070 }
Roland McGrathbca43152009-01-05 23:59:32 -080071 free (*debuginfo_file_name);
72 *debuginfo_file_name = NULL;
73 errno = 0;
Roland McGrath59ea7f32007-10-04 08:50:09 +000074 }
75 return fd;
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000076}
Roland McGrath59ea7f32007-10-04 08:50:09 +000077INTDEF (dwfl_build_id_find_debuginfo)