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