* Makefile.in (osfsolib.c, osfsolib.o): Rename to solib-osf.c and
[deliverable/binutils-gdb.git] / gdb / solib.c
CommitLineData
13437d4b 1/* Handle shared libraries for GDB, the GNU Debugger.
b6ba6518
KB
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001
c906108c 4 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c 22
c906108c
SS
23#include "defs.h"
24
c906108c 25#include <sys/types.h>
c906108c 26#include <fcntl.h>
13437d4b 27#include "gdb_string.h"
c906108c
SS
28#include "symtab.h"
29#include "bfd.h"
30#include "symfile.h"
31#include "objfiles.h"
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"
c906108c 42
13437d4b 43#include "solist.h"
c906108c 44
13437d4b 45/* external data declarations */
c906108c 46
13437d4b
KB
47/* FIXME: gdbarch needs to control this variable */
48struct target_so_ops *current_target_so_ops;
23e04971
MS
49
50/* local data declarations */
07cd4b97 51
c906108c 52static struct so_list *so_list_head; /* List of known shared objects */
23e04971 53
c5aa993b 54static int solib_cleanup_queued = 0; /* make_run_cleanup called */
c906108c 55
c906108c
SS
56/* Local function prototypes */
57
a14ed312 58static void do_clear_solib (PTR);
c906108c 59
c906108c
SS
60/* If non-zero, this is a prefix that will be added to the front of the name
61 shared libraries with an absolute filename for loading. */
62static char *solib_absolute_prefix = NULL;
63
64/* If non-empty, this is a search path for loading non-absolute shared library
65 symbol files. This takes precedence over the environment variables PATH
66 and LD_LIBRARY_PATH. */
67static char *solib_search_path = NULL;
68
e4f7b8c8
MS
69/*
70
71 GLOBAL FUNCTION
72
73 solib_open -- Find a shared library file and open it.
74
75 SYNOPSIS
76
77 int solib_open (char *in_patname, char **found_pathname);
78
79 DESCRIPTION
80
81 Global variable SOLIB_ABSOLUTE_PREFIX is used as a prefix directory
82 to search for shared libraries if they have an absolute path.
83
84 Global variable SOLIB_SEARCH_PATH is used as a prefix directory
85 (or set of directories, as in LD_LIBRARY_PATH) to search for all
86 shared libraries if not found in SOLIB_ABSOLUTE_PREFIX.
87
88 Search order:
89 * If path is absolute, look in SOLIB_ABSOLUTE_PREFIX.
b21f0843 90 * If path is absolute or relative, look for it literally (unmodified).
e4f7b8c8
MS
91 * Look in SOLIB_SEARCH_PATH.
92 * Look in inferior's $PATH.
93 * Look in inferior's $LD_LIBRARY_PATH.
94
95 RETURNS
b21f0843 96
e4f7b8c8
MS
97 file handle for opened solib, or -1 for failure. */
98
99int
100solib_open (char *in_pathname, char **found_pathname)
101{
102 int found_file = -1;
103 char *temp_pathname = NULL;
104
b21f0843 105 if (strchr (in_pathname, SLASH_CHAR))
e4f7b8c8 106 {
b21f0843 107 if (! ROOTED_P (in_pathname) || solib_absolute_prefix == NULL)
a7ec76fe
KB
108 temp_pathname = in_pathname;
109 else
110 {
b21f0843 111 int prefix_len = strlen (solib_absolute_prefix);
a7ec76fe
KB
112
113 /* Remove trailing slashes from absolute prefix. */
b21f0843
MK
114 while (prefix_len > 0
115 && SLASH_P (solib_absolute_prefix[prefix_len - 1]))
a7ec76fe
KB
116 prefix_len--;
117
118 /* Cat the prefixed pathname together. */
119 temp_pathname = alloca (prefix_len + strlen (in_pathname) + 1);
120 strncpy (temp_pathname, solib_absolute_prefix, prefix_len);
121 temp_pathname[prefix_len] = '\0';
122 strcat (temp_pathname, in_pathname);
a7ec76fe 123 }
b21f0843 124
e4f7b8c8
MS
125 /* Now see if we can open it. */
126 found_file = open (temp_pathname, O_RDONLY, 0);
127 }
128
129 /* If not found, next search the solib_search_path (if any). */
130 if (found_file < 0 && solib_search_path != NULL)
131 found_file = openp (solib_search_path,
132 1, in_pathname, O_RDONLY, 0, &temp_pathname);
133
134 /* If not found, next search the inferior's $PATH environment variable. */
135 if (found_file < 0 && solib_search_path != NULL)
136 found_file = openp (get_in_environ (inferior_environ, "PATH"),
137 1, in_pathname, O_RDONLY, 0, &temp_pathname);
138
139 /* If not found, next search the inferior's $LD_LIBRARY_PATH
140 environment variable. */
141 if (found_file < 0 && solib_search_path != NULL)
142 found_file = openp (get_in_environ (inferior_environ, "LD_LIBRARY_PATH"),
143 1, in_pathname, O_RDONLY, 0, &temp_pathname);
144
145 /* Done. If not found, tough luck. Return found_file and
146 (optionally) found_pathname. */
a7ec76fe 147 if (found_pathname != NULL && temp_pathname != NULL)
4fcf66da 148 *found_pathname = xstrdup (temp_pathname);
e4f7b8c8
MS
149 return found_file;
150}
151
152
c906108c
SS
153/*
154
c5aa993b 155 LOCAL FUNCTION
c906108c 156
c5aa993b 157 solib_map_sections -- open bfd and build sections for shared lib
c906108c 158
c5aa993b 159 SYNOPSIS
c906108c 160
c5aa993b 161 static int solib_map_sections (struct so_list *so)
c906108c 162
c5aa993b 163 DESCRIPTION
c906108c 164
c5aa993b
JM
165 Given a pointer to one of the shared objects in our list
166 of mapped objects, use the recorded name to open a bfd
167 descriptor for the object, build a section table, and then
168 relocate all the section addresses by the base address at
169 which the shared object was mapped.
c906108c 170
c5aa993b 171 FIXMES
c906108c 172
c5aa993b
JM
173 In most (all?) cases the shared object file name recorded in the
174 dynamic linkage tables will be a fully qualified pathname. For
175 cases where it isn't, do we really mimic the systems search
176 mechanism correctly in the below code (particularly the tilde
177 expansion stuff?).
c906108c
SS
178 */
179
180static int
fba45db2 181solib_map_sections (PTR arg)
c906108c
SS
182{
183 struct so_list *so = (struct so_list *) arg; /* catch_errors bogon */
184 char *filename;
185 char *scratch_pathname;
186 int scratch_chan;
187 struct section_table *p;
188 struct cleanup *old_chain;
189 bfd *abfd;
c5aa993b
JM
190
191 filename = tilde_expand (so->so_name);
192
b8c9b27d 193 old_chain = make_cleanup (xfree, filename);
e4f7b8c8 194 scratch_chan = solib_open (filename, &scratch_pathname);
c906108c 195
c906108c
SS
196 if (scratch_chan < 0)
197 {
13437d4b
KB
198 perror_with_name (filename);
199 }
104c1213 200
e4f7b8c8 201 /* Leave scratch_pathname allocated. abfd->name will point to it. */
13437d4b
KB
202 abfd = bfd_fdopenr (scratch_pathname, gnutarget, scratch_chan);
203 if (!abfd)
23e04971 204 {
13437d4b
KB
205 close (scratch_chan);
206 error ("Could not open `%s' as an executable file: %s",
207 scratch_pathname, bfd_errmsg (bfd_get_error ()));
208 }
e4f7b8c8 209
13437d4b
KB
210 /* Leave bfd open, core_xfer_memory and "info files" need it. */
211 so->abfd = abfd;
212 abfd->cacheable = true;
23e04971 213
e4f7b8c8
MS
214 /* copy full path name into so_name, so that later symbol_file_add
215 can find it */
13437d4b
KB
216 if (strlen (scratch_pathname) >= SO_NAME_MAX_PATH_SIZE)
217 error ("Full path name length of shared library exceeds SO_NAME_MAX_PATH_SIZE in so_list structure.");
218 strcpy (so->so_name, scratch_pathname);
23e04971 219
13437d4b
KB
220 if (!bfd_check_format (abfd, bfd_object))
221 {
222 error ("\"%s\": not in executable format: %s.",
223 scratch_pathname, bfd_errmsg (bfd_get_error ()));
23e04971 224 }
13437d4b 225 if (build_section_table (abfd, &so->sections, &so->sections_end))
23e04971 226 {
13437d4b
KB
227 error ("Can't find the file sections in `%s': %s",
228 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
23e04971 229 }
104c1213 230
13437d4b 231 for (p = so->sections; p < so->sections_end; p++)
104c1213 232 {
13437d4b
KB
233 /* Relocate the section binding addresses as recorded in the shared
234 object's file by the base address to which the object was actually
235 mapped. */
749499cb 236 TARGET_SO_RELOCATE_SECTION_ADDRESSES (so, p);
13437d4b
KB
237 if (STREQ (p->the_bfd_section->name, ".text"))
238 {
239 so->textsection = p;
240 }
104c1213
JM
241 }
242
13437d4b
KB
243 /* Free the file names, close the file now. */
244 do_cleanups (old_chain);
104c1213 245
13437d4b 246 return (1);
104c1213 247}
c906108c 248
07cd4b97 249/* LOCAL FUNCTION
c906108c 250
07cd4b97 251 free_so --- free a `struct so_list' object
c906108c 252
c5aa993b 253 SYNOPSIS
c906108c 254
07cd4b97 255 void free_so (struct so_list *so)
c906108c 256
c5aa993b 257 DESCRIPTION
c906108c 258
07cd4b97
JB
259 Free the storage associated with the `struct so_list' object SO.
260 If we have opened a BFD for SO, close it.
c906108c 261
07cd4b97
JB
262 The caller is responsible for removing SO from whatever list it is
263 a member of. If we have placed SO's sections in some target's
264 section table, the caller is responsible for removing them.
c906108c 265
07cd4b97
JB
266 This function doesn't mess with objfiles at all. If there is an
267 objfile associated with SO that needs to be removed, the caller is
268 responsible for taking care of that. */
269
13437d4b 270void
07cd4b97 271free_so (struct so_list *so)
c906108c 272{
07cd4b97 273 char *bfd_filename = 0;
c5aa993b 274
07cd4b97 275 if (so->sections)
b8c9b27d 276 xfree (so->sections);
07cd4b97
JB
277
278 if (so->abfd)
c906108c 279 {
07cd4b97
JB
280 bfd_filename = bfd_get_filename (so->abfd);
281 if (! bfd_close (so->abfd))
282 warning ("cannot close \"%s\": %s",
283 bfd_filename, bfd_errmsg (bfd_get_error ()));
c906108c 284 }
07cd4b97
JB
285
286 if (bfd_filename)
b8c9b27d 287 xfree (bfd_filename);
07cd4b97 288
13437d4b 289 TARGET_SO_FREE_SO (so);
07cd4b97 290
b8c9b27d 291 xfree (so);
c906108c
SS
292}
293
07cd4b97 294
c906108c
SS
295/* A small stub to get us past the arg-passing pinhole of catch_errors. */
296
297static int
fba45db2 298symbol_add_stub (PTR arg)
c906108c 299{
07cd4b97 300 register struct so_list *so = (struct so_list *) arg; /* catch_errs bogon */
62557bbc 301 struct section_addr_info *sap;
c906108c 302
07cd4b97
JB
303 /* Have we already loaded this shared object? */
304 ALL_OBJFILES (so->objfile)
305 {
306 if (strcmp (so->objfile->name, so->so_name) == 0)
307 return 1;
308 }
309
62557bbc
KB
310 sap = build_section_addr_info_from_section_table (so->sections,
311 so->sections_end);
e7cf9df1 312
62557bbc
KB
313 so->objfile = symbol_file_add (so->so_name, so->from_tty,
314 sap, 0, OBJF_SHARED);
315 free_section_addr_info (sap);
c906108c 316
07cd4b97 317 return (1);
c906108c
SS
318}
319
c906108c 320
07cd4b97 321/* LOCAL FUNCTION
c906108c 322
105b175f 323 update_solib_list --- synchronize GDB's shared object list with inferior's
c906108c 324
c5aa993b 325 SYNOPSIS
c906108c 326
105b175f 327 void update_solib_list (int from_tty, struct target_ops *TARGET)
c906108c 328
07cd4b97 329 Extract the list of currently loaded shared objects from the
105b175f
JB
330 inferior, and compare it with the list of shared objects currently
331 in GDB's so_list_head list. Edit so_list_head to bring it in sync
332 with the inferior's new list.
c906108c 333
105b175f
JB
334 If we notice that the inferior has unloaded some shared objects,
335 free any symbolic info GDB had read about those shared objects.
336
337 Don't load symbolic info for any new shared objects; just add them
338 to the list, and leave their symbols_loaded flag clear.
07cd4b97
JB
339
340 If FROM_TTY is non-null, feel free to print messages about what
341 we're doing.
c906108c 342
07cd4b97
JB
343 If TARGET is non-null, add the sections of all new shared objects
344 to TARGET's section table. Note that this doesn't remove any
345 sections for shared objects that have been unloaded, and it
346 doesn't check to see if the new shared objects are already present in
347 the section table. But we only use this for core files and
348 processes we've just attached to, so that's okay. */
c906108c 349
07cd4b97 350void
105b175f 351update_solib_list (int from_tty, struct target_ops *target)
07cd4b97 352{
13437d4b 353 struct so_list *inferior = TARGET_SO_CURRENT_SOS ();
07cd4b97
JB
354 struct so_list *gdb, **gdb_link;
355
104c1213
JM
356 /* If we are attaching to a running process for which we
357 have not opened a symbol file, we may be able to get its
358 symbols now! */
359 if (attach_flag &&
360 symfile_objfile == NULL)
13437d4b 361 catch_errors (TARGET_SO_OPEN_SYMBOL_FILE_OBJECT, (PTR) &from_tty,
104c1213
JM
362 "Error reading attached process's symbol file.\n",
363 RETURN_MASK_ALL);
364
07cd4b97
JB
365 /* Since this function might actually add some elements to the
366 so_list_head list, arrange for it to be cleaned up when
367 appropriate. */
368 if (!solib_cleanup_queued)
369 {
370 make_run_cleanup (do_clear_solib, NULL);
371 solib_cleanup_queued = 1;
c906108c 372 }
c5aa993b 373
07cd4b97
JB
374 /* GDB and the inferior's dynamic linker each maintain their own
375 list of currently loaded shared objects; we want to bring the
376 former in sync with the latter. Scan both lists, seeing which
377 shared objects appear where. There are three cases:
378
379 - A shared object appears on both lists. This means that GDB
105b175f
JB
380 knows about it already, and it's still loaded in the inferior.
381 Nothing needs to happen.
07cd4b97
JB
382
383 - A shared object appears only on GDB's list. This means that
105b175f
JB
384 the inferior has unloaded it. We should remove the shared
385 object from GDB's tables.
07cd4b97
JB
386
387 - A shared object appears only on the inferior's list. This
105b175f
JB
388 means that it's just been loaded. We should add it to GDB's
389 tables.
07cd4b97
JB
390
391 So we walk GDB's list, checking each entry to see if it appears
392 in the inferior's list too. If it does, no action is needed, and
393 we remove it from the inferior's list. If it doesn't, the
394 inferior has unloaded it, and we remove it from GDB's list. By
395 the time we're done walking GDB's list, the inferior's list
396 contains only the new shared objects, which we then add. */
397
398 gdb = so_list_head;
399 gdb_link = &so_list_head;
400 while (gdb)
c906108c 401 {
07cd4b97
JB
402 struct so_list *i = inferior;
403 struct so_list **i_link = &inferior;
404
405 /* Check to see whether the shared object *gdb also appears in
406 the inferior's current list. */
407 while (i)
c906108c 408 {
07cd4b97
JB
409 if (! strcmp (gdb->so_original_name, i->so_original_name))
410 break;
411
412 i_link = &i->next;
413 i = *i_link;
c906108c 414 }
c5aa993b 415
07cd4b97
JB
416 /* If the shared object appears on the inferior's list too, then
417 it's still loaded, so we don't need to do anything. Delete
418 it from the inferior's list, and leave it on GDB's list. */
419 if (i)
c906108c 420 {
07cd4b97 421 *i_link = i->next;
07cd4b97
JB
422 free_so (i);
423 gdb_link = &gdb->next;
424 gdb = *gdb_link;
425 }
426
427 /* If it's not on the inferior's list, remove it from GDB's tables. */
428 else
429 {
430 *gdb_link = gdb->next;
07cd4b97
JB
431
432 /* Unless the user loaded it explicitly, free SO's objfile. */
e8930304 433 if (gdb->objfile && ! (gdb->objfile->flags & OBJF_USERLOADED))
07cd4b97
JB
434 free_objfile (gdb->objfile);
435
436 /* Some targets' section tables might be referring to
437 sections from so->abfd; remove them. */
438 remove_target_sections (gdb->abfd);
439
440 free_so (gdb);
441 gdb = *gdb_link;
c906108c
SS
442 }
443 }
c5aa993b 444
07cd4b97
JB
445 /* Now the inferior's list contains only shared objects that don't
446 appear in GDB's list --- those that are newly loaded. Add them
e8930304 447 to GDB's shared object list. */
07cd4b97 448 if (inferior)
c906108c 449 {
07cd4b97
JB
450 struct so_list *i;
451
452 /* Add the new shared objects to GDB's list. */
453 *gdb_link = inferior;
454
e8930304 455 /* Fill in the rest of each of the `struct so_list' nodes. */
07cd4b97 456 for (i = inferior; i; i = i->next)
c906108c 457 {
07cd4b97
JB
458 i->from_tty = from_tty;
459
460 /* Fill in the rest of the `struct so_list' node. */
461 catch_errors (solib_map_sections, i,
462 "Error while mapping shared library sections:\n",
463 RETURN_MASK_ALL);
07cd4b97
JB
464 }
465
466 /* If requested, add the shared objects' sections to the the
467 TARGET's section table. */
468 if (target)
469 {
470 int new_sections;
471
472 /* Figure out how many sections we'll need to add in total. */
473 new_sections = 0;
474 for (i = inferior; i; i = i->next)
475 new_sections += (i->sections_end - i->sections);
476
477 if (new_sections > 0)
c906108c 478 {
07cd4b97
JB
479 int space = target_resize_to_sections (target, new_sections);
480
481 for (i = inferior; i; i = i->next)
482 {
483 int count = (i->sections_end - i->sections);
484 memcpy (target->to_sections + space,
485 i->sections,
486 count * sizeof (i->sections[0]));
487 space += count;
488 }
c906108c
SS
489 }
490 }
e8930304 491 }
105b175f
JB
492}
493
494
495/* GLOBAL FUNCTION
496
497 solib_add -- read in symbol info for newly added shared libraries
498
499 SYNOPSIS
500
501 void solib_add (char *pattern, int from_tty, struct target_ops *TARGET)
502
503 DESCRIPTION
504
505 Read in symbolic information for any shared objects whose names
506 match PATTERN. (If we've already read a shared object's symbol
507 info, leave it alone.) If PATTERN is zero, read them all.
508
509 FROM_TTY and TARGET are as described for update_solib_list, above. */
510
511void
512solib_add (char *pattern, int from_tty, struct target_ops *target)
513{
514 struct so_list *gdb;
515
516 if (pattern)
517 {
518 char *re_err = re_comp (pattern);
519
520 if (re_err)
521 error ("Invalid regexp: %s", re_err);
522 }
523
524 update_solib_list (from_tty, target);
c906108c 525
105b175f
JB
526 /* Walk the list of currently loaded shared libraries, and read
527 symbols for any that match the pattern --- or any whose symbols
528 aren't already loaded, if no pattern was given. */
e8930304
JB
529 {
530 int any_matches = 0;
531 int loaded_any_symbols = 0;
c906108c 532
e8930304
JB
533 for (gdb = so_list_head; gdb; gdb = gdb->next)
534 if (! pattern || re_exec (gdb->so_name))
535 {
536 any_matches = 1;
537
538 if (gdb->symbols_loaded)
539 {
540 if (from_tty)
541 printf_unfiltered ("Symbols already loaded for %s\n",
542 gdb->so_name);
543 }
544 else
545 {
546 if (catch_errors
547 (symbol_add_stub, gdb,
548 "Error while reading shared library symbols:\n",
549 RETURN_MASK_ALL))
550 {
551 if (from_tty)
552 printf_unfiltered ("Loaded symbols for %s\n",
553 gdb->so_name);
554 gdb->symbols_loaded = 1;
555 loaded_any_symbols = 1;
556 }
557 }
558 }
559
560 if (from_tty && pattern && ! any_matches)
561 printf_unfiltered
562 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
563
564 if (loaded_any_symbols)
565 {
566 /* Getting new symbols may change our opinion about what is
567 frameless. */
568 reinit_frame_cache ();
569
13437d4b 570 TARGET_SO_SPECIAL_SYMBOL_HANDLING ();
e8930304
JB
571 }
572 }
c906108c
SS
573}
574
07cd4b97 575
c906108c
SS
576/*
577
c5aa993b 578 LOCAL FUNCTION
c906108c 579
c5aa993b 580 info_sharedlibrary_command -- code for "info sharedlibrary"
c906108c 581
c5aa993b 582 SYNOPSIS
c906108c 583
c5aa993b 584 static void info_sharedlibrary_command ()
c906108c 585
c5aa993b 586 DESCRIPTION
c906108c 587
c5aa993b
JM
588 Walk through the shared library list and print information
589 about each attached library.
590 */
c906108c
SS
591
592static void
fba45db2 593info_sharedlibrary_command (char *ignore, int from_tty)
c906108c 594{
c5aa993b 595 register struct so_list *so = NULL; /* link map state variable */
c906108c
SS
596 int header_done = 0;
597 int addr_width;
598 char *addr_fmt;
f5b8946c 599 int arch_size;
c906108c
SS
600
601 if (exec_bfd == NULL)
602 {
4ce44c66 603 printf_unfiltered ("No executable file.\n");
c906108c
SS
604 return;
605 }
606
6ceadee4 607 arch_size = bfd_get_arch_size (exec_bfd);
f5b8946c
MS
608 /* Default to 32-bit in case of failure (non-elf). */
609 if (arch_size == 32 || arch_size == -1)
610 {
611 addr_width = 8 + 4;
612 addr_fmt = "08l";
613 }
614 else if (arch_size == 64)
615 {
616 addr_width = 16 + 4;
617 addr_fmt = "016l";
618 }
7f7e9482
AC
619 else
620 {
8e65ff28
AC
621 internal_error (__FILE__, __LINE__,
622 "bfd_get_arch_size() returned unknown size %d",
623 arch_size);
7f7e9482 624 }
c906108c 625
105b175f 626 update_solib_list (from_tty, 0);
07cd4b97
JB
627
628 for (so = so_list_head; so; so = so->next)
c906108c 629 {
c5aa993b 630 if (so->so_name[0])
c906108c
SS
631 {
632 if (!header_done)
633 {
c5aa993b
JM
634 printf_unfiltered ("%-*s%-*s%-12s%s\n", addr_width, "From",
635 addr_width, "To", "Syms Read",
636 "Shared Object Library");
c906108c
SS
637 header_done++;
638 }
639
640 printf_unfiltered ("%-*s", addr_width,
749499cb 641 so->textsection != NULL
a43ad351
MH
642 ? longest_local_hex_string_custom (
643 (LONGEST) so->textsection->addr,
749499cb
KB
644 addr_fmt)
645 : "");
c906108c 646 printf_unfiltered ("%-*s", addr_width,
749499cb 647 so->textsection != NULL
a43ad351
MH
648 ? longest_local_hex_string_custom (
649 (LONGEST) so->textsection->endaddr,
749499cb
KB
650 addr_fmt)
651 : "");
c5aa993b
JM
652 printf_unfiltered ("%-12s", so->symbols_loaded ? "Yes" : "No");
653 printf_unfiltered ("%s\n", so->so_name);
c906108c
SS
654 }
655 }
656 if (so_list_head == NULL)
657 {
c5aa993b 658 printf_unfiltered ("No shared libraries loaded at this time.\n");
c906108c
SS
659 }
660}
661
662/*
663
c5aa993b 664 GLOBAL FUNCTION
c906108c 665
c5aa993b 666 solib_address -- check to see if an address is in a shared lib
c906108c 667
c5aa993b 668 SYNOPSIS
c906108c 669
c5aa993b 670 char * solib_address (CORE_ADDR address)
c906108c 671
c5aa993b 672 DESCRIPTION
c906108c 673
c5aa993b
JM
674 Provides a hook for other gdb routines to discover whether or
675 not a particular address is within the mapped address space of
749499cb 676 a shared library.
c906108c 677
c5aa993b
JM
678 For example, this routine is called at one point to disable
679 breakpoints which are in shared libraries that are not currently
680 mapped in.
c906108c
SS
681 */
682
683char *
fba45db2 684solib_address (CORE_ADDR address)
c906108c 685{
c5aa993b
JM
686 register struct so_list *so = 0; /* link map state variable */
687
07cd4b97 688 for (so = so_list_head; so; so = so->next)
c906108c 689 {
749499cb
KB
690 struct section_table *p;
691
692 for (p = so->sections; p < so->sections_end; p++)
693 {
694 if (p->addr <= address && address < p->endaddr)
695 return (so->so_name);
696 }
c906108c 697 }
07cd4b97 698
c906108c
SS
699 return (0);
700}
701
702/* Called by free_all_symtabs */
703
c5aa993b 704void
fba45db2 705clear_solib (void)
c906108c 706{
085dd6e6
JM
707 /* This function is expected to handle ELF shared libraries. It is
708 also used on Solaris, which can run either ELF or a.out binaries
709 (for compatibility with SunOS 4), both of which can use shared
710 libraries. So we don't know whether we have an ELF executable or
711 an a.out executable until the user chooses an executable file.
712
713 ELF shared libraries don't get mapped into the address space
714 until after the program starts, so we'd better not try to insert
715 breakpoints in them immediately. We have to wait until the
716 dynamic linker has loaded them; we'll hit a bp_shlib_event
717 breakpoint (look for calls to create_solib_event_breakpoint) when
718 it's ready.
719
720 SunOS shared libraries seem to be different --- they're present
721 as soon as the process begins execution, so there's no need to
722 put off inserting breakpoints. There's also nowhere to put a
723 bp_shlib_event breakpoint, so if we put it off, we'll never get
724 around to it.
725
726 So: disable breakpoints only if we're using ELF shared libs. */
727 if (exec_bfd != NULL
728 && bfd_get_flavour (exec_bfd) != bfd_target_aout_flavour)
729 disable_breakpoints_in_shlibs (1);
730
c906108c
SS
731 while (so_list_head)
732 {
07cd4b97
JB
733 struct so_list *so = so_list_head;
734 so_list_head = so->next;
735 free_so (so);
c906108c 736 }
07cd4b97 737
13437d4b 738 TARGET_SO_CLEAR_SOLIB ();
c906108c
SS
739}
740
741static void
fba45db2 742do_clear_solib (PTR dummy)
c906108c
SS
743{
744 solib_cleanup_queued = 0;
745 clear_solib ();
746}
747
13437d4b 748/* GLOBAL FUNCTION
c5aa993b
JM
749
750 solib_create_inferior_hook -- shared library startup support
751
752 SYNOPSIS
753
754 void solib_create_inferior_hook()
755
756 DESCRIPTION
757
758 When gdb starts up the inferior, it nurses it along (through the
759 shell) until it is ready to execute it's first instruction. At this
760 point, this function gets called via expansion of the macro
13437d4b 761 SOLIB_CREATE_INFERIOR_HOOK. */
c5aa993b
JM
762
763void
fba45db2 764solib_create_inferior_hook (void)
c906108c 765{
13437d4b 766 TARGET_SO_SOLIB_CREATE_INFERIOR_HOOK ();
c906108c
SS
767}
768
d7fa2ae2
KB
769/* GLOBAL FUNCTION
770
771 in_solib_dynsym_resolve_code -- check to see if an address is in
772 dynamic loader's dynamic symbol
773 resolution code
774
775 SYNOPSIS
776
777 int in_solib_dynsym_resolve_code (CORE_ADDR pc)
778
779 DESCRIPTION
780
781 Determine if PC is in the dynamic linker's symbol resolution
782 code. Return 1 if so, 0 otherwise.
783*/
784
785int
786in_solib_dynsym_resolve_code (CORE_ADDR pc)
787{
788 return TARGET_SO_IN_DYNSYM_RESOLVE_CODE (pc);
789}
c906108c
SS
790
791/*
792
c5aa993b 793 LOCAL FUNCTION
c906108c 794
c5aa993b 795 sharedlibrary_command -- handle command to explicitly add library
c906108c 796
c5aa993b 797 SYNOPSIS
c906108c 798
c5aa993b 799 static void sharedlibrary_command (char *args, int from_tty)
c906108c 800
c5aa993b 801 DESCRIPTION
c906108c 802
c5aa993b 803 */
c906108c
SS
804
805static void
fba45db2 806sharedlibrary_command (char *args, int from_tty)
c906108c
SS
807{
808 dont_repeat ();
809 solib_add (args, from_tty, (struct target_ops *) 0);
810}
811
cb0ba49e
MS
812/* LOCAL FUNCTION
813
814 no_shared_libraries -- handle command to explicitly discard symbols
815 from shared libraries.
816
817 DESCRIPTION
818
819 Implements the command "nosharedlibrary", which discards symbols
820 that have been auto-loaded from shared libraries. Symbols from
821 shared libraries that were added by explicit request of the user
822 are not discarded. Also called from remote.c. */
823
c60a7562
MS
824void
825no_shared_libraries (char *ignored, int from_tty)
826{
827 objfile_purge_solibs ();
828 do_clear_solib (NULL);
829}
c906108c
SS
830
831void
fba45db2 832_initialize_solib (void)
c906108c 833{
fa58ee11
EZ
834 struct cmd_list_element *c;
835
c906108c
SS
836 add_com ("sharedlibrary", class_files, sharedlibrary_command,
837 "Load shared object library symbols for files matching REGEXP.");
c5aa993b 838 add_info ("sharedlibrary", info_sharedlibrary_command,
c906108c 839 "Status of loaded shared object libraries.");
c60a7562 840 add_com ("nosharedlibrary", class_files, no_shared_libraries,
e89a4777 841 "Unload all shared object library symbols.");
c906108c
SS
842
843 add_show_from_set
844 (add_set_cmd ("auto-solib-add", class_support, var_zinteger,
845 (char *) &auto_solib_add,
846 "Set autoloading of shared library symbols.\n\
847If nonzero, symbols from all shared object libraries will be loaded\n\
848automatically when the inferior begins execution or when the dynamic linker\n\
849informs gdb that a new library has been loaded. Otherwise, symbols\n\
850must be loaded manually, using `sharedlibrary'.",
851 &setlist),
852 &showlist);
853
fa58ee11
EZ
854 c = add_set_cmd ("solib-absolute-prefix", class_support, var_filename,
855 (char *) &solib_absolute_prefix,
856 "Set prefix for loading absolute shared library symbol files.\n\
c906108c 857For other (relative) files, you can add values using `set solib-search-path'.",
fa58ee11
EZ
858 &setlist);
859 add_show_from_set (c, &showlist);
860 c->completer = filename_completer;
c906108c 861
fa58ee11
EZ
862 c = add_set_cmd ("solib-search-path", class_support, var_string,
863 (char *) &solib_search_path,
864 "Set the search path for loading non-absolute shared library symbol files.\n\
865This takes precedence over the environment variables PATH and LD_LIBRARY_PATH.",
866 &setlist);
867 add_show_from_set (c, &showlist);
868 c->completer = filename_completer;
c906108c 869}
This page took 0.17072 seconds and 4 git commands to generate.