* scripttempl/elf.sc: Add .note.gnu.build-id.
[deliverable/binutils-gdb.git] / gdb / gcore.c
CommitLineData
be4d1333 1/* Generate a core file for the inferior process.
1bac305b 2
6aba47ca 3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
804e0f53 4 Free Software Foundation, Inc.
be4d1333
MS
5
6 This file is part of GDB.
7
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.
12
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.
17
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
197e01b6
EZ
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
be4d1333
MS
22
23#include "defs.h"
d3420b2f
MK
24#include "elf-bfd.h"
25#include "infcall.h"
be4d1333
MS
26#include "inferior.h"
27#include "gdbcore.h"
be4d1333 28#include "objfiles.h"
d3420b2f
MK
29#include "symfile.h"
30
31#include "cli/cli-decode.h"
be4d1333 32
d3420b2f 33#include "gdb_assert.h"
be4d1333 34
804e0f53
DJ
35/* The largest amount of memory to read from the target at once. We
36 must throttle it to limit the amount of memory used by GDB during
37 generate-core-file for programs with large resident data. */
38#define MAX_COPY_BYTES (1024 * 1024)
39
d3420b2f
MK
40static char *default_gcore_target (void);
41static enum bfd_architecture default_gcore_arch (void);
42static unsigned long default_gcore_mach (void);
43static int gcore_memory_sections (bfd *);
44
45/* Generate a core file from the inferior process. */
be4d1333
MS
46
47static void
48gcore_command (char *args, int from_tty)
49{
50 struct cleanup *old_chain;
51 char *corefilename, corefilename_buffer[40];
356ae49d 52 asection *note_sec = NULL;
be4d1333
MS
53 bfd *obfd;
54 void *note_data = NULL;
55 int note_size = 0;
56
57 /* No use generating a corefile without a target process. */
d3420b2f 58 if (!target_has_execution)
be4d1333
MS
59 noprocess ();
60
61 if (args && *args)
62 corefilename = args;
63 else
64 {
65 /* Default corefile name is "core.PID". */
66 sprintf (corefilename_buffer, "core.%d", PIDGET (inferior_ptid));
67 corefilename = corefilename_buffer;
68 }
69
70 if (info_verbose)
cbb83bd1 71 fprintf_filtered (gdb_stdout,
be4d1333
MS
72 "Opening corefile '%s' for output.\n", corefilename);
73
d3420b2f
MK
74 /* Open the output file. */
75 obfd = bfd_openw (corefilename, default_gcore_target ());
76 if (!obfd)
8a3fe4f8 77 error (_("Failed to open '%s' for output."), corefilename);
be4d1333 78
d3420b2f 79 /* Need a cleanup that will close the file (FIXME: delete it?). */
be4d1333
MS
80 old_chain = make_cleanup_bfd_close (obfd);
81
82 bfd_set_format (obfd, bfd_core);
83 bfd_set_arch_mach (obfd, default_gcore_arch (), default_gcore_mach ());
84
d3420b2f
MK
85 /* An external target method must build the notes section. */
86 note_data = target_make_corefile_notes (obfd, &note_size);
be4d1333 87
d3420b2f 88 /* Create the note section. */
be4d1333
MS
89 if (note_data != NULL && note_size != 0)
90 {
52b57208
L
91 note_sec = bfd_make_section_anyway_with_flags (obfd, "note0",
92 SEC_HAS_CONTENTS
93 | SEC_READONLY
94 | SEC_ALLOC);
d3420b2f 95 if (note_sec == NULL)
8a3fe4f8 96 error (_("Failed to create 'note' section for corefile: %s"),
be4d1333
MS
97 bfd_errmsg (bfd_get_error ()));
98
99 bfd_set_section_vma (obfd, note_sec, 0);
be4d1333
MS
100 bfd_set_section_alignment (obfd, note_sec, 0);
101 bfd_set_section_size (obfd, note_sec, note_size);
102 }
103
d3420b2f 104 /* Now create the memory/load sections. */
be4d1333 105 if (gcore_memory_sections (obfd) == 0)
8a3fe4f8 106 error (_("gcore: failed to get corefile memory sections from target."));
be4d1333 107
d3420b2f 108 /* Write out the contents of the note section. */
be4d1333
MS
109 if (note_data != NULL && note_size != 0)
110 {
111 if (!bfd_set_section_contents (obfd, note_sec, note_data, 0, note_size))
8a3fe4f8 112 warning (_("writing note section (%s)"), bfd_errmsg (bfd_get_error ()));
be4d1333
MS
113 }
114
d3420b2f
MK
115 /* Succeeded. */
116 fprintf_filtered (gdb_stdout, "Saved corefile %s\n", corefilename);
be4d1333 117
d3420b2f 118 /* Clean-ups will close the output file and free malloc memory. */
be4d1333
MS
119 do_cleanups (old_chain);
120 return;
121}
122
123static unsigned long
124default_gcore_mach (void)
125{
d3420b2f 126#if 1 /* See if this even matters... */
6dbdc4a3
MS
127 return 0;
128#else
1143fffb
UW
129
130 const struct bfd_arch_info *bfdarch = gdbarch_bfd_arch_info (current_gdbarch);
be4d1333
MS
131
132 if (bfdarch != NULL)
133 return bfdarch->mach;
be4d1333 134 if (exec_bfd == NULL)
8a3fe4f8 135 error (_("Can't find default bfd machine type (need execfile)."));
be4d1333
MS
136
137 return bfd_get_mach (exec_bfd);
6dbdc4a3 138#endif /* 1 */
be4d1333
MS
139}
140
141static enum bfd_architecture
142default_gcore_arch (void)
143{
1143fffb
UW
144 const struct bfd_arch_info * bfdarch = gdbarch_bfd_arch_info
145 (current_gdbarch);
be4d1333
MS
146
147 if (bfdarch != NULL)
148 return bfdarch->arch;
be4d1333 149 if (exec_bfd == NULL)
8a3fe4f8 150 error (_("Can't find bfd architecture for corefile (need execfile)."));
be4d1333
MS
151
152 return bfd_get_arch (exec_bfd);
153}
154
155static char *
156default_gcore_target (void)
157{
d3420b2f 158 /* FIXME: This may only work for ELF targets. */
be4d1333 159 if (exec_bfd == NULL)
6dbdc4a3
MS
160 return NULL;
161 else
162 return bfd_get_target (exec_bfd);
be4d1333
MS
163}
164
d3420b2f
MK
165/* Derive a reasonable stack segment by unwinding the target stack,
166 and store its limits in *BOTTOM and *TOP. Return non-zero if
167 successful. */
be4d1333 168
cbb83bd1 169static int
69db8bae 170derive_stack_segment (bfd_vma *bottom, bfd_vma *top)
be4d1333 171{
be4d1333
MS
172 struct frame_info *fi, *tmp_fi;
173
d3420b2f
MK
174 gdb_assert (bottom);
175 gdb_assert (top);
be4d1333 176
d3420b2f 177 /* Can't succeed without stack and registers. */
be4d1333 178 if (!target_has_stack || !target_has_registers)
d3420b2f 179 return 0;
be4d1333 180
d3420b2f
MK
181 /* Can't succeed without current frame. */
182 fi = get_current_frame ();
183 if (fi == NULL)
184 return 0;
be4d1333 185
d3420b2f 186 /* Save frame pointer of TOS frame. */
8d357cca 187 *top = get_frame_base (fi);
d3420b2f 188 /* If current stack pointer is more "inner", use that instead. */
4d1e7dd1 189 if (gdbarch_inner_than (current_gdbarch, get_frame_sp (fi), *top))
fb4443d8 190 *top = get_frame_sp (fi);
be4d1333 191
d3420b2f 192 /* Find prev-most frame. */
be4d1333
MS
193 while ((tmp_fi = get_prev_frame (fi)) != NULL)
194 fi = tmp_fi;
195
d3420b2f 196 /* Save frame pointer of prev-most frame. */
8d357cca 197 *bottom = get_frame_base (fi);
be4d1333 198
d3420b2f
MK
199 /* Now canonicalize their order, so that BOTTOM is a lower address
200 (as opposed to a lower stack frame). */
be4d1333
MS
201 if (*bottom > *top)
202 {
d3420b2f
MK
203 bfd_vma tmp_vma;
204
be4d1333
MS
205 tmp_vma = *top;
206 *top = *bottom;
207 *bottom = tmp_vma;
208 }
209
d3420b2f 210 return 1;
be4d1333
MS
211}
212
d3420b2f
MK
213/* Derive a reasonable heap segment for ABFD by looking at sbrk and
214 the static data sections. Store its limits in *BOTTOM and *TOP.
215 Return non-zero if successful. */
be4d1333 216
cbb83bd1 217static int
69db8bae 218derive_heap_segment (bfd *abfd, bfd_vma *bottom, bfd_vma *top)
be4d1333
MS
219{
220 bfd_vma top_of_data_memory = 0;
221 bfd_vma top_of_heap = 0;
222 bfd_size_type sec_size;
223 struct value *zero, *sbrk;
224 bfd_vma sec_vaddr;
225 asection *sec;
226
d3420b2f
MK
227 gdb_assert (bottom);
228 gdb_assert (top);
be4d1333 229
d3420b2f
MK
230 /* This function depends on being able to call a function in the
231 inferior. */
be4d1333 232 if (!target_has_execution)
d3420b2f
MK
233 return 0;
234
235 /* The following code assumes that the link map is arranged as
236 follows (low to high addresses):
be4d1333 237
d3420b2f
MK
238 ---------------------------------
239 | text sections |
240 ---------------------------------
241 | data sections (including bss) |
242 ---------------------------------
243 | heap |
244 --------------------------------- */
be4d1333
MS
245
246 for (sec = abfd->sections; sec; sec = sec->next)
247 {
d3420b2f
MK
248 if (bfd_get_section_flags (abfd, sec) & SEC_DATA
249 || strcmp (".bss", bfd_section_name (abfd, sec)) == 0)
be4d1333
MS
250 {
251 sec_vaddr = bfd_get_section_vma (abfd, sec);
2c500098 252 sec_size = bfd_get_section_size (sec);
be4d1333
MS
253 if (sec_vaddr + sec_size > top_of_data_memory)
254 top_of_data_memory = sec_vaddr + sec_size;
255 }
256 }
d3420b2f 257
be4d1333 258 /* Now get the top-of-heap by calling sbrk in the inferior. */
20fe79c8
MS
259 if (lookup_minimal_symbol ("sbrk", NULL, NULL) != NULL)
260 {
d3420b2f
MK
261 sbrk = find_function_in_inferior ("sbrk");
262 if (sbrk == NULL)
20fe79c8
MS
263 return 0;
264 }
265 else if (lookup_minimal_symbol ("_sbrk", NULL, NULL) != NULL)
266 {
d3420b2f
MK
267 sbrk = find_function_in_inferior ("_sbrk");
268 if (sbrk == NULL)
20fe79c8
MS
269 return 0;
270 }
271 else
be4d1333 272 return 0;
20fe79c8 273
d3420b2f
MK
274 zero = value_from_longest (builtin_type_int, 0);
275 gdb_assert (zero);
276 sbrk = call_function_by_hand (sbrk, 1, &zero);
277 if (sbrk == NULL)
be4d1333
MS
278 return 0;
279 top_of_heap = value_as_long (sbrk);
280
d3420b2f 281 /* Return results. */
be4d1333
MS
282 if (top_of_heap > top_of_data_memory)
283 {
284 *bottom = top_of_data_memory;
285 *top = top_of_heap;
d3420b2f 286 return 1;
be4d1333 287 }
d3420b2f
MK
288
289 /* No additional heap space needs to be saved. */
290 return 0;
be4d1333
MS
291}
292
be4d1333
MS
293static void
294make_output_phdrs (bfd *obfd, asection *osec, void *ignored)
295{
296 int p_flags = 0;
297 int p_type;
298
299 /* FIXME: these constants may only be applicable for ELF. */
20fe79c8 300 if (strncmp (bfd_section_name (obfd, osec), "load", 4) == 0)
be4d1333
MS
301 p_type = PT_LOAD;
302 else
303 p_type = PT_NOTE;
304
305 p_flags |= PF_R; /* Segment is readable. */
306 if (!(bfd_get_section_flags (obfd, osec) & SEC_READONLY))
307 p_flags |= PF_W; /* Segment is writable. */
308 if (bfd_get_section_flags (obfd, osec) & SEC_CODE)
309 p_flags |= PF_X; /* Segment is executable. */
310
d3420b2f 311 bfd_record_phdr (obfd, p_type, 1, p_flags, 0, 0, 0, 0, 1, &osec);
be4d1333
MS
312}
313
cbb83bd1
RM
314static int
315gcore_create_callback (CORE_ADDR vaddr, unsigned long size,
316 int read, int write, int exec, void *data)
be4d1333 317{
cbb83bd1 318 bfd *obfd = data;
be4d1333 319 asection *osec;
cbb83bd1
RM
320 flagword flags = SEC_ALLOC | SEC_HAS_CONTENTS | SEC_LOAD;
321
86fbe6cc
EZ
322 /* If the memory segment has no permissions set, ignore it, otherwise
323 when we later try to access it for read/write, we'll get an error
324 or jam the kernel. */
325 if (read == 0 && write == 0 && exec == 0)
326 {
327 if (info_verbose)
328 {
329 fprintf_filtered (gdb_stdout, "Ignore segment, %s bytes at 0x%s\n",
330 paddr_d (size), paddr_nz (vaddr));
331 }
332
333 return 0;
334 }
335
cbb83bd1
RM
336 if (write == 0)
337 {
338 /* See if this region of memory lies inside a known file on disk.
339 If so, we can avoid copying its contents by clearing SEC_LOAD. */
340 struct objfile *objfile;
341 struct obj_section *objsec;
342
343 ALL_OBJSECTIONS (objfile, objsec)
344 {
345 bfd *abfd = objfile->obfd;
346 asection *asec = objsec->the_bfd_section;
347 bfd_vma align = (bfd_vma) 1 << bfd_get_section_alignment (abfd,
348 asec);
349 bfd_vma start = objsec->addr & -align;
350 bfd_vma end = (objsec->endaddr + align - 1) & -align;
351 /* Match if either the entire memory region lies inside the
352 section (i.e. a mapping covering some pages of a large
353 segment) or the entire section lies inside the memory region
354 (i.e. a mapping covering multiple small sections).
355
356 This BFD was synthesized from reading target memory,
357 we don't want to omit that. */
358 if (((vaddr >= start && vaddr + size <= end)
359 || (start >= vaddr && end <= vaddr + size))
360 && !(bfd_get_file_flags (abfd) & BFD_IN_MEMORY))
361 {
362 flags &= ~SEC_LOAD;
52b57208 363 flags |= SEC_NEVER_LOAD;
cbb83bd1
RM
364 goto keep; /* break out of two nested for loops */
365 }
366 }
367
368 keep:
369 flags |= SEC_READONLY;
370 }
371
372 if (exec)
373 flags |= SEC_CODE;
374 else
375 flags |= SEC_DATA;
be4d1333 376
52b57208 377 osec = bfd_make_section_anyway_with_flags (obfd, "load", flags);
d3420b2f 378 if (osec == NULL)
be4d1333 379 {
8a3fe4f8 380 warning (_("Couldn't make gcore segment: %s"),
be4d1333 381 bfd_errmsg (bfd_get_error ()));
cbb83bd1 382 return 1;
be4d1333
MS
383 }
384
385 if (info_verbose)
386 {
86fbe6cc
EZ
387 fprintf_filtered (gdb_stdout, "Save segment, %s bytes at 0x%s\n",
388 paddr_d (size), paddr_nz (vaddr));
be4d1333
MS
389 }
390
391 bfd_set_section_size (obfd, osec, size);
cbb83bd1 392 bfd_set_section_vma (obfd, osec, vaddr);
d3420b2f 393 bfd_section_lma (obfd, osec) = 0; /* ??? bfd_set_section_lma? */
cbb83bd1 394 return 0;
be4d1333
MS
395}
396
397static int
d3420b2f
MK
398objfile_find_memory_regions (int (*func) (CORE_ADDR, unsigned long,
399 int, int, int, void *),
be4d1333
MS
400 void *obfd)
401{
d3420b2f 402 /* Use objfile data to create memory sections. */
be4d1333
MS
403 struct objfile *objfile;
404 struct obj_section *objsec;
405 bfd_vma temp_bottom, temp_top;
406
d3420b2f 407 /* Call callback function for each objfile section. */
be4d1333
MS
408 ALL_OBJSECTIONS (objfile, objsec)
409 {
410 bfd *ibfd = objfile->obfd;
411 asection *isec = objsec->the_bfd_section;
412 flagword flags = bfd_get_section_flags (ibfd, isec);
413 int ret;
414
415 if ((flags & SEC_ALLOC) || (flags & SEC_LOAD))
416 {
417 int size = bfd_section_size (ibfd, isec);
418 int ret;
419
cbb83bd1 420 ret = (*func) (objsec->addr, bfd_section_size (ibfd, isec),
d3420b2f
MK
421 1, /* All sections will be readable. */
422 (flags & SEC_READONLY) == 0, /* Writable. */
423 (flags & SEC_CODE) != 0, /* Executable. */
424 obfd);
425 if (ret != 0)
be4d1333
MS
426 return ret;
427 }
428 }
429
d3420b2f 430 /* Make a stack segment. */
be4d1333 431 if (derive_stack_segment (&temp_bottom, &temp_top))
cbb83bd1 432 (*func) (temp_bottom, temp_top - temp_bottom,
d3420b2f
MK
433 1, /* Stack section will be readable. */
434 1, /* Stack section will be writable. */
435 0, /* Stack section will not be executable. */
be4d1333
MS
436 obfd);
437
438 /* Make a heap segment. */
439 if (derive_heap_segment (exec_bfd, &temp_bottom, &temp_top))
d3420b2f
MK
440 (*func) (temp_bottom, temp_top - temp_bottom,
441 1, /* Heap section will be readable. */
442 1, /* Heap section will be writable. */
443 0, /* Heap section will not be executable. */
be4d1333 444 obfd);
d3420b2f 445
be4d1333
MS
446 return 0;
447}
448
449static void
450gcore_copy_callback (bfd *obfd, asection *osec, void *ignored)
451{
804e0f53
DJ
452 bfd_size_type size, total_size = bfd_section_size (obfd, osec);
453 file_ptr offset = 0;
be4d1333
MS
454 struct cleanup *old_chain = NULL;
455 void *memhunk;
456
cbb83bd1
RM
457 /* Read-only sections are marked; we don't have to copy their contents. */
458 if ((bfd_get_section_flags (obfd, osec) & SEC_LOAD) == 0)
d3420b2f
MK
459 return;
460
461 /* Only interested in "load" sections. */
20fe79c8 462 if (strncmp ("load", bfd_section_name (obfd, osec), 4) != 0)
d3420b2f 463 return;
be4d1333 464
804e0f53 465 size = min (total_size, MAX_COPY_BYTES);
d3420b2f
MK
466 memhunk = xmalloc (size);
467 /* ??? This is crap since xmalloc should never return NULL. */
468 if (memhunk == NULL)
8a3fe4f8 469 error (_("Not enough memory to create corefile."));
be4d1333
MS
470 old_chain = make_cleanup (xfree, memhunk);
471
804e0f53
DJ
472 while (total_size > 0)
473 {
474 if (size > total_size)
475 size = total_size;
476
477 if (target_read_memory (bfd_section_vma (obfd, osec) + offset,
478 memhunk, size) != 0)
479 {
480 warning (_("Memory read failed for corefile section, %s bytes at 0x%s."),
481 paddr_d (size), paddr (bfd_section_vma (obfd, osec)));
482 break;
483 }
484 if (!bfd_set_section_contents (obfd, osec, memhunk, offset, size))
485 {
486 warning (_("Failed to write corefile contents (%s)."),
487 bfd_errmsg (bfd_get_error ()));
488 break;
489 }
490
491 total_size -= size;
492 offset += size;
493 }
be4d1333 494
d3420b2f 495 do_cleanups (old_chain); /* Frees MEMHUNK. */
be4d1333
MS
496}
497
498static int
499gcore_memory_sections (bfd *obfd)
500{
501 if (target_find_memory_regions (gcore_create_callback, obfd) != 0)
d3420b2f 502 return 0; /* FIXME: error return/msg? */
be4d1333 503
d3420b2f 504 /* Record phdrs for section-to-segment mapping. */
be4d1333
MS
505 bfd_map_over_sections (obfd, make_output_phdrs, NULL);
506
d3420b2f 507 /* Copy memory region contents. */
be4d1333
MS
508 bfd_map_over_sections (obfd, gcore_copy_callback, NULL);
509
d3420b2f 510 return 1;
be4d1333
MS
511}
512
513void
514_initialize_gcore (void)
515{
1bedd215 516 add_com ("generate-core-file", class_files, gcore_command, _("\
d3420b2f 517Save a core file with the current state of the debugged process.\n\
1bedd215 518Argument is optional filename. Default filename is 'core.<process_id>'."));
be4d1333
MS
519
520 add_com_alias ("gcore", "generate-core-file", class_files, 1);
521 exec_set_find_memory_regions (objfile_find_memory_regions);
522}
This page took 0.433549 seconds and 4 git commands to generate.