]> Git Repo - binutils.git/blob - gdb/solib-svr4.c
* config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
[binutils.git] / gdb / solib-svr4.c
1 /* Handle SVR4 shared libraries for GDB, the GNU Debugger.
2    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000,
3    2001
4    Free Software Foundation, Inc.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place - Suite 330,
21    Boston, MA 02111-1307, USA.  */
22
23 #include "defs.h"
24
25 #include "elf/external.h"
26 #include "elf/common.h"
27 #include "elf/mips.h"
28
29 #include "symtab.h"
30 #include "bfd.h"
31 #include "symfile.h"
32 #include "objfiles.h"
33 #include "gdbcore.h"
34 #include "target.h"
35 #include "inferior.h"
36
37 #include "solist.h"
38 #include "solib-svr4.h"
39
40 #ifndef SVR4_FETCH_LINK_MAP_OFFSETS
41 #define SVR4_FETCH_LINK_MAP_OFFSETS() svr4_fetch_link_map_offsets ()
42 #endif
43
44 static struct link_map_offsets *svr4_fetch_link_map_offsets (void);
45 static struct link_map_offsets *legacy_fetch_link_map_offsets (void);
46
47 /* fetch_link_map_offsets_gdbarch_data is a handle used to obtain the
48    architecture specific link map offsets fetching function.  */
49
50 static struct gdbarch_data *fetch_link_map_offsets_gdbarch_data;
51
52 /* legacy_svr4_fetch_link_map_offsets_hook is a pointer to a function
53    which is used to fetch link map offsets.  It will only be set
54    by solib-legacy.c, if at all. */
55
56 struct link_map_offsets *(*legacy_svr4_fetch_link_map_offsets_hook)(void) = 0;
57
58 /* Link map info to include in an allocated so_list entry */
59
60 struct lm_info
61   {
62     /* Pointer to copy of link map from inferior.  The type is char *
63        rather than void *, so that we may use byte offsets to find the
64        various fields without the need for a cast.  */
65     char *lm;
66   };
67
68 /* On SVR4 systems, a list of symbols in the dynamic linker where
69    GDB can try to place a breakpoint to monitor shared library
70    events.
71
72    If none of these symbols are found, or other errors occur, then
73    SVR4 systems will fall back to using a symbol as the "startup
74    mapping complete" breakpoint address.  */
75
76 static char *solib_break_names[] =
77 {
78   "r_debug_state",
79   "_r_debug_state",
80   "_dl_debug_state",
81   "rtld_db_dlactivity",
82   "_rtld_debug_state",
83   NULL
84 };
85
86 #define BKPT_AT_SYMBOL 1
87
88 #if defined (BKPT_AT_SYMBOL)
89 static char *bkpt_names[] =
90 {
91 #ifdef SOLIB_BKPT_NAME
92   SOLIB_BKPT_NAME,              /* Prefer configured name if it exists. */
93 #endif
94   "_start",
95   "main",
96   NULL
97 };
98 #endif
99
100 static char *main_name_list[] =
101 {
102   "main_$main",
103   NULL
104 };
105
106 /* Macro to extract an address from a solib structure.
107    When GDB is configured for some 32-bit targets (e.g. Solaris 2.7
108    sparc), BFD is configured to handle 64-bit targets, so CORE_ADDR is
109    64 bits.  We have to extract only the significant bits of addresses
110    to get the right address when accessing the core file BFD.  */
111
112 #define SOLIB_EXTRACT_ADDRESS(MEMBER) \
113         extract_address (&(MEMBER), sizeof (MEMBER))
114
115 /* local data declarations */
116
117 /* link map access functions */
118
119 static CORE_ADDR
120 LM_ADDR (struct so_list *so)
121 {
122   struct link_map_offsets *lmo = SVR4_FETCH_LINK_MAP_OFFSETS ();
123
124   return (CORE_ADDR) extract_signed_integer (so->lm_info->lm + lmo->l_addr_offset, 
125                                              lmo->l_addr_size);
126 }
127
128 static CORE_ADDR
129 LM_NEXT (struct so_list *so)
130 {
131   struct link_map_offsets *lmo = SVR4_FETCH_LINK_MAP_OFFSETS ();
132
133   return extract_address (so->lm_info->lm + lmo->l_next_offset, lmo->l_next_size);
134 }
135
136 static CORE_ADDR
137 LM_NAME (struct so_list *so)
138 {
139   struct link_map_offsets *lmo = SVR4_FETCH_LINK_MAP_OFFSETS ();
140
141   return extract_address (so->lm_info->lm + lmo->l_name_offset, lmo->l_name_size);
142 }
143
144 static int
145 IGNORE_FIRST_LINK_MAP_ENTRY (struct so_list *so)
146 {
147   struct link_map_offsets *lmo = SVR4_FETCH_LINK_MAP_OFFSETS ();
148
149   return extract_address (so->lm_info->lm + lmo->l_prev_offset,
150                           lmo->l_prev_size) == 0;
151 }
152
153 static CORE_ADDR debug_base;    /* Base of dynamic linker structures */
154 static CORE_ADDR breakpoint_addr;       /* Address where end bkpt is set */
155
156 /* Local function prototypes */
157
158 static int match_main (char *);
159
160 static CORE_ADDR bfd_lookup_symbol (bfd *, char *);
161
162 /*
163
164    LOCAL FUNCTION
165
166    bfd_lookup_symbol -- lookup the value for a specific symbol
167
168    SYNOPSIS
169
170    CORE_ADDR bfd_lookup_symbol (bfd *abfd, char *symname)
171
172    DESCRIPTION
173
174    An expensive way to lookup the value of a single symbol for
175    bfd's that are only temporary anyway.  This is used by the
176    shared library support to find the address of the debugger
177    interface structures in the shared library.
178
179    Note that 0 is specifically allowed as an error return (no
180    such symbol).
181  */
182
183 static CORE_ADDR
184 bfd_lookup_symbol (bfd *abfd, char *symname)
185 {
186   long storage_needed;
187   asymbol *sym;
188   asymbol **symbol_table;
189   unsigned int number_of_symbols;
190   unsigned int i;
191   struct cleanup *back_to;
192   CORE_ADDR symaddr = 0;
193
194   storage_needed = bfd_get_symtab_upper_bound (abfd);
195
196   if (storage_needed > 0)
197     {
198       symbol_table = (asymbol **) xmalloc (storage_needed);
199       back_to = make_cleanup (xfree, (PTR) symbol_table);
200       number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
201
202       for (i = 0; i < number_of_symbols; i++)
203         {
204           sym = *symbol_table++;
205           if (STREQ (sym->name, symname))
206             {
207               /* Bfd symbols are section relative. */
208               symaddr = sym->value + sym->section->vma;
209               break;
210             }
211         }
212       do_cleanups (back_to);
213     }
214
215   if (symaddr)
216     return symaddr;
217
218   /* On FreeBSD, the dynamic linker is stripped by default.  So we'll
219      have to check the dynamic string table too.  */
220
221   storage_needed = bfd_get_dynamic_symtab_upper_bound (abfd);
222
223   if (storage_needed > 0)
224     {
225       symbol_table = (asymbol **) xmalloc (storage_needed);
226       back_to = make_cleanup (xfree, (PTR) symbol_table);
227       number_of_symbols = bfd_canonicalize_dynamic_symtab (abfd, symbol_table);
228
229       for (i = 0; i < number_of_symbols; i++)
230         {
231           sym = *symbol_table++;
232           if (STREQ (sym->name, symname))
233             {
234               /* Bfd symbols are section relative. */
235               symaddr = sym->value + sym->section->vma;
236               break;
237             }
238         }
239       do_cleanups (back_to);
240     }
241
242   return symaddr;
243 }
244
245 #ifdef HANDLE_SVR4_EXEC_EMULATORS
246
247 /*
248    Solaris BCP (the part of Solaris which allows it to run SunOS4
249    a.out files) throws in another wrinkle. Solaris does not fill
250    in the usual a.out link map structures when running BCP programs,
251    the only way to get at them is via groping around in the dynamic
252    linker.
253    The dynamic linker and it's structures are located in the shared
254    C library, which gets run as the executable's "interpreter" by
255    the kernel.
256
257    Note that we can assume nothing about the process state at the time
258    we need to find these structures.  We may be stopped on the first
259    instruction of the interpreter (C shared library), the first
260    instruction of the executable itself, or somewhere else entirely
261    (if we attached to the process for example).
262  */
263
264 static char *debug_base_symbols[] =
265 {
266   "r_debug",                    /* Solaris 2.3 */
267   "_r_debug",                   /* Solaris 2.1, 2.2 */
268   NULL
269 };
270
271 static int look_for_base (int, CORE_ADDR);
272
273 /*
274
275    LOCAL FUNCTION
276
277    look_for_base -- examine file for each mapped address segment
278
279    SYNOPSYS
280
281    static int look_for_base (int fd, CORE_ADDR baseaddr)
282
283    DESCRIPTION
284
285    This function is passed to proc_iterate_over_mappings, which
286    causes it to get called once for each mapped address space, with
287    an open file descriptor for the file mapped to that space, and the
288    base address of that mapped space.
289
290    Our job is to find the debug base symbol in the file that this
291    fd is open on, if it exists, and if so, initialize the dynamic
292    linker structure base address debug_base.
293
294    Note that this is a computationally expensive proposition, since
295    we basically have to open a bfd on every call, so we specifically
296    avoid opening the exec file.
297  */
298
299 static int
300 look_for_base (int fd, CORE_ADDR baseaddr)
301 {
302   bfd *interp_bfd;
303   CORE_ADDR address = 0;
304   char **symbolp;
305
306   /* If the fd is -1, then there is no file that corresponds to this
307      mapped memory segment, so skip it.  Also, if the fd corresponds
308      to the exec file, skip it as well. */
309
310   if (fd == -1
311       || (exec_bfd != NULL
312           && fdmatch (fileno ((FILE *) (exec_bfd->iostream)), fd)))
313     {
314       return (0);
315     }
316
317   /* Try to open whatever random file this fd corresponds to.  Note that
318      we have no way currently to find the filename.  Don't gripe about
319      any problems we might have, just fail. */
320
321   if ((interp_bfd = bfd_fdopenr ("unnamed", gnutarget, fd)) == NULL)
322     {
323       return (0);
324     }
325   if (!bfd_check_format (interp_bfd, bfd_object))
326     {
327       /* FIXME-leak: on failure, might not free all memory associated with
328          interp_bfd.  */
329       bfd_close (interp_bfd);
330       return (0);
331     }
332
333   /* Now try to find our debug base symbol in this file, which we at
334      least know to be a valid ELF executable or shared library. */
335
336   for (symbolp = debug_base_symbols; *symbolp != NULL; symbolp++)
337     {
338       address = bfd_lookup_symbol (interp_bfd, *symbolp);
339       if (address != 0)
340         {
341           break;
342         }
343     }
344   if (address == 0)
345     {
346       /* FIXME-leak: on failure, might not free all memory associated with
347          interp_bfd.  */
348       bfd_close (interp_bfd);
349       return (0);
350     }
351
352   /* Eureka!  We found the symbol.  But now we may need to relocate it
353      by the base address.  If the symbol's value is less than the base
354      address of the shared library, then it hasn't yet been relocated
355      by the dynamic linker, and we have to do it ourself.  FIXME: Note
356      that we make the assumption that the first segment that corresponds
357      to the shared library has the base address to which the library
358      was relocated. */
359
360   if (address < baseaddr)
361     {
362       address += baseaddr;
363     }
364   debug_base = address;
365   /* FIXME-leak: on failure, might not free all memory associated with
366      interp_bfd.  */
367   bfd_close (interp_bfd);
368   return (1);
369 }
370 #endif /* HANDLE_SVR4_EXEC_EMULATORS */
371
372 /*
373
374    LOCAL FUNCTION
375
376    elf_locate_base -- locate the base address of dynamic linker structs
377    for SVR4 elf targets.
378
379    SYNOPSIS
380
381    CORE_ADDR elf_locate_base (void)
382
383    DESCRIPTION
384
385    For SVR4 elf targets the address of the dynamic linker's runtime
386    structure is contained within the dynamic info section in the
387    executable file.  The dynamic section is also mapped into the
388    inferior address space.  Because the runtime loader fills in the
389    real address before starting the inferior, we have to read in the
390    dynamic info section from the inferior address space.
391    If there are any errors while trying to find the address, we
392    silently return 0, otherwise the found address is returned.
393
394  */
395
396 static CORE_ADDR
397 elf_locate_base (void)
398 {
399   sec_ptr dyninfo_sect;
400   int dyninfo_sect_size;
401   CORE_ADDR dyninfo_addr;
402   char *buf;
403   char *bufend;
404   int arch_size;
405
406   /* Find the start address of the .dynamic section.  */
407   dyninfo_sect = bfd_get_section_by_name (exec_bfd, ".dynamic");
408   if (dyninfo_sect == NULL)
409     return 0;
410   dyninfo_addr = bfd_section_vma (exec_bfd, dyninfo_sect);
411
412   /* Read in .dynamic section, silently ignore errors.  */
413   dyninfo_sect_size = bfd_section_size (exec_bfd, dyninfo_sect);
414   buf = alloca (dyninfo_sect_size);
415   if (target_read_memory (dyninfo_addr, buf, dyninfo_sect_size))
416     return 0;
417
418   /* Find the DT_DEBUG entry in the the .dynamic section.
419      For mips elf we look for DT_MIPS_RLD_MAP, mips elf apparently has
420      no DT_DEBUG entries.  */
421
422   arch_size = bfd_get_arch_size (exec_bfd);
423   if (arch_size == -1)  /* failure */
424     return 0;
425
426   if (arch_size == 32)
427     { /* 32-bit elf */
428       for (bufend = buf + dyninfo_sect_size;
429            buf < bufend;
430            buf += sizeof (Elf32_External_Dyn))
431         {
432           Elf32_External_Dyn *x_dynp = (Elf32_External_Dyn *) buf;
433           long dyn_tag;
434           CORE_ADDR dyn_ptr;
435
436           dyn_tag = bfd_h_get_32 (exec_bfd, (bfd_byte *) x_dynp->d_tag);
437           if (dyn_tag == DT_NULL)
438             break;
439           else if (dyn_tag == DT_DEBUG)
440             {
441               dyn_ptr = bfd_h_get_32 (exec_bfd, 
442                                       (bfd_byte *) x_dynp->d_un.d_ptr);
443               return dyn_ptr;
444             }
445           else if (dyn_tag == DT_MIPS_RLD_MAP)
446             {
447               char *pbuf;
448
449               pbuf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT);
450               /* DT_MIPS_RLD_MAP contains a pointer to the address
451                  of the dynamic link structure.  */
452               dyn_ptr = bfd_h_get_32 (exec_bfd, 
453                                       (bfd_byte *) x_dynp->d_un.d_ptr);
454               if (target_read_memory (dyn_ptr, pbuf, sizeof (pbuf)))
455                 return 0;
456               return extract_unsigned_integer (pbuf, sizeof (pbuf));
457             }
458         }
459     }
460   else /* 64-bit elf */
461     {
462       for (bufend = buf + dyninfo_sect_size;
463            buf < bufend;
464            buf += sizeof (Elf64_External_Dyn))
465         {
466           Elf64_External_Dyn *x_dynp = (Elf64_External_Dyn *) buf;
467           long dyn_tag;
468           CORE_ADDR dyn_ptr;
469
470           dyn_tag = bfd_h_get_64 (exec_bfd, (bfd_byte *) x_dynp->d_tag);
471           if (dyn_tag == DT_NULL)
472             break;
473           else if (dyn_tag == DT_DEBUG)
474             {
475               dyn_ptr = bfd_h_get_64 (exec_bfd, 
476                                       (bfd_byte *) x_dynp->d_un.d_ptr);
477               return dyn_ptr;
478             }
479         }
480     }
481
482   /* DT_DEBUG entry not found.  */
483   return 0;
484 }
485
486 /*
487
488    LOCAL FUNCTION
489
490    locate_base -- locate the base address of dynamic linker structs
491
492    SYNOPSIS
493
494    CORE_ADDR locate_base (void)
495
496    DESCRIPTION
497
498    For both the SunOS and SVR4 shared library implementations, if the
499    inferior executable has been linked dynamically, there is a single
500    address somewhere in the inferior's data space which is the key to
501    locating all of the dynamic linker's runtime structures.  This
502    address is the value of the debug base symbol.  The job of this
503    function is to find and return that address, or to return 0 if there
504    is no such address (the executable is statically linked for example).
505
506    For SunOS, the job is almost trivial, since the dynamic linker and
507    all of it's structures are statically linked to the executable at
508    link time.  Thus the symbol for the address we are looking for has
509    already been added to the minimal symbol table for the executable's
510    objfile at the time the symbol file's symbols were read, and all we
511    have to do is look it up there.  Note that we explicitly do NOT want
512    to find the copies in the shared library.
513
514    The SVR4 version is a bit more complicated because the address
515    is contained somewhere in the dynamic info section.  We have to go
516    to a lot more work to discover the address of the debug base symbol.
517    Because of this complexity, we cache the value we find and return that
518    value on subsequent invocations.  Note there is no copy in the
519    executable symbol tables.
520
521  */
522
523 static CORE_ADDR
524 locate_base (void)
525 {
526   /* Check to see if we have a currently valid address, and if so, avoid
527      doing all this work again and just return the cached address.  If
528      we have no cached address, try to locate it in the dynamic info
529      section for ELF executables.  */
530
531   if (debug_base == 0)
532     {
533       if (exec_bfd != NULL
534           && bfd_get_flavour (exec_bfd) == bfd_target_elf_flavour)
535         debug_base = elf_locate_base ();
536 #ifdef HANDLE_SVR4_EXEC_EMULATORS
537       /* Try it the hard way for emulated executables.  */
538       else if (!ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
539         proc_iterate_over_mappings (look_for_base);
540 #endif
541     }
542   return (debug_base);
543 }
544
545 /*
546
547    LOCAL FUNCTION
548
549    first_link_map_member -- locate first member in dynamic linker's map
550
551    SYNOPSIS
552
553    static CORE_ADDR first_link_map_member (void)
554
555    DESCRIPTION
556
557    Find the first element in the inferior's dynamic link map, and
558    return its address in the inferior.  This function doesn't copy the
559    link map entry itself into our address space; current_sos actually
560    does the reading.  */
561
562 static CORE_ADDR
563 first_link_map_member (void)
564 {
565   CORE_ADDR lm = 0;
566   struct link_map_offsets *lmo = SVR4_FETCH_LINK_MAP_OFFSETS ();
567   char *r_map_buf = xmalloc (lmo->r_map_size);
568   struct cleanup *cleanups = make_cleanup (xfree, r_map_buf);
569
570   read_memory (debug_base + lmo->r_map_offset, r_map_buf, lmo->r_map_size);
571
572   lm = extract_address (r_map_buf, lmo->r_map_size);
573
574   /* FIXME:  Perhaps we should validate the info somehow, perhaps by
575      checking r_version for a known version number, or r_state for
576      RT_CONSISTENT. */
577
578   do_cleanups (cleanups);
579
580   return (lm);
581 }
582
583 /*
584
585   LOCAL FUNCTION
586
587   open_symbol_file_object
588
589   SYNOPSIS
590
591   void open_symbol_file_object (void *from_tty)
592
593   DESCRIPTION
594
595   If no open symbol file, attempt to locate and open the main symbol
596   file.  On SVR4 systems, this is the first link map entry.  If its
597   name is here, we can open it.  Useful when attaching to a process
598   without first loading its symbol file.
599
600   If FROM_TTYP dereferences to a non-zero integer, allow messages to
601   be printed.  This parameter is a pointer rather than an int because
602   open_symbol_file_object() is called via catch_errors() and
603   catch_errors() requires a pointer argument. */
604
605 static int
606 open_symbol_file_object (void *from_ttyp)
607 {
608   CORE_ADDR lm, l_name;
609   char *filename;
610   int errcode;
611   int from_tty = *(int *)from_ttyp;
612   struct link_map_offsets *lmo = SVR4_FETCH_LINK_MAP_OFFSETS ();
613   char *l_name_buf = xmalloc (lmo->l_name_size);
614   struct cleanup *cleanups = make_cleanup (xfree, l_name_buf);
615
616   if (symfile_objfile)
617     if (!query ("Attempt to reload symbols from process? "))
618       return 0;
619
620   if ((debug_base = locate_base ()) == 0)
621     return 0;   /* failed somehow... */
622
623   /* First link map member should be the executable.  */
624   if ((lm = first_link_map_member ()) == 0)
625     return 0;   /* failed somehow... */
626
627   /* Read address of name from target memory to GDB.  */
628   read_memory (lm + lmo->l_name_offset, l_name_buf, lmo->l_name_size);
629
630   /* Convert the address to host format.  */
631   l_name = extract_address (l_name_buf, lmo->l_name_size);
632
633   /* Free l_name_buf.  */
634   do_cleanups (cleanups);
635
636   if (l_name == 0)
637     return 0;           /* No filename.  */
638
639   /* Now fetch the filename from target memory.  */
640   target_read_string (l_name, &filename, SO_NAME_MAX_PATH_SIZE - 1, &errcode);
641
642   if (errcode)
643     {
644       warning ("failed to read exec filename from attached file: %s",
645                safe_strerror (errcode));
646       return 0;
647     }
648
649   make_cleanup (xfree, filename);
650   /* Have a pathname: read the symbol file.  */
651   symbol_file_add_main (filename, from_tty);
652
653   return 1;
654 }
655
656 /* LOCAL FUNCTION
657
658    current_sos -- build a list of currently loaded shared objects
659
660    SYNOPSIS
661
662    struct so_list *current_sos ()
663
664    DESCRIPTION
665
666    Build a list of `struct so_list' objects describing the shared
667    objects currently loaded in the inferior.  This list does not
668    include an entry for the main executable file.
669
670    Note that we only gather information directly available from the
671    inferior --- we don't examine any of the shared library files
672    themselves.  The declaration of `struct so_list' says which fields
673    we provide values for.  */
674
675 static struct so_list *
676 svr4_current_sos (void)
677 {
678   CORE_ADDR lm;
679   struct so_list *head = 0;
680   struct so_list **link_ptr = &head;
681
682   /* Make sure we've looked up the inferior's dynamic linker's base
683      structure.  */
684   if (! debug_base)
685     {
686       debug_base = locate_base ();
687
688       /* If we can't find the dynamic linker's base structure, this
689          must not be a dynamically linked executable.  Hmm.  */
690       if (! debug_base)
691         return 0;
692     }
693
694   /* Walk the inferior's link map list, and build our list of
695      `struct so_list' nodes.  */
696   lm = first_link_map_member ();  
697   while (lm)
698     {
699       struct link_map_offsets *lmo = SVR4_FETCH_LINK_MAP_OFFSETS ();
700       struct so_list *new
701         = (struct so_list *) xmalloc (sizeof (struct so_list));
702       struct cleanup *old_chain = make_cleanup (xfree, new);
703
704       memset (new, 0, sizeof (*new));
705
706       new->lm_info = xmalloc (sizeof (struct lm_info));
707       make_cleanup (xfree, new->lm_info);
708
709       new->lm_info->lm = xmalloc (lmo->link_map_size);
710       make_cleanup (xfree, new->lm_info->lm);
711       memset (new->lm_info->lm, 0, lmo->link_map_size);
712
713       read_memory (lm, new->lm_info->lm, lmo->link_map_size);
714
715       lm = LM_NEXT (new);
716
717       /* For SVR4 versions, the first entry in the link map is for the
718          inferior executable, so we must ignore it.  For some versions of
719          SVR4, it has no name.  For others (Solaris 2.3 for example), it
720          does have a name, so we can no longer use a missing name to
721          decide when to ignore it. */
722       if (IGNORE_FIRST_LINK_MAP_ENTRY (new))
723         free_so (new);
724       else
725         {
726           int errcode;
727           char *buffer;
728
729           /* Extract this shared object's name.  */
730           target_read_string (LM_NAME (new), &buffer,
731                               SO_NAME_MAX_PATH_SIZE - 1, &errcode);
732           if (errcode != 0)
733             {
734               warning ("current_sos: Can't read pathname for load map: %s\n",
735                        safe_strerror (errcode));
736             }
737           else
738             {
739               strncpy (new->so_name, buffer, SO_NAME_MAX_PATH_SIZE - 1);
740               new->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
741               xfree (buffer);
742               strcpy (new->so_original_name, new->so_name);
743             }
744
745           /* If this entry has no name, or its name matches the name
746              for the main executable, don't include it in the list.  */
747           if (! new->so_name[0]
748               || match_main (new->so_name))
749             free_so (new);
750           else
751             {
752               new->next = 0;
753               *link_ptr = new;
754               link_ptr = &new->next;
755             }
756         }
757
758       discard_cleanups (old_chain);
759     }
760
761   return head;
762 }
763
764
765 /* On some systems, the only way to recognize the link map entry for
766    the main executable file is by looking at its name.  Return
767    non-zero iff SONAME matches one of the known main executable names.  */
768
769 static int
770 match_main (char *soname)
771 {
772   char **mainp;
773
774   for (mainp = main_name_list; *mainp != NULL; mainp++)
775     {
776       if (strcmp (soname, *mainp) == 0)
777         return (1);
778     }
779
780   return (0);
781 }
782
783 /* Return 1 if PC lies in the dynamic symbol resolution code of the
784    SVR4 run time loader.  */
785 static CORE_ADDR interp_text_sect_low;
786 static CORE_ADDR interp_text_sect_high;
787 static CORE_ADDR interp_plt_sect_low;
788 static CORE_ADDR interp_plt_sect_high;
789
790 static int
791 svr4_in_dynsym_resolve_code (CORE_ADDR pc)
792 {
793   return ((pc >= interp_text_sect_low && pc < interp_text_sect_high)
794           || (pc >= interp_plt_sect_low && pc < interp_plt_sect_high)
795           || in_plt_section (pc, NULL));
796 }
797
798
799 /*
800
801    LOCAL FUNCTION
802
803    enable_break -- arrange for dynamic linker to hit breakpoint
804
805    SYNOPSIS
806
807    int enable_break (void)
808
809    DESCRIPTION
810
811    Both the SunOS and the SVR4 dynamic linkers have, as part of their
812    debugger interface, support for arranging for the inferior to hit
813    a breakpoint after mapping in the shared libraries.  This function
814    enables that breakpoint.
815
816    For SunOS, there is a special flag location (in_debugger) which we
817    set to 1.  When the dynamic linker sees this flag set, it will set
818    a breakpoint at a location known only to itself, after saving the
819    original contents of that place and the breakpoint address itself,
820    in it's own internal structures.  When we resume the inferior, it
821    will eventually take a SIGTRAP when it runs into the breakpoint.
822    We handle this (in a different place) by restoring the contents of
823    the breakpointed location (which is only known after it stops),
824    chasing around to locate the shared libraries that have been
825    loaded, then resuming.
826
827    For SVR4, the debugger interface structure contains a member (r_brk)
828    which is statically initialized at the time the shared library is
829    built, to the offset of a function (_r_debug_state) which is guaran-
830    teed to be called once before mapping in a library, and again when
831    the mapping is complete.  At the time we are examining this member,
832    it contains only the unrelocated offset of the function, so we have
833    to do our own relocation.  Later, when the dynamic linker actually
834    runs, it relocates r_brk to be the actual address of _r_debug_state().
835
836    The debugger interface structure also contains an enumeration which
837    is set to either RT_ADD or RT_DELETE prior to changing the mapping,
838    depending upon whether or not the library is being mapped or unmapped,
839    and then set to RT_CONSISTENT after the library is mapped/unmapped.
840  */
841
842 static int
843 enable_break (void)
844 {
845   int success = 0;
846
847 #ifdef BKPT_AT_SYMBOL
848
849   struct minimal_symbol *msymbol;
850   char **bkpt_namep;
851   asection *interp_sect;
852
853   /* First, remove all the solib event breakpoints.  Their addresses
854      may have changed since the last time we ran the program.  */
855   remove_solib_event_breakpoints ();
856
857   interp_text_sect_low = interp_text_sect_high = 0;
858   interp_plt_sect_low = interp_plt_sect_high = 0;
859
860   /* Find the .interp section; if not found, warn the user and drop
861      into the old breakpoint at symbol code.  */
862   interp_sect = bfd_get_section_by_name (exec_bfd, ".interp");
863   if (interp_sect)
864     {
865       unsigned int interp_sect_size;
866       char *buf;
867       CORE_ADDR load_addr = 0;
868       int load_addr_found = 0;
869       struct so_list *inferior_sos;
870       bfd *tmp_bfd = NULL;
871       int tmp_fd = -1;
872       char *tmp_pathname = NULL;
873       CORE_ADDR sym_addr = 0;
874
875       /* Read the contents of the .interp section into a local buffer;
876          the contents specify the dynamic linker this program uses.  */
877       interp_sect_size = bfd_section_size (exec_bfd, interp_sect);
878       buf = alloca (interp_sect_size);
879       bfd_get_section_contents (exec_bfd, interp_sect,
880                                 buf, 0, interp_sect_size);
881
882       /* Now we need to figure out where the dynamic linker was
883          loaded so that we can load its symbols and place a breakpoint
884          in the dynamic linker itself.
885
886          This address is stored on the stack.  However, I've been unable
887          to find any magic formula to find it for Solaris (appears to
888          be trivial on GNU/Linux).  Therefore, we have to try an alternate
889          mechanism to find the dynamic linker's base address.  */
890
891       tmp_fd  = solib_open (buf, &tmp_pathname);
892       if (tmp_fd >= 0)
893         tmp_bfd = bfd_fdopenr (tmp_pathname, gnutarget, tmp_fd);
894
895       if (tmp_bfd == NULL)
896         goto bkpt_at_symbol;
897
898       /* Make sure the dynamic linker's really a useful object.  */
899       if (!bfd_check_format (tmp_bfd, bfd_object))
900         {
901           warning ("Unable to grok dynamic linker %s as an object file", buf);
902           bfd_close (tmp_bfd);
903           goto bkpt_at_symbol;
904         }
905
906       /* If the entry in _DYNAMIC for the dynamic linker has already
907          been filled in, we can read its base address from there. */
908       inferior_sos = svr4_current_sos ();
909       if (inferior_sos)
910         {
911           /* Connected to a running target.  Update our shared library table. */
912           solib_add (NULL, 0, NULL, auto_solib_add);
913         }
914       while (inferior_sos)
915         {
916           if (strcmp (buf, inferior_sos->so_original_name) == 0)
917             {
918               load_addr_found = 1;
919               load_addr = LM_ADDR (inferior_sos);
920               break;
921             }
922           inferior_sos = inferior_sos->next;
923         }
924
925       /* Otherwise we find the dynamic linker's base address by examining
926          the current pc (which should point at the entry point for the
927          dynamic linker) and subtracting the offset of the entry point.  */
928       if (!load_addr_found)
929         load_addr = read_pc () - tmp_bfd->start_address;
930
931       /* Record the relocated start and end address of the dynamic linker
932          text and plt section for svr4_in_dynsym_resolve_code.  */
933       interp_sect = bfd_get_section_by_name (tmp_bfd, ".text");
934       if (interp_sect)
935         {
936           interp_text_sect_low =
937             bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
938           interp_text_sect_high =
939             interp_text_sect_low + bfd_section_size (tmp_bfd, interp_sect);
940         }
941       interp_sect = bfd_get_section_by_name (tmp_bfd, ".plt");
942       if (interp_sect)
943         {
944           interp_plt_sect_low =
945             bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
946           interp_plt_sect_high =
947             interp_plt_sect_low + bfd_section_size (tmp_bfd, interp_sect);
948         }
949
950       /* Now try to set a breakpoint in the dynamic linker.  */
951       for (bkpt_namep = solib_break_names; *bkpt_namep != NULL; bkpt_namep++)
952         {
953           sym_addr = bfd_lookup_symbol (tmp_bfd, *bkpt_namep);
954           if (sym_addr != 0)
955             break;
956         }
957
958       /* We're done with the temporary bfd.  */
959       bfd_close (tmp_bfd);
960
961       if (sym_addr != 0)
962         {
963           create_solib_event_breakpoint (load_addr + sym_addr);
964           return 1;
965         }
966
967       /* For whatever reason we couldn't set a breakpoint in the dynamic
968          linker.  Warn and drop into the old code.  */
969     bkpt_at_symbol:
970       warning ("Unable to find dynamic linker breakpoint function.\nGDB will be unable to debug shared library initializers\nand track explicitly loaded dynamic code.");
971     }
972
973   /* Scan through the list of symbols, trying to look up the symbol and
974      set a breakpoint there.  Terminate loop when we/if we succeed. */
975
976   breakpoint_addr = 0;
977   for (bkpt_namep = bkpt_names; *bkpt_namep != NULL; bkpt_namep++)
978     {
979       msymbol = lookup_minimal_symbol (*bkpt_namep, NULL, symfile_objfile);
980       if ((msymbol != NULL) && (SYMBOL_VALUE_ADDRESS (msymbol) != 0))
981         {
982           create_solib_event_breakpoint (SYMBOL_VALUE_ADDRESS (msymbol));
983           return 1;
984         }
985     }
986
987   /* Nothing good happened.  */
988   success = 0;
989
990 #endif /* BKPT_AT_SYMBOL */
991
992   return (success);
993 }
994
995 /*
996
997    LOCAL FUNCTION
998
999    special_symbol_handling -- additional shared library symbol handling
1000
1001    SYNOPSIS
1002
1003    void special_symbol_handling ()
1004
1005    DESCRIPTION
1006
1007    Once the symbols from a shared object have been loaded in the usual
1008    way, we are called to do any system specific symbol handling that 
1009    is needed.
1010
1011    For SunOS4, this consisted of grunging around in the dynamic
1012    linkers structures to find symbol definitions for "common" symbols
1013    and adding them to the minimal symbol table for the runtime common
1014    objfile.
1015
1016    However, for SVR4, there's nothing to do.
1017
1018  */
1019
1020 static void
1021 svr4_special_symbol_handling (void)
1022 {
1023 }
1024
1025 /* Relocate the main executable.  This function should be called upon
1026    stopping the inferior process at the entry point to the program. 
1027    The entry point from BFD is compared to the PC and if they are
1028    different, the main executable is relocated by the proper amount. 
1029    
1030    As written it will only attempt to relocate executables which
1031    lack interpreter sections.  It seems likely that only dynamic
1032    linker executables will get relocated, though it should work
1033    properly for a position-independent static executable as well.  */
1034
1035 static void
1036 svr4_relocate_main_executable (void)
1037 {
1038   asection *interp_sect;
1039   CORE_ADDR pc = read_pc ();
1040
1041   /* Decide if the objfile needs to be relocated.  As indicated above,
1042      we will only be here when execution is stopped at the beginning
1043      of the program.  Relocation is necessary if the address at which
1044      we are presently stopped differs from the start address stored in
1045      the executable AND there's no interpreter section.  The condition
1046      regarding the interpreter section is very important because if
1047      there *is* an interpreter section, execution will begin there
1048      instead.  When there is an interpreter section, the start address
1049      is (presumably) used by the interpreter at some point to start
1050      execution of the program.
1051
1052      If there is an interpreter, it is normal for it to be set to an
1053      arbitrary address at the outset.  The job of finding it is
1054      handled in enable_break().
1055
1056      So, to summarize, relocations are necessary when there is no
1057      interpreter section and the start address obtained from the
1058      executable is different from the address at which GDB is
1059      currently stopped.
1060      
1061      [ The astute reader will note that we also test to make sure that
1062        the executable in question has the DYNAMIC flag set.  It is my
1063        opinion that this test is unnecessary (undesirable even).  It
1064        was added to avoid inadvertent relocation of an executable
1065        whose e_type member in the ELF header is not ET_DYN.  There may
1066        be a time in the future when it is desirable to do relocations
1067        on other types of files as well in which case this condition
1068        should either be removed or modified to accomodate the new file
1069        type.  (E.g, an ET_EXEC executable which has been built to be
1070        position-independent could safely be relocated by the OS if
1071        desired.  It is true that this violates the ABI, but the ABI
1072        has been known to be bent from time to time.)  - Kevin, Nov 2000. ]
1073      */
1074
1075   interp_sect = bfd_get_section_by_name (exec_bfd, ".interp");
1076   if (interp_sect == NULL 
1077       && (bfd_get_file_flags (exec_bfd) & DYNAMIC) != 0
1078       && bfd_get_start_address (exec_bfd) != pc)
1079     {
1080       struct cleanup *old_chain;
1081       struct section_offsets *new_offsets;
1082       int i, changed;
1083       CORE_ADDR displacement;
1084       
1085       /* It is necessary to relocate the objfile.  The amount to
1086          relocate by is simply the address at which we are stopped
1087          minus the starting address from the executable.
1088
1089          We relocate all of the sections by the same amount.  This
1090          behavior is mandated by recent editions of the System V ABI. 
1091          According to the System V Application Binary Interface,
1092          Edition 4.1, page 5-5:
1093
1094            ...  Though the system chooses virtual addresses for
1095            individual processes, it maintains the segments' relative
1096            positions.  Because position-independent code uses relative
1097            addressesing between segments, the difference between
1098            virtual addresses in memory must match the difference
1099            between virtual addresses in the file.  The difference
1100            between the virtual address of any segment in memory and
1101            the corresponding virtual address in the file is thus a
1102            single constant value for any one executable or shared
1103            object in a given process.  This difference is the base
1104            address.  One use of the base address is to relocate the
1105            memory image of the program during dynamic linking.
1106
1107          The same language also appears in Edition 4.0 of the System V
1108          ABI and is left unspecified in some of the earlier editions.  */
1109
1110       displacement = pc - bfd_get_start_address (exec_bfd);
1111       changed = 0;
1112
1113       new_offsets = xcalloc (symfile_objfile->num_sections,
1114                              sizeof (struct section_offsets));
1115       old_chain = make_cleanup (xfree, new_offsets);
1116
1117       for (i = 0; i < symfile_objfile->num_sections; i++)
1118         {
1119           if (displacement != ANOFFSET (symfile_objfile->section_offsets, i))
1120             changed = 1;
1121           new_offsets->offsets[i] = displacement;
1122         }
1123
1124       if (changed)
1125         objfile_relocate (symfile_objfile, new_offsets);
1126
1127       do_cleanups (old_chain);
1128     }
1129 }
1130
1131 /*
1132
1133    GLOBAL FUNCTION
1134
1135    svr4_solib_create_inferior_hook -- shared library startup support
1136
1137    SYNOPSIS
1138
1139    void svr4_solib_create_inferior_hook()
1140
1141    DESCRIPTION
1142
1143    When gdb starts up the inferior, it nurses it along (through the
1144    shell) until it is ready to execute it's first instruction.  At this
1145    point, this function gets called via expansion of the macro
1146    SOLIB_CREATE_INFERIOR_HOOK.
1147
1148    For SunOS executables, this first instruction is typically the
1149    one at "_start", or a similar text label, regardless of whether
1150    the executable is statically or dynamically linked.  The runtime
1151    startup code takes care of dynamically linking in any shared
1152    libraries, once gdb allows the inferior to continue.
1153
1154    For SVR4 executables, this first instruction is either the first
1155    instruction in the dynamic linker (for dynamically linked
1156    executables) or the instruction at "start" for statically linked
1157    executables.  For dynamically linked executables, the system
1158    first exec's /lib/libc.so.N, which contains the dynamic linker,
1159    and starts it running.  The dynamic linker maps in any needed
1160    shared libraries, maps in the actual user executable, and then
1161    jumps to "start" in the user executable.
1162
1163    For both SunOS shared libraries, and SVR4 shared libraries, we
1164    can arrange to cooperate with the dynamic linker to discover the
1165    names of shared libraries that are dynamically linked, and the
1166    base addresses to which they are linked.
1167
1168    This function is responsible for discovering those names and
1169    addresses, and saving sufficient information about them to allow
1170    their symbols to be read at a later time.
1171
1172    FIXME
1173
1174    Between enable_break() and disable_break(), this code does not
1175    properly handle hitting breakpoints which the user might have
1176    set in the startup code or in the dynamic linker itself.  Proper
1177    handling will probably have to wait until the implementation is
1178    changed to use the "breakpoint handler function" method.
1179
1180    Also, what if child has exit()ed?  Must exit loop somehow.
1181  */
1182
1183 static void
1184 svr4_solib_create_inferior_hook (void)
1185 {
1186   /* Relocate the main executable if necessary.  */
1187   svr4_relocate_main_executable ();
1188
1189   if (!enable_break ())
1190     {
1191       warning ("shared library handler failed to enable breakpoint");
1192       return;
1193     }
1194
1195 #if defined(_SCO_DS)
1196   /* SCO needs the loop below, other systems should be using the
1197      special shared library breakpoints and the shared library breakpoint
1198      service routine.
1199
1200      Now run the target.  It will eventually hit the breakpoint, at
1201      which point all of the libraries will have been mapped in and we
1202      can go groveling around in the dynamic linker structures to find
1203      out what we need to know about them. */
1204
1205   clear_proceed_status ();
1206   stop_soon_quietly = 1;
1207   stop_signal = TARGET_SIGNAL_0;
1208   do
1209     {
1210       target_resume (pid_to_ptid (-1), 0, stop_signal);
1211       wait_for_inferior ();
1212     }
1213   while (stop_signal != TARGET_SIGNAL_TRAP);
1214   stop_soon_quietly = 0;
1215 #endif /* defined(_SCO_DS) */
1216 }
1217
1218 static void
1219 svr4_clear_solib (void)
1220 {
1221   debug_base = 0;
1222 }
1223
1224 static void
1225 svr4_free_so (struct so_list *so)
1226 {
1227   xfree (so->lm_info->lm);
1228   xfree (so->lm_info);
1229 }
1230
1231
1232 /* Clear any bits of ADDR that wouldn't fit in a target-format
1233    data pointer.  "Data pointer" here refers to whatever sort of
1234    address the dynamic linker uses to manage its sections.  At the
1235    moment, we don't support shared libraries on any processors where
1236    code and data pointers are different sizes.
1237
1238    This isn't really the right solution.  What we really need here is
1239    a way to do arithmetic on CORE_ADDR values that respects the
1240    natural pointer/address correspondence.  (For example, on the MIPS,
1241    converting a 32-bit pointer to a 64-bit CORE_ADDR requires you to
1242    sign-extend the value.  There, simply truncating the bits above
1243    TARGET_PTR_BIT, as we do below, is no good.)  This should probably
1244    be a new gdbarch method or something.  */
1245 static CORE_ADDR
1246 svr4_truncate_ptr (CORE_ADDR addr)
1247 {
1248   if (TARGET_PTR_BIT == sizeof (CORE_ADDR) * 8)
1249     /* We don't need to truncate anything, and the bit twiddling below
1250        will fail due to overflow problems.  */
1251     return addr;
1252   else
1253     return addr & (((CORE_ADDR) 1 << TARGET_PTR_BIT) - 1);
1254 }
1255
1256
1257 static void
1258 svr4_relocate_section_addresses (struct so_list *so,
1259                                  struct section_table *sec)
1260 {
1261   sec->addr    = svr4_truncate_ptr (sec->addr    + LM_ADDR (so));
1262   sec->endaddr = svr4_truncate_ptr (sec->endaddr + LM_ADDR (so));
1263 }
1264
1265
1266 /* Fetch a link_map_offsets structure for native targets using struct
1267    definitions from link.h.  See solib-legacy.c for the function
1268    which does the actual work.
1269    
1270    Note: For non-native targets (i.e. cross-debugging situations),
1271    a target specific fetch_link_map_offsets() function should be
1272    defined and registered via set_solib_svr4_fetch_link_map_offsets().  */
1273
1274 static struct link_map_offsets *
1275 legacy_fetch_link_map_offsets (void)
1276 {
1277   if (legacy_svr4_fetch_link_map_offsets_hook)
1278     return legacy_svr4_fetch_link_map_offsets_hook ();
1279   else
1280     {
1281       internal_error (__FILE__, __LINE__,
1282                       "legacy_fetch_link_map_offsets called without legacy "
1283                       "link_map support enabled.");
1284       return 0;
1285     }
1286 }
1287
1288 /* Fetch a link_map_offsets structure using the method registered in the
1289    architecture vector.  */
1290
1291 static struct link_map_offsets *
1292 svr4_fetch_link_map_offsets (void)
1293 {
1294   struct link_map_offsets *(*flmo)(void) =
1295     gdbarch_data (fetch_link_map_offsets_gdbarch_data);
1296
1297   if (flmo == NULL)
1298     {
1299       internal_error (__FILE__, __LINE__, 
1300                       "svr4_fetch_link_map_offsets: fetch_link_map_offsets "
1301                       "method not defined for this architecture.");
1302       return 0;
1303     }
1304   else
1305     return (flmo ());
1306 }
1307
1308 /* set_solib_svr4_fetch_link_map_offsets() is intended to be called by
1309    a <arch>_gdbarch_init() function.  It is used to establish an
1310    architecture specific link_map_offsets fetcher for the architecture
1311    being defined.  */
1312
1313 void
1314 set_solib_svr4_fetch_link_map_offsets (struct gdbarch *gdbarch,
1315                                        struct link_map_offsets *(*flmo) (void))
1316 {
1317   set_gdbarch_data (gdbarch, fetch_link_map_offsets_gdbarch_data, flmo);
1318 }
1319
1320 /* Initialize the architecture specific link_map_offsets fetcher. 
1321    This is called after <arch>_gdbarch_init() has set up its struct
1322    gdbarch for the new architecture, so care must be taken to use the
1323    value set by set_solib_svr4_fetch_link_map_offsets(), above.  We
1324    do, however, attempt to provide a reasonable alternative (for
1325    native targets anyway) if the <arch>_gdbarch_init() fails to call
1326    set_solib_svr4_fetch_link_map_offsets().  */
1327
1328 static void *
1329 init_fetch_link_map_offsets (struct gdbarch *gdbarch)
1330 {
1331   struct link_map_offsets *(*flmo) =
1332     gdbarch_data (fetch_link_map_offsets_gdbarch_data);
1333
1334   if (flmo == NULL)
1335     return legacy_fetch_link_map_offsets;
1336   else
1337     return flmo;
1338 }
1339
1340 static struct target_so_ops svr4_so_ops;
1341
1342 void
1343 _initialize_svr4_solib (void)
1344 {
1345   fetch_link_map_offsets_gdbarch_data =
1346     register_gdbarch_data (init_fetch_link_map_offsets, 0);
1347
1348   svr4_so_ops.relocate_section_addresses = svr4_relocate_section_addresses;
1349   svr4_so_ops.free_so = svr4_free_so;
1350   svr4_so_ops.clear_solib = svr4_clear_solib;
1351   svr4_so_ops.solib_create_inferior_hook = svr4_solib_create_inferior_hook;
1352   svr4_so_ops.special_symbol_handling = svr4_special_symbol_handling;
1353   svr4_so_ops.current_sos = svr4_current_sos;
1354   svr4_so_ops.open_symbol_file_object = open_symbol_file_object;
1355   svr4_so_ops.in_dynsym_resolve_code = svr4_in_dynsym_resolve_code;
1356
1357   /* FIXME: Don't do this here.  *_gdbarch_init() should set so_ops. */
1358   current_target_so_ops = &svr4_so_ops;
1359 }
This page took 0.10236 seconds and 4 git commands to generate.