Separate core functions along target vector in preparation for
[binutils-gdb.git] / gdb / core.c
1 /* Core dump and executable file functions above target vector, for GDB.
2 Copyright 1986, 1987, 1989, 1991, 1992 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #include "defs.h"
21 #include <errno.h>
22 #include <signal.h>
23 #include <fcntl.h>
24 #include "frame.h" /* required by inferior.h */
25 #include "inferior.h"
26 #include "symtab.h"
27 #include "command.h"
28 #include "bfd.h"
29 #include "target.h"
30 #include "gdbcore.h"
31
32 extern char registers[];
33
34 /* Hook for `exec_file_command' command to call. */
35
36 void (*exec_file_display_hook) PARAMS ((char *)) = NULL;
37
38 /* Binary file diddling handle for the core file. */
39
40 bfd *core_bfd = NULL;
41
42 \f
43 /* Backward compatability with old way of specifying core files. */
44
45 void
46 core_file_command (filename, from_tty)
47 char *filename;
48 int from_tty;
49 {
50 dont_repeat (); /* Either way, seems bogus. */
51
52 if (!filename)
53 core_detach (filename, from_tty);
54 else
55 core_open (filename, from_tty);
56 }
57
58 \f
59 /* Call this to specify the hook for exec_file_command to call back.
60 This is called from the x-window display code. */
61
62 void
63 specify_exec_file_hook (hook)
64 void (*hook) PARAMS ((char *));
65 {
66 exec_file_display_hook = hook;
67 }
68
69 /* The exec file must be closed before running an inferior.
70 If it is needed again after the inferior dies, it must
71 be reopened. */
72
73 void
74 close_exec_file ()
75 {
76 #ifdef FIXME
77 if (exec_bfd)
78 bfd_tempclose (exec_bfd);
79 #endif
80 }
81
82 void
83 reopen_exec_file ()
84 {
85 #ifdef FIXME
86 if (exec_bfd)
87 bfd_reopen (exec_bfd);
88 #endif
89 }
90 \f
91 /* If we have both a core file and an exec file,
92 print a warning if they don't go together. */
93
94 void
95 validate_files ()
96 {
97 if (exec_bfd && core_bfd)
98 {
99 if (!core_file_matches_executable_p (core_bfd, exec_bfd))
100 warning ("core file may not match specified executable file.");
101 else if (bfd_get_mtime(exec_bfd) > bfd_get_mtime(core_bfd))
102 warning ("exec file is newer than core file.");
103 }
104 }
105
106 /* Return the name of the executable file as a string.
107 ERR nonzero means get error if there is none specified;
108 otherwise return 0 in that case. */
109
110 char *
111 get_exec_file (err)
112 int err;
113 {
114 if (exec_bfd) return bfd_get_filename(exec_bfd);
115 if (!err) return NULL;
116
117 error ("No executable file specified.\n\
118 Use the \"file\" or \"exec-file\" command.");
119 return NULL;
120 }
121
122 \f
123 /* Report a memory error with error(). */
124
125 void
126 memory_error (status, memaddr)
127 int status;
128 CORE_ADDR memaddr;
129 {
130
131 if (status == EIO)
132 {
133 /* Actually, address between memaddr and memaddr + len
134 was out of bounds. */
135 error ("Cannot access memory at address %s.", local_hex_string(memaddr));
136 }
137 else
138 {
139 error ("Error accessing memory address %s: %s.",
140 local_hex_string (memaddr), safe_strerror (status));
141 }
142 }
143
144 /* Same as target_read_memory, but report an error if can't read. */
145 void
146 read_memory (memaddr, myaddr, len)
147 CORE_ADDR memaddr;
148 char *myaddr;
149 int len;
150 {
151 int status;
152 status = target_read_memory (memaddr, myaddr, len);
153 if (status != 0)
154 memory_error (status, memaddr);
155 }
156
157 /* Same as target_write_memory, but report an error if can't write. */
158 void
159 write_memory (memaddr, myaddr, len)
160 CORE_ADDR memaddr;
161 char *myaddr;
162 int len;
163 {
164 int status;
165
166 status = target_write_memory (memaddr, myaddr, len);
167 if (status != 0)
168 memory_error (status, memaddr);
169 }
170
171 /* Read an integer from debugged memory, given address and number of bytes. */
172
173 long
174 read_memory_integer (memaddr, len)
175 CORE_ADDR memaddr;
176 int len;
177 {
178 char cbuf;
179 short sbuf;
180 int ibuf;
181 long lbuf;
182
183 if (len == sizeof (char))
184 {
185 read_memory (memaddr, &cbuf, len);
186 return cbuf;
187 }
188 if (len == sizeof (short))
189 {
190 read_memory (memaddr, (char *)&sbuf, len);
191 SWAP_TARGET_AND_HOST (&sbuf, sizeof (short));
192 return sbuf;
193 }
194 if (len == sizeof (int))
195 {
196 read_memory (memaddr, (char *)&ibuf, len);
197 SWAP_TARGET_AND_HOST (&ibuf, sizeof (int));
198 return ibuf;
199 }
200 if (len == sizeof (lbuf))
201 {
202 read_memory (memaddr, (char *)&lbuf, len);
203 SWAP_TARGET_AND_HOST (&lbuf, sizeof (lbuf));
204 return lbuf;
205 }
206 error ("Cannot handle integers of %d bytes.", len);
207 return -1; /* for lint */
208 }
209 \f
210 void
211 _initialize_core()
212 {
213
214 add_com ("core-file", class_files, core_file_command,
215 "Use FILE as core dump for examining memory and registers.\n\
216 No arg means have no core file. This command has been superseded by the\n\
217 `target core' and `detach' commands.");
218
219 }