]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/build-id.c
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / build-id.c
CommitLineData
dc294be5
TT
1/* build-id-related functions.
2
213516ef 3 Copyright (C) 1991-2023 Free Software Foundation, Inc.
dc294be5
TT
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "bfd.h"
4de283e4 22#include "gdb_bfd.h"
dc294be5 23#include "build-id.h"
268a13a5 24#include "gdbsupport/gdb_vecs.h"
4de283e4
TT
25#include "symfile.h"
26#include "objfiles.h"
dc294be5 27#include "filenames.h"
2938e6cf 28#include "gdbcore.h"
dc294be5 29
7c50a931 30/* See build-id.h. */
dc294be5 31
c74f7d1c 32const struct bfd_build_id *
dc294be5
TT
33build_id_bfd_get (bfd *abfd)
34{
aa2d5a42
KS
35 if (!bfd_check_format (abfd, bfd_object)
36 && !bfd_check_format (abfd, bfd_core))
dc294be5
TT
37 return NULL;
38
c74f7d1c
JT
39 if (abfd->build_id != NULL)
40 return abfd->build_id;
41
42 /* No build-id */
43 return NULL;
dc294be5
TT
44}
45
46/* See build-id.h. */
47
48int
49build_id_verify (bfd *abfd, size_t check_len, const bfd_byte *check)
50{
c74f7d1c 51 const struct bfd_build_id *found;
dc294be5
TT
52 int retval = 0;
53
54 found = build_id_bfd_get (abfd);
55
56 if (found == NULL)
57 warning (_("File \"%s\" has no build-id, file skipped"),
58 bfd_get_filename (abfd));
59 else if (found->size != check_len
dda83cd7 60 || memcmp (found->data, check, found->size) != 0)
dc294be5
TT
61 warning (_("File \"%s\" has a different build-id, file skipped"),
62 bfd_get_filename (abfd));
63 else
64 retval = 1;
65
66 return retval;
67}
68
07bc701d
SM
69/* Helper for build_id_to_debug_bfd. LINK is a path to a potential
70 build-id-based separate debug file, potentially a symlink to the real file.
71 If the file exists and matches BUILD_ID, return a BFD reference to it. */
72
73static gdb_bfd_ref_ptr
74build_id_to_debug_bfd_1 (const std::string &link, size_t build_id_len,
75 const bfd_byte *build_id)
76{
77 if (separate_debug_file_debug)
78 {
6cb06a8c 79 gdb_printf (gdb_stdlog, _(" Trying %s..."), link.c_str ());
0bc1fe38 80 gdb_flush (gdb_stdlog);
07bc701d
SM
81 }
82
83 /* lrealpath() is expensive even for the usually non-existent files. */
4a2f674a
DB
84 gdb::unique_xmalloc_ptr<char> filename_holder;
85 const char *filename = nullptr;
86 if (startswith (link, TARGET_SYSROOT_PREFIX))
87 filename = link.c_str ();
88 else if (access (link.c_str (), F_OK) == 0)
89 {
90 filename_holder.reset (lrealpath (link.c_str ()));
91 filename = filename_holder.get ();
92 }
07bc701d
SM
93
94 if (filename == NULL)
95 {
96 if (separate_debug_file_debug)
6cb06a8c
TT
97 gdb_printf (gdb_stdlog,
98 _(" no, unable to compute real path\n"));
07bc701d
SM
99
100 return {};
101 }
102
103 /* We expect to be silent on the non-existing files. */
4a2f674a 104 gdb_bfd_ref_ptr debug_bfd = gdb_bfd_open (filename, gnutarget);
07bc701d
SM
105
106 if (debug_bfd == NULL)
107 {
108 if (separate_debug_file_debug)
6cb06a8c 109 gdb_printf (gdb_stdlog, _(" no, unable to open.\n"));
07bc701d
SM
110
111 return {};
112 }
113
114 if (!build_id_verify (debug_bfd.get(), build_id_len, build_id))
115 {
116 if (separate_debug_file_debug)
6cb06a8c 117 gdb_printf (gdb_stdlog, _(" no, build-id does not match.\n"));
07bc701d
SM
118
119 return {};
120 }
121
122 if (separate_debug_file_debug)
6cb06a8c 123 gdb_printf (gdb_stdlog, _(" yes!\n"));
07bc701d
SM
124
125 return debug_bfd;
126}
127
aa2d5a42
KS
128/* Common code for finding BFDs of a given build-id. This function
129 works with both debuginfo files (SUFFIX == ".debug") and executable
130 files (SUFFIX == ""). */
dc294be5 131
aa2d5a42
KS
132static gdb_bfd_ref_ptr
133build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
134 const char *suffix)
dc294be5 135{
dc294be5
TT
136 /* Keep backward compatibility so that DEBUG_FILE_DIRECTORY being "" will
137 cause "/.build-id/..." lookups. */
138
e80aaf61 139 std::vector<gdb::unique_xmalloc_ptr<char>> debugdir_vec
e0700ba4 140 = dirnames_to_char_ptr_vec (debug_file_directory.c_str ());
dc294be5 141
e80aaf61 142 for (const gdb::unique_xmalloc_ptr<char> &debugdir : debugdir_vec)
dc294be5 143 {
dc294be5
TT
144 const gdb_byte *data = build_id;
145 size_t size = build_id_len;
dc294be5 146
07bc701d
SM
147 /* Compute where the file named after the build-id would be.
148
149 If debugdir is "/usr/lib/debug" and the build-id is abcdef, this will
dda83cd7 150 give "/usr/lib/debug/.build-id/ab/cdef.debug". */
00b40057
SM
151 std::string link = debugdir.get ();
152 link += "/.build-id/";
153
dc294be5
TT
154 if (size > 0)
155 {
156 size--;
00b40057 157 string_appendf (link, "%02x/", (unsigned) *data++);
dc294be5 158 }
00b40057 159
dc294be5 160 while (size-- > 0)
00b40057
SM
161 string_appendf (link, "%02x", (unsigned) *data++);
162
aa2d5a42 163 link += suffix;
dc294be5 164
07bc701d
SM
165 gdb_bfd_ref_ptr debug_bfd
166 = build_id_to_debug_bfd_1 (link, build_id_len, build_id);
167 if (debug_bfd != NULL)
168 return debug_bfd;
c4dcb155 169
07bc701d 170 /* Try to look under the sysroot as well. If the sysroot is
dda83cd7 171 "/the/sysroot", it will give
4a2f674a 172 "/the/sysroot/usr/lib/debug/.build-id/ab/cdef.debug". */
dc294be5 173
4a2f674a 174 if (!gdb_sysroot.empty ())
50794b45 175 {
07bc701d
SM
176 link = gdb_sysroot + link;
177 debug_bfd = build_id_to_debug_bfd_1 (link, build_id_len, build_id);
178 if (debug_bfd != NULL)
179 return debug_bfd;
50794b45 180 }
dc294be5
TT
181 }
182
07bc701d 183 return {};
dc294be5
TT
184}
185
186/* See build-id.h. */
187
aa2d5a42
KS
188gdb_bfd_ref_ptr
189build_id_to_debug_bfd (size_t build_id_len, const bfd_byte *build_id)
190{
191 return build_id_to_bfd_suffix (build_id_len, build_id, ".debug");
192}
193
194/* See build-id.h. */
195
196gdb_bfd_ref_ptr
197build_id_to_exec_bfd (size_t build_id_len, const bfd_byte *build_id)
198{
199 return build_id_to_bfd_suffix (build_id_len, build_id, "");
200}
201
202/* See build-id.h. */
203
a8dbfd58 204std::string
dc294be5
TT
205find_separate_debug_file_by_buildid (struct objfile *objfile)
206{
c74f7d1c 207 const struct bfd_build_id *build_id;
dc294be5 208
98badbfd 209 build_id = build_id_bfd_get (objfile->obfd.get ());
dc294be5
TT
210 if (build_id != NULL)
211 {
c4dcb155 212 if (separate_debug_file_debug)
6cb06a8c
TT
213 gdb_printf (gdb_stdlog,
214 _("\nLooking for separate debug info (build-id) for "
215 "%s\n"), objfile_name (objfile));
c4dcb155 216
192b62ce
TT
217 gdb_bfd_ref_ptr abfd (build_id_to_debug_bfd (build_id->size,
218 build_id->data));
dc294be5
TT
219 /* Prevent looping on a stripped .debug file. */
220 if (abfd != NULL
192b62ce 221 && filename_cmp (bfd_get_filename (abfd.get ()),
dc294be5 222 objfile_name (objfile)) == 0)
192b62ce
TT
223 warning (_("\"%s\": separate debug info file has no debug info"),
224 bfd_get_filename (abfd.get ()));
dc294be5 225 else if (abfd != NULL)
a8dbfd58 226 return std::string (bfd_get_filename (abfd.get ()));
dc294be5 227 }
a8dbfd58
SM
228
229 return std::string ();
dc294be5 230}