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