Moved the position of the #### lines so that the makefile fragments
[deliverable/binutils-gdb.git] / gdb / core.c
CommitLineData
dd3b648e 1/* Work with core dump and executable files, for GDB.
7d9884b9 2 Copyright 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
dd3b648e
RP
3
4This file is part of GDB.
5
99a7de40 6This program is free software; you can redistribute it and/or modify
dd3b648e 7it under the terms of the GNU General Public License as published by
99a7de40
JG
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
dd3b648e 10
99a7de40 11This program is distributed in the hope that it will be useful,
dd3b648e
RP
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
99a7de40
JG
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
dd3b648e
RP
19
20#include <stdio.h>
21#include <errno.h>
22#include <signal.h>
bdbd5f50 23#include <fcntl.h>
dd3b648e 24#include "defs.h"
dd3b648e
RP
25#include "frame.h" /* required by inferior.h */
26#include "inferior.h"
27#include "symtab.h"
28#include "command.h"
29#include "bfd.h"
30#include "target.h"
31#include "gdbcore.h"
32
33extern int xfer_memory ();
34extern void child_attach (), child_create_inferior ();
35
36extern int sys_nerr;
37extern char *sys_errlist[];
38extern char *sys_siglist[];
39
40extern char registers[];
41
42/* Hook for `exec_file_command' command to call. */
43
44void (*exec_file_display_hook) () = NULL;
45
dd3b648e
RP
46/* Binary file diddling handle for the core file. */
47
48bfd *core_bfd = NULL;
49
50/* Forward decl */
51extern struct target_ops core_ops;
52
53\f
54/* Discard all vestiges of any previous core file
55 and mark data and stack spaces as empty. */
56
e1ce8aa5 57/* ARGSUSED */
dd3b648e
RP
58void
59core_close (quitting)
60 int quitting;
61{
62 if (core_bfd) {
63 free (bfd_get_filename (core_bfd));
64 bfd_close (core_bfd);
65 core_bfd = NULL;
d0237a54
JK
66#ifdef CLEAR_SOLIB
67 CLEAR_SOLIB ();
68#endif
c561ca5d
JG
69 if (core_ops.sections) {
70 free (core_ops.sections);
71 core_ops.sections = NULL;
72 core_ops.sections_end = NULL;
73 }
dd3b648e
RP
74 }
75}
76
5c9878f1
JG
77#ifdef SOLIB_ADD
78/* Stub function for catch_errors around shared library hacking. */
79
80int
81solib_add_stub (from_tty)
bdbd5f50 82 char *from_tty;
5c9878f1 83{
bdbd5f50 84 SOLIB_ADD (NULL, (int)from_tty, &core_ops);
5c9878f1
JG
85 return 0;
86}
87#endif /* SOLIB_ADD */
88
dd3b648e
RP
89/* This routine opens and sets up the core file bfd */
90
91void
92core_open (filename, from_tty)
93 char *filename;
94 int from_tty;
95{
c3a21801 96 const char *p;
dd3b648e
RP
97 int siggy;
98 struct cleanup *old_chain;
99 char *temp;
100 bfd *temp_bfd;
101 int ontop;
bdbd5f50 102 int scratch_chan;
dd3b648e 103
f2fc6e7a 104 target_preopen (from_tty);
dd3b648e
RP
105 if (!filename)
106 {
107 error (core_bfd?
108 "No core file specified. (Use `detach' to stop debugging a core file.)"
109 : "No core file specified.");
110 }
111
112 filename = tilde_expand (filename);
113 if (filename[0] != '/') {
58ae87f6 114 temp = concat (current_directory, "/", filename, NULL);
dd3b648e
RP
115 free (filename);
116 filename = temp;
117 }
118
119 old_chain = make_cleanup (free, filename);
bdbd5f50
JG
120
121 scratch_chan = open (filename, write_files? O_RDWR: O_RDONLY, 0);
122 if (scratch_chan < 0)
123 perror_with_name (filename);
124
125 temp_bfd = bfd_fdopenr (filename, NULL, scratch_chan);
dd3b648e
RP
126 if (temp_bfd == NULL)
127 {
128 perror_with_name (filename);
129 }
130
131 if (!bfd_check_format (temp_bfd, bfd_core))
132 {
45e60270
JG
133 make_cleanup (bfd_close, temp_bfd); /* Do it after the err msg */
134 error ("\"%s\" is not a core dump: %s", filename, bfd_errmsg(bfd_error));
dd3b648e
RP
135 }
136
137 /* Looks semi-reasonable. Toss the old core file and work on the new. */
138
139 discard_cleanups (old_chain); /* Don't free filename any more */
140 unpush_target (&core_ops);
141 core_bfd = temp_bfd;
142 old_chain = make_cleanup (core_close, core_bfd);
143
144 validate_files ();
145
146 /* Find the data section */
c561ca5d
JG
147 if (build_section_table (core_bfd, &core_ops.sections,
148 &core_ops.sections_end))
dd3b648e
RP
149 error ("Can't find sections in `%s': %s", bfd_get_filename(core_bfd),
150 bfd_errmsg (bfd_error));
151
152 ontop = !push_target (&core_ops);
c561ca5d 153 discard_cleanups (old_chain);
dd3b648e
RP
154
155 p = bfd_core_file_failing_command (core_bfd);
156 if (p)
fb182850 157 printf ("Core was generated by `%s'.\n", p);
dd3b648e
RP
158
159 siggy = bfd_core_file_failing_signal (core_bfd);
160 if (siggy > 0)
161 printf ("Program terminated with signal %d, %s.\n", siggy,
162 siggy < NSIG ? sys_siglist[siggy] : "(undocumented)");
163
164 if (ontop) {
165 /* Fetch all registers from core file */
166 target_fetch_registers (-1);
5c9878f1 167
c561ca5d 168 /* Add symbols and section mappings for any shared libraries */
d0237a54 169#ifdef SOLIB_ADD
bdbd5f50 170 (void) catch_errors (solib_add_stub, (char *)from_tty, (char *)0);
d0237a54 171#endif
cadbb07a 172
5594d534 173 /* Now, set up the frame cache, and print the top of stack */
cadbb07a
JG
174 set_current_frame (create_new_frame (read_register (FP_REGNUM),
175 read_pc ()));
5594d534 176 select_frame (get_current_frame (), 0);
cadbb07a 177 print_stack_frame (selected_frame, selected_frame_level, 1);
dd3b648e
RP
178 } else {
179 printf (
180"Warning: you won't be able to access this core file until you terminate\n\
181your %s; do ``info files''\n", current_target->to_longname);
182 }
dd3b648e
RP
183}
184
185void
186core_detach (args, from_tty)
187 char *args;
188 int from_tty;
189{
dd3b648e
RP
190 if (args)
191 error ("Too many arguments");
3f2e006b 192 unpush_target (&core_ops);
dd3b648e
RP
193 if (from_tty)
194 printf ("No core file now.\n");
195}
196
197/* Backward compatability with old way of specifying core files. */
198
199void
200core_file_command (filename, from_tty)
201 char *filename;
202 int from_tty;
203{
3f2e006b 204 dont_repeat (); /* Either way, seems bogus. */
dd3b648e
RP
205 if (!filename)
206 core_detach (filename, from_tty);
207 else
208 core_open (filename, from_tty);
209}
210
211\f
212/* Call this to specify the hook for exec_file_command to call back.
213 This is called from the x-window display code. */
214
215void
216specify_exec_file_hook (hook)
217 void (*hook) ();
218{
219 exec_file_display_hook = hook;
220}
221
222/* The exec file must be closed before running an inferior.
223 If it is needed again after the inferior dies, it must
224 be reopened. */
225
226void
227close_exec_file ()
228{
229#ifdef FIXME
230 if (exec_bfd)
231 bfd_tempclose (exec_bfd);
232#endif
233}
234
235void
236reopen_exec_file ()
237{
238#ifdef FIXME
239 if (exec_bfd)
240 bfd_reopen (exec_bfd);
241#endif
242}
243\f
244/* If we have both a core file and an exec file,
c561ca5d 245 print a warning if they don't go together. */
dd3b648e
RP
246
247void
248validate_files ()
249{
250 if (exec_bfd && core_bfd)
251 {
bdbd5f50
JG
252 if (!core_file_matches_executable_p (core_bfd, exec_bfd))
253 printf ("Warning: core file may not match specified executable file.\n");
dd3b648e
RP
254 else if (bfd_get_mtime(exec_bfd) > bfd_get_mtime(core_bfd))
255 printf ("Warning: exec file is newer than core file.\n");
256 }
257}
258
259/* Return the name of the executable file as a string.
260 ERR nonzero means get error if there is none specified;
261 otherwise return 0 in that case. */
262
263char *
264get_exec_file (err)
265 int err;
266{
267 if (exec_bfd) return bfd_get_filename(exec_bfd);
268 if (!err) return NULL;
269
270 error ("No executable file specified.\n\
271Use the \"file\" or \"exec-file\" command.");
272 return NULL;
273}
274
275static void
c561ca5d
JG
276core_files_info (t)
277 struct target_ops *t;
dd3b648e
RP
278{
279 struct section_table *p;
280
c58215f2
JG
281 printf_filtered ("\t`%s', ", bfd_get_filename(core_bfd));
282 wrap_here (" ");
283 printf_filtered ("file type %s.\n", bfd_get_target(core_bfd));
dd3b648e 284
ec99961f 285 for (p = t->sections; p < t->sections_end; p++) {
c58215f2
JG
286 printf_filtered ("\t%s", local_hex_string_custom (p->addr, "08"));
287 printf_filtered (" - %s is %s",
288 local_hex_string_custom (p->endaddr, "08"),
289 bfd_section_name (p->bfd, p->sec_ptr));
ec99961f 290 if (p->bfd != core_bfd) {
c58215f2 291 printf_filtered (" in %s", bfd_get_filename (p->bfd));
c561ca5d 292 }
c58215f2 293 printf_filtered ("\n");
ec99961f 294 }
dd3b648e
RP
295}
296\f
297void
298memory_error (status, memaddr)
299 int status;
300 CORE_ADDR memaddr;
301{
302
303 if (status == EIO)
304 {
305 /* Actually, address between memaddr and memaddr + len
306 was out of bounds. */
ec99961f 307 error ("Cannot access memory at address %s.", local_hex_string(memaddr));
dd3b648e
RP
308 }
309 else
310 {
311 if (status >= sys_nerr || status < 0)
ec99961f
JG
312 error ("Error accessing memory address %s: unknown error (%d).",
313 local_hex_string(memaddr), status);
dd3b648e 314 else
ec99961f
JG
315 error ("Error accessing memory address %s: %s.",
316 local_hex_string(memaddr), sys_errlist[status]);
dd3b648e
RP
317 }
318}
319
320/* Same as target_read_memory, but report an error if can't read. */
321void
322read_memory (memaddr, myaddr, len)
323 CORE_ADDR memaddr;
324 char *myaddr;
325 int len;
326{
327 int status;
328 status = target_read_memory (memaddr, myaddr, len);
329 if (status != 0)
330 memory_error (status, memaddr);
331}
332
333/* Same as target_write_memory, but report an error if can't write. */
334void
335write_memory (memaddr, myaddr, len)
336 CORE_ADDR memaddr;
337 char *myaddr;
338 int len;
339{
340 int status;
341
342 status = target_write_memory (memaddr, myaddr, len);
343 if (status != 0)
344 memory_error (status, memaddr);
345}
346
347/* Read an integer from debugged memory, given address and number of bytes. */
348
349long
350read_memory_integer (memaddr, len)
351 CORE_ADDR memaddr;
352 int len;
353{
354 char cbuf;
355 short sbuf;
356 int ibuf;
357 long lbuf;
358
359 if (len == sizeof (char))
360 {
361 read_memory (memaddr, &cbuf, len);
362 return cbuf;
363 }
364 if (len == sizeof (short))
365 {
366 read_memory (memaddr, (char *)&sbuf, len);
367 SWAP_TARGET_AND_HOST (&sbuf, sizeof (short));
368 return sbuf;
369 }
370 if (len == sizeof (int))
371 {
372 read_memory (memaddr, (char *)&ibuf, len);
373 SWAP_TARGET_AND_HOST (&ibuf, sizeof (int));
374 return ibuf;
375 }
376 if (len == sizeof (lbuf))
377 {
378 read_memory (memaddr, (char *)&lbuf, len);
379 SWAP_TARGET_AND_HOST (&lbuf, sizeof (lbuf));
380 return lbuf;
381 }
382 error ("Cannot handle integers of %d bytes.", len);
383 return -1; /* for lint */
384}
385\f
dd3b648e
RP
386/* Get the registers out of a core file. This is the machine-
387 independent part. Fetch_core_registers is the machine-dependent
388 part, typically implemented in the xm-file for each architecture. */
389
e1ce8aa5
JK
390/* We just get all the registers, so we don't use regno. */
391/* ARGSUSED */
5594d534 392static void
dd3b648e
RP
393get_core_registers (regno)
394 int regno;
395{
396 sec_ptr reg_sec;
397 unsigned size;
398 char *the_regs;
399
400 reg_sec = bfd_get_section_by_name (core_bfd, ".reg");
07427425 401 if (!reg_sec) goto cant;
dd3b648e
RP
402 size = bfd_section_size (core_bfd, reg_sec);
403 the_regs = alloca (size);
45e60270 404 if (bfd_get_section_contents (core_bfd, reg_sec, the_regs, (file_ptr)0, size))
dd3b648e 405 {
45e60270
JG
406 fetch_core_registers (the_regs, size, 0,
407 (unsigned) bfd_section_vma (abfd,reg_sec));
dd3b648e
RP
408 }
409 else
410 {
07427425 411cant:
dd3b648e
RP
412 fprintf (stderr, "Couldn't fetch registers from core file: %s\n",
413 bfd_errmsg (bfd_error));
414 }
415
416 /* Now do it again for the float registers, if they exist. */
417 reg_sec = bfd_get_section_by_name (core_bfd, ".reg2");
418 if (reg_sec) {
419 size = bfd_section_size (core_bfd, reg_sec);
420 the_regs = alloca (size);
45e60270
JG
421 if (bfd_get_section_contents (core_bfd, reg_sec, the_regs, (file_ptr)0,
422 size))
dd3b648e 423 {
45e60270
JG
424 fetch_core_registers (the_regs, size, 2,
425 (unsigned) bfd_section_vma (abfd,reg_sec));
dd3b648e
RP
426 }
427 else
428 {
429 fprintf (stderr, "Couldn't fetch register set 2 from core file: %s\n",
430 bfd_errmsg (bfd_error));
431 }
432 }
433 registers_fetched();
dd3b648e
RP
434}
435\f
436struct target_ops core_ops = {
437 "core", "Local core dump file",
f2fc6e7a 438 "Use a core file as a target. Specify the filename of the core file.",
dd3b648e
RP
439 core_open, core_close,
440 child_attach, core_detach, 0, 0, /* resume, wait */
441 get_core_registers,
442 0, 0, 0, 0, /* store_regs, prepare_to_store, conv_to, conv_from */
c561ca5d 443 xfer_memory, core_files_info,
dd3b648e
RP
444 0, 0, /* core_insert_breakpoint, core_remove_breakpoint, */
445 0, 0, 0, 0, 0, /* terminal stuff */
c561ca5d 446 0, 0, 0, 0, /* kill, load, call fn, lookup sym */
dd3b648e
RP
447 child_create_inferior, 0, /* mourn_inferior */
448 core_stratum, 0, /* next */
449 0, 1, 1, 1, 0, /* all mem, mem, stack, regs, exec */
c561ca5d 450 0, 0, /* section pointers */
dd3b648e
RP
451 OPS_MAGIC, /* Always the last thing */
452};
453
454void
455_initialize_core()
456{
457
458 add_com ("core-file", class_files, core_file_command,
459 "Use FILE as core dump for examining memory and registers.\n\
460No arg means have no core file. This command has been superseded by the\n\
461`target core' and `detach' commands.");
462 add_target (&core_ops);
463}
This page took 0.061467 seconds and 4 git commands to generate.