* python/python-internal.h (struct language_defn): Declare.
[deliverable/binutils-gdb.git] / gdb / solib-svr4.c
CommitLineData
ab31aa69 1/* Handle SVR4 shared libraries for GDB, the GNU Debugger.
2f4950cd 2
6aba47ca 3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000,
0fb0cc75
JB
4 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 Free Software Foundation, Inc.
13437d4b
KB
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
13437d4b
KB
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
13437d4b 21
13437d4b
KB
22#include "defs.h"
23
13437d4b 24#include "elf/external.h"
21479ded 25#include "elf/common.h"
f7856c8f 26#include "elf/mips.h"
13437d4b
KB
27
28#include "symtab.h"
29#include "bfd.h"
30#include "symfile.h"
31#include "objfiles.h"
32#include "gdbcore.h"
13437d4b 33#include "target.h"
13437d4b 34#include "inferior.h"
fb14de7b 35#include "regcache.h"
2020b7ab 36#include "gdbthread.h"
1a816a87 37#include "observer.h"
13437d4b 38
4b188b9f
MK
39#include "gdb_assert.h"
40
13437d4b 41#include "solist.h"
bba93f6c 42#include "solib.h"
13437d4b
KB
43#include "solib-svr4.h"
44
2f4950cd 45#include "bfd-target.h"
cc10cae3 46#include "elf-bfd.h"
2f4950cd 47#include "exec.h"
8d4e36ba 48#include "auxv.h"
f1838a98 49#include "exceptions.h"
2f4950cd 50
e5e2b9ff 51static struct link_map_offsets *svr4_fetch_link_map_offsets (void);
d5a921c9 52static int svr4_have_link_map_offsets (void);
1c4dcb57 53
13437d4b
KB
54/* Link map info to include in an allocated so_list entry */
55
56struct lm_info
57 {
58 /* Pointer to copy of link map from inferior. The type is char *
59 rather than void *, so that we may use byte offsets to find the
60 various fields without the need for a cast. */
4066fc10 61 gdb_byte *lm;
cc10cae3
AO
62
63 /* Amount by which addresses in the binary should be relocated to
64 match the inferior. This could most often be taken directly
65 from lm, but when prelinking is involved and the prelink base
66 address changes, we may need a different offset, we want to
67 warn about the difference and compute it only once. */
68 CORE_ADDR l_addr;
93a57060
DJ
69
70 /* The target location of lm. */
71 CORE_ADDR lm_addr;
13437d4b
KB
72 };
73
74/* On SVR4 systems, a list of symbols in the dynamic linker where
75 GDB can try to place a breakpoint to monitor shared library
76 events.
77
78 If none of these symbols are found, or other errors occur, then
79 SVR4 systems will fall back to using a symbol as the "startup
80 mapping complete" breakpoint address. */
81
13437d4b
KB
82static char *solib_break_names[] =
83{
84 "r_debug_state",
85 "_r_debug_state",
86 "_dl_debug_state",
87 "rtld_db_dlactivity",
1f72e589 88 "_rtld_debug_state",
4c0122c8 89
13437d4b
KB
90 NULL
91};
13437d4b 92
13437d4b
KB
93static char *bkpt_names[] =
94{
13437d4b 95 "_start",
ad3dcc5c 96 "__start",
13437d4b
KB
97 "main",
98 NULL
99};
13437d4b 100
13437d4b
KB
101static char *main_name_list[] =
102{
103 "main_$main",
104 NULL
105};
106
4d7b2d5b
JB
107/* Return non-zero if GDB_SO_NAME and INFERIOR_SO_NAME represent
108 the same shared library. */
109
110static int
111svr4_same_1 (const char *gdb_so_name, const char *inferior_so_name)
112{
113 if (strcmp (gdb_so_name, inferior_so_name) == 0)
114 return 1;
115
116 /* On Solaris, when starting inferior we think that dynamic linker is
117 /usr/lib/ld.so.1, but later on, the table of loaded shared libraries
118 contains /lib/ld.so.1. Sometimes one file is a link to another, but
119 sometimes they have identical content, but are not linked to each
120 other. We don't restrict this check for Solaris, but the chances
121 of running into this situation elsewhere are very low. */
122 if (strcmp (gdb_so_name, "/usr/lib/ld.so.1") == 0
123 && strcmp (inferior_so_name, "/lib/ld.so.1") == 0)
124 return 1;
125
126 /* Similarly, we observed the same issue with sparc64, but with
127 different locations. */
128 if (strcmp (gdb_so_name, "/usr/lib/sparcv9/ld.so.1") == 0
129 && strcmp (inferior_so_name, "/lib/sparcv9/ld.so.1") == 0)
130 return 1;
131
132 return 0;
133}
134
135static int
136svr4_same (struct so_list *gdb, struct so_list *inferior)
137{
138 return (svr4_same_1 (gdb->so_original_name, inferior->so_original_name));
139}
140
13437d4b
KB
141/* link map access functions */
142
143static CORE_ADDR
cc10cae3 144LM_ADDR_FROM_LINK_MAP (struct so_list *so)
13437d4b 145{
4b188b9f 146 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0 147 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
13437d4b 148
cfaefc65 149 return extract_typed_address (so->lm_info->lm + lmo->l_addr_offset,
b6da22b0 150 ptr_type);
13437d4b
KB
151}
152
cc10cae3 153static int
2c0b251b 154HAS_LM_DYNAMIC_FROM_LINK_MAP (void)
cc10cae3
AO
155{
156 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
157
cfaefc65 158 return lmo->l_ld_offset >= 0;
cc10cae3
AO
159}
160
161static CORE_ADDR
162LM_DYNAMIC_FROM_LINK_MAP (struct so_list *so)
163{
164 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0 165 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
cc10cae3 166
cfaefc65 167 return extract_typed_address (so->lm_info->lm + lmo->l_ld_offset,
b6da22b0 168 ptr_type);
cc10cae3
AO
169}
170
171static CORE_ADDR
172LM_ADDR_CHECK (struct so_list *so, bfd *abfd)
173{
174 if (so->lm_info->l_addr == (CORE_ADDR)-1)
175 {
176 struct bfd_section *dyninfo_sect;
177 CORE_ADDR l_addr, l_dynaddr, dynaddr, align = 0x1000;
178
179 l_addr = LM_ADDR_FROM_LINK_MAP (so);
180
181 if (! abfd || ! HAS_LM_DYNAMIC_FROM_LINK_MAP ())
182 goto set_addr;
183
184 l_dynaddr = LM_DYNAMIC_FROM_LINK_MAP (so);
185
186 dyninfo_sect = bfd_get_section_by_name (abfd, ".dynamic");
187 if (dyninfo_sect == NULL)
188 goto set_addr;
189
190 dynaddr = bfd_section_vma (abfd, dyninfo_sect);
191
192 if (dynaddr + l_addr != l_dynaddr)
193 {
cc10cae3
AO
194 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
195 {
196 Elf_Internal_Ehdr *ehdr = elf_tdata (abfd)->elf_header;
197 Elf_Internal_Phdr *phdr = elf_tdata (abfd)->phdr;
198 int i;
199
200 align = 1;
201
202 for (i = 0; i < ehdr->e_phnum; i++)
203 if (phdr[i].p_type == PT_LOAD && phdr[i].p_align > align)
204 align = phdr[i].p_align;
205 }
206
207 /* Turn it into a mask. */
208 align--;
209
210 /* If the changes match the alignment requirements, we
211 assume we're using a core file that was generated by the
212 same binary, just prelinked with a different base offset.
213 If it doesn't match, we may have a different binary, the
214 same binary with the dynamic table loaded at an unrelated
215 location, or anything, really. To avoid regressions,
216 don't adjust the base offset in the latter case, although
217 odds are that, if things really changed, debugging won't
218 quite work. */
f1e55806 219 if ((l_addr & align) == ((l_dynaddr - dynaddr) & align))
cc10cae3
AO
220 {
221 l_addr = l_dynaddr - dynaddr;
79d4c408
DJ
222
223 warning (_(".dynamic section for \"%s\" "
224 "is not at the expected address"), so->so_name);
cc10cae3
AO
225 warning (_("difference appears to be caused by prelink, "
226 "adjusting expectations"));
227 }
79d4c408
DJ
228 else
229 warning (_(".dynamic section for \"%s\" "
230 "is not at the expected address "
231 "(wrong library or version mismatch?)"), so->so_name);
cc10cae3
AO
232 }
233
234 set_addr:
235 so->lm_info->l_addr = l_addr;
236 }
237
238 return so->lm_info->l_addr;
239}
240
13437d4b
KB
241static CORE_ADDR
242LM_NEXT (struct so_list *so)
243{
4b188b9f 244 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0 245 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
13437d4b 246
cfaefc65 247 return extract_typed_address (so->lm_info->lm + lmo->l_next_offset,
b6da22b0 248 ptr_type);
13437d4b
KB
249}
250
251static CORE_ADDR
252LM_NAME (struct so_list *so)
253{
4b188b9f 254 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0 255 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
13437d4b 256
cfaefc65 257 return extract_typed_address (so->lm_info->lm + lmo->l_name_offset,
b6da22b0 258 ptr_type);
13437d4b
KB
259}
260
13437d4b
KB
261static int
262IGNORE_FIRST_LINK_MAP_ENTRY (struct so_list *so)
263{
4b188b9f 264 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0 265 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
13437d4b 266
e499d0f1
DJ
267 /* Assume that everything is a library if the dynamic loader was loaded
268 late by a static executable. */
0763ab81 269 if (exec_bfd && bfd_get_section_by_name (exec_bfd, ".dynamic") == NULL)
e499d0f1
DJ
270 return 0;
271
cfaefc65 272 return extract_typed_address (so->lm_info->lm + lmo->l_prev_offset,
b6da22b0 273 ptr_type) == 0;
13437d4b
KB
274}
275
1a816a87 276/* Per-inferior SVR4 specific data. */
13437d4b 277
1a816a87
PA
278struct svr4_info
279{
280 int pid;
281
282 CORE_ADDR debug_base; /* Base of dynamic linker structures */
283
284 /* Validity flag for debug_loader_offset. */
285 int debug_loader_offset_p;
286
287 /* Load address for the dynamic linker, inferred. */
288 CORE_ADDR debug_loader_offset;
289
290 /* Name of the dynamic linker, valid if debug_loader_offset_p. */
291 char *debug_loader_name;
292
293 /* Load map address for the main executable. */
294 CORE_ADDR main_lm_addr;
295};
296
297/* List of known processes using solib-svr4 shared libraries, storing
298 the required bookkeeping for each. */
299
300typedef struct svr4_info *svr4_info_p;
301DEF_VEC_P(svr4_info_p);
302VEC(svr4_info_p) *svr4_info = NULL;
303
304/* Get svr4 data for inferior PID (target id). If none is found yet,
305 add it now. This function always returns a valid object. */
306
307struct svr4_info *
308get_svr4_info (int pid)
309{
310 int ix;
311 struct svr4_info *it;
312
313 gdb_assert (pid != 0);
314
315 for (ix = 0; VEC_iterate (svr4_info_p, svr4_info, ix, it); ++ix)
316 {
317 if (it->pid == pid)
318 return it;
319 }
320
321 it = XZALLOC (struct svr4_info);
322 it->pid = pid;
323
324 VEC_safe_push (svr4_info_p, svr4_info, it);
325
326 return it;
327}
328
329/* Get rid of any svr4 related bookkeeping for inferior PID (target
330 id). */
34439770 331
1a816a87
PA
332static void
333remove_svr4_info (int pid)
334{
335 int ix;
336 struct svr4_info *it;
34439770 337
1a816a87
PA
338 for (ix = 0; VEC_iterate (svr4_info_p, svr4_info, ix, it); ++ix)
339 {
340 if (it->pid == pid)
341 {
342 VEC_unordered_remove (svr4_info_p, svr4_info, ix);
343 return;
344 }
345 }
346}
347
348/* This is an "inferior_exit" observer. Inferior PID (target id) is
349 being removed from the inferior list, because it exited, was
350 killed, detached, or we just dropped the connection to the debug
351 interface --- discard any solib-svr4 related bookkeeping for this
352 inferior. */
34439770 353
1a816a87
PA
354static void
355solib_svr4_inferior_exit (int pid)
356{
357 remove_svr4_info (pid);
358}
93a57060 359
13437d4b
KB
360/* Local function prototypes */
361
362static int match_main (char *);
363
2bbe3cc1 364static CORE_ADDR bfd_lookup_symbol (bfd *, char *);
13437d4b
KB
365
366/*
367
368 LOCAL FUNCTION
369
370 bfd_lookup_symbol -- lookup the value for a specific symbol
371
372 SYNOPSIS
373
2bbe3cc1 374 CORE_ADDR bfd_lookup_symbol (bfd *abfd, char *symname)
13437d4b
KB
375
376 DESCRIPTION
377
378 An expensive way to lookup the value of a single symbol for
379 bfd's that are only temporary anyway. This is used by the
380 shared library support to find the address of the debugger
2bbe3cc1 381 notification routine in the shared library.
13437d4b 382
2bbe3cc1
DJ
383 The returned symbol may be in a code or data section; functions
384 will normally be in a code section, but may be in a data section
385 if this architecture uses function descriptors.
87f84c9d 386
13437d4b
KB
387 Note that 0 is specifically allowed as an error return (no
388 such symbol).
389 */
390
391static CORE_ADDR
2bbe3cc1 392bfd_lookup_symbol (bfd *abfd, char *symname)
13437d4b 393{
435b259c 394 long storage_needed;
13437d4b
KB
395 asymbol *sym;
396 asymbol **symbol_table;
397 unsigned int number_of_symbols;
398 unsigned int i;
399 struct cleanup *back_to;
400 CORE_ADDR symaddr = 0;
401
402 storage_needed = bfd_get_symtab_upper_bound (abfd);
403
404 if (storage_needed > 0)
405 {
406 symbol_table = (asymbol **) xmalloc (storage_needed);
4efb68b1 407 back_to = make_cleanup (xfree, symbol_table);
13437d4b
KB
408 number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
409
410 for (i = 0; i < number_of_symbols; i++)
411 {
412 sym = *symbol_table++;
6314a349 413 if (strcmp (sym->name, symname) == 0
2bbe3cc1 414 && (sym->section->flags & (SEC_CODE | SEC_DATA)) != 0)
13437d4b 415 {
2bbe3cc1 416 /* BFD symbols are section relative. */
13437d4b
KB
417 symaddr = sym->value + sym->section->vma;
418 break;
419 }
420 }
421 do_cleanups (back_to);
422 }
423
424 if (symaddr)
425 return symaddr;
426
427 /* On FreeBSD, the dynamic linker is stripped by default. So we'll
428 have to check the dynamic string table too. */
429
430 storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
431
432 if (storage_needed > 0)
433 {
434 symbol_table = (asymbol **) xmalloc (storage_needed);
4efb68b1 435 back_to = make_cleanup (xfree, symbol_table);
13437d4b
KB
436 number_of_symbols = bfd_canonicalize_dynamic_symtab (abfd, symbol_table);
437
438 for (i = 0; i < number_of_symbols; i++)
439 {
440 sym = *symbol_table++;
87f84c9d 441
6314a349 442 if (strcmp (sym->name, symname) == 0
2bbe3cc1 443 && (sym->section->flags & (SEC_CODE | SEC_DATA)) != 0)
13437d4b 444 {
2bbe3cc1 445 /* BFD symbols are section relative. */
13437d4b
KB
446 symaddr = sym->value + sym->section->vma;
447 break;
448 }
449 }
450 do_cleanups (back_to);
451 }
452
453 return symaddr;
454}
455
97ec2c2f
UW
456
457/* Read program header TYPE from inferior memory. The header is found
458 by scanning the OS auxillary vector.
459
460 Return a pointer to allocated memory holding the program header contents,
461 or NULL on failure. If sucessful, and unless P_SECT_SIZE is NULL, the
462 size of those contents is returned to P_SECT_SIZE. Likewise, the target
463 architecture size (32-bit or 64-bit) is returned to P_ARCH_SIZE. */
464
465static gdb_byte *
466read_program_header (int type, int *p_sect_size, int *p_arch_size)
467{
468 CORE_ADDR at_phdr, at_phent, at_phnum;
469 int arch_size, sect_size;
470 CORE_ADDR sect_addr;
471 gdb_byte *buf;
472
473 /* Get required auxv elements from target. */
474 if (target_auxv_search (&current_target, AT_PHDR, &at_phdr) <= 0)
475 return 0;
476 if (target_auxv_search (&current_target, AT_PHENT, &at_phent) <= 0)
477 return 0;
478 if (target_auxv_search (&current_target, AT_PHNUM, &at_phnum) <= 0)
479 return 0;
480 if (!at_phdr || !at_phnum)
481 return 0;
482
483 /* Determine ELF architecture type. */
484 if (at_phent == sizeof (Elf32_External_Phdr))
485 arch_size = 32;
486 else if (at_phent == sizeof (Elf64_External_Phdr))
487 arch_size = 64;
488 else
489 return 0;
490
491 /* Find .dynamic section via the PT_DYNAMIC PHDR. */
492 if (arch_size == 32)
493 {
494 Elf32_External_Phdr phdr;
495 int i;
496
497 /* Search for requested PHDR. */
498 for (i = 0; i < at_phnum; i++)
499 {
500 if (target_read_memory (at_phdr + i * sizeof (phdr),
501 (gdb_byte *)&phdr, sizeof (phdr)))
502 return 0;
503
504 if (extract_unsigned_integer ((gdb_byte *)phdr.p_type, 4) == type)
505 break;
506 }
507
508 if (i == at_phnum)
509 return 0;
510
511 /* Retrieve address and size. */
512 sect_addr = extract_unsigned_integer ((gdb_byte *)phdr.p_vaddr, 4);
513 sect_size = extract_unsigned_integer ((gdb_byte *)phdr.p_memsz, 4);
514 }
515 else
516 {
517 Elf64_External_Phdr phdr;
518 int i;
519
520 /* Search for requested PHDR. */
521 for (i = 0; i < at_phnum; i++)
522 {
523 if (target_read_memory (at_phdr + i * sizeof (phdr),
524 (gdb_byte *)&phdr, sizeof (phdr)))
525 return 0;
526
527 if (extract_unsigned_integer ((gdb_byte *)phdr.p_type, 4) == type)
528 break;
529 }
530
531 if (i == at_phnum)
532 return 0;
533
534 /* Retrieve address and size. */
535 sect_addr = extract_unsigned_integer ((gdb_byte *)phdr.p_vaddr, 8);
536 sect_size = extract_unsigned_integer ((gdb_byte *)phdr.p_memsz, 8);
537 }
538
539 /* Read in requested program header. */
540 buf = xmalloc (sect_size);
541 if (target_read_memory (sect_addr, buf, sect_size))
542 {
543 xfree (buf);
544 return NULL;
545 }
546
547 if (p_arch_size)
548 *p_arch_size = arch_size;
549 if (p_sect_size)
550 *p_sect_size = sect_size;
551
552 return buf;
553}
554
555
556/* Return program interpreter string. */
557static gdb_byte *
558find_program_interpreter (void)
559{
560 gdb_byte *buf = NULL;
561
562 /* If we have an exec_bfd, use its section table. */
563 if (exec_bfd
564 && bfd_get_flavour (exec_bfd) == bfd_target_elf_flavour)
565 {
566 struct bfd_section *interp_sect;
567
568 interp_sect = bfd_get_section_by_name (exec_bfd, ".interp");
569 if (interp_sect != NULL)
570 {
571 CORE_ADDR sect_addr = bfd_section_vma (exec_bfd, interp_sect);
572 int sect_size = bfd_section_size (exec_bfd, interp_sect);
573
574 buf = xmalloc (sect_size);
575 bfd_get_section_contents (exec_bfd, interp_sect, buf, 0, sect_size);
576 }
577 }
578
579 /* If we didn't find it, use the target auxillary vector. */
580 if (!buf)
581 buf = read_program_header (PT_INTERP, NULL, NULL);
582
583 return buf;
584}
585
586
3a40aaa0
UW
587/* Scan for DYNTAG in .dynamic section of ABFD. If DYNTAG is found 1 is
588 returned and the corresponding PTR is set. */
589
590static int
591scan_dyntag (int dyntag, bfd *abfd, CORE_ADDR *ptr)
592{
593 int arch_size, step, sect_size;
594 long dyn_tag;
595 CORE_ADDR dyn_ptr, dyn_addr;
65728c26 596 gdb_byte *bufend, *bufstart, *buf;
3a40aaa0
UW
597 Elf32_External_Dyn *x_dynp_32;
598 Elf64_External_Dyn *x_dynp_64;
599 struct bfd_section *sect;
600
601 if (abfd == NULL)
602 return 0;
0763ab81
PA
603
604 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
605 return 0;
606
3a40aaa0
UW
607 arch_size = bfd_get_arch_size (abfd);
608 if (arch_size == -1)
0763ab81 609 return 0;
3a40aaa0
UW
610
611 /* Find the start address of the .dynamic section. */
612 sect = bfd_get_section_by_name (abfd, ".dynamic");
613 if (sect == NULL)
614 return 0;
615 dyn_addr = bfd_section_vma (abfd, sect);
616
65728c26
DJ
617 /* Read in .dynamic from the BFD. We will get the actual value
618 from memory later. */
3a40aaa0 619 sect_size = bfd_section_size (abfd, sect);
65728c26
DJ
620 buf = bufstart = alloca (sect_size);
621 if (!bfd_get_section_contents (abfd, sect,
622 buf, 0, sect_size))
623 return 0;
3a40aaa0
UW
624
625 /* Iterate over BUF and scan for DYNTAG. If found, set PTR and return. */
626 step = (arch_size == 32) ? sizeof (Elf32_External_Dyn)
627 : sizeof (Elf64_External_Dyn);
628 for (bufend = buf + sect_size;
629 buf < bufend;
630 buf += step)
631 {
632 if (arch_size == 32)
633 {
634 x_dynp_32 = (Elf32_External_Dyn *) buf;
635 dyn_tag = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp_32->d_tag);
636 dyn_ptr = bfd_h_get_32 (abfd, (bfd_byte *) x_dynp_32->d_un.d_ptr);
637 }
65728c26 638 else
3a40aaa0
UW
639 {
640 x_dynp_64 = (Elf64_External_Dyn *) buf;
641 dyn_tag = bfd_h_get_64 (abfd, (bfd_byte *) x_dynp_64->d_tag);
642 dyn_ptr = bfd_h_get_64 (abfd, (bfd_byte *) x_dynp_64->d_un.d_ptr);
643 }
644 if (dyn_tag == DT_NULL)
645 return 0;
646 if (dyn_tag == dyntag)
647 {
65728c26
DJ
648 /* If requested, try to read the runtime value of this .dynamic
649 entry. */
3a40aaa0 650 if (ptr)
65728c26 651 {
b6da22b0 652 struct type *ptr_type;
65728c26
DJ
653 gdb_byte ptr_buf[8];
654 CORE_ADDR ptr_addr;
655
b6da22b0 656 ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
65728c26
DJ
657 ptr_addr = dyn_addr + (buf - bufstart) + arch_size / 8;
658 if (target_read_memory (ptr_addr, ptr_buf, arch_size / 8) == 0)
b6da22b0 659 dyn_ptr = extract_typed_address (ptr_buf, ptr_type);
65728c26
DJ
660 *ptr = dyn_ptr;
661 }
662 return 1;
3a40aaa0
UW
663 }
664 }
665
666 return 0;
667}
668
97ec2c2f
UW
669/* Scan for DYNTAG in .dynamic section of the target's main executable,
670 found by consulting the OS auxillary vector. If DYNTAG is found 1 is
671 returned and the corresponding PTR is set. */
672
673static int
674scan_dyntag_auxv (int dyntag, CORE_ADDR *ptr)
675{
676 int sect_size, arch_size, step;
677 long dyn_tag;
678 CORE_ADDR dyn_ptr;
679 gdb_byte *bufend, *bufstart, *buf;
680
681 /* Read in .dynamic section. */
682 buf = bufstart = read_program_header (PT_DYNAMIC, &sect_size, &arch_size);
683 if (!buf)
684 return 0;
685
686 /* Iterate over BUF and scan for DYNTAG. If found, set PTR and return. */
687 step = (arch_size == 32) ? sizeof (Elf32_External_Dyn)
688 : sizeof (Elf64_External_Dyn);
689 for (bufend = buf + sect_size;
690 buf < bufend;
691 buf += step)
692 {
693 if (arch_size == 32)
694 {
695 Elf32_External_Dyn *dynp = (Elf32_External_Dyn *) buf;
696 dyn_tag = extract_unsigned_integer ((gdb_byte *) dynp->d_tag, 4);
697 dyn_ptr = extract_unsigned_integer ((gdb_byte *) dynp->d_un.d_ptr, 4);
698 }
699 else
700 {
701 Elf64_External_Dyn *dynp = (Elf64_External_Dyn *) buf;
702 dyn_tag = extract_unsigned_integer ((gdb_byte *) dynp->d_tag, 8);
703 dyn_ptr = extract_unsigned_integer ((gdb_byte *) dynp->d_un.d_ptr, 8);
704 }
705 if (dyn_tag == DT_NULL)
706 break;
707
708 if (dyn_tag == dyntag)
709 {
710 if (ptr)
711 *ptr = dyn_ptr;
712
713 xfree (bufstart);
714 return 1;
715 }
716 }
717
718 xfree (bufstart);
719 return 0;
720}
721
3a40aaa0 722
13437d4b
KB
723/*
724
725 LOCAL FUNCTION
726
727 elf_locate_base -- locate the base address of dynamic linker structs
728 for SVR4 elf targets.
729
730 SYNOPSIS
731
732 CORE_ADDR elf_locate_base (void)
733
734 DESCRIPTION
735
736 For SVR4 elf targets the address of the dynamic linker's runtime
737 structure is contained within the dynamic info section in the
738 executable file. The dynamic section is also mapped into the
739 inferior address space. Because the runtime loader fills in the
740 real address before starting the inferior, we have to read in the
741 dynamic info section from the inferior address space.
742 If there are any errors while trying to find the address, we
743 silently return 0, otherwise the found address is returned.
744
745 */
746
747static CORE_ADDR
748elf_locate_base (void)
749{
3a40aaa0
UW
750 struct minimal_symbol *msymbol;
751 CORE_ADDR dyn_ptr;
13437d4b 752
65728c26
DJ
753 /* Look for DT_MIPS_RLD_MAP first. MIPS executables use this
754 instead of DT_DEBUG, although they sometimes contain an unused
755 DT_DEBUG. */
97ec2c2f
UW
756 if (scan_dyntag (DT_MIPS_RLD_MAP, exec_bfd, &dyn_ptr)
757 || scan_dyntag_auxv (DT_MIPS_RLD_MAP, &dyn_ptr))
3a40aaa0 758 {
b6da22b0 759 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
3a40aaa0 760 gdb_byte *pbuf;
b6da22b0 761 int pbuf_size = TYPE_LENGTH (ptr_type);
3a40aaa0
UW
762 pbuf = alloca (pbuf_size);
763 /* DT_MIPS_RLD_MAP contains a pointer to the address
764 of the dynamic link structure. */
765 if (target_read_memory (dyn_ptr, pbuf, pbuf_size))
e499d0f1 766 return 0;
b6da22b0 767 return extract_typed_address (pbuf, ptr_type);
e499d0f1
DJ
768 }
769
65728c26 770 /* Find DT_DEBUG. */
97ec2c2f
UW
771 if (scan_dyntag (DT_DEBUG, exec_bfd, &dyn_ptr)
772 || scan_dyntag_auxv (DT_DEBUG, &dyn_ptr))
65728c26
DJ
773 return dyn_ptr;
774
3a40aaa0
UW
775 /* This may be a static executable. Look for the symbol
776 conventionally named _r_debug, as a last resort. */
777 msymbol = lookup_minimal_symbol ("_r_debug", NULL, symfile_objfile);
778 if (msymbol != NULL)
779 return SYMBOL_VALUE_ADDRESS (msymbol);
13437d4b
KB
780
781 /* DT_DEBUG entry not found. */
782 return 0;
783}
784
13437d4b
KB
785/*
786
787 LOCAL FUNCTION
788
789 locate_base -- locate the base address of dynamic linker structs
790
791 SYNOPSIS
792
1a816a87 793 CORE_ADDR locate_base (struct svr4_info *)
13437d4b
KB
794
795 DESCRIPTION
796
797 For both the SunOS and SVR4 shared library implementations, if the
798 inferior executable has been linked dynamically, there is a single
799 address somewhere in the inferior's data space which is the key to
800 locating all of the dynamic linker's runtime structures. This
801 address is the value of the debug base symbol. The job of this
802 function is to find and return that address, or to return 0 if there
803 is no such address (the executable is statically linked for example).
804
805 For SunOS, the job is almost trivial, since the dynamic linker and
806 all of it's structures are statically linked to the executable at
807 link time. Thus the symbol for the address we are looking for has
808 already been added to the minimal symbol table for the executable's
809 objfile at the time the symbol file's symbols were read, and all we
810 have to do is look it up there. Note that we explicitly do NOT want
811 to find the copies in the shared library.
812
813 The SVR4 version is a bit more complicated because the address
814 is contained somewhere in the dynamic info section. We have to go
815 to a lot more work to discover the address of the debug base symbol.
816 Because of this complexity, we cache the value we find and return that
817 value on subsequent invocations. Note there is no copy in the
818 executable symbol tables.
819
820 */
821
822static CORE_ADDR
1a816a87 823locate_base (struct svr4_info *info)
13437d4b 824{
13437d4b
KB
825 /* Check to see if we have a currently valid address, and if so, avoid
826 doing all this work again and just return the cached address. If
827 we have no cached address, try to locate it in the dynamic info
d5a921c9
KB
828 section for ELF executables. There's no point in doing any of this
829 though if we don't have some link map offsets to work with. */
13437d4b 830
1a816a87 831 if (info->debug_base == 0 && svr4_have_link_map_offsets ())
0763ab81 832 info->debug_base = elf_locate_base ();
1a816a87 833 return info->debug_base;
13437d4b
KB
834}
835
e4cd0d6a
MK
836/* Find the first element in the inferior's dynamic link map, and
837 return its address in the inferior.
13437d4b 838
e4cd0d6a
MK
839 FIXME: Perhaps we should validate the info somehow, perhaps by
840 checking r_version for a known version number, or r_state for
841 RT_CONSISTENT. */
13437d4b
KB
842
843static CORE_ADDR
1a816a87 844solib_svr4_r_map (struct svr4_info *info)
13437d4b 845{
4b188b9f 846 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0 847 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
13437d4b 848
1a816a87
PA
849 return read_memory_typed_address (info->debug_base + lmo->r_map_offset,
850 ptr_type);
e4cd0d6a 851}
13437d4b 852
7cd25cfc
DJ
853/* Find r_brk from the inferior's debug base. */
854
855static CORE_ADDR
1a816a87 856solib_svr4_r_brk (struct svr4_info *info)
7cd25cfc
DJ
857{
858 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0 859 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
7cd25cfc 860
1a816a87
PA
861 return read_memory_typed_address (info->debug_base + lmo->r_brk_offset,
862 ptr_type);
7cd25cfc
DJ
863}
864
e4cd0d6a
MK
865/* Find the link map for the dynamic linker (if it is not in the
866 normal list of loaded shared objects). */
13437d4b 867
e4cd0d6a 868static CORE_ADDR
1a816a87 869solib_svr4_r_ldsomap (struct svr4_info *info)
e4cd0d6a
MK
870{
871 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0 872 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
e4cd0d6a 873 ULONGEST version;
13437d4b 874
e4cd0d6a
MK
875 /* Check version, and return zero if `struct r_debug' doesn't have
876 the r_ldsomap member. */
1a816a87
PA
877 version
878 = read_memory_unsigned_integer (info->debug_base + lmo->r_version_offset,
879 lmo->r_version_size);
e4cd0d6a
MK
880 if (version < 2 || lmo->r_ldsomap_offset == -1)
881 return 0;
13437d4b 882
1a816a87 883 return read_memory_typed_address (info->debug_base + lmo->r_ldsomap_offset,
b6da22b0 884 ptr_type);
13437d4b
KB
885}
886
13437d4b
KB
887/*
888
889 LOCAL FUNCTION
890
891 open_symbol_file_object
892
893 SYNOPSIS
894
895 void open_symbol_file_object (void *from_tty)
896
897 DESCRIPTION
898
899 If no open symbol file, attempt to locate and open the main symbol
900 file. On SVR4 systems, this is the first link map entry. If its
901 name is here, we can open it. Useful when attaching to a process
902 without first loading its symbol file.
903
904 If FROM_TTYP dereferences to a non-zero integer, allow messages to
905 be printed. This parameter is a pointer rather than an int because
906 open_symbol_file_object() is called via catch_errors() and
907 catch_errors() requires a pointer argument. */
908
909static int
910open_symbol_file_object (void *from_ttyp)
911{
912 CORE_ADDR lm, l_name;
913 char *filename;
914 int errcode;
915 int from_tty = *(int *)from_ttyp;
4b188b9f 916 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
b6da22b0
UW
917 struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
918 int l_name_size = TYPE_LENGTH (ptr_type);
cfaefc65 919 gdb_byte *l_name_buf = xmalloc (l_name_size);
b8c9b27d 920 struct cleanup *cleanups = make_cleanup (xfree, l_name_buf);
1a816a87 921 struct svr4_info *info = get_svr4_info (PIDGET (inferior_ptid));
13437d4b
KB
922
923 if (symfile_objfile)
9e2f0ad4 924 if (!query (_("Attempt to reload symbols from process? ")))
13437d4b
KB
925 return 0;
926
7cd25cfc 927 /* Always locate the debug struct, in case it has moved. */
1a816a87
PA
928 info->debug_base = 0;
929 if (locate_base (info) == 0)
13437d4b
KB
930 return 0; /* failed somehow... */
931
932 /* First link map member should be the executable. */
1a816a87 933 lm = solib_svr4_r_map (info);
e4cd0d6a 934 if (lm == 0)
13437d4b
KB
935 return 0; /* failed somehow... */
936
937 /* Read address of name from target memory to GDB. */
cfaefc65 938 read_memory (lm + lmo->l_name_offset, l_name_buf, l_name_size);
13437d4b 939
cfaefc65 940 /* Convert the address to host format. */
b6da22b0 941 l_name = extract_typed_address (l_name_buf, ptr_type);
13437d4b
KB
942
943 /* Free l_name_buf. */
944 do_cleanups (cleanups);
945
946 if (l_name == 0)
947 return 0; /* No filename. */
948
949 /* Now fetch the filename from target memory. */
950 target_read_string (l_name, &filename, SO_NAME_MAX_PATH_SIZE - 1, &errcode);
ea5bf0a1 951 make_cleanup (xfree, filename);
13437d4b
KB
952
953 if (errcode)
954 {
8a3fe4f8 955 warning (_("failed to read exec filename from attached file: %s"),
13437d4b
KB
956 safe_strerror (errcode));
957 return 0;
958 }
959
13437d4b 960 /* Have a pathname: read the symbol file. */
1adeb98a 961 symbol_file_add_main (filename, from_tty);
13437d4b
KB
962
963 return 1;
964}
13437d4b 965
34439770
DJ
966/* If no shared library information is available from the dynamic
967 linker, build a fallback list from other sources. */
968
969static struct so_list *
970svr4_default_sos (void)
971{
1a816a87
PA
972 struct inferior *inf = current_inferior ();
973 struct svr4_info *info = get_svr4_info (inf->pid);
974
34439770
DJ
975 struct so_list *head = NULL;
976 struct so_list **link_ptr = &head;
977
1a816a87 978 if (info->debug_loader_offset_p)
34439770
DJ
979 {
980 struct so_list *new = XZALLOC (struct so_list);
981
982 new->lm_info = xmalloc (sizeof (struct lm_info));
983
984 /* Nothing will ever check the cached copy of the link
985 map if we set l_addr. */
1a816a87 986 new->lm_info->l_addr = info->debug_loader_offset;
93a57060 987 new->lm_info->lm_addr = 0;
34439770
DJ
988 new->lm_info->lm = NULL;
989
1a816a87
PA
990 strncpy (new->so_name, info->debug_loader_name,
991 SO_NAME_MAX_PATH_SIZE - 1);
34439770
DJ
992 new->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
993 strcpy (new->so_original_name, new->so_name);
994
995 *link_ptr = new;
996 link_ptr = &new->next;
997 }
998
999 return head;
1000}
1001
13437d4b
KB
1002/* LOCAL FUNCTION
1003
1004 current_sos -- build a list of currently loaded shared objects
1005
1006 SYNOPSIS
1007
1008 struct so_list *current_sos ()
1009
1010 DESCRIPTION
1011
1012 Build a list of `struct so_list' objects describing the shared
1013 objects currently loaded in the inferior. This list does not
1014 include an entry for the main executable file.
1015
1016 Note that we only gather information directly available from the
1017 inferior --- we don't examine any of the shared library files
1018 themselves. The declaration of `struct so_list' says which fields
1019 we provide values for. */
1020
1021static struct so_list *
1022svr4_current_sos (void)
1023{
1024 CORE_ADDR lm;
1025 struct so_list *head = 0;
1026 struct so_list **link_ptr = &head;
e4cd0d6a 1027 CORE_ADDR ldsomap = 0;
1a816a87
PA
1028 struct inferior *inf;
1029 struct svr4_info *info;
1030
1031 if (ptid_equal (inferior_ptid, null_ptid))
1032 return NULL;
1033
1034 inf = current_inferior ();
1035 info = get_svr4_info (inf->pid);
13437d4b 1036
7cd25cfc 1037 /* Always locate the debug struct, in case it has moved. */
1a816a87
PA
1038 info->debug_base = 0;
1039 locate_base (info);
13437d4b 1040
7cd25cfc
DJ
1041 /* If we can't find the dynamic linker's base structure, this
1042 must not be a dynamically linked executable. Hmm. */
1a816a87 1043 if (! info->debug_base)
7cd25cfc 1044 return svr4_default_sos ();
13437d4b
KB
1045
1046 /* Walk the inferior's link map list, and build our list of
1047 `struct so_list' nodes. */
1a816a87 1048 lm = solib_svr4_r_map (info);
34439770 1049
13437d4b
KB
1050 while (lm)
1051 {
4b188b9f 1052 struct link_map_offsets *lmo = svr4_fetch_link_map_offsets ();
f4456994 1053 struct so_list *new = XZALLOC (struct so_list);
b8c9b27d 1054 struct cleanup *old_chain = make_cleanup (xfree, new);
13437d4b 1055
13437d4b 1056 new->lm_info = xmalloc (sizeof (struct lm_info));
b8c9b27d 1057 make_cleanup (xfree, new->lm_info);
13437d4b 1058
831004b7 1059 new->lm_info->l_addr = (CORE_ADDR)-1;
93a57060 1060 new->lm_info->lm_addr = lm;
f4456994 1061 new->lm_info->lm = xzalloc (lmo->link_map_size);
b8c9b27d 1062 make_cleanup (xfree, new->lm_info->lm);
13437d4b
KB
1063
1064 read_memory (lm, new->lm_info->lm, lmo->link_map_size);
1065
1066 lm = LM_NEXT (new);
1067
1068 /* For SVR4 versions, the first entry in the link map is for the
1069 inferior executable, so we must ignore it. For some versions of
1070 SVR4, it has no name. For others (Solaris 2.3 for example), it
1071 does have a name, so we can no longer use a missing name to
1072 decide when to ignore it. */
e4cd0d6a 1073 if (IGNORE_FIRST_LINK_MAP_ENTRY (new) && ldsomap == 0)
93a57060 1074 {
1a816a87 1075 info->main_lm_addr = new->lm_info->lm_addr;
93a57060
DJ
1076 free_so (new);
1077 }
13437d4b
KB
1078 else
1079 {
1080 int errcode;
1081 char *buffer;
1082
1083 /* Extract this shared object's name. */
1084 target_read_string (LM_NAME (new), &buffer,
1085 SO_NAME_MAX_PATH_SIZE - 1, &errcode);
1086 if (errcode != 0)
8a3fe4f8
AC
1087 warning (_("Can't read pathname for load map: %s."),
1088 safe_strerror (errcode));
13437d4b
KB
1089 else
1090 {
1091 strncpy (new->so_name, buffer, SO_NAME_MAX_PATH_SIZE - 1);
1092 new->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
13437d4b
KB
1093 strcpy (new->so_original_name, new->so_name);
1094 }
ea5bf0a1 1095 xfree (buffer);
13437d4b
KB
1096
1097 /* If this entry has no name, or its name matches the name
1098 for the main executable, don't include it in the list. */
1099 if (! new->so_name[0]
1100 || match_main (new->so_name))
1101 free_so (new);
1102 else
1103 {
1104 new->next = 0;
1105 *link_ptr = new;
1106 link_ptr = &new->next;
1107 }
1108 }
1109
e4cd0d6a
MK
1110 /* On Solaris, the dynamic linker is not in the normal list of
1111 shared objects, so make sure we pick it up too. Having
1112 symbol information for the dynamic linker is quite crucial
1113 for skipping dynamic linker resolver code. */
1114 if (lm == 0 && ldsomap == 0)
1a816a87 1115 lm = ldsomap = solib_svr4_r_ldsomap (info);
e4cd0d6a 1116
13437d4b
KB
1117 discard_cleanups (old_chain);
1118 }
1119
34439770
DJ
1120 if (head == NULL)
1121 return svr4_default_sos ();
1122
13437d4b
KB
1123 return head;
1124}
1125
93a57060 1126/* Get the address of the link_map for a given OBJFILE. */
bc4a16ae
EZ
1127
1128CORE_ADDR
1129svr4_fetch_objfile_link_map (struct objfile *objfile)
1130{
93a57060 1131 struct so_list *so;
1a816a87 1132 struct svr4_info *info = get_svr4_info (PIDGET (inferior_ptid));
bc4a16ae 1133
93a57060 1134 /* Cause svr4_current_sos() to be run if it hasn't been already. */
1a816a87 1135 if (info->main_lm_addr == 0)
93a57060 1136 solib_add (NULL, 0, &current_target, auto_solib_add);
bc4a16ae 1137
93a57060
DJ
1138 /* svr4_current_sos() will set main_lm_addr for the main executable. */
1139 if (objfile == symfile_objfile)
1a816a87 1140 return info->main_lm_addr;
93a57060
DJ
1141
1142 /* The other link map addresses may be found by examining the list
1143 of shared libraries. */
1144 for (so = master_so_list (); so; so = so->next)
1145 if (so->objfile == objfile)
1146 return so->lm_info->lm_addr;
1147
1148 /* Not found! */
bc4a16ae
EZ
1149 return 0;
1150}
13437d4b
KB
1151
1152/* On some systems, the only way to recognize the link map entry for
1153 the main executable file is by looking at its name. Return
1154 non-zero iff SONAME matches one of the known main executable names. */
1155
1156static int
1157match_main (char *soname)
1158{
1159 char **mainp;
1160
1161 for (mainp = main_name_list; *mainp != NULL; mainp++)
1162 {
1163 if (strcmp (soname, *mainp) == 0)
1164 return (1);
1165 }
1166
1167 return (0);
1168}
1169
13437d4b
KB
1170/* Return 1 if PC lies in the dynamic symbol resolution code of the
1171 SVR4 run time loader. */
13437d4b
KB
1172static CORE_ADDR interp_text_sect_low;
1173static CORE_ADDR interp_text_sect_high;
1174static CORE_ADDR interp_plt_sect_low;
1175static CORE_ADDR interp_plt_sect_high;
1176
7d522c90 1177int
d7fa2ae2 1178svr4_in_dynsym_resolve_code (CORE_ADDR pc)
13437d4b
KB
1179{
1180 return ((pc >= interp_text_sect_low && pc < interp_text_sect_high)
1181 || (pc >= interp_plt_sect_low && pc < interp_plt_sect_high)
1182 || in_plt_section (pc, NULL));
1183}
13437d4b 1184
2f4950cd
AC
1185/* Given an executable's ABFD and target, compute the entry-point
1186 address. */
1187
1188static CORE_ADDR
1189exec_entry_point (struct bfd *abfd, struct target_ops *targ)
1190{
1191 /* KevinB wrote ... for most targets, the address returned by
1192 bfd_get_start_address() is the entry point for the start
1193 function. But, for some targets, bfd_get_start_address() returns
1194 the address of a function descriptor from which the entry point
1195 address may be extracted. This address is extracted by
1196 gdbarch_convert_from_func_ptr_addr(). The method
1197 gdbarch_convert_from_func_ptr_addr() is the merely the identify
1198 function for targets which don't use function descriptors. */
1cf3db46 1199 return gdbarch_convert_from_func_ptr_addr (target_gdbarch,
2f4950cd
AC
1200 bfd_get_start_address (abfd),
1201 targ);
1202}
13437d4b
KB
1203
1204/*
1205
1206 LOCAL FUNCTION
1207
1208 enable_break -- arrange for dynamic linker to hit breakpoint
1209
1210 SYNOPSIS
1211
1212 int enable_break (void)
1213
1214 DESCRIPTION
1215
1216 Both the SunOS and the SVR4 dynamic linkers have, as part of their
1217 debugger interface, support for arranging for the inferior to hit
1218 a breakpoint after mapping in the shared libraries. This function
1219 enables that breakpoint.
1220
1221 For SunOS, there is a special flag location (in_debugger) which we
1222 set to 1. When the dynamic linker sees this flag set, it will set
1223 a breakpoint at a location known only to itself, after saving the
1224 original contents of that place and the breakpoint address itself,
1225 in it's own internal structures. When we resume the inferior, it
1226 will eventually take a SIGTRAP when it runs into the breakpoint.
1227 We handle this (in a different place) by restoring the contents of
1228 the breakpointed location (which is only known after it stops),
1229 chasing around to locate the shared libraries that have been
1230 loaded, then resuming.
1231
1232 For SVR4, the debugger interface structure contains a member (r_brk)
1233 which is statically initialized at the time the shared library is
1234 built, to the offset of a function (_r_debug_state) which is guaran-
1235 teed to be called once before mapping in a library, and again when
1236 the mapping is complete. At the time we are examining this member,
1237 it contains only the unrelocated offset of the function, so we have
1238 to do our own relocation. Later, when the dynamic linker actually
1239 runs, it relocates r_brk to be the actual address of _r_debug_state().
1240
1241 The debugger interface structure also contains an enumeration which
1242 is set to either RT_ADD or RT_DELETE prior to changing the mapping,
1243 depending upon whether or not the library is being mapped or unmapped,
1244 and then set to RT_CONSISTENT after the library is mapped/unmapped.
1245 */
1246
1247static int
1a816a87 1248enable_break (struct svr4_info *info)
13437d4b 1249{
13437d4b
KB
1250 struct minimal_symbol *msymbol;
1251 char **bkpt_namep;
1252 asection *interp_sect;
97ec2c2f 1253 gdb_byte *interp_name;
7cd25cfc 1254 CORE_ADDR sym_addr;
1a816a87 1255 struct inferior *inf = current_inferior ();
13437d4b
KB
1256
1257 /* First, remove all the solib event breakpoints. Their addresses
1258 may have changed since the last time we ran the program. */
1259 remove_solib_event_breakpoints ();
1260
13437d4b
KB
1261 interp_text_sect_low = interp_text_sect_high = 0;
1262 interp_plt_sect_low = interp_plt_sect_high = 0;
1263
7cd25cfc
DJ
1264 /* If we already have a shared library list in the target, and
1265 r_debug contains r_brk, set the breakpoint there - this should
1266 mean r_brk has already been relocated. Assume the dynamic linker
1267 is the object containing r_brk. */
1268
1269 solib_add (NULL, 0, &current_target, auto_solib_add);
1270 sym_addr = 0;
1a816a87
PA
1271 if (info->debug_base && solib_svr4_r_map (info) != 0)
1272 sym_addr = solib_svr4_r_brk (info);
7cd25cfc
DJ
1273
1274 if (sym_addr != 0)
1275 {
1276 struct obj_section *os;
1277
b36ec657 1278 sym_addr = gdbarch_addr_bits_remove
1cf3db46 1279 (target_gdbarch, gdbarch_convert_from_func_ptr_addr (target_gdbarch,
b36ec657
DJ
1280 sym_addr,
1281 &current_target));
1282
7cd25cfc
DJ
1283 os = find_pc_section (sym_addr);
1284 if (os != NULL)
1285 {
1286 /* Record the relocated start and end address of the dynamic linker
1287 text and plt section for svr4_in_dynsym_resolve_code. */
1288 bfd *tmp_bfd;
1289 CORE_ADDR load_addr;
1290
1291 tmp_bfd = os->objfile->obfd;
1292 load_addr = ANOFFSET (os->objfile->section_offsets,
1293 os->objfile->sect_index_text);
1294
1295 interp_sect = bfd_get_section_by_name (tmp_bfd, ".text");
1296 if (interp_sect)
1297 {
1298 interp_text_sect_low =
1299 bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
1300 interp_text_sect_high =
1301 interp_text_sect_low + bfd_section_size (tmp_bfd, interp_sect);
1302 }
1303 interp_sect = bfd_get_section_by_name (tmp_bfd, ".plt");
1304 if (interp_sect)
1305 {
1306 interp_plt_sect_low =
1307 bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
1308 interp_plt_sect_high =
1309 interp_plt_sect_low + bfd_section_size (tmp_bfd, interp_sect);
1310 }
1311
1312 create_solib_event_breakpoint (sym_addr);
1313 return 1;
1314 }
1315 }
1316
97ec2c2f 1317 /* Find the program interpreter; if not found, warn the user and drop
13437d4b 1318 into the old breakpoint at symbol code. */
97ec2c2f
UW
1319 interp_name = find_program_interpreter ();
1320 if (interp_name)
13437d4b 1321 {
8ad2fcde
KB
1322 CORE_ADDR load_addr = 0;
1323 int load_addr_found = 0;
2ec9a4f8 1324 int loader_found_in_list = 0;
f8766ec1 1325 struct so_list *so;
e4f7b8c8 1326 bfd *tmp_bfd = NULL;
2f4950cd 1327 struct target_ops *tmp_bfd_target;
f1838a98 1328 volatile struct gdb_exception ex;
13437d4b 1329
7cd25cfc 1330 sym_addr = 0;
13437d4b
KB
1331
1332 /* Now we need to figure out where the dynamic linker was
1333 loaded so that we can load its symbols and place a breakpoint
1334 in the dynamic linker itself.
1335
1336 This address is stored on the stack. However, I've been unable
1337 to find any magic formula to find it for Solaris (appears to
1338 be trivial on GNU/Linux). Therefore, we have to try an alternate
1339 mechanism to find the dynamic linker's base address. */
e4f7b8c8 1340
f1838a98
UW
1341 TRY_CATCH (ex, RETURN_MASK_ALL)
1342 {
97ec2c2f 1343 tmp_bfd = solib_bfd_open (interp_name);
f1838a98 1344 }
13437d4b
KB
1345 if (tmp_bfd == NULL)
1346 goto bkpt_at_symbol;
1347
2f4950cd
AC
1348 /* Now convert the TMP_BFD into a target. That way target, as
1349 well as BFD operations can be used. Note that closing the
1350 target will also close the underlying bfd. */
1351 tmp_bfd_target = target_bfd_reopen (tmp_bfd);
1352
f8766ec1
KB
1353 /* On a running target, we can get the dynamic linker's base
1354 address from the shared library table. */
f8766ec1
KB
1355 so = master_so_list ();
1356 while (so)
8ad2fcde 1357 {
97ec2c2f 1358 if (svr4_same_1 (interp_name, so->so_original_name))
8ad2fcde
KB
1359 {
1360 load_addr_found = 1;
2ec9a4f8 1361 loader_found_in_list = 1;
cc10cae3 1362 load_addr = LM_ADDR_CHECK (so, tmp_bfd);
8ad2fcde
KB
1363 break;
1364 }
f8766ec1 1365 so = so->next;
8ad2fcde
KB
1366 }
1367
8d4e36ba
JB
1368 /* If we were not able to find the base address of the loader
1369 from our so_list, then try using the AT_BASE auxilliary entry. */
1370 if (!load_addr_found)
1371 if (target_auxv_search (&current_target, AT_BASE, &load_addr) > 0)
1372 load_addr_found = 1;
1373
8ad2fcde
KB
1374 /* Otherwise we find the dynamic linker's base address by examining
1375 the current pc (which should point at the entry point for the
8d4e36ba
JB
1376 dynamic linker) and subtracting the offset of the entry point.
1377
1378 This is more fragile than the previous approaches, but is a good
1379 fallback method because it has actually been working well in
1380 most cases. */
8ad2fcde 1381 if (!load_addr_found)
fb14de7b
UW
1382 {
1383 struct regcache *regcache = get_thread_regcache (inferior_ptid);
1384 load_addr = (regcache_read_pc (regcache)
1385 - exec_entry_point (tmp_bfd, tmp_bfd_target));
1386 }
2ec9a4f8
DJ
1387
1388 if (!loader_found_in_list)
34439770 1389 {
1a816a87
PA
1390 info->debug_loader_name = xstrdup (interp_name);
1391 info->debug_loader_offset_p = 1;
1392 info->debug_loader_offset = load_addr;
2bbe3cc1 1393 solib_add (NULL, 0, &current_target, auto_solib_add);
34439770 1394 }
13437d4b
KB
1395
1396 /* Record the relocated start and end address of the dynamic linker
d7fa2ae2 1397 text and plt section for svr4_in_dynsym_resolve_code. */
13437d4b
KB
1398 interp_sect = bfd_get_section_by_name (tmp_bfd, ".text");
1399 if (interp_sect)
1400 {
1401 interp_text_sect_low =
1402 bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
1403 interp_text_sect_high =
1404 interp_text_sect_low + bfd_section_size (tmp_bfd, interp_sect);
1405 }
1406 interp_sect = bfd_get_section_by_name (tmp_bfd, ".plt");
1407 if (interp_sect)
1408 {
1409 interp_plt_sect_low =
1410 bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
1411 interp_plt_sect_high =
1412 interp_plt_sect_low + bfd_section_size (tmp_bfd, interp_sect);
1413 }
1414
1415 /* Now try to set a breakpoint in the dynamic linker. */
1416 for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++)
1417 {
2bbe3cc1 1418 sym_addr = bfd_lookup_symbol (tmp_bfd, *bkpt_namep);
13437d4b
KB
1419 if (sym_addr != 0)
1420 break;
1421 }
1422
2bbe3cc1
DJ
1423 if (sym_addr != 0)
1424 /* Convert 'sym_addr' from a function pointer to an address.
1425 Because we pass tmp_bfd_target instead of the current
1426 target, this will always produce an unrelocated value. */
1cf3db46 1427 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch,
2bbe3cc1
DJ
1428 sym_addr,
1429 tmp_bfd_target);
1430
2f4950cd
AC
1431 /* We're done with both the temporary bfd and target. Remember,
1432 closing the target closes the underlying bfd. */
1433 target_close (tmp_bfd_target, 0);
13437d4b
KB
1434
1435 if (sym_addr != 0)
1436 {
1437 create_solib_event_breakpoint (load_addr + sym_addr);
97ec2c2f 1438 xfree (interp_name);
13437d4b
KB
1439 return 1;
1440 }
1441
1442 /* For whatever reason we couldn't set a breakpoint in the dynamic
1443 linker. Warn and drop into the old code. */
1444 bkpt_at_symbol:
97ec2c2f 1445 xfree (interp_name);
82d03102
PG
1446 warning (_("Unable to find dynamic linker breakpoint function.\n"
1447 "GDB will be unable to debug shared library initializers\n"
1448 "and track explicitly loaded dynamic code."));
13437d4b 1449 }
13437d4b 1450
e499d0f1
DJ
1451 /* Scan through the lists of symbols, trying to look up the symbol and
1452 set a breakpoint there. Terminate loop when we/if we succeed. */
1453
1454 for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++)
1455 {
1456 msymbol = lookup_minimal_symbol (*bkpt_namep, NULL, symfile_objfile);
1457 if ((msymbol != NULL) && (SYMBOL_VALUE_ADDRESS (msymbol) != 0))
1458 {
1459 create_solib_event_breakpoint (SYMBOL_VALUE_ADDRESS (msymbol));
1460 return 1;
1461 }
1462 }
13437d4b 1463
13437d4b
KB
1464 for (bkpt_namep = bkpt_names; *bkpt_namep != NULL; bkpt_namep++)
1465 {
1466 msymbol = lookup_minimal_symbol (*bkpt_namep, NULL, symfile_objfile);
1467 if ((msymbol != NULL) && (SYMBOL_VALUE_ADDRESS (msymbol) != 0))
1468 {
1469 create_solib_event_breakpoint (SYMBOL_VALUE_ADDRESS (msymbol));
1470 return 1;
1471 }
1472 }
542c95c2 1473 return 0;
13437d4b
KB
1474}
1475
1476/*
1477
1478 LOCAL FUNCTION
1479
1480 special_symbol_handling -- additional shared library symbol handling
1481
1482 SYNOPSIS
1483
1484 void special_symbol_handling ()
1485
1486 DESCRIPTION
1487
1488 Once the symbols from a shared object have been loaded in the usual
1489 way, we are called to do any system specific symbol handling that
1490 is needed.
1491
ab31aa69 1492 For SunOS4, this consisted of grunging around in the dynamic
13437d4b
KB
1493 linkers structures to find symbol definitions for "common" symbols
1494 and adding them to the minimal symbol table for the runtime common
1495 objfile.
1496
ab31aa69
KB
1497 However, for SVR4, there's nothing to do.
1498
13437d4b
KB
1499 */
1500
1501static void
1502svr4_special_symbol_handling (void)
1503{
13437d4b
KB
1504}
1505
e2a44558
KB
1506/* Relocate the main executable. This function should be called upon
1507 stopping the inferior process at the entry point to the program.
1508 The entry point from BFD is compared to the PC and if they are
1509 different, the main executable is relocated by the proper amount.
1510
1511 As written it will only attempt to relocate executables which
1512 lack interpreter sections. It seems likely that only dynamic
1513 linker executables will get relocated, though it should work
1514 properly for a position-independent static executable as well. */
1515
1516static void
1517svr4_relocate_main_executable (void)
1518{
1519 asection *interp_sect;
fb14de7b
UW
1520 struct regcache *regcache = get_thread_regcache (inferior_ptid);
1521 CORE_ADDR pc = regcache_read_pc (regcache);
e2a44558
KB
1522
1523 /* Decide if the objfile needs to be relocated. As indicated above,
1524 we will only be here when execution is stopped at the beginning
1525 of the program. Relocation is necessary if the address at which
1526 we are presently stopped differs from the start address stored in
1527 the executable AND there's no interpreter section. The condition
1528 regarding the interpreter section is very important because if
1529 there *is* an interpreter section, execution will begin there
1530 instead. When there is an interpreter section, the start address
1531 is (presumably) used by the interpreter at some point to start
1532 execution of the program.
1533
1534 If there is an interpreter, it is normal for it to be set to an
1535 arbitrary address at the outset. The job of finding it is
1536 handled in enable_break().
1537
1538 So, to summarize, relocations are necessary when there is no
1539 interpreter section and the start address obtained from the
1540 executable is different from the address at which GDB is
1541 currently stopped.
1542
1543 [ The astute reader will note that we also test to make sure that
1544 the executable in question has the DYNAMIC flag set. It is my
1545 opinion that this test is unnecessary (undesirable even). It
1546 was added to avoid inadvertent relocation of an executable
1547 whose e_type member in the ELF header is not ET_DYN. There may
1548 be a time in the future when it is desirable to do relocations
1549 on other types of files as well in which case this condition
1550 should either be removed or modified to accomodate the new file
1551 type. (E.g, an ET_EXEC executable which has been built to be
1552 position-independent could safely be relocated by the OS if
1553 desired. It is true that this violates the ABI, but the ABI
1554 has been known to be bent from time to time.) - Kevin, Nov 2000. ]
1555 */
1556
1557 interp_sect = bfd_get_section_by_name (exec_bfd, ".interp");
1558 if (interp_sect == NULL
1559 && (bfd_get_file_flags (exec_bfd) & DYNAMIC) != 0
2f4950cd 1560 && (exec_entry_point (exec_bfd, &exec_ops) != pc))
e2a44558
KB
1561 {
1562 struct cleanup *old_chain;
1563 struct section_offsets *new_offsets;
1564 int i, changed;
1565 CORE_ADDR displacement;
1566
1567 /* It is necessary to relocate the objfile. The amount to
1568 relocate by is simply the address at which we are stopped
1569 minus the starting address from the executable.
1570
1571 We relocate all of the sections by the same amount. This
1572 behavior is mandated by recent editions of the System V ABI.
1573 According to the System V Application Binary Interface,
1574 Edition 4.1, page 5-5:
1575
1576 ... Though the system chooses virtual addresses for
1577 individual processes, it maintains the segments' relative
1578 positions. Because position-independent code uses relative
1579 addressesing between segments, the difference between
1580 virtual addresses in memory must match the difference
1581 between virtual addresses in the file. The difference
1582 between the virtual address of any segment in memory and
1583 the corresponding virtual address in the file is thus a
1584 single constant value for any one executable or shared
1585 object in a given process. This difference is the base
1586 address. One use of the base address is to relocate the
1587 memory image of the program during dynamic linking.
1588
1589 The same language also appears in Edition 4.0 of the System V
1590 ABI and is left unspecified in some of the earlier editions. */
1591
2f4950cd 1592 displacement = pc - exec_entry_point (exec_bfd, &exec_ops);
e2a44558
KB
1593 changed = 0;
1594
13fc0c2f
KB
1595 new_offsets = xcalloc (symfile_objfile->num_sections,
1596 sizeof (struct section_offsets));
b8c9b27d 1597 old_chain = make_cleanup (xfree, new_offsets);
e2a44558
KB
1598
1599 for (i = 0; i < symfile_objfile->num_sections; i++)
1600 {
1601 if (displacement != ANOFFSET (symfile_objfile->section_offsets, i))
1602 changed = 1;
1603 new_offsets->offsets[i] = displacement;
1604 }
1605
1606 if (changed)
1607 objfile_relocate (symfile_objfile, new_offsets);
1608
1609 do_cleanups (old_chain);
1610 }
1611}
1612
13437d4b
KB
1613/*
1614
1615 GLOBAL FUNCTION
1616
1617 svr4_solib_create_inferior_hook -- shared library startup support
1618
1619 SYNOPSIS
1620
7095b863 1621 void svr4_solib_create_inferior_hook ()
13437d4b
KB
1622
1623 DESCRIPTION
1624
1625 When gdb starts up the inferior, it nurses it along (through the
1626 shell) until it is ready to execute it's first instruction. At this
1627 point, this function gets called via expansion of the macro
1628 SOLIB_CREATE_INFERIOR_HOOK.
1629
1630 For SunOS executables, this first instruction is typically the
1631 one at "_start", or a similar text label, regardless of whether
1632 the executable is statically or dynamically linked. The runtime
1633 startup code takes care of dynamically linking in any shared
1634 libraries, once gdb allows the inferior to continue.
1635
1636 For SVR4 executables, this first instruction is either the first
1637 instruction in the dynamic linker (for dynamically linked
1638 executables) or the instruction at "start" for statically linked
1639 executables. For dynamically linked executables, the system
1640 first exec's /lib/libc.so.N, which contains the dynamic linker,
1641 and starts it running. The dynamic linker maps in any needed
1642 shared libraries, maps in the actual user executable, and then
1643 jumps to "start" in the user executable.
1644
1645 For both SunOS shared libraries, and SVR4 shared libraries, we
1646 can arrange to cooperate with the dynamic linker to discover the
1647 names of shared libraries that are dynamically linked, and the
1648 base addresses to which they are linked.
1649
1650 This function is responsible for discovering those names and
1651 addresses, and saving sufficient information about them to allow
1652 their symbols to be read at a later time.
1653
1654 FIXME
1655
1656 Between enable_break() and disable_break(), this code does not
1657 properly handle hitting breakpoints which the user might have
1658 set in the startup code or in the dynamic linker itself. Proper
1659 handling will probably have to wait until the implementation is
1660 changed to use the "breakpoint handler function" method.
1661
1662 Also, what if child has exit()ed? Must exit loop somehow.
1663 */
1664
e2a44558 1665static void
13437d4b
KB
1666svr4_solib_create_inferior_hook (void)
1667{
d6b48e9c 1668 struct inferior *inf;
2020b7ab 1669 struct thread_info *tp;
1a816a87
PA
1670 struct svr4_info *info;
1671
1672 info = get_svr4_info (PIDGET (inferior_ptid));
2020b7ab 1673
e2a44558
KB
1674 /* Relocate the main executable if necessary. */
1675 svr4_relocate_main_executable ();
1676
d5a921c9 1677 if (!svr4_have_link_map_offsets ())
513f5903 1678 return;
d5a921c9 1679
1a816a87 1680 if (!enable_break (info))
542c95c2 1681 return;
13437d4b 1682
ab31aa69
KB
1683#if defined(_SCO_DS)
1684 /* SCO needs the loop below, other systems should be using the
13437d4b
KB
1685 special shared library breakpoints and the shared library breakpoint
1686 service routine.
1687
1688 Now run the target. It will eventually hit the breakpoint, at
1689 which point all of the libraries will have been mapped in and we
1690 can go groveling around in the dynamic linker structures to find
1691 out what we need to know about them. */
1692
d6b48e9c 1693 inf = current_inferior ();
2020b7ab
PA
1694 tp = inferior_thread ();
1695
13437d4b 1696 clear_proceed_status ();
d6b48e9c 1697 inf->stop_soon = STOP_QUIETLY;
2020b7ab 1698 tp->stop_signal = TARGET_SIGNAL_0;
13437d4b
KB
1699 do
1700 {
2020b7ab 1701 target_resume (pid_to_ptid (-1), 0, tp->stop_signal);
ae123ec6 1702 wait_for_inferior (0);
13437d4b 1703 }
2020b7ab 1704 while (tp->stop_signal != TARGET_SIGNAL_TRAP);
d6b48e9c 1705 inf->stop_soon = NO_STOP_QUIETLY;
ab31aa69 1706#endif /* defined(_SCO_DS) */
13437d4b
KB
1707}
1708
1709static void
1710svr4_clear_solib (void)
1711{
1a816a87 1712 remove_svr4_info (PIDGET (inferior_ptid));
13437d4b
KB
1713}
1714
1715static void
1716svr4_free_so (struct so_list *so)
1717{
b8c9b27d
KB
1718 xfree (so->lm_info->lm);
1719 xfree (so->lm_info);
13437d4b
KB
1720}
1721
6bb7be43
JB
1722
1723/* Clear any bits of ADDR that wouldn't fit in a target-format
1724 data pointer. "Data pointer" here refers to whatever sort of
1725 address the dynamic linker uses to manage its sections. At the
1726 moment, we don't support shared libraries on any processors where
1727 code and data pointers are different sizes.
1728
1729 This isn't really the right solution. What we really need here is
1730 a way to do arithmetic on CORE_ADDR values that respects the
1731 natural pointer/address correspondence. (For example, on the MIPS,
1732 converting a 32-bit pointer to a 64-bit CORE_ADDR requires you to
1733 sign-extend the value. There, simply truncating the bits above
819844ad 1734 gdbarch_ptr_bit, as we do below, is no good.) This should probably
6bb7be43
JB
1735 be a new gdbarch method or something. */
1736static CORE_ADDR
1737svr4_truncate_ptr (CORE_ADDR addr)
1738{
1cf3db46 1739 if (gdbarch_ptr_bit (target_gdbarch) == sizeof (CORE_ADDR) * 8)
6bb7be43
JB
1740 /* We don't need to truncate anything, and the bit twiddling below
1741 will fail due to overflow problems. */
1742 return addr;
1743 else
1cf3db46 1744 return addr & (((CORE_ADDR) 1 << gdbarch_ptr_bit (target_gdbarch)) - 1);
6bb7be43
JB
1745}
1746
1747
749499cb
KB
1748static void
1749svr4_relocate_section_addresses (struct so_list *so,
0542c86d 1750 struct target_section *sec)
749499cb 1751{
cc10cae3
AO
1752 sec->addr = svr4_truncate_ptr (sec->addr + LM_ADDR_CHECK (so,
1753 sec->bfd));
1754 sec->endaddr = svr4_truncate_ptr (sec->endaddr + LM_ADDR_CHECK (so,
1755 sec->bfd));
749499cb 1756}
4b188b9f 1757\f
749499cb 1758
4b188b9f 1759/* Architecture-specific operations. */
6bb7be43 1760
4b188b9f
MK
1761/* Per-architecture data key. */
1762static struct gdbarch_data *solib_svr4_data;
e5e2b9ff 1763
4b188b9f 1764struct solib_svr4_ops
e5e2b9ff 1765{
4b188b9f
MK
1766 /* Return a description of the layout of `struct link_map'. */
1767 struct link_map_offsets *(*fetch_link_map_offsets)(void);
1768};
e5e2b9ff 1769
4b188b9f 1770/* Return a default for the architecture-specific operations. */
e5e2b9ff 1771
4b188b9f
MK
1772static void *
1773solib_svr4_init (struct obstack *obstack)
e5e2b9ff 1774{
4b188b9f 1775 struct solib_svr4_ops *ops;
e5e2b9ff 1776
4b188b9f 1777 ops = OBSTACK_ZALLOC (obstack, struct solib_svr4_ops);
8d005789 1778 ops->fetch_link_map_offsets = NULL;
4b188b9f 1779 return ops;
e5e2b9ff
KB
1780}
1781
4b188b9f 1782/* Set the architecture-specific `struct link_map_offsets' fetcher for
7e3cb44c 1783 GDBARCH to FLMO. Also, install SVR4 solib_ops into GDBARCH. */
1c4dcb57 1784
21479ded 1785void
e5e2b9ff
KB
1786set_solib_svr4_fetch_link_map_offsets (struct gdbarch *gdbarch,
1787 struct link_map_offsets *(*flmo) (void))
21479ded 1788{
4b188b9f
MK
1789 struct solib_svr4_ops *ops = gdbarch_data (gdbarch, solib_svr4_data);
1790
1791 ops->fetch_link_map_offsets = flmo;
7e3cb44c
UW
1792
1793 set_solib_ops (gdbarch, &svr4_so_ops);
21479ded
KB
1794}
1795
4b188b9f
MK
1796/* Fetch a link_map_offsets structure using the architecture-specific
1797 `struct link_map_offsets' fetcher. */
1c4dcb57 1798
4b188b9f
MK
1799static struct link_map_offsets *
1800svr4_fetch_link_map_offsets (void)
21479ded 1801{
1cf3db46 1802 struct solib_svr4_ops *ops = gdbarch_data (target_gdbarch, solib_svr4_data);
4b188b9f
MK
1803
1804 gdb_assert (ops->fetch_link_map_offsets);
1805 return ops->fetch_link_map_offsets ();
21479ded
KB
1806}
1807
4b188b9f
MK
1808/* Return 1 if a link map offset fetcher has been defined, 0 otherwise. */
1809
1810static int
1811svr4_have_link_map_offsets (void)
1812{
1cf3db46 1813 struct solib_svr4_ops *ops = gdbarch_data (target_gdbarch, solib_svr4_data);
4b188b9f
MK
1814 return (ops->fetch_link_map_offsets != NULL);
1815}
1816\f
1817
e4bbbda8
MK
1818/* Most OS'es that have SVR4-style ELF dynamic libraries define a
1819 `struct r_debug' and a `struct link_map' that are binary compatible
1820 with the origional SVR4 implementation. */
1821
1822/* Fetch (and possibly build) an appropriate `struct link_map_offsets'
1823 for an ILP32 SVR4 system. */
1824
1825struct link_map_offsets *
1826svr4_ilp32_fetch_link_map_offsets (void)
1827{
1828 static struct link_map_offsets lmo;
1829 static struct link_map_offsets *lmp = NULL;
1830
1831 if (lmp == NULL)
1832 {
1833 lmp = &lmo;
1834
e4cd0d6a
MK
1835 lmo.r_version_offset = 0;
1836 lmo.r_version_size = 4;
e4bbbda8 1837 lmo.r_map_offset = 4;
7cd25cfc 1838 lmo.r_brk_offset = 8;
e4cd0d6a 1839 lmo.r_ldsomap_offset = 20;
e4bbbda8
MK
1840
1841 /* Everything we need is in the first 20 bytes. */
1842 lmo.link_map_size = 20;
1843 lmo.l_addr_offset = 0;
e4bbbda8 1844 lmo.l_name_offset = 4;
cc10cae3 1845 lmo.l_ld_offset = 8;
e4bbbda8 1846 lmo.l_next_offset = 12;
e4bbbda8 1847 lmo.l_prev_offset = 16;
e4bbbda8
MK
1848 }
1849
1850 return lmp;
1851}
1852
1853/* Fetch (and possibly build) an appropriate `struct link_map_offsets'
1854 for an LP64 SVR4 system. */
1855
1856struct link_map_offsets *
1857svr4_lp64_fetch_link_map_offsets (void)
1858{
1859 static struct link_map_offsets lmo;
1860 static struct link_map_offsets *lmp = NULL;
1861
1862 if (lmp == NULL)
1863 {
1864 lmp = &lmo;
1865
e4cd0d6a
MK
1866 lmo.r_version_offset = 0;
1867 lmo.r_version_size = 4;
e4bbbda8 1868 lmo.r_map_offset = 8;
7cd25cfc 1869 lmo.r_brk_offset = 16;
e4cd0d6a 1870 lmo.r_ldsomap_offset = 40;
e4bbbda8
MK
1871
1872 /* Everything we need is in the first 40 bytes. */
1873 lmo.link_map_size = 40;
1874 lmo.l_addr_offset = 0;
e4bbbda8 1875 lmo.l_name_offset = 8;
cc10cae3 1876 lmo.l_ld_offset = 16;
e4bbbda8 1877 lmo.l_next_offset = 24;
e4bbbda8 1878 lmo.l_prev_offset = 32;
e4bbbda8
MK
1879 }
1880
1881 return lmp;
1882}
1883\f
1884
7d522c90 1885struct target_so_ops svr4_so_ops;
13437d4b 1886
3a40aaa0
UW
1887/* Lookup global symbol for ELF DSOs linked with -Bsymbolic. Those DSOs have a
1888 different rule for symbol lookup. The lookup begins here in the DSO, not in
1889 the main executable. */
1890
1891static struct symbol *
1892elf_lookup_lib_symbol (const struct objfile *objfile,
1893 const char *name,
1894 const char *linkage_name,
21b556f4 1895 const domain_enum domain)
3a40aaa0
UW
1896{
1897 if (objfile->obfd == NULL
1898 || scan_dyntag (DT_SYMBOLIC, objfile->obfd, NULL) != 1)
1899 return NULL;
1900
65728c26 1901 return lookup_global_symbol_from_objfile
21b556f4 1902 (objfile, name, linkage_name, domain);
3a40aaa0
UW
1903}
1904
a78f21af
AC
1905extern initialize_file_ftype _initialize_svr4_solib; /* -Wmissing-prototypes */
1906
13437d4b
KB
1907void
1908_initialize_svr4_solib (void)
1909{
4b188b9f
MK
1910 solib_svr4_data = gdbarch_data_register_pre_init (solib_svr4_init);
1911
749499cb 1912 svr4_so_ops.relocate_section_addresses = svr4_relocate_section_addresses;
13437d4b
KB
1913 svr4_so_ops.free_so = svr4_free_so;
1914 svr4_so_ops.clear_solib = svr4_clear_solib;
1915 svr4_so_ops.solib_create_inferior_hook = svr4_solib_create_inferior_hook;
1916 svr4_so_ops.special_symbol_handling = svr4_special_symbol_handling;
1917 svr4_so_ops.current_sos = svr4_current_sos;
1918 svr4_so_ops.open_symbol_file_object = open_symbol_file_object;
d7fa2ae2 1919 svr4_so_ops.in_dynsym_resolve_code = svr4_in_dynsym_resolve_code;
3a40aaa0 1920 svr4_so_ops.lookup_lib_global_symbol = elf_lookup_lib_symbol;
a7c02bc8 1921 svr4_so_ops.same = svr4_same;
1a816a87
PA
1922
1923 observer_attach_inferior_exit (solib_svr4_inferior_exit);
13437d4b 1924}
This page took 1.048008 seconds and 4 git commands to generate.