1 /* Handle HP ELF shared libraries for GDB, the GNU Debugger.
2 Copyright 1999, 2000, 2001 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., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
21 HP in their infinite stupidity choose not to use standard ELF dynamic
22 linker interfaces. They also choose not to make their ELF dymamic
23 linker interfaces compatible with the SOM dynamic linker. The
24 net result is we can not use either of the existing somsolib.c or
25 solib.c. What a crock.
27 Even more disgusting. This file depends on functions provided only
28 in certain PA64 libraries. Thus this file is supposed to only be
29 used native. When will HP ever learn that they need to provide the
30 same functionality in all their libraries! */
43 #include "breakpoint.h"
47 #include "gdb-stabs.h"
60 /* Defined in exec.c; used to prevent dangling pointer bug. */
61 extern struct target_ops exec_ops;
63 static CORE_ADDR bfd_lookup_symbol (bfd *, char *);
64 /* This lives in hppa-tdep.c. */
65 extern struct unwind_table_entry *find_unwind_entry (CORE_ADDR pc);
67 /* These ought to be defined in some public interface, but aren't. They
68 identify dynamic linker events. */
70 #define DLD_CB_UNLOAD 0
72 /* A structure to keep track of all the known shared objects. */
78 struct objfile *objfile;
79 CORE_ADDR pa64_solib_desc_addr;
80 struct load_module_desc pa64_solib_desc;
81 struct section_table *sections;
82 struct section_table *sections_end;
86 static struct so_list *so_list_head;
88 /* This is the cumulative size in bytes of the symbol tables of all
89 shared objects on the so_list_head list. (When we say size, here
90 we mean of the information before it is brought into memory and
91 potentially expanded by GDB.) When adding a new shlib, this value
92 is compared against the threshold size, held by auto_solib_add
93 (in megabytes). If adding symbols for the new shlib would cause
94 the total size to exceed the threshold, then the new shlib's symbols
96 static LONGEST pa64_solib_total_st_size;
98 /* When the threshold is reached for any shlib, we refuse to add
99 symbols for subsequent shlibs, even if those shlibs' symbols would
100 be small enough to fit under the threshold. (Although this may
101 result in one, early large shlib preventing the loading of later,
102 smalller shlibs' symbols, it allows us to issue one informational
103 message. The alternative, to issue a message for each shlib whose
104 symbols aren't loaded, could be a big annoyance where the threshold
105 is exceeded due to a very large number of shlibs.) */
106 static int pa64_solib_st_size_threshold_exceeded;
108 /* When adding fields, be sure to clear them in _initialize_pa64_solib. */
111 CORE_ADDR dld_flags_addr;
113 sec_ptr dyninfo_sect;
114 boolean have_read_dld_descriptor;
117 CORE_ADDR load_map_addr;
118 struct load_module_desc dld_desc;
122 static dld_cache_t dld_cache;
124 static void pa64_sharedlibrary_info_command (char *, int);
126 static void pa64_solib_sharedlibrary_command (char *, int);
128 static void *pa64_target_read_memory (void *, CORE_ADDR, size_t, int);
130 static boolean read_dld_descriptor (struct target_ops *);
132 static boolean read_dynamic_info (asection *, dld_cache_t *);
134 static void add_to_solist (boolean, char *, struct load_module_desc *,
135 CORE_ADDR, struct target_ops *);
137 /* When examining the shared library for debugging information we have to
138 look for HP debug symbols, stabs and dwarf2 debug symbols. */
139 static char *pa64_debug_section_names[] = {
140 ".debug_header", ".debug_gntt", ".debug_lntt", ".debug_slt", ".debug_vt",
141 ".stabs", ".stabstr", ".debug_info", ".debug_abbrev", ".debug_aranges",
142 ".debug_macinfo", ".debug_line", ".debug_loc", ".debug_pubnames",
146 /* Return a ballbark figure for the amount of memory GDB will need to
147 allocate to read in the debug symbols from FILENAME. */
149 pa64_solib_sizeof_symbol_table (char *filename)
155 LONGEST st_size = (LONGEST) 0;
158 /* We believe that filename was handed to us by the dynamic linker, and
159 is therefore always an absolute path. */
160 desc = openp (getenv ("PATH"), 1, filename, O_RDONLY | O_BINARY,
164 perror_with_name (filename);
166 filename = absolute_name;
168 abfd = bfd_fdopenr (filename, gnutarget, desc);
172 make_cleanup (xfree, filename);
173 error ("\"%s\": can't open to read symbols: %s.", filename,
174 bfd_errmsg (bfd_get_error ()));
177 if (!bfd_check_format (abfd, bfd_object))
180 make_cleanup (xfree, filename);
181 error ("\"%s\": can't read symbols: %s.", filename,
182 bfd_errmsg (bfd_get_error ()));
185 /* Sum the sizes of the various sections that compose debug info. */
186 for (i = 0; pa64_debug_section_names[i] != NULL; i++)
190 sect = bfd_get_section_by_name (abfd, pa64_debug_section_names[i]);
192 st_size += (LONGEST)bfd_section_size (abfd, sect);
198 /* Unfortunately, just summing the sizes of various debug info
199 sections isn't a very accurate measurement of how much heap
200 space the debugger will need to hold them. It also doesn't
201 account for space needed by linker (aka "minimal") symbols.
203 Anecdotal evidence suggests that just summing the sizes of
204 debug-info-related sections understates the heap space needed
205 to represent it internally by about an order of magnitude.
207 Since it's not exactly brain surgery we're doing here, rather
208 than attempt to more accurately measure the size of a shlib's
209 symbol table in GDB's heap, we'll just apply a 10x fudge-
210 factor to the debug info sections' size-sum. No, this doesn't
211 account for minimal symbols in non-debuggable shlibs. But it
212 all roughly washes out in the end. */
213 return st_size * (LONGEST) 10;
216 /* Add a shared library to the objfile list and load its symbols into
217 GDB's symbol table. */
219 pa64_solib_add_solib_objfile (struct so_list *so, char *name, int from_tty,
224 obj_private_data_t *obj_private;
225 struct section_addr_info section_addrs;
227 memset (§ion_addrs, 0, sizeof (section_addrs));
228 /* We need the BFD so that we can look at its sections. We open up the
229 file temporarily, then close it when we are done. */
230 tmp_bfd = bfd_openr (name, gnutarget);
233 perror_with_name (name);
237 if (!bfd_check_format (tmp_bfd, bfd_object))
240 error ("\"%s\" is not an object file: %s", name,
241 bfd_errmsg (bfd_get_error ()));
245 /* Undo some braindamage from symfile.c.
247 First, symfile.c will subtract the VMA of the first .text section
248 in the shared library that it finds. Undo that. */
249 sec = bfd_get_section_by_name (tmp_bfd, ".text");
250 text_addr += bfd_section_vma (tmp_bfd, sec);
252 /* Now find the true lowest section in the shared library. */
254 bfd_map_over_sections (tmp_bfd, find_lowest_section, (PTR) &sec);
258 /* Subtract out the VMA of the lowest section. */
259 text_addr -= bfd_section_vma (tmp_bfd, sec);
261 /* ??? Add back in the filepos of that lowest section. */
262 text_addr += sec->filepos;
265 /* We are done with the temporary bfd. Get rid of it and make sure
266 nobody else can us it. */
270 /* Now let the generic code load up symbols for this library. */
271 section_addrs.other[0].addr = text_addr;
272 section_addrs.other[0].name = ".text";
273 so->objfile = symbol_file_add (name, from_tty, §ion_addrs, 0, OBJF_SHARED);
274 so->abfd = so->objfile->obfd;
276 /* Mark this as a shared library and save private data. */
277 so->objfile->flags |= OBJF_SHARED;
279 if (so->objfile->obj_private == NULL)
281 obj_private = (obj_private_data_t *)
282 obstack_alloc (&so->objfile->psymbol_obstack,
283 sizeof (obj_private_data_t));
284 obj_private->unwind_info = NULL;
285 obj_private->so_info = NULL;
286 so->objfile->obj_private = (PTR) obj_private;
289 obj_private = (obj_private_data_t *) so->objfile->obj_private;
290 obj_private->so_info = so;
291 obj_private->dp = so->pa64_solib_desc.linkage_ptr;
294 /* Load debugging information for a shared library. TARGET may be
295 NULL if we are not attaching to a process or reading a core file. */
298 pa64_solib_load_symbols (struct so_list *so, char *name, int from_tty,
299 CORE_ADDR text_addr, struct target_ops *target)
301 struct section_table *p;
305 CORE_ADDR presumed_data_start;
308 text_addr = so->pa64_solib_desc.text_base;
310 pa64_solib_add_solib_objfile (so, name, from_tty, text_addr);
312 /* Now we need to build a section table for this library since
313 we might be debugging a core file from a dynamically linked
314 executable in which the libraries were not privately mapped. */
315 if (build_section_table (so->abfd,
319 error ("Unable to build section table for shared library\n.");
323 (so->objfile->section_offsets)->offsets[SECT_OFF_TEXT (so->objfile)]
324 = so->pa64_solib_desc.text_base;
325 (so->objfile->section_offsets)->offsets[SECT_OFF_DATA (so->objfile)]
326 = so->pa64_solib_desc.data_base;
328 /* Relocate all the sections based on where they got loaded. */
329 for (p = so->sections; p < so->sections_end; p++)
331 if (p->the_bfd_section->flags & SEC_CODE)
333 p->addr += ANOFFSET (so->objfile->section_offsets, SECT_OFF_TEXT (so->objfile));
334 p->endaddr += ANOFFSET (so->objfile->section_offsets, SECT_OFF_TEXT (so->objfile));
336 else if (p->the_bfd_section->flags & SEC_DATA)
338 p->addr += ANOFFSET (so->objfile->section_offsets, SECT_OFF_DATA (so->objfile));
339 p->endaddr += ANOFFSET (so->objfile->section_offsets, SECT_OFF_DATA (so->objfile));
343 /* Now see if we need to map in the text and data for this shared
344 library (for example debugging a core file which does not use
345 private shared libraries.).
347 Carefully peek at the first text address in the library. If the
348 read succeeds, then the libraries were privately mapped and were
349 included in the core dump file.
351 If the peek failed, then the libraries were not privately mapped
352 and are not in the core file, we'll have to read them in ourselves. */
353 status = target_read_memory (text_addr, buf, 4);
358 new = so->sections_end - so->sections;
360 old = target_resize_to_sections (target, new);
362 /* Copy over the old data before it gets clobbered. */
363 memcpy ((char *) (target->to_sections + old),
365 ((sizeof (struct section_table)) * new));
370 /* Add symbols from shared libraries into the symtab list, unless the
371 size threshold (specified by auto_solib_add, in megabytes) would
375 pa64_solib_add (char *arg_string, int from_tty, struct target_ops *target)
377 struct minimal_symbol *msymbol;
379 asection *shlib_info;
381 unsigned int dld_flags;
382 char buf[4], *re_err;
383 int threshold_warning_given = 0;
385 struct load_module_desc dll_desc;
388 /* First validate our arguments. */
389 if ((re_err = re_comp (arg_string ? arg_string : ".")) != NULL)
391 error ("Invalid regexp: %s", re_err);
394 /* If we're debugging a core file, or have attached to a running
395 process, then pa64_solib_create_inferior_hook will not have been
398 We need to first determine if we're dealing with a dynamically
399 linked executable. If not, then return without an error or warning.
401 We also need to examine __dld_flags to determine if the shared library
402 list is valid and to determine if the libraries have been privately
404 if (symfile_objfile == NULL)
407 /* First see if the objfile was dynamically linked. */
408 shlib_info = bfd_get_section_by_name (symfile_objfile->obfd, ".dynamic");
412 /* It's got a .dynamic section, make sure it's not empty. */
413 if (bfd_section_size (symfile_objfile->obfd, shlib_info) == 0)
416 /* Read in the load map pointer if we have not done so already. */
417 if (! dld_cache.have_read_dld_descriptor)
418 if (! read_dld_descriptor (target))
421 /* If the libraries were not mapped private, warn the user. */
422 if ((dld_cache.dld_flags & DT_HP_DEBUG_PRIVATE) == 0)
423 warning ("The shared libraries were not privately mapped; setting a\nbreakpoint in a shared library will not work until you rerun the program.\n");
425 /* For each shaerd library, add it to the shared library list. */
426 for (dll_index = 1; ; dll_index++)
428 /* Read in the load module descriptor. */
429 if (dlgetmodinfo (dll_index, &dll_desc, sizeof (dll_desc),
430 pa64_target_read_memory, 0, dld_cache.load_map)
434 /* Get the name of the shared library. */
435 dll_path = (char *)dlgetname (&dll_desc, sizeof (dll_desc),
436 pa64_target_read_memory,
437 0, dld_cache.load_map);
440 error ("pa64_solib_add, unable to read shared library path.");
442 add_to_solist (from_tty, dll_path, &dll_desc, 0, target);
447 /* This hook gets called just before the first instruction in the
448 inferior process is executed.
450 This is our opportunity to set magic flags in the inferior so
451 that GDB can be notified when a shared library is mapped in and
452 to tell the dynamic linker that a private copy of the library is
453 needed (so GDB can set breakpoints in the library).
455 We need to set two flag bits in this routine.
457 DT_HP_DEBUG_PRIVATE to indicate that shared libraries should be
460 DT_HP_DEBUG_CALLBACK to indicate that we want the dynamic linker to
461 call the breakpoint routine for significant events. */
464 pa64_solib_create_inferior_hook (void)
466 struct minimal_symbol *msymbol;
467 unsigned int dld_flags, status;
468 asection *shlib_info, *interp_sect;
470 struct objfile *objfile;
473 /* First, remove all the solib event breakpoints. Their addresses
474 may have changed since the last time we ran the program. */
475 remove_solib_event_breakpoints ();
477 if (symfile_objfile == NULL)
480 /* First see if the objfile was dynamically linked. */
481 shlib_info = bfd_get_section_by_name (symfile_objfile->obfd, ".dynamic");
485 /* It's got a .dynamic section, make sure it's not empty. */
486 if (bfd_section_size (symfile_objfile->obfd, shlib_info) == 0)
489 /* Read in the .dynamic section. */
490 if (! read_dynamic_info (shlib_info, &dld_cache))
491 error ("Unable to read the .dynamic section.");
493 /* Turn on the flags we care about. */
494 dld_cache.dld_flags |= DT_HP_DEBUG_PRIVATE;
495 dld_cache.dld_flags |= DT_HP_DEBUG_CALLBACK;
496 status = target_write_memory (dld_cache.dld_flags_addr,
497 (char *) &dld_cache.dld_flags,
498 sizeof (dld_cache.dld_flags));
500 error ("Unable to modify dynamic linker flags.");
502 /* Now we have to create a shared library breakpoint in the dynamic
503 linker. This can be somewhat tricky since the symbol is inside
504 the dynamic linker (for which we do not have symbols or a base
505 load address! Luckily I wrote this code for solib.c years ago. */
506 interp_sect = bfd_get_section_by_name (exec_bfd, ".interp");
509 unsigned int interp_sect_size;
513 CORE_ADDR sym_addr = 0;
515 /* Read the contents of the .interp section into a local buffer;
516 the contents specify the dynamic linker this program uses. */
517 interp_sect_size = bfd_section_size (exec_bfd, interp_sect);
518 buf = alloca (interp_sect_size);
519 bfd_get_section_contents (exec_bfd, interp_sect,
520 buf, 0, interp_sect_size);
522 /* Now we need to figure out where the dynamic linker was
523 loaded so that we can load its symbols and place a breakpoint
524 in the dynamic linker itself.
526 This address is stored on the stack. However, I've been unable
527 to find any magic formula to find it for Solaris (appears to
528 be trivial on GNU/Linux). Therefore, we have to try an alternate
529 mechanism to find the dynamic linker's base address. */
530 tmp_bfd = bfd_openr (buf, gnutarget);
534 /* Make sure the dynamic linker's really a useful object. */
535 if (!bfd_check_format (tmp_bfd, bfd_object))
537 warning ("Unable to grok dynamic linker %s as an object file", buf);
542 /* We find the dynamic linker's base address by examining the
543 current pc (which point at the entry point for the dynamic
544 linker) and subtracting the offset of the entry point.
546 Also note the breakpoint is the second instruction in the
548 load_addr = read_pc () - tmp_bfd->start_address;
549 sym_addr = bfd_lookup_symbol (tmp_bfd, "__dld_break");
550 sym_addr = load_addr + sym_addr + 4;
552 /* Create the shared library breakpoint. */
555 = create_solib_event_breakpoint (sym_addr);
557 /* The breakpoint is actually hard-coded into the dynamic linker,
558 so we don't need to actually insert a breakpoint instruction
559 there. In fact, the dynamic linker's code is immutable, even to
560 ttrace, so we shouldn't even try to do that. For cases like
561 this, we have "permanent" breakpoints. */
562 make_breakpoint_permanent (b);
565 /* We're done with the temporary bfd. */
570 /* Wipe out all knowledge of old shared libraries since their
571 mapping can change from one exec to another! */
574 struct so_list *temp;
577 xfree (so_list_head);
578 so_list_head = temp->next;
580 clear_symtab_users ();
583 /* This operation removes the "hook" between GDB and the dynamic linker,
584 which causes the dld to notify GDB of shared library events.
586 After this operation completes, the dld will no longer notify GDB of
587 shared library events. To resume notifications, GDB must call
588 pa64_solib_create_inferior_hook.
590 This operation does not remove any knowledge of shared libraries which
591 GDB may already have been notified of. */
594 pa64_solib_remove_inferior_hook (int pid)
596 /* Turn off the DT_HP_DEBUG_CALLBACK bit in the dynamic linker flags. */
597 dld_cache.dld_flags &= ~DT_HP_DEBUG_CALLBACK;
598 target_write_memory (dld_cache.dld_flags_addr,
599 (char *)&dld_cache.dld_flags,
600 sizeof (dld_cache.dld_flags));
603 /* This function creates a breakpoint on the dynamic linker hook, which
604 is called when e.g., a shl_load or shl_unload call is made. This
605 breakpoint will only trigger when a shl_load call is made.
607 If filename is NULL, then loads of any dll will be caught. Else,
608 only loads of the file whose pathname is the string contained by
609 filename will be caught.
611 Undefined behaviour is guaranteed if this function is called before
612 pa64_solib_create_inferior_hook. */
615 pa64_solib_create_catch_load_hook (int pid, int tempflag, char *filename,
618 create_solib_load_event_breakpoint ("", tempflag, filename, cond_string);
621 /* This function creates a breakpoint on the dynamic linker hook, which
622 is called when e.g., a shl_load or shl_unload call is made. This
623 breakpoint will only trigger when a shl_unload call is made.
625 If filename is NULL, then unloads of any dll will be caught. Else,
626 only unloads of the file whose pathname is the string contained by
627 filename will be caught.
629 Undefined behaviour is guaranteed if this function is called before
630 pa64_solib_create_inferior_hook. */
633 pa64_solib_create_catch_unload_hook (int pid, int tempflag, char *filename,
636 create_solib_unload_event_breakpoint ("", tempflag, filename, cond_string);
639 /* Return nonzero if the dynamic linker has reproted that a library
643 pa64_solib_have_load_event (int pid)
645 CORE_ADDR event_kind;
647 event_kind = read_register (ARG0_REGNUM);
648 return (event_kind == DLD_CB_LOAD);
651 /* Return nonzero if the dynamic linker has reproted that a library
652 has been unloaded. */
654 pa64_solib_have_unload_event (int pid)
656 CORE_ADDR event_kind;
658 event_kind = read_register (ARG0_REGNUM);
659 return (event_kind == DLD_CB_UNLOAD);
662 /* Return a pointer to a string indicating the pathname of the most
663 recently loaded library.
665 The caller is reposible for copying the string before the inferior is
669 pa64_solib_loaded_library_pathname (int pid)
671 static char dll_path[MAXPATHLEN];
672 CORE_ADDR dll_path_addr = read_register (ARG3_REGNUM);
673 read_memory_string (dll_path_addr, dll_path, MAXPATHLEN);
677 /* Return a pointer to a string indicating the pathname of the most
678 recently unloaded library.
680 The caller is reposible for copying the string before the inferior is
684 pa64_solib_unloaded_library_pathname (int pid)
686 static char dll_path[MAXPATHLEN];
687 CORE_ADDR dll_path_addr = read_register (ARG3_REGNUM);
688 read_memory_string (dll_path_addr, dll_path, MAXPATHLEN);
692 /* Return nonzero if PC is an address inside the dynamic linker. */
695 pa64_solib_in_dynamic_linker (int pid, CORE_ADDR pc)
697 asection *shlib_info;
699 if (symfile_objfile == NULL)
702 if (!dld_cache.have_read_dld_descriptor)
703 if (!read_dld_descriptor (¤t_target))
706 return (pc >= dld_cache.dld_desc.text_base
707 && pc < dld_cache.dld_desc.text_base + dld_cache.dld_desc.text_size);
711 /* Return the GOT value for the shared library in which ADDR belongs. If
712 ADDR isn't in any known shared library, return zero. */
715 pa64_solib_get_got_by_pc (CORE_ADDR addr)
717 struct so_list *so_list = so_list_head;
718 CORE_ADDR got_value = 0;
722 if (so_list->pa64_solib_desc.text_base <= addr
723 && ((so_list->pa64_solib_desc.text_base
724 + so_list->pa64_solib_desc.text_size)
727 got_value = so_list->pa64_solib_desc.linkage_ptr;
730 so_list = so_list->next;
735 /* Return the address of the handle of the shared library in which ADDR
736 belongs. If ADDR isn't in any known shared library, return zero.
738 This function is used in hppa_fix_call_dummy in hppa-tdep.c. */
741 pa64_solib_get_solib_by_pc (CORE_ADDR addr)
743 struct so_list *so_list = so_list_head;
744 CORE_ADDR retval = 0;
748 if (so_list->pa64_solib_desc.text_base <= addr
749 && ((so_list->pa64_solib_desc.text_base
750 + so_list->pa64_solib_desc.text_size)
753 retval = so_list->pa64_solib_desc_addr;
756 so_list = so_list->next;
761 /* Dump information about all the currently loaded shared libraries. */
764 pa64_sharedlibrary_info_command (char *ignore, int from_tty)
766 struct so_list *so_list = so_list_head;
768 if (exec_bfd == NULL)
770 printf_unfiltered ("No executable file.\n");
776 printf_unfiltered ("No shared libraries loaded at this time.\n");
780 printf_unfiltered ("Shared Object Libraries\n");
781 printf_unfiltered (" %-19s%-19s%-19s%-19s\n",
782 " text start", " text end",
783 " data start", " data end");
788 printf_unfiltered ("%s", so_list->name);
789 if (so_list->objfile == NULL)
790 printf_unfiltered (" (symbols not loaded)");
791 if (so_list->loaded == 0)
792 printf_unfiltered (" (shared library unloaded)");
793 printf_unfiltered (" %-18s",
794 local_hex_string_custom (so_list->pa64_solib_desc.linkage_ptr,
796 printf_unfiltered ("\n");
797 printf_unfiltered ("%-18s",
798 local_hex_string_custom (so_list->pa64_solib_desc.text_base,
800 printf_unfiltered (" %-18s",
801 local_hex_string_custom ((so_list->pa64_solib_desc.text_base
802 + so_list->pa64_solib_desc.text_size),
804 printf_unfiltered (" %-18s",
805 local_hex_string_custom (so_list->pa64_solib_desc.data_base,
807 printf_unfiltered (" %-18s\n",
808 local_hex_string_custom ((so_list->pa64_solib_desc.data_base
809 + so_list->pa64_solib_desc.data_size),
811 so_list = so_list->next;
815 /* Load up one or more shared libraries as directed by the user. */
818 pa64_solib_sharedlibrary_command (char *args, int from_tty)
821 pa64_solib_add (args, from_tty, (struct target_ops *) 0);
824 /* Return the name of the shared library containing ADDR or NULL if ADDR
825 is not contained in any known shared library. */
828 pa64_solib_address (CORE_ADDR addr)
830 struct so_list *so = so_list_head;
834 /* Is this address within this shlib's text range? If so,
835 return the shlib's name. */
836 if (addr >= so->pa64_solib_desc.text_base
837 && addr < (so->pa64_solib_desc.text_base
838 | so->pa64_solib_desc.text_size))
841 /* Nope, keep looking... */
845 /* No, we couldn't prove that the address is within a shlib. */
849 /* We are killing the inferior and restarting the program. */
852 pa64_solib_restart (void)
854 struct so_list *sl = so_list_head;
856 /* Before the shlib info vanishes, use it to disable any breakpoints
857 that may still be active in those shlibs. */
858 disable_breakpoints_in_shlibs (0);
860 /* Discard all the shlib descriptors. */
863 struct so_list *next_sl = sl->next;
869 pa64_solib_total_st_size = (LONGEST) 0;
870 pa64_solib_st_size_threshold_exceeded = 0;
872 dld_cache.is_valid = 0;
873 dld_cache.have_read_dld_descriptor = 0;
874 dld_cache.dld_flags_addr = 0;
875 dld_cache.load_map = 0;
876 dld_cache.load_map_addr = 0;
877 dld_cache.dld_desc.data_base = 0;
878 dld_cache.dld_flags = 0;
879 dld_cache.dyninfo_sect = 0;
883 _initialize_pa64_solib (void)
885 add_com ("sharedlibrary", class_files, pa64_solib_sharedlibrary_command,
886 "Load shared object library symbols for files matching REGEXP.");
887 add_info ("sharedlibrary", pa64_sharedlibrary_info_command,
888 "Status of loaded shared object libraries.");
890 (add_set_cmd ("auto-solib-add", class_support, var_zinteger,
891 (char *) &auto_solib_add,
892 "Set autoloading size threshold (in megabytes) of shared library symbols.\n\
893 If nonzero, symbols from all shared object libraries will be loaded\n\
894 automatically when the inferior begins execution or when the dynamic linker\n\
895 informs gdb that a new library has been loaded, until the symbol table\n\
896 of the program and libraries exceeds this threshold.\n\
897 Otherwise, symbols must be loaded manually, using `sharedlibrary'.",
901 /* ??rehrauer: On HP-UX, the kernel parameter MAXDSIZ limits how much
902 data space a process can use. We ought to be reading MAXDSIZ and
903 setting auto_solib_add to some large fraction of that value. If
904 not that, we maybe ought to be setting it smaller than the default
905 for MAXDSIZ (that being 64Mb, I believe). However, [1] this threshold
906 is only crudely approximated rather than actually measured, and [2]
907 50 Mbytes is too small for debugging gdb itself. Thus, the arbitrary
910 auto_solib_add = 100; /* Megabytes */
912 pa64_solib_restart ();
915 /* Get some HPUX-specific data from a shared lib. */
917 so_lib_thread_start_addr (struct so_list *so)
919 return so->pa64_solib_desc.tls_start_addr;
922 /* Read the dynamic linker's internal shared library descriptor.
924 This must happen after dld starts running, so we can't do it in
925 read_dynamic_info. Record the fact that we have loaded the
926 descriptor. If the library is archive bound, then return zero, else
930 read_dld_descriptor (struct target_ops *target)
933 asection *dyninfo_sect;
935 /* If necessary call read_dynamic_info to extract the contents of the
936 .dynamic section from the shared library. */
937 if (!dld_cache.is_valid)
939 if (symfile_objfile == NULL)
940 error ("No object file symbols.");
942 dyninfo_sect = bfd_get_section_by_name (symfile_objfile->obfd,
949 if (!read_dynamic_info (dyninfo_sect, &dld_cache))
950 error ("Unable to read in .dynamic section information.");
953 /* Read the load map pointer. */
954 if (target_read_memory (dld_cache.load_map_addr,
955 (char*) &dld_cache.load_map,
956 sizeof(dld_cache.load_map))
959 error ("Error while reading in load map pointer.");
962 /* Read in the dld load module descriptor */
963 if (dlgetmodinfo (-1,
965 sizeof(dld_cache.dld_desc),
966 pa64_target_read_memory,
971 error ("Error trying to get information about dynamic linker.");
974 /* Indicate that we have loaded the dld descriptor. */
975 dld_cache.have_read_dld_descriptor = 1;
977 /* Add dld.sl to the list of known shared libraries so that we can
980 ?!? This may not be correct. Consider of dld.sl contains symbols
981 which are also referenced/defined by the user program or some user
982 shared library. We need to make absolutely sure that we do not
983 pollute the namespace from GDB's point of view. */
984 dll_path = dlgetname (&dld_cache.dld_desc,
985 sizeof(dld_cache.dld_desc),
986 pa64_target_read_memory,
989 add_to_solist(0, dll_path, &dld_cache.dld_desc, 0, target);
994 /* Read the .dynamic section and extract the information of interest,
995 which is stored in dld_cache. The routine elf_locate_base in solib.c
996 was used as a model for this. */
999 read_dynamic_info (asection *dyninfo_sect, dld_cache_t *dld_cache_p)
1003 CORE_ADDR dyninfo_addr;
1004 int dyninfo_sect_size;
1005 CORE_ADDR entry_addr;
1007 /* Read in .dynamic section, silently ignore errors. */
1008 dyninfo_addr = bfd_section_vma (symfile_objfile->obfd, dyninfo_sect);
1009 dyninfo_sect_size = bfd_section_size (exec_bfd, dyninfo_sect);
1010 buf = alloca (dyninfo_sect_size);
1011 if (target_read_memory (dyninfo_addr, buf, dyninfo_sect_size))
1014 /* Scan the .dynamic section and record the items of interest.
1015 In particular, DT_HP_DLD_FLAGS */
1016 for (bufend = buf + dyninfo_sect_size, entry_addr = dyninfo_addr;
1018 buf += sizeof (Elf64_Dyn), entry_addr += sizeof (Elf64_Dyn))
1020 Elf64_Dyn *x_dynp = (Elf64_Dyn*)buf;
1021 Elf64_Sxword dyn_tag;
1025 pbuf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT);
1026 dyn_tag = bfd_h_get_64 (symfile_objfile->obfd,
1027 (bfd_byte*) &x_dynp->d_tag);
1029 /* We can't use a switch here because dyn_tag is 64 bits and HP's
1030 lame comiler does not handle 64bit items in switch statements. */
1031 if (dyn_tag == DT_NULL)
1033 else if (dyn_tag == DT_HP_DLD_FLAGS)
1035 /* Set dld_flags_addr and dld_flags in *dld_cache_p */
1036 dld_cache_p->dld_flags_addr = entry_addr + offsetof(Elf64_Dyn, d_un);
1037 if (target_read_memory (dld_cache_p->dld_flags_addr,
1038 (char*) &dld_cache_p->dld_flags,
1039 sizeof(dld_cache_p->dld_flags))
1042 error ("Error while reading in .dynamic section of the program.");
1045 else if (dyn_tag == DT_HP_LOAD_MAP)
1047 /* Dld will place the address of the load map at load_map_addr
1048 after it starts running. */
1049 if (target_read_memory (entry_addr + offsetof(Elf64_Dyn,
1051 (char*) &dld_cache_p->load_map_addr,
1052 sizeof(dld_cache_p->load_map_addr))
1055 error ("Error while reading in .dynamic section of the program.");
1060 /* tag is not of interest */
1064 /* Record other information and set is_valid to 1. */
1065 dld_cache_p->dyninfo_sect = dyninfo_sect;
1067 /* Verify that we read in required info. These fields are re-set to zero
1068 in pa64_solib_restart. */
1070 if (dld_cache_p->dld_flags_addr != 0 && dld_cache_p->load_map_addr != 0)
1071 dld_cache_p->is_valid = 1;
1078 /* Wrapper for target_read_memory to make dlgetmodinfo happy. */
1081 pa64_target_read_memory (void *buffer, CORE_ADDR ptr, size_t bufsiz, int ident)
1083 if (target_read_memory (ptr, buffer, bufsiz) != 0)
1088 /* Called from handle_dynlink_load_event and pa64_solib_add to add
1089 a shared library to so_list_head list and possibly to read in the
1090 debug information for the library.
1092 If load_module_desc_p is NULL, then the load module descriptor must
1093 be read from the inferior process at the address load_module_desc_addr. */
1096 add_to_solist (boolean from_tty, char *dll_path,
1097 struct load_module_desc *load_module_desc_p,
1098 CORE_ADDR load_module_desc_addr, struct target_ops *target)
1100 struct so_list *new_so, *so_list_tail;
1101 int pa64_solib_st_size_threshhold_exceeded;
1104 if (symfile_objfile == NULL)
1107 so_list_tail = so_list_head;
1108 /* Find the end of the list of shared objects. */
1109 while (so_list_tail && so_list_tail->next)
1111 if (strcmp (so_list_tail->name, dll_path) == 0)
1113 so_list_tail = so_list_tail->next;
1116 if (so_list_tail && strcmp (so_list_tail->name, dll_path) == 0)
1119 /* Add the shared library to the so_list_head list */
1120 new_so = (struct so_list *) xmalloc (sizeof (struct so_list));
1121 memset ((char *)new_so, 0, sizeof (struct so_list));
1122 if (so_list_head == NULL)
1124 so_list_head = new_so;
1125 so_list_tail = new_so;
1129 so_list_tail->next = new_so;
1130 so_list_tail = new_so;
1133 /* Initialize the new_so */
1134 if (load_module_desc_p)
1136 new_so->pa64_solib_desc = *load_module_desc_p;
1140 if (target_read_memory (load_module_desc_addr,
1141 (char*) &new_so->pa64_solib_desc,
1142 sizeof(struct load_module_desc))
1145 error ("Error while reading in dynamic library %s", dll_path);
1149 new_so->pa64_solib_desc_addr = load_module_desc_addr;
1151 new_so->name = obsavestring (dll_path, strlen(dll_path),
1152 &symfile_objfile->symbol_obstack);
1154 /* If we are not going to load the library, tell the user if we
1155 haven't already and return. */
1157 st_size = pa64_solib_sizeof_symbol_table (dll_path);
1158 pa64_solib_st_size_threshhold_exceeded =
1160 && ( (st_size + pa64_solib_total_st_size)
1161 > (auto_solib_add * (LONGEST)1000000));
1162 if (pa64_solib_st_size_threshhold_exceeded)
1164 pa64_solib_add_solib_objfile (new_so, dll_path, from_tty, 1);
1168 /* Now read in debug info. */
1169 pa64_solib_total_st_size += st_size;
1171 /* This fills in new_so->objfile, among others. */
1172 pa64_solib_load_symbols (new_so,
1184 bfd_lookup_symbol -- lookup the value for a specific symbol
1188 CORE_ADDR bfd_lookup_symbol (bfd *abfd, char *symname)
1192 An expensive way to lookup the value of a single symbol for
1193 bfd's that are only temporary anyway. This is used by the
1194 shared library support to find the address of the debugger
1195 interface structures in the shared library.
1197 Note that 0 is specifically allowed as an error return (no
1202 bfd_lookup_symbol (bfd *abfd, char *symname)
1204 unsigned int storage_needed;
1206 asymbol **symbol_table;
1207 unsigned int number_of_symbols;
1209 struct cleanup *back_to;
1210 CORE_ADDR symaddr = 0;
1212 storage_needed = bfd_get_symtab_upper_bound (abfd);
1214 if (storage_needed > 0)
1216 symbol_table = (asymbol **) xmalloc (storage_needed);
1217 back_to = make_cleanup (xfree, (PTR) symbol_table);
1218 number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
1220 for (i = 0; i < number_of_symbols; i++)
1222 sym = *symbol_table++;
1223 if (STREQ (sym->name, symname))
1225 /* Bfd symbols are section relative. */
1226 symaddr = sym->value + sym->section->vma;
1230 do_cleanups (back_to);