Error in build_executable_own_libs for non-native target
[deliverable/binutils-gdb.git] / gdb / corelow.c
CommitLineData
c906108c 1/* Core dump and executable file functions below target vector, for GDB.
4646aa9d 2
ecd75fc8 3 Copyright (C) 1986-2014 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
0e24ac5d 21#include "arch-utils.h"
c906108c
SS
22#include <signal.h>
23#include <fcntl.h>
fc24370e
MS
24#ifdef HAVE_SYS_FILE_H
25#include <sys/file.h> /* needed for F_OK and friends */
26#endif
c5aa993b 27#include "frame.h" /* required by inferior.h */
c906108c 28#include "inferior.h"
45741a9c 29#include "infrun.h"
c906108c
SS
30#include "symtab.h"
31#include "command.h"
32#include "bfd.h"
33#include "target.h"
34#include "gdbcore.h"
35#include "gdbthread.h"
4e052eda 36#include "regcache.h"
0e24ac5d 37#include "regset.h"
990f9fe3 38#include "symfile.h"
4646aa9d 39#include "exec.h"
dbda9972 40#include "readline/readline.h"
60250e8b 41#include "exceptions.h"
a77053c2 42#include "solib.h"
f90c07ac 43#include "filenames.h"
6c95b8df 44#include "progspace.h"
516ba659 45#include "objfiles.h"
cbb099e8 46#include "gdb_bfd.h"
9852c492 47#include "completer.h"
614c279d 48#include "filestuff.h"
8e860359 49
ee28ca0f
AC
50#ifndef O_LARGEFILE
51#define O_LARGEFILE 0
52#endif
53
00e32a35
AC
54/* List of all available core_fns. On gdb startup, each core file
55 register reader calls deprecated_add_core_fns() to register
56 information on each core format it is prepared to read. */
c906108c
SS
57
58static struct core_fns *core_file_fns = NULL;
59
aff410f1
MS
60/* The core_fns for a core file handler that is prepared to read the
61 core file currently open on core_bfd. */
2acceee2
JM
62
63static struct core_fns *core_vec = NULL;
64
0e24ac5d
MK
65/* FIXME: kettenis/20031023: Eventually this variable should
66 disappear. */
67
6a3bfc5c 68static struct gdbarch *core_gdbarch = NULL;
0e24ac5d 69
07b82ea5
PA
70/* Per-core data. Currently, only the section table. Note that these
71 target sections are *not* mapped in the current address spaces' set
72 of target sections --- those should come only from pure executable
73 or shared library bfds. The core bfd sections are an
74 implementation detail of the core target, just like ptrace is for
75 unix child targets. */
76static struct target_section_table *core_data;
77
a14ed312 78static void core_files_info (struct target_ops *);
c906108c 79
a14ed312 80static struct core_fns *sniff_core_bfd (bfd *);
2acceee2 81
020cc13c 82static int gdb_check_format (bfd *);
2acceee2 83
de90e03d 84static void core_close (struct target_ops *self);
c906108c 85
74b7792f
AC
86static void core_close_cleanup (void *ignore);
87
4efb68b1 88static void add_to_thread_list (bfd *, asection *, void *);
c906108c 89
a14ed312 90static void init_core_ops (void);
c906108c 91
a14ed312 92void _initialize_corelow (void);
c906108c 93
c0edd9ed 94static struct target_ops core_ops;
c906108c 95
7f9f62ba
PA
96/* An arbitrary identifier for the core inferior. */
97#define CORELOW_PID 1
98
aff410f1
MS
99/* Link a new core_fns into the global core_file_fns list. Called on
100 gdb startup by the _initialize routine in each core file register
b021a221 101 reader, to register information about each format the reader is
aff410f1 102 prepared to handle. */
c906108c
SS
103
104void
00e32a35 105deprecated_add_core_fns (struct core_fns *cf)
c906108c 106{
c5aa993b 107 cf->next = core_file_fns;
c906108c
SS
108 core_file_fns = cf;
109}
110
2acceee2
JM
111/* The default function that core file handlers can use to examine a
112 core file BFD and decide whether or not to accept the job of
aff410f1 113 reading the core file. */
2acceee2
JM
114
115int
fba45db2 116default_core_sniffer (struct core_fns *our_fns, bfd *abfd)
2acceee2
JM
117{
118 int result;
119
120 result = (bfd_get_flavour (abfd) == our_fns -> core_flavour);
121 return (result);
122}
123
124/* Walk through the list of core functions to find a set that can
06b9f45f 125 handle the core file open on ABFD. Returns pointer to set that is
aff410f1 126 selected. */
2acceee2
JM
127
128static struct core_fns *
fba45db2 129sniff_core_bfd (bfd *abfd)
2acceee2
JM
130{
131 struct core_fns *cf;
132 struct core_fns *yummy = NULL;
133 int matches = 0;;
134
aff410f1
MS
135 /* Don't sniff if we have support for register sets in
136 CORE_GDBARCH. */
0e24ac5d
MK
137 if (core_gdbarch && gdbarch_regset_from_core_section_p (core_gdbarch))
138 return NULL;
139
2acceee2
JM
140 for (cf = core_file_fns; cf != NULL; cf = cf->next)
141 {
142 if (cf->core_sniffer (cf, abfd))
143 {
144 yummy = cf;
145 matches++;
146 }
147 }
148 if (matches > 1)
149 {
8a3fe4f8 150 warning (_("\"%s\": ambiguous core format, %d handlers match"),
2acceee2
JM
151 bfd_get_filename (abfd), matches);
152 }
153 else if (matches == 0)
06b9f45f
JK
154 error (_("\"%s\": no core file handler recognizes format"),
155 bfd_get_filename (abfd));
156
2acceee2
JM
157 return (yummy);
158}
159
160/* The default is to reject every core file format we see. Either
161 BFD has to recognize it, or we have to provide a function in the
aff410f1 162 core file handler that recognizes it. */
2acceee2
JM
163
164int
fba45db2 165default_check_format (bfd *abfd)
2acceee2
JM
166{
167 return (0);
168}
169
aff410f1 170/* Attempt to recognize core file formats that BFD rejects. */
2acceee2 171
020cc13c 172static int
fba45db2 173gdb_check_format (bfd *abfd)
2acceee2
JM
174{
175 struct core_fns *cf;
176
177 for (cf = core_file_fns; cf != NULL; cf = cf->next)
178 {
179 if (cf->check_format (abfd))
180 {
81a9a963 181 return (1);
2acceee2
JM
182 }
183 }
81a9a963 184 return (0);
2acceee2 185}
c906108c 186
aff410f1
MS
187/* Discard all vestiges of any previous core file and mark data and
188 stack spaces as empty. */
c906108c 189
c906108c 190static void
de90e03d 191core_close (struct target_ops *self)
c906108c 192{
c906108c
SS
193 if (core_bfd)
194 {
959b8724 195 int pid = ptid_get_pid (inferior_ptid);
aff410f1
MS
196 inferior_ptid = null_ptid; /* Avoid confusion from thread
197 stuff. */
06b9f45f
JK
198 if (pid != 0)
199 exit_inferior_silent (pid);
c906108c 200
aff410f1
MS
201 /* Clear out solib state while the bfd is still open. See
202 comments in clear_solib in solib.c. */
a77053c2 203 clear_solib ();
7a292a7a 204
06b9f45f
JK
205 if (core_data)
206 {
207 xfree (core_data->sections);
208 xfree (core_data);
209 core_data = NULL;
210 }
07b82ea5 211
cbb099e8 212 gdb_bfd_unref (core_bfd);
c906108c 213 core_bfd = NULL;
c906108c 214 }
2acceee2 215 core_vec = NULL;
0e24ac5d 216 core_gdbarch = NULL;
c906108c
SS
217}
218
74b7792f
AC
219static void
220core_close_cleanup (void *ignore)
221{
de90e03d 222 core_close (NULL);
74b7792f
AC
223}
224
aff410f1
MS
225/* Look for sections whose names start with `.reg/' so that we can
226 extract the list of threads in a core file. */
c906108c
SS
227
228static void
4efb68b1 229add_to_thread_list (bfd *abfd, asection *asect, void *reg_sect_arg)
c906108c 230{
0de3b513 231 ptid_t ptid;
3cdd9356
PA
232 int core_tid;
233 int pid, lwpid;
c906108c 234 asection *reg_sect = (asection *) reg_sect_arg;
88f38a04
PA
235 int fake_pid_p = 0;
236 struct inferior *inf;
c906108c
SS
237
238 if (strncmp (bfd_section_name (abfd, asect), ".reg/", 5) != 0)
239 return;
240
3cdd9356 241 core_tid = atoi (bfd_section_name (abfd, asect) + 5);
c906108c 242
261b8d08
PA
243 pid = bfd_core_file_pid (core_bfd);
244 if (pid == 0)
3cdd9356 245 {
88f38a04 246 fake_pid_p = 1;
3cdd9356 247 pid = CORELOW_PID;
3cdd9356 248 }
0de3b513 249
261b8d08
PA
250 lwpid = core_tid;
251
88f38a04
PA
252 inf = current_inferior ();
253 if (inf->pid == 0)
254 {
255 inferior_appeared (inf, pid);
256 inf->fake_pid_p = fake_pid_p;
257 }
3cdd9356
PA
258
259 ptid = ptid_build (pid, lwpid, 0);
260
261 add_thread (ptid);
c906108c
SS
262
263/* Warning, Will Robinson, looking at BFD private data! */
264
265 if (reg_sect != NULL
aff410f1
MS
266 && asect->filepos == reg_sect->filepos) /* Did we find .reg? */
267 inferior_ptid = ptid; /* Yes, make it current. */
c906108c
SS
268}
269
270/* This routine opens and sets up the core file bfd. */
271
272static void
014f9477 273core_open (const char *arg, int from_tty)
c906108c
SS
274{
275 const char *p;
276 int siggy;
277 struct cleanup *old_chain;
278 char *temp;
279 bfd *temp_bfd;
c906108c 280 int scratch_chan;
ee28ca0f 281 int flags;
8e7b59a5 282 volatile struct gdb_exception except;
014f9477 283 char *filename;
c906108c
SS
284
285 target_preopen (from_tty);
014f9477 286 if (!arg)
c906108c 287 {
8a3fe4f8 288 if (core_bfd)
3e43a32a
MS
289 error (_("No core file specified. (Use `detach' "
290 "to stop debugging a core file.)"));
8a3fe4f8
AC
291 else
292 error (_("No core file specified."));
c906108c
SS
293 }
294
014f9477 295 filename = tilde_expand (arg);
aff410f1 296 if (!IS_ABSOLUTE_PATH (filename))
c906108c 297 {
aff410f1
MS
298 temp = concat (current_directory, "/",
299 filename, (char *) NULL);
b8c9b27d 300 xfree (filename);
c906108c
SS
301 filename = temp;
302 }
303
b8c9b27d 304 old_chain = make_cleanup (xfree, filename);
c906108c 305
ee28ca0f
AC
306 flags = O_BINARY | O_LARGEFILE;
307 if (write_files)
308 flags |= O_RDWR;
309 else
310 flags |= O_RDONLY;
614c279d 311 scratch_chan = gdb_open_cloexec (filename, flags, 0);
c906108c
SS
312 if (scratch_chan < 0)
313 perror_with_name (filename);
314
64c31149
TT
315 temp_bfd = gdb_bfd_fopen (filename, gnutarget,
316 write_files ? FOPEN_RUB : FOPEN_RB,
317 scratch_chan);
c906108c
SS
318 if (temp_bfd == NULL)
319 perror_with_name (filename);
320
5aafa1cc
PM
321 if (!bfd_check_format (temp_bfd, bfd_core)
322 && !gdb_check_format (temp_bfd))
c906108c
SS
323 {
324 /* Do it after the err msg */
aff410f1
MS
325 /* FIXME: should be checking for errors from bfd_close (for one
326 thing, on error it does not free all the storage associated
327 with the bfd). */
f9a062ff 328 make_cleanup_bfd_unref (temp_bfd);
8a3fe4f8 329 error (_("\"%s\" is not a core dump: %s"),
c906108c
SS
330 filename, bfd_errmsg (bfd_get_error ()));
331 }
332
aff410f1
MS
333 /* Looks semi-reasonable. Toss the old core file and work on the
334 new. */
c906108c 335
a4453b7e 336 do_cleanups (old_chain);
c906108c
SS
337 unpush_target (&core_ops);
338 core_bfd = temp_bfd;
74b7792f 339 old_chain = make_cleanup (core_close_cleanup, 0 /*ignore*/);
c906108c 340
0e24ac5d
MK
341 core_gdbarch = gdbarch_from_bfd (core_bfd);
342
2acceee2
JM
343 /* Find a suitable core file handler to munch on core_bfd */
344 core_vec = sniff_core_bfd (core_bfd);
345
c906108c
SS
346 validate_files ();
347
41bf6aca 348 core_data = XCNEW (struct target_section_table);
07b82ea5 349
c906108c 350 /* Find the data section */
07b82ea5 351 if (build_section_table (core_bfd,
aff410f1
MS
352 &core_data->sections,
353 &core_data->sections_end))
8a3fe4f8 354 error (_("\"%s\": Can't find sections: %s"),
c906108c
SS
355 bfd_get_filename (core_bfd), bfd_errmsg (bfd_get_error ()));
356
2f1b5984
MK
357 /* If we have no exec file, try to set the architecture from the
358 core file. We don't do this unconditionally since an exec file
359 typically contains more information that helps us determine the
360 architecture than a core file. */
361 if (!exec_bfd)
362 set_gdbarch_from_file (core_bfd);
cbda0a99 363
87ab71f0 364 push_target (&core_ops);
c906108c
SS
365 discard_cleanups (old_chain);
366
0de3b513
PA
367 /* Do this before acknowledging the inferior, so if
368 post_create_inferior throws (can happen easilly if you're loading
369 a core file with the wrong exec), we aren't left with threads
370 from the previous inferior. */
371 init_thread_list ();
372
3cdd9356 373 inferior_ptid = null_ptid;
0de3b513 374
739fc47a
PA
375 /* Need to flush the register cache (and the frame cache) from a
376 previous debug session. If inferior_ptid ends up the same as the
377 last debug session --- e.g., b foo; run; gcore core1; step; gcore
378 core2; core core1; core core2 --- then there's potential for
379 get_current_regcache to return the cached regcache of the
380 previous session, and the frame cache being stale. */
381 registers_changed ();
382
0de3b513
PA
383 /* Build up thread list from BFD sections, and possibly set the
384 current thread to the .reg/NN section matching the .reg
aff410f1 385 section. */
0de3b513
PA
386 bfd_map_over_sections (core_bfd, add_to_thread_list,
387 bfd_get_section_by_name (core_bfd, ".reg"));
388
3cdd9356
PA
389 if (ptid_equal (inferior_ptid, null_ptid))
390 {
391 /* Either we found no .reg/NN section, and hence we have a
392 non-threaded core (single-threaded, from gdb's perspective),
393 or for some reason add_to_thread_list couldn't determine
394 which was the "main" thread. The latter case shouldn't
395 usually happen, but we're dealing with input here, which can
396 always be broken in different ways. */
397 struct thread_info *thread = first_thread_of_process (-1);
c5504eaf 398
3cdd9356
PA
399 if (thread == NULL)
400 {
c45ceae0 401 inferior_appeared (current_inferior (), CORELOW_PID);
3cdd9356
PA
402 inferior_ptid = pid_to_ptid (CORELOW_PID);
403 add_thread_silent (inferior_ptid);
404 }
405 else
406 switch_to_thread (thread->ptid);
407 }
408
959b8724
PA
409 post_create_inferior (&core_ops, from_tty);
410
0de3b513
PA
411 /* Now go through the target stack looking for threads since there
412 may be a thread_stratum target loaded on top of target core by
413 now. The layer above should claim threads found in the BFD
414 sections. */
8e7b59a5
KS
415 TRY_CATCH (except, RETURN_MASK_ERROR)
416 {
417 target_find_new_threads ();
418 }
419
420 if (except.reason < 0)
421 exception_print (gdb_stderr, except);
0de3b513 422
c906108c
SS
423 p = bfd_core_file_failing_command (core_bfd);
424 if (p)
a3f17187 425 printf_filtered (_("Core was generated by `%s'.\n"), p);
c906108c 426
0c557179
SDJ
427 /* Clearing any previous state of convenience variables. */
428 clear_exit_convenience_vars ();
429
c906108c
SS
430 siggy = bfd_core_file_failing_signal (core_bfd);
431 if (siggy > 0)
423ec54c 432 {
22203bbf 433 /* If we don't have a CORE_GDBARCH to work with, assume a native
1f8cf220
PA
434 core (map gdb_signal from host signals). If we do have
435 CORE_GDBARCH to work with, but no gdb_signal_from_target
436 implementation for that gdbarch, as a fallback measure,
437 assume the host signal mapping. It'll be correct for native
438 cores, but most likely incorrect for cross-cores. */
2ea28649 439 enum gdb_signal sig = (core_gdbarch != NULL
1f8cf220
PA
440 && gdbarch_gdb_signal_from_target_p (core_gdbarch)
441 ? gdbarch_gdb_signal_from_target (core_gdbarch,
442 siggy)
443 : gdb_signal_from_host (siggy));
423ec54c 444
2d503272
PM
445 printf_filtered (_("Program terminated with signal %s, %s.\n"),
446 gdb_signal_to_name (sig), gdb_signal_to_string (sig));
0c557179
SDJ
447
448 /* Set the value of the internal variable $_exitsignal,
449 which holds the signal uncaught by the inferior. */
450 set_internalvar_integer (lookup_internalvar ("_exitsignal"),
451 siggy);
423ec54c 452 }
c906108c 453
87ab71f0
PA
454 /* Fetch all registers from core file. */
455 target_fetch_registers (get_current_regcache (), -1);
c906108c 456
87ab71f0
PA
457 /* Now, set up the frame cache, and print the top of stack. */
458 reinit_frame_cache ();
08d72866 459 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
c906108c
SS
460}
461
462static void
52554a0e 463core_detach (struct target_ops *ops, const char *args, int from_tty)
c906108c
SS
464{
465 if (args)
8a3fe4f8 466 error (_("Too many arguments"));
136d6dae 467 unpush_target (ops);
c906108c
SS
468 reinit_frame_cache ();
469 if (from_tty)
a3f17187 470 printf_filtered (_("No core file now.\n"));
c906108c
SS
471}
472
de57eccd
JM
473/* Try to retrieve registers from a section in core_bfd, and supply
474 them to core_vec->core_read_registers, as the register set numbered
475 WHICH.
476
0de3b513
PA
477 If inferior_ptid's lwp member is zero, do the single-threaded
478 thing: look for a section named NAME. If inferior_ptid's lwp
479 member is non-zero, do the multi-threaded thing: look for a section
480 named "NAME/LWP", where LWP is the shortest ASCII decimal
481 representation of inferior_ptid's lwp member.
de57eccd
JM
482
483 HUMAN_NAME is a human-readable name for the kind of registers the
484 NAME section contains, for use in error messages.
485
486 If REQUIRED is non-zero, print an error if the core file doesn't
aff410f1
MS
487 have a section by the appropriate name. Otherwise, just do
488 nothing. */
de57eccd
JM
489
490static void
9eefc95f 491get_core_register_section (struct regcache *regcache,
1b1818e4 492 const char *name,
de57eccd 493 int which,
1b1818e4 494 const char *human_name,
de57eccd
JM
495 int required)
496{
3ecda457 497 static char *section_name = NULL;
7be0c536 498 struct bfd_section *section;
de57eccd
JM
499 bfd_size_type size;
500 char *contents;
501
3ecda457 502 xfree (section_name);
959b8724 503
261b8d08 504 if (ptid_get_lwp (inferior_ptid))
aff410f1
MS
505 section_name = xstrprintf ("%s/%ld", name,
506 ptid_get_lwp (inferior_ptid));
de57eccd 507 else
3ecda457 508 section_name = xstrdup (name);
de57eccd
JM
509
510 section = bfd_get_section_by_name (core_bfd, section_name);
511 if (! section)
512 {
513 if (required)
aff410f1
MS
514 warning (_("Couldn't find %s registers in core file."),
515 human_name);
de57eccd
JM
516 return;
517 }
518
519 size = bfd_section_size (core_bfd, section);
520 contents = alloca (size);
521 if (! bfd_get_section_contents (core_bfd, section, contents,
522 (file_ptr) 0, size))
523 {
8a3fe4f8 524 warning (_("Couldn't read %s registers from `%s' section in core file."),
de57eccd
JM
525 human_name, name);
526 return;
527 }
528
0e24ac5d
MK
529 if (core_gdbarch && gdbarch_regset_from_core_section_p (core_gdbarch))
530 {
531 const struct regset *regset;
532
aff410f1
MS
533 regset = gdbarch_regset_from_core_section (core_gdbarch,
534 name, size);
0e24ac5d
MK
535 if (regset == NULL)
536 {
537 if (required)
8a3fe4f8 538 warning (_("Couldn't recognize %s registers in core file."),
0e24ac5d
MK
539 human_name);
540 return;
541 }
542
9eefc95f 543 regset->supply_regset (regset, regcache, -1, contents, size);
0e24ac5d
MK
544 return;
545 }
546
547 gdb_assert (core_vec);
9eefc95f 548 core_vec->core_read_registers (regcache, contents, size, which,
de57eccd
JM
549 ((CORE_ADDR)
550 bfd_section_vma (core_bfd, section)));
551}
552
553
c906108c
SS
554/* Get the registers out of a core file. This is the machine-
555 independent part. Fetch_core_registers is the machine-dependent
aff410f1
MS
556 part, typically implemented in the xm-file for each
557 architecture. */
c906108c
SS
558
559/* We just get all the registers, so we don't use regno. */
560
c906108c 561static void
28439f5e
PA
562get_core_registers (struct target_ops *ops,
563 struct regcache *regcache, int regno)
c906108c 564{
1b1818e4 565 struct core_regset_section *sect_list;
9c5ea4d9 566 int i;
c906108c 567
0e24ac5d
MK
568 if (!(core_gdbarch && gdbarch_regset_from_core_section_p (core_gdbarch))
569 && (core_vec == NULL || core_vec->core_read_registers == NULL))
c906108c
SS
570 {
571 fprintf_filtered (gdb_stderr,
c5aa993b 572 "Can't fetch registers from this type of core file\n");
c906108c
SS
573 return;
574 }
575
1b1818e4
UW
576 sect_list = gdbarch_core_regset_sections (get_regcache_arch (regcache));
577 if (sect_list)
578 while (sect_list->sect_name != NULL)
579 {
580 if (strcmp (sect_list->sect_name, ".reg") == 0)
581 get_core_register_section (regcache, sect_list->sect_name,
582 0, sect_list->human_name, 1);
583 else if (strcmp (sect_list->sect_name, ".reg2") == 0)
584 get_core_register_section (regcache, sect_list->sect_name,
585 2, sect_list->human_name, 0);
586 else
587 get_core_register_section (regcache, sect_list->sect_name,
588 3, sect_list->human_name, 0);
589
590 sect_list++;
591 }
592
593 else
594 {
595 get_core_register_section (regcache,
596 ".reg", 0, "general-purpose", 1);
597 get_core_register_section (regcache,
598 ".reg2", 2, "floating-point", 0);
599 }
c906108c 600
ee99023e 601 /* Mark all registers not found in the core as unavailable. */
13b8769f 602 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
ee99023e 603 if (regcache_register_status (regcache, i) == REG_UNKNOWN)
9c5ea4d9 604 regcache_raw_supply (regcache, i, NULL);
c906108c
SS
605}
606
c906108c 607static void
fba45db2 608core_files_info (struct target_ops *t)
c906108c 609{
07b82ea5 610 print_section_info (core_data, core_bfd);
c906108c 611}
e2544d02 612\f
efcbbd14
UW
613struct spuid_list
614{
615 gdb_byte *buf;
616 ULONGEST offset;
617 LONGEST len;
618 ULONGEST pos;
619 ULONGEST written;
620};
621
622static void
623add_to_spuid_list (bfd *abfd, asection *asect, void *list_p)
624{
625 struct spuid_list *list = list_p;
626 enum bfd_endian byte_order
aff410f1 627 = bfd_big_endian (abfd) ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
efcbbd14
UW
628 int fd, pos = 0;
629
630 sscanf (bfd_section_name (abfd, asect), "SPU/%d/regs%n", &fd, &pos);
631 if (pos == 0)
632 return;
633
634 if (list->pos >= list->offset && list->pos + 4 <= list->offset + list->len)
635 {
636 store_unsigned_integer (list->buf + list->pos - list->offset,
637 4, byte_order, fd);
638 list->written += 4;
639 }
640 list->pos += 4;
641}
642
9015683b
TT
643/* Read siginfo data from the core, if possible. Returns -1 on
644 failure. Otherwise, returns the number of bytes read. ABFD is the
645 core file's BFD; READBUF, OFFSET, and LEN are all as specified by
646 the to_xfer_partial interface. */
647
648static LONGEST
6b6aa828 649get_core_siginfo (bfd *abfd, gdb_byte *readbuf, ULONGEST offset, ULONGEST len)
9015683b
TT
650{
651 asection *section;
9015683b
TT
652 char *section_name;
653 const char *name = ".note.linuxcore.siginfo";
654
655 if (ptid_get_lwp (inferior_ptid))
656 section_name = xstrprintf ("%s/%ld", name,
657 ptid_get_lwp (inferior_ptid));
658 else
659 section_name = xstrdup (name);
660
661 section = bfd_get_section_by_name (abfd, section_name);
662 xfree (section_name);
663 if (section == NULL)
664 return -1;
665
666 if (!bfd_get_section_contents (abfd, section, readbuf, offset, len))
667 return -1;
668
669 return len;
670}
671
9b409511 672static enum target_xfer_status
e2544d02 673core_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5 674 const char *annex, gdb_byte *readbuf,
aff410f1 675 const gdb_byte *writebuf, ULONGEST offset,
9b409511 676 ULONGEST len, ULONGEST *xfered_len)
e2544d02
RM
677{
678 switch (object)
679 {
680 case TARGET_OBJECT_MEMORY:
07b82ea5 681 return section_table_xfer_memory_partial (readbuf, writebuf,
9b409511 682 offset, len, xfered_len,
07b82ea5
PA
683 core_data->sections,
684 core_data->sections_end,
685 NULL);
e2544d02
RM
686
687 case TARGET_OBJECT_AUXV:
688 if (readbuf)
689 {
690 /* When the aux vector is stored in core file, BFD
691 represents this with a fake section called ".auxv". */
692
c4c5b7ba 693 struct bfd_section *section;
e2544d02 694 bfd_size_type size;
e2544d02
RM
695
696 section = bfd_get_section_by_name (core_bfd, ".auxv");
697 if (section == NULL)
2ed4b548 698 return TARGET_XFER_E_IO;
e2544d02
RM
699
700 size = bfd_section_size (core_bfd, section);
701 if (offset >= size)
9b409511 702 return TARGET_XFER_EOF;
e2544d02
RM
703 size -= offset;
704 if (size > len)
705 size = len;
9b409511
YQ
706
707 if (size == 0)
708 return TARGET_XFER_EOF;
709 if (!bfd_get_section_contents (core_bfd, section, readbuf,
710 (file_ptr) offset, size))
e2544d02 711 {
8a3fe4f8 712 warning (_("Couldn't read NT_AUXV note in core file."));
2ed4b548 713 return TARGET_XFER_E_IO;
e2544d02
RM
714 }
715
9b409511
YQ
716 *xfered_len = (ULONGEST) size;
717 return TARGET_XFER_OK;
e2544d02 718 }
2ed4b548 719 return TARGET_XFER_E_IO;
e2544d02 720
403e1656
MK
721 case TARGET_OBJECT_WCOOKIE:
722 if (readbuf)
723 {
724 /* When the StackGhost cookie is stored in core file, BFD
aff410f1
MS
725 represents this with a fake section called
726 ".wcookie". */
403e1656
MK
727
728 struct bfd_section *section;
729 bfd_size_type size;
403e1656
MK
730
731 section = bfd_get_section_by_name (core_bfd, ".wcookie");
732 if (section == NULL)
2ed4b548 733 return TARGET_XFER_E_IO;
403e1656
MK
734
735 size = bfd_section_size (core_bfd, section);
736 if (offset >= size)
96c4f946 737 return TARGET_XFER_EOF;
403e1656
MK
738 size -= offset;
739 if (size > len)
740 size = len;
9b409511
YQ
741
742 if (size == 0)
743 return TARGET_XFER_EOF;
744 if (!bfd_get_section_contents (core_bfd, section, readbuf,
745 (file_ptr) offset, size))
403e1656 746 {
8a3fe4f8 747 warning (_("Couldn't read StackGhost cookie in core file."));
2ed4b548 748 return TARGET_XFER_E_IO;
403e1656
MK
749 }
750
9b409511
YQ
751 *xfered_len = (ULONGEST) size;
752 return TARGET_XFER_OK;
753
403e1656 754 }
2ed4b548 755 return TARGET_XFER_E_IO;
403e1656 756
de584861
PA
757 case TARGET_OBJECT_LIBRARIES:
758 if (core_gdbarch
759 && gdbarch_core_xfer_shared_libraries_p (core_gdbarch))
760 {
761 if (writebuf)
2ed4b548 762 return TARGET_XFER_E_IO;
9b409511
YQ
763 else
764 {
765 *xfered_len = gdbarch_core_xfer_shared_libraries (core_gdbarch,
766 readbuf,
767 offset, len);
768
769 if (*xfered_len == 0)
770 return TARGET_XFER_EOF;
771 else
772 return TARGET_XFER_OK;
773 }
de584861
PA
774 }
775 /* FALL THROUGH */
776
356a5233
JB
777 case TARGET_OBJECT_LIBRARIES_AIX:
778 if (core_gdbarch
779 && gdbarch_core_xfer_shared_libraries_aix_p (core_gdbarch))
780 {
781 if (writebuf)
2ed4b548 782 return TARGET_XFER_E_IO;
9b409511
YQ
783 else
784 {
785 *xfered_len
786 = gdbarch_core_xfer_shared_libraries_aix (core_gdbarch,
787 readbuf, offset,
788 len);
789
790 if (*xfered_len == 0)
791 return TARGET_XFER_EOF;
792 else
793 return TARGET_XFER_OK;
794 }
356a5233
JB
795 }
796 /* FALL THROUGH */
797
efcbbd14
UW
798 case TARGET_OBJECT_SPU:
799 if (readbuf && annex)
800 {
801 /* When the SPU contexts are stored in a core file, BFD
aff410f1
MS
802 represents this with a fake section called
803 "SPU/<annex>". */
efcbbd14
UW
804
805 struct bfd_section *section;
806 bfd_size_type size;
efcbbd14 807 char sectionstr[100];
c5504eaf 808
efcbbd14
UW
809 xsnprintf (sectionstr, sizeof sectionstr, "SPU/%s", annex);
810
811 section = bfd_get_section_by_name (core_bfd, sectionstr);
812 if (section == NULL)
2ed4b548 813 return TARGET_XFER_E_IO;
efcbbd14
UW
814
815 size = bfd_section_size (core_bfd, section);
816 if (offset >= size)
9b409511 817 return TARGET_XFER_EOF;
efcbbd14
UW
818 size -= offset;
819 if (size > len)
820 size = len;
9b409511
YQ
821
822 if (size == 0)
823 return TARGET_XFER_EOF;
824 if (!bfd_get_section_contents (core_bfd, section, readbuf,
825 (file_ptr) offset, size))
efcbbd14
UW
826 {
827 warning (_("Couldn't read SPU section in core file."));
2ed4b548 828 return TARGET_XFER_E_IO;
efcbbd14
UW
829 }
830
9b409511
YQ
831 *xfered_len = (ULONGEST) size;
832 return TARGET_XFER_OK;
efcbbd14
UW
833 }
834 else if (readbuf)
835 {
836 /* NULL annex requests list of all present spuids. */
837 struct spuid_list list;
c5504eaf 838
efcbbd14
UW
839 list.buf = readbuf;
840 list.offset = offset;
841 list.len = len;
842 list.pos = 0;
843 list.written = 0;
844 bfd_map_over_sections (core_bfd, add_to_spuid_list, &list);
9b409511
YQ
845
846 if (list.written == 0)
847 return TARGET_XFER_EOF;
848 else
849 {
850 *xfered_len = (ULONGEST) list.written;
851 return TARGET_XFER_OK;
852 }
efcbbd14 853 }
2ed4b548 854 return TARGET_XFER_E_IO;
efcbbd14 855
9015683b
TT
856 case TARGET_OBJECT_SIGNAL_INFO:
857 if (readbuf)
9b409511
YQ
858 {
859 LONGEST l = get_core_siginfo (core_bfd, readbuf, offset, len);
860
861 if (l > 0)
862 {
863 *xfered_len = len;
864 return TARGET_XFER_OK;
865 }
866 }
2ed4b548 867 return TARGET_XFER_E_IO;
9015683b 868
e2544d02 869 default:
e75fdfca
TT
870 return ops->beneath->to_xfer_partial (ops->beneath, object,
871 annex, readbuf,
872 writebuf, offset, len,
873 xfered_len);
e2544d02
RM
874 }
875}
876
c906108c
SS
877\f
878/* If mourn is being called in all the right places, this could be say
aff410f1
MS
879 `gdb internal error' (since generic_mourn calls
880 breakpoint_init_inferior). */
c906108c
SS
881
882static int
3db08215
MM
883ignore (struct target_ops *ops, struct gdbarch *gdbarch,
884 struct bp_target_info *bp_tgt)
c906108c
SS
885{
886 return 0;
887}
888
889
890/* Okay, let's be honest: threads gleaned from a core file aren't
891 exactly lively, are they? On the other hand, if we don't claim
892 that each & every one is alive, then we don't get any of them
893 to appear in an "info thread" command, which is quite a useful
894 behaviour.
c5aa993b 895 */
c906108c 896static int
28439f5e 897core_thread_alive (struct target_ops *ops, ptid_t ptid)
c906108c
SS
898{
899 return 1;
900}
901
4eb0ad19
DJ
902/* Ask the current architecture what it knows about this core file.
903 That will be used, in turn, to pick a better architecture. This
904 wrapper could be avoided if targets got a chance to specialize
905 core_ops. */
906
907static const struct target_desc *
908core_read_description (struct target_ops *target)
909{
a78c2d62 910 if (core_gdbarch && gdbarch_core_read_description_p (core_gdbarch))
2117c711
TT
911 {
912 const struct target_desc *result;
913
914 result = gdbarch_core_read_description (core_gdbarch,
915 target, core_bfd);
916 if (result != NULL)
917 return result;
918 }
4eb0ad19 919
2117c711 920 return target->beneath->to_read_description (target->beneath);
4eb0ad19
DJ
921}
922
0de3b513 923static char *
117de6a9 924core_pid_to_str (struct target_ops *ops, ptid_t ptid)
0de3b513
PA
925{
926 static char buf[64];
88f38a04 927 struct inferior *inf;
a5ee0f0c 928 int pid;
0de3b513 929
a5ee0f0c
PA
930 /* The preferred way is to have a gdbarch/OS specific
931 implementation. */
28439f5e
PA
932 if (core_gdbarch
933 && gdbarch_core_pid_to_str_p (core_gdbarch))
a5ee0f0c 934 return gdbarch_core_pid_to_str (core_gdbarch, ptid);
c5504eaf 935
a5ee0f0c
PA
936 /* Otherwise, if we don't have one, we'll just fallback to
937 "process", with normal_pid_to_str. */
28439f5e 938
a5ee0f0c
PA
939 /* Try the LWPID field first. */
940 pid = ptid_get_lwp (ptid);
941 if (pid != 0)
942 return normal_pid_to_str (pid_to_ptid (pid));
943
944 /* Otherwise, this isn't a "threaded" core -- use the PID field, but
945 only if it isn't a fake PID. */
88f38a04
PA
946 inf = find_inferior_pid (ptid_get_pid (ptid));
947 if (inf != NULL && !inf->fake_pid_p)
a5ee0f0c 948 return normal_pid_to_str (ptid);
0de3b513 949
a5ee0f0c
PA
950 /* No luck. We simply don't have a valid PID to print. */
951 xsnprintf (buf, sizeof buf, "<main task>");
0de3b513
PA
952 return buf;
953}
954
c35b1492
PA
955static int
956core_has_memory (struct target_ops *ops)
957{
958 return (core_bfd != NULL);
959}
960
961static int
962core_has_stack (struct target_ops *ops)
963{
964 return (core_bfd != NULL);
965}
966
967static int
968core_has_registers (struct target_ops *ops)
969{
970 return (core_bfd != NULL);
971}
972
451b7c33
TT
973/* Implement the to_info_proc method. */
974
975static void
7bc112c1
TT
976core_info_proc (struct target_ops *ops, const char *args,
977 enum info_proc_what request)
451b7c33
TT
978{
979 struct gdbarch *gdbarch = get_current_arch ();
980
981 /* Since this is the core file target, call the 'core_info_proc'
982 method on gdbarch, not 'info_proc'. */
983 if (gdbarch_core_info_proc_p (gdbarch))
984 gdbarch_core_info_proc (gdbarch, args, request);
985}
986
c906108c
SS
987/* Fill in core_ops with its defined operations and properties. */
988
989static void
fba45db2 990init_core_ops (void)
c906108c
SS
991{
992 core_ops.to_shortname = "core";
993 core_ops.to_longname = "Local core dump file";
994 core_ops.to_doc =
995 "Use a core file as a target. Specify the filename of the core file.";
996 core_ops.to_open = core_open;
997 core_ops.to_close = core_close;
c906108c 998 core_ops.to_detach = core_detach;
c906108c 999 core_ops.to_fetch_registers = get_core_registers;
e2544d02 1000 core_ops.to_xfer_partial = core_xfer_partial;
c906108c
SS
1001 core_ops.to_files_info = core_files_info;
1002 core_ops.to_insert_breakpoint = ignore;
1003 core_ops.to_remove_breakpoint = ignore;
28439f5e 1004 core_ops.to_thread_alive = core_thread_alive;
4eb0ad19 1005 core_ops.to_read_description = core_read_description;
0de3b513 1006 core_ops.to_pid_to_str = core_pid_to_str;
c0edd9ed 1007 core_ops.to_stratum = process_stratum;
c35b1492
PA
1008 core_ops.to_has_memory = core_has_memory;
1009 core_ops.to_has_stack = core_has_stack;
1010 core_ops.to_has_registers = core_has_registers;
451b7c33 1011 core_ops.to_info_proc = core_info_proc;
c5aa993b 1012 core_ops.to_magic = OPS_MAGIC;
c0edd9ed
JK
1013
1014 if (core_target)
1015 internal_error (__FILE__, __LINE__,
1016 _("init_core_ops: core target already exists (\"%s\")."),
1017 core_target->to_longname);
1018 core_target = &core_ops;
c906108c
SS
1019}
1020
c906108c 1021void
fba45db2 1022_initialize_corelow (void)
c906108c
SS
1023{
1024 init_core_ops ();
1025
9852c492 1026 add_target_with_completer (&core_ops, filename_completer);
c906108c 1027}
This page took 1.31653 seconds and 4 git commands to generate.