1 /* Handle shared libraries for GDB, the GNU Debugger.
3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010
5 Free Software Foundation, Inc.
7 This file is part of GDB.
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.
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.
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/>. */
24 #include <sys/types.h>
26 #include "gdb_string.h"
31 #include "exceptions.h"
36 #include "gdb_regex.h"
41 #include "completer.h"
42 #include "filenames.h" /* for DOSish file names */
46 #include "readline/readline.h"
51 /* Architecture-specific operations. */
53 /* Per-architecture data key. */
54 static struct gdbarch_data *solib_data;
57 solib_init (struct obstack *obstack)
59 struct target_so_ops **ops;
61 ops = OBSTACK_ZALLOC (obstack, struct target_so_ops *);
62 *ops = current_target_so_ops;
66 static struct target_so_ops *
67 solib_ops (struct gdbarch *gdbarch)
69 struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data);
73 /* Set the solib operations for GDBARCH to NEW_OPS. */
76 set_solib_ops (struct gdbarch *gdbarch, struct target_so_ops *new_ops)
78 struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data);
83 /* external data declarations */
85 /* FIXME: gdbarch needs to control this variable, or else every
86 configuration needs to call set_solib_ops. */
87 struct target_so_ops *current_target_so_ops;
89 /* List of known shared objects */
90 #define so_list_head current_program_space->so_list
92 /* Local function prototypes */
94 /* If non-empty, this is a search path for loading non-absolute shared library
95 symbol files. This takes precedence over the environment variables PATH
96 and LD_LIBRARY_PATH. */
97 static char *solib_search_path = NULL;
99 show_solib_search_path (struct ui_file *file, int from_tty,
100 struct cmd_list_element *c, const char *value)
102 fprintf_filtered (file, _("\
103 The search path for loading non-absolute shared library symbol files is %s.\n"),
111 solib_find -- Find a shared library file.
115 char *solib_find (char *in_pathname, int *fd);
119 Global variable GDB_SYSROOT is used as a prefix directory
120 to search for shared libraries if they have an absolute path.
122 Global variable SOLIB_SEARCH_PATH is used as a prefix directory
123 (or set of directories, as in LD_LIBRARY_PATH) to search for all
124 shared libraries if not found in GDB_SYSROOT.
127 * If there is a gdb_sysroot and path is absolute:
128 * Search for gdb_sysroot/path.
130 * Look for it literally (unmodified).
131 * Look in SOLIB_SEARCH_PATH.
132 * If available, use target defined search function.
133 * If gdb_sysroot is NOT set, perform the following two searches:
134 * Look in inferior's $PATH.
135 * Look in inferior's $LD_LIBRARY_PATH.
137 * The last check avoids doing this search when targetting remote
138 * machines since gdb_sysroot will almost always be set.
142 Full pathname of the shared library file, or NULL if not found.
143 (The pathname is malloc'ed; it needs to be freed by the caller.)
144 *FD is set to either -1 or an open file handle for the library. */
147 solib_find (char *in_pathname, int *fd)
149 struct target_so_ops *ops = solib_ops (target_gdbarch);
151 char *temp_pathname = NULL;
152 int gdb_sysroot_is_empty;
154 gdb_sysroot_is_empty = (gdb_sysroot == NULL || *gdb_sysroot == 0);
156 if (! IS_ABSOLUTE_PATH (in_pathname) || gdb_sysroot_is_empty)
157 temp_pathname = in_pathname;
160 int prefix_len = strlen (gdb_sysroot);
162 /* Remove trailing slashes from absolute prefix. */
163 while (prefix_len > 0
164 && IS_DIR_SEPARATOR (gdb_sysroot[prefix_len - 1]))
167 /* Cat the prefixed pathname together. */
168 temp_pathname = alloca (prefix_len + strlen (in_pathname) + 1);
169 strncpy (temp_pathname, gdb_sysroot, prefix_len);
170 temp_pathname[prefix_len] = '\0';
171 strcat (temp_pathname, in_pathname);
174 /* Handle remote files. */
175 if (remote_filename_p (temp_pathname))
178 return xstrdup (temp_pathname);
181 /* Now see if we can open it. */
182 found_file = open (temp_pathname, O_RDONLY | O_BINARY, 0);
184 /* We try to find the library in various ways. After each attempt
185 (except for the one above), either found_file >= 0 and
186 temp_pathname is a malloc'd string, or found_file < 0 and
187 temp_pathname does not point to storage that needs to be
191 temp_pathname = NULL;
193 temp_pathname = xstrdup (temp_pathname);
195 /* If the search in gdb_sysroot failed, and the path name is
196 absolute at this point, make it relative. (openp will try and open the
197 file according to its absolute path otherwise, which is not what we want.)
198 Affects subsequent searches for this solib. */
199 if (found_file < 0 && IS_ABSOLUTE_PATH (in_pathname))
201 /* First, get rid of any drive letters etc. */
202 while (!IS_DIR_SEPARATOR (*in_pathname))
205 /* Next, get rid of all leading dir separators. */
206 while (IS_DIR_SEPARATOR (*in_pathname))
210 /* If not found, search the solib_search_path (if any). */
211 if (found_file < 0 && solib_search_path != NULL)
212 found_file = openp (solib_search_path, OPF_TRY_CWD_FIRST,
213 in_pathname, O_RDONLY | O_BINARY, &temp_pathname);
215 /* If not found, next search the solib_search_path (if any) for the basename
216 only (ignoring the path). This is to allow reading solibs from a path
217 that differs from the opened path. */
218 if (found_file < 0 && solib_search_path != NULL)
219 found_file = openp (solib_search_path, OPF_TRY_CWD_FIRST,
220 lbasename (in_pathname), O_RDONLY | O_BINARY,
223 /* If not found, try to use target supplied solib search method */
224 if (found_file < 0 && ops->find_and_open_solib)
225 found_file = ops->find_and_open_solib (in_pathname, O_RDONLY | O_BINARY,
228 /* If not found, next search the inferior's $PATH environment variable. */
229 if (found_file < 0 && gdb_sysroot_is_empty)
230 found_file = openp (get_in_environ (inferior_environ, "PATH"),
231 OPF_TRY_CWD_FIRST, in_pathname, O_RDONLY | O_BINARY,
234 /* If not found, next search the inferior's $LD_LIBRARY_PATH
235 environment variable. */
236 if (found_file < 0 && gdb_sysroot_is_empty)
237 found_file = openp (get_in_environ (inferior_environ, "LD_LIBRARY_PATH"),
238 OPF_TRY_CWD_FIRST, in_pathname, O_RDONLY | O_BINARY,
242 return temp_pathname;
245 /* Open and return a BFD for the shared library PATHNAME. If FD is not -1,
246 it is used as file handle to open the file. Throws an error if the file
247 could not be opened. Handles both local and remote file access.
249 PATHNAME must be malloc'ed by the caller. If successful, the new BFD's
250 name will point to it. If unsuccessful, PATHNAME will be freed and the
251 FD will be closed (unless FD was -1). */
254 solib_bfd_fopen (char *pathname, int fd)
258 if (remote_filename_p (pathname))
260 gdb_assert (fd == -1);
261 abfd = remote_bfd_open (pathname, gnutarget);
265 abfd = bfd_fopen (pathname, gnutarget, FOPEN_RB, fd);
268 bfd_set_cacheable (abfd, 1);
275 make_cleanup (xfree, pathname);
276 error (_("Could not open `%s' as an executable file: %s"),
277 pathname, bfd_errmsg (bfd_get_error ()));
283 /* Find shared library PATHNAME and open a BFD for it. */
286 solib_bfd_open (char *pathname)
288 char *found_pathname;
291 const struct bfd_arch_info *b;
293 /* Search for shared library file. */
294 found_pathname = solib_find (pathname, &found_file);
295 if (found_pathname == NULL)
296 perror_with_name (pathname);
298 /* Open bfd for shared library. */
299 abfd = solib_bfd_fopen (found_pathname, found_file);
301 /* Check bfd format. */
302 if (!bfd_check_format (abfd, bfd_object))
305 make_cleanup (xfree, found_pathname);
306 error (_("`%s': not in executable format: %s"),
307 found_pathname, bfd_errmsg (bfd_get_error ()));
310 /* Check bfd arch. */
311 b = gdbarch_bfd_arch_info (target_gdbarch);
312 if (!b->compatible (b, bfd_get_arch_info (abfd)))
313 warning (_("`%s': Shared library architecture %s is not compatible "
314 "with target architecture %s."), found_pathname,
315 bfd_get_arch_info (abfd)->printable_name, b->printable_name);
325 solib_map_sections -- open bfd and build sections for shared lib
329 static int solib_map_sections (struct so_list *so)
333 Given a pointer to one of the shared objects in our list
334 of mapped objects, use the recorded name to open a bfd
335 descriptor for the object, build a section table, and then
336 relocate all the section addresses by the base address at
337 which the shared object was mapped.
341 In most (all?) cases the shared object file name recorded in the
342 dynamic linkage tables will be a fully qualified pathname. For
343 cases where it isn't, do we really mimic the systems search
344 mechanism correctly in the below code (particularly the tilde
349 solib_map_sections (void *arg)
351 struct so_list *so = (struct so_list *) arg; /* catch_errors bogon */
352 struct target_so_ops *ops = solib_ops (target_gdbarch);
354 struct target_section *p;
355 struct cleanup *old_chain;
358 filename = tilde_expand (so->so_name);
359 old_chain = make_cleanup (xfree, filename);
360 abfd = ops->bfd_open (filename);
361 do_cleanups (old_chain);
363 /* Leave bfd open, core_xfer_memory and "info files" need it. */
364 so->abfd = gdb_bfd_ref (abfd);
366 /* copy full path name into so_name, so that later symbol_file_add
368 if (strlen (bfd_get_filename (abfd)) >= SO_NAME_MAX_PATH_SIZE)
369 error (_("Shared library file name is too long."));
370 strcpy (so->so_name, bfd_get_filename (abfd));
372 if (build_section_table (abfd, &so->sections, &so->sections_end))
374 error (_("Can't find the file sections in `%s': %s"),
375 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
378 for (p = so->sections; p < so->sections_end; p++)
380 /* Relocate the section binding addresses as recorded in the shared
381 object's file by the base address to which the object was actually
383 ops->relocate_section_addresses (so, p);
385 /* If the target didn't provide information about the address
386 range of the shared object, assume we want the location of
387 the .text section. */
388 if (so->addr_low == 0 && so->addr_high == 0
389 && strcmp (p->the_bfd_section->name, ".text") == 0)
391 so->addr_low = p->addr;
392 so->addr_high = p->endaddr;
401 free_so --- free a `struct so_list' object
405 void free_so (struct so_list *so)
409 Free the storage associated with the `struct so_list' object SO.
410 If we have opened a BFD for SO, close it.
412 The caller is responsible for removing SO from whatever list it is
413 a member of. If we have placed SO's sections in some target's
414 section table, the caller is responsible for removing them.
416 This function doesn't mess with objfiles at all. If there is an
417 objfile associated with SO that needs to be removed, the caller is
418 responsible for taking care of that. */
421 free_so (struct so_list *so)
423 struct target_so_ops *ops = solib_ops (target_gdbarch);
426 xfree (so->sections);
428 gdb_bfd_unref (so->abfd);
436 /* Return address of first so_list entry in master shared object list. */
438 master_so_list (void)
444 symbol_add_stub (struct so_list *so, int flags)
446 struct section_addr_info *sap;
448 /* Have we already loaded this shared object? */
449 ALL_OBJFILES (so->objfile)
451 if (strcmp (so->objfile->name, so->so_name) == 0)
455 sap = build_section_addr_info_from_section_table (so->sections,
458 so->objfile = symbol_file_add_from_bfd (so->abfd, flags, sap, OBJF_SHARED);
459 free_section_addr_info (sap);
464 /* Read in symbols for shared object SO. If SYMFILE_VERBOSE is set in FLAGS,
465 be chatty about it. Return non-zero if any symbols were actually
469 solib_read_symbols (struct so_list *so, int flags)
471 const int from_tty = flags & SYMFILE_VERBOSE;
473 if (so->symbols_loaded)
475 if (from_tty || info_verbose)
476 printf_unfiltered (_("Symbols already loaded for %s\n"), so->so_name);
478 else if (so->abfd == NULL)
480 if (from_tty || info_verbose)
481 printf_unfiltered (_("Symbol file not found for %s\n"), so->so_name);
485 volatile struct gdb_exception exception;
486 TRY_CATCH (exception, RETURN_MASK_ALL)
488 symbol_add_stub (so, flags);
490 if (exception.reason != 0)
492 exception_fprintf (gdb_stderr, exception,
493 "Error while reading shared library symbols:\n");
496 if (from_tty || info_verbose)
497 printf_unfiltered (_("Loaded symbols for %s\n"), so->so_name);
498 so->symbols_loaded = 1;
507 update_solib_list --- synchronize GDB's shared object list with inferior's
511 void update_solib_list (int from_tty, struct target_ops *TARGET)
513 Extract the list of currently loaded shared objects from the
514 inferior, and compare it with the list of shared objects currently
515 in GDB's so_list_head list. Edit so_list_head to bring it in sync
516 with the inferior's new list.
518 If we notice that the inferior has unloaded some shared objects,
519 free any symbolic info GDB had read about those shared objects.
521 Don't load symbolic info for any new shared objects; just add them
522 to the list, and leave their symbols_loaded flag clear.
524 If FROM_TTY is non-null, feel free to print messages about what
527 If TARGET is non-null, add the sections of all new shared objects
528 to TARGET's section table. Note that this doesn't remove any
529 sections for shared objects that have been unloaded, and it
530 doesn't check to see if the new shared objects are already present in
531 the section table. But we only use this for core files and
532 processes we've just attached to, so that's okay. */
535 update_solib_list (int from_tty, struct target_ops *target)
537 struct target_so_ops *ops = solib_ops (target_gdbarch);
538 struct so_list *inferior = ops->current_sos();
539 struct so_list *gdb, **gdb_link;
541 /* We can reach here due to changing solib-search-path or the
542 sysroot, before having any inferior. */
543 if (target_has_execution && !ptid_equal (inferior_ptid, null_ptid))
545 struct inferior *inf = current_inferior ();
547 /* If we are attaching to a running process for which we
548 have not opened a symbol file, we may be able to get its
550 if (inf->attach_flag && symfile_objfile == NULL)
551 catch_errors (ops->open_symbol_file_object, &from_tty,
552 "Error reading attached process's symbol file.\n",
556 /* GDB and the inferior's dynamic linker each maintain their own
557 list of currently loaded shared objects; we want to bring the
558 former in sync with the latter. Scan both lists, seeing which
559 shared objects appear where. There are three cases:
561 - A shared object appears on both lists. This means that GDB
562 knows about it already, and it's still loaded in the inferior.
563 Nothing needs to happen.
565 - A shared object appears only on GDB's list. This means that
566 the inferior has unloaded it. We should remove the shared
567 object from GDB's tables.
569 - A shared object appears only on the inferior's list. This
570 means that it's just been loaded. We should add it to GDB's
573 So we walk GDB's list, checking each entry to see if it appears
574 in the inferior's list too. If it does, no action is needed, and
575 we remove it from the inferior's list. If it doesn't, the
576 inferior has unloaded it, and we remove it from GDB's list. By
577 the time we're done walking GDB's list, the inferior's list
578 contains only the new shared objects, which we then add. */
581 gdb_link = &so_list_head;
584 struct so_list *i = inferior;
585 struct so_list **i_link = &inferior;
587 /* Check to see whether the shared object *gdb also appears in
588 the inferior's current list. */
593 if (ops->same (gdb, i))
598 if (! strcmp (gdb->so_original_name, i->so_original_name))
606 /* If the shared object appears on the inferior's list too, then
607 it's still loaded, so we don't need to do anything. Delete
608 it from the inferior's list, and leave it on GDB's list. */
613 gdb_link = &gdb->next;
617 /* If it's not on the inferior's list, remove it from GDB's tables. */
620 /* Notify any observer that the shared object has been
621 unloaded before we remove it from GDB's tables. */
622 observer_notify_solib_unloaded (gdb);
624 *gdb_link = gdb->next;
626 /* Unless the user loaded it explicitly, free SO's objfile. */
627 if (gdb->objfile && ! (gdb->objfile->flags & OBJF_USERLOADED))
628 free_objfile (gdb->objfile);
630 /* Some targets' section tables might be referring to
631 sections from so->abfd; remove them. */
632 remove_target_sections (gdb->abfd);
639 /* Now the inferior's list contains only shared objects that don't
640 appear in GDB's list --- those that are newly loaded. Add them
641 to GDB's shared object list. */
646 /* Add the new shared objects to GDB's list. */
647 *gdb_link = inferior;
649 /* Fill in the rest of each of the `struct so_list' nodes. */
650 for (i = inferior; i; i = i->next)
652 i->from_tty = from_tty;
653 i->pspace = current_program_space;
655 /* Fill in the rest of the `struct so_list' node. */
656 catch_errors (solib_map_sections, i,
657 "Error while mapping shared library sections:\n",
660 /* Add the shared object's sections to the current set of
661 file section tables. Do this immediately after mapping
662 the object so that later nodes in the list can query this
663 object, as is needed in solib-osf.c. */
664 add_target_sections (i->sections, i->sections_end);
666 /* Notify any observer that the shared object has been
667 loaded now that we've added it to GDB's tables. */
668 observer_notify_solib_loaded (i);
674 /* Return non-zero if NAME is the libpthread shared library.
676 Uses a fairly simplistic heuristic approach where we check
677 the file name against "/libpthread". This can lead to false
678 positives, but this should be good enough in practice. */
681 libpthread_name_p (const char *name)
683 return (strstr (name, "/libpthread") != NULL);
686 /* Return non-zero if SO is the libpthread shared library. */
689 libpthread_solib_p (struct so_list *so)
691 return libpthread_name_p (so->so_name);
696 solib_add -- read in symbol info for newly added shared libraries
700 void solib_add (char *pattern, int from_tty, struct target_ops
701 *TARGET, int readsyms)
705 Read in symbolic information for any shared objects whose names
706 match PATTERN. (If we've already read a shared object's symbol
707 info, leave it alone.) If PATTERN is zero, read them all.
709 If READSYMS is 0, defer reading symbolic information until later
710 but still do any needed low level processing.
712 FROM_TTY and TARGET are as described for update_solib_list, above. */
715 solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms)
721 char *re_err = re_comp (pattern);
724 error (_("Invalid regexp: %s"), re_err);
727 update_solib_list (from_tty, target);
729 /* Walk the list of currently loaded shared libraries, and read
730 symbols for any that match the pattern --- or any whose symbols
731 aren't already loaded, if no pattern was given. */
734 int loaded_any_symbols = 0;
736 SYMFILE_DEFER_BP_RESET | (from_tty ? SYMFILE_VERBOSE : 0);
738 for (gdb = so_list_head; gdb; gdb = gdb->next)
739 if (! pattern || re_exec (gdb->so_name))
741 /* Normally, we would read the symbols from that library
742 only if READSYMS is set. However, we're making a small
743 exception for the pthread library, because we sometimes
744 need the library symbols to be loaded in order to provide
745 thread support (x86-linux for instance). */
746 const int add_this_solib =
747 (readsyms || libpthread_solib_p (gdb));
750 if (add_this_solib && solib_read_symbols (gdb, flags))
751 loaded_any_symbols = 1;
754 if (loaded_any_symbols)
755 breakpoint_re_set ();
757 if (from_tty && pattern && ! any_matches)
759 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
761 if (loaded_any_symbols)
763 struct target_so_ops *ops = solib_ops (target_gdbarch);
765 /* Getting new symbols may change our opinion about what is
767 reinit_frame_cache ();
769 ops->special_symbol_handling ();
779 info_sharedlibrary_command -- code for "info sharedlibrary"
783 static void info_sharedlibrary_command ()
787 Walk through the shared library list and print information
788 about each attached library matching PATTERN. If PATTERN is elided,
793 info_sharedlibrary_command (char *pattern, int from_tty)
795 struct so_list *so = NULL; /* link map state variable */
797 int so_missing_debug_info = 0;
800 struct cleanup *table_cleanup;
801 struct gdbarch *gdbarch = target_gdbarch;
805 char *re_err = re_comp (pattern);
808 error (_("Invalid regexp: %s"), re_err);
811 /* "0x", a little whitespace, and two hex digits per byte of pointers. */
812 addr_width = 4 + (gdbarch_ptr_bit (gdbarch) / 4);
814 update_solib_list (from_tty, 0);
816 /* make_cleanup_ui_out_table_begin_end needs to know the number of
817 rows, so we need to make two passes over the libs. */
819 for (nr_libs = 0, so = so_list_head; so; so = so->next)
823 if (pattern && ! re_exec (so->so_name))
830 make_cleanup_ui_out_table_begin_end (uiout, 4, nr_libs,
831 "SharedLibraryTable");
833 /* The "- 1" is because ui_out adds one space between columns. */
834 ui_out_table_header (uiout, addr_width - 1, ui_left, "from", "From");
835 ui_out_table_header (uiout, addr_width - 1, ui_left, "to", "To");
836 ui_out_table_header (uiout, 12 - 1, ui_left, "syms-read", "Syms Read");
837 ui_out_table_header (uiout, 0, ui_noalign,
838 "name", "Shared Object Library");
840 ui_out_table_body (uiout);
842 for (so = so_list_head; so; so = so->next)
844 struct cleanup *lib_cleanup;
846 if (! so->so_name[0])
848 if (pattern && ! re_exec (so->so_name))
851 lib_cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, "lib");
853 if (so->addr_high != 0)
855 ui_out_field_core_addr (uiout, "from", gdbarch, so->addr_low);
856 ui_out_field_core_addr (uiout, "to", gdbarch, so->addr_high);
860 ui_out_field_skip (uiout, "from");
861 ui_out_field_skip (uiout, "to");
864 if (! ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ()))
865 && so->symbols_loaded
866 && !objfile_has_symbols (so->objfile))
868 so_missing_debug_info = 1;
869 ui_out_field_string (uiout, "syms-read", "Yes (*)");
872 ui_out_field_string (uiout, "syms-read",
873 so->symbols_loaded ? "Yes" : "No");
875 ui_out_field_string (uiout, "name", so->so_name);
877 ui_out_text (uiout, "\n");
879 do_cleanups (lib_cleanup);
882 do_cleanups (table_cleanup);
887 ui_out_message (uiout, 0,
888 _("No shared libraries matched.\n"));
890 ui_out_message (uiout, 0,
891 _("No shared libraries loaded at this time.\n"));
895 if (so_missing_debug_info)
896 ui_out_message (uiout, 0,
897 _("(*): Shared library is missing debugging information.\n"));
901 /* Return 1 if ADDRESS lies within SOLIB. */
904 solib_contains_address_p (const struct so_list *const solib,
907 struct target_section *p;
909 for (p = solib->sections; p < solib->sections_end; p++)
910 if (p->addr <= address && address < p->endaddr)
920 solib_name_from_address -- if an address is in a shared lib, return
925 char * solib_name_from_address (CORE_ADDR address)
929 Provides a hook for other gdb routines to discover whether or
930 not a particular address is within the mapped address space of
933 For example, this routine is called at one point to disable
934 breakpoints which are in shared libraries that are not currently
939 solib_name_from_address (struct program_space *pspace, CORE_ADDR address)
941 struct so_list *so = NULL;
943 for (so = pspace->so_list; so; so = so->next)
944 if (solib_contains_address_p (so, address))
945 return (so->so_name);
950 /* Return whether the data starting at VADDR, size SIZE, must be kept
951 in a core file for shared libraries loaded before "gcore" is used
952 to be handled correctly when the core file is loaded. This only
953 applies when the section would otherwise not be kept in the core
954 file (in particular, for readonly sections). */
957 solib_keep_data_in_core (CORE_ADDR vaddr, unsigned long size)
959 struct target_so_ops *ops = solib_ops (target_gdbarch);
961 if (ops->keep_data_in_core)
962 return ops->keep_data_in_core (vaddr, size);
967 /* Called by free_all_symtabs */
972 struct target_so_ops *ops = solib_ops (target_gdbarch);
974 /* This function is expected to handle ELF shared libraries. It is
975 also used on Solaris, which can run either ELF or a.out binaries
976 (for compatibility with SunOS 4), both of which can use shared
977 libraries. So we don't know whether we have an ELF executable or
978 an a.out executable until the user chooses an executable file.
980 ELF shared libraries don't get mapped into the address space
981 until after the program starts, so we'd better not try to insert
982 breakpoints in them immediately. We have to wait until the
983 dynamic linker has loaded them; we'll hit a bp_shlib_event
984 breakpoint (look for calls to create_solib_event_breakpoint) when
987 SunOS shared libraries seem to be different --- they're present
988 as soon as the process begins execution, so there's no need to
989 put off inserting breakpoints. There's also nowhere to put a
990 bp_shlib_event breakpoint, so if we put it off, we'll never get
993 So: disable breakpoints only if we're using ELF shared libs. */
995 && bfd_get_flavour (exec_bfd) != bfd_target_aout_flavour)
996 disable_breakpoints_in_shlibs ();
1000 struct so_list *so = so_list_head;
1001 so_list_head = so->next;
1002 observer_notify_solib_unloaded (so);
1004 remove_target_sections (so->abfd);
1008 ops->clear_solib ();
1013 solib_create_inferior_hook -- shared library startup support
1017 void solib_create_inferior_hook (int from_tty)
1021 When gdb starts up the inferior, it nurses it along (through the
1022 shell) until it is ready to execute it's first instruction. At this
1023 point, this function gets called via expansion of the macro
1024 SOLIB_CREATE_INFERIOR_HOOK. */
1027 solib_create_inferior_hook (int from_tty)
1029 struct target_so_ops *ops = solib_ops (target_gdbarch);
1030 ops->solib_create_inferior_hook (from_tty);
1035 in_solib_dynsym_resolve_code -- check to see if an address is in
1036 dynamic loader's dynamic symbol
1041 int in_solib_dynsym_resolve_code (CORE_ADDR pc)
1045 Determine if PC is in the dynamic linker's symbol resolution
1046 code. Return 1 if so, 0 otherwise.
1050 in_solib_dynsym_resolve_code (CORE_ADDR pc)
1052 struct target_so_ops *ops = solib_ops (target_gdbarch);
1053 return ops->in_dynsym_resolve_code (pc);
1060 sharedlibrary_command -- handle command to explicitly add library
1064 static void sharedlibrary_command (char *args, int from_tty)
1071 sharedlibrary_command (char *args, int from_tty)
1074 solib_add (args, from_tty, (struct target_ops *) 0, 1);
1079 no_shared_libraries -- handle command to explicitly discard symbols
1080 from shared libraries.
1084 Implements the command "nosharedlibrary", which discards symbols
1085 that have been auto-loaded from shared libraries. Symbols from
1086 shared libraries that were added by explicit request of the user
1087 are not discarded. Also called from remote.c. */
1090 no_shared_libraries (char *ignored, int from_tty)
1092 /* The order of the two routines below is important: clear_solib notifies
1093 the solib_unloaded observers, and some of these observers might need
1094 access to their associated objfiles. Therefore, we can not purge the
1095 solibs' objfiles before clear_solib has been called. */
1098 objfile_purge_solibs ();
1102 reload_shared_libraries (char *ignored, int from_tty,
1103 struct cmd_list_element *e)
1105 no_shared_libraries (NULL, from_tty);
1106 /* Creating inferior hooks here has two purposes. First, if we reload
1107 shared libraries then the address of solib breakpoint we've computed
1108 previously might be no longer valid. For example, if we forgot to set
1109 solib-absolute-prefix and are setting it right now, then the previous
1110 breakpoint address is plain wrong. Second, installing solib hooks
1111 also implicitly figures were ld.so is and loads symbols for it.
1112 Absent this call, if we've just connected to a target and set
1113 solib-absolute-prefix or solib-search-path, we'll lose all information
1115 if (target_has_execution)
1117 #ifdef SOLIB_CREATE_INFERIOR_HOOK
1118 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
1120 solib_create_inferior_hook (from_tty);
1124 /* Sometimes the platform-specific hook loads initial shared
1125 libraries, and sometimes it doesn't. If it doesn't FROM_TTY will be
1126 incorrectly 0 but such solib targets should be fixed anyway. If we
1127 made all the inferior hook methods consistent, this call could be
1128 removed. Call it only after the solib target has been initialized by
1129 solib_create_inferior_hook. */
1131 solib_add (NULL, 0, NULL, auto_solib_add);
1133 /* We have unloaded and then reloaded debug info for all shared libraries.
1134 However, frames may still reference them, for example a frame's
1135 unwinder might still point of DWARF FDE structures that are now freed.
1136 Reinit frame cache to avoid crashing. */
1137 reinit_frame_cache ();
1141 show_auto_solib_add (struct ui_file *file, int from_tty,
1142 struct cmd_list_element *c, const char *value)
1144 fprintf_filtered (file, _("Autoloading of shared library symbols is %s.\n"),
1149 /* Handler for library-specific lookup of global symbol NAME in OBJFILE. Call
1150 the library-specific handler if it is installed for the current target. */
1153 solib_global_lookup (const struct objfile *objfile,
1155 const char *linkage_name,
1156 const domain_enum domain)
1158 struct target_so_ops *ops = solib_ops (target_gdbarch);
1160 if (ops->lookup_lib_global_symbol != NULL)
1161 return ops->lookup_lib_global_symbol (objfile, name, linkage_name, domain);
1166 extern initialize_file_ftype _initialize_solib; /* -Wmissing-prototypes */
1169 _initialize_solib (void)
1171 struct cmd_list_element *c;
1173 solib_data = gdbarch_data_register_pre_init (solib_init);
1175 add_com ("sharedlibrary", class_files, sharedlibrary_command,
1176 _("Load shared object library symbols for files matching REGEXP."));
1177 add_info ("sharedlibrary", info_sharedlibrary_command,
1178 _("Status of loaded shared object libraries."));
1179 add_com ("nosharedlibrary", class_files, no_shared_libraries,
1180 _("Unload all shared object library symbols."));
1182 add_setshow_boolean_cmd ("auto-solib-add", class_support,
1183 &auto_solib_add, _("\
1184 Set autoloading of shared library symbols."), _("\
1185 Show autoloading of shared library symbols."), _("\
1186 If \"on\", symbols from all shared object libraries will be loaded\n\
1187 automatically when the inferior begins execution, when the dynamic linker\n\
1188 informs gdb that a new library has been loaded, or when attaching to the\n\
1189 inferior. Otherwise, symbols must be loaded manually, using `sharedlibrary'."),
1191 show_auto_solib_add,
1192 &setlist, &showlist);
1194 add_setshow_filename_cmd ("sysroot", class_support,
1196 Set an alternate system root."), _("\
1197 Show the current system root."), _("\
1198 The system root is used to load absolute shared library symbol files.\n\
1199 For other (relative) files, you can add directories using\n\
1200 `set solib-search-path'."),
1201 reload_shared_libraries,
1203 &setlist, &showlist);
1205 add_alias_cmd ("solib-absolute-prefix", "sysroot", class_support, 0,
1207 add_alias_cmd ("solib-absolute-prefix", "sysroot", class_support, 0,
1210 add_setshow_optional_filename_cmd ("solib-search-path", class_support,
1211 &solib_search_path, _("\
1212 Set the search path for loading non-absolute shared library symbol files."), _("\
1213 Show the search path for loading non-absolute shared library symbol files."), _("\
1214 This takes precedence over the environment variables PATH and LD_LIBRARY_PATH."),
1215 reload_shared_libraries,
1216 show_solib_search_path,
1217 &setlist, &showlist);