1 /* Native support for the SGI Iris running IRIX version 5, for GDB.
2 Copyright 1988, 89, 90, 91, 92, 93, 94, 95, 96, 98, 1999
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.
9 This file is part of GDB.
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.
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.
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,
24 Boston, MA 02111-1307, USA. */
31 #include "gdb_string.h"
33 #include <sys/procfs.h>
34 #include <setjmp.h> /* For JB_XXX. */
36 /* Prototypes for supply_gregset etc. */
39 static void fetch_core_registers (char *, unsigned int, int, CORE_ADDR
);
41 /* Size of elements in jmpbuf */
43 #define JB_ELEMENT_SIZE 4
46 * See the comment in m68k-tdep.c regarding the utility of these functions.
48 * These definitions are from the MIPS SVR4 ABI, so they may work for
49 * any MIPS SVR4 target.
53 supply_gregset (gregset_t
*gregsetp
)
56 register greg_t
*regp
= &(*gregsetp
)[0];
57 int gregoff
= sizeof (greg_t
) - MIPS_REGSIZE
;
58 static char zerobuf
[MAX_REGISTER_RAW_SIZE
] =
61 for (regi
= 0; regi
<= CTX_RA
; regi
++)
62 supply_register (regi
, (char *) (regp
+ regi
) + gregoff
);
64 supply_register (PC_REGNUM
, (char *) (regp
+ CTX_EPC
) + gregoff
);
65 supply_register (HI_REGNUM
, (char *) (regp
+ CTX_MDHI
) + gregoff
);
66 supply_register (LO_REGNUM
, (char *) (regp
+ CTX_MDLO
) + gregoff
);
67 supply_register (CAUSE_REGNUM
, (char *) (regp
+ CTX_CAUSE
) + gregoff
);
69 /* Fill inaccessible registers with zero. */
70 supply_register (BADVADDR_REGNUM
, zerobuf
);
74 fill_gregset (gregset_t
*gregsetp
, int regno
)
77 register greg_t
*regp
= &(*gregsetp
)[0];
79 /* Under Irix6, if GDB is built with N32 ABI and is debugging an O32
80 executable, we have to sign extend the registers to 64 bits before
81 filling in the gregset structure. */
83 for (regi
= 0; regi
<= CTX_RA
; regi
++)
84 if ((regno
== -1) || (regno
== regi
))
86 extract_signed_integer (®isters
[REGISTER_BYTE (regi
)],
87 REGISTER_RAW_SIZE (regi
));
89 if ((regno
== -1) || (regno
== PC_REGNUM
))
91 extract_signed_integer (®isters
[REGISTER_BYTE (PC_REGNUM
)],
92 REGISTER_RAW_SIZE (PC_REGNUM
));
94 if ((regno
== -1) || (regno
== CAUSE_REGNUM
))
96 extract_signed_integer (®isters
[REGISTER_BYTE (CAUSE_REGNUM
)],
97 REGISTER_RAW_SIZE (CAUSE_REGNUM
));
99 if ((regno
== -1) || (regno
== HI_REGNUM
))
101 extract_signed_integer (®isters
[REGISTER_BYTE (HI_REGNUM
)],
102 REGISTER_RAW_SIZE (HI_REGNUM
));
104 if ((regno
== -1) || (regno
== LO_REGNUM
))
106 extract_signed_integer (®isters
[REGISTER_BYTE (LO_REGNUM
)],
107 REGISTER_RAW_SIZE (LO_REGNUM
));
111 * Now we do the same thing for floating-point registers.
112 * We don't bother to condition on FP0_REGNUM since any
113 * reasonable MIPS configuration has an R3010 in it.
115 * Again, see the comments in m68k-tdep.c.
119 supply_fpregset (fpregset_t
*fpregsetp
)
122 static char zerobuf
[MAX_REGISTER_RAW_SIZE
] =
125 /* FIXME, this is wrong for the N32 ABI which has 64 bit FP regs. */
127 for (regi
= 0; regi
< 32; regi
++)
128 supply_register (FP0_REGNUM
+ regi
,
129 (char *) &fpregsetp
->fp_r
.fp_regs
[regi
]);
131 supply_register (FCRCS_REGNUM
, (char *) &fpregsetp
->fp_csr
);
133 /* FIXME: how can we supply FCRIR_REGNUM? SGI doesn't tell us. */
134 supply_register (FCRIR_REGNUM
, zerobuf
);
138 fill_fpregset (fpregset_t
*fpregsetp
, int regno
)
143 /* FIXME, this is wrong for the N32 ABI which has 64 bit FP regs. */
145 for (regi
= FP0_REGNUM
; regi
< FP0_REGNUM
+ 32; regi
++)
147 if ((regno
== -1) || (regno
== regi
))
149 from
= (char *) ®isters
[REGISTER_BYTE (regi
)];
150 to
= (char *) &(fpregsetp
->fp_r
.fp_regs
[regi
- FP0_REGNUM
]);
151 memcpy (to
, from
, REGISTER_RAW_SIZE (regi
));
155 if ((regno
== -1) || (regno
== FCRCS_REGNUM
))
156 fpregsetp
->fp_csr
= *(unsigned *) ®isters
[REGISTER_BYTE (FCRCS_REGNUM
)];
160 /* Figure out where the longjmp will land.
161 We expect the first arg to be a pointer to the jmp_buf structure from which
162 we extract the pc (JB_PC) that we will land at. The pc is copied into PC.
163 This routine returns true on success. */
166 get_longjmp_target (CORE_ADDR
*pc
)
171 buf
= alloca (TARGET_PTR_BIT
/ TARGET_CHAR_BIT
);
172 jb_addr
= read_register (A0_REGNUM
);
174 if (target_read_memory (jb_addr
+ JB_PC
* JB_ELEMENT_SIZE
, buf
,
175 TARGET_PTR_BIT
/ TARGET_CHAR_BIT
))
178 *pc
= extract_address (buf
, TARGET_PTR_BIT
/ TARGET_CHAR_BIT
);
184 fetch_core_registers (core_reg_sect
, core_reg_size
, which
, reg_addr
)
186 unsigned core_reg_size
;
187 int which
; /* Unused */
188 CORE_ADDR reg_addr
; /* Unused */
190 if (core_reg_size
== REGISTER_BYTES
)
192 memcpy ((char *) registers
, core_reg_sect
, core_reg_size
);
194 else if (MIPS_REGSIZE
== 4 &&
195 core_reg_size
== (2 * MIPS_REGSIZE
) * NUM_REGS
)
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
;
203 for (regno
= 0; regno
< NUM_REGS
; regno
++)
205 if (regno
>= FP0_REGNUM
&& regno
< (FP0_REGNUM
+ 32))
207 /* FIXME, this is wrong, N32 has 64 bit FP regs, but GDB
208 currently assumes that they are 32 bit. */
213 if (REGISTER_RAW_SIZE (regno
) == 4)
215 /* copying 4 bytes from eight bytes?
216 I don't see how this can be right... */
221 /* copy all 8 bytes (sizeof(double)) */
240 warning ("wrong size gregset struct in core file");
244 registers_fetched ();
247 /* Irix 5 uses what appears to be a unique form of shared library
248 support. This is a copy of solib.c modified for Irix 5. */
249 /* FIXME: Most of this code could be merged with osfsolib.c and solib.c
250 by using next_link_map_member and xfer_link_map_member in solib.c. */
252 #include <sys/types.h>
254 #include <sys/param.h>
257 /* <obj.h> includes <sym.h> and <symconst.h>, which causes conflicts
258 with our versions of those files included by tm-mips.h. Prevent
259 <obj.h> from including them with some appropriate defines. */
261 #define __SYMCONST_H__
263 #ifdef HAVE_OBJLIST_H
267 #ifdef NEW_OBJ_INFO_MAGIC
268 #define HANDLE_NEW_OBJ_LIST
274 #include "objfiles.h"
277 #include "gdb_regex.h"
278 #include "inferior.h"
279 #include "language.h"
282 /* The symbol which starts off the list of shared libraries. */
283 #define DEBUG_BASE "__rld_obj_head"
285 /* Irix 6.x introduces a new variant of object lists.
286 To be able to debug O32 executables under Irix 6, we have to handle both
291 OBJ_LIST_OLD
, /* Pre Irix 6.x object list. */
292 OBJ_LIST_32
, /* 32 Bit Elf32_Obj_Info. */
293 OBJ_LIST_64
/* 64 Bit Elf64_Obj_Info, FIXME not yet implemented. */
297 /* Define our own link_map structure.
298 This will help to share code with osfsolib.c and solib.c. */
302 obj_list_variant l_variant
; /* which variant of object list */
303 CORE_ADDR l_lladdr
; /* addr in inferior list was read from */
304 CORE_ADDR l_next
; /* address of next object list entry */
307 /* Irix 5 shared objects are pre-linked to particular addresses
308 although the dynamic linker may have to relocate them if the
309 address ranges of the libraries used by the main program clash.
310 The offset is the difference between the address where the object
311 is mapped and the binding address of the shared library. */
312 #define LM_OFFSET(so) ((so) -> offset)
313 /* Loaded address of shared library. */
314 #define LM_ADDR(so) ((so) -> lmstart)
316 char shadow_contents
[BREAKPOINT_MAX
]; /* Stash old bkpt addr contents */
320 struct so_list
*next
; /* next structure in linked list */
322 CORE_ADDR offset
; /* prelink to load address offset */
323 char *so_name
; /* shared object lib name */
324 CORE_ADDR lmstart
; /* lower addr bound of mapped object */
325 CORE_ADDR lmend
; /* upper addr bound of mapped object */
326 char symbols_loaded
; /* flag: symbols read in yet? */
327 char from_tty
; /* flag: print msgs? */
328 struct objfile
*objfile
; /* objfile for loaded lib */
329 struct section_table
*sections
;
330 struct section_table
*sections_end
;
331 struct section_table
*textsection
;
335 static struct so_list
*so_list_head
; /* List of known shared objects */
336 static CORE_ADDR debug_base
; /* Base of dynamic linker structures */
337 static CORE_ADDR breakpoint_addr
; /* Address where end bkpt is set */
339 /* Local function prototypes */
341 static void sharedlibrary_command (char *, int);
343 static int enable_break (void);
345 static int disable_break (void);
347 static void info_sharedlibrary_command (char *, int);
349 static int symbol_add_stub (void *);
351 static struct so_list
*find_solib (struct so_list
*);
353 static struct link_map
*first_link_map_member (void);
355 static struct link_map
*next_link_map_member (struct so_list
*);
357 static void xfer_link_map_member (struct so_list
*, struct link_map
*);
359 static CORE_ADDR
locate_base (void);
361 static int solib_map_sections (void *);
367 solib_map_sections -- open bfd and build sections for shared lib
371 static int solib_map_sections (struct so_list *so)
375 Given a pointer to one of the shared objects in our list
376 of mapped objects, use the recorded name to open a bfd
377 descriptor for the object, build a section table, and then
378 relocate all the section addresses by the base address at
379 which the shared object was mapped.
383 In most (all?) cases the shared object file name recorded in the
384 dynamic linkage tables will be a fully qualified pathname. For
385 cases where it isn't, do we really mimic the systems search
386 mechanism correctly in the below code (particularly the tilde
391 solib_map_sections (void *arg
)
393 struct so_list
*so
= (struct so_list
*) arg
; /* catch_errors bogon */
395 char *scratch_pathname
;
397 struct section_table
*p
;
398 struct cleanup
*old_chain
;
401 filename
= tilde_expand (so
->so_name
);
402 old_chain
= make_cleanup (free
, filename
);
404 scratch_chan
= openp (getenv ("PATH"), 1, filename
, O_RDONLY
, 0,
406 if (scratch_chan
< 0)
408 scratch_chan
= openp (getenv ("LD_LIBRARY_PATH"), 1, filename
,
409 O_RDONLY
, 0, &scratch_pathname
);
411 if (scratch_chan
< 0)
413 perror_with_name (filename
);
415 /* Leave scratch_pathname allocated. abfd->name will point to it. */
417 abfd
= bfd_fdopenr (scratch_pathname
, gnutarget
, scratch_chan
);
420 close (scratch_chan
);
421 error ("Could not open `%s' as an executable file: %s",
422 scratch_pathname
, bfd_errmsg (bfd_get_error ()));
424 /* Leave bfd open, core_xfer_memory and "info files" need it. */
426 abfd
->cacheable
= true;
428 if (!bfd_check_format (abfd
, bfd_object
))
430 error ("\"%s\": not in executable format: %s.",
431 scratch_pathname
, bfd_errmsg (bfd_get_error ()));
433 if (build_section_table (abfd
, &so
->sections
, &so
->sections_end
))
435 error ("Can't find the file sections in `%s': %s",
436 bfd_get_filename (exec_bfd
), bfd_errmsg (bfd_get_error ()));
439 for (p
= so
->sections
; p
< so
->sections_end
; p
++)
441 /* Relocate the section binding addresses as recorded in the shared
442 object's file by the offset to get the address to which the
443 object was actually mapped. */
444 p
->addr
+= LM_OFFSET (so
);
445 p
->endaddr
+= LM_OFFSET (so
);
446 so
->lmend
= (CORE_ADDR
) max (p
->endaddr
, so
->lmend
);
447 if (STREQ (p
->the_bfd_section
->name
, ".text"))
453 /* Free the file names, close the file now. */
454 do_cleanups (old_chain
);
456 /* must be non-zero */
464 locate_base -- locate the base address of dynamic linker structs
468 CORE_ADDR locate_base (void)
472 For both the SunOS and SVR4 shared library implementations, if the
473 inferior executable has been linked dynamically, there is a single
474 address somewhere in the inferior's data space which is the key to
475 locating all of the dynamic linker's runtime structures. This
476 address is the value of the symbol defined by the macro DEBUG_BASE.
477 The job of this function is to find and return that address, or to
478 return 0 if there is no such address (the executable is statically
481 For SunOS, the job is almost trivial, since the dynamic linker and
482 all of it's structures are statically linked to the executable at
483 link time. Thus the symbol for the address we are looking for has
484 already been added to the minimal symbol table for the executable's
485 objfile at the time the symbol file's symbols were read, and all we
486 have to do is look it up there. Note that we explicitly do NOT want
487 to find the copies in the shared library.
489 The SVR4 version is much more complicated because the dynamic linker
490 and it's structures are located in the shared C library, which gets
491 run as the executable's "interpreter" by the kernel. We have to go
492 to a lot more work to discover the address of DEBUG_BASE. Because
493 of this complexity, we cache the value we find and return that value
494 on subsequent invocations. Note there is no copy in the executable
497 Irix 5 is basically like SunOS.
499 Note that we can assume nothing about the process state at the time
500 we need to find this address. We may be stopped on the first instruc-
501 tion of the interpreter (C shared library), the first instruction of
502 the executable itself, or somewhere else entirely (if we attached
503 to the process for example).
510 struct minimal_symbol
*msymbol
;
511 CORE_ADDR address
= 0;
513 msymbol
= lookup_minimal_symbol (DEBUG_BASE
, NULL
, symfile_objfile
);
514 if ((msymbol
!= NULL
) && (SYMBOL_VALUE_ADDRESS (msymbol
) != 0))
516 address
= SYMBOL_VALUE_ADDRESS (msymbol
);
525 first_link_map_member -- locate first member in dynamic linker's map
529 static struct link_map *first_link_map_member (void)
533 Read in a copy of the first member in the inferior's dynamic
534 link map from the inferior's dynamic linker structures, and return
535 a pointer to the link map descriptor.
538 static struct link_map
*
539 first_link_map_member (void)
541 struct obj_list
*listp
;
542 struct obj_list list_old
;
544 static struct link_map first_lm
;
546 CORE_ADDR next_lladdr
;
548 /* We have not already read in the dynamic linking structures
549 from the inferior, lookup the address of the base structure. */
550 debug_base
= locate_base ();
554 /* Get address of first list entry. */
555 read_memory (debug_base
, (char *) &listp
, sizeof (struct obj_list
*));
560 /* Get first list entry. */
561 /* The MIPS Sign extends addresses. */
562 lladdr
= host_pointer_to_address (listp
);
563 read_memory (lladdr
, (char *) &list_old
, sizeof (struct obj_list
));
565 /* The first entry in the list is the object file we are debugging,
567 next_lladdr
= host_pointer_to_address (list_old
.next
);
569 #ifdef HANDLE_NEW_OBJ_LIST
570 if (list_old
.data
== NEW_OBJ_INFO_MAGIC
)
572 Elf32_Obj_Info list_32
;
574 read_memory (lladdr
, (char *) &list_32
, sizeof (Elf32_Obj_Info
));
575 if (list_32
.oi_size
!= sizeof (Elf32_Obj_Info
))
577 next_lladdr
= (CORE_ADDR
) list_32
.oi_next
;
581 if (next_lladdr
== 0)
584 first_lm
.l_lladdr
= next_lladdr
;
593 next_link_map_member -- locate next member in dynamic linker's map
597 static struct link_map *next_link_map_member (so_list_ptr)
601 Read in a copy of the next member in the inferior's dynamic
602 link map from the inferior's dynamic linker structures, and return
603 a pointer to the link map descriptor.
606 static struct link_map
*
607 next_link_map_member (struct so_list
*so_list_ptr
)
609 struct link_map
*lm
= &so_list_ptr
->lm
;
610 CORE_ADDR next_lladdr
= lm
->l_next
;
611 static struct link_map next_lm
;
613 if (next_lladdr
== 0)
615 /* We have hit the end of the list, so check to see if any were
616 added, but be quiet if we can't read from the target any more. */
619 if (lm
->l_variant
== OBJ_LIST_OLD
)
621 struct obj_list list_old
;
623 status
= target_read_memory (lm
->l_lladdr
,
625 sizeof (struct obj_list
));
626 next_lladdr
= host_pointer_to_address (list_old
.next
);
628 #ifdef HANDLE_NEW_OBJ_LIST
629 else if (lm
->l_variant
== OBJ_LIST_32
)
631 Elf32_Obj_Info list_32
;
632 status
= target_read_memory (lm
->l_lladdr
,
634 sizeof (Elf32_Obj_Info
));
635 next_lladdr
= (CORE_ADDR
) list_32
.oi_next
;
639 if (status
!= 0 || next_lladdr
== 0)
643 next_lm
.l_lladdr
= next_lladdr
;
652 xfer_link_map_member -- set local variables from dynamic linker's map
656 static void xfer_link_map_member (so_list_ptr, lm)
660 Read in a copy of the requested member in the inferior's dynamic
661 link map from the inferior's dynamic linker structures, and fill
662 in the necessary so_list_ptr elements.
666 xfer_link_map_member (struct so_list
*so_list_ptr
, struct link_map
*lm
)
668 struct obj_list list_old
;
669 CORE_ADDR lladdr
= lm
->l_lladdr
;
670 struct link_map
*new_lm
= &so_list_ptr
->lm
;
673 read_memory (lladdr
, (char *) &list_old
, sizeof (struct obj_list
));
675 new_lm
->l_variant
= OBJ_LIST_OLD
;
676 new_lm
->l_lladdr
= lladdr
;
677 new_lm
->l_next
= host_pointer_to_address (list_old
.next
);
679 #ifdef HANDLE_NEW_OBJ_LIST
680 if (list_old
.data
== NEW_OBJ_INFO_MAGIC
)
682 Elf32_Obj_Info list_32
;
684 read_memory (lladdr
, (char *) &list_32
, sizeof (Elf32_Obj_Info
));
685 if (list_32
.oi_size
!= sizeof (Elf32_Obj_Info
))
687 new_lm
->l_variant
= OBJ_LIST_32
;
688 new_lm
->l_next
= (CORE_ADDR
) list_32
.oi_next
;
690 target_read_string ((CORE_ADDR
) list_32
.oi_pathname
,
691 &so_list_ptr
->so_name
,
692 list_32
.oi_pathname_len
+ 1, &errcode
);
694 memory_error (errcode
, (CORE_ADDR
) list_32
.oi_pathname
);
696 LM_ADDR (so_list_ptr
) = (CORE_ADDR
) list_32
.oi_ehdr
;
697 LM_OFFSET (so_list_ptr
) =
698 (CORE_ADDR
) list_32
.oi_ehdr
- (CORE_ADDR
) list_32
.oi_orig_ehdr
;
703 #if defined (_MIPS_SIM_NABI32) && _MIPS_SIM == _MIPS_SIM_NABI32
704 /* If we are compiling GDB under N32 ABI, the alignments in
705 the obj struct are different from the O32 ABI and we will get
706 wrong values when accessing the struct.
707 As a workaround we use fixed values which are good for
711 read_memory ((CORE_ADDR
) list_old
.data
, buf
, sizeof (buf
));
713 target_read_string (extract_address (&buf
[236], 4),
714 &so_list_ptr
->so_name
,
717 memory_error (errcode
, extract_address (&buf
[236], 4));
719 LM_ADDR (so_list_ptr
) = extract_address (&buf
[196], 4);
720 LM_OFFSET (so_list_ptr
) =
721 extract_address (&buf
[196], 4) - extract_address (&buf
[248], 4);
725 read_memory ((CORE_ADDR
) list_old
.data
, (char *) &obj_old
,
726 sizeof (struct obj
));
728 target_read_string ((CORE_ADDR
) obj_old
.o_path
,
729 &so_list_ptr
->so_name
,
732 memory_error (errcode
, (CORE_ADDR
) obj_old
.o_path
);
734 LM_ADDR (so_list_ptr
) = (CORE_ADDR
) obj_old
.o_praw
;
735 LM_OFFSET (so_list_ptr
) =
736 (CORE_ADDR
) obj_old
.o_praw
- obj_old
.o_base_address
;
740 catch_errors (solib_map_sections
, (char *) so_list_ptr
,
741 "Error while mapping shared library sections:\n",
750 find_solib -- step through list of shared objects
754 struct so_list *find_solib (struct so_list *so_list_ptr)
758 This module contains the routine which finds the names of any
759 loaded "images" in the current process. The argument in must be
760 NULL on the first call, and then the returned value must be passed
761 in on subsequent calls. This provides the capability to "step" down
762 the list of loaded objects. On the last object, a NULL value is
766 static struct so_list
*
767 find_solib (so_list_ptr
)
768 struct so_list
*so_list_ptr
; /* Last lm or NULL for first one */
770 struct so_list
*so_list_next
= NULL
;
771 struct link_map
*lm
= NULL
;
774 if (so_list_ptr
== NULL
)
776 /* We are setting up for a new scan through the loaded images. */
777 if ((so_list_next
= so_list_head
) == NULL
)
779 /* Find the first link map list member. */
780 lm
= first_link_map_member ();
785 /* We have been called before, and are in the process of walking
786 the shared library list. Advance to the next shared object. */
787 lm
= next_link_map_member (so_list_ptr
);
788 so_list_next
= so_list_ptr
->next
;
790 if ((so_list_next
== NULL
) && (lm
!= NULL
))
792 new = (struct so_list
*) xmalloc (sizeof (struct so_list
));
793 memset ((char *) new, 0, sizeof (struct so_list
));
794 /* Add the new node as the next node in the list, or as the root
795 node if this is the first one. */
796 if (so_list_ptr
!= NULL
)
798 so_list_ptr
->next
= new;
805 xfer_link_map_member (new, lm
);
807 return (so_list_next
);
810 /* A small stub to get us past the arg-passing pinhole of catch_errors. */
813 symbol_add_stub (void *arg
)
815 register struct so_list
*so
= (struct so_list
*) arg
; /* catch_errs bogon */
816 CORE_ADDR text_addr
= 0;
817 struct section_addr_info section_addrs
;
819 memset (§ion_addrs
, 0, sizeof (section_addrs
));
821 text_addr
= so
->textsection
->addr
;
822 else if (so
->abfd
!= NULL
)
824 asection
*lowest_sect
;
826 /* If we didn't find a mapped non zero sized .text section, set up
827 text_addr so that the relocation in symbol_file_add does no harm. */
829 lowest_sect
= bfd_get_section_by_name (so
->abfd
, ".text");
830 if (lowest_sect
== NULL
)
831 bfd_map_over_sections (so
->abfd
, find_lowest_section
,
834 text_addr
= bfd_section_vma (so
->abfd
, lowest_sect
) + LM_OFFSET (so
);
838 section_addrs
.other
[0].name
= ".text";
839 section_addrs
.other
[0].addr
= text_addr
;
840 so
->objfile
= symbol_file_add (so
->so_name
, so
->from_tty
,
841 §ion_addrs
, 0, 0);
842 /* must be non-zero */
850 solib_add -- add a shared library file to the symtab and section list
854 void solib_add (char *arg_string, int from_tty,
855 struct target_ops *target)
862 solib_add (char *arg_string
, int from_tty
, struct target_ops
*target
)
864 register struct so_list
*so
= NULL
; /* link map state variable */
866 /* Last shared library that we read. */
867 struct so_list
*so_last
= NULL
;
873 if ((re_err
= re_comp (arg_string
? arg_string
: ".")) != NULL
)
875 error ("Invalid regexp: %s", re_err
);
878 /* Add the shared library sections to the section table of the
879 specified target, if any. */
882 /* Count how many new section_table entries there are. */
885 while ((so
= find_solib (so
)) != NULL
)
889 count
+= so
->sections_end
- so
->sections
;
895 old
= target_resize_to_sections (target
, count
);
897 /* Add these section table entries to the target's table. */
898 while ((so
= find_solib (so
)) != NULL
)
902 count
= so
->sections_end
- so
->sections
;
903 memcpy ((char *) (target
->to_sections
+ old
),
905 (sizeof (struct section_table
)) * count
);
912 /* Now add the symbol files. */
913 while ((so
= find_solib (so
)) != NULL
)
915 if (so
->so_name
[0] && re_exec (so
->so_name
))
917 so
->from_tty
= from_tty
;
918 if (so
->symbols_loaded
)
922 printf_unfiltered ("Symbols already loaded for %s\n", so
->so_name
);
925 else if (catch_errors
926 (symbol_add_stub
, (char *) so
,
927 "Error while reading shared library symbols:\n",
931 so
->symbols_loaded
= 1;
936 /* Getting new symbols may change our opinion about what is
939 reinit_frame_cache ();
946 info_sharedlibrary_command -- code for "info sharedlibrary"
950 static void info_sharedlibrary_command ()
954 Walk through the shared library list and print information
955 about each attached library.
959 info_sharedlibrary_command (char *ignore
, int from_tty
)
961 register struct so_list
*so
= NULL
; /* link map state variable */
964 if (exec_bfd
== NULL
)
966 printf_unfiltered ("No executable file.\n");
969 while ((so
= find_solib (so
)) != NULL
)
975 printf_unfiltered ("%-12s%-12s%-12s%s\n", "From", "To", "Syms Read",
976 "Shared Object Library");
979 printf_unfiltered ("%-12s",
980 local_hex_string_custom ((unsigned long) LM_ADDR (so
),
982 printf_unfiltered ("%-12s",
983 local_hex_string_custom ((unsigned long) so
->lmend
,
985 printf_unfiltered ("%-12s", so
->symbols_loaded
? "Yes" : "No");
986 printf_unfiltered ("%s\n", so
->so_name
);
989 if (so_list_head
== NULL
)
991 printf_unfiltered ("No shared libraries loaded at this time.\n");
999 solib_address -- check to see if an address is in a shared lib
1003 char *solib_address (CORE_ADDR address)
1007 Provides a hook for other gdb routines to discover whether or
1008 not a particular address is within the mapped address space of
1009 a shared library. Any address between the base mapping address
1010 and the first address beyond the end of the last mapping, is
1011 considered to be within the shared library address space, for
1014 For example, this routine is called at one point to disable
1015 breakpoints which are in shared libraries that are not currently
1020 solib_address (CORE_ADDR address
)
1022 register struct so_list
*so
= 0; /* link map state variable */
1024 while ((so
= find_solib (so
)) != NULL
)
1028 if ((address
>= (CORE_ADDR
) LM_ADDR (so
)) &&
1029 (address
< (CORE_ADDR
) so
->lmend
))
1030 return (so
->so_name
);
1036 /* Called by free_all_symtabs */
1041 struct so_list
*next
;
1044 disable_breakpoints_in_shlibs (1);
1046 while (so_list_head
)
1048 if (so_list_head
->sections
)
1050 free ((PTR
) so_list_head
->sections
);
1052 if (so_list_head
->abfd
)
1054 bfd_filename
= bfd_get_filename (so_list_head
->abfd
);
1055 if (!bfd_close (so_list_head
->abfd
))
1056 warning ("cannot close \"%s\": %s",
1057 bfd_filename
, bfd_errmsg (bfd_get_error ()));
1060 /* This happens for the executable on SVR4. */
1061 bfd_filename
= NULL
;
1063 next
= so_list_head
->next
;
1065 free ((PTR
) bfd_filename
);
1066 free (so_list_head
->so_name
);
1067 free ((PTR
) so_list_head
);
1068 so_list_head
= next
;
1077 disable_break -- remove the "mapping changed" breakpoint
1081 static int disable_break ()
1085 Removes the breakpoint that gets hit when the dynamic linker
1086 completes a mapping change.
1091 disable_break (void)
1096 /* Note that breakpoint address and original contents are in our address
1097 space, so we just need to write the original contents back. */
1099 if (memory_remove_breakpoint (breakpoint_addr
, shadow_contents
) != 0)
1104 /* For the SVR4 version, we always know the breakpoint address. For the
1105 SunOS version we don't know it until the above code is executed.
1106 Grumble if we are stopped anywhere besides the breakpoint address. */
1108 if (stop_pc
!= breakpoint_addr
)
1110 warning ("stopped at unknown breakpoint while handling shared libraries");
1120 enable_break -- arrange for dynamic linker to hit breakpoint
1124 int enable_break (void)
1128 This functions inserts a breakpoint at the entry point of the
1129 main executable, where all shared libraries are mapped in.
1135 if (symfile_objfile
!= NULL
1136 && target_insert_breakpoint (symfile_objfile
->ei
.entry_point
,
1137 shadow_contents
) == 0)
1139 breakpoint_addr
= symfile_objfile
->ei
.entry_point
;
1150 solib_create_inferior_hook -- shared library startup support
1154 void solib_create_inferior_hook()
1158 When gdb starts up the inferior, it nurses it along (through the
1159 shell) until it is ready to execute it's first instruction. At this
1160 point, this function gets called via expansion of the macro
1161 SOLIB_CREATE_INFERIOR_HOOK.
1163 For SunOS executables, this first instruction is typically the
1164 one at "_start", or a similar text label, regardless of whether
1165 the executable is statically or dynamically linked. The runtime
1166 startup code takes care of dynamically linking in any shared
1167 libraries, once gdb allows the inferior to continue.
1169 For SVR4 executables, this first instruction is either the first
1170 instruction in the dynamic linker (for dynamically linked
1171 executables) or the instruction at "start" for statically linked
1172 executables. For dynamically linked executables, the system
1173 first exec's /lib/libc.so.N, which contains the dynamic linker,
1174 and starts it running. The dynamic linker maps in any needed
1175 shared libraries, maps in the actual user executable, and then
1176 jumps to "start" in the user executable.
1178 For both SunOS shared libraries, and SVR4 shared libraries, we
1179 can arrange to cooperate with the dynamic linker to discover the
1180 names of shared libraries that are dynamically linked, and the
1181 base addresses to which they are linked.
1183 This function is responsible for discovering those names and
1184 addresses, and saving sufficient information about them to allow
1185 their symbols to be read at a later time.
1189 Between enable_break() and disable_break(), this code does not
1190 properly handle hitting breakpoints which the user might have
1191 set in the startup code or in the dynamic linker itself. Proper
1192 handling will probably have to wait until the implementation is
1193 changed to use the "breakpoint handler function" method.
1195 Also, what if child has exit()ed? Must exit loop somehow.
1199 solib_create_inferior_hook (void)
1201 if (!enable_break ())
1203 warning ("shared library handler failed to enable breakpoint");
1207 /* Now run the target. It will eventually hit the breakpoint, at
1208 which point all of the libraries will have been mapped in and we
1209 can go groveling around in the dynamic linker structures to find
1210 out what we need to know about them. */
1212 clear_proceed_status ();
1213 stop_soon_quietly
= 1;
1214 stop_signal
= TARGET_SIGNAL_0
;
1217 target_resume (-1, 0, stop_signal
);
1218 wait_for_inferior ();
1220 while (stop_signal
!= TARGET_SIGNAL_TRAP
);
1222 /* We are now either at the "mapping complete" breakpoint (or somewhere
1223 else, a condition we aren't prepared to deal with anyway), so adjust
1224 the PC as necessary after a breakpoint, disable the breakpoint, and
1225 add any shared libraries that were mapped in. */
1227 if (DECR_PC_AFTER_BREAK
)
1229 stop_pc
-= DECR_PC_AFTER_BREAK
;
1230 write_register (PC_REGNUM
, stop_pc
);
1233 if (!disable_break ())
1235 warning ("shared library handler failed to disable breakpoint");
1238 /* solib_add will call reinit_frame_cache.
1239 But we are stopped in the startup code and we might not have symbols
1240 for the startup code, so heuristic_proc_start could be called
1241 and will put out an annoying warning.
1242 Delaying the resetting of stop_soon_quietly until after symbol loading
1243 suppresses the warning. */
1245 solib_add ((char *) 0, 0, (struct target_ops
*) 0);
1246 stop_soon_quietly
= 0;
1253 sharedlibrary_command -- handle command to explicitly add library
1257 static void sharedlibrary_command (char *args, int from_tty)
1264 sharedlibrary_command (char *args
, int from_tty
)
1267 solib_add (args
, from_tty
, (struct target_ops
*) 0);
1271 _initialize_solib (void)
1273 add_com ("sharedlibrary", class_files
, sharedlibrary_command
,
1274 "Load shared object library symbols for files matching REGEXP.");
1275 add_info ("sharedlibrary", info_sharedlibrary_command
,
1276 "Status of loaded shared object libraries.");
1279 (add_set_cmd ("auto-solib-add", class_support
, var_zinteger
,
1280 (char *) &auto_solib_add
,
1281 "Set autoloading of shared library symbols.\n\
1282 If nonzero, symbols from all shared object libraries will be loaded\n\
1283 automatically when the inferior begins execution or when the dynamic linker\n\
1284 informs gdb that a new library has been loaded. Otherwise, symbols\n\
1285 must be loaded manually, using `sharedlibrary'.",
1291 /* Register that we are able to handle irix5 core file formats.
1292 This really is bfd_target_unknown_flavour */
1294 static struct core_fns irix5_core_fns
=
1296 bfd_target_unknown_flavour
, /* core_flavour */
1297 default_check_format
, /* check_format */
1298 default_core_sniffer
, /* core_sniffer */
1299 fetch_core_registers
, /* core_read_registers */
1304 _initialize_core_irix5 (void)
1306 add_core_fns (&irix5_core_fns
);