gdb/
[deliverable/binutils-gdb.git] / gdb / solib.c
1 /* Handle shared libraries for GDB, the GNU Debugger.
2
3 Copyright (C) 1990-2013 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21
22 #include <sys/types.h>
23 #include <fcntl.h>
24 #include "gdb_string.h"
25 #include "symtab.h"
26 #include "bfd.h"
27 #include "symfile.h"
28 #include "objfiles.h"
29 #include "exceptions.h"
30 #include "gdbcore.h"
31 #include "command.h"
32 #include "target.h"
33 #include "frame.h"
34 #include "gdb_regex.h"
35 #include "inferior.h"
36 #include "environ.h"
37 #include "language.h"
38 #include "gdbcmd.h"
39 #include "completer.h"
40 #include "filenames.h" /* for DOSish file names */
41 #include "exec.h"
42 #include "solist.h"
43 #include "observer.h"
44 #include "readline/readline.h"
45 #include "remote.h"
46 #include "solib.h"
47 #include "interps.h"
48 #include "filesystem.h"
49 #include "gdb_bfd.h"
50 #include "filestuff.h"
51
52 /* Architecture-specific operations. */
53
54 /* Per-architecture data key. */
55 static struct gdbarch_data *solib_data;
56
57 static void *
58 solib_init (struct obstack *obstack)
59 {
60 struct target_so_ops **ops;
61
62 ops = OBSTACK_ZALLOC (obstack, struct target_so_ops *);
63 *ops = current_target_so_ops;
64 return ops;
65 }
66
67 static const struct target_so_ops *
68 solib_ops (struct gdbarch *gdbarch)
69 {
70 const struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data);
71
72 return *ops;
73 }
74
75 /* Set the solib operations for GDBARCH to NEW_OPS. */
76
77 void
78 set_solib_ops (struct gdbarch *gdbarch, const struct target_so_ops *new_ops)
79 {
80 const struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data);
81
82 *ops = new_ops;
83 }
84 \f
85
86 /* external data declarations */
87
88 /* FIXME: gdbarch needs to control this variable, or else every
89 configuration needs to call set_solib_ops. */
90 struct target_so_ops *current_target_so_ops;
91
92 /* List of known shared objects */
93 #define so_list_head current_program_space->so_list
94
95 /* Local function prototypes */
96
97 /* If non-empty, this is a search path for loading non-absolute shared library
98 symbol files. This takes precedence over the environment variables PATH
99 and LD_LIBRARY_PATH. */
100 static char *solib_search_path = NULL;
101 static void
102 show_solib_search_path (struct ui_file *file, int from_tty,
103 struct cmd_list_element *c, const char *value)
104 {
105 fprintf_filtered (file, _("The search path for loading non-absolute "
106 "shared library symbol files is %s.\n"),
107 value);
108 }
109
110 /* Same as HAVE_DOS_BASED_FILE_SYSTEM, but useable as an rvalue. */
111 #if (HAVE_DOS_BASED_FILE_SYSTEM)
112 # define DOS_BASED_FILE_SYSTEM 1
113 #else
114 # define DOS_BASED_FILE_SYSTEM 0
115 #endif
116
117 /* Returns the full pathname of the shared library file, or NULL if
118 not found. (The pathname is malloc'ed; it needs to be freed by the
119 caller.) *FD is set to either -1 or an open file handle for the
120 library.
121
122 Global variable GDB_SYSROOT is used as a prefix directory
123 to search for shared libraries if they have an absolute path.
124
125 Global variable SOLIB_SEARCH_PATH is used as a prefix directory
126 (or set of directories, as in LD_LIBRARY_PATH) to search for all
127 shared libraries if not found in GDB_SYSROOT.
128
129 Search algorithm:
130 * If there is a gdb_sysroot and path is absolute:
131 * Search for gdb_sysroot/path.
132 * else
133 * Look for it literally (unmodified).
134 * Look in SOLIB_SEARCH_PATH.
135 * If available, use target defined search function.
136 * If gdb_sysroot is NOT set, perform the following two searches:
137 * Look in inferior's $PATH.
138 * Look in inferior's $LD_LIBRARY_PATH.
139 *
140 * The last check avoids doing this search when targetting remote
141 * machines since gdb_sysroot will almost always be set.
142 */
143
144 char *
145 solib_find (char *in_pathname, int *fd)
146 {
147 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
148 int found_file = -1;
149 char *temp_pathname = NULL;
150 int gdb_sysroot_is_empty;
151 const char *solib_symbols_extension
152 = gdbarch_solib_symbols_extension (target_gdbarch ());
153 const char *fskind = effective_target_file_system_kind ();
154 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
155 char *sysroot = NULL;
156
157 /* If solib_symbols_extension is set, replace the file's
158 extension. */
159 if (solib_symbols_extension)
160 {
161 char *p = in_pathname + strlen (in_pathname);
162
163 while (p > in_pathname && *p != '.')
164 p--;
165
166 if (*p == '.')
167 {
168 char *new_pathname;
169
170 new_pathname = alloca (p - in_pathname + 1
171 + strlen (solib_symbols_extension) + 1);
172 memcpy (new_pathname, in_pathname, p - in_pathname + 1);
173 strcpy (new_pathname + (p - in_pathname) + 1,
174 solib_symbols_extension);
175
176 in_pathname = new_pathname;
177 }
178 }
179
180 gdb_sysroot_is_empty = (gdb_sysroot == NULL || *gdb_sysroot == 0);
181
182 if (!gdb_sysroot_is_empty)
183 {
184 int prefix_len = strlen (gdb_sysroot);
185
186 /* Remove trailing slashes from absolute prefix. */
187 while (prefix_len > 0
188 && IS_DIR_SEPARATOR (gdb_sysroot[prefix_len - 1]))
189 prefix_len--;
190
191 sysroot = savestring (gdb_sysroot, prefix_len);
192 make_cleanup (xfree, sysroot);
193 }
194
195 /* If we're on a non-DOS-based system, backslashes won't be
196 understood as directory separator, so, convert them to forward
197 slashes, iff we're supposed to handle DOS-based file system
198 semantics for target paths. */
199 if (!DOS_BASED_FILE_SYSTEM && fskind == file_system_kind_dos_based)
200 {
201 char *p;
202
203 /* Avoid clobbering our input. */
204 p = alloca (strlen (in_pathname) + 1);
205 strcpy (p, in_pathname);
206 in_pathname = p;
207
208 for (; *p; p++)
209 {
210 if (*p == '\\')
211 *p = '/';
212 }
213 }
214
215 /* Note, we're interested in IS_TARGET_ABSOLUTE_PATH, not
216 IS_ABSOLUTE_PATH. The latter is for host paths only, while
217 IN_PATHNAME is a target path. For example, if we're supposed to
218 be handling DOS-like semantics we want to consider a
219 'c:/foo/bar.dll' path as an absolute path, even on a Unix box.
220 With such a path, before giving up on the sysroot, we'll try:
221
222 1st attempt, c:/foo/bar.dll ==> /sysroot/c:/foo/bar.dll
223 2nd attempt, c:/foo/bar.dll ==> /sysroot/c/foo/bar.dll
224 3rd attempt, c:/foo/bar.dll ==> /sysroot/foo/bar.dll
225 */
226
227 if (!IS_TARGET_ABSOLUTE_PATH (fskind, in_pathname) || gdb_sysroot_is_empty)
228 temp_pathname = xstrdup (in_pathname);
229 else
230 {
231 int need_dir_separator;
232
233 need_dir_separator = !IS_DIR_SEPARATOR (in_pathname[0]);
234
235 /* Cat the prefixed pathname together. */
236 temp_pathname = concat (sysroot,
237 need_dir_separator ? SLASH_STRING : "",
238 in_pathname, (char *) NULL);
239 }
240
241 /* Handle remote files. */
242 if (remote_filename_p (temp_pathname))
243 {
244 *fd = -1;
245 do_cleanups (old_chain);
246 return temp_pathname;
247 }
248
249 /* Now see if we can open it. */
250 found_file = gdb_open_cloexec (temp_pathname, O_RDONLY | O_BINARY, 0);
251 if (found_file < 0)
252 xfree (temp_pathname);
253
254 /* If the search in gdb_sysroot failed, and the path name has a
255 drive spec (e.g, c:/foo), try stripping ':' from the drive spec,
256 and retrying in the sysroot:
257 c:/foo/bar.dll ==> /sysroot/c/foo/bar.dll. */
258
259 if (found_file < 0
260 && !gdb_sysroot_is_empty
261 && HAS_TARGET_DRIVE_SPEC (fskind, in_pathname))
262 {
263 int need_dir_separator = !IS_DIR_SEPARATOR (in_pathname[2]);
264 char *drive = savestring (in_pathname, 1);
265
266 temp_pathname = concat (sysroot,
267 SLASH_STRING,
268 drive,
269 need_dir_separator ? SLASH_STRING : "",
270 in_pathname + 2, (char *) NULL);
271 xfree (drive);
272
273 found_file = gdb_open_cloexec (temp_pathname, O_RDONLY | O_BINARY, 0);
274 if (found_file < 0)
275 {
276 xfree (temp_pathname);
277
278 /* If the search in gdb_sysroot still failed, try fully
279 stripping the drive spec, and trying once more in the
280 sysroot before giving up.
281
282 c:/foo/bar.dll ==> /sysroot/foo/bar.dll. */
283
284 temp_pathname = concat (sysroot,
285 need_dir_separator ? SLASH_STRING : "",
286 in_pathname + 2, (char *) NULL);
287
288 found_file = gdb_open_cloexec (temp_pathname, O_RDONLY | O_BINARY, 0);
289 if (found_file < 0)
290 xfree (temp_pathname);
291 }
292 }
293
294 do_cleanups (old_chain);
295
296 /* We try to find the library in various ways. After each attempt,
297 either found_file >= 0 and temp_pathname is a malloc'd string, or
298 found_file < 0 and temp_pathname does not point to storage that
299 needs to be freed. */
300
301 if (found_file < 0)
302 temp_pathname = NULL;
303
304 /* If the search in gdb_sysroot failed, and the path name is
305 absolute at this point, make it relative. (openp will try and open the
306 file according to its absolute path otherwise, which is not what we want.)
307 Affects subsequent searches for this solib. */
308 if (found_file < 0 && IS_TARGET_ABSOLUTE_PATH (fskind, in_pathname))
309 {
310 /* First, get rid of any drive letters etc. */
311 while (!IS_TARGET_DIR_SEPARATOR (fskind, *in_pathname))
312 in_pathname++;
313
314 /* Next, get rid of all leading dir separators. */
315 while (IS_TARGET_DIR_SEPARATOR (fskind, *in_pathname))
316 in_pathname++;
317 }
318
319 /* If not found, search the solib_search_path (if any). */
320 if (found_file < 0 && solib_search_path != NULL)
321 found_file = openp (solib_search_path, OPF_TRY_CWD_FIRST,
322 in_pathname, O_RDONLY | O_BINARY, &temp_pathname);
323
324 /* If not found, next search the solib_search_path (if any) for the basename
325 only (ignoring the path). This is to allow reading solibs from a path
326 that differs from the opened path. */
327 if (found_file < 0 && solib_search_path != NULL)
328 found_file = openp (solib_search_path, OPF_TRY_CWD_FIRST,
329 target_lbasename (fskind, in_pathname),
330 O_RDONLY | O_BINARY, &temp_pathname);
331
332 /* If not found, try to use target supplied solib search method. */
333 if (found_file < 0 && ops->find_and_open_solib)
334 found_file = ops->find_and_open_solib (in_pathname, O_RDONLY | O_BINARY,
335 &temp_pathname);
336
337 /* If not found, next search the inferior's $PATH environment variable. */
338 if (found_file < 0 && gdb_sysroot_is_empty)
339 found_file = openp (get_in_environ (current_inferior ()->environment,
340 "PATH"),
341 OPF_TRY_CWD_FIRST, in_pathname, O_RDONLY | O_BINARY,
342 &temp_pathname);
343
344 /* If not found, next search the inferior's $LD_LIBRARY_PATH
345 environment variable. */
346 if (found_file < 0 && gdb_sysroot_is_empty)
347 found_file = openp (get_in_environ (current_inferior ()->environment,
348 "LD_LIBRARY_PATH"),
349 OPF_TRY_CWD_FIRST, in_pathname, O_RDONLY | O_BINARY,
350 &temp_pathname);
351
352 *fd = found_file;
353 return temp_pathname;
354 }
355
356 /* Open and return a BFD for the shared library PATHNAME. If FD is not -1,
357 it is used as file handle to open the file. Throws an error if the file
358 could not be opened. Handles both local and remote file access.
359
360 PATHNAME must be malloc'ed by the caller. It will be freed by this
361 function. If unsuccessful, the FD will be closed (unless FD was
362 -1). */
363
364 bfd *
365 solib_bfd_fopen (char *pathname, int fd)
366 {
367 bfd *abfd;
368
369 if (remote_filename_p (pathname))
370 {
371 gdb_assert (fd == -1);
372 abfd = remote_bfd_open (pathname, gnutarget);
373 }
374 else
375 {
376 abfd = gdb_bfd_open (pathname, gnutarget, fd);
377
378 if (abfd)
379 bfd_set_cacheable (abfd, 1);
380 }
381
382 if (!abfd)
383 {
384 make_cleanup (xfree, pathname);
385 error (_("Could not open `%s' as an executable file: %s"),
386 pathname, bfd_errmsg (bfd_get_error ()));
387 }
388
389 xfree (pathname);
390
391 return abfd;
392 }
393
394 /* Find shared library PATHNAME and open a BFD for it. */
395
396 bfd *
397 solib_bfd_open (char *pathname)
398 {
399 char *found_pathname;
400 int found_file;
401 bfd *abfd;
402 const struct bfd_arch_info *b;
403
404 /* Search for shared library file. */
405 found_pathname = solib_find (pathname, &found_file);
406 if (found_pathname == NULL)
407 {
408 /* Return failure if the file could not be found, so that we can
409 accumulate messages about missing libraries. */
410 if (errno == ENOENT)
411 return NULL;
412
413 perror_with_name (pathname);
414 }
415
416 /* Open bfd for shared library. */
417 abfd = solib_bfd_fopen (found_pathname, found_file);
418
419 /* Check bfd format. */
420 if (!bfd_check_format (abfd, bfd_object))
421 {
422 make_cleanup_bfd_unref (abfd);
423 error (_("`%s': not in executable format: %s"),
424 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
425 }
426
427 /* Check bfd arch. */
428 b = gdbarch_bfd_arch_info (target_gdbarch ());
429 if (!b->compatible (b, bfd_get_arch_info (abfd)))
430 warning (_("`%s': Shared library architecture %s is not compatible "
431 "with target architecture %s."), bfd_get_filename (abfd),
432 bfd_get_arch_info (abfd)->printable_name, b->printable_name);
433
434 return abfd;
435 }
436
437 /* Given a pointer to one of the shared objects in our list of mapped
438 objects, use the recorded name to open a bfd descriptor for the
439 object, build a section table, relocate all the section addresses
440 by the base address at which the shared object was mapped, and then
441 add the sections to the target's section table.
442
443 FIXME: In most (all?) cases the shared object file name recorded in
444 the dynamic linkage tables will be a fully qualified pathname. For
445 cases where it isn't, do we really mimic the systems search
446 mechanism correctly in the below code (particularly the tilde
447 expansion stuff?). */
448
449 static int
450 solib_map_sections (struct so_list *so)
451 {
452 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
453 char *filename;
454 struct target_section *p;
455 struct cleanup *old_chain;
456 bfd *abfd;
457
458 filename = tilde_expand (so->so_name);
459 old_chain = make_cleanup (xfree, filename);
460 abfd = ops->bfd_open (filename);
461 do_cleanups (old_chain);
462
463 if (abfd == NULL)
464 return 0;
465
466 /* Leave bfd open, core_xfer_memory and "info files" need it. */
467 so->abfd = abfd;
468
469 if (build_section_table (abfd, &so->sections, &so->sections_end))
470 {
471 error (_("Can't find the file sections in `%s': %s"),
472 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
473 }
474
475 for (p = so->sections; p < so->sections_end; p++)
476 {
477 /* Relocate the section binding addresses as recorded in the shared
478 object's file by the base address to which the object was actually
479 mapped. */
480 ops->relocate_section_addresses (so, p);
481
482 /* If the target didn't provide information about the address
483 range of the shared object, assume we want the location of
484 the .text section. */
485 if (so->addr_low == 0 && so->addr_high == 0
486 && strcmp (p->the_bfd_section->name, ".text") == 0)
487 {
488 so->addr_low = p->addr;
489 so->addr_high = p->endaddr;
490 }
491 }
492
493 /* Add the shared object's sections to the current set of file
494 section tables. Do this immediately after mapping the object so
495 that later nodes in the list can query this object, as is needed
496 in solib-osf.c. */
497 add_target_sections (so, so->sections, so->sections_end);
498
499 return 1;
500 }
501
502 /* Free symbol-file related contents of SO and reset for possible reloading
503 of SO. If we have opened a BFD for SO, close it. If we have placed SO's
504 sections in some target's section table, the caller is responsible for
505 removing them.
506
507 This function doesn't mess with objfiles at all. If there is an
508 objfile associated with SO that needs to be removed, the caller is
509 responsible for taking care of that. */
510
511 static void
512 clear_so (struct so_list *so)
513 {
514 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
515
516 if (so->sections)
517 {
518 xfree (so->sections);
519 so->sections = so->sections_end = NULL;
520 }
521
522 gdb_bfd_unref (so->abfd);
523 so->abfd = NULL;
524
525 /* Our caller closed the objfile, possibly via objfile_purge_solibs. */
526 so->symbols_loaded = 0;
527 so->objfile = NULL;
528
529 so->addr_low = so->addr_high = 0;
530
531 /* Restore the target-supplied file name. SO_NAME may be the path
532 of the symbol file. */
533 strcpy (so->so_name, so->so_original_name);
534
535 /* Do the same for target-specific data. */
536 if (ops->clear_so != NULL)
537 ops->clear_so (so);
538 }
539
540 /* Free the storage associated with the `struct so_list' object SO.
541 If we have opened a BFD for SO, close it.
542
543 The caller is responsible for removing SO from whatever list it is
544 a member of. If we have placed SO's sections in some target's
545 section table, the caller is responsible for removing them.
546
547 This function doesn't mess with objfiles at all. If there is an
548 objfile associated with SO that needs to be removed, the caller is
549 responsible for taking care of that. */
550
551 void
552 free_so (struct so_list *so)
553 {
554 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
555
556 clear_so (so);
557 ops->free_so (so);
558
559 xfree (so);
560 }
561
562
563 /* Return address of first so_list entry in master shared object list. */
564 struct so_list *
565 master_so_list (void)
566 {
567 return so_list_head;
568 }
569
570 /* Read in symbols for shared object SO. If SYMFILE_VERBOSE is set in FLAGS,
571 be chatty about it. Return non-zero if any symbols were actually
572 loaded. */
573
574 int
575 solib_read_symbols (struct so_list *so, int flags)
576 {
577 const int from_tty = flags & SYMFILE_VERBOSE;
578
579 if (so->symbols_loaded)
580 {
581 /* If needed, we've already warned in our caller. */
582 }
583 else if (so->abfd == NULL)
584 {
585 /* We've already warned about this library, when trying to open
586 it. */
587 }
588 else
589 {
590 volatile struct gdb_exception e;
591
592 flags |= current_inferior ()->symfile_flags;
593
594 TRY_CATCH (e, RETURN_MASK_ERROR)
595 {
596 struct section_addr_info *sap;
597
598 /* Have we already loaded this shared object? */
599 ALL_OBJFILES (so->objfile)
600 {
601 if (filename_cmp (so->objfile->name, so->so_name) == 0
602 && so->objfile->addr_low == so->addr_low)
603 break;
604 }
605 if (so->objfile != NULL)
606 break;
607
608 sap = build_section_addr_info_from_section_table (so->sections,
609 so->sections_end);
610 so->objfile = symbol_file_add_from_bfd (so->abfd,
611 flags, sap, OBJF_SHARED,
612 NULL);
613 so->objfile->addr_low = so->addr_low;
614 free_section_addr_info (sap);
615 }
616
617 if (e.reason < 0)
618 exception_fprintf (gdb_stderr, e, _("Error while reading shared"
619 " library symbols for %s:\n"),
620 so->so_name);
621 else
622 {
623 if (from_tty || info_verbose)
624 printf_unfiltered (_("Loaded symbols for %s\n"), so->so_name);
625 so->symbols_loaded = 1;
626 }
627 return 1;
628 }
629
630 return 0;
631 }
632
633 /* Return 1 if KNOWN->objfile is used by any other so_list object in the
634 SO_LIST_HEAD list. Return 0 otherwise. */
635
636 static int
637 solib_used (const struct so_list *const known)
638 {
639 const struct so_list *pivot;
640
641 for (pivot = so_list_head; pivot != NULL; pivot = pivot->next)
642 if (pivot != known && pivot->objfile == known->objfile)
643 return 1;
644 return 0;
645 }
646
647 /* Synchronize GDB's shared object list with inferior's.
648
649 Extract the list of currently loaded shared objects from the
650 inferior, and compare it with the list of shared objects currently
651 in GDB's so_list_head list. Edit so_list_head to bring it in sync
652 with the inferior's new list.
653
654 If we notice that the inferior has unloaded some shared objects,
655 free any symbolic info GDB had read about those shared objects.
656
657 Don't load symbolic info for any new shared objects; just add them
658 to the list, and leave their symbols_loaded flag clear.
659
660 If FROM_TTY is non-null, feel free to print messages about what
661 we're doing.
662
663 If TARGET is non-null, add the sections of all new shared objects
664 to TARGET's section table. Note that this doesn't remove any
665 sections for shared objects that have been unloaded, and it
666 doesn't check to see if the new shared objects are already present in
667 the section table. But we only use this for core files and
668 processes we've just attached to, so that's okay. */
669
670 static void
671 update_solib_list (int from_tty, struct target_ops *target)
672 {
673 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
674 struct so_list *inferior = ops->current_sos();
675 struct so_list *gdb, **gdb_link;
676
677 /* We can reach here due to changing solib-search-path or the
678 sysroot, before having any inferior. */
679 if (target_has_execution && !ptid_equal (inferior_ptid, null_ptid))
680 {
681 struct inferior *inf = current_inferior ();
682
683 /* If we are attaching to a running process for which we
684 have not opened a symbol file, we may be able to get its
685 symbols now! */
686 if (inf->attach_flag && symfile_objfile == NULL)
687 catch_errors (ops->open_symbol_file_object, &from_tty,
688 "Error reading attached process's symbol file.\n",
689 RETURN_MASK_ALL);
690 }
691
692 /* GDB and the inferior's dynamic linker each maintain their own
693 list of currently loaded shared objects; we want to bring the
694 former in sync with the latter. Scan both lists, seeing which
695 shared objects appear where. There are three cases:
696
697 - A shared object appears on both lists. This means that GDB
698 knows about it already, and it's still loaded in the inferior.
699 Nothing needs to happen.
700
701 - A shared object appears only on GDB's list. This means that
702 the inferior has unloaded it. We should remove the shared
703 object from GDB's tables.
704
705 - A shared object appears only on the inferior's list. This
706 means that it's just been loaded. We should add it to GDB's
707 tables.
708
709 So we walk GDB's list, checking each entry to see if it appears
710 in the inferior's list too. If it does, no action is needed, and
711 we remove it from the inferior's list. If it doesn't, the
712 inferior has unloaded it, and we remove it from GDB's list. By
713 the time we're done walking GDB's list, the inferior's list
714 contains only the new shared objects, which we then add. */
715
716 gdb = so_list_head;
717 gdb_link = &so_list_head;
718 while (gdb)
719 {
720 struct so_list *i = inferior;
721 struct so_list **i_link = &inferior;
722
723 /* Check to see whether the shared object *gdb also appears in
724 the inferior's current list. */
725 while (i)
726 {
727 if (ops->same)
728 {
729 if (ops->same (gdb, i))
730 break;
731 }
732 else
733 {
734 if (! filename_cmp (gdb->so_original_name, i->so_original_name))
735 break;
736 }
737
738 i_link = &i->next;
739 i = *i_link;
740 }
741
742 /* If the shared object appears on the inferior's list too, then
743 it's still loaded, so we don't need to do anything. Delete
744 it from the inferior's list, and leave it on GDB's list. */
745 if (i)
746 {
747 *i_link = i->next;
748 free_so (i);
749 gdb_link = &gdb->next;
750 gdb = *gdb_link;
751 }
752
753 /* If it's not on the inferior's list, remove it from GDB's tables. */
754 else
755 {
756 /* Notify any observer that the shared object has been
757 unloaded before we remove it from GDB's tables. */
758 observer_notify_solib_unloaded (gdb);
759
760 VEC_safe_push (char_ptr, current_program_space->deleted_solibs,
761 xstrdup (gdb->so_name));
762
763 *gdb_link = gdb->next;
764
765 /* Unless the user loaded it explicitly, free SO's objfile. */
766 if (gdb->objfile && ! (gdb->objfile->flags & OBJF_USERLOADED)
767 && !solib_used (gdb))
768 free_objfile (gdb->objfile);
769
770 /* Some targets' section tables might be referring to
771 sections from so->abfd; remove them. */
772 remove_target_sections (gdb, gdb->abfd);
773
774 free_so (gdb);
775 gdb = *gdb_link;
776 }
777 }
778
779 /* Now the inferior's list contains only shared objects that don't
780 appear in GDB's list --- those that are newly loaded. Add them
781 to GDB's shared object list. */
782 if (inferior)
783 {
784 int not_found = 0;
785 const char *not_found_filename = NULL;
786
787 struct so_list *i;
788
789 /* Add the new shared objects to GDB's list. */
790 *gdb_link = inferior;
791
792 /* Fill in the rest of each of the `struct so_list' nodes. */
793 for (i = inferior; i; i = i->next)
794 {
795 volatile struct gdb_exception e;
796
797 i->pspace = current_program_space;
798 VEC_safe_push (so_list_ptr, current_program_space->added_solibs, i);
799
800 TRY_CATCH (e, RETURN_MASK_ERROR)
801 {
802 /* Fill in the rest of the `struct so_list' node. */
803 if (!solib_map_sections (i))
804 {
805 not_found++;
806 if (not_found_filename == NULL)
807 not_found_filename = i->so_original_name;
808 }
809 }
810
811 if (e.reason < 0)
812 exception_fprintf (gdb_stderr, e,
813 _("Error while mapping shared "
814 "library sections:\n"));
815
816 /* Notify any observer that the shared object has been
817 loaded now that we've added it to GDB's tables. */
818 observer_notify_solib_loaded (i);
819 }
820
821 /* If a library was not found, issue an appropriate warning
822 message. We have to use a single call to warning in case the
823 front end does something special with warnings, e.g., pop up
824 a dialog box. It Would Be Nice if we could get a "warning: "
825 prefix on each line in the CLI front end, though - it doesn't
826 stand out well. */
827
828 if (not_found == 1)
829 warning (_("Could not load shared library symbols for %s.\n"
830 "Do you need \"set solib-search-path\" "
831 "or \"set sysroot\"?"),
832 not_found_filename);
833 else if (not_found > 1)
834 warning (_("\
835 Could not load shared library symbols for %d libraries, e.g. %s.\n\
836 Use the \"info sharedlibrary\" command to see the complete listing.\n\
837 Do you need \"set solib-search-path\" or \"set sysroot\"?"),
838 not_found, not_found_filename);
839 }
840 }
841
842
843 /* Return non-zero if NAME is the libpthread shared library.
844
845 Uses a fairly simplistic heuristic approach where we check
846 the file name against "/libpthread". This can lead to false
847 positives, but this should be good enough in practice. */
848
849 int
850 libpthread_name_p (const char *name)
851 {
852 return (strstr (name, "/libpthread") != NULL);
853 }
854
855 /* Return non-zero if SO is the libpthread shared library. */
856
857 static int
858 libpthread_solib_p (struct so_list *so)
859 {
860 return libpthread_name_p (so->so_name);
861 }
862
863 /* Read in symbolic information for any shared objects whose names
864 match PATTERN. (If we've already read a shared object's symbol
865 info, leave it alone.) If PATTERN is zero, read them all.
866
867 If READSYMS is 0, defer reading symbolic information until later
868 but still do any needed low level processing.
869
870 FROM_TTY and TARGET are as described for update_solib_list, above. */
871
872 void
873 solib_add (char *pattern, int from_tty,
874 struct target_ops *target, int readsyms)
875 {
876 struct so_list *gdb;
877
878 current_program_space->solib_add_generation++;
879
880 if (pattern)
881 {
882 char *re_err = re_comp (pattern);
883
884 if (re_err)
885 error (_("Invalid regexp: %s"), re_err);
886 }
887
888 update_solib_list (from_tty, target);
889
890 /* Walk the list of currently loaded shared libraries, and read
891 symbols for any that match the pattern --- or any whose symbols
892 aren't already loaded, if no pattern was given. */
893 {
894 int any_matches = 0;
895 int loaded_any_symbols = 0;
896 const int flags =
897 SYMFILE_DEFER_BP_RESET | (from_tty ? SYMFILE_VERBOSE : 0);
898
899 for (gdb = so_list_head; gdb; gdb = gdb->next)
900 if (! pattern || re_exec (gdb->so_name))
901 {
902 /* Normally, we would read the symbols from that library
903 only if READSYMS is set. However, we're making a small
904 exception for the pthread library, because we sometimes
905 need the library symbols to be loaded in order to provide
906 thread support (x86-linux for instance). */
907 const int add_this_solib =
908 (readsyms || libpthread_solib_p (gdb));
909
910 any_matches = 1;
911 if (add_this_solib)
912 {
913 if (gdb->symbols_loaded)
914 {
915 /* If no pattern was given, be quiet for shared
916 libraries we have already loaded. */
917 if (pattern && (from_tty || info_verbose))
918 printf_unfiltered (_("Symbols already loaded for %s\n"),
919 gdb->so_name);
920 }
921 else if (solib_read_symbols (gdb, flags))
922 loaded_any_symbols = 1;
923 }
924 }
925
926 if (loaded_any_symbols)
927 breakpoint_re_set ();
928
929 if (from_tty && pattern && ! any_matches)
930 printf_unfiltered
931 ("No loaded shared libraries match the pattern `%s'.\n", pattern);
932
933 if (loaded_any_symbols)
934 {
935 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
936
937 /* Getting new symbols may change our opinion about what is
938 frameless. */
939 reinit_frame_cache ();
940
941 ops->special_symbol_handling ();
942 }
943 }
944 }
945
946 /* Implement the "info sharedlibrary" command. Walk through the
947 shared library list and print information about each attached
948 library matching PATTERN. If PATTERN is elided, print them
949 all. */
950
951 static void
952 info_sharedlibrary_command (char *pattern, int from_tty)
953 {
954 struct so_list *so = NULL; /* link map state variable */
955 int so_missing_debug_info = 0;
956 int addr_width;
957 int nr_libs;
958 struct cleanup *table_cleanup;
959 struct gdbarch *gdbarch = target_gdbarch ();
960 struct ui_out *uiout = current_uiout;
961
962 if (pattern)
963 {
964 char *re_err = re_comp (pattern);
965
966 if (re_err)
967 error (_("Invalid regexp: %s"), re_err);
968 }
969
970 /* "0x", a little whitespace, and two hex digits per byte of pointers. */
971 addr_width = 4 + (gdbarch_ptr_bit (gdbarch) / 4);
972
973 update_solib_list (from_tty, 0);
974
975 /* make_cleanup_ui_out_table_begin_end needs to know the number of
976 rows, so we need to make two passes over the libs. */
977
978 for (nr_libs = 0, so = so_list_head; so; so = so->next)
979 {
980 if (so->so_name[0])
981 {
982 if (pattern && ! re_exec (so->so_name))
983 continue;
984 ++nr_libs;
985 }
986 }
987
988 table_cleanup =
989 make_cleanup_ui_out_table_begin_end (uiout, 4, nr_libs,
990 "SharedLibraryTable");
991
992 /* The "- 1" is because ui_out adds one space between columns. */
993 ui_out_table_header (uiout, addr_width - 1, ui_left, "from", "From");
994 ui_out_table_header (uiout, addr_width - 1, ui_left, "to", "To");
995 ui_out_table_header (uiout, 12 - 1, ui_left, "syms-read", "Syms Read");
996 ui_out_table_header (uiout, 0, ui_noalign,
997 "name", "Shared Object Library");
998
999 ui_out_table_body (uiout);
1000
1001 for (so = so_list_head; so; so = so->next)
1002 {
1003 struct cleanup *lib_cleanup;
1004
1005 if (! so->so_name[0])
1006 continue;
1007 if (pattern && ! re_exec (so->so_name))
1008 continue;
1009
1010 lib_cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, "lib");
1011
1012 if (so->addr_high != 0)
1013 {
1014 ui_out_field_core_addr (uiout, "from", gdbarch, so->addr_low);
1015 ui_out_field_core_addr (uiout, "to", gdbarch, so->addr_high);
1016 }
1017 else
1018 {
1019 ui_out_field_skip (uiout, "from");
1020 ui_out_field_skip (uiout, "to");
1021 }
1022
1023 if (! ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ()))
1024 && so->symbols_loaded
1025 && !objfile_has_symbols (so->objfile))
1026 {
1027 so_missing_debug_info = 1;
1028 ui_out_field_string (uiout, "syms-read", "Yes (*)");
1029 }
1030 else
1031 ui_out_field_string (uiout, "syms-read",
1032 so->symbols_loaded ? "Yes" : "No");
1033
1034 ui_out_field_string (uiout, "name", so->so_name);
1035
1036 ui_out_text (uiout, "\n");
1037
1038 do_cleanups (lib_cleanup);
1039 }
1040
1041 do_cleanups (table_cleanup);
1042
1043 if (nr_libs == 0)
1044 {
1045 if (pattern)
1046 ui_out_message (uiout, 0,
1047 _("No shared libraries matched.\n"));
1048 else
1049 ui_out_message (uiout, 0,
1050 _("No shared libraries loaded at this time.\n"));
1051 }
1052 else
1053 {
1054 if (so_missing_debug_info)
1055 ui_out_message (uiout, 0,
1056 _("(*): Shared library is missing "
1057 "debugging information.\n"));
1058 }
1059 }
1060
1061 /* Return 1 if ADDRESS lies within SOLIB. */
1062
1063 int
1064 solib_contains_address_p (const struct so_list *const solib,
1065 CORE_ADDR address)
1066 {
1067 struct target_section *p;
1068
1069 for (p = solib->sections; p < solib->sections_end; p++)
1070 if (p->addr <= address && address < p->endaddr)
1071 return 1;
1072
1073 return 0;
1074 }
1075
1076 /* If ADDRESS is in a shared lib in program space PSPACE, return its
1077 name.
1078
1079 Provides a hook for other gdb routines to discover whether or not a
1080 particular address is within the mapped address space of a shared
1081 library.
1082
1083 For example, this routine is called at one point to disable
1084 breakpoints which are in shared libraries that are not currently
1085 mapped in. */
1086
1087 char *
1088 solib_name_from_address (struct program_space *pspace, CORE_ADDR address)
1089 {
1090 struct so_list *so = NULL;
1091
1092 for (so = pspace->so_list; so; so = so->next)
1093 if (solib_contains_address_p (so, address))
1094 return (so->so_name);
1095
1096 return (0);
1097 }
1098
1099 /* Return whether the data starting at VADDR, size SIZE, must be kept
1100 in a core file for shared libraries loaded before "gcore" is used
1101 to be handled correctly when the core file is loaded. This only
1102 applies when the section would otherwise not be kept in the core
1103 file (in particular, for readonly sections). */
1104
1105 int
1106 solib_keep_data_in_core (CORE_ADDR vaddr, unsigned long size)
1107 {
1108 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
1109
1110 if (ops->keep_data_in_core)
1111 return ops->keep_data_in_core (vaddr, size);
1112 else
1113 return 0;
1114 }
1115
1116 /* Called by free_all_symtabs */
1117
1118 void
1119 clear_solib (void)
1120 {
1121 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
1122
1123 /* This function is expected to handle ELF shared libraries. It is
1124 also used on Solaris, which can run either ELF or a.out binaries
1125 (for compatibility with SunOS 4), both of which can use shared
1126 libraries. So we don't know whether we have an ELF executable or
1127 an a.out executable until the user chooses an executable file.
1128
1129 ELF shared libraries don't get mapped into the address space
1130 until after the program starts, so we'd better not try to insert
1131 breakpoints in them immediately. We have to wait until the
1132 dynamic linker has loaded them; we'll hit a bp_shlib_event
1133 breakpoint (look for calls to create_solib_event_breakpoint) when
1134 it's ready.
1135
1136 SunOS shared libraries seem to be different --- they're present
1137 as soon as the process begins execution, so there's no need to
1138 put off inserting breakpoints. There's also nowhere to put a
1139 bp_shlib_event breakpoint, so if we put it off, we'll never get
1140 around to it.
1141
1142 So: disable breakpoints only if we're using ELF shared libs. */
1143 if (exec_bfd != NULL
1144 && bfd_get_flavour (exec_bfd) != bfd_target_aout_flavour)
1145 disable_breakpoints_in_shlibs ();
1146
1147 while (so_list_head)
1148 {
1149 struct so_list *so = so_list_head;
1150
1151 so_list_head = so->next;
1152 observer_notify_solib_unloaded (so);
1153 if (so->abfd)
1154 remove_target_sections (so, so->abfd);
1155 free_so (so);
1156 }
1157
1158 ops->clear_solib ();
1159 }
1160
1161 /* Shared library startup support. When GDB starts up the inferior,
1162 it nurses it along (through the shell) until it is ready to execute
1163 its first instruction. At this point, this function gets
1164 called. */
1165
1166 void
1167 solib_create_inferior_hook (int from_tty)
1168 {
1169 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
1170
1171 ops->solib_create_inferior_hook (from_tty);
1172 }
1173
1174 /* Check to see if an address is in the dynamic loader's dynamic
1175 symbol resolution code. Return 1 if so, 0 otherwise. */
1176
1177 int
1178 in_solib_dynsym_resolve_code (CORE_ADDR pc)
1179 {
1180 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
1181
1182 return ops->in_dynsym_resolve_code (pc);
1183 }
1184
1185 /* Implements the "sharedlibrary" command. */
1186
1187 static void
1188 sharedlibrary_command (char *args, int from_tty)
1189 {
1190 dont_repeat ();
1191 solib_add (args, from_tty, (struct target_ops *) 0, 1);
1192 }
1193
1194 /* Implements the command "nosharedlibrary", which discards symbols
1195 that have been auto-loaded from shared libraries. Symbols from
1196 shared libraries that were added by explicit request of the user
1197 are not discarded. Also called from remote.c. */
1198
1199 void
1200 no_shared_libraries (char *ignored, int from_tty)
1201 {
1202 /* The order of the two routines below is important: clear_solib notifies
1203 the solib_unloaded observers, and some of these observers might need
1204 access to their associated objfiles. Therefore, we can not purge the
1205 solibs' objfiles before clear_solib has been called. */
1206
1207 clear_solib ();
1208 objfile_purge_solibs ();
1209 }
1210
1211 /* Reload shared libraries, but avoid reloading the same symbol file
1212 we already have loaded. */
1213
1214 static void
1215 reload_shared_libraries_1 (int from_tty)
1216 {
1217 struct so_list *so;
1218 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
1219
1220 for (so = so_list_head; so != NULL; so = so->next)
1221 {
1222 char *filename, *found_pathname = NULL;
1223 bfd *abfd;
1224 int was_loaded = so->symbols_loaded;
1225 const int flags =
1226 SYMFILE_DEFER_BP_RESET | (from_tty ? SYMFILE_VERBOSE : 0);
1227
1228 filename = tilde_expand (so->so_original_name);
1229 make_cleanup (xfree, filename);
1230 abfd = solib_bfd_open (filename);
1231 if (abfd != NULL)
1232 {
1233 found_pathname = xstrdup (bfd_get_filename (abfd));
1234 make_cleanup (xfree, found_pathname);
1235 gdb_bfd_unref (abfd);
1236 }
1237
1238 /* If this shared library is no longer associated with its previous
1239 symbol file, close that. */
1240 if ((found_pathname == NULL && was_loaded)
1241 || (found_pathname != NULL
1242 && filename_cmp (found_pathname, so->so_name) != 0))
1243 {
1244 if (so->objfile && ! (so->objfile->flags & OBJF_USERLOADED)
1245 && !solib_used (so))
1246 free_objfile (so->objfile);
1247 remove_target_sections (so, so->abfd);
1248 clear_so (so);
1249 }
1250
1251 /* If this shared library is now associated with a new symbol
1252 file, open it. */
1253 if (found_pathname != NULL
1254 && (!was_loaded
1255 || filename_cmp (found_pathname, so->so_name) != 0))
1256 {
1257 volatile struct gdb_exception e;
1258
1259 TRY_CATCH (e, RETURN_MASK_ERROR)
1260 solib_map_sections (so);
1261
1262 if (e.reason < 0)
1263 exception_fprintf (gdb_stderr, e,
1264 _("Error while mapping "
1265 "shared library sections:\n"));
1266 else if (auto_solib_add || was_loaded || libpthread_solib_p (so))
1267 solib_read_symbols (so, flags);
1268 }
1269 }
1270
1271 do_cleanups (old_chain);
1272 }
1273
1274 static void
1275 reload_shared_libraries (char *ignored, int from_tty,
1276 struct cmd_list_element *e)
1277 {
1278 const struct target_so_ops *ops;
1279
1280 reload_shared_libraries_1 (from_tty);
1281
1282 ops = solib_ops (target_gdbarch ());
1283
1284 /* Creating inferior hooks here has two purposes. First, if we reload
1285 shared libraries then the address of solib breakpoint we've computed
1286 previously might be no longer valid. For example, if we forgot to set
1287 solib-absolute-prefix and are setting it right now, then the previous
1288 breakpoint address is plain wrong. Second, installing solib hooks
1289 also implicitly figures were ld.so is and loads symbols for it.
1290 Absent this call, if we've just connected to a target and set
1291 solib-absolute-prefix or solib-search-path, we'll lose all information
1292 about ld.so. */
1293 if (target_has_execution)
1294 {
1295 /* Reset or free private data structures not associated with
1296 so_list entries. */
1297 ops->clear_solib ();
1298
1299 /* Remove any previous solib event breakpoint. This is usually
1300 done in common code, at breakpoint_init_inferior time, but
1301 we're not really starting up the inferior here. */
1302 remove_solib_event_breakpoints ();
1303
1304 solib_create_inferior_hook (from_tty);
1305 }
1306
1307 /* Sometimes the platform-specific hook loads initial shared
1308 libraries, and sometimes it doesn't. If it doesn't FROM_TTY will be
1309 incorrectly 0 but such solib targets should be fixed anyway. If we
1310 made all the inferior hook methods consistent, this call could be
1311 removed. Call it only after the solib target has been initialized by
1312 solib_create_inferior_hook. */
1313
1314 solib_add (NULL, 0, NULL, auto_solib_add);
1315
1316 breakpoint_re_set ();
1317
1318 /* We may have loaded or unloaded debug info for some (or all)
1319 shared libraries. However, frames may still reference them. For
1320 example, a frame's unwinder might still point at DWARF FDE
1321 structures that are now freed. Also, getting new symbols may
1322 change our opinion about what is frameless. */
1323 reinit_frame_cache ();
1324
1325 ops->special_symbol_handling ();
1326 }
1327
1328 static void
1329 show_auto_solib_add (struct ui_file *file, int from_tty,
1330 struct cmd_list_element *c, const char *value)
1331 {
1332 fprintf_filtered (file, _("Autoloading of shared library symbols is %s.\n"),
1333 value);
1334 }
1335
1336
1337 /* Handler for library-specific lookup of global symbol NAME in OBJFILE. Call
1338 the library-specific handler if it is installed for the current target. */
1339
1340 struct symbol *
1341 solib_global_lookup (const struct objfile *objfile,
1342 const char *name,
1343 const domain_enum domain)
1344 {
1345 const struct target_so_ops *ops = solib_ops (target_gdbarch ());
1346
1347 if (ops->lookup_lib_global_symbol != NULL)
1348 return ops->lookup_lib_global_symbol (objfile, name, domain);
1349 return NULL;
1350 }
1351
1352 /* Lookup the value for a specific symbol from dynamic symbol table. Look
1353 up symbol from ABFD. MATCH_SYM is a callback function to determine
1354 whether to pick up a symbol. DATA is the input of this callback
1355 function. Return NULL if symbol is not found. */
1356
1357 CORE_ADDR
1358 gdb_bfd_lookup_symbol_from_symtab (bfd *abfd,
1359 int (*match_sym) (asymbol *, void *),
1360 void *data)
1361 {
1362 long storage_needed = bfd_get_symtab_upper_bound (abfd);
1363 CORE_ADDR symaddr = 0;
1364
1365 if (storage_needed > 0)
1366 {
1367 unsigned int i;
1368
1369 asymbol **symbol_table = (asymbol **) xmalloc (storage_needed);
1370 struct cleanup *back_to = make_cleanup (xfree, symbol_table);
1371 unsigned int number_of_symbols =
1372 bfd_canonicalize_symtab (abfd, symbol_table);
1373
1374 for (i = 0; i < number_of_symbols; i++)
1375 {
1376 asymbol *sym = *symbol_table++;
1377
1378 if (match_sym (sym, data))
1379 {
1380 /* BFD symbols are section relative. */
1381 symaddr = sym->value + sym->section->vma;
1382 break;
1383 }
1384 }
1385 do_cleanups (back_to);
1386 }
1387
1388 return symaddr;
1389 }
1390
1391 /* Lookup the value for a specific symbol from symbol table. Look up symbol
1392 from ABFD. MATCH_SYM is a callback function to determine whether to pick
1393 up a symbol. DATA is the input of this callback function. Return NULL
1394 if symbol is not found. */
1395
1396 static CORE_ADDR
1397 bfd_lookup_symbol_from_dyn_symtab (bfd *abfd,
1398 int (*match_sym) (asymbol *, void *),
1399 void *data)
1400 {
1401 long storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
1402 CORE_ADDR symaddr = 0;
1403
1404 if (storage_needed > 0)
1405 {
1406 unsigned int i;
1407 asymbol **symbol_table = (asymbol **) xmalloc (storage_needed);
1408 struct cleanup *back_to = make_cleanup (xfree, symbol_table);
1409 unsigned int number_of_symbols =
1410 bfd_canonicalize_dynamic_symtab (abfd, symbol_table);
1411
1412 for (i = 0; i < number_of_symbols; i++)
1413 {
1414 asymbol *sym = *symbol_table++;
1415
1416 if (match_sym (sym, data))
1417 {
1418 /* BFD symbols are section relative. */
1419 symaddr = sym->value + sym->section->vma;
1420 break;
1421 }
1422 }
1423 do_cleanups (back_to);
1424 }
1425 return symaddr;
1426 }
1427
1428 /* Lookup the value for a specific symbol from symbol table and dynamic
1429 symbol table. Look up symbol from ABFD. MATCH_SYM is a callback
1430 function to determine whether to pick up a symbol. DATA is the
1431 input of this callback function. Return NULL if symbol is not
1432 found. */
1433
1434 CORE_ADDR
1435 gdb_bfd_lookup_symbol (bfd *abfd,
1436 int (*match_sym) (asymbol *, void *),
1437 void *data)
1438 {
1439 CORE_ADDR symaddr = gdb_bfd_lookup_symbol_from_symtab (abfd, match_sym, data);
1440
1441 /* On FreeBSD, the dynamic linker is stripped by default. So we'll
1442 have to check the dynamic string table too. */
1443 if (symaddr == 0)
1444 symaddr = bfd_lookup_symbol_from_dyn_symtab (abfd, match_sym, data);
1445
1446 return symaddr;
1447 }
1448
1449 extern initialize_file_ftype _initialize_solib; /* -Wmissing-prototypes */
1450
1451 void
1452 _initialize_solib (void)
1453 {
1454 solib_data = gdbarch_data_register_pre_init (solib_init);
1455
1456 add_com ("sharedlibrary", class_files, sharedlibrary_command,
1457 _("Load shared object library symbols for files matching REGEXP."));
1458 add_info ("sharedlibrary", info_sharedlibrary_command,
1459 _("Status of loaded shared object libraries."));
1460 add_com ("nosharedlibrary", class_files, no_shared_libraries,
1461 _("Unload all shared object library symbols."));
1462
1463 add_setshow_boolean_cmd ("auto-solib-add", class_support,
1464 &auto_solib_add, _("\
1465 Set autoloading of shared library symbols."), _("\
1466 Show autoloading of shared library symbols."), _("\
1467 If \"on\", symbols from all shared object libraries will be loaded\n\
1468 automatically when the inferior begins execution, when the dynamic linker\n\
1469 informs gdb that a new library has been loaded, or when attaching to the\n\
1470 inferior. Otherwise, symbols must be loaded manually, using \
1471 `sharedlibrary'."),
1472 NULL,
1473 show_auto_solib_add,
1474 &setlist, &showlist);
1475
1476 add_setshow_filename_cmd ("sysroot", class_support,
1477 &gdb_sysroot, _("\
1478 Set an alternate system root."), _("\
1479 Show the current system root."), _("\
1480 The system root is used to load absolute shared library symbol files.\n\
1481 For other (relative) files, you can add directories using\n\
1482 `set solib-search-path'."),
1483 reload_shared_libraries,
1484 NULL,
1485 &setlist, &showlist);
1486
1487 add_alias_cmd ("solib-absolute-prefix", "sysroot", class_support, 0,
1488 &setlist);
1489 add_alias_cmd ("solib-absolute-prefix", "sysroot", class_support, 0,
1490 &showlist);
1491
1492 add_setshow_optional_filename_cmd ("solib-search-path", class_support,
1493 &solib_search_path, _("\
1494 Set the search path for loading non-absolute shared library symbol files."),
1495 _("\
1496 Show the search path for loading non-absolute shared library symbol files."),
1497 _("\
1498 This takes precedence over the environment variables \
1499 PATH and LD_LIBRARY_PATH."),
1500 reload_shared_libraries,
1501 show_solib_search_path,
1502 &setlist, &showlist);
1503 }
This page took 0.061413 seconds and 4 git commands to generate.