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