]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/solib.c
* inflow.c (kill_command): Moved to infcmd.c.
[thirdparty/binutils-gdb.git] / gdb / solib.c
CommitLineData
13437d4b 1/* Handle shared libraries for GDB, the GNU Debugger.
14a5e767 2
6aba47ca 3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
0fb0cc75 4 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009
9b254dd1 5 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 21
c906108c
SS
22#include "defs.h"
23
c906108c 24#include <sys/types.h>
c906108c 25#include <fcntl.h>
13437d4b 26#include "gdb_string.h"
c906108c
SS
27#include "symtab.h"
28#include "bfd.h"
29#include "symfile.h"
30#include "objfiles.h"
60250e8b 31#include "exceptions.h"
c906108c
SS
32#include "gdbcore.h"
33#include "command.h"
34#include "target.h"
35#include "frame.h"
88987551 36#include "gdb_regex.h"
c906108c
SS
37#include "inferior.h"
38#include "environ.h"
39#include "language.h"
40#include "gdbcmd.h"
fa58ee11 41#include "completer.h"
fe4e3eb8 42#include "filenames.h" /* for DOSish file names */
4646aa9d 43#include "exec.h"
13437d4b 44#include "solist.h"
84acb35a 45#include "observer.h"
dbda9972 46#include "readline/readline.h"
f1838a98 47#include "remote.h"
2c0b251b 48#include "solib.h"
c906108c 49
66aba65d
MK
50/* Architecture-specific operations. */
51
52/* Per-architecture data key. */
53static struct gdbarch_data *solib_data;
54
55static void *
56solib_init (struct obstack *obstack)
57{
58 struct target_so_ops **ops;
59
60 ops = OBSTACK_ZALLOC (obstack, struct target_so_ops *);
61 *ops = current_target_so_ops;
62 return ops;
63}
64
65static struct target_so_ops *
66solib_ops (struct gdbarch *gdbarch)
67{
68 struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data);
69 return *ops;
70}
7d522c90
DJ
71
72/* Set the solib operations for GDBARCH to NEW_OPS. */
73
74void
75set_solib_ops (struct gdbarch *gdbarch, struct target_so_ops *new_ops)
76{
77 struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data);
78 *ops = new_ops;
79}
66aba65d
MK
80\f
81
13437d4b 82/* external data declarations */
c906108c 83
7d522c90
DJ
84/* FIXME: gdbarch needs to control this variable, or else every
85 configuration needs to call set_solib_ops. */
13437d4b 86struct target_so_ops *current_target_so_ops;
23e04971
MS
87
88/* local data declarations */
07cd4b97 89
c906108c 90static struct so_list *so_list_head; /* List of known shared objects */
23e04971 91
c906108c
SS
92/* Local function prototypes */
93
c906108c
SS
94/* If non-empty, this is a search path for loading non-absolute shared library
95 symbol files. This takes precedence over the environment variables PATH
96 and LD_LIBRARY_PATH. */
97static char *solib_search_path = NULL;
920d2a44
AC
98static void
99show_solib_search_path (struct ui_file *file, int from_tty,
100 struct cmd_list_element *c, const char *value)
101{
102 fprintf_filtered (file, _("\
103The search path for loading non-absolute shared library symbol files is %s.\n"),
104 value);
105}
c906108c 106
e4f7b8c8
MS
107/*
108
109 GLOBAL FUNCTION
110
572d275c 111 solib_find -- Find a shared library file.
e4f7b8c8
MS
112
113 SYNOPSIS
114
572d275c 115 char *solib_find (char *in_pathname, int *fd);
e4f7b8c8
MS
116
117 DESCRIPTION
118
f822c95b 119 Global variable GDB_SYSROOT is used as a prefix directory
e4f7b8c8
MS
120 to search for shared libraries if they have an absolute path.
121
122 Global variable SOLIB_SEARCH_PATH is used as a prefix directory
123 (or set of directories, as in LD_LIBRARY_PATH) to search for all
f822c95b 124 shared libraries if not found in GDB_SYSROOT.
e4f7b8c8 125
c8c18e65 126 Search algorithm:
f822c95b
DJ
127 * If there is a gdb_sysroot and path is absolute:
128 * Search for gdb_sysroot/path.
c8c18e65
KW
129 * else
130 * Look for it literally (unmodified).
e4f7b8c8 131 * Look in SOLIB_SEARCH_PATH.
f43caff8 132 * If available, use target defined search function.
f822c95b 133 * If gdb_sysroot is NOT set, perform the following two searches:
c8c18e65
KW
134 * Look in inferior's $PATH.
135 * Look in inferior's $LD_LIBRARY_PATH.
136 *
137 * The last check avoids doing this search when targetting remote
f822c95b 138 * machines since gdb_sysroot will almost always be set.
e4f7b8c8
MS
139
140 RETURNS
b21f0843 141
572d275c
UW
142 Full pathname of the shared library file, or NULL if not found.
143 (The pathname is malloc'ed; it needs to be freed by the caller.)
144 *FD is set to either -1 or an open file handle for the library. */
e4f7b8c8 145
572d275c
UW
146char *
147solib_find (char *in_pathname, int *fd)
e4f7b8c8 148{
1cf3db46 149 struct target_so_ops *ops = solib_ops (target_gdbarch);
e4f7b8c8
MS
150 int found_file = -1;
151 char *temp_pathname = NULL;
f822c95b 152 int gdb_sysroot_is_empty;
58dc52c3 153
f822c95b 154 gdb_sysroot_is_empty = (gdb_sysroot == NULL || *gdb_sysroot == 0);
e4f7b8c8 155
f822c95b 156 if (! IS_ABSOLUTE_PATH (in_pathname) || gdb_sysroot_is_empty)
f1d10cfb
AS
157 temp_pathname = in_pathname;
158 else
e4f7b8c8 159 {
f822c95b 160 int prefix_len = strlen (gdb_sysroot);
f1d10cfb
AS
161
162 /* Remove trailing slashes from absolute prefix. */
163 while (prefix_len > 0
f822c95b 164 && IS_DIR_SEPARATOR (gdb_sysroot[prefix_len - 1]))
f1d10cfb
AS
165 prefix_len--;
166
167 /* Cat the prefixed pathname together. */
168 temp_pathname = alloca (prefix_len + strlen (in_pathname) + 1);
f822c95b 169 strncpy (temp_pathname, gdb_sysroot, prefix_len);
f1d10cfb
AS
170 temp_pathname[prefix_len] = '\0';
171 strcat (temp_pathname, in_pathname);
e4f7b8c8
MS
172 }
173
f1838a98
UW
174 /* Handle remote files. */
175 if (remote_filename_p (temp_pathname))
176 {
572d275c
UW
177 *fd = -1;
178 return xstrdup (temp_pathname);
f1838a98
UW
179 }
180
f1d10cfb
AS
181 /* Now see if we can open it. */
182 found_file = open (temp_pathname, O_RDONLY | O_BINARY, 0);
183
0997b535
MS
184 /* We try to find the library in various ways. After each attempt
185 (except for the one above), either found_file >= 0 and
186 temp_pathname is a malloc'd string, or found_file < 0 and
187 temp_pathname does not point to storage that needs to be
188 freed. */
189
190 if (found_file < 0)
191 temp_pathname = NULL;
192 else
193 temp_pathname = xstrdup (temp_pathname);
194
f822c95b 195 /* If the search in gdb_sysroot failed, and the path name is
ba5f0d88
OF
196 absolute at this point, make it relative. (openp will try and open the
197 file according to its absolute path otherwise, which is not what we want.)
198 Affects subsequent searches for this solib. */
199 if (found_file < 0 && IS_ABSOLUTE_PATH (in_pathname))
200 {
201 /* First, get rid of any drive letters etc. */
202 while (!IS_DIR_SEPARATOR (*in_pathname))
203 in_pathname++;
204
205 /* Next, get rid of all leading dir separators. */
206 while (IS_DIR_SEPARATOR (*in_pathname))
207 in_pathname++;
208 }
209
c8c18e65 210 /* If not found, search the solib_search_path (if any). */
e4f7b8c8 211 if (found_file < 0 && solib_search_path != NULL)
014d698b 212 found_file = openp (solib_search_path, OPF_TRY_CWD_FIRST,
637d6690 213 in_pathname, O_RDONLY | O_BINARY, 0, &temp_pathname);
ba5f0d88
OF
214
215 /* If not found, next search the solib_search_path (if any) for the basename
216 only (ignoring the path). This is to allow reading solibs from a path
217 that differs from the opened path. */
218 if (found_file < 0 && solib_search_path != NULL)
014d698b 219 found_file = openp (solib_search_path, OPF_TRY_CWD_FIRST,
637d6690 220 lbasename (in_pathname), O_RDONLY | O_BINARY, 0,
ba5f0d88 221 &temp_pathname);
e4f7b8c8 222
2610b0bf 223 /* If not found, try to use target supplied solib search method */
66aba65d 224 if (found_file < 0 && ops->find_and_open_solib)
637d6690 225 found_file = ops->find_and_open_solib (in_pathname, O_RDONLY | O_BINARY,
66aba65d 226 &temp_pathname);
2610b0bf 227
e4f7b8c8 228 /* If not found, next search the inferior's $PATH environment variable. */
f822c95b 229 if (found_file < 0 && gdb_sysroot_is_empty)
e4f7b8c8 230 found_file = openp (get_in_environ (inferior_environ, "PATH"),
637d6690 231 OPF_TRY_CWD_FIRST, in_pathname, O_RDONLY | O_BINARY, 0,
014d698b 232 &temp_pathname);
e4f7b8c8
MS
233
234 /* If not found, next search the inferior's $LD_LIBRARY_PATH
235 environment variable. */
f822c95b 236 if (found_file < 0 && gdb_sysroot_is_empty)
e4f7b8c8 237 found_file = openp (get_in_environ (inferior_environ, "LD_LIBRARY_PATH"),
637d6690 238 OPF_TRY_CWD_FIRST, in_pathname, O_RDONLY | O_BINARY, 0,
014d698b 239 &temp_pathname);
e4f7b8c8 240
572d275c
UW
241 *fd = found_file;
242 return temp_pathname;
243}
244
245/* Open and return a BFD for the shared library PATHNAME. If FD is not -1,
246 it is used as file handle to open the file. Throws an error if the file
247 could not be opened. Handles both local and remote file access.
248
249 PATHNAME must be malloc'ed by the caller. If successful, the new BFD's
250 name will point to it. If unsuccessful, PATHNAME will be freed and the
251 FD will be closed (unless FD was -1). */
252
253bfd *
254solib_bfd_fopen (char *pathname, int fd)
255{
256 bfd *abfd;
257
258 if (remote_filename_p (pathname))
259 {
260 gdb_assert (fd == -1);
261 abfd = remote_bfd_open (pathname, gnutarget);
262 }
263 else
264 {
265 abfd = bfd_fopen (pathname, gnutarget, FOPEN_RB, fd);
266
267 if (abfd)
268 bfd_set_cacheable (abfd, 1);
269 else if (fd != -1)
270 close (fd);
271 }
f1838a98 272
f1838a98
UW
273 if (!abfd)
274 {
572d275c 275 make_cleanup (xfree, pathname);
f1838a98 276 error (_("Could not open `%s' as an executable file: %s"),
572d275c 277 pathname, bfd_errmsg (bfd_get_error ()));
f1838a98
UW
278 }
279
572d275c
UW
280 return abfd;
281}
282
283/* Find shared library PATHNAME and open a BFD for it. */
284
285bfd *
286solib_bfd_open (char *pathname)
287{
288 struct target_so_ops *ops = solib_ops (target_gdbarch);
289 char *found_pathname;
290 int found_file;
291 bfd *abfd;
292
293 /* Use target-specific override if present. */
294 if (ops->bfd_open)
295 return ops->bfd_open (pathname);
296
297 /* Search for shared library file. */
298 found_pathname = solib_find (pathname, &found_file);
299 if (found_pathname == NULL)
300 perror_with_name (pathname);
301
302 /* Open bfd for shared library. */
303 abfd = solib_bfd_fopen (found_pathname, found_file);
304
305 /* Check bfd format. */
f1838a98 306 if (!bfd_check_format (abfd, bfd_object))
0997b535 307 {
f1838a98 308 bfd_close (abfd);
572d275c 309 make_cleanup (xfree, found_pathname);
f1838a98 310 error (_("`%s': not in executable format: %s"),
572d275c 311 found_pathname, bfd_errmsg (bfd_get_error ()));
0997b535 312 }
f1838a98 313
f1838a98 314 return abfd;
e4f7b8c8
MS
315}
316
317
c906108c
SS
318/*
319
c5aa993b 320 LOCAL FUNCTION
c906108c 321
c5aa993b 322 solib_map_sections -- open bfd and build sections for shared lib
c906108c 323
c5aa993b 324 SYNOPSIS
c906108c 325
c5aa993b 326 static int solib_map_sections (struct so_list *so)
c906108c 327
c5aa993b 328 DESCRIPTION
c906108c 329
c5aa993b
JM
330 Given a pointer to one of the shared objects in our list
331 of mapped objects, use the recorded name to open a bfd
332 descriptor for the object, build a section table, and then
333 relocate all the section addresses by the base address at
334 which the shared object was mapped.
c906108c 335
c5aa993b 336 FIXMES
c906108c 337
c5aa993b
JM
338 In most (all?) cases the shared object file name recorded in the
339 dynamic linkage tables will be a fully qualified pathname. For
340 cases where it isn't, do we really mimic the systems search
341 mechanism correctly in the below code (particularly the tilde
342 expansion stuff?).
c906108c
SS
343 */
344
345static int
4efb68b1 346solib_map_sections (void *arg)
c906108c
SS
347{
348 struct so_list *so = (struct so_list *) arg; /* catch_errors bogon */
349 char *filename;
c906108c
SS
350 struct section_table *p;
351 struct cleanup *old_chain;
352 bfd *abfd;
c5aa993b
JM
353
354 filename = tilde_expand (so->so_name);
b8c9b27d 355 old_chain = make_cleanup (xfree, filename);
f1838a98
UW
356 abfd = solib_bfd_open (filename);
357 do_cleanups (old_chain);
e4f7b8c8 358
13437d4b
KB
359 /* Leave bfd open, core_xfer_memory and "info files" need it. */
360 so->abfd = abfd;
23e04971 361
e4f7b8c8
MS
362 /* copy full path name into so_name, so that later symbol_file_add
363 can find it */
f1838a98
UW
364 if (strlen (bfd_get_filename (abfd)) >= SO_NAME_MAX_PATH_SIZE)
365 error (_("Shared library file name is too long."));
366 strcpy (so->so_name, bfd_get_filename (abfd));
23e04971 367
13437d4b 368 if (build_section_table (abfd, &so->sections, &so->sections_end))
23e04971 369 {
8a3fe4f8 370 error (_("Can't find the file sections in `%s': %s"),
13437d4b 371 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
23e04971 372 }
104c1213 373
13437d4b 374 for (p = so->sections; p < so->sections_end; p++)
104c1213 375 {
1cf3db46 376 struct target_so_ops *ops = solib_ops (target_gdbarch);
66aba65d 377
13437d4b
KB
378 /* Relocate the section binding addresses as recorded in the shared
379 object's file by the base address to which the object was actually
380 mapped. */
66aba65d 381 ops->relocate_section_addresses (so, p);
cfa9d6d9
DJ
382
383 /* If the target didn't provide information about the address
384 range of the shared object, assume we want the location of
385 the .text section. */
386 if (so->addr_low == 0 && so->addr_high == 0
387 && strcmp (p->the_bfd_section->name, ".text") == 0)
13437d4b 388 {
cfa9d6d9
DJ
389 so->addr_low = p->addr;
390 so->addr_high = p->endaddr;
13437d4b 391 }
104c1213
JM
392 }
393
13437d4b 394 return (1);
104c1213 395}
c906108c 396
07cd4b97 397/* LOCAL FUNCTION
c906108c 398
07cd4b97 399 free_so --- free a `struct so_list' object
c906108c 400
c5aa993b 401 SYNOPSIS
c906108c 402
07cd4b97 403 void free_so (struct so_list *so)
c906108c 404
c5aa993b 405 DESCRIPTION
c906108c 406
07cd4b97
JB
407 Free the storage associated with the `struct so_list' object SO.
408 If we have opened a BFD for SO, close it.
c906108c 409
07cd4b97
JB
410 The caller is responsible for removing SO from whatever list it is
411 a member of. If we have placed SO's sections in some target's
412 section table, the caller is responsible for removing them.
c906108c 413
07cd4b97
JB
414 This function doesn't mess with objfiles at all. If there is an
415 objfile associated with SO that needs to be removed, the caller is
416 responsible for taking care of that. */
417
13437d4b 418void
07cd4b97 419free_so (struct so_list *so)
c906108c 420{
1cf3db46 421 struct target_so_ops *ops = solib_ops (target_gdbarch);
07cd4b97 422 char *bfd_filename = 0;
c5aa993b 423
07cd4b97 424 if (so->sections)
b8c9b27d 425 xfree (so->sections);
07cd4b97
JB
426
427 if (so->abfd)
c906108c 428 {
07cd4b97
JB
429 bfd_filename = bfd_get_filename (so->abfd);
430 if (! bfd_close (so->abfd))
8a3fe4f8 431 warning (_("cannot close \"%s\": %s"),
07cd4b97 432 bfd_filename, bfd_errmsg (bfd_get_error ()));
c906108c 433 }
07cd4b97
JB
434
435 if (bfd_filename)
b8c9b27d 436 xfree (bfd_filename);
07cd4b97 437
66aba65d 438 ops->free_so (so);
07cd4b97 439
b8c9b27d 440 xfree (so);
c906108c
SS
441}
442
07cd4b97 443
f8766ec1
KB
444/* Return address of first so_list entry in master shared object list. */
445struct so_list *
446master_so_list (void)
447{
448 return so_list_head;
449}
450
451
c906108c
SS
452/* A small stub to get us past the arg-passing pinhole of catch_errors. */
453
454static int
4efb68b1 455symbol_add_stub (void *arg)
c906108c 456{
52f0bd74 457 struct so_list *so = (struct so_list *) arg; /* catch_errs bogon */
62557bbc 458 struct section_addr_info *sap;
c906108c 459
07cd4b97
JB
460 /* Have we already loaded this shared object? */
461 ALL_OBJFILES (so->objfile)
462 {
463 if (strcmp (so->objfile->name, so->so_name) == 0)
464 return 1;
465 }
466
62557bbc
KB
467 sap = build_section_addr_info_from_section_table (so->sections,
468 so->sections_end);
e7cf9df1 469
572d275c
UW
470 so->objfile = symbol_file_add_from_bfd (so->abfd, so->from_tty,
471 sap, 0, OBJF_SHARED | OBJF_KEEPBFD);
62557bbc 472 free_section_addr_info (sap);
c906108c 473
07cd4b97 474 return (1);
c906108c
SS
475}
476
42a6e6a0
MK
477/* Read in symbols for shared object SO. If FROM_TTY is non-zero, be
478 chatty about it. Return non-zero if any symbols were actually
479 loaded. */
480
481int
482solib_read_symbols (struct so_list *so, int from_tty)
483{
484 if (so->symbols_loaded)
485 {
486 if (from_tty)
a3f17187 487 printf_unfiltered (_("Symbols already loaded for %s\n"), so->so_name);
42a6e6a0 488 }
8bb75286
DJ
489 else if (so->abfd == NULL)
490 {
491 if (from_tty)
492 printf_unfiltered (_("Symbol file not found for %s\n"), so->so_name);
493 }
42a6e6a0
MK
494 else
495 {
496 if (catch_errors (symbol_add_stub, so,
497 "Error while reading shared library symbols:\n",
498 RETURN_MASK_ALL))
499 {
bf250677 500 if (from_tty && print_symbol_loading)
a3f17187 501 printf_unfiltered (_("Loaded symbols for %s\n"), so->so_name);
42a6e6a0
MK
502 so->symbols_loaded = 1;
503 return 1;
504 }
505 }
506
507 return 0;
508}
c906108c 509
07cd4b97 510/* LOCAL FUNCTION
c906108c 511
105b175f 512 update_solib_list --- synchronize GDB's shared object list with inferior's
c906108c 513
c5aa993b 514 SYNOPSIS
c906108c 515
105b175f 516 void update_solib_list (int from_tty, struct target_ops *TARGET)
c906108c 517
07cd4b97 518 Extract the list of currently loaded shared objects from the
105b175f
JB
519 inferior, and compare it with the list of shared objects currently
520 in GDB's so_list_head list. Edit so_list_head to bring it in sync
521 with the inferior's new list.
c906108c 522
105b175f
JB
523 If we notice that the inferior has unloaded some shared objects,
524 free any symbolic info GDB had read about those shared objects.
525
526 Don't load symbolic info for any new shared objects; just add them
527 to the list, and leave their symbols_loaded flag clear.
07cd4b97
JB
528
529 If FROM_TTY is non-null, feel free to print messages about what
530 we're doing.
c906108c 531
07cd4b97
JB
532 If TARGET is non-null, add the sections of all new shared objects
533 to TARGET's section table. Note that this doesn't remove any
534 sections for shared objects that have been unloaded, and it
535 doesn't check to see if the new shared objects are already present in
536 the section table. But we only use this for core files and
537 processes we've just attached to, so that's okay. */
c906108c 538
a78f21af 539static void
105b175f 540update_solib_list (int from_tty, struct target_ops *target)
07cd4b97 541{
1cf3db46 542 struct target_so_ops *ops = solib_ops (target_gdbarch);
66aba65d 543 struct so_list *inferior = ops->current_sos();
07cd4b97
JB
544 struct so_list *gdb, **gdb_link;
545
181e7f93
PA
546 /* We can reach here due to changing solib-search-path or the
547 sysroot, before having any inferior. */
50c71eaf 548 if (target_has_execution && !ptid_equal (inferior_ptid, null_ptid))
181e7f93
PA
549 {
550 struct inferior *inf = current_inferior ();
551
552 /* If we are attaching to a running process for which we
553 have not opened a symbol file, we may be able to get its
554 symbols now! */
555 if (inf->attach_flag && symfile_objfile == NULL)
556 catch_errors (ops->open_symbol_file_object, &from_tty,
557 "Error reading attached process's symbol file.\n",
558 RETURN_MASK_ALL);
559 }
104c1213 560
07cd4b97
JB
561 /* GDB and the inferior's dynamic linker each maintain their own
562 list of currently loaded shared objects; we want to bring the
563 former in sync with the latter. Scan both lists, seeing which
564 shared objects appear where. There are three cases:
565
566 - A shared object appears on both lists. This means that GDB
105b175f
JB
567 knows about it already, and it's still loaded in the inferior.
568 Nothing needs to happen.
07cd4b97
JB
569
570 - A shared object appears only on GDB's list. This means that
105b175f
JB
571 the inferior has unloaded it. We should remove the shared
572 object from GDB's tables.
07cd4b97
JB
573
574 - A shared object appears only on the inferior's list. This
105b175f
JB
575 means that it's just been loaded. We should add it to GDB's
576 tables.
07cd4b97
JB
577
578 So we walk GDB's list, checking each entry to see if it appears
579 in the inferior's list too. If it does, no action is needed, and
580 we remove it from the inferior's list. If it doesn't, the
581 inferior has unloaded it, and we remove it from GDB's list. By
582 the time we're done walking GDB's list, the inferior's list
583 contains only the new shared objects, which we then add. */
584
585 gdb = so_list_head;
586 gdb_link = &so_list_head;
587 while (gdb)
c906108c 588 {
07cd4b97
JB
589 struct so_list *i = inferior;
590 struct so_list **i_link = &inferior;
591
592 /* Check to see whether the shared object *gdb also appears in
593 the inferior's current list. */
594 while (i)
c906108c 595 {
a7c02bc8
VP
596 if (ops->same)
597 {
598 if (ops->same (gdb, i))
599 break;
600 }
601 else
602 {
603 if (! strcmp (gdb->so_original_name, i->so_original_name))
604 break;
605 }
07cd4b97
JB
606
607 i_link = &i->next;
608 i = *i_link;
c906108c 609 }
c5aa993b 610
07cd4b97
JB
611 /* If the shared object appears on the inferior's list too, then
612 it's still loaded, so we don't need to do anything. Delete
613 it from the inferior's list, and leave it on GDB's list. */
614 if (i)
c906108c 615 {
07cd4b97 616 *i_link = i->next;
07cd4b97
JB
617 free_so (i);
618 gdb_link = &gdb->next;
619 gdb = *gdb_link;
620 }
621
622 /* If it's not on the inferior's list, remove it from GDB's tables. */
623 else
624 {
42a6e6a0
MK
625 /* Notify any observer that the shared object has been
626 unloaded before we remove it from GDB's tables. */
84acb35a
JJ
627 observer_notify_solib_unloaded (gdb);
628
07cd4b97 629 *gdb_link = gdb->next;
07cd4b97
JB
630
631 /* Unless the user loaded it explicitly, free SO's objfile. */
e8930304 632 if (gdb->objfile && ! (gdb->objfile->flags & OBJF_USERLOADED))
07cd4b97
JB
633 free_objfile (gdb->objfile);
634
635 /* Some targets' section tables might be referring to
636 sections from so->abfd; remove them. */
637 remove_target_sections (gdb->abfd);
638
639 free_so (gdb);
640 gdb = *gdb_link;
c906108c
SS
641 }
642 }
c5aa993b 643
07cd4b97
JB
644 /* Now the inferior's list contains only shared objects that don't
645 appear in GDB's list --- those that are newly loaded. Add them
e8930304 646 to GDB's shared object list. */
07cd4b97 647 if (inferior)
c906108c 648 {
07cd4b97
JB
649 struct so_list *i;
650
651 /* Add the new shared objects to GDB's list. */
652 *gdb_link = inferior;
653
e8930304 654 /* Fill in the rest of each of the `struct so_list' nodes. */
07cd4b97 655 for (i = inferior; i; i = i->next)
c906108c 656 {
07cd4b97
JB
657 i->from_tty = from_tty;
658
659 /* Fill in the rest of the `struct so_list' node. */
660 catch_errors (solib_map_sections, i,
661 "Error while mapping shared library sections:\n",
662 RETURN_MASK_ALL);
07cd4b97 663
b41be06e
ND
664 /* If requested, add the shared object's sections to the TARGET's
665 section table. Do this immediately after mapping the object so
666 that later nodes in the list can query this object, as is needed
667 in solib-osf.c. */
668 if (target)
c906108c 669 {
b41be06e
ND
670 int count = (i->sections_end - i->sections);
671 if (count > 0)
07cd4b97 672 {
b41be06e 673 int space = target_resize_to_sections (target, count);
07cd4b97
JB
674 memcpy (target->to_sections + space,
675 i->sections,
676 count * sizeof (i->sections[0]));
07cd4b97 677 }
c906108c 678 }
42a6e6a0
MK
679
680 /* Notify any observer that the shared object has been
681 loaded now that we've added it to GDB's tables. */
682 observer_notify_solib_loaded (i);
c906108c 683 }
e8930304 684 }
105b175f
JB
685}
686
17a37d48
PP
687
688/* Return non-zero if NAME is the libpthread shared library.
6612ad7f
JB
689
690 Uses a fairly simplistic heuristic approach where we check
691 the file name against "/libpthread". This can lead to false
692 positives, but this should be good enough in practice. */
693
17a37d48
PP
694int
695libpthread_name_p (const char *name)
696{
697 return (strstr (name, "/libpthread") != NULL);
698}
699
700/* Return non-zero if SO is the libpthread shared library. */
701
6612ad7f
JB
702static int
703libpthread_solib_p (struct so_list *so)
704{
17a37d48 705 return libpthread_name_p (so->so_name);
6612ad7f 706}
105b175f
JB
707
708/* GLOBAL FUNCTION
709
710 solib_add -- read in symbol info for newly added shared libraries
711
712 SYNOPSIS
713
990f9fe3
FF
714 void solib_add (char *pattern, int from_tty, struct target_ops
715 *TARGET, int readsyms)
105b175f
JB
716
717 DESCRIPTION
718
719 Read in symbolic information for any shared objects whose names
720 match PATTERN. (If we've already read a shared object's symbol
721 info, leave it alone.) If PATTERN is zero, read them all.
722
990f9fe3
FF
723 If READSYMS is 0, defer reading symbolic information until later
724 but still do any needed low level processing.
725
105b175f
JB
726 FROM_TTY and TARGET are as described for update_solib_list, above. */
727
728void
990f9fe3 729solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms)
105b175f
JB
730{
731 struct so_list *gdb;
732
733 if (pattern)
734 {
735 char *re_err = re_comp (pattern);
736
737 if (re_err)
8a3fe4f8 738 error (_("Invalid regexp: %s"), re_err);
105b175f
JB
739 }
740
741 update_solib_list (from_tty, target);
c906108c 742
105b175f
JB
743 /* Walk the list of currently loaded shared libraries, and read
744 symbols for any that match the pattern --- or any whose symbols
745 aren't already loaded, if no pattern was given. */
e8930304
JB
746 {
747 int any_matches = 0;
748 int loaded_any_symbols = 0;
c906108c 749
e8930304
JB
750 for (gdb = so_list_head; gdb; gdb = gdb->next)
751 if (! pattern || re_exec (gdb->so_name))
752 {
6612ad7f
JB
753 /* Normally, we would read the symbols from that library
754 only if READSYMS is set. However, we're making a small
755 exception for the pthread library, because we sometimes
756 need the library symbols to be loaded in order to provide
757 thread support (x86-linux for instance). */
758 const int add_this_solib =
759 (readsyms || libpthread_solib_p (gdb));
760
e8930304 761 any_matches = 1;
6612ad7f 762 if (add_this_solib && solib_read_symbols (gdb, from_tty))
42a6e6a0 763 loaded_any_symbols = 1;
e8930304
JB
764 }
765
766 if (from_tty && pattern && ! any_matches)
767 printf_unfiltered
768 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
769
770 if (loaded_any_symbols)
771 {
1cf3db46 772 struct target_so_ops *ops = solib_ops (target_gdbarch);
66aba65d 773
e8930304
JB
774 /* Getting new symbols may change our opinion about what is
775 frameless. */
776 reinit_frame_cache ();
777
66aba65d 778 ops->special_symbol_handling ();
e8930304
JB
779 }
780 }
c906108c
SS
781}
782
07cd4b97 783
c906108c
SS
784/*
785
c5aa993b 786 LOCAL FUNCTION
c906108c 787
c5aa993b 788 info_sharedlibrary_command -- code for "info sharedlibrary"
c906108c 789
c5aa993b 790 SYNOPSIS
c906108c 791
c5aa993b 792 static void info_sharedlibrary_command ()
c906108c 793
c5aa993b 794 DESCRIPTION
c906108c 795
c5aa993b
JM
796 Walk through the shared library list and print information
797 about each attached library.
798 */
c906108c
SS
799
800static void
fba45db2 801info_sharedlibrary_command (char *ignore, int from_tty)
c906108c 802{
52f0bd74 803 struct so_list *so = NULL; /* link map state variable */
c906108c
SS
804 int header_done = 0;
805 int addr_width;
c906108c 806
84eb3c4f 807 /* "0x", a little whitespace, and two hex digits per byte of pointers. */
1cf3db46 808 addr_width = 4 + (gdbarch_ptr_bit (target_gdbarch) / 4);
c906108c 809
105b175f 810 update_solib_list (from_tty, 0);
07cd4b97
JB
811
812 for (so = so_list_head; so; so = so->next)
c906108c 813 {
c5aa993b 814 if (so->so_name[0])
c906108c
SS
815 {
816 if (!header_done)
817 {
c5aa993b
JM
818 printf_unfiltered ("%-*s%-*s%-12s%s\n", addr_width, "From",
819 addr_width, "To", "Syms Read",
820 "Shared Object Library");
c906108c
SS
821 header_done++;
822 }
823
824 printf_unfiltered ("%-*s", addr_width,
cfa9d6d9 825 so->addr_high != 0
bb599908 826 ? hex_string_custom (
cfa9d6d9 827 (LONGEST) so->addr_low,
bb599908 828 addr_width - 4)
749499cb 829 : "");
c906108c 830 printf_unfiltered ("%-*s", addr_width,
cfa9d6d9 831 so->addr_high != 0
bb599908 832 ? hex_string_custom (
cfa9d6d9 833 (LONGEST) so->addr_high,
bb599908 834 addr_width - 4)
749499cb 835 : "");
c5aa993b
JM
836 printf_unfiltered ("%-12s", so->symbols_loaded ? "Yes" : "No");
837 printf_unfiltered ("%s\n", so->so_name);
c906108c
SS
838 }
839 }
840 if (so_list_head == NULL)
841 {
a3f17187 842 printf_unfiltered (_("No shared libraries loaded at this time.\n"));
c906108c
SS
843 }
844}
845
5fd1a349
PP
846/* Return 1 if ADDRESS lies within SOLIB. */
847
848int
849solib_contains_address_p (const struct so_list *const solib,
850 CORE_ADDR address)
851{
852 struct section_table *p;
853
854 for (p = solib->sections; p < solib->sections_end; p++)
855 if (p->addr <= address && address < p->endaddr)
856 return 1;
857
858 return 0;
859}
860
c906108c
SS
861/*
862
c5aa993b 863 GLOBAL FUNCTION
c906108c 864
f5c9a895
PP
865 solib_name_from_address -- if an address is in a shared lib, return
866 its name.
c906108c 867
c5aa993b 868 SYNOPSIS
c906108c 869
f5c9a895 870 char * solib_name_from_address (CORE_ADDR address)
c906108c 871
c5aa993b 872 DESCRIPTION
c906108c 873
c5aa993b
JM
874 Provides a hook for other gdb routines to discover whether or
875 not a particular address is within the mapped address space of
749499cb 876 a shared library.
c906108c 877
c5aa993b
JM
878 For example, this routine is called at one point to disable
879 breakpoints which are in shared libraries that are not currently
880 mapped in.
c906108c
SS
881 */
882
883char *
f5c9a895 884solib_name_from_address (CORE_ADDR address)
c906108c 885{
52f0bd74 886 struct so_list *so = 0; /* link map state variable */
c5aa993b 887
07cd4b97 888 for (so = so_list_head; so; so = so->next)
5fd1a349
PP
889 if (solib_contains_address_p (so, address))
890 return (so->so_name);
07cd4b97 891
c906108c
SS
892 return (0);
893}
894
895/* Called by free_all_symtabs */
896
c5aa993b 897void
fba45db2 898clear_solib (void)
c906108c 899{
1cf3db46 900 struct target_so_ops *ops = solib_ops (target_gdbarch);
66aba65d 901
085dd6e6
JM
902 /* This function is expected to handle ELF shared libraries. It is
903 also used on Solaris, which can run either ELF or a.out binaries
904 (for compatibility with SunOS 4), both of which can use shared
905 libraries. So we don't know whether we have an ELF executable or
906 an a.out executable until the user chooses an executable file.
907
908 ELF shared libraries don't get mapped into the address space
909 until after the program starts, so we'd better not try to insert
910 breakpoints in them immediately. We have to wait until the
911 dynamic linker has loaded them; we'll hit a bp_shlib_event
912 breakpoint (look for calls to create_solib_event_breakpoint) when
913 it's ready.
914
915 SunOS shared libraries seem to be different --- they're present
916 as soon as the process begins execution, so there's no need to
917 put off inserting breakpoints. There's also nowhere to put a
918 bp_shlib_event breakpoint, so if we put it off, we'll never get
919 around to it.
920
921 So: disable breakpoints only if we're using ELF shared libs. */
922 if (exec_bfd != NULL
923 && bfd_get_flavour (exec_bfd) != bfd_target_aout_flavour)
cb851954 924 disable_breakpoints_in_shlibs ();
085dd6e6 925
c906108c
SS
926 while (so_list_head)
927 {
07cd4b97
JB
928 struct so_list *so = so_list_head;
929 so_list_head = so->next;
c86cf029 930 observer_notify_solib_unloaded (so);
2069d78d
KB
931 if (so->abfd)
932 remove_target_sections (so->abfd);
07cd4b97 933 free_so (so);
c906108c 934 }
07cd4b97 935
66aba65d 936 ops->clear_solib ();
c906108c
SS
937}
938
13437d4b 939/* GLOBAL FUNCTION
c5aa993b
JM
940
941 solib_create_inferior_hook -- shared library startup support
942
943 SYNOPSIS
944
7095b863 945 void solib_create_inferior_hook ()
c5aa993b
JM
946
947 DESCRIPTION
948
949 When gdb starts up the inferior, it nurses it along (through the
950 shell) until it is ready to execute it's first instruction. At this
951 point, this function gets called via expansion of the macro
13437d4b 952 SOLIB_CREATE_INFERIOR_HOOK. */
c5aa993b
JM
953
954void
fba45db2 955solib_create_inferior_hook (void)
c906108c 956{
1cf3db46 957 struct target_so_ops *ops = solib_ops (target_gdbarch);
66aba65d 958 ops->solib_create_inferior_hook();
c906108c
SS
959}
960
d7fa2ae2
KB
961/* GLOBAL FUNCTION
962
963 in_solib_dynsym_resolve_code -- check to see if an address is in
964 dynamic loader's dynamic symbol
965 resolution code
966
967 SYNOPSIS
968
969 int in_solib_dynsym_resolve_code (CORE_ADDR pc)
970
971 DESCRIPTION
972
973 Determine if PC is in the dynamic linker's symbol resolution
974 code. Return 1 if so, 0 otherwise.
975*/
976
977int
978in_solib_dynsym_resolve_code (CORE_ADDR pc)
979{
1cf3db46 980 struct target_so_ops *ops = solib_ops (target_gdbarch);
66aba65d 981 return ops->in_dynsym_resolve_code (pc);
d7fa2ae2 982}
c906108c
SS
983
984/*
985
c5aa993b 986 LOCAL FUNCTION
c906108c 987
c5aa993b 988 sharedlibrary_command -- handle command to explicitly add library
c906108c 989
c5aa993b 990 SYNOPSIS
c906108c 991
c5aa993b 992 static void sharedlibrary_command (char *args, int from_tty)
c906108c 993
c5aa993b 994 DESCRIPTION
c906108c 995
c5aa993b 996 */
c906108c
SS
997
998static void
fba45db2 999sharedlibrary_command (char *args, int from_tty)
c906108c
SS
1000{
1001 dont_repeat ();
990f9fe3 1002 solib_add (args, from_tty, (struct target_ops *) 0, 1);
c906108c
SS
1003}
1004
cb0ba49e
MS
1005/* LOCAL FUNCTION
1006
1007 no_shared_libraries -- handle command to explicitly discard symbols
1008 from shared libraries.
1009
1010 DESCRIPTION
1011
1012 Implements the command "nosharedlibrary", which discards symbols
1013 that have been auto-loaded from shared libraries. Symbols from
1014 shared libraries that were added by explicit request of the user
1015 are not discarded. Also called from remote.c. */
1016
c60a7562
MS
1017void
1018no_shared_libraries (char *ignored, int from_tty)
1019{
a3247a22
PP
1020 /* The order of the two routines below is important: clear_solib notifies
1021 the solib_unloaded observers, and some of these observers might need
1022 access to their associated objfiles. Therefore, we can not purge the
1023 solibs' objfiles before clear_solib has been called. */
1024
615b9dba 1025 clear_solib ();
a3247a22 1026 objfile_purge_solibs ();
c60a7562 1027}
c906108c 1028
cf466558 1029static void
f397e303
AC
1030reload_shared_libraries (char *ignored, int from_tty,
1031 struct cmd_list_element *e)
cf466558
KB
1032{
1033 no_shared_libraries (NULL, from_tty);
1034 solib_add (NULL, from_tty, NULL, auto_solib_add);
c8fa6cdd
VP
1035 /* Creating inferior hooks here has two purposes. First, if we reload
1036 shared libraries then the address of solib breakpoint we've computed
1037 previously might be no longer valid. For example, if we forgot to set
1038 solib-absolute-prefix and are setting it right now, then the previous
1039 breakpoint address is plain wrong. Second, installing solib hooks
1040 also implicitly figures were ld.so is and loads symbols for it.
1041 Absent this call, if we've just connected to a target and set
1042 solib-absolute-prefix or solib-search-path, we'll lose all information
1043 about ld.so. */
1044 if (target_has_execution)
1045 {
1046#ifdef SOLIB_CREATE_INFERIOR_HOOK
1047 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
1048#else
1049 solib_create_inferior_hook ();
1050#endif
1051 }
1052 /* We have unloaded and then reloaded debug info for all shared libraries.
1053 However, frames may still reference them, for example a frame's
1054 unwinder might still point of DWARF FDE structures that are now freed.
1055 Reinit frame cache to avoid crashing. */
1056 reinit_frame_cache ();
cf466558
KB
1057}
1058
920d2a44
AC
1059static void
1060show_auto_solib_add (struct ui_file *file, int from_tty,
1061 struct cmd_list_element *c, const char *value)
1062{
1063 fprintf_filtered (file, _("Autoloading of shared library symbols is %s.\n"),
1064 value);
1065}
1066
1067
3a40aaa0
UW
1068/* Handler for library-specific lookup of global symbol NAME in OBJFILE. Call
1069 the library-specific handler if it is installed for the current target. */
1070
1071struct symbol *
1072solib_global_lookup (const struct objfile *objfile,
1073 const char *name,
1074 const char *linkage_name,
21b556f4 1075 const domain_enum domain)
3a40aaa0 1076{
1cf3db46 1077 struct target_so_ops *ops = solib_ops (target_gdbarch);
3a40aaa0 1078
e8a92f7b 1079 if (ops->lookup_lib_global_symbol != NULL)
21b556f4 1080 return ops->lookup_lib_global_symbol (objfile, name, linkage_name, domain);
3a40aaa0
UW
1081 return NULL;
1082}
1083
1084
a78f21af
AC
1085extern initialize_file_ftype _initialize_solib; /* -Wmissing-prototypes */
1086
c906108c 1087void
fba45db2 1088_initialize_solib (void)
c906108c 1089{
fa58ee11
EZ
1090 struct cmd_list_element *c;
1091
66aba65d
MK
1092 solib_data = gdbarch_data_register_pre_init (solib_init);
1093
c906108c 1094 add_com ("sharedlibrary", class_files, sharedlibrary_command,
1bedd215 1095 _("Load shared object library symbols for files matching REGEXP."));
c5aa993b 1096 add_info ("sharedlibrary", info_sharedlibrary_command,
1bedd215 1097 _("Status of loaded shared object libraries."));
c60a7562 1098 add_com ("nosharedlibrary", class_files, no_shared_libraries,
1bedd215 1099 _("Unload all shared object library symbols."));
c906108c 1100
5bf193a2
AC
1101 add_setshow_boolean_cmd ("auto-solib-add", class_support,
1102 &auto_solib_add, _("\
1103Set autoloading of shared library symbols."), _("\
1104Show autoloading of shared library symbols."), _("\
b7209cb4
FF
1105If \"on\", symbols from all shared object libraries will be loaded\n\
1106automatically when the inferior begins execution, when the dynamic linker\n\
1107informs gdb that a new library has been loaded, or when attaching to the\n\
5bf193a2
AC
1108inferior. Otherwise, symbols must be loaded manually, using `sharedlibrary'."),
1109 NULL,
920d2a44 1110 show_auto_solib_add,
5bf193a2 1111 &setlist, &showlist);
c906108c 1112
f822c95b
DJ
1113 add_setshow_filename_cmd ("sysroot", class_support,
1114 &gdb_sysroot, _("\
1115Set an alternate system root."), _("\
1116Show the current system root."), _("\
1117The system root is used to load absolute shared library symbol files.\n\
1118For other (relative) files, you can add directories using\n\
1119`set solib-search-path'."),
f397e303
AC
1120 reload_shared_libraries,
1121 NULL,
1122 &setlist, &showlist);
c906108c 1123
f822c95b
DJ
1124 add_alias_cmd ("solib-absolute-prefix", "sysroot", class_support, 0,
1125 &setlist);
1126 add_alias_cmd ("solib-absolute-prefix", "sysroot", class_support, 0,
1127 &showlist);
030292b7 1128
525226b5
AC
1129 add_setshow_optional_filename_cmd ("solib-search-path", class_support,
1130 &solib_search_path, _("\
1131Set the search path for loading non-absolute shared library symbol files."), _("\
1132Show the search path for loading non-absolute shared library symbol files."), _("\
1133This takes precedence over the environment variables PATH and LD_LIBRARY_PATH."),
1134 reload_shared_libraries,
920d2a44 1135 show_solib_search_path,
525226b5 1136 &setlist, &showlist);
c906108c 1137}