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