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