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