Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
[deliverable/binutils-gdb.git] / gdb / corelow.c
CommitLineData
8afd6ca5 1/* Core dump and executable file functions below target vector, for GDB.
ba47c66a
PS
2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
8afd6ca5
RP
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21#include "defs.h"
ba47c66a 22#include <string.h>
8afd6ca5
RP
23#include <errno.h>
24#include <signal.h>
25#include <fcntl.h>
26#include "frame.h" /* required by inferior.h */
27#include "inferior.h"
28#include "symtab.h"
29#include "command.h"
30#include "bfd.h"
31#include "target.h"
32#include "gdbcore.h"
100f92e2 33#include "thread.h"
8afd6ca5
RP
34
35static void
36core_files_info PARAMS ((struct target_ops *));
37
38#ifdef SOLIB_ADD
39static int
40solib_add_stub PARAMS ((char *));
41#endif
42
43static void
44core_close PARAMS ((int));
45
46static void
47get_core_registers PARAMS ((int));
48
49/* Discard all vestiges of any previous core file
50 and mark data and stack spaces as empty. */
51
52/* ARGSUSED */
53static void
54core_close (quitting)
55 int quitting;
56{
d113e6b2
SG
57 inferior_pid = 0; /* Avoid confusion from thread stuff */
58
8afd6ca5
RP
59 if (core_bfd) {
60 free (bfd_get_filename (core_bfd));
61 bfd_close (core_bfd);
62 core_bfd = NULL;
63#ifdef CLEAR_SOLIB
64 CLEAR_SOLIB ();
65#endif
66 if (core_ops.to_sections) {
67 free ((PTR)core_ops.to_sections);
68 core_ops.to_sections = NULL;
69 core_ops.to_sections_end = NULL;
70 }
71 }
72}
73
74#ifdef SOLIB_ADD
842cf831
JK
75/* Stub function for catch_errors around shared library hacking. FROM_TTYP
76 is really an int * which points to from_tty. */
8afd6ca5
RP
77
78static int
842cf831
JK
79solib_add_stub (from_ttyp)
80 char *from_ttyp;
8afd6ca5 81{
9137a6f4 82 SOLIB_ADD (NULL, *(int *)from_ttyp, &current_target);
26a859ec 83 return 0;
8afd6ca5
RP
84}
85#endif /* SOLIB_ADD */
86
d113e6b2
SG
87/* Look for sections whose names start with `.reg/' so that we can extract the
88 list of threads in a core file. */
89
90static void
7c5d526e 91add_to_thread_list (abfd, asect, reg_sect_arg)
d113e6b2
SG
92 bfd *abfd;
93 asection *asect;
7c5d526e 94 PTR reg_sect_arg;
d113e6b2
SG
95{
96 int thread_id;
4cc5b060 97 asection *reg_sect = (asection *) reg_sect_arg;
d113e6b2
SG
98
99 if (strncmp (bfd_section_name (abfd, asect), ".reg/", 5) != 0)
100 return;
101
102 thread_id = atoi (bfd_section_name (abfd, asect) + 5);
103
104 add_thread (thread_id);
105
106/* Warning, Will Robinson, looking at BFD private data! */
107
108 if (asect->filepos == reg_sect->filepos) /* Did we find .reg? */
109 inferior_pid = thread_id; /* Yes, make it current */
110}
111
8afd6ca5
RP
112/* This routine opens and sets up the core file bfd */
113
114void
115core_open (filename, from_tty)
116 char *filename;
117 int from_tty;
118{
119 const char *p;
120 int siggy;
121 struct cleanup *old_chain;
122 char *temp;
123 bfd *temp_bfd;
124 int ontop;
125 int scratch_chan;
126
127 target_preopen (from_tty);
128 if (!filename)
129 {
130 error (core_bfd?
131 "No core file specified. (Use `detach' to stop debugging a core file.)"
132 : "No core file specified.");
133 }
134
135 filename = tilde_expand (filename);
136 if (filename[0] != '/') {
137 temp = concat (current_directory, "/", filename, NULL);
138 free (filename);
139 filename = temp;
140 }
141
142 old_chain = make_cleanup (free, filename);
143
144 scratch_chan = open (filename, write_files? O_RDWR: O_RDONLY, 0);
145 if (scratch_chan < 0)
146 perror_with_name (filename);
147
0685d95f 148 temp_bfd = bfd_fdopenr (filename, gnutarget, scratch_chan);
8afd6ca5
RP
149 if (temp_bfd == NULL)
150 {
151 perror_with_name (filename);
152 }
153
154 if (!bfd_check_format (temp_bfd, bfd_core))
155 {
156 /* Do it after the err msg */
157 make_cleanup (bfd_close, temp_bfd);
c4a081e1 158 error ("\"%s\" is not a core dump: %s", filename, bfd_errmsg(bfd_get_error ()));
8afd6ca5
RP
159 }
160
161 /* Looks semi-reasonable. Toss the old core file and work on the new. */
162
163 discard_cleanups (old_chain); /* Don't free filename any more */
164 unpush_target (&core_ops);
165 core_bfd = temp_bfd;
166 old_chain = make_cleanup (core_close, core_bfd);
167
168 validate_files ();
169
170 /* Find the data section */
171 if (build_section_table (core_bfd, &core_ops.to_sections,
172 &core_ops.to_sections_end))
173 error ("Can't find sections in `%s': %s", bfd_get_filename(core_bfd),
c4a081e1 174 bfd_errmsg (bfd_get_error ()));
8afd6ca5
RP
175
176 ontop = !push_target (&core_ops);
177 discard_cleanups (old_chain);
178
179 p = bfd_core_file_failing_command (core_bfd);
180 if (p)
181 printf_filtered ("Core was generated by `%s'.\n", p);
182
183 siggy = bfd_core_file_failing_signal (core_bfd);
184 if (siggy > 0)
185 printf_filtered ("Program terminated with signal %d, %s.\n", siggy,
186 safe_strsignal (siggy));
187
d113e6b2
SG
188 /* Build up thread list from BFD sections. */
189
190 init_thread_list ();
191 bfd_map_over_sections (core_bfd, add_to_thread_list,
192 bfd_get_section_by_name (core_bfd, ".reg"));
193
8afd6ca5
RP
194 if (ontop) {
195 /* Fetch all registers from core file */
196 target_fetch_registers (-1);
197
198 /* Add symbols and section mappings for any shared libraries */
199#ifdef SOLIB_ADD
842cf831 200 catch_errors (solib_add_stub, &from_tty, (char *)0,
9748446f 201 RETURN_MASK_ALL);
9137a6f4
PS
202
203 /* solib_add_stub usually modifies current_target.to_sections, which
204 has to be reflected in core_ops to enable proper freeing of
a91b6ec8
PS
205 the to_sections vector in core_close and correct section
206 mapping in xfer_memory and core_files_info. */
9137a6f4 207 core_ops.to_sections = current_target.to_sections;
a91b6ec8 208 core_ops.to_sections_end = current_target.to_sections_end;
8afd6ca5
RP
209#endif
210
211 /* Now, set up the frame cache, and print the top of stack */
16726dd1 212 flush_cached_frames ();
8afd6ca5
RP
213 select_frame (get_current_frame (), 0);
214 print_stack_frame (selected_frame, selected_frame_level, 1);
215 } else {
216 warning (
217"you won't be able to access this core file until you terminate\n\
cad1498f 218your %s; do ``info files''", target_longname);
8afd6ca5
RP
219 }
220}
221
222void
223core_detach (args, from_tty)
224 char *args;
225 int from_tty;
226{
227 if (args)
228 error ("Too many arguments");
229 unpush_target (&core_ops);
c5198d93 230 reinit_frame_cache ();
8afd6ca5
RP
231 if (from_tty)
232 printf_filtered ("No core file now.\n");
233}
234
235/* Get the registers out of a core file. This is the machine-
236 independent part. Fetch_core_registers is the machine-dependent
237 part, typically implemented in the xm-file for each architecture. */
238
239/* We just get all the registers, so we don't use regno. */
240/* ARGSUSED */
241static void
242get_core_registers (regno)
243 int regno;
244{
245 sec_ptr reg_sec;
246 unsigned size;
247 char *the_regs;
d113e6b2
SG
248 char secname[10];
249
250 /* Thread support. If inferior_pid is non-zero, then we have found a core
251 file with threads (or multiple processes). In that case, we need to
252 use the appropriate register section, else we just use `.reg'. */
253
254 /* XXX - same thing needs to be done for floating-point (.reg2) sections. */
255
256 if (inferior_pid)
257 sprintf (secname, ".reg/%d", inferior_pid);
258 else
259 strcpy (secname, ".reg");
8afd6ca5 260
d113e6b2 261 reg_sec = bfd_get_section_by_name (core_bfd, secname);
8afd6ca5
RP
262 if (!reg_sec) goto cant;
263 size = bfd_section_size (core_bfd, reg_sec);
264 the_regs = alloca (size);
265 if (bfd_get_section_contents (core_bfd, reg_sec, the_regs, (file_ptr)0, size))
266 {
267 fetch_core_registers (the_regs, size, 0,
268 (unsigned) bfd_section_vma (abfd,reg_sec));
269 }
270 else
271 {
272cant:
199b2450 273 fprintf_filtered (gdb_stderr, "Couldn't fetch registers from core file: %s\n",
c4a081e1 274 bfd_errmsg (bfd_get_error ()));
8afd6ca5
RP
275 }
276
277 /* Now do it again for the float registers, if they exist. */
278 reg_sec = bfd_get_section_by_name (core_bfd, ".reg2");
279 if (reg_sec) {
280 size = bfd_section_size (core_bfd, reg_sec);
281 the_regs = alloca (size);
282 if (bfd_get_section_contents (core_bfd, reg_sec, the_regs, (file_ptr)0,
283 size))
284 {
285 fetch_core_registers (the_regs, size, 2,
286 (unsigned) bfd_section_vma (abfd,reg_sec));
287 }
288 else
289 {
199b2450 290 fprintf_filtered (gdb_stderr, "Couldn't fetch register set 2 from core file: %s\n",
c4a081e1 291 bfd_errmsg (bfd_get_error ()));
8afd6ca5
RP
292 }
293 }
294 registers_fetched();
295}
296
297static void
298core_files_info (t)
299 struct target_ops *t;
300{
301 print_section_info (t, core_bfd);
302}
303\f
f47e56c9 304/* If mourn is being called in all the right places, this could be say
cf3e377e 305 `gdb internal error' (since generic_mourn calls breakpoint_init_inferior). */
f47e56c9
JK
306
307static int
308ignore (addr, contents)
309 CORE_ADDR addr;
310 char *contents;
311{
100f92e2 312 return 0;
f47e56c9
JK
313}
314
8afd6ca5
RP
315struct target_ops core_ops = {
316 "core", "Local core dump file",
317 "Use a core file as a target. Specify the filename of the core file.",
318 core_open, core_close,
319 find_default_attach, core_detach, 0, 0, /* resume, wait */
320 get_core_registers,
321 0, 0, /* store_regs, prepare_to_store */
322 xfer_memory, core_files_info,
f47e56c9 323 ignore, ignore, /* core_insert_breakpoint, core_remove_breakpoint, */
8afd6ca5
RP
324 0, 0, 0, 0, 0, /* terminal stuff */
325 0, 0, 0, /* kill, load, lookup sym */
326 find_default_create_inferior, 0, /* mourn_inferior */
327 0, /* can_run */
3950a34e 328 0, /* notice_signals */
8afd6ca5
RP
329 core_stratum, 0, /* next */
330 0, 1, 1, 1, 0, /* all mem, mem, stack, regs, exec */
331 0, 0, /* section pointers */
332 OPS_MAGIC, /* Always the last thing */
333};
334
335void
336_initialize_corelow()
337{
338 add_target (&core_ops);
339}
This page took 0.125854 seconds and 4 git commands to generate.