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