]> Git Repo - binutils.git/blame - gdb/solib.c
gdb: Add soname to build-id mapping for core files
[binutils.git] / gdb / solib.c
CommitLineData
13437d4b 1/* Handle shared libraries for GDB, the GNU Debugger.
14a5e767 2
4a94e368 3 Copyright (C) 1990-2022 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 19
c906108c
SS
20#include "defs.h"
21
c906108c 22#include <sys/types.h>
c906108c 23#include <fcntl.h>
c906108c
SS
24#include "symtab.h"
25#include "bfd.h"
39f53acb 26#include "build-id.h"
c906108c
SS
27#include "symfile.h"
28#include "objfiles.h"
29#include "gdbcore.h"
30#include "command.h"
31#include "target.h"
32#include "frame.h"
d322d6d6 33#include "gdbsupport/gdb_regex.h"
c906108c 34#include "inferior.h"
268a13a5 35#include "gdbsupport/environ.h"
c906108c
SS
36#include "language.h"
37#include "gdbcmd.h"
fa58ee11 38#include "completer.h"
8ddf4645
AM
39#include "elf/external.h"
40#include "elf/common.h"
fe4e3eb8 41#include "filenames.h" /* for DOSish file names */
4646aa9d 42#include "exec.h"
13437d4b 43#include "solist.h"
76727919 44#include "observable.h"
e0eac551 45#include "readline/tilde.h"
f1838a98 46#include "remote.h"
2c0b251b 47#include "solib.h"
55333a84 48#include "interps.h"
ab38a727 49#include "filesystem.h"
cbb099e8 50#include "gdb_bfd.h"
268a13a5 51#include "gdbsupport/filestuff.h"
b46a8d7c 52#include "source.h"
e43b10e1 53#include "cli/cli-style.h"
c906108c 54
66aba65d
MK
55/* Architecture-specific operations. */
56
57/* Per-architecture data key. */
58static struct gdbarch_data *solib_data;
59
60static void *
61solib_init (struct obstack *obstack)
62{
63 struct target_so_ops **ops;
64
65 ops = OBSTACK_ZALLOC (obstack, struct target_so_ops *);
66 *ops = current_target_so_ops;
67 return ops;
68}
69
3641da11 70static const struct target_so_ops *
66aba65d
MK
71solib_ops (struct gdbarch *gdbarch)
72{
19ba03f4
SM
73 const struct target_so_ops **ops
74 = (const struct target_so_ops **) gdbarch_data (gdbarch, solib_data);
433759f7 75
66aba65d
MK
76 return *ops;
77}
7d522c90
DJ
78
79/* Set the solib operations for GDBARCH to NEW_OPS. */
80
81void
3641da11 82set_solib_ops (struct gdbarch *gdbarch, const struct target_so_ops *new_ops)
7d522c90 83{
19ba03f4
SM
84 const struct target_so_ops **ops
85 = (const struct target_so_ops **) gdbarch_data (gdbarch, solib_data);
433759f7 86
7d522c90
DJ
87 *ops = new_ops;
88}
66aba65d
MK
89\f
90
13437d4b 91/* external data declarations */
c906108c 92
7d522c90
DJ
93/* FIXME: gdbarch needs to control this variable, or else every
94 configuration needs to call set_solib_ops. */
13437d4b 95struct target_so_ops *current_target_so_ops;
23e04971 96
c906108c
SS
97/* Local function prototypes */
98
c906108c
SS
99/* If non-empty, this is a search path for loading non-absolute shared library
100 symbol files. This takes precedence over the environment variables PATH
101 and LD_LIBRARY_PATH. */
e0700ba4 102static std::string solib_search_path;
920d2a44
AC
103static void
104show_solib_search_path (struct ui_file *file, int from_tty,
105 struct cmd_list_element *c, const char *value)
106{
3e43a32a
MS
107 fprintf_filtered (file, _("The search path for loading non-absolute "
108 "shared library symbol files is %s.\n"),
920d2a44
AC
109 value);
110}
c906108c 111
ab38a727
PA
112/* Same as HAVE_DOS_BASED_FILE_SYSTEM, but useable as an rvalue. */
113#if (HAVE_DOS_BASED_FILE_SYSTEM)
114# define DOS_BASED_FILE_SYSTEM 1
115#else
116# define DOS_BASED_FILE_SYSTEM 0
117#endif
118
797bc1cb
TT
119/* Return the full pathname of a binary file (the main executable or a
120 shared library file), or NULL if not found. If FD is non-NULL, *FD
121 is set to either -1 or an open file handle for the binary file.
e4f7b8c8 122
f822c95b 123 Global variable GDB_SYSROOT is used as a prefix directory
af1900b0 124 to search for binary files if they have an absolute path.
b57fbfba
GB
125 If GDB_SYSROOT starts with "target:" and target filesystem
126 is the local filesystem then the "target:" prefix will be
127 stripped before the search starts. This ensures that the
128 same search algorithm is used for local files regardless of
129 whether a "target:" prefix was used.
e4f7b8c8
MS
130
131 Global variable SOLIB_SEARCH_PATH is used as a prefix directory
132 (or set of directories, as in LD_LIBRARY_PATH) to search for all
b57fbfba 133 shared libraries if not found in either the sysroot (if set) or
af1900b0
GB
134 the local filesystem. SOLIB_SEARCH_PATH is not used when searching
135 for the main executable.
e4f7b8c8 136
c8c18e65 137 Search algorithm:
b57fbfba
GB
138 * If a sysroot is set and path is absolute:
139 * Search for sysroot/path.
c8c18e65
KW
140 * else
141 * Look for it literally (unmodified).
af1900b0
GB
142 * If IS_SOLIB is non-zero:
143 * Look in SOLIB_SEARCH_PATH.
144 * If available, use target defined search function.
b57fbfba 145 * If NO sysroot is set, perform the following two searches:
c8c18e65 146 * Look in inferior's $PATH.
af1900b0
GB
147 * If IS_SOLIB is non-zero:
148 * Look in inferior's $LD_LIBRARY_PATH.
ab38a727 149 *
85102364 150 * The last check avoids doing this search when targeting remote
b57fbfba 151 * machines since a sysroot will almost always be set.
7f86f058 152*/
e4f7b8c8 153
797bc1cb 154static gdb::unique_xmalloc_ptr<char>
5b89c67a 155solib_find_1 (const char *in_pathname, int *fd, bool is_solib)
e4f7b8c8 156{
3641da11 157 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
e4f7b8c8 158 int found_file = -1;
e0cc99a6 159 gdb::unique_xmalloc_ptr<char> temp_pathname;
ab38a727 160 const char *fskind = effective_target_file_system_kind ();
e0700ba4 161 const char *sysroot = gdb_sysroot.c_str ();
f8773be1 162 int prefix_len, orig_prefix_len;
08105857 163
a3be80c3
GB
164 /* If the absolute prefix starts with "target:" but the filesystem
165 accessed by the target_fileio_* methods is the local filesystem
166 then we strip the "target:" prefix now and work with the local
167 filesystem. This ensures that the same search algorithm is used
168 for all local files regardless of whether a "target:" prefix was
169 used. */
170 if (is_target_filename (sysroot) && target_filesystem_is_local ())
171 sysroot += strlen (TARGET_SYSROOT_PREFIX);
172
f8773be1
GB
173 /* Strip any trailing slashes from the absolute prefix. */
174 prefix_len = orig_prefix_len = strlen (sysroot);
f1d10cfb 175
f8773be1
GB
176 while (prefix_len > 0 && IS_DIR_SEPARATOR (sysroot[prefix_len - 1]))
177 prefix_len--;
f1d10cfb 178
9a897d43 179 std::string sysroot_holder;
f8773be1
GB
180 if (prefix_len == 0)
181 sysroot = NULL;
182 else if (prefix_len != orig_prefix_len)
183 {
9a897d43
TT
184 sysroot_holder = std::string (sysroot, prefix_len);
185 sysroot = sysroot_holder.c_str ();
ab38a727
PA
186 }
187
188 /* If we're on a non-DOS-based system, backslashes won't be
189 understood as directory separator, so, convert them to forward
190 slashes, iff we're supposed to handle DOS-based file system
191 semantics for target paths. */
192 if (!DOS_BASED_FILE_SYSTEM && fskind == file_system_kind_dos_based)
193 {
194 char *p;
195
196 /* Avoid clobbering our input. */
224c3ddb 197 p = (char *) alloca (strlen (in_pathname) + 1);
ab38a727
PA
198 strcpy (p, in_pathname);
199 in_pathname = p;
200
201 for (; *p; p++)
202 {
203 if (*p == '\\')
204 *p = '/';
205 }
206 }
207
208 /* Note, we're interested in IS_TARGET_ABSOLUTE_PATH, not
209 IS_ABSOLUTE_PATH. The latter is for host paths only, while
210 IN_PATHNAME is a target path. For example, if we're supposed to
211 be handling DOS-like semantics we want to consider a
212 'c:/foo/bar.dll' path as an absolute path, even on a Unix box.
213 With such a path, before giving up on the sysroot, we'll try:
214
215 1st attempt, c:/foo/bar.dll ==> /sysroot/c:/foo/bar.dll
216 2nd attempt, c:/foo/bar.dll ==> /sysroot/c/foo/bar.dll
217 3rd attempt, c:/foo/bar.dll ==> /sysroot/foo/bar.dll
218 */
219
b57fbfba 220 if (!IS_TARGET_ABSOLUTE_PATH (fskind, in_pathname) || sysroot == NULL)
e0cc99a6 221 temp_pathname.reset (xstrdup (in_pathname));
ab38a727
PA
222 else
223 {
5b89c67a 224 bool need_dir_separator;
ab38a727 225
3736004f
PA
226 /* Concatenate the sysroot and the target reported filename. We
227 may need to glue them with a directory separator. Cases to
228 consider:
229
dda83cd7
SM
230 | sysroot | separator | in_pathname |
231 |-----------------+-----------+----------------|
232 | /some/dir | / | c:/foo/bar.dll |
233 | /some/dir | | /foo/bar.dll |
234 | target: | | c:/foo/bar.dll |
235 | target: | | /foo/bar.dll |
236 | target:some/dir | / | c:/foo/bar.dll |
237 | target:some/dir | | /foo/bar.dll |
3736004f
PA
238
239 IOW, we don't need to add a separator if IN_PATHNAME already
6471e7d2 240 has one, or when the sysroot is exactly "target:".
3736004f
PA
241 There's no need to check for drive spec explicitly, as we only
242 get here if IN_PATHNAME is considered an absolute path. */
243 need_dir_separator = !(IS_DIR_SEPARATOR (in_pathname[0])
2938e6cf 244 || strcmp (TARGET_SYSROOT_PREFIX, sysroot) == 0);
ab38a727 245
f1d10cfb 246 /* Cat the prefixed pathname together. */
e0cc99a6
TT
247 temp_pathname.reset (concat (sysroot,
248 need_dir_separator ? SLASH_STRING : "",
249 in_pathname, (char *) NULL));
e4f7b8c8
MS
250 }
251
2938e6cf 252 /* Handle files to be accessed via the target. */
e0cc99a6 253 if (is_target_filename (temp_pathname.get ()))
f1838a98 254 {
998d2a3e
GB
255 if (fd != NULL)
256 *fd = -1;
e0cc99a6 257 return temp_pathname;
f1838a98
UW
258 }
259
f1d10cfb 260 /* Now see if we can open it. */
13084383
SM
261 found_file = gdb_open_cloexec (temp_pathname.get (),
262 O_RDONLY | O_BINARY, 0).release ();
ab38a727
PA
263
264 /* If the search in gdb_sysroot failed, and the path name has a
265 drive spec (e.g, c:/foo), try stripping ':' from the drive spec,
266 and retrying in the sysroot:
267 c:/foo/bar.dll ==> /sysroot/c/foo/bar.dll. */
f1d10cfb 268
ab38a727 269 if (found_file < 0
b57fbfba 270 && sysroot != NULL
ab38a727
PA
271 && HAS_TARGET_DRIVE_SPEC (fskind, in_pathname))
272 {
5b89c67a 273 bool need_dir_separator = !IS_DIR_SEPARATOR (in_pathname[2]);
e0cc99a6 274 char drive[2] = { in_pathname[0], '\0' };
ab38a727 275
e0cc99a6
TT
276 temp_pathname.reset (concat (sysroot,
277 SLASH_STRING,
278 drive,
279 need_dir_separator ? SLASH_STRING : "",
280 in_pathname + 2, (char *) NULL));
ab38a727 281
e0cc99a6 282 found_file = gdb_open_cloexec (temp_pathname.get (),
13084383 283 O_RDONLY | O_BINARY, 0).release ();
ab38a727
PA
284 if (found_file < 0)
285 {
ab38a727
PA
286 /* If the search in gdb_sysroot still failed, try fully
287 stripping the drive spec, and trying once more in the
288 sysroot before giving up.
289
290 c:/foo/bar.dll ==> /sysroot/foo/bar.dll. */
291
e0cc99a6
TT
292 temp_pathname.reset (concat (sysroot,
293 need_dir_separator ? SLASH_STRING : "",
294 in_pathname + 2, (char *) NULL));
ab38a727 295
e0cc99a6 296 found_file = gdb_open_cloexec (temp_pathname.get (),
13084383 297 O_RDONLY | O_BINARY, 0).release ();
ab38a727
PA
298 }
299 }
0997b535 300
ab38a727
PA
301 /* We try to find the library in various ways. After each attempt,
302 either found_file >= 0 and temp_pathname is a malloc'd string, or
303 found_file < 0 and temp_pathname does not point to storage that
304 needs to be freed. */
305
306 if (found_file < 0)
e0cc99a6 307 temp_pathname.reset (NULL);
ab38a727 308
f822c95b 309 /* If the search in gdb_sysroot failed, and the path name is
ba5f0d88
OF
310 absolute at this point, make it relative. (openp will try and open the
311 file according to its absolute path otherwise, which is not what we want.)
312 Affects subsequent searches for this solib. */
ab38a727 313 if (found_file < 0 && IS_TARGET_ABSOLUTE_PATH (fskind, in_pathname))
ba5f0d88
OF
314 {
315 /* First, get rid of any drive letters etc. */
ab38a727
PA
316 while (!IS_TARGET_DIR_SEPARATOR (fskind, *in_pathname))
317 in_pathname++;
ba5f0d88
OF
318
319 /* Next, get rid of all leading dir separators. */
ab38a727
PA
320 while (IS_TARGET_DIR_SEPARATOR (fskind, *in_pathname))
321 in_pathname++;
ba5f0d88 322 }
ab38a727 323
af1900b0
GB
324 /* If not found, and we're looking for a solib, search the
325 solib_search_path (if any). */
e0700ba4
SM
326 if (is_solib && found_file < 0 && !solib_search_path.empty ())
327 found_file = openp (solib_search_path.c_str (),
492c0ab7 328 OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH,
fbdebf46 329 in_pathname, O_RDONLY | O_BINARY, &temp_pathname);
ab38a727 330
af1900b0
GB
331 /* If not found, and we're looking for a solib, next search the
332 solib_search_path (if any) for the basename only (ignoring the
333 path). This is to allow reading solibs from a path that differs
334 from the opened path. */
e0700ba4
SM
335 if (is_solib && found_file < 0 && !solib_search_path.empty ())
336 found_file = openp (solib_search_path.c_str (),
492c0ab7 337 OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH,
ab38a727
PA
338 target_lbasename (fskind, in_pathname),
339 O_RDONLY | O_BINARY, &temp_pathname);
e4f7b8c8 340
af1900b0
GB
341 /* If not found, and we're looking for a solib, try to use target
342 supplied solib search method. */
343 if (is_solib && found_file < 0 && ops->find_and_open_solib)
637d6690 344 found_file = ops->find_and_open_solib (in_pathname, O_RDONLY | O_BINARY,
66aba65d 345 &temp_pathname);
2610b0bf 346
c378eb4e 347 /* If not found, next search the inferior's $PATH environment variable. */
b57fbfba 348 if (found_file < 0 && sysroot == NULL)
9a6c7d9c 349 found_file = openp (current_inferior ()->environment.get ("PATH"),
492c0ab7
JK
350 OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH, in_pathname,
351 O_RDONLY | O_BINARY, &temp_pathname);
e4f7b8c8 352
af1900b0
GB
353 /* If not found, and we're looking for a solib, next search the
354 inferior's $LD_LIBRARY_PATH environment variable. */
355 if (is_solib && found_file < 0 && sysroot == NULL)
9a6c7d9c
SDJ
356 found_file = openp (current_inferior ()->environment.get
357 ("LD_LIBRARY_PATH"),
492c0ab7
JK
358 OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH, in_pathname,
359 O_RDONLY | O_BINARY, &temp_pathname);
e4f7b8c8 360
998d2a3e
GB
361 if (fd == NULL)
362 {
363 if (found_file >= 0)
364 close (found_file);
365 }
366 else
367 *fd = found_file;
368
e0cc99a6 369 return temp_pathname;
572d275c
UW
370}
371
af1900b0 372/* Return the full pathname of the main executable, or NULL if not
797bc1cb
TT
373 found. If FD is non-NULL, *FD is set to either -1 or an open file
374 handle for the main executable. */
af1900b0 375
797bc1cb 376gdb::unique_xmalloc_ptr<char>
992f1ddc 377exec_file_find (const char *in_pathname, int *fd)
af1900b0 378{
797bc1cb 379 gdb::unique_xmalloc_ptr<char> result;
ecf45d2c
SL
380 const char *fskind = effective_target_file_system_kind ();
381
382 if (in_pathname == NULL)
383 return NULL;
af1900b0 384
e0700ba4 385 if (!gdb_sysroot.empty () && IS_TARGET_ABSOLUTE_PATH (fskind, in_pathname))
af1900b0 386 {
5b89c67a 387 result = solib_find_1 (in_pathname, fd, false);
af1900b0 388
ecf45d2c 389 if (result == NULL && fskind == file_system_kind_dos_based)
af1900b0
GB
390 {
391 char *new_pathname;
392
224c3ddb 393 new_pathname = (char *) alloca (strlen (in_pathname) + 5);
af1900b0
GB
394 strcpy (new_pathname, in_pathname);
395 strcat (new_pathname, ".exe");
396
5b89c67a 397 result = solib_find_1 (new_pathname, fd, false);
af1900b0
GB
398 }
399 }
ecf45d2c
SL
400 else
401 {
402 /* It's possible we don't have a full path, but rather just a
403 filename. Some targets, such as HP-UX, don't provide the
404 full path, sigh.
405
406 Attempt to qualify the filename against the source path.
407 (If that fails, we'll just fall back on the original
408 filename. Not much more we can do...) */
409
e0cc99a6 410 if (!source_full_path_of (in_pathname, &result))
797bc1cb 411 result.reset (xstrdup (in_pathname));
ecf45d2c
SL
412 if (fd != NULL)
413 *fd = -1;
414 }
af1900b0
GB
415
416 return result;
417}
418
419/* Return the full pathname of a shared library file, or NULL if not
797bc1cb
TT
420 found. If FD is non-NULL, *FD is set to either -1 or an open file
421 handle for the shared library.
af1900b0
GB
422
423 The search algorithm used is described in solib_find_1's comment
424 above. */
425
797bc1cb 426gdb::unique_xmalloc_ptr<char>
992f1ddc 427solib_find (const char *in_pathname, int *fd)
af1900b0
GB
428{
429 const char *solib_symbols_extension
430 = gdbarch_solib_symbols_extension (target_gdbarch ());
431
432 /* If solib_symbols_extension is set, replace the file's
433 extension. */
434 if (solib_symbols_extension != NULL)
435 {
992f1ddc 436 const char *p = in_pathname + strlen (in_pathname);
af1900b0
GB
437
438 while (p > in_pathname && *p != '.')
439 p--;
440
441 if (*p == '.')
442 {
443 char *new_pathname;
444
224c3ddb
SM
445 new_pathname
446 = (char *) alloca (p - in_pathname + 1
447 + strlen (solib_symbols_extension) + 1);
af1900b0
GB
448 memcpy (new_pathname, in_pathname, p - in_pathname + 1);
449 strcpy (new_pathname + (p - in_pathname) + 1,
450 solib_symbols_extension);
451
452 in_pathname = new_pathname;
453 }
454 }
455
5b89c67a 456 return solib_find_1 (in_pathname, fd, true);
af1900b0
GB
457}
458
572d275c
UW
459/* Open and return a BFD for the shared library PATHNAME. If FD is not -1,
460 it is used as file handle to open the file. Throws an error if the file
461 could not be opened. Handles both local and remote file access.
462
797bc1cb 463 If unsuccessful, the FD will be closed (unless FD was -1). */
572d275c 464
192b62ce 465gdb_bfd_ref_ptr
797bc1cb 466solib_bfd_fopen (const char *pathname, int fd)
572d275c 467{
192b62ce 468 gdb_bfd_ref_ptr abfd (gdb_bfd_open (pathname, gnutarget, fd));
572d275c 469
192b62ce
TT
470 if (abfd != NULL && !gdb_bfd_has_target_filename (abfd.get ()))
471 bfd_set_cacheable (abfd.get (), 1);
f1838a98 472
192b62ce 473 if (abfd == NULL)
f1838a98 474 {
9a897d43 475 /* Arrange to free PATHNAME when the error is thrown. */
f1838a98 476 error (_("Could not open `%s' as an executable file: %s"),
572d275c 477 pathname, bfd_errmsg (bfd_get_error ()));
f1838a98
UW
478 }
479
520b0001 480 return abfd;
572d275c
UW
481}
482
483/* Find shared library PATHNAME and open a BFD for it. */
484
192b62ce 485gdb_bfd_ref_ptr
692d6f97 486solib_bfd_open (const char *pathname)
572d275c 487{
572d275c 488 int found_file;
378d2b72 489 const struct bfd_arch_info *b;
572d275c 490
572d275c 491 /* Search for shared library file. */
797bc1cb
TT
492 gdb::unique_xmalloc_ptr<char> found_pathname
493 = solib_find (pathname, &found_file);
572d275c 494 if (found_pathname == NULL)
048d532d
PA
495 {
496 /* Return failure if the file could not be found, so that we can
497 accumulate messages about missing libraries. */
498 if (errno == ENOENT)
499 return NULL;
500
501 perror_with_name (pathname);
502 }
572d275c
UW
503
504 /* Open bfd for shared library. */
797bc1cb 505 gdb_bfd_ref_ptr abfd (solib_bfd_fopen (found_pathname.get (), found_file));
572d275c
UW
506
507 /* Check bfd format. */
192b62ce
TT
508 if (!bfd_check_format (abfd.get (), bfd_object))
509 error (_("`%s': not in executable format: %s"),
00f93c44 510 bfd_get_filename (abfd.get ()), bfd_errmsg (bfd_get_error ()));
f1838a98 511
378d2b72 512 /* Check bfd arch. */
f5656ead 513 b = gdbarch_bfd_arch_info (target_gdbarch ());
192b62ce 514 if (!b->compatible (b, bfd_get_arch_info (abfd.get ())))
c0e0d6bc
TT
515 error (_("`%s': Shared library architecture %s is not compatible "
516 "with target architecture %s."), bfd_get_filename (abfd.get ()),
517 bfd_get_arch_info (abfd.get ())->printable_name,
518 b->printable_name);
378d2b72 519
f1838a98 520 return abfd;
e4f7b8c8
MS
521}
522
39f53acb
AM
523/* Mapping of a core file's shared library sonames to their respective
524 build-ids. Added to the registries of core file bfds. */
525
526typedef std::unordered_map<std::string, std::string> soname_build_id_map;
527
528/* Key used to associate a soname_build_id_map to a core file bfd. */
529
530static const struct bfd_key<soname_build_id_map> cbfd_soname_build_id_data_key;
531
532/* See solib.h. */
533
534void
535set_cbfd_soname_build_id (gdb_bfd_ref_ptr abfd,
536 const char *soname,
537 const bfd_build_id *build_id)
538{
539 gdb_assert (abfd.get () != nullptr);
540 gdb_assert (soname != nullptr);
541 gdb_assert (build_id != nullptr);
542
543 soname_build_id_map *mapptr = cbfd_soname_build_id_data_key.get (abfd.get ());
544
545 if (mapptr == nullptr)
546 mapptr = cbfd_soname_build_id_data_key.emplace (abfd.get ());
547
548 (*mapptr)[soname] = build_id_to_string (build_id);
549}
550
551/* See solib.h. */
552
553gdb::unique_xmalloc_ptr<char>
554get_cbfd_soname_build_id (gdb_bfd_ref_ptr abfd, const char *soname)
555{
556 if (abfd.get () == nullptr || soname == nullptr)
557 return {};
558
559 soname_build_id_map *mapptr
560 = cbfd_soname_build_id_data_key.get (abfd.get ());
561
562 if (mapptr == nullptr)
563 return {};
564
565 auto it = mapptr->find (lbasename (soname));
566 if (it == mapptr->end ())
567 return {};
568
569 return make_unique_xstrdup (it->second.c_str ());
570}
571
7f86f058
PA
572/* Given a pointer to one of the shared objects in our list of mapped
573 objects, use the recorded name to open a bfd descriptor for the
574 object, build a section table, relocate all the section addresses
575 by the base address at which the shared object was mapped, and then
576 add the sections to the target's section table.
e4f7b8c8 577
7f86f058
PA
578 FIXME: In most (all?) cases the shared object file name recorded in
579 the dynamic linkage tables will be a fully qualified pathname. For
c5aa993b
JM
580 cases where it isn't, do we really mimic the systems search
581 mechanism correctly in the below code (particularly the tilde
7f86f058 582 expansion stuff?). */
c906108c
SS
583
584static int
048d532d 585solib_map_sections (struct so_list *so)
c906108c 586{
3641da11 587 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
c5aa993b 588
ee0c3293
TT
589 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (so->so_name));
590 gdb_bfd_ref_ptr abfd (ops->bfd_open (filename.get ()));
e4f7b8c8 591
048d532d
PA
592 if (abfd == NULL)
593 return 0;
594
13437d4b 595 /* Leave bfd open, core_xfer_memory and "info files" need it. */
192b62ce 596 so->abfd = abfd.release ();
23e04971 597
b030cf11
JB
598 /* Copy the full path name into so_name, allowing symbol_file_add
599 to find it later. This also affects the =library-loaded GDB/MI
600 event, and in particular the part of that notification providing
601 the library's host-side path. If we let the target dictate
602 that objfile's path, and the target is different from the host,
603 GDB/MI will not provide the correct host-side path. */
192b62ce 604 if (strlen (bfd_get_filename (so->abfd)) >= SO_NAME_MAX_PATH_SIZE)
b030cf11 605 error (_("Shared library file name is too long."));
192b62ce 606 strcpy (so->so_name, bfd_get_filename (so->abfd));
b030cf11 607
bb2a6777
TT
608 if (so->sections == nullptr)
609 so->sections = new target_section_table;
2d128614 610 *so->sections = build_section_table (so->abfd);
104c1213 611
d7a78e5c 612 for (target_section &p : *so->sections)
104c1213 613 {
13437d4b 614 /* Relocate the section binding addresses as recorded in the shared
dda83cd7
SM
615 object's file by the base address to which the object was actually
616 mapped. */
bb2a6777 617 ops->relocate_section_addresses (so, &p);
cfa9d6d9
DJ
618
619 /* If the target didn't provide information about the address
620 range of the shared object, assume we want the location of
621 the .text section. */
622 if (so->addr_low == 0 && so->addr_high == 0
bb2a6777 623 && strcmp (p.the_bfd_section->name, ".text") == 0)
13437d4b 624 {
bb2a6777
TT
625 so->addr_low = p.addr;
626 so->addr_high = p.endaddr;
13437d4b 627 }
104c1213
JM
628 }
629
048d532d
PA
630 /* Add the shared object's sections to the current set of file
631 section tables. Do this immediately after mapping the object so
632 that later nodes in the list can query this object, as is needed
633 in solib-osf.c. */
3769e227 634 current_program_space->add_target_sections (so, *so->sections);
048d532d
PA
635
636 return 1;
104c1213 637}
c906108c 638
0892cb63
DE
639/* Free symbol-file related contents of SO and reset for possible reloading
640 of SO. If we have opened a BFD for SO, close it. If we have placed SO's
641 sections in some target's section table, the caller is responsible for
642 removing them.
a86988f2
PA
643
644 This function doesn't mess with objfiles at all. If there is an
645 objfile associated with SO that needs to be removed, the caller is
646 responsible for taking care of that. */
647
648static void
0892cb63 649clear_so (struct so_list *so)
a86988f2 650{
3641da11 651 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
0892cb63 652
bb2a6777
TT
653 delete so->sections;
654 so->sections = NULL;
a86988f2
PA
655
656 gdb_bfd_unref (so->abfd);
657 so->abfd = NULL;
658
659 /* Our caller closed the objfile, possibly via objfile_purge_solibs. */
660 so->symbols_loaded = 0;
661 so->objfile = NULL;
662
663 so->addr_low = so->addr_high = 0;
664
665 /* Restore the target-supplied file name. SO_NAME may be the path
666 of the symbol file. */
667 strcpy (so->so_name, so->so_original_name);
0892cb63
DE
668
669 /* Do the same for target-specific data. */
670 if (ops->clear_so != NULL)
671 ops->clear_so (so);
a86988f2
PA
672}
673
7f86f058 674/* Free the storage associated with the `struct so_list' object SO.
c378eb4e 675 If we have opened a BFD for SO, close it.
c906108c 676
07cd4b97
JB
677 The caller is responsible for removing SO from whatever list it is
678 a member of. If we have placed SO's sections in some target's
679 section table, the caller is responsible for removing them.
c906108c 680
07cd4b97
JB
681 This function doesn't mess with objfiles at all. If there is an
682 objfile associated with SO that needs to be removed, the caller is
683 responsible for taking care of that. */
684
13437d4b 685void
07cd4b97 686free_so (struct so_list *so)
c906108c 687{
3641da11 688 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
c5aa993b 689
0892cb63 690 clear_so (so);
66aba65d 691 ops->free_so (so);
07cd4b97 692
b8c9b27d 693 xfree (so);
c906108c
SS
694}
695
07cd4b97 696
7eedccfa 697/* Read in symbols for shared object SO. If SYMFILE_VERBOSE is set in FLAGS,
5b89c67a 698 be chatty about it. Return true if any symbols were actually loaded. */
42a6e6a0 699
5b89c67a 700bool
b15cc25c 701solib_read_symbols (struct so_list *so, symfile_add_flags flags)
42a6e6a0
MK
702{
703 if (so->symbols_loaded)
704 {
a86988f2 705 /* If needed, we've already warned in our caller. */
42a6e6a0 706 }
8bb75286
DJ
707 else if (so->abfd == NULL)
708 {
048d532d
PA
709 /* We've already warned about this library, when trying to open
710 it. */
8bb75286 711 }
42a6e6a0
MK
712 else
713 {
048d532d 714
7dcd53a0
TT
715 flags |= current_inferior ()->symfile_flags;
716
a70b8144 717 try
048d532d 718 {
048d532d 719 /* Have we already loaded this shared object? */
aed57c53 720 so->objfile = nullptr;
2030c079 721 for (objfile *objfile : current_program_space->objfiles ())
048d532d 722 {
aed57c53
TT
723 if (filename_cmp (objfile_name (objfile), so->so_name) == 0
724 && objfile->addr_low == so->addr_low)
725 {
726 so->objfile = objfile;
727 break;
728 }
048d532d 729 }
9c6595ab
PA
730 if (so->objfile == NULL)
731 {
37e136b1 732 section_addr_info sap
bb2a6777 733 = build_section_addr_info_from_section_table (*so->sections);
9c6595ab 734 so->objfile = symbol_file_add_from_bfd (so->abfd, so->so_name,
37e136b1
TT
735 flags, &sap,
736 OBJF_SHARED, NULL);
9c6595ab 737 so->objfile->addr_low = so->addr_low;
9c6595ab 738 }
492d29ea
PA
739
740 so->symbols_loaded = 1;
741 }
230d2906 742 catch (const gdb_exception_error &e)
492d29ea
PA
743 {
744 exception_fprintf (gdb_stderr, e, _("Error while reading shared"
745 " library symbols for %s:\n"),
746 so->so_name);
048d532d
PA
747 }
748
5b89c67a 749 return true;
42a6e6a0
MK
750 }
751
5b89c67a 752 return false;
42a6e6a0 753}
c906108c 754
a1fd1ac9
TT
755/* Return true if KNOWN->objfile is used by any other so_list object
756 in the list of shared libraries. Return false otherwise. */
59145f8c 757
5b89c67a 758static bool
59145f8c
AR
759solib_used (const struct so_list *const known)
760{
a1fd1ac9 761 for (const struct so_list *pivot : current_program_space->solibs ())
59145f8c 762 if (pivot != known && pivot->objfile == known->objfile)
5b89c67a
CB
763 return true;
764 return false;
59145f8c
AR
765}
766
51457a05 767/* See solib.h. */
c906108c 768
e696b3ad
MAL
769void
770update_solib_list (int from_tty)
07cd4b97 771{
3641da11 772 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
66aba65d 773 struct so_list *inferior = ops->current_sos();
07cd4b97
JB
774 struct so_list *gdb, **gdb_link;
775
181e7f93
PA
776 /* We can reach here due to changing solib-search-path or the
777 sysroot, before having any inferior. */
55f6301a 778 if (target_has_execution () && inferior_ptid != null_ptid)
181e7f93
PA
779 {
780 struct inferior *inf = current_inferior ();
781
782 /* If we are attaching to a running process for which we
783 have not opened a symbol file, we may be able to get its
784 symbols now! */
a42d7dd8
TT
785 if (inf->attach_flag
786 && current_program_space->symfile_object_file == NULL)
bf469271 787 {
a70b8144 788 try
bf469271
PA
789 {
790 ops->open_symbol_file_object (from_tty);
791 }
230d2906 792 catch (const gdb_exception &ex)
bf469271
PA
793 {
794 exception_fprintf (gdb_stderr, ex,
795 "Error reading attached "
796 "process's symbol file.\n");
797 }
bf469271 798 }
181e7f93 799 }
104c1213 800
07cd4b97
JB
801 /* GDB and the inferior's dynamic linker each maintain their own
802 list of currently loaded shared objects; we want to bring the
803 former in sync with the latter. Scan both lists, seeing which
804 shared objects appear where. There are three cases:
805
806 - A shared object appears on both lists. This means that GDB
105b175f
JB
807 knows about it already, and it's still loaded in the inferior.
808 Nothing needs to happen.
07cd4b97
JB
809
810 - A shared object appears only on GDB's list. This means that
105b175f
JB
811 the inferior has unloaded it. We should remove the shared
812 object from GDB's tables.
07cd4b97
JB
813
814 - A shared object appears only on the inferior's list. This
105b175f
JB
815 means that it's just been loaded. We should add it to GDB's
816 tables.
07cd4b97
JB
817
818 So we walk GDB's list, checking each entry to see if it appears
819 in the inferior's list too. If it does, no action is needed, and
820 we remove it from the inferior's list. If it doesn't, the
821 inferior has unloaded it, and we remove it from GDB's list. By
822 the time we're done walking GDB's list, the inferior's list
823 contains only the new shared objects, which we then add. */
824
a1fd1ac9
TT
825 gdb = current_program_space->so_list;
826 gdb_link = &current_program_space->so_list;
07cd4b97 827 while (gdb)
c906108c 828 {
07cd4b97
JB
829 struct so_list *i = inferior;
830 struct so_list **i_link = &inferior;
831
832 /* Check to see whether the shared object *gdb also appears in
833 the inferior's current list. */
834 while (i)
c906108c 835 {
a7c02bc8
VP
836 if (ops->same)
837 {
838 if (ops->same (gdb, i))
839 break;
840 }
841 else
842 {
0ba1096a 843 if (! filename_cmp (gdb->so_original_name, i->so_original_name))
a7c02bc8
VP
844 break;
845 }
07cd4b97
JB
846
847 i_link = &i->next;
848 i = *i_link;
c906108c 849 }
c5aa993b 850
07cd4b97 851 /* If the shared object appears on the inferior's list too, then
dda83cd7
SM
852 it's still loaded, so we don't need to do anything. Delete
853 it from the inferior's list, and leave it on GDB's list. */
07cd4b97 854 if (i)
c906108c 855 {
07cd4b97 856 *i_link = i->next;
07cd4b97
JB
857 free_so (i);
858 gdb_link = &gdb->next;
859 gdb = *gdb_link;
860 }
861
862 /* If it's not on the inferior's list, remove it from GDB's tables. */
863 else
864 {
42a6e6a0
MK
865 /* Notify any observer that the shared object has been
866 unloaded before we remove it from GDB's tables. */
76727919 867 gdb::observers::solib_unloaded.notify (gdb);
84acb35a 868
6fb16ce6 869 current_program_space->deleted_solibs.push_back (gdb->so_name);
edcc5120 870
07cd4b97 871 *gdb_link = gdb->next;
07cd4b97
JB
872
873 /* Unless the user loaded it explicitly, free SO's objfile. */
59145f8c
AR
874 if (gdb->objfile && ! (gdb->objfile->flags & OBJF_USERLOADED)
875 && !solib_used (gdb))
268e4f09 876 gdb->objfile->unlink ();
07cd4b97
JB
877
878 /* Some targets' section tables might be referring to
879 sections from so->abfd; remove them. */
2a3f84af 880 current_program_space->remove_target_sections (gdb);
07cd4b97
JB
881
882 free_so (gdb);
883 gdb = *gdb_link;
c906108c
SS
884 }
885 }
c5aa993b 886
07cd4b97
JB
887 /* Now the inferior's list contains only shared objects that don't
888 appear in GDB's list --- those that are newly loaded. Add them
e8930304 889 to GDB's shared object list. */
07cd4b97 890 if (inferior)
c906108c 891 {
048d532d
PA
892 int not_found = 0;
893 const char *not_found_filename = NULL;
894
07cd4b97
JB
895 struct so_list *i;
896
897 /* Add the new shared objects to GDB's list. */
898 *gdb_link = inferior;
899
e8930304 900 /* Fill in the rest of each of the `struct so_list' nodes. */
07cd4b97 901 for (i = inferior; i; i = i->next)
c906108c 902 {
048d532d 903
6c95b8df 904 i->pspace = current_program_space;
bcb430e4 905 current_program_space->added_solibs.push_back (i);
07cd4b97 906
a70b8144 907 try
048d532d
PA
908 {
909 /* Fill in the rest of the `struct so_list' node. */
910 if (!solib_map_sections (i))
911 {
912 not_found++;
913 if (not_found_filename == NULL)
914 not_found_filename = i->so_original_name;
915 }
916 }
07cd4b97 917
230d2906 918 catch (const gdb_exception_error &e)
492d29ea
PA
919 {
920 exception_fprintf (gdb_stderr, e,
921 _("Error while mapping shared "
922 "library sections:\n"));
923 }
42a6e6a0
MK
924
925 /* Notify any observer that the shared object has been
048d532d 926 loaded now that we've added it to GDB's tables. */
76727919 927 gdb::observers::solib_loaded.notify (i);
c906108c 928 }
048d532d
PA
929
930 /* If a library was not found, issue an appropriate warning
931 message. We have to use a single call to warning in case the
932 front end does something special with warnings, e.g., pop up
933 a dialog box. It Would Be Nice if we could get a "warning: "
934 prefix on each line in the CLI front end, though - it doesn't
935 stand out well. */
936
937 if (not_found == 1)
3e43a32a
MS
938 warning (_("Could not load shared library symbols for %s.\n"
939 "Do you need \"set solib-search-path\" "
940 "or \"set sysroot\"?"),
048d532d
PA
941 not_found_filename);
942 else if (not_found > 1)
943 warning (_("\
944Could not load shared library symbols for %d libraries, e.g. %s.\n\
945Use the \"info sharedlibrary\" command to see the complete listing.\n\
946Do you need \"set solib-search-path\" or \"set sysroot\"?"),
947 not_found, not_found_filename);
e8930304 948 }
105b175f
JB
949}
950
17a37d48
PP
951
952/* Return non-zero if NAME is the libpthread shared library.
6612ad7f
JB
953
954 Uses a fairly simplistic heuristic approach where we check
955 the file name against "/libpthread". This can lead to false
e2b9ea4b
KB
956 positives, but this should be good enough in practice.
957
958 As of glibc-2.34, functions formerly residing in libpthread have
959 been moved to libc, so "/libc." needs to be checked too. (Matching
960 the "." will avoid matching libraries such as libcrypt.) */
6612ad7f 961
5b89c67a 962bool
17a37d48
PP
963libpthread_name_p (const char *name)
964{
e2b9ea4b
KB
965 return (strstr (name, "/libpthread") != NULL
966 || strstr (name, "/libc.") != NULL );
17a37d48
PP
967}
968
969/* Return non-zero if SO is the libpthread shared library. */
970
5b89c67a 971static bool
6612ad7f
JB
972libpthread_solib_p (struct so_list *so)
973{
17a37d48 974 return libpthread_name_p (so->so_name);
6612ad7f 975}
105b175f 976
7f86f058 977/* Read in symbolic information for any shared objects whose names
105b175f
JB
978 match PATTERN. (If we've already read a shared object's symbol
979 info, leave it alone.) If PATTERN is zero, read them all.
980
990f9fe3
FF
981 If READSYMS is 0, defer reading symbolic information until later
982 but still do any needed low level processing.
983
e696b3ad 984 FROM_TTY is described for update_solib_list, above. */
105b175f
JB
985
986void
e696b3ad 987solib_add (const char *pattern, int from_tty, int readsyms)
105b175f 988{
770e7fc7
DE
989 if (print_symbol_loading_p (from_tty, 0, 0))
990 {
991 if (pattern != NULL)
992 {
993 printf_unfiltered (_("Loading symbols for shared libraries: %s\n"),
994 pattern);
995 }
996 else
997 printf_unfiltered (_("Loading symbols for shared libraries.\n"));
998 }
999
2eff07b3
PP
1000 current_program_space->solib_add_generation++;
1001
105b175f
JB
1002 if (pattern)
1003 {
1004 char *re_err = re_comp (pattern);
1005
1006 if (re_err)
8a3fe4f8 1007 error (_("Invalid regexp: %s"), re_err);
105b175f
JB
1008 }
1009
e696b3ad 1010 update_solib_list (from_tty);
c906108c 1011
105b175f
JB
1012 /* Walk the list of currently loaded shared libraries, and read
1013 symbols for any that match the pattern --- or any whose symbols
1014 aren't already loaded, if no pattern was given. */
e8930304 1015 {
5b89c67a
CB
1016 bool any_matches = false;
1017 bool loaded_any_symbols = false;
b15cc25c
PA
1018 symfile_add_flags add_flags = SYMFILE_DEFER_BP_RESET;
1019
1020 if (from_tty)
dda83cd7 1021 add_flags |= SYMFILE_VERBOSE;
c906108c 1022
a1fd1ac9 1023 for (struct so_list *gdb : current_program_space->solibs ())
e8930304
JB
1024 if (! pattern || re_exec (gdb->so_name))
1025 {
dda83cd7
SM
1026 /* Normally, we would read the symbols from that library
1027 only if READSYMS is set. However, we're making a small
1028 exception for the pthread library, because we sometimes
1029 need the library symbols to be loaded in order to provide
1030 thread support (x86-linux for instance). */
1031 const int add_this_solib =
1032 (readsyms || libpthread_solib_p (gdb));
6612ad7f 1033
5b89c67a 1034 any_matches = true;
a86988f2
PA
1035 if (add_this_solib)
1036 {
1037 if (gdb->symbols_loaded)
1038 {
1039 /* If no pattern was given, be quiet for shared
1040 libraries we have already loaded. */
1041 if (pattern && (from_tty || info_verbose))
1042 printf_unfiltered (_("Symbols already loaded for %s\n"),
1043 gdb->so_name);
1044 }
b15cc25c 1045 else if (solib_read_symbols (gdb, add_flags))
5b89c67a 1046 loaded_any_symbols = true;
a86988f2 1047 }
e8930304
JB
1048 }
1049
7eedccfa
PP
1050 if (loaded_any_symbols)
1051 breakpoint_re_set ();
1052
e8930304
JB
1053 if (from_tty && pattern && ! any_matches)
1054 printf_unfiltered
1055 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
1056
1057 if (loaded_any_symbols)
1058 {
1059 /* Getting new symbols may change our opinion about what is
1060 frameless. */
1061 reinit_frame_cache ();
e8930304
JB
1062 }
1063 }
c906108c
SS
1064}
1065
7f86f058
PA
1066/* Implement the "info sharedlibrary" command. Walk through the
1067 shared library list and print information about each attached
1068 library matching PATTERN. If PATTERN is elided, print them
1069 all. */
c906108c
SS
1070
1071static void
1d12d88f 1072info_sharedlibrary_command (const char *pattern, int from_tty)
c906108c 1073{
5b89c67a 1074 bool so_missing_debug_info = false;
c906108c 1075 int addr_width;
55333a84 1076 int nr_libs;
f5656ead 1077 struct gdbarch *gdbarch = target_gdbarch ();
79a45e25 1078 struct ui_out *uiout = current_uiout;
55333a84
DE
1079
1080 if (pattern)
1081 {
1082 char *re_err = re_comp (pattern);
1083
1084 if (re_err)
1085 error (_("Invalid regexp: %s"), re_err);
1086 }
c906108c 1087
84eb3c4f 1088 /* "0x", a little whitespace, and two hex digits per byte of pointers. */
55333a84 1089 addr_width = 4 + (gdbarch_ptr_bit (gdbarch) / 4);
c906108c 1090
e696b3ad 1091 update_solib_list (from_tty);
07cd4b97 1092
4a2b031d
TT
1093 /* ui_out_emit_table table_emitter needs to know the number of rows,
1094 so we need to make two passes over the libs. */
55333a84 1095
a1fd1ac9
TT
1096 nr_libs = 0;
1097 for (struct so_list *so : current_program_space->solibs ())
c906108c 1098 {
c5aa993b 1099 if (so->so_name[0])
c906108c 1100 {
55333a84
DE
1101 if (pattern && ! re_exec (so->so_name))
1102 continue;
1103 ++nr_libs;
1104 }
1105 }
1106
4a2b031d
TT
1107 {
1108 ui_out_emit_table table_emitter (uiout, 4, nr_libs, "SharedLibraryTable");
55333a84 1109
4a2b031d
TT
1110 /* The "- 1" is because ui_out adds one space between columns. */
1111 uiout->table_header (addr_width - 1, ui_left, "from", "From");
1112 uiout->table_header (addr_width - 1, ui_left, "to", "To");
1113 uiout->table_header (12 - 1, ui_left, "syms-read", "Syms Read");
1114 uiout->table_header (0, ui_noalign, "name", "Shared Object Library");
55333a84 1115
4a2b031d 1116 uiout->table_body ();
55333a84 1117
a1fd1ac9 1118 for (struct so_list *so : current_program_space->solibs ())
4a2b031d
TT
1119 {
1120 if (! so->so_name[0])
1121 continue;
1122 if (pattern && ! re_exec (so->so_name))
1123 continue;
1124
1125 ui_out_emit_tuple tuple_emitter (uiout, "lib");
1126
1127 if (so->addr_high != 0)
1128 {
1129 uiout->field_core_addr ("from", gdbarch, so->addr_low);
1130 uiout->field_core_addr ("to", gdbarch, so->addr_high);
1131 }
1132 else
1133 {
1134 uiout->field_skip ("from");
1135 uiout->field_skip ("to");
1136 }
1137
29f94340 1138 if (! top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ()
4a2b031d
TT
1139 && so->symbols_loaded
1140 && !objfile_has_symbols (so->objfile))
1141 {
5b89c67a 1142 so_missing_debug_info = true;
4a2b031d
TT
1143 uiout->field_string ("syms-read", "Yes (*)");
1144 }
1145 else
1146 uiout->field_string ("syms-read", so->symbols_loaded ? "Yes" : "No");
1147
e43b10e1 1148 uiout->field_string ("name", so->so_name, file_name_style.style ());
4a2b031d
TT
1149
1150 uiout->text ("\n");
1151 }
1152 }
55333a84
DE
1153
1154 if (nr_libs == 0)
1155 {
1156 if (pattern)
112e8700 1157 uiout->message (_("No shared libraries matched.\n"));
55333a84 1158 else
112e8700 1159 uiout->message (_("No shared libraries loaded at this time.\n"));
55333a84
DE
1160 }
1161 else
c906108c 1162 {
55333a84 1163 if (so_missing_debug_info)
112e8700 1164 uiout->message (_("(*): Shared library is missing "
3e43a32a 1165 "debugging information.\n"));
c906108c
SS
1166 }
1167}
1168
5b89c67a 1169/* See solib.h. */
5fd1a349 1170
5b89c67a 1171bool
5fd1a349
PP
1172solib_contains_address_p (const struct so_list *const solib,
1173 CORE_ADDR address)
1174{
76547ab3
TV
1175 if (solib->sections == nullptr)
1176 return false;
1177
d7a78e5c 1178 for (target_section &p : *solib->sections)
bb2a6777 1179 if (p.addr <= address && address < p.endaddr)
5b89c67a 1180 return true;
5fd1a349 1181
5b89c67a 1182 return false;
5fd1a349
PP
1183}
1184
7f86f058
PA
1185/* If ADDRESS is in a shared lib in program space PSPACE, return its
1186 name.
c906108c 1187
7f86f058
PA
1188 Provides a hook for other gdb routines to discover whether or not a
1189 particular address is within the mapped address space of a shared
1190 library.
c906108c 1191
c5aa993b
JM
1192 For example, this routine is called at one point to disable
1193 breakpoints which are in shared libraries that are not currently
7f86f058 1194 mapped in. */
c906108c
SS
1195
1196char *
6c95b8df 1197solib_name_from_address (struct program_space *pspace, CORE_ADDR address)
c906108c 1198{
6c95b8df 1199 struct so_list *so = NULL;
c5aa993b 1200
6c95b8df 1201 for (so = pspace->so_list; so; so = so->next)
5fd1a349
PP
1202 if (solib_contains_address_p (so, address))
1203 return (so->so_name);
07cd4b97 1204
c906108c
SS
1205 return (0);
1206}
1207
5b89c67a 1208/* See solib.h. */
de18c1d8 1209
5b89c67a 1210bool
de18c1d8
JM
1211solib_keep_data_in_core (CORE_ADDR vaddr, unsigned long size)
1212{
3641da11 1213 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
de18c1d8
JM
1214
1215 if (ops->keep_data_in_core)
5b89c67a 1216 return ops->keep_data_in_core (vaddr, size) != 0;
de18c1d8 1217 else
5b89c67a 1218 return false;
de18c1d8
JM
1219}
1220
c906108c
SS
1221/* Called by free_all_symtabs */
1222
c5aa993b 1223void
fba45db2 1224clear_solib (void)
c906108c 1225{
3641da11 1226 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
66aba65d 1227
1736a7bd 1228 disable_breakpoints_in_shlibs ();
085dd6e6 1229
a1fd1ac9 1230 while (current_program_space->so_list)
c906108c 1231 {
a1fd1ac9 1232 struct so_list *so = current_program_space->so_list;
433759f7 1233
a1fd1ac9 1234 current_program_space->so_list = so->next;
76727919 1235 gdb::observers::solib_unloaded.notify (so);
2a3f84af 1236 current_program_space->remove_target_sections (so);
07cd4b97 1237 free_so (so);
c906108c 1238 }
07cd4b97 1239
66aba65d 1240 ops->clear_solib ();
c906108c
SS
1241}
1242
7f86f058
PA
1243/* Shared library startup support. When GDB starts up the inferior,
1244 it nurses it along (through the shell) until it is ready to execute
1245 its first instruction. At this point, this function gets
1246 called. */
c5aa993b
JM
1247
1248void
268a4a75 1249solib_create_inferior_hook (int from_tty)
c906108c 1250{
3641da11 1251 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
433759f7 1252
268a4a75 1253 ops->solib_create_inferior_hook (from_tty);
c906108c
SS
1254}
1255
5b89c67a 1256/* See solib.h. */
d7fa2ae2 1257
5b89c67a 1258bool
d7fa2ae2
KB
1259in_solib_dynsym_resolve_code (CORE_ADDR pc)
1260{
3641da11 1261 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
433759f7 1262
5b89c67a 1263 return ops->in_dynsym_resolve_code (pc) != 0;
d7fa2ae2 1264}
c906108c 1265
7f86f058 1266/* Implements the "sharedlibrary" command. */
c906108c
SS
1267
1268static void
0b39b52e 1269sharedlibrary_command (const char *args, int from_tty)
c906108c
SS
1270{
1271 dont_repeat ();
e696b3ad 1272 solib_add (args, from_tty, 1);
c906108c
SS
1273}
1274
7f86f058 1275/* Implements the command "nosharedlibrary", which discards symbols
cb0ba49e
MS
1276 that have been auto-loaded from shared libraries. Symbols from
1277 shared libraries that were added by explicit request of the user
1278 are not discarded. Also called from remote.c. */
1279
c60a7562 1280void
0b39b52e 1281no_shared_libraries (const char *ignored, int from_tty)
c60a7562 1282{
a3247a22
PP
1283 /* The order of the two routines below is important: clear_solib notifies
1284 the solib_unloaded observers, and some of these observers might need
1285 access to their associated objfiles. Therefore, we can not purge the
1286 solibs' objfiles before clear_solib has been called. */
1287
615b9dba 1288 clear_solib ();
a3247a22 1289 objfile_purge_solibs ();
c60a7562 1290}
c906108c 1291
f9e14852
GB
1292/* See solib.h. */
1293
1294void
1295update_solib_breakpoints (void)
1296{
1297 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
1298
1299 if (ops->update_breakpoints != NULL)
1300 ops->update_breakpoints ();
1301}
1302
1303/* See solib.h. */
1304
1305void
1306handle_solib_event (void)
1307{
1308 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
1309
1310 if (ops->handle_event != NULL)
1311 ops->handle_event ();
1312
e39fb971 1313 current_inferior ()->pspace->clear_solib_cache ();
f9e14852
GB
1314
1315 /* Check for any newly added shared libraries if we're supposed to
1316 be adding them automatically. Switch terminal for any messages
1317 produced by breakpoint_re_set. */
223ffa71 1318 target_terminal::ours_for_output ();
e696b3ad 1319 solib_add (NULL, 0, auto_solib_add);
223ffa71 1320 target_terminal::inferior ();
f9e14852
GB
1321}
1322
a86988f2
PA
1323/* Reload shared libraries, but avoid reloading the same symbol file
1324 we already have loaded. */
1325
1326static void
1327reload_shared_libraries_1 (int from_tty)
1328{
770e7fc7
DE
1329 if (print_symbol_loading_p (from_tty, 0, 0))
1330 printf_unfiltered (_("Loading symbols for shared libraries.\n"));
1331
a1fd1ac9 1332 for (struct so_list *so : current_program_space->solibs ())
a86988f2 1333 {
b16c44de 1334 const char *found_pathname = NULL;
5b89c67a 1335 bool was_loaded = so->symbols_loaded != 0;
b15cc25c
PA
1336 symfile_add_flags add_flags = SYMFILE_DEFER_BP_RESET;
1337
1338 if (from_tty)
1339 add_flags |= SYMFILE_VERBOSE;
a86988f2 1340
ee0c3293
TT
1341 gdb::unique_xmalloc_ptr<char> filename
1342 (tilde_expand (so->so_original_name));
1343 gdb_bfd_ref_ptr abfd (solib_bfd_open (filename.get ()));
a86988f2 1344 if (abfd != NULL)
ee0c3293 1345 found_pathname = bfd_get_filename (abfd.get ());
a86988f2
PA
1346
1347 /* If this shared library is no longer associated with its previous
1348 symbol file, close that. */
1349 if ((found_pathname == NULL && was_loaded)
1350 || (found_pathname != NULL
0ba1096a 1351 && filename_cmp (found_pathname, so->so_name) != 0))
a86988f2 1352 {
59145f8c
AR
1353 if (so->objfile && ! (so->objfile->flags & OBJF_USERLOADED)
1354 && !solib_used (so))
268e4f09 1355 so->objfile->unlink ();
2a3f84af 1356 current_program_space->remove_target_sections (so);
0892cb63 1357 clear_so (so);
a86988f2
PA
1358 }
1359
1360 /* If this shared library is now associated with a new symbol
1361 file, open it. */
1362 if (found_pathname != NULL
1363 && (!was_loaded
0ba1096a 1364 || filename_cmp (found_pathname, so->so_name) != 0))
a86988f2 1365 {
5b89c67a 1366 bool got_error = false;
a86988f2 1367
a70b8144 1368 try
492d29ea
PA
1369 {
1370 solib_map_sections (so);
1371 }
1372
230d2906 1373 catch (const gdb_exception_error &e)
492d29ea
PA
1374 {
1375 exception_fprintf (gdb_stderr, e,
1376 _("Error while mapping "
1377 "shared library sections:\n"));
5b89c67a 1378 got_error = true;
492d29ea 1379 }
a86988f2 1380
492d29ea
PA
1381 if (!got_error
1382 && (auto_solib_add || was_loaded || libpthread_solib_p (so)))
b15cc25c 1383 solib_read_symbols (so, add_flags);
a86988f2
PA
1384 }
1385 }
a86988f2
PA
1386}
1387
cf466558 1388static void
eb4c3f4a 1389reload_shared_libraries (const char *ignored, int from_tty,
f397e303 1390 struct cmd_list_element *e)
cf466558 1391{
3641da11 1392 const struct target_so_ops *ops;
a86988f2
PA
1393
1394 reload_shared_libraries_1 (from_tty);
1395
f5656ead 1396 ops = solib_ops (target_gdbarch ());
a86988f2 1397
c378eb4e 1398 /* Creating inferior hooks here has two purposes. First, if we reload
c8fa6cdd
VP
1399 shared libraries then the address of solib breakpoint we've computed
1400 previously might be no longer valid. For example, if we forgot to set
1401 solib-absolute-prefix and are setting it right now, then the previous
1402 breakpoint address is plain wrong. Second, installing solib hooks
1403 also implicitly figures were ld.so is and loads symbols for it.
1404 Absent this call, if we've just connected to a target and set
1405 solib-absolute-prefix or solib-search-path, we'll lose all information
1406 about ld.so. */
55f6301a 1407 if (target_has_execution ())
c8fa6cdd 1408 {
a86988f2
PA
1409 /* Reset or free private data structures not associated with
1410 so_list entries. */
1411 ops->clear_solib ();
1412
1413 /* Remove any previous solib event breakpoint. This is usually
1414 done in common code, at breakpoint_init_inferior time, but
1415 we're not really starting up the inferior here. */
1416 remove_solib_event_breakpoints ();
1417
268a4a75 1418 solib_create_inferior_hook (from_tty);
c8fa6cdd 1419 }
268a4a75
JK
1420
1421 /* Sometimes the platform-specific hook loads initial shared
1422 libraries, and sometimes it doesn't. If it doesn't FROM_TTY will be
1423 incorrectly 0 but such solib targets should be fixed anyway. If we
1424 made all the inferior hook methods consistent, this call could be
1425 removed. Call it only after the solib target has been initialized by
1426 solib_create_inferior_hook. */
1427
e696b3ad 1428 solib_add (NULL, 0, auto_solib_add);
268a4a75 1429
a86988f2
PA
1430 breakpoint_re_set ();
1431
1432 /* We may have loaded or unloaded debug info for some (or all)
1433 shared libraries. However, frames may still reference them. For
1434 example, a frame's unwinder might still point at DWARF FDE
1435 structures that are now freed. Also, getting new symbols may
1436 change our opinion about what is frameless. */
c8fa6cdd 1437 reinit_frame_cache ();
cf466558
KB
1438}
1439
2938e6cf
GB
1440/* Wrapper for reload_shared_libraries that replaces "remote:"
1441 at the start of gdb_sysroot with "target:". */
1442
1443static void
eb4c3f4a 1444gdb_sysroot_changed (const char *ignored, int from_tty,
2938e6cf
GB
1445 struct cmd_list_element *e)
1446{
1447 const char *old_prefix = "remote:";
1448 const char *new_prefix = TARGET_SYSROOT_PREFIX;
1449
e0700ba4 1450 if (startswith (gdb_sysroot.c_str (), old_prefix))
2938e6cf 1451 {
5b89c67a 1452 static bool warning_issued = false;
2938e6cf
GB
1453
1454 gdb_assert (strlen (old_prefix) == strlen (new_prefix));
e0700ba4 1455 gdb_sysroot = new_prefix + gdb_sysroot.substr (strlen (old_prefix));
2938e6cf
GB
1456
1457 if (!warning_issued)
1458 {
1459 warning (_("\"%s\" is deprecated, use \"%s\" instead."),
1460 old_prefix, new_prefix);
e0700ba4 1461 warning (_("sysroot set to \"%s\"."), gdb_sysroot.c_str ());
2938e6cf 1462
5b89c67a 1463 warning_issued = true;
2938e6cf
GB
1464 }
1465 }
1466
1467 reload_shared_libraries (ignored, from_tty, e);
1468}
1469
920d2a44
AC
1470static void
1471show_auto_solib_add (struct ui_file *file, int from_tty,
1472 struct cmd_list_element *c, const char *value)
1473{
1474 fprintf_filtered (file, _("Autoloading of shared library symbols is %s.\n"),
1475 value);
1476}
1477
1478
cb457ae2
YQ
1479/* Lookup the value for a specific symbol from dynamic symbol table. Look
1480 up symbol from ABFD. MATCH_SYM is a callback function to determine
1481 whether to pick up a symbol. DATA is the input of this callback
1482 function. Return NULL if symbol is not found. */
1483
1484CORE_ADDR
1485gdb_bfd_lookup_symbol_from_symtab (bfd *abfd,
3953f15c
SM
1486 int (*match_sym) (const asymbol *,
1487 const void *),
1488 const void *data)
cb457ae2
YQ
1489{
1490 long storage_needed = bfd_get_symtab_upper_bound (abfd);
1491 CORE_ADDR symaddr = 0;
1492
1493 if (storage_needed > 0)
1494 {
1495 unsigned int i;
1496
1cb1f3da
TT
1497 gdb::def_vector<asymbol *> storage (storage_needed / sizeof (asymbol *));
1498 asymbol **symbol_table = storage.data ();
cb457ae2
YQ
1499 unsigned int number_of_symbols =
1500 bfd_canonicalize_symtab (abfd, symbol_table);
1501
1502 for (i = 0; i < number_of_symbols; i++)
1503 {
1504 asymbol *sym = *symbol_table++;
1505
1506 if (match_sym (sym, data))
1507 {
3e29f34a
MR
1508 struct gdbarch *gdbarch = target_gdbarch ();
1509 symaddr = sym->value;
1510
1511 /* Some ELF targets fiddle with addresses of symbols they
dda83cd7
SM
1512 consider special. They use minimal symbols to do that
1513 and this is needed for correct breakpoint placement,
1514 but we do not have full data here to build a complete
1515 minimal symbol, so just set the address and let the
1516 targets cope with that. */
3e29f34a
MR
1517 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1518 && gdbarch_elf_make_msymbol_special_p (gdbarch))
1519 {
eefba3da 1520 struct minimal_symbol msym {};
3e29f34a 1521
3e29f34a
MR
1522 SET_MSYMBOL_VALUE_ADDRESS (&msym, symaddr);
1523 gdbarch_elf_make_msymbol_special (gdbarch, sym, &msym);
1524 symaddr = MSYMBOL_VALUE_RAW_ADDRESS (&msym);
1525 }
1526
cb457ae2 1527 /* BFD symbols are section relative. */
3e29f34a 1528 symaddr += sym->section->vma;
cb457ae2
YQ
1529 break;
1530 }
1531 }
cb457ae2
YQ
1532 }
1533
1534 return symaddr;
1535}
1536
8ddf4645
AM
1537/* See solib.h. */
1538
1539int
1540gdb_bfd_scan_elf_dyntag (const int desired_dyntag, bfd *abfd, CORE_ADDR *ptr,
1541 CORE_ADDR *ptr_addr)
1542{
1543 int arch_size, step, sect_size;
1544 long current_dyntag;
1545 CORE_ADDR dyn_ptr, dyn_addr;
1546 gdb_byte *bufend, *bufstart, *buf;
1547 Elf32_External_Dyn *x_dynp_32;
1548 Elf64_External_Dyn *x_dynp_64;
1549 struct bfd_section *sect;
1550
1551 if (abfd == NULL)
1552 return 0;
1553
1554 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
1555 return 0;
1556
1557 arch_size = bfd_get_arch_size (abfd);
1558 if (arch_size == -1)
1559 return 0;
1560
1561 /* Find the start address of the .dynamic section. */
1562 sect = bfd_get_section_by_name (abfd, ".dynamic");
1563 if (sect == NULL)
1564 return 0;
1565
1566 bool found = false;
1567 for (const target_section &target_section
1568 : current_program_space->target_sections ())
1569 if (sect == target_section.the_bfd_section)
1570 {
1571 dyn_addr = target_section.addr;
1572 found = true;
1573 break;
1574 }
1575 if (!found)
1576 {
1577 /* ABFD may come from OBJFILE acting only as a symbol file without being
1578 loaded into the target (see add_symbol_file_command). This case is
1579 such fallback to the file VMA address without the possibility of
1580 having the section relocated to its actual in-memory address. */
1581
1582 dyn_addr = bfd_section_vma (sect);
1583 }
1584
1585 /* Read in .dynamic from the BFD. We will get the actual value
1586 from memory later. */
1587 sect_size = bfd_section_size (sect);
1588 buf = bufstart = (gdb_byte *) alloca (sect_size);
1589 if (!bfd_get_section_contents (abfd, sect,
1590 buf, 0, sect_size))
1591 return 0;
1592
1593 /* Iterate over BUF and scan for DYNTAG. If found, set PTR and return. */
1594 step = (arch_size == 32) ? sizeof (Elf32_External_Dyn)
1595 : sizeof (Elf64_External_Dyn);
1596 for (bufend = buf + sect_size;
1597 buf < bufend;
1598 buf += step)
1599 {
1600 if (arch_size == 32)
1601 {
1602 x_dynp_32 = (Elf32_External_Dyn *) buf;
1603 current_dyntag = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp_32->d_tag);
1604 dyn_ptr = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp_32->d_un.d_ptr);
1605 }
1606 else
1607 {
1608 x_dynp_64 = (Elf64_External_Dyn *) buf;
1609 current_dyntag = bfd_h_get_64 (abfd, (bfd_byte *) x_dynp_64->d_tag);
1610 dyn_ptr = bfd_h_get_64 (abfd, (bfd_byte *) x_dynp_64->d_un.d_ptr);
1611 }
1612 if (current_dyntag == DT_NULL)
1613 return 0;
1614 if (current_dyntag == desired_dyntag)
1615 {
1616 /* If requested, try to read the runtime value of this .dynamic
1617 entry. */
1618 if (ptr)
1619 {
1620 struct type *ptr_type;
1621 gdb_byte ptr_buf[8];
1622 CORE_ADDR ptr_addr_1;
1623
1624 ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
1625 ptr_addr_1 = dyn_addr + (buf - bufstart) + arch_size / 8;
1626 if (target_read_memory (ptr_addr_1, ptr_buf, arch_size / 8) == 0)
1627 dyn_ptr = extract_typed_address (ptr_buf, ptr_type);
1628 *ptr = dyn_ptr;
1629 if (ptr_addr)
1630 *ptr_addr = dyn_addr + (buf - bufstart);
1631 }
1632 return 1;
1633 }
1634 }
1635
1636 return 0;
1637}
1638
39f53acb
AM
1639/* See solib.h. */
1640
1641gdb::unique_xmalloc_ptr<char>
1642gdb_bfd_read_elf_soname (const char *filename)
1643{
1644 gdb_bfd_ref_ptr abfd = gdb_bfd_open (filename, gnutarget);
1645
1646 if (abfd == nullptr)
1647 return {};
1648
1649 /* Check that ABFD is an ET_DYN ELF file. */
1650 if (!bfd_check_format (abfd.get (), bfd_object)
1651 || !(bfd_get_file_flags (abfd.get ()) & DYNAMIC))
1652 return {};
1653
1654 CORE_ADDR idx;
1655 if (!gdb_bfd_scan_elf_dyntag (DT_SONAME, abfd.get (), &idx, nullptr))
1656 return {};
1657
1658 struct bfd_section *dynstr = bfd_get_section_by_name (abfd.get (), ".dynstr");
1659 int sect_size = bfd_section_size (dynstr);
1660 if (dynstr == nullptr || sect_size <= idx)
1661 return {};
1662
1663 /* Read soname from the string table. */
1664 gdb::byte_vector dynstr_buf;
1665 if (!gdb_bfd_get_full_section_contents (abfd.get (), dynstr, &dynstr_buf))
1666 return {};
1667
1668 /* Ensure soname is null-terminated before returning a copy. */
1669 char *soname = (char *) dynstr_buf.data () + idx;
1670 if (strnlen (soname, sect_size - idx) == sect_size - idx)
1671 return {};
1672
1673 return make_unique_xstrdup (soname);
1674}
1675
cb457ae2
YQ
1676/* Lookup the value for a specific symbol from symbol table. Look up symbol
1677 from ABFD. MATCH_SYM is a callback function to determine whether to pick
1678 up a symbol. DATA is the input of this callback function. Return NULL
1679 if symbol is not found. */
1680
1681static CORE_ADDR
1682bfd_lookup_symbol_from_dyn_symtab (bfd *abfd,
3953f15c
SM
1683 int (*match_sym) (const asymbol *,
1684 const void *),
1685 const void *data)
cb457ae2
YQ
1686{
1687 long storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
1688 CORE_ADDR symaddr = 0;
1689
1690 if (storage_needed > 0)
1691 {
1692 unsigned int i;
1cb1f3da
TT
1693 gdb::def_vector<asymbol *> storage (storage_needed / sizeof (asymbol *));
1694 asymbol **symbol_table = storage.data ();
cb457ae2
YQ
1695 unsigned int number_of_symbols =
1696 bfd_canonicalize_dynamic_symtab (abfd, symbol_table);
1697
1698 for (i = 0; i < number_of_symbols; i++)
1699 {
1700 asymbol *sym = *symbol_table++;
1701
1702 if (match_sym (sym, data))
1703 {
1704 /* BFD symbols are section relative. */
1705 symaddr = sym->value + sym->section->vma;
1706 break;
1707 }
1708 }
cb457ae2
YQ
1709 }
1710 return symaddr;
1711}
1712
1713/* Lookup the value for a specific symbol from symbol table and dynamic
1714 symbol table. Look up symbol from ABFD. MATCH_SYM is a callback
1715 function to determine whether to pick up a symbol. DATA is the
1716 input of this callback function. Return NULL if symbol is not
1717 found. */
1718
1719CORE_ADDR
1720gdb_bfd_lookup_symbol (bfd *abfd,
3953f15c
SM
1721 int (*match_sym) (const asymbol *, const void *),
1722 const void *data)
cb457ae2
YQ
1723{
1724 CORE_ADDR symaddr = gdb_bfd_lookup_symbol_from_symtab (abfd, match_sym, data);
1725
1726 /* On FreeBSD, the dynamic linker is stripped by default. So we'll
1727 have to check the dynamic string table too. */
1728 if (symaddr == 0)
1729 symaddr = bfd_lookup_symbol_from_dyn_symtab (abfd, match_sym, data);
1730
1731 return symaddr;
1732}
3a40aaa0 1733
a1fd1ac9
TT
1734/* The shared library list may contain user-loaded object files that
1735 can be removed out-of-band by the user. So upon notification of
1736 free_objfile remove all references to any user-loaded file that is
1737 about to be freed. */
63644780
NB
1738
1739static void
1740remove_user_added_objfile (struct objfile *objfile)
1741{
63644780
NB
1742 if (objfile != 0 && objfile->flags & OBJF_USERLOADED)
1743 {
a1fd1ac9 1744 for (struct so_list *so : current_program_space->solibs ())
63644780
NB
1745 if (so->objfile == objfile)
1746 so->objfile = NULL;
1747 }
1748}
1749
6c265988 1750void _initialize_solib ();
c906108c 1751void
6c265988 1752_initialize_solib ()
c906108c 1753{
66aba65d
MK
1754 solib_data = gdbarch_data_register_pre_init (solib_init);
1755
c90e7d63
SM
1756 gdb::observers::free_objfile.attach (remove_user_added_objfile,
1757 "solib");
42a4fec5
SM
1758 gdb::observers::inferior_execd.attach ([] (inferior *inf)
1759 {
1760 solib_create_inferior_hook (0);
c90e7d63 1761 }, "solib");
63644780 1762
c906108c 1763 add_com ("sharedlibrary", class_files, sharedlibrary_command,
1bedd215 1764 _("Load shared object library symbols for files matching REGEXP."));
e0f25bd9
SM
1765 cmd_list_element *info_sharedlibrary_cmd
1766 = add_info ("sharedlibrary", info_sharedlibrary_command,
1767 _("Status of loaded shared object libraries."));
1768 add_info_alias ("dll", info_sharedlibrary_cmd, 1);
c60a7562 1769 add_com ("nosharedlibrary", class_files, no_shared_libraries,
1bedd215 1770 _("Unload all shared object library symbols."));
c906108c 1771
5bf193a2
AC
1772 add_setshow_boolean_cmd ("auto-solib-add", class_support,
1773 &auto_solib_add, _("\
1774Set autoloading of shared library symbols."), _("\
1775Show autoloading of shared library symbols."), _("\
b7209cb4
FF
1776If \"on\", symbols from all shared object libraries will be loaded\n\
1777automatically when the inferior begins execution, when the dynamic linker\n\
1778informs gdb that a new library has been loaded, or when attaching to the\n\
3e43a32a
MS
1779inferior. Otherwise, symbols must be loaded manually, using \
1780`sharedlibrary'."),
5bf193a2 1781 NULL,
920d2a44 1782 show_auto_solib_add,
5bf193a2 1783 &setlist, &showlist);
c906108c 1784
5e84b7ee
SM
1785 set_show_commands sysroot_cmds
1786 = add_setshow_optional_filename_cmd ("sysroot", class_support,
1787 &gdb_sysroot, _("\
f822c95b
DJ
1788Set an alternate system root."), _("\
1789Show the current system root."), _("\
1790The system root is used to load absolute shared library symbol files.\n\
1791For other (relative) files, you can add directories using\n\
1792`set solib-search-path'."),
5e84b7ee
SM
1793 gdb_sysroot_changed,
1794 NULL,
1795 &setlist, &showlist);
c906108c 1796
5e84b7ee 1797 add_alias_cmd ("solib-absolute-prefix", sysroot_cmds.set, class_support, 0,
f822c95b 1798 &setlist);
5e84b7ee 1799 add_alias_cmd ("solib-absolute-prefix", sysroot_cmds.show, class_support, 0,
f822c95b 1800 &showlist);
030292b7 1801
525226b5
AC
1802 add_setshow_optional_filename_cmd ("solib-search-path", class_support,
1803 &solib_search_path, _("\
3e43a32a
MS
1804Set the search path for loading non-absolute shared library symbol files."),
1805 _("\
1806Show the search path for loading non-absolute shared library symbol files."),
1807 _("\
1808This takes precedence over the environment variables \
1809PATH and LD_LIBRARY_PATH."),
525226b5 1810 reload_shared_libraries,
920d2a44 1811 show_solib_search_path,
525226b5 1812 &setlist, &showlist);
c906108c 1813}
This page took 5.39278 seconds and 4 git commands to generate.