1 /* Handle SunOS and SVR4 shared libraries for GDB, the GNU Debugger.
2 Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
23 #include <sys/types.h>
27 #include <sys/param.h>
30 #ifndef SVR4_SHARED_LIBS
31 /* SunOS shared libs need the nlist structure. */
46 #define MAX_PATH_SIZE 256 /* FIXME: Should be dynamic */
48 /* On SVR4 systems, for the initial implementation, use main() as the
49 "startup mapping complete" breakpoint address. The models for SunOS
50 and SVR4 dynamic linking debugger support are different in that SunOS
51 hits one breakpoint when all mapping is complete while using the SVR4
52 debugger support takes two breakpoint hits for each file mapped, and
53 there is no way to know when the "last" one is hit. Both these
54 mechanisms should be tied to a "breakpoint service routine" that
55 gets automatically executed whenever one of the breakpoints indicating
56 a change in mapping is hit. This is a future enhancement. (FIXME) */
58 #define BKPT_AT_MAIN 1
60 /* local data declarations */
62 #ifndef SVR4_SHARED_LIBS
64 #define DEBUG_BASE "_DYNAMIC"
65 #define LM_ADDR(so) ((so) -> lm.lm_addr)
66 #define LM_NEXT(so) ((so) -> lm.lm_next)
67 #define LM_NAME(so) ((so) -> lm.lm_name)
68 static struct link_dynamic dynamic_copy;
69 static struct link_dynamic_2 ld_2_copy;
70 static struct ld_debug debug_copy;
71 static CORE_ADDR debug_addr;
72 static CORE_ADDR flag_addr;
74 #else /* SVR4_SHARED_LIBS */
76 #define DEBUG_BASE "_r_debug"
77 #define LM_ADDR(so) ((so) -> lm.l_addr)
78 #define LM_NEXT(so) ((so) -> lm.l_next)
79 #define LM_NAME(so) ((so) -> lm.l_name)
80 static struct r_debug debug_copy;
81 char shadow_contents[BREAKPOINT_MAX]; /* Stash old bkpt addr contents */
83 #endif /* !SVR4_SHARED_LIBS */
86 struct so_list *next; /* next structure in linked list */
87 struct link_map lm; /* copy of link map from inferior */
88 struct link_map *lmaddr; /* addr in inferior lm was read from */
89 CORE_ADDR lmend; /* upper addr bound of mapped object */
90 char so_name[MAX_PATH_SIZE]; /* shared object lib name (FIXME) */
91 char symbols_loaded; /* flag: symbols read in yet? */
92 char from_tty; /* flag: print msgs? */
93 bfd *so_bfd; /* bfd for so_name */
94 struct objfile *objfile; /* objfile for loaded lib */
95 struct section_table *sections;
96 struct section_table *sections_end;
99 static struct so_list *so_list_head; /* List of known shared objects */
100 static CORE_ADDR debug_base; /* Base of dynamic linker structures */
101 static CORE_ADDR breakpoint_addr; /* Address where end bkpt is set */
103 /* Local function prototypes */
106 special_symbol_handling PARAMS ((struct so_list *));
109 sharedlibrary_command PARAMS ((char *, int));
112 enable_break PARAMS ((void));
115 disable_break PARAMS ((void));
118 info_sharedlibrary_command PARAMS ((void));
121 symbol_add_stub PARAMS ((char *));
123 static struct so_list *
124 find_solib PARAMS ((struct so_list *));
126 static struct link_map *
127 first_link_map_member PARAMS ((void));
130 locate_base PARAMS ((void));
133 solib_map_sections PARAMS ((struct so_list *));
135 #ifdef SVR4_SHARED_LIBS
138 look_for_base PARAMS ((int, CORE_ADDR));
141 bfd_lookup_symbol PARAMS ((bfd *, char *));
146 solib_add_common_symbols PARAMS ((struct rtc_symb *, struct objfile *));
154 solib_map_sections -- open bfd and build sections for shared lib
158 static void solib_map_sections (struct so_list *so)
162 Given a pointer to one of the shared objects in our list
163 of mapped objects, use the recorded name to open a bfd
164 descriptor for the object, build a section table, and then
165 relocate all the section addresses by the base address at
166 which the shared object was mapped.
170 In most (all?) cases the shared object file name recorded in the
171 dynamic linkage tables will be a fully qualified pathname. For
172 cases where it isn't, do we really mimic the systems search
173 mechanism correctly in the below code (particularly the tilde
178 solib_map_sections (so)
182 char *scratch_pathname;
184 struct section_table *p;
186 filename = tilde_expand (so -> so_name);
187 make_cleanup (free, filename);
189 scratch_chan = openp (getenv ("PATH"), 1, filename, O_RDONLY, 0,
191 if (scratch_chan < 0)
193 scratch_chan = openp (getenv ("LD_LIBRARY_PATH"), 1, filename,
194 O_RDONLY, 0, &scratch_pathname);
196 if (scratch_chan < 0)
198 perror_with_name (filename);
201 so -> so_bfd = bfd_fdopenr (scratch_pathname, NULL, scratch_chan);
204 error ("Could not open `%s' as an executable file: %s",
205 scratch_pathname, bfd_errmsg (bfd_error));
207 if (!bfd_check_format (so -> so_bfd, bfd_object))
209 error ("\"%s\": not in executable format: %s.",
210 scratch_pathname, bfd_errmsg (bfd_error));
212 if (build_section_table (so -> so_bfd, &so -> sections, &so -> sections_end))
214 error ("Can't find the file sections in `%s': %s",
215 exec_bfd -> filename, bfd_errmsg (bfd_error));
218 for (p = so -> sections; p < so -> sections_end; p++)
220 /* Relocate the section binding addresses as recorded in the shared
221 object's file by the base address to which the object was actually
223 p -> addr += (CORE_ADDR) LM_ADDR (so);
224 p -> endaddr += (CORE_ADDR) LM_ADDR (so);
225 so -> lmend = (CORE_ADDR) max (p -> endaddr, so -> lmend);
229 /* Read all dynamically loaded common symbol definitions from the inferior
230 and add them to the minimal symbol table for the shared library objfile. */
232 #ifndef SVR4_SHARED_LIBS
235 solib_add_common_symbols (rtc_symp, objfile)
236 struct rtc_symb *rtc_symp;
237 struct objfile *objfile;
239 struct rtc_symb inferior_rtc_symb;
240 struct nlist inferior_rtc_nlist;
245 init_minimal_symbol_collection ();
246 make_cleanup (discard_minimal_symbols, 0);
250 read_memory ((CORE_ADDR) rtc_symp,
251 (char *) &inferior_rtc_symb,
252 sizeof (inferior_rtc_symb));
253 read_memory ((CORE_ADDR) inferior_rtc_symb.rtc_sp,
254 (char *) &inferior_rtc_nlist,
255 sizeof(inferior_rtc_nlist));
256 if (inferior_rtc_nlist.n_type == N_COMM)
258 /* FIXME: The length of the symbol name is not available, but in the
259 current implementation the common symbol is allocated immediately
260 behind the name of the symbol. */
261 len = inferior_rtc_nlist.n_value - inferior_rtc_nlist.n_un.n_strx;
263 origname = name = xmalloc (len);
264 read_memory ((CORE_ADDR) inferior_rtc_nlist.n_un.n_name, name, len);
266 /* Don't enter the symbol twice if the target is re-run. */
268 #ifdef NAMES_HAVE_UNDERSCORE
274 /* FIXME: Do we really want to exclude symbols which happen
275 to match symbols for other locations in the inferior's
276 address space, even when they are in different linkage units? */
277 if (lookup_minimal_symbol (name, (struct objfile *) NULL) == NULL)
279 name = obsavestring (name, strlen (name),
280 &objfile -> symbol_obstack);
281 prim_record_minimal_symbol (name, inferior_rtc_nlist.n_value,
286 rtc_symp = inferior_rtc_symb.rtc_next;
289 /* Install any minimal symbols that have been collected as the current
290 minimal symbols for this objfile. */
292 install_minimal_symbols (objfile);
295 #endif /* SVR4_SHARED_LIBS */
297 #ifdef SVR4_SHARED_LIBS
303 bfd_lookup_symbol -- lookup the value for a specific symbol
307 CORE_ADDR bfd_lookup_symbol (bfd *abfd, char *symname)
311 An expensive way to lookup the value of a single symbol for
312 bfd's that are only temporary anyway. This is used by the
313 shared library support to find the address of the debugger
314 interface structures in the shared library.
316 Note that 0 is specifically allowed as an error return (no
319 FIXME: See if there is a less "expensive" way of doing this.
320 Also see if there is already another bfd or gdb function
321 that specifically does this, and if so, use it.
325 bfd_lookup_symbol (abfd, symname)
329 unsigned int storage_needed;
331 asymbol **symbol_table;
332 unsigned int number_of_symbols;
334 struct cleanup *back_to;
335 CORE_ADDR symaddr = 0;
337 storage_needed = get_symtab_upper_bound (abfd);
339 if (storage_needed > 0)
341 symbol_table = (asymbol **) xmalloc (storage_needed);
342 back_to = make_cleanup (free, (PTR)symbol_table);
343 number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
345 for (i = 0; i < number_of_symbols; i++)
347 sym = *symbol_table++;
348 if (strcmp (sym -> name, symname) == 0)
350 symaddr = sym -> value;
354 do_cleanups (back_to);
363 look_for_base -- examine file for each mapped address segment
367 static int look_for_base (int fd, CORE_ADDR baseaddr)
371 This function is passed to proc_iterate_over_mappings, which
372 causes it to get called once for each mapped address space, with
373 an open file descriptor for the file mapped to that space, and the
374 base address of that mapped space.
376 Our job is to find the symbol DEBUG_BASE in the file that this
377 fd is open on, if it exists, and if so, initialize the dynamic
378 linker structure base address debug_base.
380 Note that this is a computationally expensive proposition, since
381 we basically have to open a bfd on every call, so we specifically
382 avoid opening the exec file.
386 look_for_base (fd, baseaddr)
393 /* If the fd is -1, then there is no file that corresponds to this
394 mapped memory segment, so skip it. Also, if the fd corresponds
395 to the exec file, skip it as well. */
397 if ((fd == -1) || fdmatch (fileno ((FILE *)(exec_bfd -> iostream)), fd))
402 /* Try to open whatever random file this fd corresponds to. Note that
403 we have no way currently to find the filename. Don't gripe about
404 any problems we might have, just fail. */
406 if ((interp_bfd = bfd_fdopenr ("unnamed", NULL, fd)) == NULL)
410 if (!bfd_check_format (interp_bfd, bfd_object))
412 bfd_close (interp_bfd);
416 /* Now try to find our DEBUG_BASE symbol in this file, which we at
417 least know to be a valid ELF executable or shared library. */
419 if ((address = bfd_lookup_symbol (interp_bfd, DEBUG_BASE)) == 0)
421 bfd_close (interp_bfd);
425 /* Eureka! We found the symbol. But now we may need to relocate it
426 by the base address. If the symbol's value is less than the base
427 address of the shared library, then it hasn't yet been relocated
428 by the dynamic linker, and we have to do it ourself. FIXME: Note
429 that we make the assumption that the first segment that corresponds
430 to the shared library has the base address to which the library
433 if (address < baseaddr)
437 debug_base = address;
438 bfd_close (interp_bfd);
448 locate_base -- locate the base address of dynamic linker structs
452 CORE_ADDR locate_base (void)
456 For both the SunOS and SVR4 shared library implementations, if the
457 inferior executable has been linked dynamically, there is a single
458 address somewhere in the inferior's data space which is the key to
459 locating all of the dynamic linker's runtime structures. This
460 address is the value of the symbol defined by the macro DEBUG_BASE.
461 The job of this function is to find and return that address, or to
462 return 0 if there is no such address (the executable is statically
465 For SunOS, the job is almost trivial, since the dynamic linker and
466 all of it's structures are statically linked to the executable at
467 link time. Thus the symbol for the address we are looking for has
468 already been added to the minimal symbol table for the executable's
469 objfile at the time the symbol file's symbols were read, and all we
470 have to do is look it up there. Note that we explicitly do NOT want
471 to find the copies in the shared library.
473 The SVR4 version is much more complicated because the dynamic linker
474 and it's structures are located in the shared C library, which gets
475 run as the executable's "interpreter" by the kernel. We have to go
476 to a lot more work to discover the address of DEBUG_BASE. Because
477 of this complexity, we cache the value we find and return that value
478 on subsequent invocations. Note there is no copy in the executable
481 Note that we can assume nothing about the process state at the time
482 we need to find this address. We may be stopped on the first instruc-
483 tion of the interpreter (C shared library), the first instruction of
484 the executable itself, or somewhere else entirely (if we attached
485 to the process for example).
493 #ifndef SVR4_SHARED_LIBS
495 struct minimal_symbol *msymbol;
496 CORE_ADDR address = 0;
498 /* For SunOS, we want to limit the search for DEBUG_BASE to the executable
499 being debugged, since there is a duplicate named symbol in the shared
500 library. We don't want the shared library versions. */
502 msymbol = lookup_minimal_symbol (DEBUG_BASE, symfile_objfile);
503 if ((msymbol != NULL) && (msymbol -> address != 0))
505 address = msymbol -> address;
509 #else /* SVR4_SHARED_LIBS */
511 /* Check to see if we have a currently valid address, and if so, avoid
512 doing all this work again and just return the cached address. If
513 we have no cached address, ask the /proc support interface to iterate
514 over the list of mapped address segments, calling look_for_base() for
515 each segment. When we are done, we will have either found the base
520 proc_iterate_over_mappings (look_for_base);
524 #endif /* !SVR4_SHARED_LIBS */
528 static struct link_map *
529 first_link_map_member ()
531 struct link_map *lm = NULL;
533 #ifndef SVR4_SHARED_LIBS
535 read_memory (debug_base, (char *) &dynamic_copy, sizeof (dynamic_copy));
536 if (dynamic_copy.ld_version >= 2)
538 /* It is a version that we can deal with, so read in the secondary
539 structure and find the address of the link map list from it. */
540 read_memory ((CORE_ADDR) dynamic_copy.ld_un.ld_2, (char *) &ld_2_copy,
541 sizeof (struct link_dynamic_2));
542 lm = ld_2_copy.ld_loaded;
545 #else /* SVR4_SHARED_LIBS */
547 read_memory (debug_base, (char *) &debug_copy, sizeof (struct r_debug));
548 lm = debug_copy.r_map;
550 #endif /* !SVR4_SHARED_LIBS */
559 find_solib -- step through list of shared objects
563 struct so_list *find_solib (struct so_list *so_list_ptr)
567 This module contains the routine which finds the names of any
568 loaded "images" in the current process. The argument in must be
569 NULL on the first call, and then the returned value must be passed
570 in on subsequent calls. This provides the capability to "step" down
571 the list of loaded objects. On the last object, a NULL value is
574 The arg and return value are "struct link_map" pointers, as defined
578 static struct so_list *
579 find_solib (so_list_ptr)
580 struct so_list *so_list_ptr; /* Last lm or NULL for first one */
582 struct so_list *so_list_next = NULL;
583 struct link_map *lm = NULL;
586 if (so_list_ptr == NULL)
588 /* We are setting up for a new scan through the loaded images. */
589 if ((so_list_next = so_list_head) == NULL)
591 /* We have not already read in the dynamic linking structures
592 from the inferior, lookup the address of the base structure. */
593 debug_base = locate_base ();
596 /* Read the base structure in and find the address of the first
597 link map list member. */
598 lm = first_link_map_member ();
604 /* We have been called before, and are in the process of walking
605 the shared library list. Advance to the next shared object. */
606 if ((lm = LM_NEXT (so_list_ptr)) == NULL)
608 /* We have hit the end of the list, so check to see if any were
609 added, but be quiet if we can't read from the target any more. */
610 int status = target_read_memory ((CORE_ADDR) so_list_ptr -> lmaddr,
611 (char *) &(so_list_ptr -> lm),
612 sizeof (struct link_map));
615 lm = LM_NEXT (so_list_ptr);
622 so_list_next = so_list_ptr -> next;
624 if ((so_list_next == NULL) && (lm != NULL))
626 /* Get next link map structure from inferior image and build a local
627 abbreviated load_map structure */
628 new = (struct so_list *) xmalloc (sizeof (struct so_list));
629 (void) memset ((char *) new, 0, sizeof (struct so_list));
631 /* Add the new node as the next node in the list, or as the root
632 node if this is the first one. */
633 if (so_list_ptr != NULL)
635 so_list_ptr -> next = new;
642 read_memory ((CORE_ADDR) lm, (char *) &(new -> lm),
643 sizeof (struct link_map));
644 /* For the SVR4 version, there is one entry that has no name
645 (for the inferior executable) since it is not a shared object. */
646 if (LM_NAME (new) != 0)
648 if (!target_read_string((CORE_ADDR) LM_NAME (new), new -> so_name,
650 error ("find_solib: Can't read pathname for load map\n");
651 new -> so_name[MAX_PATH_SIZE - 1] = 0;
652 solib_map_sections (new);
655 return (so_list_next);
658 /* A small stub to get us past the arg-passing pinhole of catch_errors. */
661 symbol_add_stub (arg)
664 register struct so_list *so = (struct so_list *) arg; /* catch_errs bogon */
666 so -> objfile = symbol_file_add (so -> so_name, so -> from_tty,
667 (unsigned int) LM_ADDR (so), 0, 0, 0);
675 solib_add -- add a shared library file to the symtab and section list
679 void solib_add (char *arg_string, int from_tty,
680 struct target_ops *target)
687 solib_add (arg_string, from_tty, target)
690 struct target_ops *target;
692 register struct so_list *so = NULL; /* link map state variable */
697 if ((re_err = re_comp (arg_string ? arg_string : ".")) != NULL)
699 error ("Invalid regexp: %s", re_err);
702 /* Getting new symbols may change our opinion about what is
704 reinit_frame_cache ();
706 while ((so = find_solib (so)) != NULL)
708 if (so -> so_name[0] && re_exec (so -> so_name))
710 if (so -> symbols_loaded)
714 printf ("Symbols already loaded for %s\n", so -> so_name);
719 catch_errors (symbol_add_stub, (char *) so,
720 "Error while reading shared library symbols:\n");
722 special_symbol_handling (so);
723 so -> symbols_loaded = 1;
724 so -> from_tty = from_tty;
729 /* Now add the shared library sections to the section table of the
730 specified target, if any. */
733 /* Count how many new section_table entries there are. */
736 while ((so = find_solib (so)) != NULL)
738 if (so -> so_name[0])
740 count += so -> sections_end - so -> sections;
746 /* Reallocate the target's section table including the new size. */
747 if (target -> to_sections)
749 old = target -> to_sections_end - target -> to_sections;
750 target -> to_sections = (struct section_table *)
751 realloc ((char *)target -> to_sections,
752 (sizeof (struct section_table)) * (count + old));
757 target -> to_sections = (struct section_table *)
758 malloc ((sizeof (struct section_table)) * count);
760 target -> to_sections_end = target -> to_sections + (count + old);
762 /* Add these section table entries to the target's table. */
763 while ((so = find_solib (so)) != NULL)
765 if (so -> so_name[0])
767 count = so -> sections_end - so -> sections;
768 bcopy (so -> sections, (char *)(target -> to_sections + old),
769 (sizeof (struct section_table)) * count);
781 info_sharedlibrary_command -- code for "info sharedlibrary"
785 static void info_sharedlibrary_command ()
789 Walk through the shared library list and print information
790 about each attached library.
794 info_sharedlibrary_command ()
796 register struct so_list *so = NULL; /* link map state variable */
799 if (exec_bfd == NULL)
801 printf ("No exec file.\n");
804 while ((so = find_solib (so)) != NULL)
806 if (so -> so_name[0])
810 printf("%-12s%-12s%-12s%s\n", "From", "To", "Syms Read",
811 "Shared Object Library");
814 printf ("%-12s", local_hex_string_custom ((int) LM_ADDR (so), "08"));
815 printf ("%-12s", local_hex_string_custom (so -> lmend, "08"));
816 printf ("%-12s", so -> symbols_loaded ? "Yes" : "No");
817 printf ("%s\n", so -> so_name);
820 if (so_list_head == NULL)
822 printf ("No shared libraries loaded at this time.\n");
830 solib_address -- check to see if an address is in a shared lib
834 int solib_address (CORE_ADDR address)
838 Provides a hook for other gdb routines to discover whether or
839 not a particular address is within the mapped address space of
840 a shared library. Any address between the base mapping address
841 and the first address beyond the end of the last mapping, is
842 considered to be within the shared library address space, for
845 For example, this routine is called at one point to disable
846 breakpoints which are in shared libraries that are not currently
851 solib_address (address)
854 register struct so_list *so = 0; /* link map state variable */
856 while ((so = find_solib (so)) != NULL)
858 if (so -> so_name[0])
860 if ((address >= (CORE_ADDR) LM_ADDR (so)) &&
861 (address < (CORE_ADDR) so -> lmend))
870 /* Called by free_all_symtabs */
875 struct so_list *next;
879 if (so_list_head -> sections)
881 free ((PTR)so_list_head -> sections);
883 if (so_list_head -> so_bfd)
885 bfd_close (so_list_head -> so_bfd);
887 next = so_list_head -> next;
888 free((PTR)so_list_head);
898 disable_break -- remove the "mapping changed" breakpoint
902 static int disable_break ()
906 Removes the breakpoint that gets hit when the dynamic linker
907 completes a mapping change.
916 #ifndef SVR4_SHARED_LIBS
920 /* Read the debugger structure from the inferior to retrieve the
921 address of the breakpoint and the original contents of the
922 breakpoint address. Remove the breakpoint by writing the original
925 read_memory (debug_addr, (char *) &debug_copy, sizeof (debug_copy));
927 /* Set `in_debugger' to zero now. */
929 write_memory (flag_addr, (char *) &in_debugger, sizeof (in_debugger));
931 breakpoint_addr = (CORE_ADDR) debug_copy.ldd_bp_addr;
932 write_memory (breakpoint_addr, (char *) &debug_copy.ldd_bp_inst,
933 sizeof (debug_copy.ldd_bp_inst));
935 #else /* SVR4_SHARED_LIBS */
937 /* Note that breakpoint address and original contents are in our address
938 space, so we just need to write the original contents back. */
940 if (memory_remove_breakpoint (breakpoint_addr, shadow_contents) != 0)
945 #endif /* !SVR4_SHARED_LIBS */
947 /* For the SVR4 version, we always know the breakpoint address. For the
948 SunOS version we don't know it until the above code is executed.
949 Grumble if we are stopped anywhere besides the breakpoint address. */
951 if (stop_pc != breakpoint_addr)
953 warning ("stopped at unknown breakpoint while handling shared libraries");
963 enable_break -- arrange for dynamic linker to hit breakpoint
967 int enable_break (void)
971 Both the SunOS and the SVR4 dynamic linkers have, as part of their
972 debugger interface, support for arranging for the inferior to hit
973 a breakpoint after mapping in the shared libraries. This function
974 enables that breakpoint.
976 For SunOS, there is a special flag location (in_debugger) which we
977 set to 1. When the dynamic linker sees this flag set, it will set
978 a breakpoint at a location known only to itself, after saving the
979 original contents of that place and the breakpoint address itself,
980 in it's own internal structures. When we resume the inferior, it
981 will eventually take a SIGTRAP when it runs into the breakpoint.
982 We handle this (in a different place) by restoring the contents of
983 the breakpointed location (which is only known after it stops),
984 chasing around to locate the shared libraries that have been
985 loaded, then resuming.
987 For SVR4, the debugger interface structure contains a member (r_brk)
988 which is statically initialized at the time the shared library is
989 built, to the offset of a function (_r_debug_state) which is guaran-
990 teed to be called once before mapping in a library, and again when
991 the mapping is complete. At the time we are examining this member,
992 it contains only the unrelocated offset of the function, so we have
993 to do our own relocation. Later, when the dynamic linker actually
994 runs, it relocates r_brk to be the actual address of _r_debug_state().
996 The debugger interface structure also contains an enumeration which
997 is set to either RT_ADD or RT_DELETE prior to changing the mapping,
998 depending upon whether or not the library is being mapped or unmapped,
999 and then set to RT_CONSISTENT after the library is mapped/unmapped.
1008 #ifndef SVR4_SHARED_LIBS
1012 /* Get link_dynamic structure */
1014 j = target_read_memory (debug_base, (char *) &dynamic_copy,
1015 sizeof (dynamic_copy));
1022 /* Calc address of debugger interface structure */
1024 debug_addr = (CORE_ADDR) dynamic_copy.ldd;
1026 /* Calc address of `in_debugger' member of debugger interface structure */
1028 flag_addr = debug_addr + (CORE_ADDR) ((char *) &debug_copy.ldd_in_debugger -
1029 (char *) &debug_copy);
1031 /* Write a value of 1 to this member. */
1035 write_memory (flag_addr, (char *) &in_debugger, sizeof (in_debugger));
1037 #else /* SVR4_SHARED_LIBS */
1041 struct minimal_symbol *msymbol;
1043 msymbol = lookup_minimal_symbol ("main", symfile_objfile);
1044 if ((msymbol != NULL) && (msymbol -> address != 0))
1046 breakpoint_addr = msymbol -> address;
1053 if (target_insert_breakpoint (breakpoint_addr, shadow_contents) != 0)
1058 #else /* !BKPT_AT_MAIN */
1060 struct symtab_and_line sal;
1062 /* Read the debugger interface structure directly. */
1064 read_memory (debug_base, (char *) &debug_copy, sizeof (debug_copy));
1066 /* Set breakpoint at the debugger interface stub routine that will
1067 be called just prior to each mapping change and again after the
1068 mapping change is complete. Set up the (nonexistent) handler to
1069 deal with hitting these breakpoints. (FIXME). */
1071 warning ("'%s': line %d: missing SVR4 support code", __FILE__, __LINE__);
1073 #endif /* BKPT_AT_MAIN */
1075 #endif /* !SVR4_SHARED_LIBS */
1084 solib_create_inferior_hook -- shared library startup support
1088 void solib_create_inferior_hook()
1092 When gdb starts up the inferior, it nurses it along (through the
1093 shell) until it is ready to execute it's first instruction. At this
1094 point, this function gets called via expansion of the macro
1095 SOLIB_CREATE_INFERIOR_HOOK.
1097 For both SunOS shared libraries, and SVR4 shared libraries, we
1098 can arrange to cooperate with the dynamic linker to discover the
1099 names of shared libraries that are dynamically linked, and the
1100 base addresses to which they are linked.
1102 This function is responsible for discovering those names and
1103 addresses, and saving sufficient information about them to allow
1104 their symbols to be read at a later time.
1108 Between enable_break() and disable_break(), this code does not
1109 properly handle hitting breakpoints which the user might have
1110 set in the startup code or in the dynamic linker itself. Proper
1111 handling will probably have to wait until the implementation is
1112 changed to use the "breakpoint handler function" method.
1114 Also, what if child has exit()ed? Must exit loop somehow.
1118 solib_create_inferior_hook()
1121 if ((debug_base = locate_base ()) == 0)
1123 /* Can't find the symbol or the executable is statically linked. */
1127 if (!enable_break ())
1129 warning ("shared library handler failed to enable breakpoint");
1133 /* Now run the target. It will eventually hit the breakpoint, at
1134 which point all of the libraries will have been mapped in and we
1135 can go groveling around in the dynamic linker structures to find
1136 out what we need to know about them. */
1138 clear_proceed_status ();
1139 stop_soon_quietly = 1;
1143 target_resume (0, stop_signal);
1144 wait_for_inferior ();
1146 while (stop_signal != SIGTRAP);
1147 stop_soon_quietly = 0;
1149 /* We are now either at the "mapping complete" breakpoint (or somewhere
1150 else, a condition we aren't prepared to deal with anyway), so adjust
1151 the PC as necessary after a breakpoint, disable the breakpoint, and
1152 add any shared libraries that were mapped in. */
1154 if (DECR_PC_AFTER_BREAK)
1156 stop_pc -= DECR_PC_AFTER_BREAK;
1157 write_register (PC_REGNUM, stop_pc);
1160 if (!disable_break ())
1162 warning ("shared library handler failed to disable breakpoint");
1165 solib_add ((char *) 0, 0, (struct target_ops *) 0);
1172 special_symbol_handling -- additional shared library symbol handling
1176 void special_symbol_handling (struct so_list *so)
1180 Once the symbols from a shared object have been loaded in the usual
1181 way, we are called to do any system specific symbol handling that
1184 For Suns, this consists of grunging around in the dynamic linkers
1185 structures to find symbol definitions for "common" symbols and
1186 adding them to the minimal symbol table for the corresponding
1192 special_symbol_handling (so)
1195 #ifndef SVR4_SHARED_LIBS
1197 /* Read the debugger structure from the inferior, just to make sure
1198 we have a current copy. */
1200 read_memory (debug_addr, (char *) &debug_copy, sizeof (debug_copy));
1202 /* Get common symbol definitions for the loaded object. */
1204 if (debug_copy.ldd_cp)
1206 solib_add_common_symbols (debug_copy.ldd_cp, so -> objfile);
1209 #endif /* !SVR4_SHARED_LIBS */
1217 sharedlibrary_command -- handle command to explicitly add library
1221 static void sharedlibrary_command (char *args, int from_tty)
1228 sharedlibrary_command (args, from_tty)
1233 solib_add (args, from_tty, (struct target_ops *) 0);
1240 add_com ("sharedlibrary", class_files, sharedlibrary_command,
1241 "Load shared object library symbols for files matching REGEXP.");
1242 add_info ("sharedlibrary", info_sharedlibrary_command,
1243 "Status of loaded shared object libraries.");