Handle missing shared libraries during the examination of a core
[external/binutils.git] / gdb / irix5-nat.c
1 /* Native support for the SGI Iris running IRIX version 5, for GDB.
2    Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998
3    Free Software Foundation, Inc.
4    Contributed by Alessandro Forin(af@cs.cmu.edu) at CMU
5    and by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin.
6    Implemented for Irix 4.x by Garrett A. Wollman.
7    Modified for Irix 5.x by Ian Lance Taylor.
8
9 This file is part of GDB.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
24
25 #include "defs.h"
26 #include "inferior.h"
27 #include "gdbcore.h"
28 #include "target.h"
29
30 #include "gdb_string.h"
31 #include <sys/time.h>
32 #include <sys/procfs.h>
33 #include <setjmp.h>             /* For JB_XXX.  */
34
35 static void
36 fetch_core_registers PARAMS ((char *, unsigned int, int, CORE_ADDR));
37
38 /* Size of elements in jmpbuf */
39
40 #define JB_ELEMENT_SIZE 4
41
42 /*
43  * See the comment in m68k-tdep.c regarding the utility of these functions.
44  *
45  * These definitions are from the MIPS SVR4 ABI, so they may work for
46  * any MIPS SVR4 target.
47  */
48
49 void 
50 supply_gregset (gregsetp)
51      gregset_t *gregsetp;
52 {
53   register int regi;
54   register greg_t *regp = &(*gregsetp)[0];
55   int gregoff = sizeof (greg_t) - MIPS_REGSIZE;
56   static char zerobuf[MAX_REGISTER_RAW_SIZE] = {0};
57
58   for(regi = 0; regi <= CTX_RA; regi++)
59     supply_register (regi, (char *)(regp + regi) + gregoff);
60
61   supply_register (PC_REGNUM, (char *)(regp + CTX_EPC) + gregoff);
62   supply_register (HI_REGNUM, (char *)(regp + CTX_MDHI) + gregoff);
63   supply_register (LO_REGNUM, (char *)(regp + CTX_MDLO) + gregoff);
64   supply_register (CAUSE_REGNUM, (char *)(regp + CTX_CAUSE) + gregoff);
65
66   /* Fill inaccessible registers with zero.  */
67   supply_register (BADVADDR_REGNUM, zerobuf);
68 }
69
70 void
71 fill_gregset (gregsetp, regno)
72      gregset_t *gregsetp;
73      int regno;
74 {
75   int regi;
76   register greg_t *regp = &(*gregsetp)[0];
77
78   /* Under Irix6, if GDB is built with N32 ABI and is debugging an O32
79      executable, we have to sign extend the registers to 64 bits before
80      filling in the gregset structure.  */
81
82   for (regi = 0; regi <= CTX_RA; regi++)
83     if ((regno == -1) || (regno == regi))
84       *(regp + regi) =
85         extract_signed_integer (&registers[REGISTER_BYTE (regi)],
86                                 REGISTER_RAW_SIZE (regi));
87
88   if ((regno == -1) || (regno == PC_REGNUM))
89     *(regp + CTX_EPC) =
90       extract_signed_integer (&registers[REGISTER_BYTE (PC_REGNUM)],
91                               REGISTER_RAW_SIZE (PC_REGNUM));
92
93   if ((regno == -1) || (regno == CAUSE_REGNUM))
94     *(regp + CTX_CAUSE) =
95       extract_signed_integer (&registers[REGISTER_BYTE (CAUSE_REGNUM)],
96                               REGISTER_RAW_SIZE (CAUSE_REGNUM));
97
98   if ((regno == -1) || (regno == HI_REGNUM))
99     *(regp + CTX_MDHI) =
100       extract_signed_integer (&registers[REGISTER_BYTE (HI_REGNUM)],
101                               REGISTER_RAW_SIZE (HI_REGNUM));
102
103   if ((regno == -1) || (regno == LO_REGNUM))
104     *(regp + CTX_MDLO) =
105       extract_signed_integer (&registers[REGISTER_BYTE (LO_REGNUM)],
106                               REGISTER_RAW_SIZE (LO_REGNUM));
107 }
108
109 /*
110  * Now we do the same thing for floating-point registers.
111  * We don't bother to condition on FP0_REGNUM since any
112  * reasonable MIPS configuration has an R3010 in it.
113  *
114  * Again, see the comments in m68k-tdep.c.
115  */
116
117 void
118 supply_fpregset (fpregsetp)
119      fpregset_t *fpregsetp;
120 {
121   register int regi;
122   static char zerobuf[MAX_REGISTER_RAW_SIZE] = {0};
123
124   /* FIXME, this is wrong for the N32 ABI which has 64 bit FP regs. */
125
126   for (regi = 0; regi < 32; regi++)
127     supply_register (FP0_REGNUM + regi,
128                      (char *)&fpregsetp->fp_r.fp_regs[regi]);
129
130   supply_register (FCRCS_REGNUM, (char *)&fpregsetp->fp_csr);
131
132   /* FIXME: how can we supply FCRIR_REGNUM?  SGI doesn't tell us. */
133   supply_register (FCRIR_REGNUM, zerobuf);
134 }
135
136 void
137 fill_fpregset (fpregsetp, regno)
138      fpregset_t *fpregsetp;
139      int regno;
140 {
141   int regi;
142   char *from, *to;
143
144   /* FIXME, this is wrong for the N32 ABI which has 64 bit FP regs. */
145
146   for (regi = FP0_REGNUM; regi < FP0_REGNUM + 32; regi++)
147     {
148       if ((regno == -1) || (regno == regi))
149         {
150           from = (char *) &registers[REGISTER_BYTE (regi)];
151           to = (char *) &(fpregsetp->fp_r.fp_regs[regi - FP0_REGNUM]);
152           memcpy(to, from, REGISTER_RAW_SIZE (regi));
153         }
154     }
155
156   if ((regno == -1) || (regno == FCRCS_REGNUM))
157     fpregsetp->fp_csr = *(unsigned *) &registers[REGISTER_BYTE(FCRCS_REGNUM)];
158 }
159
160
161 /* Figure out where the longjmp will land.
162    We expect the first arg to be a pointer to the jmp_buf structure from which
163    we extract the pc (JB_PC) that we will land at.  The pc is copied into PC.
164    This routine returns true on success. */
165
166 int
167 get_longjmp_target (pc)
168      CORE_ADDR *pc;
169 {
170   char buf[TARGET_PTR_BIT / TARGET_CHAR_BIT];
171   CORE_ADDR jb_addr;
172
173   jb_addr = read_register (A0_REGNUM);
174
175   if (target_read_memory (jb_addr + JB_PC * JB_ELEMENT_SIZE, buf,
176                           TARGET_PTR_BIT / TARGET_CHAR_BIT))
177     return 0;
178
179   *pc = extract_address (buf, TARGET_PTR_BIT / TARGET_CHAR_BIT);
180
181   return 1;
182 }
183
184 static void
185 fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
186      char *core_reg_sect;
187      unsigned core_reg_size;
188      int which;                 /* Unused */
189      CORE_ADDR reg_addr;        /* Unused */
190 {
191   if (core_reg_size == REGISTER_BYTES)
192     {
193       memcpy ((char *)registers, core_reg_sect, core_reg_size);
194     }
195   else if (core_reg_size == (2 * REGISTER_BYTES) && MIPS_REGSIZE == 4)
196     {
197       /* This is a core file from a N32 executable, 64 bits are saved
198          for all registers.  */
199       char *srcp = core_reg_sect;
200       char *dstp = registers;
201       int regno;
202
203       for (regno = 0; regno < NUM_REGS; regno++)
204         {
205           if (regno >= FP0_REGNUM && regno < (FP0_REGNUM + 32))
206             {
207               /* FIXME, this is wrong, N32 has 64 bit FP regs, but GDB
208                  currently assumes that they are 32 bit.  */
209               *dstp++ = *srcp++;
210               *dstp++ = *srcp++;
211               *dstp++ = *srcp++;
212               *dstp++ = *srcp++;
213               srcp += 4;
214             }
215           else
216             {
217               srcp += 4;
218               *dstp++ = *srcp++;
219               *dstp++ = *srcp++;
220               *dstp++ = *srcp++;
221               *dstp++ = *srcp++;
222             }
223         }
224     }
225   else
226     {
227       warning ("wrong size gregset struct in core file");
228       return;
229     }
230
231   registers_fetched ();
232 }
233 \f
234 /* Irix 5 uses what appears to be a unique form of shared library
235    support.  This is a copy of solib.c modified for Irix 5.  */
236 /* FIXME: Most of this code could be merged with osfsolib.c and solib.c
237    by using next_link_map_member and xfer_link_map_member in solib.c.  */
238
239 #include <sys/types.h>
240 #include <signal.h>
241 #include <sys/param.h>
242 #include <fcntl.h>
243
244 /* <obj.h> includes <sym.h> and <symconst.h>, which causes conflicts
245    with our versions of those files included by tm-mips.h.  Prevent
246    <obj.h> from including them with some appropriate defines.  */
247 #define __SYM_H__
248 #define __SYMCONST_H__
249 #include <obj.h>
250 #ifdef HAVE_OBJLIST_H
251 #include <objlist.h>
252 #endif
253
254 #ifdef NEW_OBJ_INFO_MAGIC
255 #define HANDLE_NEW_OBJ_LIST
256 #endif
257
258 #include "symtab.h"
259 #include "bfd.h"
260 #include "symfile.h"
261 #include "objfiles.h"
262 #include "command.h"
263 #include "frame.h"
264 #include "gnu-regex.h"
265 #include "inferior.h"
266 #include "language.h"
267 #include "gdbcmd.h"
268
269 /* The symbol which starts off the list of shared libraries.  */
270 #define DEBUG_BASE "__rld_obj_head"
271
272 /* Irix 6.x introduces a new variant of object lists.
273    To be able to debug O32 executables under Irix 6, we have to handle both
274    variants.  */
275
276 typedef enum
277 {
278   OBJ_LIST_OLD,         /* Pre Irix 6.x object list.  */
279   OBJ_LIST_32,          /* 32 Bit Elf32_Obj_Info.  */
280   OBJ_LIST_64           /* 64 Bit Elf64_Obj_Info, FIXME not yet implemented.  */
281 } obj_list_variant;
282
283 /* Define our own link_map structure.
284    This will help to share code with osfsolib.c and solib.c.  */
285
286 struct link_map {
287   obj_list_variant l_variant;   /* which variant of object list */
288   CORE_ADDR l_lladdr;           /* addr in inferior list was read from */
289   CORE_ADDR l_next;             /* address of next object list entry */
290 };
291
292 /* Irix 5 shared objects are pre-linked to particular addresses
293    although the dynamic linker may have to relocate them if the
294    address ranges of the libraries used by the main program clash.
295    The offset is the difference between the address where the object
296    is mapped and the binding address of the shared library.  */
297 #define LM_OFFSET(so) ((so) -> offset)
298 /* Loaded address of shared library.  */
299 #define LM_ADDR(so) ((so) -> lmstart)
300
301 char shadow_contents[BREAKPOINT_MAX];   /* Stash old bkpt addr contents */
302
303 struct so_list {
304   struct so_list *next;                 /* next structure in linked list */
305   struct link_map lm;
306   CORE_ADDR offset;                     /* prelink to load address offset */
307   char *so_name;                        /* shared object lib name */
308   CORE_ADDR lmstart;                    /* lower addr bound of mapped object */
309   CORE_ADDR lmend;                      /* upper addr bound of mapped object */
310   char symbols_loaded;                  /* flag: symbols read in yet? */
311   char from_tty;                        /* flag: print msgs? */
312   struct objfile *objfile;              /* objfile for loaded lib */
313   struct section_table *sections;
314   struct section_table *sections_end;
315   struct section_table *textsection;
316   bfd *abfd;
317 };
318
319 static struct so_list *so_list_head;    /* List of known shared objects */
320 static CORE_ADDR debug_base;            /* Base of dynamic linker structures */
321 static CORE_ADDR breakpoint_addr;       /* Address where end bkpt is set */
322
323 /* Local function prototypes */
324
325 static void
326 sharedlibrary_command PARAMS ((char *, int));
327
328 static int
329 enable_break PARAMS ((void));
330
331 static int
332 disable_break PARAMS ((void));
333
334 static void
335 info_sharedlibrary_command PARAMS ((char *, int));
336
337 static int
338 symbol_add_stub PARAMS ((char *));
339
340 static struct so_list *
341 find_solib PARAMS ((struct so_list *));
342
343 static struct link_map *
344 first_link_map_member PARAMS ((void));
345
346 static struct link_map *
347 next_link_map_member PARAMS ((struct so_list *));
348
349 static void
350 xfer_link_map_member PARAMS ((struct so_list *, struct link_map *));
351
352 static CORE_ADDR
353 locate_base PARAMS ((void));
354
355 static int
356 solib_map_sections PARAMS ((char *));
357
358 /*
359
360 LOCAL FUNCTION
361
362         solib_map_sections -- open bfd and build sections for shared lib
363
364 SYNOPSIS
365
366         static int solib_map_sections (struct so_list *so)
367
368 DESCRIPTION
369
370         Given a pointer to one of the shared objects in our list
371         of mapped objects, use the recorded name to open a bfd
372         descriptor for the object, build a section table, and then
373         relocate all the section addresses by the base address at
374         which the shared object was mapped.
375
376 FIXMES
377
378         In most (all?) cases the shared object file name recorded in the
379         dynamic linkage tables will be a fully qualified pathname.  For
380         cases where it isn't, do we really mimic the systems search
381         mechanism correctly in the below code (particularly the tilde
382         expansion stuff?).
383  */
384
385 static int
386 solib_map_sections (arg)
387      char *arg;
388 {
389   struct so_list *so = (struct so_list *) arg;  /* catch_errors bogon */
390   char *filename;
391   char *scratch_pathname;
392   int scratch_chan;
393   struct section_table *p;
394   struct cleanup *old_chain;
395   bfd *abfd;
396   
397   filename = tilde_expand (so -> so_name);
398   old_chain = make_cleanup (free, filename);
399   
400   scratch_chan = openp (getenv ("PATH"), 1, filename, O_RDONLY, 0,
401                         &scratch_pathname);
402   if (scratch_chan < 0)
403     {
404       scratch_chan = openp (getenv ("LD_LIBRARY_PATH"), 1, filename,
405                             O_RDONLY, 0, &scratch_pathname);
406     }
407   if (scratch_chan < 0)
408     {
409       perror_with_name (filename);
410     }
411   /* Leave scratch_pathname allocated.  abfd->name will point to it.  */
412
413   abfd = bfd_fdopenr (scratch_pathname, gnutarget, scratch_chan);
414   if (!abfd)
415     {
416       close (scratch_chan);
417       error ("Could not open `%s' as an executable file: %s",
418              scratch_pathname, bfd_errmsg (bfd_get_error ()));
419     }
420   /* Leave bfd open, core_xfer_memory and "info files" need it.  */
421   so -> abfd = abfd;
422   abfd -> cacheable = true;
423
424   if (!bfd_check_format (abfd, bfd_object))
425     {
426       error ("\"%s\": not in executable format: %s.",
427              scratch_pathname, bfd_errmsg (bfd_get_error ()));
428     }
429   if (build_section_table (abfd, &so -> sections, &so -> sections_end))
430     {
431       error ("Can't find the file sections in `%s': %s", 
432              bfd_get_filename (exec_bfd), bfd_errmsg (bfd_get_error ()));
433     }
434
435   for (p = so -> sections; p < so -> sections_end; p++)
436     {
437       /* Relocate the section binding addresses as recorded in the shared
438          object's file by the offset to get the address to which the
439          object was actually mapped.  */
440       p -> addr += LM_OFFSET (so);
441       p -> endaddr += LM_OFFSET (so);
442       so -> lmend = (CORE_ADDR) max (p -> endaddr, so -> lmend);
443       if (STREQ (p -> the_bfd_section -> name, ".text"))
444         {
445           so -> textsection = p;
446         }
447     }
448
449   /* Free the file names, close the file now.  */
450   do_cleanups (old_chain);
451
452   return (1);
453 }
454
455 /*
456
457 LOCAL FUNCTION
458
459         locate_base -- locate the base address of dynamic linker structs
460
461 SYNOPSIS
462
463         CORE_ADDR locate_base (void)
464
465 DESCRIPTION
466
467         For both the SunOS and SVR4 shared library implementations, if the
468         inferior executable has been linked dynamically, there is a single
469         address somewhere in the inferior's data space which is the key to
470         locating all of the dynamic linker's runtime structures.  This
471         address is the value of the symbol defined by the macro DEBUG_BASE.
472         The job of this function is to find and return that address, or to
473         return 0 if there is no such address (the executable is statically
474         linked for example).
475
476         For SunOS, the job is almost trivial, since the dynamic linker and
477         all of it's structures are statically linked to the executable at
478         link time.  Thus the symbol for the address we are looking for has
479         already been added to the minimal symbol table for the executable's
480         objfile at the time the symbol file's symbols were read, and all we
481         have to do is look it up there.  Note that we explicitly do NOT want
482         to find the copies in the shared library.
483
484         The SVR4 version is much more complicated because the dynamic linker
485         and it's structures are located in the shared C library, which gets
486         run as the executable's "interpreter" by the kernel.  We have to go
487         to a lot more work to discover the address of DEBUG_BASE.  Because
488         of this complexity, we cache the value we find and return that value
489         on subsequent invocations.  Note there is no copy in the executable
490         symbol tables.
491
492         Irix 5 is basically like SunOS.
493
494         Note that we can assume nothing about the process state at the time
495         we need to find this address.  We may be stopped on the first instruc-
496         tion of the interpreter (C shared library), the first instruction of
497         the executable itself, or somewhere else entirely (if we attached
498         to the process for example).
499
500  */
501
502 static CORE_ADDR
503 locate_base ()
504 {
505   struct minimal_symbol *msymbol;
506   CORE_ADDR address = 0;
507
508   msymbol = lookup_minimal_symbol (DEBUG_BASE, NULL, symfile_objfile);
509   if ((msymbol != NULL) && (SYMBOL_VALUE_ADDRESS (msymbol) != 0))
510     {
511       address = SYMBOL_VALUE_ADDRESS (msymbol);
512     }
513   return (address);
514 }
515
516 /*
517
518 LOCAL FUNCTION
519
520         first_link_map_member -- locate first member in dynamic linker's map
521
522 SYNOPSIS
523
524         static struct link_map *first_link_map_member (void)
525
526 DESCRIPTION
527
528         Read in a copy of the first member in the inferior's dynamic
529         link map from the inferior's dynamic linker structures, and return
530         a pointer to the link map descriptor.
531 */
532
533 static struct link_map *
534 first_link_map_member ()
535 {
536   struct obj_list *listp;
537   struct obj_list list_old;
538   struct link_map *lm;
539   static struct link_map first_lm;
540   CORE_ADDR lladdr;
541   CORE_ADDR next_lladdr;
542
543   /* We have not already read in the dynamic linking structures
544      from the inferior, lookup the address of the base structure. */
545   debug_base = locate_base ();
546   if (debug_base == 0)
547     return NULL;
548
549   /* Get address of first list entry.  */
550   read_memory (debug_base, (char *) &listp, sizeof (struct obj_list *));
551
552   if (listp == NULL)
553     return NULL;
554
555   /* Get first list entry.  */
556   lladdr = (CORE_ADDR) listp;
557   read_memory (lladdr, (char *) &list_old, sizeof (struct obj_list));
558
559   /* The first entry in the list is the object file we are debugging,
560      so skip it.  */
561   next_lladdr = (CORE_ADDR) list_old.next; 
562
563 #ifdef HANDLE_NEW_OBJ_LIST
564   if (list_old.data == NEW_OBJ_INFO_MAGIC)
565     {
566       Elf32_Obj_Info list_32;
567
568       read_memory (lladdr, (char *) &list_32, sizeof (Elf32_Obj_Info));
569       if (list_32.oi_size != sizeof (Elf32_Obj_Info))
570         return NULL;
571       next_lladdr = (CORE_ADDR) list_32.oi_next; 
572     }
573 #endif
574
575   if (next_lladdr == 0)
576     return NULL;
577
578   first_lm.l_lladdr = next_lladdr;
579   lm = &first_lm;
580   return lm;
581 }
582
583 /*
584
585 LOCAL FUNCTION
586
587         next_link_map_member -- locate next member in dynamic linker's map
588
589 SYNOPSIS
590
591         static struct link_map *next_link_map_member (so_list_ptr)
592
593 DESCRIPTION
594
595         Read in a copy of the next member in the inferior's dynamic
596         link map from the inferior's dynamic linker structures, and return
597         a pointer to the link map descriptor.
598 */
599
600 static struct link_map *
601 next_link_map_member (so_list_ptr)
602      struct so_list *so_list_ptr;
603 {
604   struct link_map *lm = &so_list_ptr -> lm;
605   CORE_ADDR next_lladdr = lm -> l_next;
606   static struct link_map next_lm;
607
608   if (next_lladdr == 0)
609     {
610       /* We have hit the end of the list, so check to see if any were
611          added, but be quiet if we can't read from the target any more. */
612       int status = 0;
613
614       if (lm -> l_variant == OBJ_LIST_OLD)
615         {
616           struct obj_list list_old;
617
618           status = target_read_memory (lm -> l_lladdr,
619                                        (char *) &list_old,
620                                        sizeof (struct obj_list));
621           next_lladdr = (CORE_ADDR) list_old.next;
622         }
623 #ifdef HANDLE_NEW_OBJ_LIST
624       else if (lm -> l_variant == OBJ_LIST_32)
625         {
626           Elf32_Obj_Info list_32;
627           status = target_read_memory (lm -> l_lladdr,
628                                        (char *) &list_32,
629                                        sizeof (Elf32_Obj_Info));
630           next_lladdr = (CORE_ADDR) list_32.oi_next;
631         }
632 #endif
633
634       if (status != 0 || next_lladdr == 0)
635         return NULL;
636     }
637
638   next_lm.l_lladdr = next_lladdr;
639   lm = &next_lm;
640   return lm;
641 }
642
643 /*
644
645 LOCAL FUNCTION
646
647         xfer_link_map_member -- set local variables from dynamic linker's map
648
649 SYNOPSIS
650
651         static void xfer_link_map_member (so_list_ptr, lm)
652
653 DESCRIPTION
654
655         Read in a copy of the requested member in the inferior's dynamic
656         link map from the inferior's dynamic linker structures, and fill
657         in the necessary so_list_ptr elements.
658 */
659
660 static void
661 xfer_link_map_member (so_list_ptr, lm)
662      struct so_list *so_list_ptr;
663      struct link_map *lm;
664 {
665   struct obj_list list_old;
666   CORE_ADDR lladdr = lm -> l_lladdr;
667   struct link_map *new_lm = &so_list_ptr -> lm;
668   int errcode;
669
670   read_memory (lladdr, (char *) &list_old, sizeof (struct obj_list));
671
672   new_lm -> l_variant = OBJ_LIST_OLD;
673   new_lm -> l_lladdr = lladdr;
674   new_lm -> l_next = (CORE_ADDR) list_old.next; 
675
676 #ifdef HANDLE_NEW_OBJ_LIST
677   if (list_old.data == NEW_OBJ_INFO_MAGIC)
678     {
679       Elf32_Obj_Info list_32;
680
681       read_memory (lladdr, (char *) &list_32, sizeof (Elf32_Obj_Info));
682       if (list_32.oi_size != sizeof (Elf32_Obj_Info))
683         return;
684       new_lm -> l_variant = OBJ_LIST_32;
685       new_lm -> l_next = (CORE_ADDR) list_32.oi_next; 
686
687       target_read_string ((CORE_ADDR) list_32.oi_pathname,
688                           &so_list_ptr -> so_name,
689                           list_32.oi_pathname_len + 1, &errcode);
690       if (errcode != 0)
691         memory_error (errcode, (CORE_ADDR) list_32.oi_pathname);
692
693       LM_ADDR (so_list_ptr) = (CORE_ADDR) list_32.oi_ehdr;
694       LM_OFFSET (so_list_ptr) =
695         (CORE_ADDR) list_32.oi_ehdr - (CORE_ADDR) list_32.oi_orig_ehdr;
696     }
697   else
698 #endif
699     {
700 #if defined (_MIPS_SIM_NABI32) && _MIPS_SIM == _MIPS_SIM_NABI32
701       /* If we are compiling GDB under N32 ABI, the alignments in
702          the obj struct are different from the O32 ABI and we will get
703          wrong values when accessing the struct.
704          As a workaround we use fixed values which are good for
705          Irix 6.2.  */
706       char buf[432];
707
708       read_memory ((CORE_ADDR) list_old.data, buf, sizeof (buf));
709
710       target_read_string (extract_address (&buf[236], 4),
711                           &so_list_ptr -> so_name,
712                           INT_MAX, &errcode);
713       if (errcode != 0)
714         memory_error (errcode, extract_address (&buf[236], 4));
715
716       LM_ADDR (so_list_ptr) = extract_address (&buf[196], 4);
717       LM_OFFSET (so_list_ptr) =
718         extract_address (&buf[196], 4) - extract_address (&buf[248], 4);
719 #else
720       struct obj obj_old;
721
722       read_memory ((CORE_ADDR) list_old.data, (char *) &obj_old,
723                    sizeof (struct obj));
724
725       target_read_string ((CORE_ADDR) obj_old.o_path,
726                           &so_list_ptr -> so_name,
727                           INT_MAX, &errcode);
728       if (errcode != 0)
729         memory_error (errcode, (CORE_ADDR) obj_old.o_path);
730
731       LM_ADDR (so_list_ptr) = (CORE_ADDR) obj_old.o_praw;
732       LM_OFFSET (so_list_ptr) =
733         (CORE_ADDR) obj_old.o_praw - obj_old.o_base_address;
734 #endif
735     }
736
737   catch_errors (solib_map_sections, (char *) so_list_ptr,
738                 "Error while mapping shared library sections:\n",
739                 RETURN_MASK_ALL);
740 }
741
742
743 /*
744
745 LOCAL FUNCTION
746
747         find_solib -- step through list of shared objects
748
749 SYNOPSIS
750
751         struct so_list *find_solib (struct so_list *so_list_ptr)
752
753 DESCRIPTION
754
755         This module contains the routine which finds the names of any
756         loaded "images" in the current process. The argument in must be
757         NULL on the first call, and then the returned value must be passed
758         in on subsequent calls. This provides the capability to "step" down
759         the list of loaded objects. On the last object, a NULL value is
760         returned.
761  */
762
763 static struct so_list *
764 find_solib (so_list_ptr)
765      struct so_list *so_list_ptr;       /* Last lm or NULL for first one */
766 {
767   struct so_list *so_list_next = NULL;
768   struct link_map *lm = NULL;
769   struct so_list *new;
770   
771   if (so_list_ptr == NULL)
772     {
773       /* We are setting up for a new scan through the loaded images. */
774       if ((so_list_next = so_list_head) == NULL)
775         {
776           /* Find the first link map list member. */
777           lm = first_link_map_member ();
778         }
779     }
780   else
781     {
782       /* We have been called before, and are in the process of walking
783          the shared library list.  Advance to the next shared object. */
784       lm = next_link_map_member (so_list_ptr);
785       so_list_next = so_list_ptr -> next;
786     }
787   if ((so_list_next == NULL) && (lm != NULL))
788     {
789       new = (struct so_list *) xmalloc (sizeof (struct so_list));
790       memset ((char *) new, 0, sizeof (struct so_list));
791       /* Add the new node as the next node in the list, or as the root
792          node if this is the first one. */
793       if (so_list_ptr != NULL)
794         {
795           so_list_ptr -> next = new;
796         }
797       else
798         {
799           so_list_head = new;
800         }      
801       so_list_next = new;
802       xfer_link_map_member (new, lm);
803     }
804   return (so_list_next);
805 }
806
807 /* A small stub to get us past the arg-passing pinhole of catch_errors.  */
808
809 static int
810 symbol_add_stub (arg)
811      char *arg;
812 {
813   register struct so_list *so = (struct so_list *) arg; /* catch_errs bogon */
814   CORE_ADDR text_addr = 0;
815
816   if (so -> textsection)
817     text_addr = so -> textsection -> addr;
818   else if (so -> abfd != NULL)
819     {
820       asection *lowest_sect;
821
822       /* If we didn't find a mapped non zero sized .text section, set up
823          text_addr so that the relocation in symbol_file_add does no harm.  */
824
825       lowest_sect = bfd_get_section_by_name (so -> abfd, ".text");
826       if (lowest_sect == NULL)
827         bfd_map_over_sections (so -> abfd, find_lowest_section,
828                                (PTR) &lowest_sect);
829       if (lowest_sect)
830         text_addr = bfd_section_vma (so -> abfd, lowest_sect) + LM_OFFSET (so);
831     }
832   
833   so -> objfile = symbol_file_add (so -> so_name, so -> from_tty,
834                                    text_addr,
835                                    0, 0, 0);
836   return (1);
837 }
838
839 /*
840
841 GLOBAL FUNCTION
842
843         solib_add -- add a shared library file to the symtab and section list
844
845 SYNOPSIS
846
847         void solib_add (char *arg_string, int from_tty,
848                         struct target_ops *target)
849
850 DESCRIPTION
851
852 */
853
854 void
855 solib_add (arg_string, from_tty, target)
856      char *arg_string;
857      int from_tty;
858      struct target_ops *target;
859 {       
860   register struct so_list *so = NULL;           /* link map state variable */
861
862   /* Last shared library that we read.  */
863   struct so_list *so_last = NULL;
864
865   char *re_err;
866   int count;
867   int old;
868   
869   if ((re_err = re_comp (arg_string ? arg_string : ".")) != NULL)
870     {
871       error ("Invalid regexp: %s", re_err);
872     }
873   
874   /* Add the shared library sections to the section table of the
875      specified target, if any.  */
876   if (target)
877     {
878       /* Count how many new section_table entries there are.  */
879       so = NULL;
880       count = 0;
881       while ((so = find_solib (so)) != NULL)
882         {
883           if (so -> so_name[0])
884             {
885               count += so -> sections_end - so -> sections;
886             }
887         }
888       
889       if (count)
890         {
891           int update_coreops;
892
893           /* We must update the to_sections field in the core_ops structure
894              here, otherwise we dereference a potential dangling pointer
895              for each call to target_read/write_memory within this routine.  */
896           update_coreops = core_ops.to_sections == target->to_sections;
897              
898           /* Reallocate the target's section table including the new size.  */
899           if (target -> to_sections)
900             {
901               old = target -> to_sections_end - target -> to_sections;
902               target -> to_sections = (struct section_table *)
903                 xrealloc ((char *)target -> to_sections,
904                          (sizeof (struct section_table)) * (count + old));
905             }
906           else
907             {
908               old = 0;
909               target -> to_sections = (struct section_table *)
910                 xmalloc ((sizeof (struct section_table)) * count);
911             }
912           target -> to_sections_end = target -> to_sections + (count + old);
913           
914           /* Update the to_sections field in the core_ops structure
915              if needed.  */
916           if (update_coreops)
917             {
918               core_ops.to_sections = target->to_sections;
919               core_ops.to_sections_end = target->to_sections_end;
920             }
921
922           /* Add these section table entries to the target's table.  */
923           while ((so = find_solib (so)) != NULL)
924             {
925               if (so -> so_name[0])
926                 {
927                   count = so -> sections_end - so -> sections;
928                   memcpy ((char *) (target -> to_sections + old),
929                           so -> sections, 
930                           (sizeof (struct section_table)) * count);
931                   old += count;
932                 }
933             }
934         }
935     }
936   
937   /* Now add the symbol files.  */
938   while ((so = find_solib (so)) != NULL)
939     {
940       if (so -> so_name[0] && re_exec (so -> so_name))
941         {
942           so -> from_tty = from_tty;
943           if (so -> symbols_loaded)
944             {
945               if (from_tty)
946                 {
947                   printf_unfiltered ("Symbols already loaded for %s\n", so -> so_name);
948                 }
949             }
950           else if (catch_errors
951                    (symbol_add_stub, (char *) so,
952                     "Error while reading shared library symbols:\n",
953                     RETURN_MASK_ALL))
954             {
955               so_last = so;
956               so -> symbols_loaded = 1;
957             }
958         }
959     }
960
961   /* Getting new symbols may change our opinion about what is
962      frameless.  */
963   if (so_last)
964     reinit_frame_cache ();
965 }
966
967 /*
968
969 LOCAL FUNCTION
970
971         info_sharedlibrary_command -- code for "info sharedlibrary"
972
973 SYNOPSIS
974
975         static void info_sharedlibrary_command ()
976
977 DESCRIPTION
978
979         Walk through the shared library list and print information
980         about each attached library.
981 */
982
983 static void
984 info_sharedlibrary_command (ignore, from_tty)
985      char *ignore;
986      int from_tty;
987 {
988   register struct so_list *so = NULL;   /* link map state variable */
989   int header_done = 0;
990   
991   if (exec_bfd == NULL)
992     {
993       printf_unfiltered ("No exec file.\n");
994       return;
995     }
996   while ((so = find_solib (so)) != NULL)
997     {
998       if (so -> so_name[0])
999         {
1000           if (!header_done)
1001             {
1002               printf_unfiltered("%-12s%-12s%-12s%s\n", "From", "To", "Syms Read",
1003                      "Shared Object Library");
1004               header_done++;
1005             }
1006           printf_unfiltered ("%-12s",
1007                   local_hex_string_custom ((unsigned long) LM_ADDR (so),
1008                                            "08l"));
1009           printf_unfiltered ("%-12s",
1010                   local_hex_string_custom ((unsigned long) so -> lmend,
1011                                            "08l"));
1012           printf_unfiltered ("%-12s", so -> symbols_loaded ? "Yes" : "No");
1013           printf_unfiltered ("%s\n",  so -> so_name);
1014         }
1015     }
1016   if (so_list_head == NULL)
1017     {
1018       printf_unfiltered ("No shared libraries loaded at this time.\n"); 
1019     }
1020 }
1021
1022 /*
1023
1024 GLOBAL FUNCTION
1025
1026         solib_address -- check to see if an address is in a shared lib
1027
1028 SYNOPSIS
1029
1030         char *solib_address (CORE_ADDR address)
1031
1032 DESCRIPTION
1033
1034         Provides a hook for other gdb routines to discover whether or
1035         not a particular address is within the mapped address space of
1036         a shared library.  Any address between the base mapping address
1037         and the first address beyond the end of the last mapping, is
1038         considered to be within the shared library address space, for
1039         our purposes.
1040
1041         For example, this routine is called at one point to disable
1042         breakpoints which are in shared libraries that are not currently
1043         mapped in.
1044  */
1045
1046 char *
1047 solib_address (address)
1048      CORE_ADDR address;
1049 {
1050   register struct so_list *so = 0;      /* link map state variable */
1051   
1052   while ((so = find_solib (so)) != NULL)
1053     {
1054       if (so -> so_name[0])
1055         {
1056           if ((address >= (CORE_ADDR) LM_ADDR (so)) &&
1057               (address < (CORE_ADDR) so -> lmend))
1058             return (so->so_name);
1059         }
1060     }
1061   return (0);
1062 }
1063
1064 /* Called by free_all_symtabs */
1065
1066 void 
1067 clear_solib()
1068 {
1069   struct so_list *next;
1070   char *bfd_filename;
1071   
1072   while (so_list_head)
1073     {
1074       if (so_list_head -> sections)
1075         {
1076           free ((PTR)so_list_head -> sections);
1077         }
1078       if (so_list_head -> abfd)
1079         {
1080           bfd_filename = bfd_get_filename (so_list_head -> abfd);
1081           if (!bfd_close (so_list_head -> abfd))
1082             warning ("cannot close \"%s\": %s",
1083                      bfd_filename, bfd_errmsg (bfd_get_error ()));
1084         }
1085       else
1086         /* This happens for the executable on SVR4.  */
1087         bfd_filename = NULL;
1088
1089       next = so_list_head -> next;
1090       if (bfd_filename)
1091         free ((PTR)bfd_filename);
1092       free (so_list_head->so_name);
1093       free ((PTR)so_list_head);
1094       so_list_head = next;
1095     }
1096   debug_base = 0;
1097 }
1098
1099 /*
1100
1101 LOCAL FUNCTION
1102
1103         disable_break -- remove the "mapping changed" breakpoint
1104
1105 SYNOPSIS
1106
1107         static int disable_break ()
1108
1109 DESCRIPTION
1110
1111         Removes the breakpoint that gets hit when the dynamic linker
1112         completes a mapping change.
1113
1114 */
1115
1116 static int
1117 disable_break ()
1118 {
1119   int status = 1;
1120
1121
1122   /* Note that breakpoint address and original contents are in our address
1123      space, so we just need to write the original contents back. */
1124
1125   if (memory_remove_breakpoint (breakpoint_addr, shadow_contents) != 0)
1126     {
1127       status = 0;
1128     }
1129
1130   /* For the SVR4 version, we always know the breakpoint address.  For the
1131      SunOS version we don't know it until the above code is executed.
1132      Grumble if we are stopped anywhere besides the breakpoint address. */
1133
1134   if (stop_pc != breakpoint_addr)
1135     {
1136       warning ("stopped at unknown breakpoint while handling shared libraries");
1137     }
1138
1139   return (status);
1140 }
1141
1142 /*
1143
1144 LOCAL FUNCTION
1145
1146         enable_break -- arrange for dynamic linker to hit breakpoint
1147
1148 SYNOPSIS
1149
1150         int enable_break (void)
1151
1152 DESCRIPTION
1153
1154         This functions inserts a breakpoint at the entry point of the
1155         main executable, where all shared libraries are mapped in.
1156 */
1157
1158 static int
1159 enable_break ()
1160 {
1161   if (symfile_objfile != NULL
1162       && target_insert_breakpoint (symfile_objfile->ei.entry_point,
1163                                    shadow_contents) == 0)
1164     {
1165       breakpoint_addr = symfile_objfile->ei.entry_point;
1166       return 1;
1167     }
1168
1169   return 0;
1170 }
1171   
1172 /*
1173   
1174 GLOBAL FUNCTION
1175   
1176         solib_create_inferior_hook -- shared library startup support
1177   
1178 SYNOPSIS
1179   
1180         void solib_create_inferior_hook()
1181   
1182 DESCRIPTION
1183   
1184         When gdb starts up the inferior, it nurses it along (through the
1185         shell) until it is ready to execute it's first instruction.  At this
1186         point, this function gets called via expansion of the macro
1187         SOLIB_CREATE_INFERIOR_HOOK.
1188
1189         For SunOS executables, this first instruction is typically the
1190         one at "_start", or a similar text label, regardless of whether
1191         the executable is statically or dynamically linked.  The runtime
1192         startup code takes care of dynamically linking in any shared
1193         libraries, once gdb allows the inferior to continue.
1194
1195         For SVR4 executables, this first instruction is either the first
1196         instruction in the dynamic linker (for dynamically linked
1197         executables) or the instruction at "start" for statically linked
1198         executables.  For dynamically linked executables, the system
1199         first exec's /lib/libc.so.N, which contains the dynamic linker,
1200         and starts it running.  The dynamic linker maps in any needed
1201         shared libraries, maps in the actual user executable, and then
1202         jumps to "start" in the user executable.
1203
1204         For both SunOS shared libraries, and SVR4 shared libraries, we
1205         can arrange to cooperate with the dynamic linker to discover the
1206         names of shared libraries that are dynamically linked, and the
1207         base addresses to which they are linked.
1208
1209         This function is responsible for discovering those names and
1210         addresses, and saving sufficient information about them to allow
1211         their symbols to be read at a later time.
1212
1213 FIXME
1214
1215         Between enable_break() and disable_break(), this code does not
1216         properly handle hitting breakpoints which the user might have
1217         set in the startup code or in the dynamic linker itself.  Proper
1218         handling will probably have to wait until the implementation is
1219         changed to use the "breakpoint handler function" method.
1220
1221         Also, what if child has exit()ed?  Must exit loop somehow.
1222   */
1223
1224 void 
1225 solib_create_inferior_hook()
1226 {
1227   if (!enable_break ())
1228     {
1229       warning ("shared library handler failed to enable breakpoint");
1230       return;
1231     }
1232
1233   /* Now run the target.  It will eventually hit the breakpoint, at
1234      which point all of the libraries will have been mapped in and we
1235      can go groveling around in the dynamic linker structures to find
1236      out what we need to know about them. */
1237
1238   clear_proceed_status ();
1239   stop_soon_quietly = 1;
1240   stop_signal = TARGET_SIGNAL_0;
1241   do
1242     {
1243       target_resume (-1, 0, stop_signal);
1244       wait_for_inferior ();
1245     }
1246   while (stop_signal != TARGET_SIGNAL_TRAP);
1247   
1248   /* We are now either at the "mapping complete" breakpoint (or somewhere
1249      else, a condition we aren't prepared to deal with anyway), so adjust
1250      the PC as necessary after a breakpoint, disable the breakpoint, and
1251      add any shared libraries that were mapped in. */
1252
1253   if (DECR_PC_AFTER_BREAK)
1254     {
1255       stop_pc -= DECR_PC_AFTER_BREAK;
1256       write_register (PC_REGNUM, stop_pc);
1257     }
1258
1259   if (!disable_break ())
1260     {
1261       warning ("shared library handler failed to disable breakpoint");
1262     }
1263
1264   /*  solib_add will call reinit_frame_cache.
1265       But we are stopped in the startup code and we might not have symbols
1266       for the startup code, so heuristic_proc_start could be called
1267       and will put out an annoying warning.
1268       Delaying the resetting of stop_soon_quietly until after symbol loading
1269       suppresses the warning.  */
1270   if (auto_solib_add)
1271     solib_add ((char *) 0, 0, (struct target_ops *) 0);
1272   stop_soon_quietly = 0;
1273 }
1274
1275 /*
1276
1277 LOCAL FUNCTION
1278
1279         sharedlibrary_command -- handle command to explicitly add library
1280
1281 SYNOPSIS
1282
1283         static void sharedlibrary_command (char *args, int from_tty)
1284
1285 DESCRIPTION
1286
1287 */
1288
1289 static void
1290 sharedlibrary_command (args, from_tty)
1291 char *args;
1292 int from_tty;
1293 {
1294   dont_repeat ();
1295   solib_add (args, from_tty, (struct target_ops *) 0);
1296 }
1297
1298 void
1299 _initialize_solib()
1300 {
1301   add_com ("sharedlibrary", class_files, sharedlibrary_command,
1302            "Load shared object library symbols for files matching REGEXP.");
1303   add_info ("sharedlibrary", info_sharedlibrary_command, 
1304             "Status of loaded shared object libraries.");
1305
1306   add_show_from_set
1307     (add_set_cmd ("auto-solib-add", class_support, var_zinteger,
1308                   (char *) &auto_solib_add,
1309                   "Set autoloading of shared library symbols.\n\
1310 If nonzero, symbols from all shared object libraries will be loaded\n\
1311 automatically when the inferior begins execution or when the dynamic linker\n\
1312 informs gdb that a new library has been loaded.  Otherwise, symbols\n\
1313 must be loaded manually, using `sharedlibrary'.",
1314                   &setlist),
1315      &showlist);
1316 }
1317
1318 \f
1319 /* Register that we are able to handle irix5 core file formats.
1320    This really is bfd_target_unknown_flavour */
1321
1322 static struct core_fns irix5_core_fns =
1323 {
1324   bfd_target_unknown_flavour,
1325   fetch_core_registers,
1326   NULL
1327 };
1328
1329 void
1330 _initialize_core_irix5 ()
1331 {
1332   add_core_fns (&irix5_core_fns);
1333 }