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