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