Updated copyright notices for most files.
[binutils-gdb.git] / gdb / solib.c
1 /* Handle shared libraries for GDB, the GNU Debugger.
2
3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2008
5 Free Software Foundation, Inc.
6
7 This file is part of GDB.
8
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
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
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
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23
24 #include <sys/types.h>
25 #include <fcntl.h>
26 #include "gdb_string.h"
27 #include "symtab.h"
28 #include "bfd.h"
29 #include "symfile.h"
30 #include "objfiles.h"
31 #include "exceptions.h"
32 #include "gdbcore.h"
33 #include "command.h"
34 #include "target.h"
35 #include "frame.h"
36 #include "gdb_regex.h"
37 #include "inferior.h"
38 #include "environ.h"
39 #include "language.h"
40 #include "gdbcmd.h"
41 #include "completer.h"
42 #include "filenames.h" /* for DOSish file names */
43 #include "exec.h"
44 #include "solist.h"
45 #include "observer.h"
46 #include "readline/readline.h"
47
48 /* Architecture-specific operations. */
49
50 /* Per-architecture data key. */
51 static struct gdbarch_data *solib_data;
52
53 static void *
54 solib_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
63 static struct target_so_ops *
64 solib_ops (struct gdbarch *gdbarch)
65 {
66 struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data);
67 return *ops;
68 }
69
70 /* Set the solib operations for GDBARCH to NEW_OPS. */
71
72 void
73 set_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 }
78 \f
79
80 /* external data declarations */
81
82 /* FIXME: gdbarch needs to control this variable, or else every
83 configuration needs to call set_solib_ops. */
84 struct target_so_ops *current_target_so_ops;
85
86 /* local data declarations */
87
88 static struct so_list *so_list_head; /* List of known shared objects */
89
90 /* Local function prototypes */
91
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. */
95 static char *solib_search_path = NULL;
96 static void
97 show_solib_search_path (struct ui_file *file, int from_tty,
98 struct cmd_list_element *c, const char *value)
99 {
100 fprintf_filtered (file, _("\
101 The search path for loading non-absolute shared library symbol files is %s.\n"),
102 value);
103 }
104
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
117 Global variable GDB_SYSROOT is used as a prefix directory
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
122 shared libraries if not found in GDB_SYSROOT.
123
124 Search algorithm:
125 * If there is a gdb_sysroot and path is absolute:
126 * Search for gdb_sysroot/path.
127 * else
128 * Look for it literally (unmodified).
129 * Look in SOLIB_SEARCH_PATH.
130 * If available, use target defined search function.
131 * If gdb_sysroot is NOT set, perform the following two searches:
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
136 * machines since gdb_sysroot will almost always be set.
137
138 RETURNS
139
140 file handle for opened solib, or -1 for failure. */
141
142 int
143 solib_open (char *in_pathname, char **found_pathname)
144 {
145 struct target_so_ops *ops = solib_ops (current_gdbarch);
146 int found_file = -1;
147 char *temp_pathname = NULL;
148 char *p = in_pathname;
149 int gdb_sysroot_is_empty;
150
151 gdb_sysroot_is_empty = (gdb_sysroot == NULL || *gdb_sysroot == 0);
152
153 if (! IS_ABSOLUTE_PATH (in_pathname) || gdb_sysroot_is_empty)
154 temp_pathname = in_pathname;
155 else
156 {
157 int prefix_len = strlen (gdb_sysroot);
158
159 /* Remove trailing slashes from absolute prefix. */
160 while (prefix_len > 0
161 && IS_DIR_SEPARATOR (gdb_sysroot[prefix_len - 1]))
162 prefix_len--;
163
164 /* Cat the prefixed pathname together. */
165 temp_pathname = alloca (prefix_len + strlen (in_pathname) + 1);
166 strncpy (temp_pathname, gdb_sysroot, prefix_len);
167 temp_pathname[prefix_len] = '\0';
168 strcat (temp_pathname, in_pathname);
169 }
170
171 /* Now see if we can open it. */
172 found_file = open (temp_pathname, O_RDONLY | O_BINARY, 0);
173
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
185 /* If the search in gdb_sysroot failed, and the path name is
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
200 /* If not found, search the solib_search_path (if any). */
201 if (found_file < 0 && solib_search_path != NULL)
202 found_file = openp (solib_search_path, OPF_TRY_CWD_FIRST,
203 in_pathname, O_RDONLY | O_BINARY, 0, &temp_pathname);
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)
209 found_file = openp (solib_search_path, OPF_TRY_CWD_FIRST,
210 lbasename (in_pathname), O_RDONLY | O_BINARY, 0,
211 &temp_pathname);
212
213 /* If not found, try to use target supplied solib search method */
214 if (found_file < 0 && ops->find_and_open_solib)
215 found_file = ops->find_and_open_solib (in_pathname, O_RDONLY | O_BINARY,
216 &temp_pathname);
217
218 /* If not found, next search the inferior's $PATH environment variable. */
219 if (found_file < 0 && gdb_sysroot_is_empty)
220 found_file = openp (get_in_environ (inferior_environ, "PATH"),
221 OPF_TRY_CWD_FIRST, in_pathname, O_RDONLY | O_BINARY, 0,
222 &temp_pathname);
223
224 /* If not found, next search the inferior's $LD_LIBRARY_PATH
225 environment variable. */
226 if (found_file < 0 && gdb_sysroot_is_empty)
227 found_file = openp (get_in_environ (inferior_environ, "LD_LIBRARY_PATH"),
228 OPF_TRY_CWD_FIRST, in_pathname, O_RDONLY | O_BINARY, 0,
229 &temp_pathname);
230
231 /* Done. If not found, tough luck. Return found_file and
232 (optionally) found_pathname. */
233 if (temp_pathname)
234 {
235 if (found_pathname != NULL)
236 *found_pathname = temp_pathname;
237 else
238 xfree (temp_pathname);
239 }
240 return found_file;
241 }
242
243
244 /*
245
246 LOCAL FUNCTION
247
248 solib_map_sections -- open bfd and build sections for shared lib
249
250 SYNOPSIS
251
252 static int solib_map_sections (struct so_list *so)
253
254 DESCRIPTION
255
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.
261
262 FIXMES
263
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?).
269 */
270
271 static int
272 solib_map_sections (void *arg)
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;
281
282 filename = tilde_expand (so->so_name);
283
284 old_chain = make_cleanup (xfree, filename);
285 scratch_chan = solib_open (filename, &scratch_pathname);
286
287 if (scratch_chan < 0)
288 {
289 perror_with_name (filename);
290 }
291
292 /* Leave scratch_pathname allocated. abfd->name will point to it. */
293 abfd = bfd_fopen (scratch_pathname, gnutarget, FOPEN_RB, scratch_chan);
294 if (!abfd)
295 {
296 close (scratch_chan);
297 error (_("Could not open `%s' as an executable file: %s"),
298 scratch_pathname, bfd_errmsg (bfd_get_error ()));
299 }
300
301 /* Leave bfd open, core_xfer_memory and "info files" need it. */
302 so->abfd = abfd;
303 bfd_set_cacheable (abfd, 1);
304
305 /* copy full path name into so_name, so that later symbol_file_add
306 can find it */
307 if (strlen (scratch_pathname) >= SO_NAME_MAX_PATH_SIZE)
308 error (_("Full path name length of shared library exceeds SO_NAME_MAX_PATH_SIZE in so_list structure."));
309 strcpy (so->so_name, scratch_pathname);
310
311 if (!bfd_check_format (abfd, bfd_object))
312 {
313 error (_("\"%s\": not in executable format: %s."),
314 scratch_pathname, bfd_errmsg (bfd_get_error ()));
315 }
316 if (build_section_table (abfd, &so->sections, &so->sections_end))
317 {
318 error (_("Can't find the file sections in `%s': %s"),
319 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
320 }
321
322 for (p = so->sections; p < so->sections_end; p++)
323 {
324 struct target_so_ops *ops = solib_ops (current_gdbarch);
325
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. */
329 ops->relocate_section_addresses (so, p);
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)
336 {
337 so->addr_low = p->addr;
338 so->addr_high = p->endaddr;
339 }
340 }
341
342 /* Free the file names, close the file now. */
343 do_cleanups (old_chain);
344
345 return (1);
346 }
347
348 /* LOCAL FUNCTION
349
350 free_so --- free a `struct so_list' object
351
352 SYNOPSIS
353
354 void free_so (struct so_list *so)
355
356 DESCRIPTION
357
358 Free the storage associated with the `struct so_list' object SO.
359 If we have opened a BFD for SO, close it.
360
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.
364
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
369 void
370 free_so (struct so_list *so)
371 {
372 struct target_so_ops *ops = solib_ops (current_gdbarch);
373 char *bfd_filename = 0;
374
375 if (so->sections)
376 xfree (so->sections);
377
378 if (so->abfd)
379 {
380 bfd_filename = bfd_get_filename (so->abfd);
381 if (! bfd_close (so->abfd))
382 warning (_("cannot close \"%s\": %s"),
383 bfd_filename, bfd_errmsg (bfd_get_error ()));
384 }
385
386 if (bfd_filename)
387 xfree (bfd_filename);
388
389 ops->free_so (so);
390
391 xfree (so);
392 }
393
394
395 /* Return address of first so_list entry in master shared object list. */
396 struct so_list *
397 master_so_list (void)
398 {
399 return so_list_head;
400 }
401
402
403 /* A small stub to get us past the arg-passing pinhole of catch_errors. */
404
405 static int
406 symbol_add_stub (void *arg)
407 {
408 struct so_list *so = (struct so_list *) arg; /* catch_errs bogon */
409 struct section_addr_info *sap;
410
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
418 sap = build_section_addr_info_from_section_table (so->sections,
419 so->sections_end);
420
421 so->objfile = symbol_file_add (so->so_name, so->from_tty,
422 sap, 0, OBJF_SHARED);
423 free_section_addr_info (sap);
424
425 return (1);
426 }
427
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
432 int
433 solib_read_symbols (struct so_list *so, int from_tty)
434 {
435 if (so->symbols_loaded)
436 {
437 if (from_tty)
438 printf_unfiltered (_("Symbols already loaded for %s\n"), so->so_name);
439 }
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 }
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)
452 printf_unfiltered (_("Loaded symbols for %s\n"), so->so_name);
453 so->symbols_loaded = 1;
454 return 1;
455 }
456 }
457
458 return 0;
459 }
460
461 /* LOCAL FUNCTION
462
463 update_solib_list --- synchronize GDB's shared object list with inferior's
464
465 SYNOPSIS
466
467 void update_solib_list (int from_tty, struct target_ops *TARGET)
468
469 Extract the list of currently loaded shared objects from the
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.
473
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.
479
480 If FROM_TTY is non-null, feel free to print messages about what
481 we're doing.
482
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. */
489
490 static void
491 update_solib_list (int from_tty, struct target_ops *target)
492 {
493 struct target_so_ops *ops = solib_ops (current_gdbarch);
494 struct so_list *inferior = ops->current_sos();
495 struct so_list *gdb, **gdb_link;
496
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)
502 catch_errors (ops->open_symbol_file_object, &from_tty,
503 "Error reading attached process's symbol file.\n",
504 RETURN_MASK_ALL);
505
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
512 knows about it already, and it's still loaded in the inferior.
513 Nothing needs to happen.
514
515 - A shared object appears only on GDB's list. This means that
516 the inferior has unloaded it. We should remove the shared
517 object from GDB's tables.
518
519 - A shared object appears only on the inferior's list. This
520 means that it's just been loaded. We should add it to GDB's
521 tables.
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)
533 {
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)
540 {
541 if (! strcmp (gdb->so_original_name, i->so_original_name))
542 break;
543
544 i_link = &i->next;
545 i = *i_link;
546 }
547
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)
552 {
553 *i_link = i->next;
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 {
562 /* Notify any observer that the shared object has been
563 unloaded before we remove it from GDB's tables. */
564 observer_notify_solib_unloaded (gdb);
565
566 *gdb_link = gdb->next;
567
568 /* Unless the user loaded it explicitly, free SO's objfile. */
569 if (gdb->objfile && ! (gdb->objfile->flags & OBJF_USERLOADED))
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;
578 }
579 }
580
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
583 to GDB's shared object list. */
584 if (inferior)
585 {
586 struct so_list *i;
587
588 /* Add the new shared objects to GDB's list. */
589 *gdb_link = inferior;
590
591 /* Fill in the rest of each of the `struct so_list' nodes. */
592 for (i = inferior; i; i = i->next)
593 {
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);
600
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)
606 {
607 int count = (i->sections_end - i->sections);
608 if (count > 0)
609 {
610 int space = target_resize_to_sections (target, count);
611 memcpy (target->to_sections + space,
612 i->sections,
613 count * sizeof (i->sections[0]));
614 }
615 }
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);
620 }
621 }
622 }
623
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
630 static int
631 libpthread_solib_p (struct so_list *so)
632 {
633 return (strstr (so->so_name, "/libpthread") != NULL);
634 }
635
636 /* GLOBAL FUNCTION
637
638 solib_add -- read in symbol info for newly added shared libraries
639
640 SYNOPSIS
641
642 void solib_add (char *pattern, int from_tty, struct target_ops
643 *TARGET, int readsyms)
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
651 If READSYMS is 0, defer reading symbolic information until later
652 but still do any needed low level processing.
653
654 FROM_TTY and TARGET are as described for update_solib_list, above. */
655
656 void
657 solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms)
658 {
659 struct so_list *gdb;
660
661 if (pattern)
662 {
663 char *re_err = re_comp (pattern);
664
665 if (re_err)
666 error (_("Invalid regexp: %s"), re_err);
667 }
668
669 update_solib_list (from_tty, target);
670
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. */
674 {
675 int any_matches = 0;
676 int loaded_any_symbols = 0;
677
678 for (gdb = so_list_head; gdb; gdb = gdb->next)
679 if (! pattern || re_exec (gdb->so_name))
680 {
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
689 any_matches = 1;
690 if (add_this_solib && solib_read_symbols (gdb, from_tty))
691 loaded_any_symbols = 1;
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 {
700 struct target_so_ops *ops = solib_ops (current_gdbarch);
701
702 /* Getting new symbols may change our opinion about what is
703 frameless. */
704 reinit_frame_cache ();
705
706 ops->special_symbol_handling ();
707 }
708 }
709 }
710
711
712 /*
713
714 LOCAL FUNCTION
715
716 info_sharedlibrary_command -- code for "info sharedlibrary"
717
718 SYNOPSIS
719
720 static void info_sharedlibrary_command ()
721
722 DESCRIPTION
723
724 Walk through the shared library list and print information
725 about each attached library.
726 */
727
728 static void
729 info_sharedlibrary_command (char *ignore, int from_tty)
730 {
731 struct so_list *so = NULL; /* link map state variable */
732 int header_done = 0;
733 int addr_width;
734
735 /* "0x", a little whitespace, and two hex digits per byte of pointers. */
736 addr_width = 4 + (gdbarch_ptr_bit (current_gdbarch) / 4);
737
738 update_solib_list (from_tty, 0);
739
740 for (so = so_list_head; so; so = so->next)
741 {
742 if (so->so_name[0])
743 {
744 if (!header_done)
745 {
746 printf_unfiltered ("%-*s%-*s%-12s%s\n", addr_width, "From",
747 addr_width, "To", "Syms Read",
748 "Shared Object Library");
749 header_done++;
750 }
751
752 printf_unfiltered ("%-*s", addr_width,
753 so->addr_high != 0
754 ? hex_string_custom (
755 (LONGEST) so->addr_low,
756 addr_width - 4)
757 : "");
758 printf_unfiltered ("%-*s", addr_width,
759 so->addr_high != 0
760 ? hex_string_custom (
761 (LONGEST) so->addr_high,
762 addr_width - 4)
763 : "");
764 printf_unfiltered ("%-12s", so->symbols_loaded ? "Yes" : "No");
765 printf_unfiltered ("%s\n", so->so_name);
766 }
767 }
768 if (so_list_head == NULL)
769 {
770 printf_unfiltered (_("No shared libraries loaded at this time.\n"));
771 }
772 }
773
774 /*
775
776 GLOBAL FUNCTION
777
778 solib_address -- check to see if an address is in a shared lib
779
780 SYNOPSIS
781
782 char * solib_address (CORE_ADDR address)
783
784 DESCRIPTION
785
786 Provides a hook for other gdb routines to discover whether or
787 not a particular address is within the mapped address space of
788 a shared library.
789
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.
793 */
794
795 char *
796 solib_address (CORE_ADDR address)
797 {
798 struct so_list *so = 0; /* link map state variable */
799
800 for (so = so_list_head; so; so = so->next)
801 {
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 }
809 }
810
811 return (0);
812 }
813
814 /* Called by free_all_symtabs */
815
816 void
817 clear_solib (void)
818 {
819 struct target_so_ops *ops = solib_ops (current_gdbarch);
820
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)
843 disable_breakpoints_in_shlibs ();
844
845 while (so_list_head)
846 {
847 struct so_list *so = so_list_head;
848 so_list_head = so->next;
849 if (so->abfd)
850 remove_target_sections (so->abfd);
851 free_so (so);
852 }
853
854 ops->clear_solib ();
855 }
856
857 /* GLOBAL FUNCTION
858
859 solib_create_inferior_hook -- shared library startup support
860
861 SYNOPSIS
862
863 void solib_create_inferior_hook ()
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
870 SOLIB_CREATE_INFERIOR_HOOK. */
871
872 void
873 solib_create_inferior_hook (void)
874 {
875 struct target_so_ops *ops = solib_ops (current_gdbarch);
876 ops->solib_create_inferior_hook();
877 }
878
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
895 int
896 in_solib_dynsym_resolve_code (CORE_ADDR pc)
897 {
898 struct target_so_ops *ops = solib_ops (current_gdbarch);
899 return ops->in_dynsym_resolve_code (pc);
900 }
901
902 /*
903
904 LOCAL FUNCTION
905
906 sharedlibrary_command -- handle command to explicitly add library
907
908 SYNOPSIS
909
910 static void sharedlibrary_command (char *args, int from_tty)
911
912 DESCRIPTION
913
914 */
915
916 static void
917 sharedlibrary_command (char *args, int from_tty)
918 {
919 dont_repeat ();
920 solib_add (args, from_tty, (struct target_ops *) 0, 1);
921 }
922
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
935 void
936 no_shared_libraries (char *ignored, int from_tty)
937 {
938 objfile_purge_solibs ();
939 clear_solib ();
940 }
941
942 static void
943 reload_shared_libraries (char *ignored, int from_tty,
944 struct cmd_list_element *e)
945 {
946 no_shared_libraries (NULL, from_tty);
947 solib_add (NULL, from_tty, NULL, auto_solib_add);
948 }
949
950 static void
951 show_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
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
962 struct symbol *
963 solib_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 {
969 struct target_so_ops *ops = solib_ops (current_gdbarch);
970
971 if (ops->lookup_lib_global_symbol != NULL)
972 return ops->lookup_lib_global_symbol (objfile, name, linkage_name,
973 domain, symtab);
974 return NULL;
975 }
976
977
978 extern initialize_file_ftype _initialize_solib; /* -Wmissing-prototypes */
979
980 void
981 _initialize_solib (void)
982 {
983 struct cmd_list_element *c;
984
985 solib_data = gdbarch_data_register_pre_init (solib_init);
986
987 add_com ("sharedlibrary", class_files, sharedlibrary_command,
988 _("Load shared object library symbols for files matching REGEXP."));
989 add_info ("sharedlibrary", info_sharedlibrary_command,
990 _("Status of loaded shared object libraries."));
991 add_com ("nosharedlibrary", class_files, no_shared_libraries,
992 _("Unload all shared object library symbols."));
993
994 add_setshow_boolean_cmd ("auto-solib-add", class_support,
995 &auto_solib_add, _("\
996 Set autoloading of shared library symbols."), _("\
997 Show autoloading of shared library symbols."), _("\
998 If \"on\", symbols from all shared object libraries will be loaded\n\
999 automatically when the inferior begins execution, when the dynamic linker\n\
1000 informs gdb that a new library has been loaded, or when attaching to the\n\
1001 inferior. Otherwise, symbols must be loaded manually, using `sharedlibrary'."),
1002 NULL,
1003 show_auto_solib_add,
1004 &setlist, &showlist);
1005
1006 add_setshow_filename_cmd ("sysroot", class_support,
1007 &gdb_sysroot, _("\
1008 Set an alternate system root."), _("\
1009 Show the current system root."), _("\
1010 The system root is used to load absolute shared library symbol files.\n\
1011 For other (relative) files, you can add directories using\n\
1012 `set solib-search-path'."),
1013 reload_shared_libraries,
1014 NULL,
1015 &setlist, &showlist);
1016
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);
1021
1022 add_setshow_optional_filename_cmd ("solib-search-path", class_support,
1023 &solib_search_path, _("\
1024 Set the search path for loading non-absolute shared library symbol files."), _("\
1025 Show the search path for loading non-absolute shared library symbol files."), _("\
1026 This takes precedence over the environment variables PATH and LD_LIBRARY_PATH."),
1027 reload_shared_libraries,
1028 show_solib_search_path,
1029 &setlist, &showlist);
1030 }