3f74dce0a0cac5adc8c94b8a63f66c2a11cf35d2
[platform/upstream/binutils.git] / gdb / somsolib.c
1 /* Handle HP SOM shared libraries for GDB, the GNU Debugger.
2
3    Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 Free
4    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    Written by the Center for Software Science at the Univerity of Utah
24    and by Cygnus Support.  */
25
26
27 #include "defs.h"
28
29 #include "frame.h"
30 #include "bfd.h"
31 #include "som.h"
32 #include "libhppa.h"
33 #include "gdbcore.h"
34 #include "symtab.h"
35 #include "breakpoint.h"
36 #include "symfile.h"
37 #include "objfiles.h"
38 #include "inferior.h"
39 #include "gdb-stabs.h"
40 #include "gdb_stat.h"
41 #include "gdbcmd.h"
42 #include "language.h"
43 #include "regcache.h"
44
45 #include <fcntl.h>
46
47 #ifndef O_BINARY
48 #define O_BINARY 0
49 #endif
50
51 /* Uncomment this to turn on some debugging output.
52  */
53
54 /* #define SOLIB_DEBUG
55  */
56
57 /* Defined in exec.c; used to prevent dangling pointer bug.
58  */
59 extern struct target_ops exec_ops;
60
61 /* This lives in hppa-tdep.c. */
62 extern struct unwind_table_entry *find_unwind_entry (CORE_ADDR pc);
63
64 /* These ought to be defined in some public interface, but aren't.  They
65    define the meaning of the various bits in the distinguished __dld_flags
66    variable that is declared in every debuggable a.out on HP-UX, and that
67    is shared between the debugger and the dynamic linker.
68  */
69 #define DLD_FLAGS_MAPPRIVATE    0x1
70 #define DLD_FLAGS_HOOKVALID     0x2
71 #define DLD_FLAGS_LISTVALID     0x4
72 #define DLD_FLAGS_BOR_ENABLE    0x8
73
74 /* TODO:
75
76    * Most of this code should work for hp300 shared libraries.  Does
77    anyone care enough to weed out any SOM-isms.
78
79    * Support for hpux8 dynamic linker.  */
80
81 /* The basic structure which describes a dynamically loaded object.  This
82    data structure is private to the dynamic linker and isn't found in
83    any HPUX include file.  */
84
85 struct som_solib_mapped_entry
86   {
87     /* The name of the library.  */
88     char *name;
89
90     /* Version of this structure (it is expected to change again in hpux10).  */
91     unsigned char struct_version;
92
93     /* Binding mode for this library.  */
94     unsigned char bind_mode;
95
96     /* Version of this library.  */
97     short library_version;
98
99     /* Start of text address,
100      * link-time text location (length of text area),
101      * end of text address.  */
102     CORE_ADDR text_addr;
103     CORE_ADDR text_link_addr;
104     CORE_ADDR text_end;
105
106     /* Start of data, start of bss and end of data.  */
107     CORE_ADDR data_start;
108     CORE_ADDR bss_start;
109     CORE_ADDR data_end;
110
111     /* Value of linkage pointer (%r19).  */
112     CORE_ADDR got_value;
113
114     /* Next entry.  */
115     struct som_solib_mapped_entry *next;
116
117     /* There are other fields, but I don't have information as to what is
118        contained in them.  */
119
120     /* For versions from HPUX-10.30 and up */
121
122     /* Address in target of offset from thread-local register of
123      * start of this thread's data.  I.e., the first thread-local
124      * variable in this shared library starts at *(tsd_start_addr)
125      * from that area pointed to by cr27 (mpsfu_hi).
126      *
127      * We do the indirection as soon as we read it, so from then
128      * on it's the offset itself.
129      */
130     CORE_ADDR tsd_start_addr;
131
132     /* Following this are longwords holding:
133
134      * ?, ?, ?, ptr to -1, ptr to-1, ptr to lib name (leaf name),
135      * ptr to __data_start, ptr to __data_end
136      */
137
138
139   };
140
141 /* A structure to keep track of all the known shared objects.  */
142 struct so_list
143   {
144     struct som_solib_mapped_entry som_solib;
145     struct objfile *objfile;
146     bfd *abfd;
147     struct section_table *sections;
148     struct section_table *sections_end;
149 /* elz: added this field to store the address in target space (in the
150    library) of the library descriptor (handle) which we read into
151    som_solib_mapped_entry structure */
152     CORE_ADDR solib_addr;
153     struct so_list *next;
154
155   };
156
157 static struct so_list *so_list_head;
158
159
160 /* This is the cumulative size in bytes of the symbol tables of all
161    shared objects on the so_list_head list.  (When we say size, here
162    we mean of the information before it is brought into memory and
163    potentially expanded by GDB.)  When adding a new shlib, this value
164    is compared against the threshold size, held by auto_solib_limit
165    (in megabytes).  If adding symbols for the new shlib would cause
166    the total size to exceed the threshold, then the new shlib's
167    symbols are not loaded.  */
168 static LONGEST som_solib_total_st_size;
169
170 /* When the threshold is reached for any shlib, we refuse to add
171    symbols for subsequent shlibs, even if those shlibs' symbols would
172    be small enough to fit under the threshold.  (Although this may
173    result in one, early large shlib preventing the loading of later,
174    smalller shlibs' symbols, it allows us to issue one informational
175    message.  The alternative, to issue a message for each shlib whose
176    symbols aren't loaded, could be a big annoyance where the threshold
177    is exceeded due to a very large number of shlibs.)
178  */
179 static int som_solib_st_size_threshold_exceeded;
180
181 /* These addresses should be filled in by som_solib_create_inferior_hook.
182    They are also used elsewhere in this module.
183  */
184 typedef struct
185   {
186     CORE_ADDR address;
187     struct unwind_table_entry *unwind;
188   }
189 addr_and_unwind_t;
190
191 /* When adding fields, be sure to clear them in _initialize_som_solib. */
192 static struct
193   {
194     int is_valid;
195     addr_and_unwind_t hook;
196     addr_and_unwind_t hook_stub;
197     addr_and_unwind_t load;
198     addr_and_unwind_t load_stub;
199     addr_and_unwind_t unload;
200     addr_and_unwind_t unload2;
201     addr_and_unwind_t unload_stub;
202   }
203 dld_cache;
204
205
206
207 static void som_sharedlibrary_info_command (char *, int);
208
209 static void som_solib_sharedlibrary_command (char *, int);
210
211 static LONGEST
212 som_solib_sizeof_symbol_table (char *filename)
213 {
214   bfd *abfd;
215   int desc;
216   char *absolute_name;
217   LONGEST st_size = (LONGEST) 0;
218   asection *sect;
219
220   /* We believe that filename was handed to us by the dynamic linker, and
221      is therefore always an absolute path.
222    */
223   desc = openp (getenv ("PATH"), 1, filename, O_RDONLY | O_BINARY, 0, &absolute_name);
224   if (desc < 0)
225     {
226       perror_with_name (filename);
227     }
228   filename = absolute_name;
229
230   abfd = bfd_fdopenr (filename, gnutarget, desc);
231   if (!abfd)
232     {
233       close (desc);
234       make_cleanup (xfree, filename);
235       error ("\"%s\": can't open to read symbols: %s.", filename,
236              bfd_errmsg (bfd_get_error ()));
237     }
238
239   if (!bfd_check_format (abfd, bfd_object))     /* Reads in section info */
240     {
241       bfd_close (abfd);         /* This also closes desc */
242       make_cleanup (xfree, filename);
243       error ("\"%s\": can't read symbols: %s.", filename,
244              bfd_errmsg (bfd_get_error ()));
245     }
246
247   /* Sum the sizes of the various sections that compose debug info. */
248
249   /* This contains non-DOC information. */
250   sect = bfd_get_section_by_name (abfd, "$DEBUG$");
251   if (sect)
252     st_size += (LONGEST) bfd_section_size (abfd, sect);
253
254   /* This contains DOC information. */
255   sect = bfd_get_section_by_name (abfd, "$PINFO$");
256   if (sect)
257     st_size += (LONGEST) bfd_section_size (abfd, sect);
258
259   bfd_close (abfd);             /* This also closes desc */
260   xfree (filename);
261
262   /* Unfortunately, just summing the sizes of various debug info
263      sections isn't a very accurate measurement of how much heap
264      space the debugger will need to hold them.  It also doesn't
265      account for space needed by linker (aka "minimal") symbols.
266
267      Anecdotal evidence suggests that just summing the sizes of
268      debug-info-related sections understates the heap space needed
269      to represent it internally by about an order of magnitude.
270
271      Since it's not exactly brain surgery we're doing here, rather
272      than attempt to more accurately measure the size of a shlib's
273      symbol table in GDB's heap, we'll just apply a 10x fudge-
274      factor to the debug info sections' size-sum.  No, this doesn't
275      account for minimal symbols in non-debuggable shlibs.  But it
276      all roughly washes out in the end.
277    */
278   return st_size * (LONGEST) 10;
279 }
280
281
282 static void
283 som_solib_add_solib_objfile (struct so_list *so, char *name, int from_tty,
284                              CORE_ADDR text_addr)
285 {
286   obj_private_data_t *obj_private;
287   struct obj_section *s;
288
289   so->objfile = symbol_file_add (name, from_tty, NULL, 0, OBJF_SHARED);
290   so->abfd = so->objfile->obfd;
291
292   /* syms_from_objfile has bizarre section offset code,
293      so I do my own right here.  */
294   for (s = so->objfile->sections; s < so->objfile->sections_end; s++)
295     {
296       flagword aflag = bfd_get_section_flags(so->abfd, s->the_bfd_section);
297       if (aflag & SEC_CODE)
298         {
299           s->addr    += so->som_solib.text_addr - so->som_solib.text_link_addr;
300           s->endaddr += so->som_solib.text_addr - so->som_solib.text_link_addr;
301         }
302       else if (aflag & SEC_DATA)
303         {
304           s->addr    += so->som_solib.data_start;
305           s->endaddr += so->som_solib.data_start;
306         }
307       else
308         ;
309     }
310    
311   /* Mark this as a shared library and save private data.
312    */
313   so->objfile->flags |= OBJF_SHARED;
314
315   if (so->objfile->obj_private == NULL)
316     {
317       obj_private = (obj_private_data_t *)
318         obstack_alloc (&so->objfile->psymbol_obstack,
319                        sizeof (obj_private_data_t));
320       obj_private->unwind_info = NULL;
321       obj_private->so_info = NULL;
322       so->objfile->obj_private = obj_private;
323     }
324
325   obj_private = (obj_private_data_t *) so->objfile->obj_private;
326   obj_private->so_info = so;
327
328   if (!bfd_check_format (so->abfd, bfd_object))
329     {
330       error ("\"%s\": not in executable format: %s.",
331              name, bfd_errmsg (bfd_get_error ()));
332     }
333 }
334
335
336 static void
337 som_solib_load_symbols (struct so_list *so, char *name, int from_tty,
338                         CORE_ADDR text_addr, struct target_ops *target)
339 {
340   struct section_table *p;
341   int status;
342   char buf[4];
343   CORE_ADDR presumed_data_start;
344
345 #ifdef SOLIB_DEBUG
346   printf ("--Adding symbols for shared library \"%s\"\n", name);
347 #endif
348
349   som_solib_add_solib_objfile (so, name, from_tty, text_addr);
350
351   /* Now we need to build a section table for this library since
352      we might be debugging a core file from a dynamically linked
353      executable in which the libraries were not privately mapped.  */
354   if (build_section_table (so->abfd,
355                            &so->sections,
356                            &so->sections_end))
357     {
358       error ("Unable to build section table for shared library\n.");
359       return;
360     }
361
362   /* Relocate all the sections based on where they got loaded.  */
363   for (p = so->sections; p < so->sections_end; p++)
364     {
365       if (p->the_bfd_section->flags & SEC_CODE)
366         {
367           p->addr += ANOFFSET (so->objfile->section_offsets, SECT_OFF_TEXT (so->objfile));
368           p->endaddr += ANOFFSET (so->objfile->section_offsets, SECT_OFF_TEXT (so->objfile));
369         }
370       else if (p->the_bfd_section->flags & SEC_DATA)
371         {
372           p->addr += ANOFFSET (so->objfile->section_offsets, SECT_OFF_DATA (so->objfile));
373           p->endaddr += ANOFFSET (so->objfile->section_offsets, SECT_OFF_DATA (so->objfile));
374         }
375     }
376
377   /* Now see if we need to map in the text and data for this shared
378      library (for example debugging a core file which does not use
379      private shared libraries.). 
380
381      Carefully peek at the first text address in the library.  If the
382      read succeeds, then the libraries were privately mapped and were
383      included in the core dump file.
384
385      If the peek failed, then the libraries were not privately mapped
386      and are not in the core file, we'll have to read them in ourselves.  */
387   status = target_read_memory (text_addr, buf, 4);
388   if (status != 0)
389     {
390       int old, new;
391
392       new = so->sections_end - so->sections;
393       
394       old = target_resize_to_sections (target, new);
395       
396       /* Copy over the old data before it gets clobbered.  */
397       memcpy ((char *) (target->to_sections + old),
398               so->sections,
399               ((sizeof (struct section_table)) * new));
400     }
401 }
402
403
404 /* Add symbols from shared libraries into the symtab list, unless the
405    size threshold specified by auto_solib_limit (in megabytes) would
406    be exceeded.  */
407
408 void
409 som_solib_add (char *arg_string, int from_tty, struct target_ops *target, int readsyms)
410 {
411   struct minimal_symbol *msymbol;
412   struct so_list *so_list_tail;
413   CORE_ADDR addr;
414   asection *shlib_info;
415   int status;
416   unsigned int dld_flags;
417   char buf[4], *re_err;
418   int threshold_warning_given = 0;
419
420   /* First validate our arguments.  */
421   re_err = re_comp (arg_string ? arg_string : ".");
422   if (re_err != NULL)
423     {
424       error ("Invalid regexp: %s", re_err);
425     }
426
427   /* If we're debugging a core file, or have attached to a running
428      process, then som_solib_create_inferior_hook will not have been
429      called.
430
431      We need to first determine if we're dealing with a dynamically
432      linked executable.  If not, then return without an error or warning.
433
434      We also need to examine __dld_flags to determine if the shared library
435      list is valid and to determine if the libraries have been privately
436      mapped.  */
437   if (symfile_objfile == NULL)
438     return;
439
440   /* First see if the objfile was dynamically linked.  */
441   shlib_info = bfd_get_section_by_name (symfile_objfile->obfd, "$SHLIB_INFO$");
442   if (!shlib_info)
443     return;
444
445   /* It's got a $SHLIB_INFO$ section, make sure it's not empty.  */
446   if (bfd_section_size (symfile_objfile->obfd, shlib_info) == 0)
447     return;
448
449   msymbol = lookup_minimal_symbol ("__dld_flags", NULL, NULL);
450   if (msymbol == NULL)
451     {
452       error ("Unable to find __dld_flags symbol in object file.\n");
453       return;
454     }
455
456   addr = SYMBOL_VALUE_ADDRESS (msymbol);
457   /* Read the current contents.  */
458   status = target_read_memory (addr, buf, 4);
459   if (status != 0)
460     {
461       error ("Unable to read __dld_flags\n");
462       return;
463     }
464   dld_flags = extract_unsigned_integer (buf, 4);
465
466   /* __dld_list may not be valid.  If not, then we punt, warning the user if
467      we were called as a result of the add-symfile command.
468    */
469   if ((dld_flags & DLD_FLAGS_LISTVALID) == 0)
470     {
471       if (from_tty)
472         error ("__dld_list is not valid according to __dld_flags.\n");
473       return;
474     }
475
476   /* If the libraries were not mapped private, warn the user.  */
477   if ((dld_flags & DLD_FLAGS_MAPPRIVATE) == 0)
478     warning ("The shared libraries were not privately mapped; setting a\nbreakpoint in a shared library will not work until you rerun the program.\n");
479
480   msymbol = lookup_minimal_symbol ("__dld_list", NULL, NULL);
481   if (!msymbol)
482     {
483       /* Older crt0.o files (hpux8) don't have __dld_list as a symbol,
484          but the data is still available if you know where to look.  */
485       msymbol = lookup_minimal_symbol ("__dld_flags", NULL, NULL);
486       if (!msymbol)
487         {
488           error ("Unable to find dynamic library list.\n");
489           return;
490         }
491       addr = SYMBOL_VALUE_ADDRESS (msymbol) - 8;
492     }
493   else
494     addr = SYMBOL_VALUE_ADDRESS (msymbol);
495
496   status = target_read_memory (addr, buf, 4);
497   if (status != 0)
498     {
499       error ("Unable to find dynamic library list.\n");
500       return;
501     }
502
503   addr = extract_unsigned_integer (buf, 4);
504
505   /* If addr is zero, then we're using an old dynamic loader which
506      doesn't maintain __dld_list.  We'll have to use a completely
507      different approach to get shared library information.  */
508   if (addr == 0)
509     goto old_dld;
510
511   /* Using the information in __dld_list is the preferred method
512      to get at shared library information.  It doesn't depend on
513      any functions in /opt/langtools/lib/end.o and has a chance of working
514      with hpux10 when it is released.  */
515   status = target_read_memory (addr, buf, 4);
516   if (status != 0)
517     {
518       error ("Unable to find dynamic library list.\n");
519       return;
520     }
521
522   /* addr now holds the address of the first entry in the dynamic
523      library list.  */
524   addr = extract_unsigned_integer (buf, 4);
525
526   /* Now that we have a pointer to the dynamic library list, walk
527      through it and add the symbols for each library.  */
528
529   so_list_tail = so_list_head;
530   /* Find the end of the list of shared objects.  */
531   while (so_list_tail && so_list_tail->next)
532     so_list_tail = so_list_tail->next;
533
534 #ifdef SOLIB_DEBUG
535   printf ("--About to read shared library list data\n");
536 #endif
537
538   /* "addr" will always point to the base of the
539    * current data entry describing the current
540    * shared library.
541    */
542   while (1)
543     {
544       CORE_ADDR name_addr, text_addr;
545       unsigned int name_len;
546       char *name;
547       struct so_list *new_so;
548       struct so_list *so_list = so_list_head;
549       struct stat statbuf;
550       LONGEST st_size;
551       int is_main_program;
552
553       if (addr == 0)
554         break;
555
556       /* Get a pointer to the name of this library.  */
557       status = target_read_memory (addr, buf, 4);
558       if (status != 0)
559         goto err;
560
561       name_addr = extract_unsigned_integer (buf, 4);
562       name_len = 0;
563       while (1)
564         {
565           target_read_memory (name_addr + name_len, buf, 1);
566           if (status != 0)
567             goto err;
568
569           name_len++;
570           if (*buf == '\0')
571             break;
572         }
573       name = alloca (name_len);
574       status = target_read_memory (name_addr, name, name_len);
575       if (status != 0)
576         goto err;
577
578       /* See if we've already loaded something with this name.  */
579       while (so_list)
580         {
581           if (!strcmp (so_list->som_solib.name, name))
582             break;
583           so_list = so_list->next;
584         }
585
586       /* See if the file exists.  If not, give a warning, but don't
587          die.  */
588       status = stat (name, &statbuf);
589       if (status == -1)
590         {
591           warning ("Can't find file %s referenced in dld_list.", name);
592
593           status = target_read_memory (addr + 36, buf, 4);
594           if (status != 0)
595             goto err;
596
597           addr = (CORE_ADDR) extract_unsigned_integer (buf, 4);
598           continue;
599         }
600
601       /* If we've already loaded this one or it's the main program, skip it.  */
602       is_main_program = (strcmp (name, symfile_objfile->name) == 0);
603       if (so_list || is_main_program)
604         {
605           /* This is the "next" pointer in the strcuture.
606            */
607           status = target_read_memory (addr + 36, buf, 4);
608           if (status != 0)
609             goto err;
610
611           addr = (CORE_ADDR) extract_unsigned_integer (buf, 4);
612
613           /* Record the main program's symbol table size. */
614           if (is_main_program && !so_list)
615             {
616               st_size = som_solib_sizeof_symbol_table (name);
617               som_solib_total_st_size += st_size;
618             }
619
620           /* Was this a shlib that we noted but didn't load the symbols for?
621              If so, were we invoked this time from the command-line, via
622              a 'sharedlibrary' or 'add-symbol-file' command?  If yes to
623              both, we'd better load the symbols this time.
624            */
625           if (from_tty && so_list && !is_main_program && (so_list->objfile == NULL))
626             som_solib_load_symbols (so_list,
627                                     name,
628                                     from_tty,
629                                     so_list->som_solib.text_addr,
630                                     target);
631
632           continue;
633         }
634
635       name = obsavestring (name, name_len - 1,
636                            &symfile_objfile->symbol_obstack);
637
638       status = target_read_memory (addr + 8, buf, 4);
639       if (status != 0)
640         goto err;
641
642       text_addr = extract_unsigned_integer (buf, 4);
643
644       new_so = (struct so_list *) xmalloc (sizeof (struct so_list));
645       memset ((char *) new_so, 0, sizeof (struct so_list));
646       if (so_list_head == NULL)
647         {
648           so_list_head = new_so;
649           so_list_tail = new_so;
650         }
651       else
652         {
653           so_list_tail->next = new_so;
654           so_list_tail = new_so;
655         }
656
657       /* Fill in all the entries in GDB's shared library list.
658        */
659
660       new_so->solib_addr = addr;
661       new_so->som_solib.name = name;
662       status = target_read_memory (addr + 4, buf, 4);
663       if (status != 0)
664         goto err;
665
666       new_so->som_solib.struct_version = extract_unsigned_integer (buf + 3, 1);
667       new_so->som_solib.bind_mode = extract_unsigned_integer (buf + 2, 1);
668       /* Following is "high water mark", highest version number
669        * seen, rather than plain version number.
670        */
671       new_so->som_solib.library_version = extract_unsigned_integer (buf, 2);
672       new_so->som_solib.text_addr = text_addr;
673
674       /* Q: What about longword at "addr + 8"?
675        * A: It's read above, out of order, into "text_addr".
676        */
677
678       status = target_read_memory (addr + 12, buf, 4);
679       if (status != 0)
680         goto err;
681
682       new_so->som_solib.text_link_addr = extract_unsigned_integer (buf, 4);
683
684       status = target_read_memory (addr + 16, buf, 4);
685       if (status != 0)
686         goto err;
687
688       new_so->som_solib.text_end = extract_unsigned_integer (buf, 4);
689
690       status = target_read_memory (addr + 20, buf, 4);
691       if (status != 0)
692         goto err;
693
694       new_so->som_solib.data_start = extract_unsigned_integer (buf, 4);
695
696       status = target_read_memory (addr + 24, buf, 4);
697       if (status != 0)
698         goto err;
699
700       new_so->som_solib.bss_start = extract_unsigned_integer (buf, 4);
701
702       status = target_read_memory (addr + 28, buf, 4);
703       if (status != 0)
704         goto err;
705
706       new_so->som_solib.data_end = extract_unsigned_integer (buf, 4);
707
708       status = target_read_memory (addr + 32, buf, 4);
709       if (status != 0)
710         goto err;
711
712       new_so->som_solib.got_value = extract_unsigned_integer (buf, 4);
713
714       status = target_read_memory (addr + 36, buf, 4);
715       if (status != 0)
716         goto err;
717
718       new_so->som_solib.next =
719         address_to_host_pointer (extract_unsigned_integer (buf, 4));
720
721       /* Note that we don't re-set "addr" to the next pointer
722        * until after we've read the trailing data.
723        */
724
725       status = target_read_memory (addr + 40, buf, 4);
726       new_so->som_solib.tsd_start_addr = extract_unsigned_integer (buf, 4);
727       if (status != 0)
728         goto err;
729
730       /* Now indirect via that value!
731        */
732       status = target_read_memory (new_so->som_solib.tsd_start_addr, buf, 4);
733       new_so->som_solib.tsd_start_addr = extract_unsigned_integer (buf, 4);
734       if (status != 0)
735         goto err;
736 #ifdef SOLIB_DEBUG
737       printf ("\n+ library \"%s\" is described at 0x%x\n", name, addr);
738       printf ("  'version' is %d\n", new_so->som_solib.struct_version);
739       printf ("  'bind_mode' is %d\n", new_so->som_solib.bind_mode);
740       printf ("  'library_version' is %d\n", new_so->som_solib.library_version);
741       printf ("  'text_addr' is 0x%x\n", new_so->som_solib.text_addr);
742       printf ("  'text_link_addr' is 0x%x\n", new_so->som_solib.text_link_addr);
743       printf ("  'text_end' is 0x%x\n", new_so->som_solib.text_end);
744       printf ("  'data_start' is 0x%x\n", new_so->som_solib.data_start);
745       printf ("  'bss_start' is 0x%x\n", new_so->som_solib.bss_start);
746       printf ("  'data_end' is 0x%x\n", new_so->som_solib.data_end);
747       printf ("  'got_value' is %x\n", new_so->som_solib.got_value);
748       printf ("  'next' is 0x%x\n", new_so->som_solib.next);
749       printf ("  'tsd_start_addr' is 0x%x\n", new_so->som_solib.tsd_start_addr);
750 #endif
751
752       /* Go on to the next shared library descriptor.
753        */
754       addr = (CORE_ADDR) new_so->som_solib.next;
755
756
757
758       /* At this point, we have essentially hooked the shlib into the
759          "info share" command.  However, we haven't yet loaded its
760          symbol table.  We must now decide whether we ought to, i.e.,
761          whether doing so would exceed the symbol table size threshold.
762
763          If the threshold has just now been exceeded, then we'll issue
764          a warning message (which explains how to load symbols manually,
765          if the user so desires).
766
767          If the threshold has just now or previously been exceeded,
768          we'll just add the shlib to the list of object files, but won't
769          actually load its symbols.  (This is more useful than it might
770          sound, for it allows us to e.g., still load and use the shlibs'
771          unwind information for stack tracebacks.)
772        */
773
774       /* Note that we DON'T want to preclude the user from using the
775          add-symbol-file command!  Thus, we only worry about the threshold
776          when we're invoked for other reasons.
777        */
778       st_size = som_solib_sizeof_symbol_table (name);
779       som_solib_st_size_threshold_exceeded =
780         !from_tty &&
781         auto_solib_limit > 0 &&
782         readsyms &&
783         ((st_size + som_solib_total_st_size) > (auto_solib_limit * (LONGEST) (1024 * 1024)));
784
785       if (som_solib_st_size_threshold_exceeded)
786         {
787           if (!threshold_warning_given)
788             warning ("Symbols for some libraries have not been loaded, because\ndoing so would exceed the size threshold specified by auto-solib-limit.\nTo manually load symbols, use the 'sharedlibrary' command.\nTo raise the threshold, set auto-solib-limit to a larger value and rerun\nthe program.\n");
789           threshold_warning_given = 1;
790
791           /* We'll still make note of this shlib, even if we don't
792              read its symbols.  This allows us to use its unwind
793              information well enough to know how to e.g., correctly
794              do a traceback from a PC within the shlib, even if we
795              can't symbolize those PCs...
796            */
797           som_solib_add_solib_objfile (new_so, name, from_tty, text_addr);
798           continue;
799         }
800
801       som_solib_total_st_size += st_size;
802
803       /* This fills in new_so->objfile, among others. */
804       som_solib_load_symbols (new_so, name, from_tty, text_addr, target);
805     }
806
807 #ifdef SOLIB_DEBUG
808   printf ("--Done reading shared library data\n");
809 #endif
810
811   /* Getting new symbols may change our opinion about what is
812      frameless.  */
813   reinit_frame_cache ();
814   return;
815
816 old_dld:
817   error ("Debugging dynamic executables loaded via the hpux8 dld.sl is not supported.\n");
818   return;
819
820 err:
821   error ("Error while reading dynamic library list.\n");
822   return;
823 }
824
825
826 /* This hook gets called just before the first instruction in the
827    inferior process is executed.
828
829    This is our opportunity to set magic flags in the inferior so
830    that GDB can be notified when a shared library is mapped in and
831    to tell the dynamic linker that a private copy of the library is
832    needed (so GDB can set breakpoints in the library).
833
834    __dld_flags is the location of the magic flags; as of this implementation
835    there are 3 flags of interest:
836
837    bit 0 when set indicates that private copies of the libraries are needed
838    bit 1 when set indicates that the callback hook routine is valid
839    bit 2 when set indicates that the dynamic linker should maintain the
840    __dld_list structure when loading/unloading libraries.
841
842    Note that shared libraries are not mapped in at this time, so we have
843    run the inferior until the libraries are mapped in.  Typically this
844    means running until the "_start" is called.  */
845
846 void
847 som_solib_create_inferior_hook (void)
848 {
849   struct minimal_symbol *msymbol;
850   unsigned int dld_flags, status, have_endo;
851   asection *shlib_info;
852   char buf[4];
853   struct objfile *objfile;
854   CORE_ADDR anaddr;
855
856   /* First, remove all the solib event breakpoints.  Their addresses
857      may have changed since the last time we ran the program.  */
858   remove_solib_event_breakpoints ();
859
860   if (symfile_objfile == NULL)
861     return;
862
863   /* First see if the objfile was dynamically linked.  */
864   shlib_info = bfd_get_section_by_name (symfile_objfile->obfd, "$SHLIB_INFO$");
865   if (!shlib_info)
866     return;
867
868   /* It's got a $SHLIB_INFO$ section, make sure it's not empty.  */
869   if (bfd_section_size (symfile_objfile->obfd, shlib_info) == 0)
870     return;
871
872   have_endo = 0;
873   /* Slam the pid of the process into __d_pid.
874
875      We used to warn when this failed, but that warning is only useful
876      on very old HP systems (hpux9 and older).  The warnings are an
877      annoyance to users of modern systems and foul up the testsuite as
878      well.  As a result, the warnings have been disabled.  */
879   msymbol = lookup_minimal_symbol ("__d_pid", NULL, symfile_objfile);
880   if (msymbol == NULL)
881     goto keep_going;
882
883   anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
884   store_unsigned_integer (buf, 4, PIDGET (inferior_ptid));
885   status = target_write_memory (anaddr, buf, 4);
886   if (status != 0)
887     {
888       warning ("Unable to write __d_pid");
889       warning ("Suggest linking with /opt/langtools/lib/end.o.");
890       warning ("GDB will be unable to track shl_load/shl_unload calls");
891       goto keep_going;
892     }
893
894   /* Get the value of _DLD_HOOK (an export stub) and put it in __dld_hook;
895      This will force the dynamic linker to call __d_trap when significant
896      events occur.
897
898      Note that the above is the pre-HP-UX 9.0 behaviour.  At 9.0 and above,
899      the dld provides an export stub named "__d_trap" as well as the
900      function named "__d_trap" itself, but doesn't provide "_DLD_HOOK".
901      We'll look first for the old flavor and then the new.
902    */
903   msymbol = lookup_minimal_symbol ("_DLD_HOOK", NULL, symfile_objfile);
904   if (msymbol == NULL)
905     msymbol = lookup_minimal_symbol ("__d_trap", NULL, symfile_objfile);
906   if (msymbol == NULL)
907     {
908       warning ("Unable to find _DLD_HOOK symbol in object file.");
909       warning ("Suggest linking with /opt/langtools/lib/end.o.");
910       warning ("GDB will be unable to track shl_load/shl_unload calls");
911       goto keep_going;
912     }
913   anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
914   dld_cache.hook.address = anaddr;
915
916   /* Grrr, this might not be an export symbol!  We have to find the
917      export stub.  */
918   ALL_OBJFILES (objfile)
919   {
920     struct unwind_table_entry *u;
921     struct minimal_symbol *msymbol2;
922
923     /* What a crock.  */
924     msymbol2 = lookup_minimal_symbol_solib_trampoline (SYMBOL_NAME (msymbol),
925                                                        NULL, objfile);
926     /* Found a symbol with the right name.  */
927     if (msymbol2)
928       {
929         struct unwind_table_entry *u;
930         /* It must be a shared library trampoline.  */
931         if (SYMBOL_TYPE (msymbol2) != mst_solib_trampoline)
932           continue;
933
934         /* It must also be an export stub.  */
935         u = find_unwind_entry (SYMBOL_VALUE (msymbol2));
936         if (!u || u->stub_unwind.stub_type != EXPORT)
937           continue;
938
939         /* OK.  Looks like the correct import stub.  */
940         anaddr = SYMBOL_VALUE (msymbol2);
941         dld_cache.hook_stub.address = anaddr;
942       }
943   }
944   store_unsigned_integer (buf, 4, anaddr);
945
946   msymbol = lookup_minimal_symbol ("__dld_hook", NULL, symfile_objfile);
947   if (msymbol == NULL)
948     {
949       warning ("Unable to find __dld_hook symbol in object file.");
950       warning ("Suggest linking with /opt/langtools/lib/end.o.");
951       warning ("GDB will be unable to track shl_load/shl_unload calls");
952       goto keep_going;
953     }
954   anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
955   status = target_write_memory (anaddr, buf, 4);
956
957   /* Now set a shlib_event breakpoint at __d_trap so we can track
958      significant shared library events.  */
959   msymbol = lookup_minimal_symbol ("__d_trap", NULL, symfile_objfile);
960   if (msymbol == NULL)
961     {
962       warning ("Unable to find __dld_d_trap symbol in object file.");
963       warning ("Suggest linking with /opt/langtools/lib/end.o.");
964       warning ("GDB will be unable to track shl_load/shl_unload calls");
965       goto keep_going;
966     }
967   create_solib_event_breakpoint (SYMBOL_VALUE_ADDRESS (msymbol));
968
969   /* We have all the support usually found in end.o, so we can track
970      shl_load and shl_unload calls.  */
971   have_endo = 1;
972
973 keep_going:
974
975   /* Get the address of __dld_flags, if no such symbol exists, then we can
976      not debug the shared code.  */
977   msymbol = lookup_minimal_symbol ("__dld_flags", NULL, NULL);
978   if (msymbol == NULL)
979     {
980       error ("Unable to find __dld_flags symbol in object file.\n");
981     }
982
983   anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
984
985   /* Read the current contents.  */
986   status = target_read_memory (anaddr, buf, 4);
987   if (status != 0)
988     {
989       error ("Unable to read __dld_flags\n");
990     }
991   dld_flags = extract_unsigned_integer (buf, 4);
992
993   /* Turn on the flags we care about.  */
994   dld_flags |= DLD_FLAGS_MAPPRIVATE;
995   if (have_endo)
996     dld_flags |= DLD_FLAGS_HOOKVALID;
997   store_unsigned_integer (buf, 4, dld_flags);
998   status = target_write_memory (anaddr, buf, 4);
999   if (status != 0)
1000     {
1001       error ("Unable to write __dld_flags\n");
1002     }
1003
1004   /* Now find the address of _start and set a breakpoint there. 
1005      We still need this code for two reasons:
1006
1007      * Not all sites have /opt/langtools/lib/end.o, so it's not always
1008      possible to track the dynamic linker's events.
1009
1010      * At this time no events are triggered for shared libraries
1011      loaded at startup time (what a crock).  */
1012
1013   msymbol = lookup_minimal_symbol ("_start", NULL, symfile_objfile);
1014   if (msymbol == NULL)
1015     {
1016       error ("Unable to find _start symbol in object file.\n");
1017     }
1018
1019   anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
1020
1021   /* Make the breakpoint at "_start" a shared library event breakpoint.  */
1022   create_solib_event_breakpoint (anaddr);
1023
1024   /* Wipe out all knowledge of old shared libraries since their
1025      mapping can change from one exec to another!  */
1026   while (so_list_head)
1027     {
1028       struct so_list *temp;
1029
1030       temp = so_list_head;
1031       xfree (so_list_head);
1032       so_list_head = temp->next;
1033     }
1034   clear_symtab_users ();
1035 }
1036
1037 /* This operation removes the "hook" between GDB and the dynamic linker,
1038    which causes the dld to notify GDB of shared library events.
1039
1040    After this operation completes, the dld will no longer notify GDB of
1041    shared library events.  To resume notifications, GDB must call
1042    som_solib_create_inferior_hook.
1043
1044    This operation does not remove any knowledge of shared libraries which
1045    GDB may already have been notified of.
1046  */
1047 void
1048 som_solib_remove_inferior_hook (int pid)
1049 {
1050   CORE_ADDR addr;
1051   struct minimal_symbol *msymbol;
1052   int status;
1053   char dld_flags_buffer[TARGET_INT_BIT / TARGET_CHAR_BIT];
1054   unsigned int dld_flags_value;
1055   struct cleanup *old_cleanups = save_inferior_ptid ();
1056
1057   /* Ensure that we're really operating on the specified process. */
1058   inferior_ptid = pid_to_ptid (pid);
1059
1060   /* We won't bother to remove the solib breakpoints from this process.
1061
1062      In fact, on PA64 the breakpoint is hard-coded into the dld callback,
1063      and thus we're not supposed to remove it.
1064
1065      Rather, we'll merely clear the dld_flags bit that enables callbacks.
1066    */
1067   msymbol = lookup_minimal_symbol ("__dld_flags", NULL, NULL);
1068
1069   addr = SYMBOL_VALUE_ADDRESS (msymbol);
1070   status = target_read_memory (addr, dld_flags_buffer, TARGET_INT_BIT / TARGET_CHAR_BIT);
1071
1072   dld_flags_value = extract_unsigned_integer (dld_flags_buffer,
1073                                               sizeof (dld_flags_value));
1074
1075   dld_flags_value &= ~DLD_FLAGS_HOOKVALID;
1076   store_unsigned_integer (dld_flags_buffer,
1077                           sizeof (dld_flags_value),
1078                           dld_flags_value);
1079   status = target_write_memory (addr, dld_flags_buffer, TARGET_INT_BIT / TARGET_CHAR_BIT);
1080
1081   do_cleanups (old_cleanups);
1082 }
1083
1084
1085 /* This function creates a breakpoint on the dynamic linker hook, which
1086    is called when e.g., a shl_load or shl_unload call is made.  This
1087    breakpoint will only trigger when a shl_load call is made.
1088
1089    If filename is NULL, then loads of any dll will be caught.  Else,
1090    only loads of the file whose pathname is the string contained by
1091    filename will be caught.
1092
1093    Undefined behaviour is guaranteed if this function is called before
1094    som_solib_create_inferior_hook.
1095  */
1096 void
1097 som_solib_create_catch_load_hook (int pid, int tempflag, char *filename,
1098                                   char *cond_string)
1099 {
1100   create_solib_load_event_breakpoint ("__d_trap", tempflag, filename, cond_string);
1101 }
1102
1103 /* This function creates a breakpoint on the dynamic linker hook, which
1104    is called when e.g., a shl_load or shl_unload call is made.  This
1105    breakpoint will only trigger when a shl_unload call is made.
1106
1107    If filename is NULL, then unloads of any dll will be caught.  Else,
1108    only unloads of the file whose pathname is the string contained by
1109    filename will be caught.
1110
1111    Undefined behaviour is guaranteed if this function is called before
1112    som_solib_create_inferior_hook.
1113  */
1114 void
1115 som_solib_create_catch_unload_hook (int pid, int tempflag, char *filename,
1116                                     char *cond_string)
1117 {
1118   create_solib_unload_event_breakpoint ("__d_trap", tempflag, filename, cond_string);
1119 }
1120
1121 int
1122 som_solib_have_load_event (int pid)
1123 {
1124   CORE_ADDR event_kind;
1125
1126   event_kind = read_register (ARG0_REGNUM);
1127   return (event_kind == SHL_LOAD);
1128 }
1129
1130 int
1131 som_solib_have_unload_event (int pid)
1132 {
1133   CORE_ADDR event_kind;
1134
1135   event_kind = read_register (ARG0_REGNUM);
1136   return (event_kind == SHL_UNLOAD);
1137 }
1138
1139 static char *
1140 som_solib_library_pathname (int pid)
1141 {
1142   CORE_ADDR dll_handle_address;
1143   CORE_ADDR dll_pathname_address;
1144   struct som_solib_mapped_entry dll_descriptor;
1145   char *p;
1146   static char dll_pathname[1024];
1147
1148   /* Read the descriptor of this newly-loaded library. */
1149   dll_handle_address = read_register (ARG1_REGNUM);
1150   read_memory (dll_handle_address, (char *) &dll_descriptor, sizeof (dll_descriptor));
1151
1152   /* We can find a pointer to the dll's pathname within the descriptor. */
1153   dll_pathname_address = (CORE_ADDR) dll_descriptor.name;
1154
1155   /* Read the pathname, one byte at a time. */
1156   p = dll_pathname;
1157   for (;;)
1158     {
1159       char b;
1160       read_memory (dll_pathname_address++, (char *) &b, 1);
1161       *p++ = b;
1162       if (b == '\0')
1163         break;
1164     }
1165
1166   return dll_pathname;
1167 }
1168
1169 char *
1170 som_solib_loaded_library_pathname (int pid)
1171 {
1172   if (!som_solib_have_load_event (pid))
1173     error ("Must have a load event to use this query");
1174
1175   return som_solib_library_pathname (pid);
1176 }
1177
1178 char *
1179 som_solib_unloaded_library_pathname (int pid)
1180 {
1181   if (!som_solib_have_unload_event (pid))
1182     error ("Must have an unload event to use this query");
1183
1184   return som_solib_library_pathname (pid);
1185 }
1186
1187 static void
1188 som_solib_desire_dynamic_linker_symbols (void)
1189 {
1190   struct objfile *objfile;
1191   struct unwind_table_entry *u;
1192   struct minimal_symbol *dld_msymbol;
1193
1194   /* Do we already know the value of these symbols?  If so, then
1195      we've no work to do.
1196
1197      (If you add clauses to this test, be sure to likewise update the
1198      test within the loop.)
1199    */
1200   if (dld_cache.is_valid)
1201     return;
1202
1203   ALL_OBJFILES (objfile)
1204   {
1205     dld_msymbol = lookup_minimal_symbol ("shl_load", NULL, objfile);
1206     if (dld_msymbol != NULL)
1207       {
1208         dld_cache.load.address = SYMBOL_VALUE (dld_msymbol);
1209         dld_cache.load.unwind = find_unwind_entry (dld_cache.load.address);
1210       }
1211
1212     dld_msymbol = lookup_minimal_symbol_solib_trampoline ("shl_load",
1213                                                           NULL,
1214                                                           objfile);
1215     if (dld_msymbol != NULL)
1216       {
1217         if (SYMBOL_TYPE (dld_msymbol) == mst_solib_trampoline)
1218           {
1219             u = find_unwind_entry (SYMBOL_VALUE (dld_msymbol));
1220             if ((u != NULL) && (u->stub_unwind.stub_type == EXPORT))
1221               {
1222                 dld_cache.load_stub.address = SYMBOL_VALUE (dld_msymbol);
1223                 dld_cache.load_stub.unwind = u;
1224               }
1225           }
1226       }
1227
1228     dld_msymbol = lookup_minimal_symbol ("shl_unload", NULL, objfile);
1229     if (dld_msymbol != NULL)
1230       {
1231         dld_cache.unload.address = SYMBOL_VALUE (dld_msymbol);
1232         dld_cache.unload.unwind = find_unwind_entry (dld_cache.unload.address);
1233
1234         /* ??rehrauer: I'm not sure exactly what this is, but it appears
1235            that on some HPUX 10.x versions, there's two unwind regions to
1236            cover the body of "shl_unload", the second being 4 bytes past
1237            the end of the first.  This is a large hack to handle that
1238            case, but since I don't seem to have any legitimate way to
1239            look for this thing via the symbol table...
1240          */
1241         if (dld_cache.unload.unwind != NULL)
1242           {
1243             u = find_unwind_entry (dld_cache.unload.unwind->region_end + 4);
1244             if (u != NULL)
1245               {
1246                 dld_cache.unload2.address = u->region_start;
1247                 dld_cache.unload2.unwind = u;
1248               }
1249           }
1250       }
1251
1252     dld_msymbol = lookup_minimal_symbol_solib_trampoline ("shl_unload",
1253                                                           NULL,
1254                                                           objfile);
1255     if (dld_msymbol != NULL)
1256       {
1257         if (SYMBOL_TYPE (dld_msymbol) == mst_solib_trampoline)
1258           {
1259             u = find_unwind_entry (SYMBOL_VALUE (dld_msymbol));
1260             if ((u != NULL) && (u->stub_unwind.stub_type == EXPORT))
1261               {
1262                 dld_cache.unload_stub.address = SYMBOL_VALUE (dld_msymbol);
1263                 dld_cache.unload_stub.unwind = u;
1264               }
1265           }
1266       }
1267
1268     /* Did we find everything we were looking for?  If so, stop. */
1269     if ((dld_cache.load.address != 0)
1270         && (dld_cache.load_stub.address != 0)
1271         && (dld_cache.unload.address != 0)
1272         && (dld_cache.unload_stub.address != 0))
1273       {
1274         dld_cache.is_valid = 1;
1275         break;
1276       }
1277   }
1278
1279   dld_cache.hook.unwind = find_unwind_entry (dld_cache.hook.address);
1280   dld_cache.hook_stub.unwind = find_unwind_entry (dld_cache.hook_stub.address);
1281
1282   /* We're prepared not to find some of these symbols, which is why
1283      this function is a "desire" operation, and not a "require".
1284    */
1285 }
1286
1287 int
1288 som_solib_in_dynamic_linker (int pid, CORE_ADDR pc)
1289 {
1290   struct unwind_table_entry *u_pc;
1291
1292   /* Are we in the dld itself?
1293
1294      ??rehrauer: Large hack -- We'll assume that any address in a
1295      shared text region is the dld's text.  This would obviously
1296      fall down if the user attached to a process, whose shlibs
1297      weren't mapped to a (writeable) private region.  However, in
1298      that case the debugger probably isn't able to set the fundamental
1299      breakpoint in the dld callback anyways, so this hack should be
1300      safe.
1301    */
1302   if ((pc & (CORE_ADDR) 0xc0000000) == (CORE_ADDR) 0xc0000000)
1303     return 1;
1304
1305   /* Cache the address of some symbols that are part of the dynamic
1306      linker, if not already known.
1307    */
1308   som_solib_desire_dynamic_linker_symbols ();
1309
1310   /* Are we in the dld callback?  Or its export stub? */
1311   u_pc = find_unwind_entry (pc);
1312   if (u_pc == NULL)
1313     return 0;
1314
1315   if ((u_pc == dld_cache.hook.unwind) || (u_pc == dld_cache.hook_stub.unwind))
1316     return 1;
1317
1318   /* Or the interface of the dld (i.e., "shl_load" or friends)? */
1319   if ((u_pc == dld_cache.load.unwind)
1320       || (u_pc == dld_cache.unload.unwind)
1321       || (u_pc == dld_cache.unload2.unwind)
1322       || (u_pc == dld_cache.load_stub.unwind)
1323       || (u_pc == dld_cache.unload_stub.unwind))
1324     return 1;
1325
1326   /* Apparently this address isn't part of the dld's text. */
1327   return 0;
1328 }
1329
1330
1331 /* Return the GOT value for the shared library in which ADDR belongs.  If
1332    ADDR isn't in any known shared library, return zero.  */
1333
1334 CORE_ADDR
1335 som_solib_get_got_by_pc (CORE_ADDR addr)
1336 {
1337   struct so_list *so_list = so_list_head;
1338   CORE_ADDR got_value = 0;
1339
1340   while (so_list)
1341     {
1342       if (so_list->som_solib.text_addr <= addr
1343           && so_list->som_solib.text_end > addr)
1344         {
1345           got_value = so_list->som_solib.got_value;
1346           break;
1347         }
1348       so_list = so_list->next;
1349     }
1350   return got_value;
1351 }
1352
1353 /*  elz:
1354    Return the address of the handle of the shared library
1355    in which ADDR belongs.  If
1356    ADDR isn't in any known shared library, return zero.  */
1357 /* this function is used in hppa_fix_call_dummy in hppa-tdep.c */
1358
1359 CORE_ADDR
1360 som_solib_get_solib_by_pc (CORE_ADDR addr)
1361 {
1362   struct so_list *so_list = so_list_head;
1363
1364   while (so_list)
1365     {
1366       if (so_list->som_solib.text_addr <= addr
1367           && so_list->som_solib.text_end > addr)
1368         {
1369           break;
1370         }
1371       so_list = so_list->next;
1372     }
1373   if (so_list)
1374     return so_list->solib_addr;
1375   else
1376     return 0;
1377 }
1378
1379
1380 int
1381 som_solib_section_offsets (struct objfile *objfile,
1382                            struct section_offsets *offsets)
1383 {
1384   struct so_list *so_list = so_list_head;
1385
1386   while (so_list)
1387     {
1388       /* Oh what a pain!  We need the offsets before so_list->objfile
1389          is valid.  The BFDs will never match.  Make a best guess.  */
1390       if (strstr (objfile->name, so_list->som_solib.name))
1391         {
1392           asection *private_section;
1393
1394           /* The text offset is easy.  */
1395           offsets->offsets[SECT_OFF_TEXT (objfile)]
1396             = (so_list->som_solib.text_addr
1397                - so_list->som_solib.text_link_addr);
1398           offsets->offsets[SECT_OFF_RODATA (objfile)]
1399             = ANOFFSET (offsets, SECT_OFF_TEXT (objfile));
1400
1401           /* We should look at presumed_dp in the SOM header, but
1402              that's not easily available.  This should be OK though.  */
1403           private_section = bfd_get_section_by_name (objfile->obfd,
1404                                                      "$PRIVATE$");
1405           if (!private_section)
1406             {
1407               warning ("Unable to find $PRIVATE$ in shared library!");
1408               offsets->offsets[SECT_OFF_DATA (objfile)] = 0;
1409               offsets->offsets[SECT_OFF_BSS (objfile)] = 0;
1410               return 1;
1411             }
1412           offsets->offsets[SECT_OFF_DATA (objfile)]
1413             = (so_list->som_solib.data_start - private_section->vma);
1414           offsets->offsets[SECT_OFF_BSS (objfile)]
1415             = ANOFFSET (offsets, SECT_OFF_DATA (objfile));
1416           return 1;
1417         }
1418       so_list = so_list->next;
1419     }
1420   return 0;
1421 }
1422
1423 /* Dump information about all the currently loaded shared libraries.  */
1424
1425 static void
1426 som_sharedlibrary_info_command (char *ignore, int from_tty)
1427 {
1428   struct so_list *so_list = so_list_head;
1429
1430   if (exec_bfd == NULL)
1431     {
1432       printf_unfiltered ("No executable file.\n");
1433       return;
1434     }
1435
1436   if (so_list == NULL)
1437     {
1438       printf_unfiltered ("No shared libraries loaded at this time.\n");
1439       return;
1440     }
1441
1442   printf_unfiltered ("Shared Object Libraries\n");
1443   printf_unfiltered ("    %-12s%-12s%-12s%-12s%-12s%-12s\n",
1444          "  flags", "  tstart", "   tend", "  dstart", "   dend", "   dlt");
1445   while (so_list)
1446     {
1447       unsigned int flags;
1448
1449       flags = so_list->som_solib.struct_version << 24;
1450       flags |= so_list->som_solib.bind_mode << 16;
1451       flags |= so_list->som_solib.library_version;
1452       printf_unfiltered ("%s", so_list->som_solib.name);
1453       if (so_list->objfile == NULL)
1454         printf_unfiltered ("  (symbols not loaded)");
1455       printf_unfiltered ("\n");
1456       printf_unfiltered ("    %-12s", local_hex_string_custom (flags, "08l"));
1457       printf_unfiltered ("%-12s",
1458              local_hex_string_custom (so_list->som_solib.text_addr, "08l"));
1459       printf_unfiltered ("%-12s",
1460               local_hex_string_custom (so_list->som_solib.text_end, "08l"));
1461       printf_unfiltered ("%-12s",
1462             local_hex_string_custom (so_list->som_solib.data_start, "08l"));
1463       printf_unfiltered ("%-12s",
1464               local_hex_string_custom (so_list->som_solib.data_end, "08l"));
1465       printf_unfiltered ("%-12s\n",
1466              local_hex_string_custom (so_list->som_solib.got_value, "08l"));
1467       so_list = so_list->next;
1468     }
1469 }
1470
1471 static void
1472 som_solib_sharedlibrary_command (char *args, int from_tty)
1473 {
1474   dont_repeat ();
1475   som_solib_add (args, from_tty, (struct target_ops *) 0, 1);
1476 }
1477
1478
1479
1480 char *
1481 som_solib_address (CORE_ADDR addr)
1482 {
1483   struct so_list *so = so_list_head;
1484
1485   while (so)
1486     {
1487       /* Is this address within this shlib's text range?  If so,
1488          return the shlib's name.
1489        */
1490       if ((addr >= so->som_solib.text_addr) && (addr <= so->som_solib.text_end))
1491         return so->som_solib.name;
1492
1493       /* Nope, keep looking... */
1494       so = so->next;
1495     }
1496
1497   /* No, we couldn't prove that the address is within a shlib. */
1498   return NULL;
1499 }
1500
1501
1502 void
1503 som_solib_restart (void)
1504 {
1505   struct so_list *sl = so_list_head;
1506
1507   /* Before the shlib info vanishes, use it to disable any breakpoints
1508      that may still be active in those shlibs.
1509    */
1510   disable_breakpoints_in_shlibs (0);
1511
1512   /* Discard all the shlib descriptors.
1513    */
1514   while (sl)
1515     {
1516       struct so_list *next_sl = sl->next;
1517       xfree (sl);
1518       sl = next_sl;
1519     }
1520   so_list_head = NULL;
1521
1522   som_solib_total_st_size = (LONGEST) 0;
1523   som_solib_st_size_threshold_exceeded = 0;
1524
1525   dld_cache.is_valid = 0;
1526
1527   dld_cache.hook.address = 0;
1528   dld_cache.hook.unwind = NULL;
1529
1530   dld_cache.hook_stub.address = 0;
1531   dld_cache.hook_stub.unwind = NULL;
1532
1533   dld_cache.load.address = 0;
1534   dld_cache.load.unwind = NULL;
1535
1536   dld_cache.load_stub.address = 0;
1537   dld_cache.load_stub.unwind = NULL;
1538
1539   dld_cache.unload.address = 0;
1540   dld_cache.unload.unwind = NULL;
1541
1542   dld_cache.unload2.address = 0;
1543   dld_cache.unload2.unwind = NULL;
1544
1545   dld_cache.unload_stub.address = 0;
1546   dld_cache.unload_stub.unwind = NULL;
1547 }
1548
1549
1550 /* LOCAL FUNCTION
1551
1552    no_shared_libraries -- handle command to explicitly discard symbols
1553    from shared libraries.
1554
1555    DESCRIPTION
1556
1557    Implements the command "nosharedlibrary", which discards symbols
1558    that have been auto-loaded from shared libraries.  Symbols from
1559    shared libraries that were added by explicit request of the user
1560    are not discarded.  Also called from remote.c.  */
1561
1562 void
1563 no_shared_libraries (char *ignored, int from_tty)
1564 {
1565   /* FIXME */
1566 }
1567
1568
1569 void
1570 _initialize_som_solib (void)
1571 {
1572   add_com ("sharedlibrary", class_files, som_solib_sharedlibrary_command,
1573            "Load shared object library symbols for files matching REGEXP.");
1574   add_info ("sharedlibrary", som_sharedlibrary_info_command,
1575             "Status of loaded shared object libraries.");
1576
1577   add_show_from_set
1578     (add_set_cmd ("auto-solib-add", class_support, var_boolean,
1579                   (char *) &auto_solib_add,
1580                   "Set autoloading of shared library symbols.\n\
1581 If \"on\", symbols from all shared object libraries will be loaded\n\
1582 automatically when the inferior begins execution, when the dynamic linker\n\
1583 informs gdb that a new library has been loaded, or when attaching to the\n\
1584 inferior.  Otherwise, symbols must be loaded manually, using `sharedlibrary'.",
1585                   &setlist),
1586      &showlist);
1587
1588   add_show_from_set
1589     (add_set_cmd ("auto-solib-limit", class_support, var_zinteger,
1590                   (char *) &auto_solib_limit,
1591                   "Set threshold (in Mb) for autoloading shared library symbols.\n\
1592 When shared library autoloading is enabled, new libraries will be loaded\n\
1593 only until the total size of shared library symbols exceeds this\n\
1594 threshold in megabytes.  Is ignored when using `sharedlibrary'.",
1595                   &setlist),
1596      &showlist);
1597
1598   /* ??rehrauer: On HP-UX, the kernel parameter MAXDSIZ limits how
1599      much data space a process can use.  We ought to be reading
1600      MAXDSIZ and setting auto_solib_limit to some large fraction of
1601      that value.  If not that, we maybe ought to be setting it smaller
1602      than the default for MAXDSIZ (that being 64Mb, I believe).
1603      However, [1] this threshold is only crudely approximated rather
1604      than actually measured, and [2] 50 Mbytes is too small for
1605      debugging gdb itself.  Thus, the arbitrary 100 figure.  */
1606   auto_solib_limit = 100;       /* Megabytes */
1607
1608   som_solib_restart ();
1609 }
1610
1611 /* Get some HPUX-specific data from a shared lib.
1612  */
1613 CORE_ADDR
1614 so_lib_thread_start_addr (struct so_list *so)
1615 {
1616   return so->som_solib.tsd_start_addr;
1617 }