gdb/testsuite: make test names unique in gdb.python/py-format-string.exp
[deliverable/binutils-gdb.git] / gdb / solib-svr4.c
CommitLineData
ab31aa69 1/* Handle SVR4 shared libraries for GDB, the GNU Debugger.
2f4950cd 2
3666a048 3 Copyright (C) 1990-2021 Free Software Foundation, Inc.
13437d4b
KB
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
13437d4b
KB
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
13437d4b 19
13437d4b
KB
20#include "defs.h"
21
13437d4b 22#include "elf/external.h"
21479ded 23#include "elf/common.h"
f7856c8f 24#include "elf/mips.h"
13437d4b
KB
25
26#include "symtab.h"
27#include "bfd.h"
28#include "symfile.h"
29#include "objfiles.h"
30#include "gdbcore.h"
13437d4b 31#include "target.h"
13437d4b 32#include "inferior.h"
45741a9c 33#include "infrun.h"
fb14de7b 34#include "regcache.h"
2020b7ab 35#include "gdbthread.h"
76727919 36#include "observable.h"
13437d4b
KB
37
38#include "solist.h"
bba93f6c 39#include "solib.h"
13437d4b
KB
40#include "solib-svr4.h"
41
2f4950cd 42#include "bfd-target.h"
cc10cae3 43#include "elf-bfd.h"
2f4950cd 44#include "exec.h"
8d4e36ba 45#include "auxv.h"
695c3173 46#include "gdb_bfd.h"
f9e14852 47#include "probe.h"
2f4950cd 48
e5e2b9ff 49static struct link_map_offsets *svr4_fetch_link_map_offsets (void);
d5a921c9 50static int svr4_have_link_map_offsets (void);
9f2982ff 51static void svr4_relocate_main_executable (void);
f9e14852 52static void svr4_free_library_list (void *p_list);
7905fc35 53static void probes_table_remove_objfile_probes (struct objfile *objfile);
626ca2c0
CB
54static void svr4_iterate_over_objfiles_in_search_order (
55 struct gdbarch *gdbarch, iterate_over_objfiles_in_search_order_cb_ftype *cb,
56 void *cb_data, struct objfile *objfile);
57
1c4dcb57 58
13437d4b
KB
59/* On SVR4 systems, a list of symbols in the dynamic linker where
60 GDB can try to place a breakpoint to monitor shared library
61 events.
62
63 If none of these symbols are found, or other errors occur, then
64 SVR4 systems will fall back to using a symbol as the "startup
65 mapping complete" breakpoint address. */
66
bc043ef3 67static const char * const solib_break_names[] =
13437d4b
KB
68{
69 "r_debug_state",
70 "_r_debug_state",
71 "_dl_debug_state",
72 "rtld_db_dlactivity",
4c7dcb84 73 "__dl_rtld_db_dlactivity",
1f72e589 74 "_rtld_debug_state",
4c0122c8 75
13437d4b
KB
76 NULL
77};
13437d4b 78
bc043ef3 79static const char * const bkpt_names[] =
13437d4b 80{
13437d4b 81 "_start",
ad3dcc5c 82 "__start",
13437d4b
KB
83 "main",
84 NULL
85};
13437d4b 86
bc043ef3 87static const char * const main_name_list[] =
13437d4b
KB
88{
89 "main_$main",
90 NULL
91};
92
f9e14852
GB
93/* What to do when a probe stop occurs. */
94
95enum probe_action
96{
97 /* Something went seriously wrong. Stop using probes and
98 revert to using the older interface. */
99 PROBES_INTERFACE_FAILED,
100
101 /* No action is required. The shared object list is still
102 valid. */
103 DO_NOTHING,
104
105 /* The shared object list should be reloaded entirely. */
106 FULL_RELOAD,
107
108 /* Attempt to incrementally update the shared object list. If
109 the update fails or is not possible, fall back to reloading
110 the list in full. */
111 UPDATE_OR_RELOAD,
112};
113
114/* A probe's name and its associated action. */
115
116struct probe_info
117{
118 /* The name of the probe. */
119 const char *name;
120
121 /* What to do when a probe stop occurs. */
122 enum probe_action action;
123};
124
125/* A list of named probes and their associated actions. If all
126 probes are present in the dynamic linker then the probes-based
127 interface will be used. */
128
129static const struct probe_info probe_info[] =
130{
131 { "init_start", DO_NOTHING },
132 { "init_complete", FULL_RELOAD },
133 { "map_start", DO_NOTHING },
134 { "map_failed", DO_NOTHING },
135 { "reloc_complete", UPDATE_OR_RELOAD },
136 { "unmap_start", DO_NOTHING },
137 { "unmap_complete", FULL_RELOAD },
138};
139
140#define NUM_PROBES ARRAY_SIZE (probe_info)
141
4d7b2d5b
JB
142/* Return non-zero if GDB_SO_NAME and INFERIOR_SO_NAME represent
143 the same shared library. */
144
145static int
146svr4_same_1 (const char *gdb_so_name, const char *inferior_so_name)
147{
148 if (strcmp (gdb_so_name, inferior_so_name) == 0)
149 return 1;
150
151 /* On Solaris, when starting inferior we think that dynamic linker is
d989b283
PP
152 /usr/lib/ld.so.1, but later on, the table of loaded shared libraries
153 contains /lib/ld.so.1. Sometimes one file is a link to another, but
4d7b2d5b
JB
154 sometimes they have identical content, but are not linked to each
155 other. We don't restrict this check for Solaris, but the chances
156 of running into this situation elsewhere are very low. */
157 if (strcmp (gdb_so_name, "/usr/lib/ld.so.1") == 0
158 && strcmp (inferior_so_name, "/lib/ld.so.1") == 0)
159 return 1;
160
7307a73a 161 /* Similarly, we observed the same issue with amd64 and sparcv9, but with
4d7b2d5b 162 different locations. */
7307a73a
RO
163 if (strcmp (gdb_so_name, "/usr/lib/amd64/ld.so.1") == 0
164 && strcmp (inferior_so_name, "/lib/amd64/ld.so.1") == 0)
165 return 1;
166
4d7b2d5b
JB
167 if (strcmp (gdb_so_name, "/usr/lib/sparcv9/ld.so.1") == 0
168 && strcmp (inferior_so_name, "/lib/sparcv9/ld.so.1") == 0)
169 return 1;
170
171 return 0;
172}
173
174static int
175svr4_same (struct so_list *gdb, struct so_list *inferior)
176{
177 return (svr4_same_1 (gdb->so_original_name, inferior->so_original_name));
178}
179
a7961323 180static std::unique_ptr<lm_info_svr4>
3957565a 181lm_info_read (CORE_ADDR lm_addr)
13437d4b 182{
4b188b9f 183 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
a7961323 184 std::unique_ptr<lm_info_svr4> lm_info;
3957565a 185
a7961323 186 gdb::byte_vector lm (lmo->link_map_size);
3957565a 187
a7961323
TT
188 if (target_read_memory (lm_addr, lm.data (), lmo->link_map_size) != 0)
189 warning (_("Error reading shared library list entry at %s"),
190 paddress (target_gdbarch (), lm_addr));
3957565a
JK
191 else
192 {
f5656ead 193 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
13437d4b 194
a7961323 195 lm_info.reset (new lm_info_svr4);
3957565a
JK
196 lm_info->lm_addr = lm_addr;
197
198 lm_info->l_addr_inferior = extract_typed_address (&lm[lmo->l_addr_offset],
199 ptr_type);
200 lm_info->l_ld = extract_typed_address (&lm[lmo->l_ld_offset], ptr_type);
201 lm_info->l_next = extract_typed_address (&lm[lmo->l_next_offset],
202 ptr_type);
203 lm_info->l_prev = extract_typed_address (&lm[lmo->l_prev_offset],
204 ptr_type);
205 lm_info->l_name = extract_typed_address (&lm[lmo->l_name_offset],
206 ptr_type);
207 }
208
3957565a 209 return lm_info;
13437d4b
KB
210}
211
cc10cae3 212static int
b23518f0 213has_lm_dynamic_from_link_map (void)
cc10cae3
AO
214{
215 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
216
cfaefc65 217 return lmo->l_ld_offset >= 0;
cc10cae3
AO
218}
219
cc10cae3 220static CORE_ADDR
f65ce5fb 221lm_addr_check (const struct so_list *so, bfd *abfd)
cc10cae3 222{
d0e449a1
SM
223 lm_info_svr4 *li = (lm_info_svr4 *) so->lm_info;
224
225 if (!li->l_addr_p)
cc10cae3
AO
226 {
227 struct bfd_section *dyninfo_sect;
28f34a8f 228 CORE_ADDR l_addr, l_dynaddr, dynaddr;
cc10cae3 229
d0e449a1 230 l_addr = li->l_addr_inferior;
cc10cae3 231
b23518f0 232 if (! abfd || ! has_lm_dynamic_from_link_map ())
cc10cae3
AO
233 goto set_addr;
234
d0e449a1 235 l_dynaddr = li->l_ld;
cc10cae3
AO
236
237 dyninfo_sect = bfd_get_section_by_name (abfd, ".dynamic");
238 if (dyninfo_sect == NULL)
239 goto set_addr;
240
fd361982 241 dynaddr = bfd_section_vma (dyninfo_sect);
cc10cae3
AO
242
243 if (dynaddr + l_addr != l_dynaddr)
244 {
28f34a8f 245 CORE_ADDR align = 0x1000;
4e1fc9c9 246 CORE_ADDR minpagesize = align;
28f34a8f 247
cc10cae3
AO
248 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
249 {
250 Elf_Internal_Ehdr *ehdr = elf_tdata (abfd)->elf_header;
251 Elf_Internal_Phdr *phdr = elf_tdata (abfd)->phdr;
252 int i;
253
254 align = 1;
255
256 for (i = 0; i < ehdr->e_phnum; i++)
257 if (phdr[i].p_type == PT_LOAD && phdr[i].p_align > align)
258 align = phdr[i].p_align;
4e1fc9c9
JK
259
260 minpagesize = get_elf_backend_data (abfd)->minpagesize;
cc10cae3
AO
261 }
262
263 /* Turn it into a mask. */
264 align--;
265
266 /* If the changes match the alignment requirements, we
267 assume we're using a core file that was generated by the
268 same binary, just prelinked with a different base offset.
269 If it doesn't match, we may have a different binary, the
270 same binary with the dynamic table loaded at an unrelated
271 location, or anything, really. To avoid regressions,
272 don't adjust the base offset in the latter case, although
273 odds are that, if things really changed, debugging won't
5c0d192f
JK
274 quite work.
275
276 One could expect more the condition
277 ((l_addr & align) == 0 && ((l_dynaddr - dynaddr) & align) == 0)
278 but the one below is relaxed for PPC. The PPC kernel supports
279 either 4k or 64k page sizes. To be prepared for 64k pages,
280 PPC ELF files are built using an alignment requirement of 64k.
281 However, when running on a kernel supporting 4k pages, the memory
282 mapping of the library may not actually happen on a 64k boundary!
283
284 (In the usual case where (l_addr & align) == 0, this check is
4e1fc9c9
JK
285 equivalent to the possibly expected check above.)
286
287 Even on PPC it must be zero-aligned at least for MINPAGESIZE. */
5c0d192f 288
02835898
JK
289 l_addr = l_dynaddr - dynaddr;
290
4e1fc9c9
JK
291 if ((l_addr & (minpagesize - 1)) == 0
292 && (l_addr & align) == ((l_dynaddr - dynaddr) & align))
cc10cae3 293 {
701ed6dc 294 if (info_verbose)
ccf26247
JK
295 printf_unfiltered (_("Using PIC (Position Independent Code) "
296 "prelink displacement %s for \"%s\".\n"),
f5656ead 297 paddress (target_gdbarch (), l_addr),
ccf26247 298 so->so_name);
cc10cae3 299 }
79d4c408 300 else
02835898
JK
301 {
302 /* There is no way to verify the library file matches. prelink
303 can during prelinking of an unprelinked file (or unprelinking
304 of a prelinked file) shift the DYNAMIC segment by arbitrary
305 offset without any page size alignment. There is no way to
306 find out the ELF header and/or Program Headers for a limited
307 verification if it they match. One could do a verification
308 of the DYNAMIC segment. Still the found address is the best
309 one GDB could find. */
310
311 warning (_(".dynamic section for \"%s\" "
312 "is not at the expected address "
313 "(wrong library or version mismatch?)"), so->so_name);
314 }
cc10cae3
AO
315 }
316
317 set_addr:
d0e449a1
SM
318 li->l_addr = l_addr;
319 li->l_addr_p = 1;
cc10cae3
AO
320 }
321
d0e449a1 322 return li->l_addr;
cc10cae3
AO
323}
324
6c95b8df 325/* Per pspace SVR4 specific data. */
13437d4b 326
1a816a87
PA
327struct svr4_info
328{
09232438
TT
329 svr4_info () = default;
330 ~svr4_info ();
331
332 /* Base of dynamic linker structures. */
333 CORE_ADDR debug_base = 0;
1a816a87
PA
334
335 /* Validity flag for debug_loader_offset. */
09232438 336 int debug_loader_offset_p = 0;
1a816a87
PA
337
338 /* Load address for the dynamic linker, inferred. */
09232438 339 CORE_ADDR debug_loader_offset = 0;
1a816a87
PA
340
341 /* Name of the dynamic linker, valid if debug_loader_offset_p. */
09232438 342 char *debug_loader_name = nullptr;
1a816a87
PA
343
344 /* Load map address for the main executable. */
09232438 345 CORE_ADDR main_lm_addr = 0;
1a816a87 346
09232438
TT
347 CORE_ADDR interp_text_sect_low = 0;
348 CORE_ADDR interp_text_sect_high = 0;
349 CORE_ADDR interp_plt_sect_low = 0;
350 CORE_ADDR interp_plt_sect_high = 0;
f9e14852
GB
351
352 /* Nonzero if the list of objects was last obtained from the target
353 via qXfer:libraries-svr4:read. */
09232438 354 int using_xfer = 0;
f9e14852
GB
355
356 /* Table of struct probe_and_action instances, used by the
357 probes-based interface to map breakpoint addresses to probes
358 and their associated actions. Lookup is performed using
935676c9 359 probe_and_action->prob->address. */
09232438 360 htab_up probes_table;
f9e14852
GB
361
362 /* List of objects loaded into the inferior, used by the probes-
363 based interface. */
09232438 364 struct so_list *solib_list = nullptr;
6c95b8df 365};
1a816a87 366
6c95b8df 367/* Per-program-space data key. */
09232438 368static const struct program_space_key<svr4_info> solib_svr4_pspace_data;
1a816a87 369
f9e14852
GB
370/* Free the probes table. */
371
372static void
373free_probes_table (struct svr4_info *info)
374{
09232438 375 info->probes_table.reset (nullptr);
f9e14852
GB
376}
377
378/* Free the solib list. */
379
380static void
381free_solib_list (struct svr4_info *info)
382{
383 svr4_free_library_list (&info->solib_list);
384 info->solib_list = NULL;
385}
386
09232438 387svr4_info::~svr4_info ()
1a816a87 388{
09232438 389 free_solib_list (this);
1a816a87
PA
390}
391
d70cc3ba
SM
392/* Get the svr4 data for program space PSPACE. If none is found yet, add it now.
393 This function always returns a valid object. */
34439770 394
6c95b8df 395static struct svr4_info *
d70cc3ba 396get_svr4_info (program_space *pspace)
1a816a87 397{
09232438 398 struct svr4_info *info = solib_svr4_pspace_data.get (pspace);
1a816a87 399
09232438
TT
400 if (info == NULL)
401 info = solib_svr4_pspace_data.emplace (pspace);
34439770 402
6c95b8df 403 return info;
1a816a87 404}
93a57060 405
13437d4b
KB
406/* Local function prototypes */
407
bc043ef3 408static int match_main (const char *);
13437d4b 409
97ec2c2f 410/* Read program header TYPE from inferior memory. The header is found
17658d46 411 by scanning the OS auxiliary vector.
97ec2c2f 412
09919ac2
JK
413 If TYPE == -1, return the program headers instead of the contents of
414 one program header.
415
17658d46
SM
416 Return vector of bytes holding the program header contents, or an empty
417 optional on failure. If successful and P_ARCH_SIZE is non-NULL, the target
418 architecture size (32-bit or 64-bit) is returned to *P_ARCH_SIZE. Likewise,
419 the base address of the section is returned in *BASE_ADDR. */
97ec2c2f 420
17658d46
SM
421static gdb::optional<gdb::byte_vector>
422read_program_header (int type, int *p_arch_size, CORE_ADDR *base_addr)
97ec2c2f 423{
f5656ead 424 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
43136979 425 CORE_ADDR at_phdr, at_phent, at_phnum, pt_phdr = 0;
97ec2c2f
UW
426 int arch_size, sect_size;
427 CORE_ADDR sect_addr;
43136979 428 int pt_phdr_p = 0;
97ec2c2f
UW
429
430 /* Get required auxv elements from target. */
8b88a78e 431 if (target_auxv_search (current_top_target (), AT_PHDR, &at_phdr) <= 0)
17658d46 432 return {};
8b88a78e 433 if (target_auxv_search (current_top_target (), AT_PHENT, &at_phent) <= 0)
17658d46 434 return {};
8b88a78e 435 if (target_auxv_search (current_top_target (), AT_PHNUM, &at_phnum) <= 0)
17658d46 436 return {};
97ec2c2f 437 if (!at_phdr || !at_phnum)
17658d46 438 return {};
97ec2c2f
UW
439
440 /* Determine ELF architecture type. */
441 if (at_phent == sizeof (Elf32_External_Phdr))
442 arch_size = 32;
443 else if (at_phent == sizeof (Elf64_External_Phdr))
444 arch_size = 64;
445 else
17658d46 446 return {};
97ec2c2f 447
09919ac2
JK
448 /* Find the requested segment. */
449 if (type == -1)
450 {
451 sect_addr = at_phdr;
452 sect_size = at_phent * at_phnum;
453 }
454 else if (arch_size == 32)
97ec2c2f
UW
455 {
456 Elf32_External_Phdr phdr;
457 int i;
458
459 /* Search for requested PHDR. */
460 for (i = 0; i < at_phnum; i++)
461 {
43136979
AR
462 int p_type;
463
97ec2c2f
UW
464 if (target_read_memory (at_phdr + i * sizeof (phdr),
465 (gdb_byte *)&phdr, sizeof (phdr)))
17658d46 466 return {};
97ec2c2f 467
43136979
AR
468 p_type = extract_unsigned_integer ((gdb_byte *) phdr.p_type,
469 4, byte_order);
470
471 if (p_type == PT_PHDR)
472 {
473 pt_phdr_p = 1;
474 pt_phdr = extract_unsigned_integer ((gdb_byte *) phdr.p_vaddr,
475 4, byte_order);
476 }
477
478 if (p_type == type)
97ec2c2f
UW
479 break;
480 }
481
482 if (i == at_phnum)
17658d46 483 return {};
97ec2c2f
UW
484
485 /* Retrieve address and size. */
e17a4113
UW
486 sect_addr = extract_unsigned_integer ((gdb_byte *)phdr.p_vaddr,
487 4, byte_order);
488 sect_size = extract_unsigned_integer ((gdb_byte *)phdr.p_memsz,
489 4, byte_order);
97ec2c2f
UW
490 }
491 else
492 {
493 Elf64_External_Phdr phdr;
494 int i;
495
496 /* Search for requested PHDR. */
497 for (i = 0; i < at_phnum; i++)
498 {
43136979
AR
499 int p_type;
500
97ec2c2f
UW
501 if (target_read_memory (at_phdr + i * sizeof (phdr),
502 (gdb_byte *)&phdr, sizeof (phdr)))
17658d46 503 return {};
97ec2c2f 504
43136979
AR
505 p_type = extract_unsigned_integer ((gdb_byte *) phdr.p_type,
506 4, byte_order);
507
508 if (p_type == PT_PHDR)
509 {
510 pt_phdr_p = 1;
511 pt_phdr = extract_unsigned_integer ((gdb_byte *) phdr.p_vaddr,
512 8, byte_order);
513 }
514
515 if (p_type == type)
97ec2c2f
UW
516 break;
517 }
518
519 if (i == at_phnum)
17658d46 520 return {};
97ec2c2f
UW
521
522 /* Retrieve address and size. */
e17a4113
UW
523 sect_addr = extract_unsigned_integer ((gdb_byte *)phdr.p_vaddr,
524 8, byte_order);
525 sect_size = extract_unsigned_integer ((gdb_byte *)phdr.p_memsz,
526 8, byte_order);
97ec2c2f
UW
527 }
528
43136979
AR
529 /* PT_PHDR is optional, but we really need it
530 for PIE to make this work in general. */
531
532 if (pt_phdr_p)
533 {
534 /* at_phdr is real address in memory. pt_phdr is what pheader says it is.
535 Relocation offset is the difference between the two. */
536 sect_addr = sect_addr + (at_phdr - pt_phdr);
537 }
538
97ec2c2f 539 /* Read in requested program header. */
17658d46
SM
540 gdb::byte_vector buf (sect_size);
541 if (target_read_memory (sect_addr, buf.data (), sect_size))
542 return {};
97ec2c2f
UW
543
544 if (p_arch_size)
545 *p_arch_size = arch_size;
a738da3a
MF
546 if (base_addr)
547 *base_addr = sect_addr;
97ec2c2f
UW
548
549 return buf;
550}
551
552
553/* Return program interpreter string. */
17658d46 554static gdb::optional<gdb::byte_vector>
97ec2c2f
UW
555find_program_interpreter (void)
556{
7e10abd1
TT
557 /* If we have a current exec_bfd, use its section table. */
558 if (current_program_space->exec_bfd ()
559 && (bfd_get_flavour (current_program_space->exec_bfd ())
560 == bfd_target_elf_flavour))
97ec2c2f
UW
561 {
562 struct bfd_section *interp_sect;
563
7e10abd1
TT
564 interp_sect = bfd_get_section_by_name (current_program_space->exec_bfd (),
565 ".interp");
97ec2c2f
UW
566 if (interp_sect != NULL)
567 {
fd361982 568 int sect_size = bfd_section_size (interp_sect);
97ec2c2f 569
17658d46 570 gdb::byte_vector buf (sect_size);
7e10abd1
TT
571 bfd_get_section_contents (current_program_space->exec_bfd (),
572 interp_sect, buf.data (), 0, sect_size);
17658d46 573 return buf;
97ec2c2f
UW
574 }
575 }
576
17658d46
SM
577 /* If we didn't find it, use the target auxiliary vector. */
578 return read_program_header (PT_INTERP, NULL, NULL);
97ec2c2f
UW
579}
580
581
b6d7a4bf
SM
582/* Scan for DESIRED_DYNTAG in .dynamic section of ABFD. If DESIRED_DYNTAG is
583 found, 1 is returned and the corresponding PTR is set. */
3a40aaa0
UW
584
585static int
a738da3a
MF
586scan_dyntag (const int desired_dyntag, bfd *abfd, CORE_ADDR *ptr,
587 CORE_ADDR *ptr_addr)
3a40aaa0
UW
588{
589 int arch_size, step, sect_size;
b6d7a4bf 590 long current_dyntag;
b381ea14 591 CORE_ADDR dyn_ptr, dyn_addr;
65728c26 592 gdb_byte *bufend, *bufstart, *buf;
3a40aaa0
UW
593 Elf32_External_Dyn *x_dynp_32;
594 Elf64_External_Dyn *x_dynp_64;
595 struct bfd_section *sect;
596
597 if (abfd == NULL)
598 return 0;
0763ab81
PA
599
600 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
601 return 0;
602
3a40aaa0
UW
603 arch_size = bfd_get_arch_size (abfd);
604 if (arch_size == -1)
0763ab81 605 return 0;
3a40aaa0
UW
606
607 /* Find the start address of the .dynamic section. */
608 sect = bfd_get_section_by_name (abfd, ".dynamic");
609 if (sect == NULL)
610 return 0;
61f0d762 611
bb2a6777 612 bool found = false;
19cf757a 613 for (const target_section &target_section
02f7d26b 614 : current_program_space->target_sections ())
bb2a6777
TT
615 if (sect == target_section.the_bfd_section)
616 {
617 dyn_addr = target_section.addr;
618 found = true;
619 break;
620 }
621 if (!found)
b381ea14
JK
622 {
623 /* ABFD may come from OBJFILE acting only as a symbol file without being
624 loaded into the target (see add_symbol_file_command). This case is
625 such fallback to the file VMA address without the possibility of
626 having the section relocated to its actual in-memory address. */
627
fd361982 628 dyn_addr = bfd_section_vma (sect);
b381ea14 629 }
3a40aaa0 630
65728c26
DJ
631 /* Read in .dynamic from the BFD. We will get the actual value
632 from memory later. */
fd361982 633 sect_size = bfd_section_size (sect);
224c3ddb 634 buf = bufstart = (gdb_byte *) alloca (sect_size);
65728c26
DJ
635 if (!bfd_get_section_contents (abfd, sect,
636 buf, 0, sect_size))
637 return 0;
3a40aaa0
UW
638
639 /* Iterate over BUF and scan for DYNTAG. If found, set PTR and return. */
640 step = (arch_size == 32) ? sizeof (Elf32_External_Dyn)
641 : sizeof (Elf64_External_Dyn);
642 for (bufend = buf + sect_size;
643 buf < bufend;
644 buf += step)
645 {
646 if (arch_size == 32)
647 {
648 x_dynp_32 = (Elf32_External_Dyn *) buf;
b6d7a4bf 649 current_dyntag = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp_32->d_tag);
3a40aaa0
UW
650 dyn_ptr = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp_32->d_un.d_ptr);
651 }
65728c26 652 else
3a40aaa0
UW
653 {
654 x_dynp_64 = (Elf64_External_Dyn *) buf;
b6d7a4bf 655 current_dyntag = bfd_h_get_64 (abfd, (bfd_byte *) x_dynp_64->d_tag);
3a40aaa0
UW
656 dyn_ptr = bfd_h_get_64 (abfd, (bfd_byte *) x_dynp_64->d_un.d_ptr);
657 }
b6d7a4bf 658 if (current_dyntag == DT_NULL)
3a40aaa0 659 return 0;
b6d7a4bf 660 if (current_dyntag == desired_dyntag)
3a40aaa0 661 {
65728c26
DJ
662 /* If requested, try to read the runtime value of this .dynamic
663 entry. */
3a40aaa0 664 if (ptr)
65728c26 665 {
b6da22b0 666 struct type *ptr_type;
65728c26 667 gdb_byte ptr_buf[8];
a738da3a 668 CORE_ADDR ptr_addr_1;
65728c26 669
f5656ead 670 ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
a738da3a
MF
671 ptr_addr_1 = dyn_addr + (buf - bufstart) + arch_size / 8;
672 if (target_read_memory (ptr_addr_1, ptr_buf, arch_size / 8) == 0)
b6da22b0 673 dyn_ptr = extract_typed_address (ptr_buf, ptr_type);
65728c26 674 *ptr = dyn_ptr;
a738da3a
MF
675 if (ptr_addr)
676 *ptr_addr = dyn_addr + (buf - bufstart);
65728c26
DJ
677 }
678 return 1;
3a40aaa0
UW
679 }
680 }
681
682 return 0;
683}
684
b6d7a4bf
SM
685/* Scan for DESIRED_DYNTAG in .dynamic section of the target's main executable,
686 found by consulting the OS auxillary vector. If DESIRED_DYNTAG is found, 1
687 is returned and the corresponding PTR is set. */
97ec2c2f
UW
688
689static int
a738da3a
MF
690scan_dyntag_auxv (const int desired_dyntag, CORE_ADDR *ptr,
691 CORE_ADDR *ptr_addr)
97ec2c2f 692{
f5656ead 693 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
17658d46 694 int arch_size, step;
b6d7a4bf 695 long current_dyntag;
97ec2c2f 696 CORE_ADDR dyn_ptr;
a738da3a 697 CORE_ADDR base_addr;
97ec2c2f
UW
698
699 /* Read in .dynamic section. */
17658d46
SM
700 gdb::optional<gdb::byte_vector> ph_data
701 = read_program_header (PT_DYNAMIC, &arch_size, &base_addr);
702 if (!ph_data)
97ec2c2f
UW
703 return 0;
704
705 /* Iterate over BUF and scan for DYNTAG. If found, set PTR and return. */
706 step = (arch_size == 32) ? sizeof (Elf32_External_Dyn)
707 : sizeof (Elf64_External_Dyn);
17658d46
SM
708 for (gdb_byte *buf = ph_data->data (), *bufend = buf + ph_data->size ();
709 buf < bufend; buf += step)
97ec2c2f
UW
710 {
711 if (arch_size == 32)
712 {
713 Elf32_External_Dyn *dynp = (Elf32_External_Dyn *) buf;
433759f7 714
b6d7a4bf 715 current_dyntag = extract_unsigned_integer ((gdb_byte *) dynp->d_tag,
e17a4113
UW
716 4, byte_order);
717 dyn_ptr = extract_unsigned_integer ((gdb_byte *) dynp->d_un.d_ptr,
718 4, byte_order);
97ec2c2f
UW
719 }
720 else
721 {
722 Elf64_External_Dyn *dynp = (Elf64_External_Dyn *) buf;
433759f7 723
b6d7a4bf 724 current_dyntag = extract_unsigned_integer ((gdb_byte *) dynp->d_tag,
e17a4113
UW
725 8, byte_order);
726 dyn_ptr = extract_unsigned_integer ((gdb_byte *) dynp->d_un.d_ptr,
727 8, byte_order);
97ec2c2f 728 }
b6d7a4bf 729 if (current_dyntag == DT_NULL)
97ec2c2f
UW
730 break;
731
b6d7a4bf 732 if (current_dyntag == desired_dyntag)
97ec2c2f
UW
733 {
734 if (ptr)
735 *ptr = dyn_ptr;
736
a738da3a 737 if (ptr_addr)
17658d46 738 *ptr_addr = base_addr + buf - ph_data->data ();
a738da3a 739
97ec2c2f
UW
740 return 1;
741 }
742 }
743
97ec2c2f
UW
744 return 0;
745}
746
7f86f058
PA
747/* Locate the base address of dynamic linker structs for SVR4 elf
748 targets.
13437d4b
KB
749
750 For SVR4 elf targets the address of the dynamic linker's runtime
751 structure is contained within the dynamic info section in the
752 executable file. The dynamic section is also mapped into the
753 inferior address space. Because the runtime loader fills in the
754 real address before starting the inferior, we have to read in the
755 dynamic info section from the inferior address space.
756 If there are any errors while trying to find the address, we
7f86f058 757 silently return 0, otherwise the found address is returned. */
13437d4b
KB
758
759static CORE_ADDR
760elf_locate_base (void)
761{
3b7344d5 762 struct bound_minimal_symbol msymbol;
a738da3a 763 CORE_ADDR dyn_ptr, dyn_ptr_addr;
13437d4b 764
65728c26
DJ
765 /* Look for DT_MIPS_RLD_MAP first. MIPS executables use this
766 instead of DT_DEBUG, although they sometimes contain an unused
767 DT_DEBUG. */
7e10abd1
TT
768 if (scan_dyntag (DT_MIPS_RLD_MAP, current_program_space->exec_bfd (),
769 &dyn_ptr, NULL)
a738da3a 770 || scan_dyntag_auxv (DT_MIPS_RLD_MAP, &dyn_ptr, NULL))
3a40aaa0 771 {
f5656ead 772 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
3a40aaa0 773 gdb_byte *pbuf;
b6da22b0 774 int pbuf_size = TYPE_LENGTH (ptr_type);
433759f7 775
224c3ddb 776 pbuf = (gdb_byte *) alloca (pbuf_size);
3a40aaa0
UW
777 /* DT_MIPS_RLD_MAP contains a pointer to the address
778 of the dynamic link structure. */
779 if (target_read_memory (dyn_ptr, pbuf, pbuf_size))
e499d0f1 780 return 0;
b6da22b0 781 return extract_typed_address (pbuf, ptr_type);
e499d0f1
DJ
782 }
783
a738da3a
MF
784 /* Then check DT_MIPS_RLD_MAP_REL. MIPS executables now use this form
785 because of needing to support PIE. DT_MIPS_RLD_MAP will also exist
786 in non-PIE. */
7e10abd1
TT
787 if (scan_dyntag (DT_MIPS_RLD_MAP_REL, current_program_space->exec_bfd (),
788 &dyn_ptr, &dyn_ptr_addr)
a738da3a
MF
789 || scan_dyntag_auxv (DT_MIPS_RLD_MAP_REL, &dyn_ptr, &dyn_ptr_addr))
790 {
791 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
792 gdb_byte *pbuf;
793 int pbuf_size = TYPE_LENGTH (ptr_type);
794
224c3ddb 795 pbuf = (gdb_byte *) alloca (pbuf_size);
a738da3a
MF
796 /* DT_MIPS_RLD_MAP_REL contains an offset from the address of the
797 DT slot to the address of the dynamic link structure. */
798 if (target_read_memory (dyn_ptr + dyn_ptr_addr, pbuf, pbuf_size))
799 return 0;
800 return extract_typed_address (pbuf, ptr_type);
801 }
802
65728c26 803 /* Find DT_DEBUG. */
7e10abd1 804 if (scan_dyntag (DT_DEBUG, current_program_space->exec_bfd (), &dyn_ptr, NULL)
a738da3a 805 || scan_dyntag_auxv (DT_DEBUG, &dyn_ptr, NULL))
65728c26
DJ
806 return dyn_ptr;
807
3a40aaa0
UW
808 /* This may be a static executable. Look for the symbol
809 conventionally named _r_debug, as a last resort. */
a42d7dd8
TT
810 msymbol = lookup_minimal_symbol ("_r_debug", NULL,
811 current_program_space->symfile_object_file);
3b7344d5 812 if (msymbol.minsym != NULL)
77e371c0 813 return BMSYMBOL_VALUE_ADDRESS (msymbol);
13437d4b
KB
814
815 /* DT_DEBUG entry not found. */
816 return 0;
817}
818
7f86f058 819/* Locate the base address of dynamic linker structs.
13437d4b
KB
820
821 For both the SunOS and SVR4 shared library implementations, if the
822 inferior executable has been linked dynamically, there is a single
823 address somewhere in the inferior's data space which is the key to
824 locating all of the dynamic linker's runtime structures. This
825 address is the value of the debug base symbol. The job of this
826 function is to find and return that address, or to return 0 if there
827 is no such address (the executable is statically linked for example).
828
829 For SunOS, the job is almost trivial, since the dynamic linker and
830 all of it's structures are statically linked to the executable at
831 link time. Thus the symbol for the address we are looking for has
832 already been added to the minimal symbol table for the executable's
833 objfile at the time the symbol file's symbols were read, and all we
834 have to do is look it up there. Note that we explicitly do NOT want
835 to find the copies in the shared library.
836
837 The SVR4 version is a bit more complicated because the address
838 is contained somewhere in the dynamic info section. We have to go
839 to a lot more work to discover the address of the debug base symbol.
840 Because of this complexity, we cache the value we find and return that
841 value on subsequent invocations. Note there is no copy in the
7f86f058 842 executable symbol tables. */
13437d4b
KB
843
844static CORE_ADDR
1a816a87 845locate_base (struct svr4_info *info)
13437d4b 846{
13437d4b
KB
847 /* Check to see if we have a currently valid address, and if so, avoid
848 doing all this work again and just return the cached address. If
849 we have no cached address, try to locate it in the dynamic info
d5a921c9
KB
850 section for ELF executables. There's no point in doing any of this
851 though if we don't have some link map offsets to work with. */
13437d4b 852
1a816a87 853 if (info->debug_base == 0 && svr4_have_link_map_offsets ())
0763ab81 854 info->debug_base = elf_locate_base ();
1a816a87 855 return info->debug_base;
13437d4b
KB
856}
857
e4cd0d6a 858/* Find the first element in the inferior's dynamic link map, and
6f992fbf
JB
859 return its address in the inferior. Return zero if the address
860 could not be determined.
13437d4b 861
e4cd0d6a
MK
862 FIXME: Perhaps we should validate the info somehow, perhaps by
863 checking r_version for a known version number, or r_state for
864 RT_CONSISTENT. */
13437d4b
KB
865
866static CORE_ADDR
1a816a87 867solib_svr4_r_map (struct svr4_info *info)
13437d4b 868{
4b188b9f 869 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
f5656ead 870 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
08597104 871 CORE_ADDR addr = 0;
13437d4b 872
a70b8144 873 try
08597104
JB
874 {
875 addr = read_memory_typed_address (info->debug_base + lmo->r_map_offset,
dda83cd7 876 ptr_type);
08597104 877 }
230d2906 878 catch (const gdb_exception_error &ex)
492d29ea
PA
879 {
880 exception_print (gdb_stderr, ex);
881 }
492d29ea 882
08597104 883 return addr;
e4cd0d6a 884}
13437d4b 885
7cd25cfc
DJ
886/* Find r_brk from the inferior's debug base. */
887
888static CORE_ADDR
1a816a87 889solib_svr4_r_brk (struct svr4_info *info)
7cd25cfc
DJ
890{
891 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
f5656ead 892 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
7cd25cfc 893
1a816a87
PA
894 return read_memory_typed_address (info->debug_base + lmo->r_brk_offset,
895 ptr_type);
7cd25cfc
DJ
896}
897
e4cd0d6a
MK
898/* Find the link map for the dynamic linker (if it is not in the
899 normal list of loaded shared objects). */
13437d4b 900
e4cd0d6a 901static CORE_ADDR
1a816a87 902solib_svr4_r_ldsomap (struct svr4_info *info)
e4cd0d6a
MK
903{
904 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
f5656ead 905 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
34877895 906 enum bfd_endian byte_order = type_byte_order (ptr_type);
416f679e
SDJ
907 ULONGEST version = 0;
908
a70b8144 909 try
416f679e
SDJ
910 {
911 /* Check version, and return zero if `struct r_debug' doesn't have
912 the r_ldsomap member. */
913 version
914 = read_memory_unsigned_integer (info->debug_base + lmo->r_version_offset,
915 lmo->r_version_size, byte_order);
916 }
230d2906 917 catch (const gdb_exception_error &ex)
416f679e
SDJ
918 {
919 exception_print (gdb_stderr, ex);
920 }
13437d4b 921
e4cd0d6a
MK
922 if (version < 2 || lmo->r_ldsomap_offset == -1)
923 return 0;
13437d4b 924
1a816a87 925 return read_memory_typed_address (info->debug_base + lmo->r_ldsomap_offset,
b6da22b0 926 ptr_type);
13437d4b
KB
927}
928
de18c1d8
JM
929/* On Solaris systems with some versions of the dynamic linker,
930 ld.so's l_name pointer points to the SONAME in the string table
931 rather than into writable memory. So that GDB can find shared
932 libraries when loading a core file generated by gcore, ensure that
933 memory areas containing the l_name string are saved in the core
934 file. */
935
936static int
937svr4_keep_data_in_core (CORE_ADDR vaddr, unsigned long size)
938{
939 struct svr4_info *info;
940 CORE_ADDR ldsomap;
74de0234 941 CORE_ADDR name_lm;
de18c1d8 942
d70cc3ba 943 info = get_svr4_info (current_program_space);
de18c1d8
JM
944
945 info->debug_base = 0;
946 locate_base (info);
947 if (!info->debug_base)
948 return 0;
949
950 ldsomap = solib_svr4_r_ldsomap (info);
951 if (!ldsomap)
952 return 0;
953
a7961323 954 std::unique_ptr<lm_info_svr4> li = lm_info_read (ldsomap);
d0e449a1 955 name_lm = li != NULL ? li->l_name : 0;
de18c1d8 956
74de0234 957 return (name_lm >= vaddr && name_lm < vaddr + size);
de18c1d8
JM
958}
959
bf469271 960/* See solist.h. */
13437d4b
KB
961
962static int
bf469271 963open_symbol_file_object (int from_tty)
13437d4b
KB
964{
965 CORE_ADDR lm, l_name;
4b188b9f 966 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
f5656ead 967 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
b6da22b0 968 int l_name_size = TYPE_LENGTH (ptr_type);
a7961323 969 gdb::byte_vector l_name_buf (l_name_size);
d70cc3ba 970 struct svr4_info *info = get_svr4_info (current_program_space);
ecf45d2c
SL
971 symfile_add_flags add_flags = 0;
972
973 if (from_tty)
974 add_flags |= SYMFILE_VERBOSE;
13437d4b 975
a42d7dd8 976 if (current_program_space->symfile_object_file)
9e2f0ad4 977 if (!query (_("Attempt to reload symbols from process? ")))
a7961323 978 return 0;
13437d4b 979
7cd25cfc 980 /* Always locate the debug struct, in case it has moved. */
1a816a87
PA
981 info->debug_base = 0;
982 if (locate_base (info) == 0)
a7961323 983 return 0; /* failed somehow... */
13437d4b
KB
984
985 /* First link map member should be the executable. */
1a816a87 986 lm = solib_svr4_r_map (info);
e4cd0d6a 987 if (lm == 0)
a7961323 988 return 0; /* failed somehow... */
13437d4b
KB
989
990 /* Read address of name from target memory to GDB. */
a7961323 991 read_memory (lm + lmo->l_name_offset, l_name_buf.data (), l_name_size);
13437d4b 992
cfaefc65 993 /* Convert the address to host format. */
a7961323 994 l_name = extract_typed_address (l_name_buf.data (), ptr_type);
13437d4b 995
13437d4b 996 if (l_name == 0)
a7961323 997 return 0; /* No filename. */
13437d4b
KB
998
999 /* Now fetch the filename from target memory. */
66920317
TT
1000 gdb::unique_xmalloc_ptr<char> filename
1001 = target_read_string (l_name, SO_NAME_MAX_PATH_SIZE - 1);
13437d4b 1002
66920317 1003 if (filename == nullptr)
13437d4b 1004 {
66920317 1005 warning (_("failed to read exec filename from attached file"));
13437d4b
KB
1006 return 0;
1007 }
1008
13437d4b 1009 /* Have a pathname: read the symbol file. */
e83e4e24 1010 symbol_file_add_main (filename.get (), add_flags);
13437d4b
KB
1011
1012 return 1;
1013}
13437d4b 1014
2268b414
JK
1015/* Data exchange structure for the XML parser as returned by
1016 svr4_current_sos_via_xfer_libraries. */
1017
1018struct svr4_library_list
1019{
1020 struct so_list *head, **tailp;
1021
1022 /* Inferior address of struct link_map used for the main executable. It is
1023 NULL if not known. */
1024 CORE_ADDR main_lm;
1025};
1026
7905fc35
PA
1027/* This module's 'free_objfile' observer. */
1028
1029static void
1030svr4_free_objfile_observer (struct objfile *objfile)
1031{
1032 probes_table_remove_objfile_probes (objfile);
1033}
1034
93f2a35e
JK
1035/* Implementation for target_so_ops.free_so. */
1036
1037static void
1038svr4_free_so (struct so_list *so)
1039{
76e75227
SM
1040 lm_info_svr4 *li = (lm_info_svr4 *) so->lm_info;
1041
1042 delete li;
93f2a35e
JK
1043}
1044
0892cb63
DE
1045/* Implement target_so_ops.clear_so. */
1046
1047static void
1048svr4_clear_so (struct so_list *so)
1049{
d0e449a1
SM
1050 lm_info_svr4 *li = (lm_info_svr4 *) so->lm_info;
1051
1052 if (li != NULL)
1053 li->l_addr_p = 0;
0892cb63
DE
1054}
1055
93f2a35e
JK
1056/* Free so_list built so far (called via cleanup). */
1057
1058static void
1059svr4_free_library_list (void *p_list)
1060{
1061 struct so_list *list = *(struct so_list **) p_list;
1062
1063 while (list != NULL)
1064 {
1065 struct so_list *next = list->next;
1066
3756ef7e 1067 free_so (list);
93f2a35e
JK
1068 list = next;
1069 }
1070}
1071
f9e14852
GB
1072/* Copy library list. */
1073
1074static struct so_list *
1075svr4_copy_library_list (struct so_list *src)
1076{
1077 struct so_list *dst = NULL;
1078 struct so_list **link = &dst;
1079
1080 while (src != NULL)
1081 {
fe978cb0 1082 struct so_list *newobj;
f9e14852 1083
8d749320 1084 newobj = XNEW (struct so_list);
fe978cb0 1085 memcpy (newobj, src, sizeof (struct so_list));
f9e14852 1086
76e75227
SM
1087 lm_info_svr4 *src_li = (lm_info_svr4 *) src->lm_info;
1088 newobj->lm_info = new lm_info_svr4 (*src_li);
f9e14852 1089
fe978cb0
PA
1090 newobj->next = NULL;
1091 *link = newobj;
1092 link = &newobj->next;
f9e14852
GB
1093
1094 src = src->next;
1095 }
1096
1097 return dst;
1098}
1099
2268b414
JK
1100#ifdef HAVE_LIBEXPAT
1101
1102#include "xml-support.h"
1103
1104/* Handle the start of a <library> element. Note: new elements are added
1105 at the tail of the list, keeping the list in order. */
1106
1107static void
1108library_list_start_library (struct gdb_xml_parser *parser,
1109 const struct gdb_xml_element *element,
4d0fdd9b
SM
1110 void *user_data,
1111 std::vector<gdb_xml_value> &attributes)
2268b414 1112{
19ba03f4
SM
1113 struct svr4_library_list *list = (struct svr4_library_list *) user_data;
1114 const char *name
4d0fdd9b 1115 = (const char *) xml_find_attribute (attributes, "name")->value.get ();
19ba03f4 1116 ULONGEST *lmp
4d0fdd9b 1117 = (ULONGEST *) xml_find_attribute (attributes, "lm")->value.get ();
19ba03f4 1118 ULONGEST *l_addrp
4d0fdd9b 1119 = (ULONGEST *) xml_find_attribute (attributes, "l_addr")->value.get ();
19ba03f4 1120 ULONGEST *l_ldp
4d0fdd9b 1121 = (ULONGEST *) xml_find_attribute (attributes, "l_ld")->value.get ();
2268b414
JK
1122 struct so_list *new_elem;
1123
41bf6aca 1124 new_elem = XCNEW (struct so_list);
76e75227 1125 lm_info_svr4 *li = new lm_info_svr4;
d0e449a1
SM
1126 new_elem->lm_info = li;
1127 li->lm_addr = *lmp;
1128 li->l_addr_inferior = *l_addrp;
1129 li->l_ld = *l_ldp;
2268b414
JK
1130
1131 strncpy (new_elem->so_name, name, sizeof (new_elem->so_name) - 1);
1132 new_elem->so_name[sizeof (new_elem->so_name) - 1] = 0;
1133 strcpy (new_elem->so_original_name, new_elem->so_name);
1134
1135 *list->tailp = new_elem;
1136 list->tailp = &new_elem->next;
1137}
1138
1139/* Handle the start of a <library-list-svr4> element. */
1140
1141static void
1142svr4_library_list_start_list (struct gdb_xml_parser *parser,
1143 const struct gdb_xml_element *element,
4d0fdd9b
SM
1144 void *user_data,
1145 std::vector<gdb_xml_value> &attributes)
2268b414 1146{
19ba03f4
SM
1147 struct svr4_library_list *list = (struct svr4_library_list *) user_data;
1148 const char *version
4d0fdd9b 1149 = (const char *) xml_find_attribute (attributes, "version")->value.get ();
2268b414
JK
1150 struct gdb_xml_value *main_lm = xml_find_attribute (attributes, "main-lm");
1151
1152 if (strcmp (version, "1.0") != 0)
1153 gdb_xml_error (parser,
1154 _("SVR4 Library list has unsupported version \"%s\""),
1155 version);
1156
1157 if (main_lm)
4d0fdd9b 1158 list->main_lm = *(ULONGEST *) main_lm->value.get ();
2268b414
JK
1159}
1160
1161/* The allowed elements and attributes for an XML library list.
1162 The root element is a <library-list>. */
1163
1164static const struct gdb_xml_attribute svr4_library_attributes[] =
1165{
1166 { "name", GDB_XML_AF_NONE, NULL, NULL },
1167 { "lm", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1168 { "l_addr", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1169 { "l_ld", GDB_XML_AF_NONE, gdb_xml_parse_attr_ulongest, NULL },
1170 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1171};
1172
1173static const struct gdb_xml_element svr4_library_list_children[] =
1174{
1175 {
1176 "library", svr4_library_attributes, NULL,
1177 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
1178 library_list_start_library, NULL
1179 },
1180 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1181};
1182
1183static const struct gdb_xml_attribute svr4_library_list_attributes[] =
1184{
1185 { "version", GDB_XML_AF_NONE, NULL, NULL },
1186 { "main-lm", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
1187 { NULL, GDB_XML_AF_NONE, NULL, NULL }
1188};
1189
1190static const struct gdb_xml_element svr4_library_list_elements[] =
1191{
1192 { "library-list-svr4", svr4_library_list_attributes, svr4_library_list_children,
1193 GDB_XML_EF_NONE, svr4_library_list_start_list, NULL },
1194 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
1195};
1196
2268b414
JK
1197/* Parse qXfer:libraries:read packet into *SO_LIST_RETURN. Return 1 if
1198
1199 Return 0 if packet not supported, *SO_LIST_RETURN is not modified in such
1200 case. Return 1 if *SO_LIST_RETURN contains the library list, it may be
1201 empty, caller is responsible for freeing all its entries. */
1202
1203static int
1204svr4_parse_libraries (const char *document, struct svr4_library_list *list)
1205{
2b6ff1c0
TT
1206 auto cleanup = make_scope_exit ([&] ()
1207 {
1208 svr4_free_library_list (&list->head);
1209 });
2268b414
JK
1210
1211 memset (list, 0, sizeof (*list));
1212 list->tailp = &list->head;
2eca4a8d 1213 if (gdb_xml_parse_quick (_("target library list"), "library-list-svr4.dtd",
2268b414
JK
1214 svr4_library_list_elements, document, list) == 0)
1215 {
1216 /* Parsed successfully, keep the result. */
2b6ff1c0 1217 cleanup.release ();
2268b414
JK
1218 return 1;
1219 }
1220
2268b414
JK
1221 return 0;
1222}
1223
f9e14852 1224/* Attempt to get so_list from target via qXfer:libraries-svr4:read packet.
2268b414
JK
1225
1226 Return 0 if packet not supported, *SO_LIST_RETURN is not modified in such
1227 case. Return 1 if *SO_LIST_RETURN contains the library list, it may be
f9e14852
GB
1228 empty, caller is responsible for freeing all its entries.
1229
1230 Note that ANNEX must be NULL if the remote does not explicitly allow
1231 qXfer:libraries-svr4:read packets with non-empty annexes. Support for
1232 this can be checked using target_augmented_libraries_svr4_read (). */
2268b414
JK
1233
1234static int
f9e14852
GB
1235svr4_current_sos_via_xfer_libraries (struct svr4_library_list *list,
1236 const char *annex)
2268b414 1237{
f9e14852
GB
1238 gdb_assert (annex == NULL || target_augmented_libraries_svr4_read ());
1239
2268b414 1240 /* Fetch the list of shared libraries. */
9018be22 1241 gdb::optional<gdb::char_vector> svr4_library_document
8b88a78e 1242 = target_read_stralloc (current_top_target (), TARGET_OBJECT_LIBRARIES_SVR4,
b7b030ad 1243 annex);
9018be22 1244 if (!svr4_library_document)
2268b414
JK
1245 return 0;
1246
9018be22 1247 return svr4_parse_libraries (svr4_library_document->data (), list);
2268b414
JK
1248}
1249
1250#else
1251
1252static int
f9e14852
GB
1253svr4_current_sos_via_xfer_libraries (struct svr4_library_list *list,
1254 const char *annex)
2268b414
JK
1255{
1256 return 0;
1257}
1258
1259#endif
1260
34439770
DJ
1261/* If no shared library information is available from the dynamic
1262 linker, build a fallback list from other sources. */
1263
1264static struct so_list *
d70cc3ba 1265svr4_default_sos (svr4_info *info)
34439770 1266{
fe978cb0 1267 struct so_list *newobj;
1a816a87 1268
8e5c319d
JK
1269 if (!info->debug_loader_offset_p)
1270 return NULL;
34439770 1271
fe978cb0 1272 newobj = XCNEW (struct so_list);
76e75227 1273 lm_info_svr4 *li = new lm_info_svr4;
d0e449a1 1274 newobj->lm_info = li;
34439770 1275
3957565a 1276 /* Nothing will ever check the other fields if we set l_addr_p. */
d0e449a1
SM
1277 li->l_addr = info->debug_loader_offset;
1278 li->l_addr_p = 1;
34439770 1279
fe978cb0
PA
1280 strncpy (newobj->so_name, info->debug_loader_name, SO_NAME_MAX_PATH_SIZE - 1);
1281 newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
1282 strcpy (newobj->so_original_name, newobj->so_name);
34439770 1283
fe978cb0 1284 return newobj;
34439770
DJ
1285}
1286
f9e14852
GB
1287/* Read the whole inferior libraries chain starting at address LM.
1288 Expect the first entry in the chain's previous entry to be PREV_LM.
1289 Add the entries to the tail referenced by LINK_PTR_PTR. Ignore the
1290 first entry if IGNORE_FIRST and set global MAIN_LM_ADDR according
1291 to it. Returns nonzero upon success. If zero is returned the
1292 entries stored to LINK_PTR_PTR are still valid although they may
1293 represent only part of the inferior library list. */
13437d4b 1294
f9e14852 1295static int
d70cc3ba 1296svr4_read_so_list (svr4_info *info, CORE_ADDR lm, CORE_ADDR prev_lm,
f9e14852 1297 struct so_list ***link_ptr_ptr, int ignore_first)
13437d4b 1298{
c725e7b6 1299 CORE_ADDR first_l_name = 0;
f9e14852 1300 CORE_ADDR next_lm;
13437d4b 1301
cb08cc53 1302 for (; lm != 0; prev_lm = lm, lm = next_lm)
13437d4b 1303 {
b3bc8453 1304 so_list_up newobj (XCNEW (struct so_list));
13437d4b 1305
a7961323 1306 lm_info_svr4 *li = lm_info_read (lm).release ();
d0e449a1
SM
1307 newobj->lm_info = li;
1308 if (li == NULL)
b3bc8453 1309 return 0;
13437d4b 1310
d0e449a1 1311 next_lm = li->l_next;
492928e4 1312
d0e449a1 1313 if (li->l_prev != prev_lm)
492928e4 1314 {
2268b414 1315 warning (_("Corrupted shared library list: %s != %s"),
f5656ead 1316 paddress (target_gdbarch (), prev_lm),
d0e449a1 1317 paddress (target_gdbarch (), li->l_prev));
f9e14852 1318 return 0;
492928e4 1319 }
13437d4b
KB
1320
1321 /* For SVR4 versions, the first entry in the link map is for the
dda83cd7
SM
1322 inferior executable, so we must ignore it. For some versions of
1323 SVR4, it has no name. For others (Solaris 2.3 for example), it
1324 does have a name, so we can no longer use a missing name to
1325 decide when to ignore it. */
d0e449a1 1326 if (ignore_first && li->l_prev == 0)
93a57060 1327 {
d0e449a1
SM
1328 first_l_name = li->l_name;
1329 info->main_lm_addr = li->lm_addr;
cb08cc53 1330 continue;
93a57060 1331 }
13437d4b 1332
cb08cc53 1333 /* Extract this shared object's name. */
66920317
TT
1334 gdb::unique_xmalloc_ptr<char> buffer
1335 = target_read_string (li->l_name, SO_NAME_MAX_PATH_SIZE - 1);
1336 if (buffer == nullptr)
cb08cc53 1337 {
7d760051
UW
1338 /* If this entry's l_name address matches that of the
1339 inferior executable, then this is not a normal shared
1340 object, but (most likely) a vDSO. In this case, silently
1341 skip it; otherwise emit a warning. */
d0e449a1 1342 if (first_l_name == 0 || li->l_name != first_l_name)
66920317 1343 warning (_("Can't read pathname for load map."));
cb08cc53 1344 continue;
13437d4b
KB
1345 }
1346
e83e4e24 1347 strncpy (newobj->so_name, buffer.get (), SO_NAME_MAX_PATH_SIZE - 1);
fe978cb0
PA
1348 newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
1349 strcpy (newobj->so_original_name, newobj->so_name);
492928e4 1350
cb08cc53
JK
1351 /* If this entry has no name, or its name matches the name
1352 for the main executable, don't include it in the list. */
fe978cb0 1353 if (! newobj->so_name[0] || match_main (newobj->so_name))
b3bc8453 1354 continue;
e4cd0d6a 1355
fe978cb0 1356 newobj->next = 0;
b3bc8453
TT
1357 /* Don't free it now. */
1358 **link_ptr_ptr = newobj.release ();
1359 *link_ptr_ptr = &(**link_ptr_ptr)->next;
13437d4b 1360 }
f9e14852
GB
1361
1362 return 1;
cb08cc53
JK
1363}
1364
f9e14852
GB
1365/* Read the full list of currently loaded shared objects directly
1366 from the inferior, without referring to any libraries read and
1367 stored by the probes interface. Handle special cases relating
1368 to the first elements of the list. */
cb08cc53
JK
1369
1370static struct so_list *
f9e14852 1371svr4_current_sos_direct (struct svr4_info *info)
cb08cc53
JK
1372{
1373 CORE_ADDR lm;
1374 struct so_list *head = NULL;
1375 struct so_list **link_ptr = &head;
cb08cc53 1376 int ignore_first;
2268b414
JK
1377 struct svr4_library_list library_list;
1378
0c5bf5a9
JK
1379 /* Fall back to manual examination of the target if the packet is not
1380 supported or gdbserver failed to find DT_DEBUG. gdb.server/solib-list.exp
1381 tests a case where gdbserver cannot find the shared libraries list while
1382 GDB itself is able to find it via SYMFILE_OBJFILE.
1383
1384 Unfortunately statically linked inferiors will also fall back through this
1385 suboptimal code path. */
1386
f9e14852
GB
1387 info->using_xfer = svr4_current_sos_via_xfer_libraries (&library_list,
1388 NULL);
1389 if (info->using_xfer)
2268b414
JK
1390 {
1391 if (library_list.main_lm)
f9e14852 1392 info->main_lm_addr = library_list.main_lm;
2268b414 1393
d70cc3ba 1394 return library_list.head ? library_list.head : svr4_default_sos (info);
2268b414 1395 }
cb08cc53 1396
cb08cc53
JK
1397 /* Always locate the debug struct, in case it has moved. */
1398 info->debug_base = 0;
1399 locate_base (info);
1400
1401 /* If we can't find the dynamic linker's base structure, this
1402 must not be a dynamically linked executable. Hmm. */
1403 if (! info->debug_base)
d70cc3ba 1404 return svr4_default_sos (info);
cb08cc53
JK
1405
1406 /* Assume that everything is a library if the dynamic loader was loaded
1407 late by a static executable. */
7e10abd1
TT
1408 if (current_program_space->exec_bfd ()
1409 && bfd_get_section_by_name (current_program_space->exec_bfd (),
1410 ".dynamic") == NULL)
cb08cc53
JK
1411 ignore_first = 0;
1412 else
1413 ignore_first = 1;
1414
2b6ff1c0
TT
1415 auto cleanup = make_scope_exit ([&] ()
1416 {
1417 svr4_free_library_list (&head);
1418 });
cb08cc53
JK
1419
1420 /* Walk the inferior's link map list, and build our list of
1421 `struct so_list' nodes. */
1422 lm = solib_svr4_r_map (info);
1423 if (lm)
d70cc3ba 1424 svr4_read_so_list (info, lm, 0, &link_ptr, ignore_first);
cb08cc53
JK
1425
1426 /* On Solaris, the dynamic linker is not in the normal list of
1427 shared objects, so make sure we pick it up too. Having
1428 symbol information for the dynamic linker is quite crucial
1429 for skipping dynamic linker resolver code. */
1430 lm = solib_svr4_r_ldsomap (info);
1431 if (lm)
d70cc3ba 1432 svr4_read_so_list (info, lm, 0, &link_ptr, 0);
cb08cc53 1433
2b6ff1c0 1434 cleanup.release ();
13437d4b 1435
34439770 1436 if (head == NULL)
d70cc3ba 1437 return svr4_default_sos (info);
34439770 1438
13437d4b
KB
1439 return head;
1440}
1441
8b9a549d
PA
1442/* Implement the main part of the "current_sos" target_so_ops
1443 method. */
f9e14852
GB
1444
1445static struct so_list *
d70cc3ba 1446svr4_current_sos_1 (svr4_info *info)
f9e14852 1447{
f9e14852
GB
1448 /* If the solib list has been read and stored by the probes
1449 interface then we return a copy of the stored list. */
1450 if (info->solib_list != NULL)
1451 return svr4_copy_library_list (info->solib_list);
1452
1453 /* Otherwise obtain the solib list directly from the inferior. */
1454 return svr4_current_sos_direct (info);
1455}
1456
8b9a549d
PA
1457/* Implement the "current_sos" target_so_ops method. */
1458
1459static struct so_list *
1460svr4_current_sos (void)
1461{
d70cc3ba
SM
1462 svr4_info *info = get_svr4_info (current_program_space);
1463 struct so_list *so_head = svr4_current_sos_1 (info);
8b9a549d
PA
1464 struct mem_range vsyscall_range;
1465
1466 /* Filter out the vDSO module, if present. Its symbol file would
1467 not be found on disk. The vDSO/vsyscall's OBJFILE is instead
1468 managed by symfile-mem.c:add_vsyscall_page. */
1469 if (gdbarch_vsyscall_range (target_gdbarch (), &vsyscall_range)
1470 && vsyscall_range.length != 0)
1471 {
1472 struct so_list **sop;
1473
1474 sop = &so_head;
1475 while (*sop != NULL)
1476 {
1477 struct so_list *so = *sop;
1478
1479 /* We can't simply match the vDSO by starting address alone,
1480 because lm_info->l_addr_inferior (and also l_addr) do not
1481 necessarily represent the real starting address of the
1482 ELF if the vDSO's ELF itself is "prelinked". The l_ld
1483 field (the ".dynamic" section of the shared object)
1484 always points at the absolute/resolved address though.
1485 So check whether that address is inside the vDSO's
1486 mapping instead.
1487
1488 E.g., on Linux 3.16 (x86_64) the vDSO is a regular
1489 0-based ELF, and we see:
1490
1491 (gdb) info auxv
1492 33 AT_SYSINFO_EHDR System-supplied DSO's ELF header 0x7ffff7ffb000
1493 (gdb) p/x *_r_debug.r_map.l_next
1494 $1 = {l_addr = 0x7ffff7ffb000, ..., l_ld = 0x7ffff7ffb318, ...}
1495
1496 And on Linux 2.6.32 (x86_64) we see:
1497
1498 (gdb) info auxv
1499 33 AT_SYSINFO_EHDR System-supplied DSO's ELF header 0x7ffff7ffe000
1500 (gdb) p/x *_r_debug.r_map.l_next
1501 $5 = {l_addr = 0x7ffff88fe000, ..., l_ld = 0x7ffff7ffe580, ... }
1502
1503 Dumping that vDSO shows:
1504
1505 (gdb) info proc mappings
1506 0x7ffff7ffe000 0x7ffff7fff000 0x1000 0 [vdso]
1507 (gdb) dump memory vdso.bin 0x7ffff7ffe000 0x7ffff7fff000
1508 # readelf -Wa vdso.bin
1509 [...]
1510 Entry point address: 0xffffffffff700700
1511 [...]
1512 Section Headers:
1513 [Nr] Name Type Address Off Size
1514 [ 0] NULL 0000000000000000 000000 000000
1515 [ 1] .hash HASH ffffffffff700120 000120 000038
1516 [ 2] .dynsym DYNSYM ffffffffff700158 000158 0000d8
1517 [...]
1518 [ 9] .dynamic DYNAMIC ffffffffff700580 000580 0000f0
1519 */
d0e449a1
SM
1520
1521 lm_info_svr4 *li = (lm_info_svr4 *) so->lm_info;
1522
1523 if (address_in_mem_range (li->l_ld, &vsyscall_range))
8b9a549d
PA
1524 {
1525 *sop = so->next;
1526 free_so (so);
1527 break;
1528 }
1529
1530 sop = &so->next;
1531 }
1532 }
1533
1534 return so_head;
1535}
1536
93a57060 1537/* Get the address of the link_map for a given OBJFILE. */
bc4a16ae
EZ
1538
1539CORE_ADDR
1540svr4_fetch_objfile_link_map (struct objfile *objfile)
1541{
d70cc3ba 1542 struct svr4_info *info = get_svr4_info (objfile->pspace);
bc4a16ae 1543
93a57060 1544 /* Cause svr4_current_sos() to be run if it hasn't been already. */
1a816a87 1545 if (info->main_lm_addr == 0)
e696b3ad 1546 solib_add (NULL, 0, auto_solib_add);
bc4a16ae 1547
93a57060 1548 /* svr4_current_sos() will set main_lm_addr for the main executable. */
a42d7dd8 1549 if (objfile == current_program_space->symfile_object_file)
1a816a87 1550 return info->main_lm_addr;
93a57060 1551
df22c1e5
JB
1552 /* If OBJFILE is a separate debug object file, look for the
1553 original object file. */
1554 if (objfile->separate_debug_objfile_backlink != NULL)
1555 objfile = objfile->separate_debug_objfile_backlink;
1556
93a57060
DJ
1557 /* The other link map addresses may be found by examining the list
1558 of shared libraries. */
a1fd1ac9 1559 for (struct so_list *so : current_program_space->solibs ())
93a57060 1560 if (so->objfile == objfile)
d0e449a1
SM
1561 {
1562 lm_info_svr4 *li = (lm_info_svr4 *) so->lm_info;
1563
1564 return li->lm_addr;
1565 }
93a57060
DJ
1566
1567 /* Not found! */
bc4a16ae
EZ
1568 return 0;
1569}
13437d4b
KB
1570
1571/* On some systems, the only way to recognize the link map entry for
1572 the main executable file is by looking at its name. Return
1573 non-zero iff SONAME matches one of the known main executable names. */
1574
1575static int
bc043ef3 1576match_main (const char *soname)
13437d4b 1577{
bc043ef3 1578 const char * const *mainp;
13437d4b
KB
1579
1580 for (mainp = main_name_list; *mainp != NULL; mainp++)
1581 {
1582 if (strcmp (soname, *mainp) == 0)
1583 return (1);
1584 }
1585
1586 return (0);
1587}
1588
13437d4b
KB
1589/* Return 1 if PC lies in the dynamic symbol resolution code of the
1590 SVR4 run time loader. */
13437d4b 1591
7d522c90 1592int
d7fa2ae2 1593svr4_in_dynsym_resolve_code (CORE_ADDR pc)
13437d4b 1594{
d70cc3ba 1595 struct svr4_info *info = get_svr4_info (current_program_space);
6c95b8df
PA
1596
1597 return ((pc >= info->interp_text_sect_low
1598 && pc < info->interp_text_sect_high)
1599 || (pc >= info->interp_plt_sect_low
1600 && pc < info->interp_plt_sect_high)
3e5d3a5a 1601 || in_plt_section (pc)
0875794a 1602 || in_gnu_ifunc_stub (pc));
13437d4b 1603}
13437d4b 1604
2f4950cd
AC
1605/* Given an executable's ABFD and target, compute the entry-point
1606 address. */
1607
1608static CORE_ADDR
1609exec_entry_point (struct bfd *abfd, struct target_ops *targ)
1610{
8c2b9656
YQ
1611 CORE_ADDR addr;
1612
2f4950cd
AC
1613 /* KevinB wrote ... for most targets, the address returned by
1614 bfd_get_start_address() is the entry point for the start
1615 function. But, for some targets, bfd_get_start_address() returns
1616 the address of a function descriptor from which the entry point
1617 address may be extracted. This address is extracted by
1618 gdbarch_convert_from_func_ptr_addr(). The method
1619 gdbarch_convert_from_func_ptr_addr() is the merely the identify
1620 function for targets which don't use function descriptors. */
8c2b9656 1621 addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2f4950cd
AC
1622 bfd_get_start_address (abfd),
1623 targ);
8c2b9656 1624 return gdbarch_addr_bits_remove (target_gdbarch (), addr);
2f4950cd 1625}
13437d4b 1626
f9e14852
GB
1627/* A probe and its associated action. */
1628
1629struct probe_and_action
1630{
1631 /* The probe. */
935676c9 1632 probe *prob;
f9e14852 1633
729662a5
TT
1634 /* The relocated address of the probe. */
1635 CORE_ADDR address;
1636
f9e14852
GB
1637 /* The action. */
1638 enum probe_action action;
7905fc35
PA
1639
1640 /* The objfile where this probe was found. */
1641 struct objfile *objfile;
f9e14852
GB
1642};
1643
1644/* Returns a hash code for the probe_and_action referenced by p. */
1645
1646static hashval_t
1647hash_probe_and_action (const void *p)
1648{
19ba03f4 1649 const struct probe_and_action *pa = (const struct probe_and_action *) p;
f9e14852 1650
729662a5 1651 return (hashval_t) pa->address;
f9e14852
GB
1652}
1653
1654/* Returns non-zero if the probe_and_actions referenced by p1 and p2
1655 are equal. */
1656
1657static int
1658equal_probe_and_action (const void *p1, const void *p2)
1659{
19ba03f4
SM
1660 const struct probe_and_action *pa1 = (const struct probe_and_action *) p1;
1661 const struct probe_and_action *pa2 = (const struct probe_and_action *) p2;
f9e14852 1662
729662a5 1663 return pa1->address == pa2->address;
f9e14852
GB
1664}
1665
7905fc35
PA
1666/* Traversal function for probes_table_remove_objfile_probes. */
1667
1668static int
1669probes_table_htab_remove_objfile_probes (void **slot, void *info)
1670{
1671 probe_and_action *pa = (probe_and_action *) *slot;
1672 struct objfile *objfile = (struct objfile *) info;
1673
1674 if (pa->objfile == objfile)
09232438
TT
1675 htab_clear_slot (get_svr4_info (objfile->pspace)->probes_table.get (),
1676 slot);
7905fc35
PA
1677
1678 return 1;
1679}
1680
1681/* Remove all probes that belong to OBJFILE from the probes table. */
1682
1683static void
1684probes_table_remove_objfile_probes (struct objfile *objfile)
1685{
d70cc3ba 1686 svr4_info *info = get_svr4_info (objfile->pspace);
7905fc35 1687 if (info->probes_table != nullptr)
09232438 1688 htab_traverse_noresize (info->probes_table.get (),
7905fc35
PA
1689 probes_table_htab_remove_objfile_probes, objfile);
1690}
1691
f9e14852
GB
1692/* Register a solib event probe and its associated action in the
1693 probes table. */
1694
1695static void
d70cc3ba 1696register_solib_event_probe (svr4_info *info, struct objfile *objfile,
7905fc35 1697 probe *prob, CORE_ADDR address,
729662a5 1698 enum probe_action action)
f9e14852 1699{
f9e14852
GB
1700 struct probe_and_action lookup, *pa;
1701 void **slot;
1702
1703 /* Create the probes table, if necessary. */
1704 if (info->probes_table == NULL)
09232438
TT
1705 info->probes_table.reset (htab_create_alloc (1, hash_probe_and_action,
1706 equal_probe_and_action,
1707 xfree, xcalloc, xfree));
f9e14852 1708
729662a5 1709 lookup.address = address;
09232438 1710 slot = htab_find_slot (info->probes_table.get (), &lookup, INSERT);
f9e14852
GB
1711 gdb_assert (*slot == HTAB_EMPTY_ENTRY);
1712
1713 pa = XCNEW (struct probe_and_action);
935676c9 1714 pa->prob = prob;
729662a5 1715 pa->address = address;
f9e14852 1716 pa->action = action;
7905fc35 1717 pa->objfile = objfile;
f9e14852
GB
1718
1719 *slot = pa;
1720}
1721
1722/* Get the solib event probe at the specified location, and the
1723 action associated with it. Returns NULL if no solib event probe
1724 was found. */
1725
1726static struct probe_and_action *
1727solib_event_probe_at (struct svr4_info *info, CORE_ADDR address)
1728{
f9e14852
GB
1729 struct probe_and_action lookup;
1730 void **slot;
1731
729662a5 1732 lookup.address = address;
09232438 1733 slot = htab_find_slot (info->probes_table.get (), &lookup, NO_INSERT);
f9e14852
GB
1734
1735 if (slot == NULL)
1736 return NULL;
1737
1738 return (struct probe_and_action *) *slot;
1739}
1740
1741/* Decide what action to take when the specified solib event probe is
1742 hit. */
1743
1744static enum probe_action
1745solib_event_probe_action (struct probe_and_action *pa)
1746{
1747 enum probe_action action;
73c6b475 1748 unsigned probe_argc = 0;
08a6411c 1749 struct frame_info *frame = get_current_frame ();
f9e14852
GB
1750
1751 action = pa->action;
1752 if (action == DO_NOTHING || action == PROBES_INTERFACE_FAILED)
1753 return action;
1754
1755 gdb_assert (action == FULL_RELOAD || action == UPDATE_OR_RELOAD);
1756
1757 /* Check that an appropriate number of arguments has been supplied.
1758 We expect:
1759 arg0: Lmid_t lmid (mandatory)
1760 arg1: struct r_debug *debug_base (mandatory)
1761 arg2: struct link_map *new (optional, for incremental updates) */
a70b8144 1762 try
3bd7e5b7 1763 {
fe01123e 1764 probe_argc = pa->prob->get_argument_count (get_frame_arch (frame));
3bd7e5b7 1765 }
230d2906 1766 catch (const gdb_exception_error &ex)
3bd7e5b7
SDJ
1767 {
1768 exception_print (gdb_stderr, ex);
1769 probe_argc = 0;
1770 }
3bd7e5b7 1771
935676c9
SDJ
1772 /* If get_argument_count throws an exception, probe_argc will be set
1773 to zero. However, if pa->prob does not have arguments, then
1774 get_argument_count will succeed but probe_argc will also be zero.
1775 Both cases happen because of different things, but they are
1776 treated equally here: action will be set to
3bd7e5b7 1777 PROBES_INTERFACE_FAILED. */
f9e14852
GB
1778 if (probe_argc == 2)
1779 action = FULL_RELOAD;
1780 else if (probe_argc < 2)
1781 action = PROBES_INTERFACE_FAILED;
1782
1783 return action;
1784}
1785
1786/* Populate the shared object list by reading the entire list of
1787 shared objects from the inferior. Handle special cases relating
1788 to the first elements of the list. Returns nonzero on success. */
1789
1790static int
1791solist_update_full (struct svr4_info *info)
1792{
1793 free_solib_list (info);
1794 info->solib_list = svr4_current_sos_direct (info);
1795
1796 return 1;
1797}
1798
1799/* Update the shared object list starting from the link-map entry
1800 passed by the linker in the probe's third argument. Returns
1801 nonzero if the list was successfully updated, or zero to indicate
1802 failure. */
1803
1804static int
1805solist_update_incremental (struct svr4_info *info, CORE_ADDR lm)
1806{
1807 struct so_list *tail;
1808 CORE_ADDR prev_lm;
1809
1810 /* svr4_current_sos_direct contains logic to handle a number of
1811 special cases relating to the first elements of the list. To
1812 avoid duplicating this logic we defer to solist_update_full
1813 if the list is empty. */
1814 if (info->solib_list == NULL)
1815 return 0;
1816
1817 /* Fall back to a full update if we are using a remote target
1818 that does not support incremental transfers. */
1819 if (info->using_xfer && !target_augmented_libraries_svr4_read ())
1820 return 0;
1821
1822 /* Walk to the end of the list. */
1823 for (tail = info->solib_list; tail->next != NULL; tail = tail->next)
1824 /* Nothing. */;
d0e449a1
SM
1825
1826 lm_info_svr4 *li = (lm_info_svr4 *) tail->lm_info;
1827 prev_lm = li->lm_addr;
f9e14852
GB
1828
1829 /* Read the new objects. */
1830 if (info->using_xfer)
1831 {
1832 struct svr4_library_list library_list;
1833 char annex[64];
1834
1835 xsnprintf (annex, sizeof (annex), "start=%s;prev=%s",
1836 phex_nz (lm, sizeof (lm)),
1837 phex_nz (prev_lm, sizeof (prev_lm)));
1838 if (!svr4_current_sos_via_xfer_libraries (&library_list, annex))
1839 return 0;
1840
1841 tail->next = library_list.head;
1842 }
1843 else
1844 {
1845 struct so_list **link = &tail->next;
1846
1847 /* IGNORE_FIRST may safely be set to zero here because the
1848 above check and deferral to solist_update_full ensures
1849 that this call to svr4_read_so_list will never see the
1850 first element. */
d70cc3ba 1851 if (!svr4_read_so_list (info, lm, prev_lm, &link, 0))
f9e14852
GB
1852 return 0;
1853 }
1854
1855 return 1;
1856}
1857
1858/* Disable the probes-based linker interface and revert to the
1859 original interface. We don't reset the breakpoints as the
1860 ones set up for the probes-based interface are adequate. */
1861
1862static void
d70cc3ba 1863disable_probes_interface (svr4_info *info)
f9e14852 1864{
f9e14852 1865 warning (_("Probes-based dynamic linker interface failed.\n"
422186a9 1866 "Reverting to original interface."));
f9e14852
GB
1867
1868 free_probes_table (info);
1869 free_solib_list (info);
1870}
1871
1872/* Update the solib list as appropriate when using the
1873 probes-based linker interface. Do nothing if using the
1874 standard interface. */
1875
1876static void
1877svr4_handle_solib_event (void)
1878{
d70cc3ba 1879 struct svr4_info *info = get_svr4_info (current_program_space);
f9e14852
GB
1880 struct probe_and_action *pa;
1881 enum probe_action action;
ad1c917a 1882 struct value *val = NULL;
f9e14852 1883 CORE_ADDR pc, debug_base, lm = 0;
08a6411c 1884 struct frame_info *frame = get_current_frame ();
f9e14852
GB
1885
1886 /* Do nothing if not using the probes interface. */
1887 if (info->probes_table == NULL)
1888 return;
1889
1890 /* If anything goes wrong we revert to the original linker
1891 interface. */
d70cc3ba
SM
1892 auto cleanup = make_scope_exit ([info] ()
1893 {
1894 disable_probes_interface (info);
1895 });
f9e14852
GB
1896
1897 pc = regcache_read_pc (get_current_regcache ());
1898 pa = solib_event_probe_at (info, pc);
1899 if (pa == NULL)
d01c5877 1900 return;
f9e14852
GB
1901
1902 action = solib_event_probe_action (pa);
1903 if (action == PROBES_INTERFACE_FAILED)
d01c5877 1904 return;
f9e14852
GB
1905
1906 if (action == DO_NOTHING)
1907 {
d01c5877 1908 cleanup.release ();
f9e14852
GB
1909 return;
1910 }
1911
935676c9 1912 /* evaluate_argument looks up symbols in the dynamic linker
f9e14852
GB
1913 using find_pc_section. find_pc_section is accelerated by a cache
1914 called the section map. The section map is invalidated every
1915 time a shared library is loaded or unloaded, and if the inferior
1916 is generating a lot of shared library events then the section map
1917 will be updated every time svr4_handle_solib_event is called.
1918 We called find_pc_section in svr4_create_solib_event_breakpoints,
1919 so we can guarantee that the dynamic linker's sections are in the
1920 section map. We can therefore inhibit section map updates across
935676c9 1921 these calls to evaluate_argument and save a lot of time. */
06424eac
TT
1922 {
1923 scoped_restore inhibit_updates
1924 = inhibit_section_map_updates (current_program_space);
f9e14852 1925
a70b8144 1926 try
06424eac
TT
1927 {
1928 val = pa->prob->evaluate_argument (1, frame);
1929 }
230d2906 1930 catch (const gdb_exception_error &ex)
06424eac
TT
1931 {
1932 exception_print (gdb_stderr, ex);
1933 val = NULL;
1934 }
f9e14852 1935
06424eac 1936 if (val == NULL)
d01c5877 1937 return;
f9e14852 1938
06424eac
TT
1939 debug_base = value_as_address (val);
1940 if (debug_base == 0)
d01c5877 1941 return;
f9e14852 1942
06424eac
TT
1943 /* Always locate the debug struct, in case it moved. */
1944 info->debug_base = 0;
1945 if (locate_base (info) == 0)
cb736441
GB
1946 {
1947 /* It's possible for the reloc_complete probe to be triggered before
1948 the linker has set the DT_DEBUG pointer (for example, when the
1949 linker has finished relocating an LD_AUDIT library or its
1950 dependencies). Since we can't yet handle libraries from other link
1951 namespaces, we don't lose anything by ignoring them here. */
1952 struct value *link_map_id_val;
1953 try
1954 {
1955 link_map_id_val = pa->prob->evaluate_argument (0, frame);
1956 }
1957 catch (const gdb_exception_error)
1958 {
1959 link_map_id_val = NULL;
1960 }
1961 /* glibc and illumos' libc both define LM_ID_BASE as zero. */
1962 if (link_map_id_val != NULL && value_as_long (link_map_id_val) != 0)
1963 action = DO_NOTHING;
1964 else
1965 return;
1966 }
3bd7e5b7 1967
06424eac
TT
1968 /* GDB does not currently support libraries loaded via dlmopen
1969 into namespaces other than the initial one. We must ignore
1970 any namespace other than the initial namespace here until
1971 support for this is added to GDB. */
1972 if (debug_base != info->debug_base)
1973 action = DO_NOTHING;
f9e14852 1974
06424eac
TT
1975 if (action == UPDATE_OR_RELOAD)
1976 {
a70b8144 1977 try
06424eac
TT
1978 {
1979 val = pa->prob->evaluate_argument (2, frame);
1980 }
230d2906 1981 catch (const gdb_exception_error &ex)
06424eac
TT
1982 {
1983 exception_print (gdb_stderr, ex);
06424eac
TT
1984 return;
1985 }
06424eac
TT
1986
1987 if (val != NULL)
1988 lm = value_as_address (val);
1989
1990 if (lm == 0)
1991 action = FULL_RELOAD;
1992 }
f9e14852 1993
06424eac
TT
1994 /* Resume section map updates. Closing the scope is
1995 sufficient. */
1996 }
f9e14852
GB
1997
1998 if (action == UPDATE_OR_RELOAD)
1999 {
2000 if (!solist_update_incremental (info, lm))
2001 action = FULL_RELOAD;
2002 }
2003
2004 if (action == FULL_RELOAD)
2005 {
2006 if (!solist_update_full (info))
d01c5877 2007 return;
f9e14852
GB
2008 }
2009
d01c5877 2010 cleanup.release ();
f9e14852
GB
2011}
2012
2013/* Helper function for svr4_update_solib_event_breakpoints. */
2014
95da600f
CB
2015static bool
2016svr4_update_solib_event_breakpoint (struct breakpoint *b)
f9e14852
GB
2017{
2018 struct bp_location *loc;
2019
2020 if (b->type != bp_shlib_event)
2021 {
2022 /* Continue iterating. */
95da600f 2023 return false;
f9e14852
GB
2024 }
2025
2026 for (loc = b->loc; loc != NULL; loc = loc->next)
2027 {
2028 struct svr4_info *info;
2029 struct probe_and_action *pa;
2030
09232438 2031 info = solib_svr4_pspace_data.get (loc->pspace);
f9e14852
GB
2032 if (info == NULL || info->probes_table == NULL)
2033 continue;
2034
2035 pa = solib_event_probe_at (info, loc->address);
2036 if (pa == NULL)
2037 continue;
2038
2039 if (pa->action == DO_NOTHING)
2040 {
2041 if (b->enable_state == bp_disabled && stop_on_solib_events)
2042 enable_breakpoint (b);
2043 else if (b->enable_state == bp_enabled && !stop_on_solib_events)
2044 disable_breakpoint (b);
2045 }
2046
2047 break;
2048 }
2049
2050 /* Continue iterating. */
95da600f 2051 return false;
f9e14852
GB
2052}
2053
2054/* Enable or disable optional solib event breakpoints as appropriate.
2055 Called whenever stop_on_solib_events is changed. */
2056
2057static void
2058svr4_update_solib_event_breakpoints (void)
2059{
95da600f 2060 iterate_over_breakpoints (svr4_update_solib_event_breakpoint);
f9e14852
GB
2061}
2062
2063/* Create and register solib event breakpoints. PROBES is an array
2064 of NUM_PROBES elements, each of which is vector of probes. A
2065 solib event breakpoint will be created and registered for each
2066 probe. */
2067
2068static void
d70cc3ba 2069svr4_create_probe_breakpoints (svr4_info *info, struct gdbarch *gdbarch,
45461e0d 2070 const std::vector<probe *> *probes,
729662a5 2071 struct objfile *objfile)
f9e14852 2072{
45461e0d 2073 for (int i = 0; i < NUM_PROBES; i++)
f9e14852
GB
2074 {
2075 enum probe_action action = probe_info[i].action;
f9e14852 2076
45461e0d 2077 for (probe *p : probes[i])
f9e14852 2078 {
935676c9 2079 CORE_ADDR address = p->get_relocated_address (objfile);
729662a5
TT
2080
2081 create_solib_event_breakpoint (gdbarch, address);
d70cc3ba 2082 register_solib_event_probe (info, objfile, p, address, action);
f9e14852
GB
2083 }
2084 }
2085
2086 svr4_update_solib_event_breakpoints ();
2087}
2088
e661ef01
AH
2089/* Find all the glibc named probes. Only if all of the probes are found, then
2090 create them and return true. Otherwise return false. If WITH_PREFIX is set
2091 then add "rtld" to the front of the probe names. */
2092static bool
2093svr4_find_and_create_probe_breakpoints (svr4_info *info,
2094 struct gdbarch *gdbarch,
2095 struct obj_section *os,
2096 bool with_prefix)
2097{
2098 std::vector<probe *> probes[NUM_PROBES];
e661ef01
AH
2099
2100 for (int i = 0; i < NUM_PROBES; i++)
2101 {
2102 const char *name = probe_info[i].name;
2103 char buf[32];
2104
2105 /* Fedora 17 and Red Hat Enterprise Linux 6.2-6.4 shipped with an early
2106 version of the probes code in which the probes' names were prefixed
2107 with "rtld_" and the "map_failed" probe did not exist. The locations
2108 of the probes are otherwise the same, so we check for probes with
2109 prefixed names if probes with unprefixed names are not present. */
2110 if (with_prefix)
2111 {
2112 xsnprintf (buf, sizeof (buf), "rtld_%s", name);
2113 name = buf;
2114 }
2115
2116 probes[i] = find_probes_in_objfile (os->objfile, "rtld", name);
2117
2118 /* The "map_failed" probe did not exist in early
2119 versions of the probes code in which the probes'
2120 names were prefixed with "rtld_". */
2121 if (with_prefix && streq (name, "rtld_map_failed"))
2122 continue;
2123
2124 /* Ensure at least one probe for the current name was found. */
2125 if (probes[i].empty ())
2126 return false;
2127
2128 /* Ensure probe arguments can be evaluated. */
d90b8f26 2129 for (probe *p : probes[i])
e661ef01 2130 {
e661ef01
AH
2131 if (!p->can_evaluate_arguments ())
2132 return false;
d90b8f26
AH
2133 /* This will fail if the probe is invalid. This has been seen on Arm
2134 due to references to symbols that have been resolved away. */
2135 try
2136 {
2137 p->get_argument_count (gdbarch);
2138 }
2139 catch (const gdb_exception_error &ex)
2140 {
2141 exception_print (gdb_stderr, ex);
2142 warning (_("Initializing probes-based dynamic linker interface "
2143 "failed.\nReverting to original interface."));
2144 return false;
2145 }
e661ef01
AH
2146 }
2147 }
2148
2149 /* All probes found. Now create them. */
2150 svr4_create_probe_breakpoints (info, gdbarch, probes, os->objfile);
2151 return true;
2152}
2153
f9e14852
GB
2154/* Both the SunOS and the SVR4 dynamic linkers call a marker function
2155 before and after mapping and unmapping shared libraries. The sole
2156 purpose of this method is to allow debuggers to set a breakpoint so
2157 they can track these changes.
2158
2159 Some versions of the glibc dynamic linker contain named probes
2160 to allow more fine grained stopping. Given the address of the
2161 original marker function, this function attempts to find these
2162 probes, and if found, sets breakpoints on those instead. If the
2163 probes aren't found, a single breakpoint is set on the original
2164 marker function. */
2165
2166static void
d70cc3ba 2167svr4_create_solib_event_breakpoints (svr4_info *info, struct gdbarch *gdbarch,
f9e14852
GB
2168 CORE_ADDR address)
2169{
e661ef01 2170 struct obj_section *os = find_pc_section (address);
f9e14852 2171
e661ef01
AH
2172 if (os == nullptr
2173 || (!svr4_find_and_create_probe_breakpoints (info, gdbarch, os, false)
2174 && !svr4_find_and_create_probe_breakpoints (info, gdbarch, os, true)))
2175 create_solib_event_breakpoint (gdbarch, address);
f9e14852
GB
2176}
2177
cb457ae2
YQ
2178/* Helper function for gdb_bfd_lookup_symbol. */
2179
2180static int
3953f15c 2181cmp_name_and_sec_flags (const asymbol *sym, const void *data)
cb457ae2
YQ
2182{
2183 return (strcmp (sym->name, (const char *) data) == 0
2184 && (sym->section->flags & (SEC_CODE | SEC_DATA)) != 0);
2185}
7f86f058 2186/* Arrange for dynamic linker to hit breakpoint.
13437d4b
KB
2187
2188 Both the SunOS and the SVR4 dynamic linkers have, as part of their
2189 debugger interface, support for arranging for the inferior to hit
2190 a breakpoint after mapping in the shared libraries. This function
2191 enables that breakpoint.
2192
2193 For SunOS, there is a special flag location (in_debugger) which we
2194 set to 1. When the dynamic linker sees this flag set, it will set
2195 a breakpoint at a location known only to itself, after saving the
2196 original contents of that place and the breakpoint address itself,
2197 in it's own internal structures. When we resume the inferior, it
2198 will eventually take a SIGTRAP when it runs into the breakpoint.
2199 We handle this (in a different place) by restoring the contents of
2200 the breakpointed location (which is only known after it stops),
2201 chasing around to locate the shared libraries that have been
2202 loaded, then resuming.
2203
2204 For SVR4, the debugger interface structure contains a member (r_brk)
2205 which is statically initialized at the time the shared library is
2206 built, to the offset of a function (_r_debug_state) which is guaran-
2207 teed to be called once before mapping in a library, and again when
2208 the mapping is complete. At the time we are examining this member,
2209 it contains only the unrelocated offset of the function, so we have
2210 to do our own relocation. Later, when the dynamic linker actually
2211 runs, it relocates r_brk to be the actual address of _r_debug_state().
2212
2213 The debugger interface structure also contains an enumeration which
2214 is set to either RT_ADD or RT_DELETE prior to changing the mapping,
2215 depending upon whether or not the library is being mapped or unmapped,
7f86f058 2216 and then set to RT_CONSISTENT after the library is mapped/unmapped. */
13437d4b
KB
2217
2218static int
268a4a75 2219enable_break (struct svr4_info *info, int from_tty)
13437d4b 2220{
3b7344d5 2221 struct bound_minimal_symbol msymbol;
bc043ef3 2222 const char * const *bkpt_namep;
13437d4b 2223 asection *interp_sect;
7cd25cfc 2224 CORE_ADDR sym_addr;
13437d4b 2225
6c95b8df
PA
2226 info->interp_text_sect_low = info->interp_text_sect_high = 0;
2227 info->interp_plt_sect_low = info->interp_plt_sect_high = 0;
13437d4b 2228
7cd25cfc
DJ
2229 /* If we already have a shared library list in the target, and
2230 r_debug contains r_brk, set the breakpoint there - this should
2231 mean r_brk has already been relocated. Assume the dynamic linker
2232 is the object containing r_brk. */
2233
e696b3ad 2234 solib_add (NULL, from_tty, auto_solib_add);
7cd25cfc 2235 sym_addr = 0;
1a816a87
PA
2236 if (info->debug_base && solib_svr4_r_map (info) != 0)
2237 sym_addr = solib_svr4_r_brk (info);
7cd25cfc
DJ
2238
2239 if (sym_addr != 0)
2240 {
2241 struct obj_section *os;
2242
b36ec657 2243 sym_addr = gdbarch_addr_bits_remove
8b88a78e
PA
2244 (target_gdbarch (),
2245 gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2246 sym_addr,
2247 current_top_target ()));
b36ec657 2248
48379de6
DE
2249 /* On at least some versions of Solaris there's a dynamic relocation
2250 on _r_debug.r_brk and SYM_ADDR may not be relocated yet, e.g., if
2251 we get control before the dynamic linker has self-relocated.
2252 Check if SYM_ADDR is in a known section, if it is assume we can
2253 trust its value. This is just a heuristic though, it could go away
2254 or be replaced if it's getting in the way.
2255
2256 On ARM we need to know whether the ISA of rtld_db_dlactivity (or
2257 however it's spelled in your particular system) is ARM or Thumb.
2258 That knowledge is encoded in the address, if it's Thumb the low bit
2259 is 1. However, we've stripped that info above and it's not clear
2260 what all the consequences are of passing a non-addr_bits_remove'd
f9e14852 2261 address to svr4_create_solib_event_breakpoints. The call to
48379de6
DE
2262 find_pc_section verifies we know about the address and have some
2263 hope of computing the right kind of breakpoint to use (via
2264 symbol info). It does mean that GDB needs to be pointed at a
2265 non-stripped version of the dynamic linker in order to obtain
2266 information it already knows about. Sigh. */
2267
7cd25cfc
DJ
2268 os = find_pc_section (sym_addr);
2269 if (os != NULL)
2270 {
2271 /* Record the relocated start and end address of the dynamic linker
2272 text and plt section for svr4_in_dynsym_resolve_code. */
2273 bfd *tmp_bfd;
2274 CORE_ADDR load_addr;
2275
2276 tmp_bfd = os->objfile->obfd;
b3b3bada 2277 load_addr = os->objfile->text_section_offset ();
7cd25cfc
DJ
2278
2279 interp_sect = bfd_get_section_by_name (tmp_bfd, ".text");
2280 if (interp_sect)
2281 {
fd361982
AM
2282 info->interp_text_sect_low
2283 = bfd_section_vma (interp_sect) + load_addr;
2284 info->interp_text_sect_high
2285 = info->interp_text_sect_low + bfd_section_size (interp_sect);
7cd25cfc
DJ
2286 }
2287 interp_sect = bfd_get_section_by_name (tmp_bfd, ".plt");
2288 if (interp_sect)
2289 {
fd361982
AM
2290 info->interp_plt_sect_low
2291 = bfd_section_vma (interp_sect) + load_addr;
2292 info->interp_plt_sect_high
2293 = info->interp_plt_sect_low + bfd_section_size (interp_sect);
7cd25cfc
DJ
2294 }
2295
d70cc3ba 2296 svr4_create_solib_event_breakpoints (info, target_gdbarch (), sym_addr);
7cd25cfc
DJ
2297 return 1;
2298 }
2299 }
2300
97ec2c2f 2301 /* Find the program interpreter; if not found, warn the user and drop
13437d4b 2302 into the old breakpoint at symbol code. */
17658d46
SM
2303 gdb::optional<gdb::byte_vector> interp_name_holder
2304 = find_program_interpreter ();
2305 if (interp_name_holder)
13437d4b 2306 {
17658d46 2307 const char *interp_name = (const char *) interp_name_holder->data ();
8ad2fcde
KB
2308 CORE_ADDR load_addr = 0;
2309 int load_addr_found = 0;
2ec9a4f8 2310 int loader_found_in_list = 0;
2f4950cd 2311 struct target_ops *tmp_bfd_target;
13437d4b 2312
7cd25cfc 2313 sym_addr = 0;
13437d4b
KB
2314
2315 /* Now we need to figure out where the dynamic linker was
dda83cd7
SM
2316 loaded so that we can load its symbols and place a breakpoint
2317 in the dynamic linker itself.
13437d4b 2318
dda83cd7
SM
2319 This address is stored on the stack. However, I've been unable
2320 to find any magic formula to find it for Solaris (appears to
2321 be trivial on GNU/Linux). Therefore, we have to try an alternate
2322 mechanism to find the dynamic linker's base address. */
e4f7b8c8 2323
192b62ce 2324 gdb_bfd_ref_ptr tmp_bfd;
a70b8144 2325 try
dda83cd7 2326 {
97ec2c2f 2327 tmp_bfd = solib_bfd_open (interp_name);
f1838a98 2328 }
230d2906 2329 catch (const gdb_exception &ex)
492d29ea
PA
2330 {
2331 }
492d29ea 2332
13437d4b
KB
2333 if (tmp_bfd == NULL)
2334 goto bkpt_at_symbol;
2335
2f4950cd 2336 /* Now convert the TMP_BFD into a target. That way target, as
15908a11
TT
2337 well as BFD operations can be used. */
2338 tmp_bfd_target = target_bfd_reopen (tmp_bfd);
2f4950cd 2339
f8766ec1 2340 /* On a running target, we can get the dynamic linker's base
dda83cd7 2341 address from the shared library table. */
a1fd1ac9 2342 for (struct so_list *so : current_program_space->solibs ())
8ad2fcde 2343 {
97ec2c2f 2344 if (svr4_same_1 (interp_name, so->so_original_name))
8ad2fcde
KB
2345 {
2346 load_addr_found = 1;
2ec9a4f8 2347 loader_found_in_list = 1;
192b62ce 2348 load_addr = lm_addr_check (so, tmp_bfd.get ());
8ad2fcde
KB
2349 break;
2350 }
8ad2fcde
KB
2351 }
2352
8d4e36ba 2353 /* If we were not able to find the base address of the loader
dda83cd7 2354 from our so_list, then try using the AT_BASE auxilliary entry. */
8d4e36ba 2355 if (!load_addr_found)
8b88a78e 2356 if (target_auxv_search (current_top_target (), AT_BASE, &load_addr) > 0)
ad3a0e5b 2357 {
f5656ead 2358 int addr_bit = gdbarch_addr_bit (target_gdbarch ());
ad3a0e5b
JK
2359
2360 /* Ensure LOAD_ADDR has proper sign in its possible upper bits so
2361 that `+ load_addr' will overflow CORE_ADDR width not creating
2362 invalid addresses like 0x101234567 for 32bit inferiors on 64bit
2363 GDB. */
2364
d182d057 2365 if (addr_bit < (sizeof (CORE_ADDR) * HOST_CHAR_BIT))
ad3a0e5b 2366 {
d182d057 2367 CORE_ADDR space_size = (CORE_ADDR) 1 << addr_bit;
192b62ce 2368 CORE_ADDR tmp_entry_point = exec_entry_point (tmp_bfd.get (),
ad3a0e5b
JK
2369 tmp_bfd_target);
2370
2371 gdb_assert (load_addr < space_size);
2372
2373 /* TMP_ENTRY_POINT exceeding SPACE_SIZE would be for prelinked
2374 64bit ld.so with 32bit executable, it should not happen. */
2375
2376 if (tmp_entry_point < space_size
2377 && tmp_entry_point + load_addr >= space_size)
2378 load_addr -= space_size;
2379 }
2380
2381 load_addr_found = 1;
2382 }
8d4e36ba 2383
8ad2fcde
KB
2384 /* Otherwise we find the dynamic linker's base address by examining
2385 the current pc (which should point at the entry point for the
8d4e36ba
JB
2386 dynamic linker) and subtracting the offset of the entry point.
2387
dda83cd7
SM
2388 This is more fragile than the previous approaches, but is a good
2389 fallback method because it has actually been working well in
2390 most cases. */
8ad2fcde 2391 if (!load_addr_found)
fb14de7b 2392 {
c2250ad1 2393 struct regcache *regcache
5b6d1e4f
PA
2394 = get_thread_arch_regcache (current_inferior ()->process_target (),
2395 inferior_ptid, target_gdbarch ());
433759f7 2396
fb14de7b 2397 load_addr = (regcache_read_pc (regcache)
192b62ce 2398 - exec_entry_point (tmp_bfd.get (), tmp_bfd_target));
fb14de7b 2399 }
2ec9a4f8
DJ
2400
2401 if (!loader_found_in_list)
34439770 2402 {
1a816a87
PA
2403 info->debug_loader_name = xstrdup (interp_name);
2404 info->debug_loader_offset_p = 1;
2405 info->debug_loader_offset = load_addr;
e696b3ad 2406 solib_add (NULL, from_tty, auto_solib_add);
34439770 2407 }
13437d4b
KB
2408
2409 /* Record the relocated start and end address of the dynamic linker
dda83cd7 2410 text and plt section for svr4_in_dynsym_resolve_code. */
192b62ce 2411 interp_sect = bfd_get_section_by_name (tmp_bfd.get (), ".text");
13437d4b
KB
2412 if (interp_sect)
2413 {
fd361982
AM
2414 info->interp_text_sect_low
2415 = bfd_section_vma (interp_sect) + load_addr;
2416 info->interp_text_sect_high
2417 = info->interp_text_sect_low + bfd_section_size (interp_sect);
13437d4b 2418 }
192b62ce 2419 interp_sect = bfd_get_section_by_name (tmp_bfd.get (), ".plt");
13437d4b
KB
2420 if (interp_sect)
2421 {
fd361982
AM
2422 info->interp_plt_sect_low
2423 = bfd_section_vma (interp_sect) + load_addr;
2424 info->interp_plt_sect_high
2425 = info->interp_plt_sect_low + bfd_section_size (interp_sect);
13437d4b
KB
2426 }
2427
2428 /* Now try to set a breakpoint in the dynamic linker. */
2429 for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++)
2430 {
192b62ce
TT
2431 sym_addr = gdb_bfd_lookup_symbol (tmp_bfd.get (),
2432 cmp_name_and_sec_flags,
3953f15c 2433 *bkpt_namep);
13437d4b
KB
2434 if (sym_addr != 0)
2435 break;
2436 }
2437
2bbe3cc1
DJ
2438 if (sym_addr != 0)
2439 /* Convert 'sym_addr' from a function pointer to an address.
2440 Because we pass tmp_bfd_target instead of the current
2441 target, this will always produce an unrelocated value. */
f5656ead 2442 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1
DJ
2443 sym_addr,
2444 tmp_bfd_target);
2445
695c3173 2446 /* We're done with both the temporary bfd and target. Closing
dda83cd7
SM
2447 the target closes the underlying bfd, because it holds the
2448 only remaining reference. */
460014f5 2449 target_close (tmp_bfd_target);
13437d4b
KB
2450
2451 if (sym_addr != 0)
2452 {
d70cc3ba 2453 svr4_create_solib_event_breakpoints (info, target_gdbarch (),
f9e14852 2454 load_addr + sym_addr);
13437d4b
KB
2455 return 1;
2456 }
2457
2458 /* For whatever reason we couldn't set a breakpoint in the dynamic
dda83cd7 2459 linker. Warn and drop into the old code. */
13437d4b 2460 bkpt_at_symbol:
82d03102 2461 warning (_("Unable to find dynamic linker breakpoint function.\n"
dda83cd7
SM
2462 "GDB will be unable to debug shared library initializers\n"
2463 "and track explicitly loaded dynamic code."));
13437d4b 2464 }
13437d4b 2465
e499d0f1
DJ
2466 /* Scan through the lists of symbols, trying to look up the symbol and
2467 set a breakpoint there. Terminate loop when we/if we succeed. */
2468
a42d7dd8 2469 objfile *objf = current_program_space->symfile_object_file;
e499d0f1
DJ
2470 for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++)
2471 {
a42d7dd8 2472 msymbol = lookup_minimal_symbol (*bkpt_namep, NULL, objf);
3b7344d5 2473 if ((msymbol.minsym != NULL)
77e371c0 2474 && (BMSYMBOL_VALUE_ADDRESS (msymbol) != 0))
e499d0f1 2475 {
77e371c0 2476 sym_addr = BMSYMBOL_VALUE_ADDRESS (msymbol);
f5656ead 2477 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
de64a9ac 2478 sym_addr,
8b88a78e 2479 current_top_target ());
d70cc3ba
SM
2480 svr4_create_solib_event_breakpoints (info, target_gdbarch (),
2481 sym_addr);
e499d0f1
DJ
2482 return 1;
2483 }
2484 }
13437d4b 2485
17658d46 2486 if (interp_name_holder && !current_inferior ()->attach_flag)
13437d4b 2487 {
c6490bf2 2488 for (bkpt_namep = bkpt_names; *bkpt_namep != NULL; bkpt_namep++)
13437d4b 2489 {
a42d7dd8 2490 msymbol = lookup_minimal_symbol (*bkpt_namep, NULL, objf);
3b7344d5 2491 if ((msymbol.minsym != NULL)
77e371c0 2492 && (BMSYMBOL_VALUE_ADDRESS (msymbol) != 0))
c6490bf2 2493 {
77e371c0 2494 sym_addr = BMSYMBOL_VALUE_ADDRESS (msymbol);
f5656ead 2495 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
c6490bf2 2496 sym_addr,
8b88a78e 2497 current_top_target ());
d70cc3ba
SM
2498 svr4_create_solib_event_breakpoints (info, target_gdbarch (),
2499 sym_addr);
c6490bf2
KB
2500 return 1;
2501 }
13437d4b
KB
2502 }
2503 }
542c95c2 2504 return 0;
13437d4b
KB
2505}
2506
d1012b8e 2507/* Read the ELF program headers from ABFD. */
e2a44558 2508
d1012b8e
SM
2509static gdb::optional<gdb::byte_vector>
2510read_program_headers_from_bfd (bfd *abfd)
e2a44558 2511{
d1012b8e
SM
2512 Elf_Internal_Ehdr *ehdr = elf_elfheader (abfd);
2513 int phdrs_size = ehdr->e_phnum * ehdr->e_phentsize;
2514 if (phdrs_size == 0)
2515 return {};
09919ac2 2516
d1012b8e 2517 gdb::byte_vector buf (phdrs_size);
09919ac2 2518 if (bfd_seek (abfd, ehdr->e_phoff, SEEK_SET) != 0
d1012b8e
SM
2519 || bfd_bread (buf.data (), phdrs_size, abfd) != phdrs_size)
2520 return {};
09919ac2
JK
2521
2522 return buf;
b8040f19
JK
2523}
2524
01c30d6e
JK
2525/* Return 1 and fill *DISPLACEMENTP with detected PIE offset of inferior
2526 exec_bfd. Otherwise return 0.
2527
2528 We relocate all of the sections by the same amount. This
c378eb4e 2529 behavior is mandated by recent editions of the System V ABI.
b8040f19
JK
2530 According to the System V Application Binary Interface,
2531 Edition 4.1, page 5-5:
2532
2533 ... Though the system chooses virtual addresses for
2534 individual processes, it maintains the segments' relative
2535 positions. Because position-independent code uses relative
85102364 2536 addressing between segments, the difference between
b8040f19
JK
2537 virtual addresses in memory must match the difference
2538 between virtual addresses in the file. The difference
2539 between the virtual address of any segment in memory and
2540 the corresponding virtual address in the file is thus a
2541 single constant value for any one executable or shared
2542 object in a given process. This difference is the base
2543 address. One use of the base address is to relocate the
2544 memory image of the program during dynamic linking.
2545
2546 The same language also appears in Edition 4.0 of the System V
09919ac2
JK
2547 ABI and is left unspecified in some of the earlier editions.
2548
2549 Decide if the objfile needs to be relocated. As indicated above, we will
2550 only be here when execution is stopped. But during attachment PC can be at
2551 arbitrary address therefore regcache_read_pc can be misleading (contrary to
2552 the auxv AT_ENTRY value). Moreover for executable with interpreter section
2553 regcache_read_pc would point to the interpreter and not the main executable.
2554
2555 So, to summarize, relocations are necessary when the start address obtained
2556 from the executable is different from the address in auxv AT_ENTRY entry.
d989b283 2557
09919ac2
JK
2558 [ The astute reader will note that we also test to make sure that
2559 the executable in question has the DYNAMIC flag set. It is my
2560 opinion that this test is unnecessary (undesirable even). It
2561 was added to avoid inadvertent relocation of an executable
2562 whose e_type member in the ELF header is not ET_DYN. There may
2563 be a time in the future when it is desirable to do relocations
2564 on other types of files as well in which case this condition
2565 should either be removed or modified to accomodate the new file
2566 type. - Kevin, Nov 2000. ] */
b8040f19 2567
01c30d6e
JK
2568static int
2569svr4_exec_displacement (CORE_ADDR *displacementp)
b8040f19 2570{
41752192
JK
2571 /* ENTRY_POINT is a possible function descriptor - before
2572 a call to gdbarch_convert_from_func_ptr_addr. */
8f61baf8 2573 CORE_ADDR entry_point, exec_displacement;
b8040f19 2574
7e10abd1 2575 if (current_program_space->exec_bfd () == NULL)
b8040f19
JK
2576 return 0;
2577
09919ac2
JK
2578 /* Therefore for ELF it is ET_EXEC and not ET_DYN. Both shared libraries
2579 being executed themselves and PIE (Position Independent Executable)
2580 executables are ET_DYN. */
2581
7e10abd1 2582 if ((bfd_get_file_flags (current_program_space->exec_bfd ()) & DYNAMIC) == 0)
09919ac2
JK
2583 return 0;
2584
8b88a78e 2585 if (target_auxv_search (current_top_target (), AT_ENTRY, &entry_point) <= 0)
09919ac2
JK
2586 return 0;
2587
7e10abd1
TT
2588 exec_displacement
2589 = entry_point - bfd_get_start_address (current_program_space->exec_bfd ());
09919ac2 2590
8f61baf8 2591 /* Verify the EXEC_DISPLACEMENT candidate complies with the required page
09919ac2
JK
2592 alignment. It is cheaper than the program headers comparison below. */
2593
7e10abd1
TT
2594 if (bfd_get_flavour (current_program_space->exec_bfd ())
2595 == bfd_target_elf_flavour)
09919ac2 2596 {
7e10abd1
TT
2597 const struct elf_backend_data *elf
2598 = get_elf_backend_data (current_program_space->exec_bfd ());
09919ac2
JK
2599
2600 /* p_align of PT_LOAD segments does not specify any alignment but
2601 only congruency of addresses:
2602 p_offset % p_align == p_vaddr % p_align
2603 Kernel is free to load the executable with lower alignment. */
2604
8f61baf8 2605 if ((exec_displacement & (elf->minpagesize - 1)) != 0)
09919ac2
JK
2606 return 0;
2607 }
2608
2609 /* Verify that the auxilliary vector describes the same file as exec_bfd, by
2610 comparing their program headers. If the program headers in the auxilliary
2611 vector do not match the program headers in the executable, then we are
2612 looking at a different file than the one used by the kernel - for
2613 instance, "gdb program" connected to "gdbserver :PORT ld.so program". */
2614
7e10abd1
TT
2615 if (bfd_get_flavour (current_program_space->exec_bfd ())
2616 == bfd_target_elf_flavour)
09919ac2 2617 {
d1012b8e 2618 /* Be optimistic and return 0 only if GDB was able to verify the headers
09919ac2 2619 really do not match. */
0a1e94c7 2620 int arch_size;
09919ac2 2621
17658d46
SM
2622 gdb::optional<gdb::byte_vector> phdrs_target
2623 = read_program_header (-1, &arch_size, NULL);
d1012b8e 2624 gdb::optional<gdb::byte_vector> phdrs_binary
7e10abd1 2625 = read_program_headers_from_bfd (current_program_space->exec_bfd ());
d1012b8e 2626 if (phdrs_target && phdrs_binary)
0a1e94c7 2627 {
f5656ead 2628 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
0a1e94c7
JK
2629
2630 /* We are dealing with three different addresses. EXEC_BFD
2631 represents current address in on-disk file. target memory content
2632 may be different from EXEC_BFD as the file may have been prelinked
2633 to a different address after the executable has been loaded.
2634 Moreover the address of placement in target memory can be
3e43a32a
MS
2635 different from what the program headers in target memory say -
2636 this is the goal of PIE.
0a1e94c7
JK
2637
2638 Detected DISPLACEMENT covers both the offsets of PIE placement and
2639 possible new prelink performed after start of the program. Here
2640 relocate BUF and BUF2 just by the EXEC_BFD vs. target memory
2641 content offset for the verification purpose. */
2642
d1012b8e 2643 if (phdrs_target->size () != phdrs_binary->size ()
7e10abd1 2644 || bfd_get_arch_size (current_program_space->exec_bfd ()) != arch_size)
d1012b8e 2645 return 0;
3e43a32a 2646 else if (arch_size == 32
17658d46 2647 && phdrs_target->size () >= sizeof (Elf32_External_Phdr)
dda83cd7 2648 && phdrs_target->size () % sizeof (Elf32_External_Phdr) == 0)
0a1e94c7 2649 {
7e10abd1
TT
2650 Elf_Internal_Ehdr *ehdr2
2651 = elf_tdata (current_program_space->exec_bfd ())->elf_header;
2652 Elf_Internal_Phdr *phdr2
2653 = elf_tdata (current_program_space->exec_bfd ())->phdr;
0a1e94c7
JK
2654 CORE_ADDR displacement = 0;
2655 int i;
2656
2657 /* DISPLACEMENT could be found more easily by the difference of
2658 ehdr2->e_entry. But we haven't read the ehdr yet, and we
2659 already have enough information to compute that displacement
2660 with what we've read. */
2661
2662 for (i = 0; i < ehdr2->e_phnum; i++)
2663 if (phdr2[i].p_type == PT_LOAD)
2664 {
2665 Elf32_External_Phdr *phdrp;
2666 gdb_byte *buf_vaddr_p, *buf_paddr_p;
2667 CORE_ADDR vaddr, paddr;
2668 CORE_ADDR displacement_vaddr = 0;
2669 CORE_ADDR displacement_paddr = 0;
2670
17658d46 2671 phdrp = &((Elf32_External_Phdr *) phdrs_target->data ())[i];
0a1e94c7
JK
2672 buf_vaddr_p = (gdb_byte *) &phdrp->p_vaddr;
2673 buf_paddr_p = (gdb_byte *) &phdrp->p_paddr;
2674
2675 vaddr = extract_unsigned_integer (buf_vaddr_p, 4,
2676 byte_order);
2677 displacement_vaddr = vaddr - phdr2[i].p_vaddr;
2678
2679 paddr = extract_unsigned_integer (buf_paddr_p, 4,
2680 byte_order);
2681 displacement_paddr = paddr - phdr2[i].p_paddr;
2682
2683 if (displacement_vaddr == displacement_paddr)
2684 displacement = displacement_vaddr;
2685
2686 break;
2687 }
2688
17658d46 2689 /* Now compare program headers from the target and the binary
dda83cd7 2690 with optional DISPLACEMENT. */
0a1e94c7 2691
17658d46
SM
2692 for (i = 0;
2693 i < phdrs_target->size () / sizeof (Elf32_External_Phdr);
2694 i++)
0a1e94c7
JK
2695 {
2696 Elf32_External_Phdr *phdrp;
2697 Elf32_External_Phdr *phdr2p;
2698 gdb_byte *buf_vaddr_p, *buf_paddr_p;
2699 CORE_ADDR vaddr, paddr;
43b8e241 2700 asection *plt2_asect;
0a1e94c7 2701
17658d46 2702 phdrp = &((Elf32_External_Phdr *) phdrs_target->data ())[i];
0a1e94c7
JK
2703 buf_vaddr_p = (gdb_byte *) &phdrp->p_vaddr;
2704 buf_paddr_p = (gdb_byte *) &phdrp->p_paddr;
d1012b8e 2705 phdr2p = &((Elf32_External_Phdr *) phdrs_binary->data ())[i];
0a1e94c7
JK
2706
2707 /* PT_GNU_STACK is an exception by being never relocated by
2708 prelink as its addresses are always zero. */
2709
2710 if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
2711 continue;
2712
2713 /* Check also other adjustment combinations - PR 11786. */
2714
3e43a32a
MS
2715 vaddr = extract_unsigned_integer (buf_vaddr_p, 4,
2716 byte_order);
0a1e94c7
JK
2717 vaddr -= displacement;
2718 store_unsigned_integer (buf_vaddr_p, 4, byte_order, vaddr);
2719
3e43a32a
MS
2720 paddr = extract_unsigned_integer (buf_paddr_p, 4,
2721 byte_order);
0a1e94c7
JK
2722 paddr -= displacement;
2723 store_unsigned_integer (buf_paddr_p, 4, byte_order, paddr);
2724
2725 if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
2726 continue;
2727
204b5331
DE
2728 /* Strip modifies the flags and alignment of PT_GNU_RELRO.
2729 CentOS-5 has problems with filesz, memsz as well.
be2d111a 2730 Strip also modifies memsz of PT_TLS.
204b5331 2731 See PR 11786. */
c44deb73
SM
2732 if (phdr2[i].p_type == PT_GNU_RELRO
2733 || phdr2[i].p_type == PT_TLS)
204b5331
DE
2734 {
2735 Elf32_External_Phdr tmp_phdr = *phdrp;
2736 Elf32_External_Phdr tmp_phdr2 = *phdr2p;
2737
2738 memset (tmp_phdr.p_filesz, 0, 4);
2739 memset (tmp_phdr.p_memsz, 0, 4);
2740 memset (tmp_phdr.p_flags, 0, 4);
2741 memset (tmp_phdr.p_align, 0, 4);
2742 memset (tmp_phdr2.p_filesz, 0, 4);
2743 memset (tmp_phdr2.p_memsz, 0, 4);
2744 memset (tmp_phdr2.p_flags, 0, 4);
2745 memset (tmp_phdr2.p_align, 0, 4);
2746
2747 if (memcmp (&tmp_phdr, &tmp_phdr2, sizeof (tmp_phdr))
2748 == 0)
2749 continue;
2750 }
2751
43b8e241 2752 /* prelink can convert .plt SHT_NOBITS to SHT_PROGBITS. */
7e10abd1 2753 bfd *exec_bfd = current_program_space->exec_bfd ();
43b8e241
JK
2754 plt2_asect = bfd_get_section_by_name (exec_bfd, ".plt");
2755 if (plt2_asect)
2756 {
2757 int content2;
2758 gdb_byte *buf_filesz_p = (gdb_byte *) &phdrp->p_filesz;
2759 CORE_ADDR filesz;
2760
fd361982 2761 content2 = (bfd_section_flags (plt2_asect)
43b8e241
JK
2762 & SEC_HAS_CONTENTS) != 0;
2763
2764 filesz = extract_unsigned_integer (buf_filesz_p, 4,
2765 byte_order);
2766
2767 /* PLT2_ASECT is from on-disk file (exec_bfd) while
2768 FILESZ is from the in-memory image. */
2769 if (content2)
fd361982 2770 filesz += bfd_section_size (plt2_asect);
43b8e241 2771 else
fd361982 2772 filesz -= bfd_section_size (plt2_asect);
43b8e241
JK
2773
2774 store_unsigned_integer (buf_filesz_p, 4, byte_order,
2775 filesz);
2776
2777 if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
2778 continue;
2779 }
2780
d1012b8e 2781 return 0;
0a1e94c7
JK
2782 }
2783 }
3e43a32a 2784 else if (arch_size == 64
17658d46 2785 && phdrs_target->size () >= sizeof (Elf64_External_Phdr)
dda83cd7 2786 && phdrs_target->size () % sizeof (Elf64_External_Phdr) == 0)
0a1e94c7 2787 {
7e10abd1
TT
2788 Elf_Internal_Ehdr *ehdr2
2789 = elf_tdata (current_program_space->exec_bfd ())->elf_header;
2790 Elf_Internal_Phdr *phdr2
2791 = elf_tdata (current_program_space->exec_bfd ())->phdr;
0a1e94c7
JK
2792 CORE_ADDR displacement = 0;
2793 int i;
2794
2795 /* DISPLACEMENT could be found more easily by the difference of
2796 ehdr2->e_entry. But we haven't read the ehdr yet, and we
2797 already have enough information to compute that displacement
2798 with what we've read. */
2799
2800 for (i = 0; i < ehdr2->e_phnum; i++)
2801 if (phdr2[i].p_type == PT_LOAD)
2802 {
2803 Elf64_External_Phdr *phdrp;
2804 gdb_byte *buf_vaddr_p, *buf_paddr_p;
2805 CORE_ADDR vaddr, paddr;
2806 CORE_ADDR displacement_vaddr = 0;
2807 CORE_ADDR displacement_paddr = 0;
2808
17658d46 2809 phdrp = &((Elf64_External_Phdr *) phdrs_target->data ())[i];
0a1e94c7
JK
2810 buf_vaddr_p = (gdb_byte *) &phdrp->p_vaddr;
2811 buf_paddr_p = (gdb_byte *) &phdrp->p_paddr;
2812
2813 vaddr = extract_unsigned_integer (buf_vaddr_p, 8,
2814 byte_order);
2815 displacement_vaddr = vaddr - phdr2[i].p_vaddr;
2816
2817 paddr = extract_unsigned_integer (buf_paddr_p, 8,
2818 byte_order);
2819 displacement_paddr = paddr - phdr2[i].p_paddr;
2820
2821 if (displacement_vaddr == displacement_paddr)
2822 displacement = displacement_vaddr;
2823
2824 break;
2825 }
2826
2827 /* Now compare BUF and BUF2 with optional DISPLACEMENT. */
2828
17658d46
SM
2829 for (i = 0;
2830 i < phdrs_target->size () / sizeof (Elf64_External_Phdr);
2831 i++)
0a1e94c7
JK
2832 {
2833 Elf64_External_Phdr *phdrp;
2834 Elf64_External_Phdr *phdr2p;
2835 gdb_byte *buf_vaddr_p, *buf_paddr_p;
2836 CORE_ADDR vaddr, paddr;
43b8e241 2837 asection *plt2_asect;
0a1e94c7 2838
17658d46 2839 phdrp = &((Elf64_External_Phdr *) phdrs_target->data ())[i];
0a1e94c7
JK
2840 buf_vaddr_p = (gdb_byte *) &phdrp->p_vaddr;
2841 buf_paddr_p = (gdb_byte *) &phdrp->p_paddr;
d1012b8e 2842 phdr2p = &((Elf64_External_Phdr *) phdrs_binary->data ())[i];
0a1e94c7
JK
2843
2844 /* PT_GNU_STACK is an exception by being never relocated by
2845 prelink as its addresses are always zero. */
2846
2847 if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
2848 continue;
2849
2850 /* Check also other adjustment combinations - PR 11786. */
2851
3e43a32a
MS
2852 vaddr = extract_unsigned_integer (buf_vaddr_p, 8,
2853 byte_order);
0a1e94c7
JK
2854 vaddr -= displacement;
2855 store_unsigned_integer (buf_vaddr_p, 8, byte_order, vaddr);
2856
3e43a32a
MS
2857 paddr = extract_unsigned_integer (buf_paddr_p, 8,
2858 byte_order);
0a1e94c7
JK
2859 paddr -= displacement;
2860 store_unsigned_integer (buf_paddr_p, 8, byte_order, paddr);
2861
2862 if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
2863 continue;
2864
204b5331
DE
2865 /* Strip modifies the flags and alignment of PT_GNU_RELRO.
2866 CentOS-5 has problems with filesz, memsz as well.
be2d111a 2867 Strip also modifies memsz of PT_TLS.
204b5331 2868 See PR 11786. */
c44deb73
SM
2869 if (phdr2[i].p_type == PT_GNU_RELRO
2870 || phdr2[i].p_type == PT_TLS)
204b5331
DE
2871 {
2872 Elf64_External_Phdr tmp_phdr = *phdrp;
2873 Elf64_External_Phdr tmp_phdr2 = *phdr2p;
2874
2875 memset (tmp_phdr.p_filesz, 0, 8);
2876 memset (tmp_phdr.p_memsz, 0, 8);
2877 memset (tmp_phdr.p_flags, 0, 4);
2878 memset (tmp_phdr.p_align, 0, 8);
2879 memset (tmp_phdr2.p_filesz, 0, 8);
2880 memset (tmp_phdr2.p_memsz, 0, 8);
2881 memset (tmp_phdr2.p_flags, 0, 4);
2882 memset (tmp_phdr2.p_align, 0, 8);
2883
2884 if (memcmp (&tmp_phdr, &tmp_phdr2, sizeof (tmp_phdr))
2885 == 0)
2886 continue;
2887 }
2888
43b8e241 2889 /* prelink can convert .plt SHT_NOBITS to SHT_PROGBITS. */
7e10abd1
TT
2890 plt2_asect
2891 = bfd_get_section_by_name (current_program_space->exec_bfd (),
2892 ".plt");
43b8e241
JK
2893 if (plt2_asect)
2894 {
2895 int content2;
2896 gdb_byte *buf_filesz_p = (gdb_byte *) &phdrp->p_filesz;
2897 CORE_ADDR filesz;
2898
fd361982 2899 content2 = (bfd_section_flags (plt2_asect)
43b8e241
JK
2900 & SEC_HAS_CONTENTS) != 0;
2901
2902 filesz = extract_unsigned_integer (buf_filesz_p, 8,
2903 byte_order);
2904
7e10abd1
TT
2905 /* PLT2_ASECT is from on-disk file (current
2906 exec_bfd) while FILESZ is from the in-memory
2907 image. */
43b8e241 2908 if (content2)
fd361982 2909 filesz += bfd_section_size (plt2_asect);
43b8e241 2910 else
fd361982 2911 filesz -= bfd_section_size (plt2_asect);
43b8e241
JK
2912
2913 store_unsigned_integer (buf_filesz_p, 8, byte_order,
2914 filesz);
2915
2916 if (memcmp (phdrp, phdr2p, sizeof (*phdrp)) == 0)
2917 continue;
2918 }
2919
d1012b8e 2920 return 0;
0a1e94c7
JK
2921 }
2922 }
2923 else
d1012b8e 2924 return 0;
0a1e94c7 2925 }
09919ac2 2926 }
b8040f19 2927
ccf26247
JK
2928 if (info_verbose)
2929 {
2930 /* It can be printed repeatedly as there is no easy way to check
2931 the executable symbols/file has been already relocated to
2932 displacement. */
2933
2934 printf_unfiltered (_("Using PIE (Position Independent Executable) "
2935 "displacement %s for \"%s\".\n"),
8f61baf8 2936 paddress (target_gdbarch (), exec_displacement),
7e10abd1 2937 bfd_get_filename (current_program_space->exec_bfd ()));
ccf26247
JK
2938 }
2939
8f61baf8 2940 *displacementp = exec_displacement;
01c30d6e 2941 return 1;
b8040f19
JK
2942}
2943
2944/* Relocate the main executable. This function should be called upon
c378eb4e 2945 stopping the inferior process at the entry point to the program.
b8040f19
JK
2946 The entry point from BFD is compared to the AT_ENTRY of AUXV and if they are
2947 different, the main executable is relocated by the proper amount. */
2948
2949static void
2950svr4_relocate_main_executable (void)
2951{
01c30d6e
JK
2952 CORE_ADDR displacement;
2953
4e5799b6
JK
2954 /* If we are re-running this executable, SYMFILE_OBJFILE->SECTION_OFFSETS
2955 probably contains the offsets computed using the PIE displacement
2956 from the previous run, which of course are irrelevant for this run.
2957 So we need to determine the new PIE displacement and recompute the
2958 section offsets accordingly, even if SYMFILE_OBJFILE->SECTION_OFFSETS
2959 already contains pre-computed offsets.
01c30d6e 2960
4e5799b6 2961 If we cannot compute the PIE displacement, either:
01c30d6e 2962
4e5799b6
JK
2963 - The executable is not PIE.
2964
2965 - SYMFILE_OBJFILE does not match the executable started in the target.
2966 This can happen for main executable symbols loaded at the host while
2967 `ld.so --ld-args main-executable' is loaded in the target.
2968
2969 Then we leave the section offsets untouched and use them as is for
2970 this run. Either:
2971
2972 - These section offsets were properly reset earlier, and thus
2973 already contain the correct values. This can happen for instance
2974 when reconnecting via the remote protocol to a target that supports
2975 the `qOffsets' packet.
2976
2977 - The section offsets were not reset earlier, and the best we can
c378eb4e 2978 hope is that the old offsets are still applicable to the new run. */
01c30d6e
JK
2979
2980 if (! svr4_exec_displacement (&displacement))
2981 return;
b8040f19 2982
01c30d6e
JK
2983 /* Even DISPLACEMENT 0 is a valid new difference of in-memory vs. in-file
2984 addresses. */
b8040f19 2985
a42d7dd8
TT
2986 objfile *objf = current_program_space->symfile_object_file;
2987 if (objf)
e2a44558 2988 {
a42d7dd8 2989 section_offsets new_offsets (objf->section_offsets.size (),
6a053cb1 2990 displacement);
a42d7dd8 2991 objfile_relocate (objf, new_offsets);
e2a44558 2992 }
7e10abd1 2993 else if (current_program_space->exec_bfd ())
51bee8e9
JK
2994 {
2995 asection *asect;
2996
7e10abd1 2997 bfd *exec_bfd = current_program_space->exec_bfd ();
51bee8e9
JK
2998 for (asect = exec_bfd->sections; asect != NULL; asect = asect->next)
2999 exec_set_section_address (bfd_get_filename (exec_bfd), asect->index,
fd361982 3000 bfd_section_vma (asect) + displacement);
51bee8e9 3001 }
e2a44558
KB
3002}
3003
7f86f058 3004/* Implement the "create_inferior_hook" target_solib_ops method.
13437d4b
KB
3005
3006 For SVR4 executables, this first instruction is either the first
3007 instruction in the dynamic linker (for dynamically linked
3008 executables) or the instruction at "start" for statically linked
3009 executables. For dynamically linked executables, the system
3010 first exec's /lib/libc.so.N, which contains the dynamic linker,
3011 and starts it running. The dynamic linker maps in any needed
3012 shared libraries, maps in the actual user executable, and then
3013 jumps to "start" in the user executable.
3014
7f86f058
PA
3015 We can arrange to cooperate with the dynamic linker to discover the
3016 names of shared libraries that are dynamically linked, and the base
3017 addresses to which they are linked.
13437d4b
KB
3018
3019 This function is responsible for discovering those names and
3020 addresses, and saving sufficient information about them to allow
d2e5c99a 3021 their symbols to be read at a later time. */
13437d4b 3022
e2a44558 3023static void
268a4a75 3024svr4_solib_create_inferior_hook (int from_tty)
13437d4b 3025{
1a816a87
PA
3026 struct svr4_info *info;
3027
d70cc3ba 3028 info = get_svr4_info (current_program_space);
2020b7ab 3029
f9e14852
GB
3030 /* Clear the probes-based interface's state. */
3031 free_probes_table (info);
3032 free_solib_list (info);
3033
e2a44558 3034 /* Relocate the main executable if necessary. */
86e4bafc 3035 svr4_relocate_main_executable ();
e2a44558 3036
c91c8c16
PA
3037 /* No point setting a breakpoint in the dynamic linker if we can't
3038 hit it (e.g., a core file, or a trace file). */
55f6301a 3039 if (!target_has_execution ())
c91c8c16
PA
3040 return;
3041
d5a921c9 3042 if (!svr4_have_link_map_offsets ())
513f5903 3043 return;
d5a921c9 3044
268a4a75 3045 if (!enable_break (info, from_tty))
542c95c2 3046 return;
13437d4b
KB
3047}
3048
3049static void
3050svr4_clear_solib (void)
3051{
6c95b8df
PA
3052 struct svr4_info *info;
3053
d70cc3ba 3054 info = get_svr4_info (current_program_space);
6c95b8df
PA
3055 info->debug_base = 0;
3056 info->debug_loader_offset_p = 0;
3057 info->debug_loader_offset = 0;
3058 xfree (info->debug_loader_name);
3059 info->debug_loader_name = NULL;
13437d4b
KB
3060}
3061
6bb7be43
JB
3062/* Clear any bits of ADDR that wouldn't fit in a target-format
3063 data pointer. "Data pointer" here refers to whatever sort of
3064 address the dynamic linker uses to manage its sections. At the
3065 moment, we don't support shared libraries on any processors where
3066 code and data pointers are different sizes.
3067
3068 This isn't really the right solution. What we really need here is
3069 a way to do arithmetic on CORE_ADDR values that respects the
3070 natural pointer/address correspondence. (For example, on the MIPS,
3071 converting a 32-bit pointer to a 64-bit CORE_ADDR requires you to
3072 sign-extend the value. There, simply truncating the bits above
819844ad 3073 gdbarch_ptr_bit, as we do below, is no good.) This should probably
6bb7be43
JB
3074 be a new gdbarch method or something. */
3075static CORE_ADDR
3076svr4_truncate_ptr (CORE_ADDR addr)
3077{
f5656ead 3078 if (gdbarch_ptr_bit (target_gdbarch ()) == sizeof (CORE_ADDR) * 8)
6bb7be43
JB
3079 /* We don't need to truncate anything, and the bit twiddling below
3080 will fail due to overflow problems. */
3081 return addr;
3082 else
f5656ead 3083 return addr & (((CORE_ADDR) 1 << gdbarch_ptr_bit (target_gdbarch ())) - 1);
6bb7be43
JB
3084}
3085
3086
749499cb
KB
3087static void
3088svr4_relocate_section_addresses (struct so_list *so,
dda83cd7 3089 struct target_section *sec)
749499cb 3090{
2b2848e2
DE
3091 bfd *abfd = sec->the_bfd_section->owner;
3092
3093 sec->addr = svr4_truncate_ptr (sec->addr + lm_addr_check (so, abfd));
3094 sec->endaddr = svr4_truncate_ptr (sec->endaddr + lm_addr_check (so, abfd));
749499cb 3095}
4b188b9f 3096\f
749499cb 3097
4b188b9f 3098/* Architecture-specific operations. */
6bb7be43 3099
4b188b9f
MK
3100/* Per-architecture data key. */
3101static struct gdbarch_data *solib_svr4_data;
e5e2b9ff 3102
4b188b9f 3103struct solib_svr4_ops
e5e2b9ff 3104{
4b188b9f
MK
3105 /* Return a description of the layout of `struct link_map'. */
3106 struct link_map_offsets *(*fetch_link_map_offsets)(void);
3107};
e5e2b9ff 3108
4b188b9f 3109/* Return a default for the architecture-specific operations. */
e5e2b9ff 3110
4b188b9f
MK
3111static void *
3112solib_svr4_init (struct obstack *obstack)
e5e2b9ff 3113{
4b188b9f 3114 struct solib_svr4_ops *ops;
e5e2b9ff 3115
4b188b9f 3116 ops = OBSTACK_ZALLOC (obstack, struct solib_svr4_ops);
8d005789 3117 ops->fetch_link_map_offsets = NULL;
4b188b9f 3118 return ops;
e5e2b9ff
KB
3119}
3120
4b188b9f 3121/* Set the architecture-specific `struct link_map_offsets' fetcher for
7e3cb44c 3122 GDBARCH to FLMO. Also, install SVR4 solib_ops into GDBARCH. */
1c4dcb57 3123
21479ded 3124void
e5e2b9ff 3125set_solib_svr4_fetch_link_map_offsets (struct gdbarch *gdbarch,
dda83cd7 3126 struct link_map_offsets *(*flmo) (void))
21479ded 3127{
19ba03f4
SM
3128 struct solib_svr4_ops *ops
3129 = (struct solib_svr4_ops *) gdbarch_data (gdbarch, solib_svr4_data);
4b188b9f
MK
3130
3131 ops->fetch_link_map_offsets = flmo;
7e3cb44c
UW
3132
3133 set_solib_ops (gdbarch, &svr4_so_ops);
626ca2c0
CB
3134 set_gdbarch_iterate_over_objfiles_in_search_order
3135 (gdbarch, svr4_iterate_over_objfiles_in_search_order);
21479ded
KB
3136}
3137
4b188b9f
MK
3138/* Fetch a link_map_offsets structure using the architecture-specific
3139 `struct link_map_offsets' fetcher. */
1c4dcb57 3140
4b188b9f
MK
3141static struct link_map_offsets *
3142svr4_fetch_link_map_offsets (void)
21479ded 3143{
19ba03f4
SM
3144 struct solib_svr4_ops *ops
3145 = (struct solib_svr4_ops *) gdbarch_data (target_gdbarch (),
3146 solib_svr4_data);
4b188b9f
MK
3147
3148 gdb_assert (ops->fetch_link_map_offsets);
3149 return ops->fetch_link_map_offsets ();
21479ded
KB
3150}
3151
4b188b9f
MK
3152/* Return 1 if a link map offset fetcher has been defined, 0 otherwise. */
3153
3154static int
3155svr4_have_link_map_offsets (void)
3156{
19ba03f4
SM
3157 struct solib_svr4_ops *ops
3158 = (struct solib_svr4_ops *) gdbarch_data (target_gdbarch (),
3159 solib_svr4_data);
433759f7 3160
4b188b9f
MK
3161 return (ops->fetch_link_map_offsets != NULL);
3162}
3163\f
3164
e4bbbda8
MK
3165/* Most OS'es that have SVR4-style ELF dynamic libraries define a
3166 `struct r_debug' and a `struct link_map' that are binary compatible
85102364 3167 with the original SVR4 implementation. */
e4bbbda8
MK
3168
3169/* Fetch (and possibly build) an appropriate `struct link_map_offsets'
3170 for an ILP32 SVR4 system. */
d989b283 3171
e4bbbda8
MK
3172struct link_map_offsets *
3173svr4_ilp32_fetch_link_map_offsets (void)
3174{
3175 static struct link_map_offsets lmo;
3176 static struct link_map_offsets *lmp = NULL;
3177
3178 if (lmp == NULL)
3179 {
3180 lmp = &lmo;
3181
e4cd0d6a
MK
3182 lmo.r_version_offset = 0;
3183 lmo.r_version_size = 4;
e4bbbda8 3184 lmo.r_map_offset = 4;
7cd25cfc 3185 lmo.r_brk_offset = 8;
e4cd0d6a 3186 lmo.r_ldsomap_offset = 20;
e4bbbda8
MK
3187
3188 /* Everything we need is in the first 20 bytes. */
3189 lmo.link_map_size = 20;
3190 lmo.l_addr_offset = 0;
e4bbbda8 3191 lmo.l_name_offset = 4;
cc10cae3 3192 lmo.l_ld_offset = 8;
e4bbbda8 3193 lmo.l_next_offset = 12;
e4bbbda8 3194 lmo.l_prev_offset = 16;
e4bbbda8
MK
3195 }
3196
3197 return lmp;
3198}
3199
3200/* Fetch (and possibly build) an appropriate `struct link_map_offsets'
3201 for an LP64 SVR4 system. */
d989b283 3202
e4bbbda8
MK
3203struct link_map_offsets *
3204svr4_lp64_fetch_link_map_offsets (void)
3205{
3206 static struct link_map_offsets lmo;
3207 static struct link_map_offsets *lmp = NULL;
3208
3209 if (lmp == NULL)
3210 {
3211 lmp = &lmo;
3212
e4cd0d6a
MK
3213 lmo.r_version_offset = 0;
3214 lmo.r_version_size = 4;
e4bbbda8 3215 lmo.r_map_offset = 8;
7cd25cfc 3216 lmo.r_brk_offset = 16;
e4cd0d6a 3217 lmo.r_ldsomap_offset = 40;
e4bbbda8
MK
3218
3219 /* Everything we need is in the first 40 bytes. */
3220 lmo.link_map_size = 40;
3221 lmo.l_addr_offset = 0;
e4bbbda8 3222 lmo.l_name_offset = 8;
cc10cae3 3223 lmo.l_ld_offset = 16;
e4bbbda8 3224 lmo.l_next_offset = 24;
e4bbbda8 3225 lmo.l_prev_offset = 32;
e4bbbda8
MK
3226 }
3227
3228 return lmp;
3229}
3230\f
3231
7d522c90 3232struct target_so_ops svr4_so_ops;
13437d4b 3233
626ca2c0 3234/* Search order for ELF DSOs linked with -Bsymbolic. Those DSOs have a
3a40aaa0
UW
3235 different rule for symbol lookup. The lookup begins here in the DSO, not in
3236 the main executable. */
3237
626ca2c0
CB
3238static void
3239svr4_iterate_over_objfiles_in_search_order
3240 (struct gdbarch *gdbarch,
3241 iterate_over_objfiles_in_search_order_cb_ftype *cb,
3242 void *cb_data, struct objfile *current_objfile)
3a40aaa0 3243{
626ca2c0
CB
3244 bool checked_current_objfile = false;
3245 if (current_objfile != nullptr)
61f0d762 3246 {
626ca2c0 3247 bfd *abfd;
61f0d762 3248
626ca2c0 3249 if (current_objfile->separate_debug_objfile_backlink != nullptr)
dda83cd7 3250 current_objfile = current_objfile->separate_debug_objfile_backlink;
61f0d762 3251
a42d7dd8 3252 if (current_objfile == current_program_space->symfile_object_file)
7e10abd1 3253 abfd = current_program_space->exec_bfd ();
626ca2c0
CB
3254 else
3255 abfd = current_objfile->obfd;
3256
7ab78ccb
SM
3257 if (abfd != nullptr
3258 && scan_dyntag (DT_SYMBOLIC, abfd, nullptr, nullptr) == 1)
626ca2c0
CB
3259 {
3260 checked_current_objfile = true;
3261 if (cb (current_objfile, cb_data) != 0)
3262 return;
3263 }
3264 }
3a40aaa0 3265
626ca2c0
CB
3266 for (objfile *objfile : current_program_space->objfiles ())
3267 {
3268 if (checked_current_objfile && objfile == current_objfile)
3269 continue;
3270 if (cb (objfile, cb_data) != 0)
3271 return;
3272 }
3a40aaa0
UW
3273}
3274
6c265988 3275void _initialize_svr4_solib ();
13437d4b 3276void
6c265988 3277_initialize_svr4_solib ()
13437d4b 3278{
4b188b9f
MK
3279 solib_svr4_data = gdbarch_data_register_pre_init (solib_svr4_init);
3280
749499cb 3281 svr4_so_ops.relocate_section_addresses = svr4_relocate_section_addresses;
13437d4b 3282 svr4_so_ops.free_so = svr4_free_so;
0892cb63 3283 svr4_so_ops.clear_so = svr4_clear_so;
13437d4b
KB
3284 svr4_so_ops.clear_solib = svr4_clear_solib;
3285 svr4_so_ops.solib_create_inferior_hook = svr4_solib_create_inferior_hook;
13437d4b
KB
3286 svr4_so_ops.current_sos = svr4_current_sos;
3287 svr4_so_ops.open_symbol_file_object = open_symbol_file_object;
d7fa2ae2 3288 svr4_so_ops.in_dynsym_resolve_code = svr4_in_dynsym_resolve_code;
831a0c44 3289 svr4_so_ops.bfd_open = solib_bfd_open;
a7c02bc8 3290 svr4_so_ops.same = svr4_same;
de18c1d8 3291 svr4_so_ops.keep_data_in_core = svr4_keep_data_in_core;
f9e14852
GB
3292 svr4_so_ops.update_breakpoints = svr4_update_solib_event_breakpoints;
3293 svr4_so_ops.handle_event = svr4_handle_solib_event;
7905fc35
PA
3294
3295 gdb::observers::free_objfile.attach (svr4_free_objfile_observer);
13437d4b 3296}
This page took 3.291169 seconds and 4 git commands to generate.