Fri Jun 12 14:22:55 1998 Jason Molenda (crash@bugshack.cygnus.com)
[deliverable/binutils-gdb.git] / gdb / corefile.c
CommitLineData
8afd6ca5 1/* Core dump and executable file functions above target vector, for GDB.
ba47c66a
PS
2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
dd3b648e
RP
4
5This file is part of GDB.
6
99a7de40 7This program is free software; you can redistribute it and/or modify
dd3b648e 8it under the terms of the GNU General Public License as published by
99a7de40
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
dd3b648e 11
99a7de40 12This program is distributed in the hope that it will be useful,
dd3b648e
RP
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
99a7de40 18along with this program; if not, write to the Free Software
6c9638b4 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
dd3b648e 20
d747e0af 21#include "defs.h"
2b576293 22#include "gdb_string.h"
dd3b648e
RP
23#include <errno.h>
24#include <signal.h>
bdbd5f50 25#include <fcntl.h>
dd3b648e
RP
26#include "frame.h" /* required by inferior.h */
27#include "inferior.h"
28#include "symtab.h"
29#include "command.h"
df0f0dcc 30#include "gdbcmd.h"
dd3b648e
RP
31#include "bfd.h"
32#include "target.h"
33#include "gdbcore.h"
5d0734a7 34#include "dis-asm.h"
100f92e2 35#include "language.h"
091d7302 36#include "gdb_stat.h"
dd3b648e 37
dd3b648e
RP
38extern char registers[];
39
f9fedc48 40/* Local function declarations. */
dd3b648e 41
f9fedc48
MA
42static void call_extra_exec_file_hooks PARAMS ((char *filename));
43
44/* You can have any number of hooks for `exec_file_command' command to call.
45 If there's only one hook, it is set in exec_file_display hook.
46 If there are two or more hooks, they are set in exec_file_extra_hooks[],
47 and exec_file_display_hook is set to a function that calls all of them.
48 This extra complexity is needed to preserve compatibility with
49 old code that assumed that only one hook could be set, and which called
50 exec_file_display_hook directly. */
51
52typedef void (*hook_type) PARAMS ((char *));
53
54hook_type exec_file_display_hook; /* the original hook */
55static hook_type *exec_file_extra_hooks; /* array of additional hooks */
56static int exec_file_hook_count = 0; /* size of array */
dd3b648e 57
dd3b648e
RP
58/* Binary file diddling handle for the core file. */
59
60bfd *core_bfd = NULL;
61
dd3b648e 62\f
dd3b648e
RP
63/* Backward compatability with old way of specifying core files. */
64
65void
66core_file_command (filename, from_tty)
67 char *filename;
68 int from_tty;
69{
df9b3bfc 70 struct target_ops *t;
327f7197 71
3f2e006b 72 dont_repeat (); /* Either way, seems bogus. */
8afd6ca5 73
df9b3bfc
RP
74 t = find_core_target ();
75 if (t != NULL)
76 if (!filename)
77 (t->to_detach) (filename, from_tty);
78 else
79 (t->to_open) (filename, from_tty);
dd3b648e 80 else
327f7197 81 error ("GDB can't read core files on this machine.");
dd3b648e
RP
82}
83
84\f
f9fedc48
MA
85/* If there are two or more functions that wish to hook into exec_file_command,
86 * this function will call all of the hook functions. */
87
88static void
89call_extra_exec_file_hooks (filename)
90 char *filename;
91{
92 int i;
93
94 for (i = 0; i < exec_file_hook_count; i++)
95 (*exec_file_extra_hooks[i])(filename);
96}
97
dd3b648e
RP
98/* Call this to specify the hook for exec_file_command to call back.
99 This is called from the x-window display code. */
100
101void
102specify_exec_file_hook (hook)
7ed0f002 103 void (*hook) PARAMS ((char *));
dd3b648e 104{
f9fedc48
MA
105 hook_type *new_array;
106
107 if (exec_file_display_hook != NULL)
108 {
109 /* There's already a hook installed. Arrange to have both it
110 * and the subsequent hooks called. */
111 if (exec_file_hook_count == 0)
112 {
113 /* If this is the first extra hook, initialize the hook array. */
114 exec_file_extra_hooks = (hook_type *) xmalloc (sizeof(hook_type));
115 exec_file_extra_hooks[0] = exec_file_display_hook;
116 exec_file_display_hook = call_extra_exec_file_hooks;
117 exec_file_hook_count = 1;
118 }
119
120 /* Grow the hook array by one and add the new hook to the end.
121 Yes, it's inefficient to grow it by one each time but since
122 this is hardly ever called it's not a big deal. */
123 exec_file_hook_count++;
124 new_array =
125 (hook_type *) xrealloc (exec_file_extra_hooks,
126 exec_file_hook_count * sizeof(hook_type));
127 exec_file_extra_hooks = new_array;
128 exec_file_extra_hooks[exec_file_hook_count - 1] = hook;
129 }
130 else
131 exec_file_display_hook = hook;
dd3b648e
RP
132}
133
134/* The exec file must be closed before running an inferior.
135 If it is needed again after the inferior dies, it must
136 be reopened. */
137
138void
139close_exec_file ()
140{
28444bf3 141#if 0 /* FIXME */
dd3b648e
RP
142 if (exec_bfd)
143 bfd_tempclose (exec_bfd);
144#endif
145}
146
147void
148reopen_exec_file ()
149{
28444bf3 150#if 0 /* FIXME */
dd3b648e
RP
151 if (exec_bfd)
152 bfd_reopen (exec_bfd);
091d7302
MA
153#else
154 char *filename;
155 int res;
156 struct stat st;
157 long mtime;
158
159 /* Don't do anything if the current target isn't exec. */
160 if (exec_bfd == NULL || strcmp (target_shortname, "exec") != 0)
161 return;
162
163 /* If the timestamp of the exec file has changed, reopen it. */
164 filename = strdup (bfd_get_filename (exec_bfd));
165 make_cleanup (free, filename);
166 mtime = bfd_get_mtime(exec_bfd);
167 res = stat (filename, &st);
168
169 if (mtime && mtime != st.st_mtime)
170 exec_file_command (filename, 0);
dd3b648e
RP
171#endif
172}
173\f
174/* If we have both a core file and an exec file,
c561ca5d 175 print a warning if they don't go together. */
dd3b648e
RP
176
177void
178validate_files ()
179{
180 if (exec_bfd && core_bfd)
181 {
bdbd5f50 182 if (!core_file_matches_executable_p (core_bfd, exec_bfd))
c8094777 183 warning ("core file may not match specified executable file.");
dd3b648e 184 else if (bfd_get_mtime(exec_bfd) > bfd_get_mtime(core_bfd))
c8094777 185 warning ("exec file is newer than core file.");
dd3b648e
RP
186 }
187}
188
189/* Return the name of the executable file as a string.
190 ERR nonzero means get error if there is none specified;
191 otherwise return 0 in that case. */
192
193char *
194get_exec_file (err)
195 int err;
196{
197 if (exec_bfd) return bfd_get_filename(exec_bfd);
198 if (!err) return NULL;
199
200 error ("No executable file specified.\n\
201Use the \"file\" or \"exec-file\" command.");
202 return NULL;
203}
204
dd3b648e 205\f
7ed0f002
JG
206/* Report a memory error with error(). */
207
dd3b648e
RP
208void
209memory_error (status, memaddr)
210 int status;
211 CORE_ADDR memaddr;
212{
dd3b648e
RP
213 if (status == EIO)
214 {
215 /* Actually, address between memaddr and memaddr + len
216 was out of bounds. */
a0cf4681 217 error_begin ();
e16b9023 218 printf_filtered ("Cannot access memory at address ");
d24c0599 219 print_address_numeric (memaddr, 1, gdb_stdout);
e16b9023 220 printf_filtered (".\n");
a0cf4681 221 return_to_top_level (RETURN_ERROR);
dd3b648e
RP
222 }
223 else
224 {
a0cf4681 225 error_begin ();
e16b9023 226 printf_filtered ("Error accessing memory address ");
d24c0599 227 print_address_numeric (memaddr, 1, gdb_stdout);
e16b9023 228 printf_filtered (": %s.\n",
a0cf4681
JK
229 safe_strerror (status));
230 return_to_top_level (RETURN_ERROR);
dd3b648e
RP
231 }
232}
233
234/* Same as target_read_memory, but report an error if can't read. */
235void
236read_memory (memaddr, myaddr, len)
237 CORE_ADDR memaddr;
238 char *myaddr;
239 int len;
240{
241 int status;
242 status = target_read_memory (memaddr, myaddr, len);
243 if (status != 0)
244 memory_error (status, memaddr);
245}
246
6c310da8
SG
247void
248read_memory_section (memaddr, myaddr, len, bfd_section)
249 CORE_ADDR memaddr;
250 char *myaddr;
251 int len;
252 asection *bfd_section;
253{
254 int status;
255 status = target_read_memory_section (memaddr, myaddr, len, bfd_section);
256 if (status != 0)
257 memory_error (status, memaddr);
258}
259
720b3aed 260/* Like target_read_memory, but slightly different parameters. */
bf097a0b 261
5d0734a7 262int
a6cead71 263dis_asm_read_memory (memaddr, myaddr, len, info)
5d0734a7
JK
264 bfd_vma memaddr;
265 bfd_byte *myaddr;
266 int len;
a6cead71 267 disassemble_info *info;
5d0734a7 268{
34b70237 269 return target_read_memory (memaddr, (char *) myaddr, len);
5d0734a7
JK
270}
271
272/* Like memory_error with slightly different parameters. */
273void
274dis_asm_memory_error (status, memaddr, info)
275 int status;
276 bfd_vma memaddr;
277 disassemble_info *info;
278{
279 memory_error (status, memaddr);
280}
281
720b3aed
JK
282/* Like print_address with slightly different parameters. */
283void
284dis_asm_print_address (addr, info)
285 bfd_vma addr;
286 struct disassemble_info *info;
287{
288 print_address (addr, info->stream);
289}
290
dd3b648e
RP
291/* Same as target_write_memory, but report an error if can't write. */
292void
293write_memory (memaddr, myaddr, len)
294 CORE_ADDR memaddr;
295 char *myaddr;
296 int len;
297{
298 int status;
299
300 status = target_write_memory (memaddr, myaddr, len);
301 if (status != 0)
302 memory_error (status, memaddr);
303}
304
305/* Read an integer from debugged memory, given address and number of bytes. */
306
34df79fc 307LONGEST
dd3b648e
RP
308read_memory_integer (memaddr, len)
309 CORE_ADDR memaddr;
310 int len;
311{
58e49e21 312 char buf[sizeof (LONGEST)];
dd3b648e 313
34df79fc
JK
314 read_memory (memaddr, buf, len);
315 return extract_signed_integer (buf, len);
dd3b648e 316}
86a5593e 317
119dfbb7 318ULONGEST
86a5593e
SC
319read_memory_unsigned_integer (memaddr, len)
320 CORE_ADDR memaddr;
321 int len;
322{
119dfbb7 323 char buf[sizeof (ULONGEST)];
86a5593e 324
34df79fc
JK
325 read_memory (memaddr, buf, len);
326 return extract_unsigned_integer (buf, len);
86a5593e 327}
dd3b648e 328\f
63dcc380
JK
329#if 0
330/* Enable after 4.12. It is not tested. */
331
332/* Search code. Targets can just make this their search function, or
333 if the protocol has a less general search function, they can call this
334 in the cases it can't handle. */
335void
336generic_search (len, data, mask, startaddr, increment, lorange, hirange
337 addr_found, data_found)
338 int len;
339 char *data;
340 char *mask;
341 CORE_ADDR startaddr;
342 int increment;
343 CORE_ADDR lorange;
344 CORE_ADDR hirange;
345 CORE_ADDR *addr_found;
346 char *data_found;
347{
348 int i;
349 CORE_ADDR curaddr = startaddr;
350
351 while (curaddr >= lorange && curaddr < hirange)
352 {
353 read_memory (curaddr, data_found, len);
354 for (i = 0; i < len; ++i)
355 if ((data_found[i] & mask[i]) != data[i])
356 goto try_again;
357 /* It matches. */
358 *addr_found = curaddr;
359 return;
360
361 try_again:
362 curaddr += increment;
363 }
364 *addr_found = (CORE_ADDR)0;
365 return;
366}
367#endif /* 0 */
368\f
0685d95f
JK
369/* The current default bfd target. Points to storage allocated for
370 gnutarget_string. */
371char *gnutarget;
372
373/* Same thing, except it is "auto" not NULL for the default case. */
374static char *gnutarget_string;
375
376static void set_gnutarget_command
377 PARAMS ((char *, int, struct cmd_list_element *));
378
379static void
380set_gnutarget_command (ignore, from_tty, c)
381 char *ignore;
382 int from_tty;
383 struct cmd_list_element *c;
384{
385 if (STREQ (gnutarget_string, "auto"))
386 gnutarget = NULL;
387 else
388 gnutarget = gnutarget_string;
389}
390
391/* Set the gnutarget. */
392void
393set_gnutarget (newtarget)
394 char *newtarget;
395{
396 if (gnutarget_string != NULL)
397 free (gnutarget_string);
398 gnutarget_string = savestring (newtarget, strlen (newtarget));
399 set_gnutarget_command (NULL, 0, NULL);
400}
401
dd3b648e
RP
402void
403_initialize_core()
404{
df0f0dcc
JK
405 struct cmd_list_element *c;
406 c = add_cmd ("core-file", class_files, core_file_command,
407 "Use FILE as core dump for examining memory and registers.\n\
dd3b648e 408No arg means have no core file. This command has been superseded by the\n\
df0f0dcc
JK
409`target core' and `detach' commands.", &cmdlist);
410 c->completer = filename_completer;
0685d95f
JK
411
412 c = add_set_cmd ("gnutarget", class_files, var_string_noescape,
413 (char *) &gnutarget_string,
414 "Set the current BFD target.\n\
415Use `set gnutarget auto' to specify automatic detection.",
416 &setlist);
417 c->function.sfunc = set_gnutarget_command;
418 add_show_from_set (c, &showlist);
419
420 if (getenv ("GNUTARGET"))
421 set_gnutarget (getenv ("GNUTARGET"));
422 else
423 set_gnutarget ("auto");
dd3b648e 424}
This page took 0.294265 seconds and 4 git commands to generate.