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