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