* corelow.c (core_open): Assume there was no upper layer left
[binutils-gdb.git] / gdb / target.c
1 /* Select target systems and architectures at runtime for GDB.
2
3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 Free Software Foundation, Inc.
6
7 Contributed by Cygnus Support.
8
9 This file is part of GDB.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23
24 #include "defs.h"
25 #include <errno.h>
26 #include "gdb_string.h"
27 #include "target.h"
28 #include "gdbcmd.h"
29 #include "symtab.h"
30 #include "inferior.h"
31 #include "bfd.h"
32 #include "symfile.h"
33 #include "objfiles.h"
34 #include "gdb_wait.h"
35 #include "dcache.h"
36 #include <signal.h>
37 #include "regcache.h"
38 #include "gdb_assert.h"
39 #include "gdbcore.h"
40 #include "exceptions.h"
41 #include "target-descriptions.h"
42 #include "gdbthread.h"
43 #include "solib.h"
44
45 static void target_info (char *, int);
46
47 static void maybe_kill_then_attach (char *, int);
48
49 static void kill_or_be_killed (int);
50
51 static void default_terminal_info (char *, int);
52
53 static int default_watchpoint_addr_within_range (struct target_ops *,
54 CORE_ADDR, CORE_ADDR, int);
55
56 static int default_region_ok_for_hw_watchpoint (CORE_ADDR, int);
57
58 static int nosymbol (char *, CORE_ADDR *);
59
60 static void tcomplain (void) ATTR_NORETURN;
61
62 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
63
64 static int return_zero (void);
65
66 static int return_one (void);
67
68 static int return_minus_one (void);
69
70 void target_ignore (void);
71
72 static void target_command (char *, int);
73
74 static struct target_ops *find_default_run_target (char *);
75
76 static void nosupport_runtime (void);
77
78 static LONGEST default_xfer_partial (struct target_ops *ops,
79 enum target_object object,
80 const char *annex, gdb_byte *readbuf,
81 const gdb_byte *writebuf,
82 ULONGEST offset, LONGEST len);
83
84 static LONGEST current_xfer_partial (struct target_ops *ops,
85 enum target_object object,
86 const char *annex, gdb_byte *readbuf,
87 const gdb_byte *writebuf,
88 ULONGEST offset, LONGEST len);
89
90 static LONGEST target_xfer_partial (struct target_ops *ops,
91 enum target_object object,
92 const char *annex,
93 void *readbuf, const void *writebuf,
94 ULONGEST offset, LONGEST len);
95
96 static void init_dummy_target (void);
97
98 static struct target_ops debug_target;
99
100 static void debug_to_open (char *, int);
101
102 static void debug_to_close (int);
103
104 static void debug_to_attach (char *, int);
105
106 static void debug_to_detach (char *, int);
107
108 static void debug_to_resume (ptid_t, int, enum target_signal);
109
110 static ptid_t debug_to_wait (ptid_t, struct target_waitstatus *);
111
112 static void debug_to_fetch_registers (struct regcache *, int);
113
114 static void debug_to_store_registers (struct regcache *, int);
115
116 static void debug_to_prepare_to_store (struct regcache *);
117
118 static void debug_to_files_info (struct target_ops *);
119
120 static int debug_to_insert_breakpoint (struct bp_target_info *);
121
122 static int debug_to_remove_breakpoint (struct bp_target_info *);
123
124 static int debug_to_can_use_hw_breakpoint (int, int, int);
125
126 static int debug_to_insert_hw_breakpoint (struct bp_target_info *);
127
128 static int debug_to_remove_hw_breakpoint (struct bp_target_info *);
129
130 static int debug_to_insert_watchpoint (CORE_ADDR, int, int);
131
132 static int debug_to_remove_watchpoint (CORE_ADDR, int, int);
133
134 static int debug_to_stopped_by_watchpoint (void);
135
136 static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
137
138 static int debug_to_watchpoint_addr_within_range (struct target_ops *,
139 CORE_ADDR, CORE_ADDR, int);
140
141 static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR, int);
142
143 static void debug_to_terminal_init (void);
144
145 static void debug_to_terminal_inferior (void);
146
147 static void debug_to_terminal_ours_for_output (void);
148
149 static void debug_to_terminal_save_ours (void);
150
151 static void debug_to_terminal_ours (void);
152
153 static void debug_to_terminal_info (char *, int);
154
155 static void debug_to_kill (void);
156
157 static void debug_to_load (char *, int);
158
159 static int debug_to_lookup_symbol (char *, CORE_ADDR *);
160
161 static void debug_to_mourn_inferior (void);
162
163 static int debug_to_can_run (void);
164
165 static void debug_to_notice_signals (ptid_t);
166
167 static int debug_to_thread_alive (ptid_t);
168
169 static void debug_to_stop (ptid_t);
170
171 /* NOTE: cagney/2004-09-29: Many targets reference this variable in
172 wierd and mysterious ways. Putting the variable here lets those
173 wierd and mysterious ways keep building while they are being
174 converted to the inferior inheritance structure. */
175 struct target_ops deprecated_child_ops;
176
177 /* Pointer to array of target architecture structures; the size of the
178 array; the current index into the array; the allocated size of the
179 array. */
180 struct target_ops **target_structs;
181 unsigned target_struct_size;
182 unsigned target_struct_index;
183 unsigned target_struct_allocsize;
184 #define DEFAULT_ALLOCSIZE 10
185
186 /* The initial current target, so that there is always a semi-valid
187 current target. */
188
189 static struct target_ops dummy_target;
190
191 /* Top of target stack. */
192
193 static struct target_ops *target_stack;
194
195 /* The target structure we are currently using to talk to a process
196 or file or whatever "inferior" we have. */
197
198 struct target_ops current_target;
199
200 /* Command list for target. */
201
202 static struct cmd_list_element *targetlist = NULL;
203
204 /* Nonzero if we are debugging an attached outside process
205 rather than an inferior. */
206
207 int attach_flag;
208
209 /* Nonzero if we should trust readonly sections from the
210 executable when reading memory. */
211
212 static int trust_readonly = 0;
213
214 /* Nonzero if we should show true memory content including
215 memory breakpoint inserted by gdb. */
216
217 static int show_memory_breakpoints = 0;
218
219 /* Non-zero if we want to see trace of target level stuff. */
220
221 static int targetdebug = 0;
222 static void
223 show_targetdebug (struct ui_file *file, int from_tty,
224 struct cmd_list_element *c, const char *value)
225 {
226 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
227 }
228
229 static void setup_target_debug (void);
230
231 DCACHE *target_dcache;
232
233 /* The user just typed 'target' without the name of a target. */
234
235 static void
236 target_command (char *arg, int from_tty)
237 {
238 fputs_filtered ("Argument required (target name). Try `help target'\n",
239 gdb_stdout);
240 }
241
242 /* Add a possible target architecture to the list. */
243
244 void
245 add_target (struct target_ops *t)
246 {
247 /* Provide default values for all "must have" methods. */
248 if (t->to_xfer_partial == NULL)
249 t->to_xfer_partial = default_xfer_partial;
250
251 if (!target_structs)
252 {
253 target_struct_allocsize = DEFAULT_ALLOCSIZE;
254 target_structs = (struct target_ops **) xmalloc
255 (target_struct_allocsize * sizeof (*target_structs));
256 }
257 if (target_struct_size >= target_struct_allocsize)
258 {
259 target_struct_allocsize *= 2;
260 target_structs = (struct target_ops **)
261 xrealloc ((char *) target_structs,
262 target_struct_allocsize * sizeof (*target_structs));
263 }
264 target_structs[target_struct_size++] = t;
265
266 if (targetlist == NULL)
267 add_prefix_cmd ("target", class_run, target_command, _("\
268 Connect to a target machine or process.\n\
269 The first argument is the type or protocol of the target machine.\n\
270 Remaining arguments are interpreted by the target protocol. For more\n\
271 information on the arguments for a particular protocol, type\n\
272 `help target ' followed by the protocol name."),
273 &targetlist, "target ", 0, &cmdlist);
274 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
275 }
276
277 /* Stub functions */
278
279 void
280 target_ignore (void)
281 {
282 }
283
284 void
285 target_load (char *arg, int from_tty)
286 {
287 dcache_invalidate (target_dcache);
288 (*current_target.to_load) (arg, from_tty);
289 }
290
291 static int
292 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
293 struct target_ops *t)
294 {
295 errno = EIO; /* Can't read/write this location */
296 return 0; /* No bytes handled */
297 }
298
299 static void
300 tcomplain (void)
301 {
302 error (_("You can't do that when your target is `%s'"),
303 current_target.to_shortname);
304 }
305
306 void
307 noprocess (void)
308 {
309 error (_("You can't do that without a process to debug."));
310 }
311
312 static int
313 nosymbol (char *name, CORE_ADDR *addrp)
314 {
315 return 1; /* Symbol does not exist in target env */
316 }
317
318 static void
319 nosupport_runtime (void)
320 {
321 if (ptid_equal (inferior_ptid, null_ptid))
322 noprocess ();
323 else
324 error (_("No run-time support for this"));
325 }
326
327
328 static void
329 default_terminal_info (char *args, int from_tty)
330 {
331 printf_unfiltered (_("No saved terminal information.\n"));
332 }
333
334 /* This is the default target_create_inferior and target_attach function.
335 If the current target is executing, it asks whether to kill it off.
336 If this function returns without calling error(), it has killed off
337 the target, and the operation should be attempted. */
338
339 static void
340 kill_or_be_killed (int from_tty)
341 {
342 if (target_has_execution)
343 {
344 printf_unfiltered (_("You are already running a program:\n"));
345 target_files_info ();
346 if (query ("Kill it? "))
347 {
348 target_kill ();
349 if (target_has_execution)
350 error (_("Killing the program did not help."));
351 return;
352 }
353 else
354 {
355 error (_("Program not killed."));
356 }
357 }
358 tcomplain ();
359 }
360
361 static void
362 maybe_kill_then_attach (char *args, int from_tty)
363 {
364 kill_or_be_killed (from_tty);
365 target_attach (args, from_tty);
366 }
367
368 static void
369 maybe_kill_then_create_inferior (char *exec, char *args, char **env,
370 int from_tty)
371 {
372 kill_or_be_killed (0);
373 target_create_inferior (exec, args, env, from_tty);
374 }
375
376 /* Go through the target stack from top to bottom, copying over zero
377 entries in current_target, then filling in still empty entries. In
378 effect, we are doing class inheritance through the pushed target
379 vectors.
380
381 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
382 is currently implemented, is that it discards any knowledge of
383 which target an inherited method originally belonged to.
384 Consequently, new new target methods should instead explicitly and
385 locally search the target stack for the target that can handle the
386 request. */
387
388 static void
389 update_current_target (void)
390 {
391 struct target_ops *t;
392
393 /* First, reset current's contents. */
394 memset (&current_target, 0, sizeof (current_target));
395
396 #define INHERIT(FIELD, TARGET) \
397 if (!current_target.FIELD) \
398 current_target.FIELD = (TARGET)->FIELD
399
400 for (t = target_stack; t; t = t->beneath)
401 {
402 INHERIT (to_shortname, t);
403 INHERIT (to_longname, t);
404 INHERIT (to_doc, t);
405 INHERIT (to_open, t);
406 INHERIT (to_close, t);
407 INHERIT (to_attach, t);
408 INHERIT (to_post_attach, t);
409 INHERIT (to_attach_no_wait, t);
410 INHERIT (to_detach, t);
411 /* Do not inherit to_disconnect. */
412 INHERIT (to_resume, t);
413 INHERIT (to_wait, t);
414 INHERIT (to_fetch_registers, t);
415 INHERIT (to_store_registers, t);
416 INHERIT (to_prepare_to_store, t);
417 INHERIT (deprecated_xfer_memory, t);
418 INHERIT (to_files_info, t);
419 INHERIT (to_insert_breakpoint, t);
420 INHERIT (to_remove_breakpoint, t);
421 INHERIT (to_can_use_hw_breakpoint, t);
422 INHERIT (to_insert_hw_breakpoint, t);
423 INHERIT (to_remove_hw_breakpoint, t);
424 INHERIT (to_insert_watchpoint, t);
425 INHERIT (to_remove_watchpoint, t);
426 INHERIT (to_stopped_data_address, t);
427 INHERIT (to_have_steppable_watchpoint, t);
428 INHERIT (to_have_continuable_watchpoint, t);
429 INHERIT (to_stopped_by_watchpoint, t);
430 INHERIT (to_watchpoint_addr_within_range, t);
431 INHERIT (to_region_ok_for_hw_watchpoint, t);
432 INHERIT (to_terminal_init, t);
433 INHERIT (to_terminal_inferior, t);
434 INHERIT (to_terminal_ours_for_output, t);
435 INHERIT (to_terminal_ours, t);
436 INHERIT (to_terminal_save_ours, t);
437 INHERIT (to_terminal_info, t);
438 INHERIT (to_kill, t);
439 INHERIT (to_load, t);
440 INHERIT (to_lookup_symbol, t);
441 INHERIT (to_create_inferior, t);
442 INHERIT (to_post_startup_inferior, t);
443 INHERIT (to_acknowledge_created_inferior, t);
444 INHERIT (to_insert_fork_catchpoint, t);
445 INHERIT (to_remove_fork_catchpoint, t);
446 INHERIT (to_insert_vfork_catchpoint, t);
447 INHERIT (to_remove_vfork_catchpoint, t);
448 /* Do not inherit to_follow_fork. */
449 INHERIT (to_insert_exec_catchpoint, t);
450 INHERIT (to_remove_exec_catchpoint, t);
451 INHERIT (to_has_exited, t);
452 INHERIT (to_mourn_inferior, t);
453 INHERIT (to_can_run, t);
454 INHERIT (to_notice_signals, t);
455 INHERIT (to_thread_alive, t);
456 INHERIT (to_find_new_threads, t);
457 INHERIT (to_pid_to_str, t);
458 INHERIT (to_extra_thread_info, t);
459 INHERIT (to_stop, t);
460 /* Do not inherit to_xfer_partial. */
461 INHERIT (to_rcmd, t);
462 INHERIT (to_pid_to_exec_file, t);
463 INHERIT (to_log_command, t);
464 INHERIT (to_stratum, t);
465 INHERIT (to_has_all_memory, t);
466 INHERIT (to_has_memory, t);
467 INHERIT (to_has_stack, t);
468 INHERIT (to_has_registers, t);
469 INHERIT (to_has_execution, t);
470 INHERIT (to_has_thread_control, t);
471 INHERIT (to_sections, t);
472 INHERIT (to_sections_end, t);
473 INHERIT (to_can_async_p, t);
474 INHERIT (to_is_async_p, t);
475 INHERIT (to_async, t);
476 INHERIT (to_async_mask, t);
477 INHERIT (to_find_memory_regions, t);
478 INHERIT (to_make_corefile_notes, t);
479 INHERIT (to_get_thread_local_address, t);
480 /* Do not inherit to_read_description. */
481 /* Do not inherit to_search_memory. */
482 INHERIT (to_magic, t);
483 /* Do not inherit to_memory_map. */
484 /* Do not inherit to_flash_erase. */
485 /* Do not inherit to_flash_done. */
486 }
487 #undef INHERIT
488
489 /* Clean up a target struct so it no longer has any zero pointers in
490 it. Some entries are defaulted to a method that print an error,
491 others are hard-wired to a standard recursive default. */
492
493 #define de_fault(field, value) \
494 if (!current_target.field) \
495 current_target.field = value
496
497 de_fault (to_open,
498 (void (*) (char *, int))
499 tcomplain);
500 de_fault (to_close,
501 (void (*) (int))
502 target_ignore);
503 de_fault (to_attach,
504 maybe_kill_then_attach);
505 de_fault (to_post_attach,
506 (void (*) (int))
507 target_ignore);
508 de_fault (to_detach,
509 (void (*) (char *, int))
510 target_ignore);
511 de_fault (to_resume,
512 (void (*) (ptid_t, int, enum target_signal))
513 noprocess);
514 de_fault (to_wait,
515 (ptid_t (*) (ptid_t, struct target_waitstatus *))
516 noprocess);
517 de_fault (to_fetch_registers,
518 (void (*) (struct regcache *, int))
519 target_ignore);
520 de_fault (to_store_registers,
521 (void (*) (struct regcache *, int))
522 noprocess);
523 de_fault (to_prepare_to_store,
524 (void (*) (struct regcache *))
525 noprocess);
526 de_fault (deprecated_xfer_memory,
527 (int (*) (CORE_ADDR, gdb_byte *, int, int, struct mem_attrib *, struct target_ops *))
528 nomemory);
529 de_fault (to_files_info,
530 (void (*) (struct target_ops *))
531 target_ignore);
532 de_fault (to_insert_breakpoint,
533 memory_insert_breakpoint);
534 de_fault (to_remove_breakpoint,
535 memory_remove_breakpoint);
536 de_fault (to_can_use_hw_breakpoint,
537 (int (*) (int, int, int))
538 return_zero);
539 de_fault (to_insert_hw_breakpoint,
540 (int (*) (struct bp_target_info *))
541 return_minus_one);
542 de_fault (to_remove_hw_breakpoint,
543 (int (*) (struct bp_target_info *))
544 return_minus_one);
545 de_fault (to_insert_watchpoint,
546 (int (*) (CORE_ADDR, int, int))
547 return_minus_one);
548 de_fault (to_remove_watchpoint,
549 (int (*) (CORE_ADDR, int, int))
550 return_minus_one);
551 de_fault (to_stopped_by_watchpoint,
552 (int (*) (void))
553 return_zero);
554 de_fault (to_stopped_data_address,
555 (int (*) (struct target_ops *, CORE_ADDR *))
556 return_zero);
557 de_fault (to_watchpoint_addr_within_range,
558 default_watchpoint_addr_within_range);
559 de_fault (to_region_ok_for_hw_watchpoint,
560 default_region_ok_for_hw_watchpoint);
561 de_fault (to_terminal_init,
562 (void (*) (void))
563 target_ignore);
564 de_fault (to_terminal_inferior,
565 (void (*) (void))
566 target_ignore);
567 de_fault (to_terminal_ours_for_output,
568 (void (*) (void))
569 target_ignore);
570 de_fault (to_terminal_ours,
571 (void (*) (void))
572 target_ignore);
573 de_fault (to_terminal_save_ours,
574 (void (*) (void))
575 target_ignore);
576 de_fault (to_terminal_info,
577 default_terminal_info);
578 de_fault (to_kill,
579 (void (*) (void))
580 noprocess);
581 de_fault (to_load,
582 (void (*) (char *, int))
583 tcomplain);
584 de_fault (to_lookup_symbol,
585 (int (*) (char *, CORE_ADDR *))
586 nosymbol);
587 de_fault (to_create_inferior,
588 maybe_kill_then_create_inferior);
589 de_fault (to_post_startup_inferior,
590 (void (*) (ptid_t))
591 target_ignore);
592 de_fault (to_acknowledge_created_inferior,
593 (void (*) (int))
594 target_ignore);
595 de_fault (to_insert_fork_catchpoint,
596 (void (*) (int))
597 tcomplain);
598 de_fault (to_remove_fork_catchpoint,
599 (int (*) (int))
600 tcomplain);
601 de_fault (to_insert_vfork_catchpoint,
602 (void (*) (int))
603 tcomplain);
604 de_fault (to_remove_vfork_catchpoint,
605 (int (*) (int))
606 tcomplain);
607 de_fault (to_insert_exec_catchpoint,
608 (void (*) (int))
609 tcomplain);
610 de_fault (to_remove_exec_catchpoint,
611 (int (*) (int))
612 tcomplain);
613 de_fault (to_has_exited,
614 (int (*) (int, int, int *))
615 return_zero);
616 de_fault (to_mourn_inferior,
617 (void (*) (void))
618 noprocess);
619 de_fault (to_can_run,
620 return_zero);
621 de_fault (to_notice_signals,
622 (void (*) (ptid_t))
623 target_ignore);
624 de_fault (to_thread_alive,
625 (int (*) (ptid_t))
626 return_zero);
627 de_fault (to_find_new_threads,
628 (void (*) (void))
629 target_ignore);
630 de_fault (to_extra_thread_info,
631 (char *(*) (struct thread_info *))
632 return_zero);
633 de_fault (to_stop,
634 (void (*) (ptid_t))
635 target_ignore);
636 current_target.to_xfer_partial = current_xfer_partial;
637 de_fault (to_rcmd,
638 (void (*) (char *, struct ui_file *))
639 tcomplain);
640 de_fault (to_pid_to_exec_file,
641 (char *(*) (int))
642 return_zero);
643 de_fault (to_can_async_p,
644 (int (*) (void))
645 return_zero);
646 de_fault (to_is_async_p,
647 (int (*) (void))
648 return_zero);
649 de_fault (to_async,
650 (void (*) (void (*) (enum inferior_event_type, void*), void*))
651 tcomplain);
652 de_fault (to_async_mask,
653 (int (*) (int))
654 return_one);
655 current_target.to_read_description = NULL;
656 #undef de_fault
657
658 /* Finally, position the target-stack beneath the squashed
659 "current_target". That way code looking for a non-inherited
660 target method can quickly and simply find it. */
661 current_target.beneath = target_stack;
662
663 if (targetdebug)
664 setup_target_debug ();
665 }
666
667 /* Mark OPS as a running target. This reverses the effect
668 of target_mark_exited. */
669
670 void
671 target_mark_running (struct target_ops *ops)
672 {
673 struct target_ops *t;
674
675 for (t = target_stack; t != NULL; t = t->beneath)
676 if (t == ops)
677 break;
678 if (t == NULL)
679 internal_error (__FILE__, __LINE__,
680 "Attempted to mark unpushed target \"%s\" as running",
681 ops->to_shortname);
682
683 ops->to_has_execution = 1;
684 ops->to_has_all_memory = 1;
685 ops->to_has_memory = 1;
686 ops->to_has_stack = 1;
687 ops->to_has_registers = 1;
688
689 update_current_target ();
690 }
691
692 /* Mark OPS as a non-running target. This reverses the effect
693 of target_mark_running. */
694
695 void
696 target_mark_exited (struct target_ops *ops)
697 {
698 struct target_ops *t;
699
700 for (t = target_stack; t != NULL; t = t->beneath)
701 if (t == ops)
702 break;
703 if (t == NULL)
704 internal_error (__FILE__, __LINE__,
705 "Attempted to mark unpushed target \"%s\" as running",
706 ops->to_shortname);
707
708 ops->to_has_execution = 0;
709 ops->to_has_all_memory = 0;
710 ops->to_has_memory = 0;
711 ops->to_has_stack = 0;
712 ops->to_has_registers = 0;
713
714 update_current_target ();
715 }
716
717 /* Push a new target type into the stack of the existing target accessors,
718 possibly superseding some of the existing accessors.
719
720 Result is zero if the pushed target ended up on top of the stack,
721 nonzero if at least one target is on top of it.
722
723 Rather than allow an empty stack, we always have the dummy target at
724 the bottom stratum, so we can call the function vectors without
725 checking them. */
726
727 int
728 push_target (struct target_ops *t)
729 {
730 struct target_ops **cur;
731
732 /* Check magic number. If wrong, it probably means someone changed
733 the struct definition, but not all the places that initialize one. */
734 if (t->to_magic != OPS_MAGIC)
735 {
736 fprintf_unfiltered (gdb_stderr,
737 "Magic number of %s target struct wrong\n",
738 t->to_shortname);
739 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
740 }
741
742 /* Find the proper stratum to install this target in. */
743 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
744 {
745 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
746 break;
747 }
748
749 /* If there's already targets at this stratum, remove them. */
750 /* FIXME: cagney/2003-10-15: I think this should be popping all
751 targets to CUR, and not just those at this stratum level. */
752 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
753 {
754 /* There's already something at this stratum level. Close it,
755 and un-hook it from the stack. */
756 struct target_ops *tmp = (*cur);
757 (*cur) = (*cur)->beneath;
758 tmp->beneath = NULL;
759 target_close (tmp, 0);
760 }
761
762 /* We have removed all targets in our stratum, now add the new one. */
763 t->beneath = (*cur);
764 (*cur) = t;
765
766 update_current_target ();
767
768 /* Not on top? */
769 return (t != target_stack);
770 }
771
772 /* Remove a target_ops vector from the stack, wherever it may be.
773 Return how many times it was removed (0 or 1). */
774
775 int
776 unpush_target (struct target_ops *t)
777 {
778 struct target_ops **cur;
779 struct target_ops *tmp;
780
781 /* Look for the specified target. Note that we assume that a target
782 can only occur once in the target stack. */
783
784 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
785 {
786 if ((*cur) == t)
787 break;
788 }
789
790 if ((*cur) == NULL)
791 return 0; /* Didn't find target_ops, quit now */
792
793 /* NOTE: cagney/2003-12-06: In '94 the close call was made
794 unconditional by moving it to before the above check that the
795 target was in the target stack (something about "Change the way
796 pushing and popping of targets work to support target overlays
797 and inheritance"). This doesn't make much sense - only open
798 targets should be closed. */
799 target_close (t, 0);
800
801 /* Unchain the target */
802 tmp = (*cur);
803 (*cur) = (*cur)->beneath;
804 tmp->beneath = NULL;
805
806 update_current_target ();
807
808 return 1;
809 }
810
811 void
812 pop_target (void)
813 {
814 target_close (&current_target, 0); /* Let it clean up */
815 if (unpush_target (target_stack) == 1)
816 return;
817
818 fprintf_unfiltered (gdb_stderr,
819 "pop_target couldn't find target %s\n",
820 current_target.to_shortname);
821 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
822 }
823
824 void
825 pop_all_targets_above (enum strata above_stratum, int quitting)
826 {
827 while ((int) (current_target.to_stratum) > (int) above_stratum)
828 {
829 target_close (&current_target, quitting);
830 if (!unpush_target (target_stack))
831 {
832 fprintf_unfiltered (gdb_stderr,
833 "pop_all_targets couldn't find target %s\n",
834 current_target.to_shortname);
835 internal_error (__FILE__, __LINE__,
836 _("failed internal consistency check"));
837 break;
838 }
839 }
840 }
841
842 void
843 pop_all_targets (int quitting)
844 {
845 pop_all_targets_above (dummy_stratum, quitting);
846 }
847
848 /* Using the objfile specified in OBJFILE, find the address for the
849 current thread's thread-local storage with offset OFFSET. */
850 CORE_ADDR
851 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
852 {
853 volatile CORE_ADDR addr = 0;
854
855 if (target_get_thread_local_address_p ()
856 && gdbarch_fetch_tls_load_module_address_p (current_gdbarch))
857 {
858 ptid_t ptid = inferior_ptid;
859 volatile struct gdb_exception ex;
860
861 TRY_CATCH (ex, RETURN_MASK_ALL)
862 {
863 CORE_ADDR lm_addr;
864
865 /* Fetch the load module address for this objfile. */
866 lm_addr = gdbarch_fetch_tls_load_module_address (current_gdbarch,
867 objfile);
868 /* If it's 0, throw the appropriate exception. */
869 if (lm_addr == 0)
870 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
871 _("TLS load module not found"));
872
873 addr = target_get_thread_local_address (ptid, lm_addr, offset);
874 }
875 /* If an error occurred, print TLS related messages here. Otherwise,
876 throw the error to some higher catcher. */
877 if (ex.reason < 0)
878 {
879 int objfile_is_library = (objfile->flags & OBJF_SHARED);
880
881 switch (ex.error)
882 {
883 case TLS_NO_LIBRARY_SUPPORT_ERROR:
884 error (_("Cannot find thread-local variables in this thread library."));
885 break;
886 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
887 if (objfile_is_library)
888 error (_("Cannot find shared library `%s' in dynamic"
889 " linker's load module list"), objfile->name);
890 else
891 error (_("Cannot find executable file `%s' in dynamic"
892 " linker's load module list"), objfile->name);
893 break;
894 case TLS_NOT_ALLOCATED_YET_ERROR:
895 if (objfile_is_library)
896 error (_("The inferior has not yet allocated storage for"
897 " thread-local variables in\n"
898 "the shared library `%s'\n"
899 "for %s"),
900 objfile->name, target_pid_to_str (ptid));
901 else
902 error (_("The inferior has not yet allocated storage for"
903 " thread-local variables in\n"
904 "the executable `%s'\n"
905 "for %s"),
906 objfile->name, target_pid_to_str (ptid));
907 break;
908 case TLS_GENERIC_ERROR:
909 if (objfile_is_library)
910 error (_("Cannot find thread-local storage for %s, "
911 "shared library %s:\n%s"),
912 target_pid_to_str (ptid),
913 objfile->name, ex.message);
914 else
915 error (_("Cannot find thread-local storage for %s, "
916 "executable file %s:\n%s"),
917 target_pid_to_str (ptid),
918 objfile->name, ex.message);
919 break;
920 default:
921 throw_exception (ex);
922 break;
923 }
924 }
925 }
926 /* It wouldn't be wrong here to try a gdbarch method, too; finding
927 TLS is an ABI-specific thing. But we don't do that yet. */
928 else
929 error (_("Cannot find thread-local variables on this target"));
930
931 return addr;
932 }
933
934 #undef MIN
935 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
936
937 /* target_read_string -- read a null terminated string, up to LEN bytes,
938 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
939 Set *STRING to a pointer to malloc'd memory containing the data; the caller
940 is responsible for freeing it. Return the number of bytes successfully
941 read. */
942
943 int
944 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
945 {
946 int tlen, origlen, offset, i;
947 gdb_byte buf[4];
948 int errcode = 0;
949 char *buffer;
950 int buffer_allocated;
951 char *bufptr;
952 unsigned int nbytes_read = 0;
953
954 gdb_assert (string);
955
956 /* Small for testing. */
957 buffer_allocated = 4;
958 buffer = xmalloc (buffer_allocated);
959 bufptr = buffer;
960
961 origlen = len;
962
963 while (len > 0)
964 {
965 tlen = MIN (len, 4 - (memaddr & 3));
966 offset = memaddr & 3;
967
968 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
969 if (errcode != 0)
970 {
971 /* The transfer request might have crossed the boundary to an
972 unallocated region of memory. Retry the transfer, requesting
973 a single byte. */
974 tlen = 1;
975 offset = 0;
976 errcode = target_read_memory (memaddr, buf, 1);
977 if (errcode != 0)
978 goto done;
979 }
980
981 if (bufptr - buffer + tlen > buffer_allocated)
982 {
983 unsigned int bytes;
984 bytes = bufptr - buffer;
985 buffer_allocated *= 2;
986 buffer = xrealloc (buffer, buffer_allocated);
987 bufptr = buffer + bytes;
988 }
989
990 for (i = 0; i < tlen; i++)
991 {
992 *bufptr++ = buf[i + offset];
993 if (buf[i + offset] == '\000')
994 {
995 nbytes_read += i + 1;
996 goto done;
997 }
998 }
999
1000 memaddr += tlen;
1001 len -= tlen;
1002 nbytes_read += tlen;
1003 }
1004 done:
1005 *string = buffer;
1006 if (errnop != NULL)
1007 *errnop = errcode;
1008 return nbytes_read;
1009 }
1010
1011 /* Find a section containing ADDR. */
1012 struct section_table *
1013 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1014 {
1015 struct section_table *secp;
1016 for (secp = target->to_sections;
1017 secp < target->to_sections_end;
1018 secp++)
1019 {
1020 if (addr >= secp->addr && addr < secp->endaddr)
1021 return secp;
1022 }
1023 return NULL;
1024 }
1025
1026 /* Perform a partial memory transfer. The arguments and return
1027 value are just as for target_xfer_partial. */
1028
1029 static LONGEST
1030 memory_xfer_partial (struct target_ops *ops, void *readbuf, const void *writebuf,
1031 ULONGEST memaddr, LONGEST len)
1032 {
1033 LONGEST res;
1034 int reg_len;
1035 struct mem_region *region;
1036
1037 /* Zero length requests are ok and require no work. */
1038 if (len == 0)
1039 return 0;
1040
1041 /* Try the executable file, if "trust-readonly-sections" is set. */
1042 if (readbuf != NULL && trust_readonly)
1043 {
1044 struct section_table *secp;
1045
1046 secp = target_section_by_addr (ops, memaddr);
1047 if (secp != NULL
1048 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1049 & SEC_READONLY))
1050 return xfer_memory (memaddr, readbuf, len, 0, NULL, ops);
1051 }
1052
1053 /* Likewise for accesses to unmapped overlay sections. */
1054 if (readbuf != NULL && overlay_debugging)
1055 {
1056 asection *section = find_pc_overlay (memaddr);
1057 if (pc_in_unmapped_range (memaddr, section))
1058 return xfer_memory (memaddr, readbuf, len, 0, NULL, ops);
1059 }
1060
1061 /* Try GDB's internal data cache. */
1062 region = lookup_mem_region (memaddr);
1063 /* region->hi == 0 means there's no upper bound. */
1064 if (memaddr + len < region->hi || region->hi == 0)
1065 reg_len = len;
1066 else
1067 reg_len = region->hi - memaddr;
1068
1069 switch (region->attrib.mode)
1070 {
1071 case MEM_RO:
1072 if (writebuf != NULL)
1073 return -1;
1074 break;
1075
1076 case MEM_WO:
1077 if (readbuf != NULL)
1078 return -1;
1079 break;
1080
1081 case MEM_FLASH:
1082 /* We only support writing to flash during "load" for now. */
1083 if (writebuf != NULL)
1084 error (_("Writing to flash memory forbidden in this context"));
1085 break;
1086
1087 case MEM_NONE:
1088 return -1;
1089 }
1090
1091 if (region->attrib.cache)
1092 {
1093 /* FIXME drow/2006-08-09: This call discards OPS, so the raw
1094 memory request will start back at current_target. */
1095 if (readbuf != NULL)
1096 res = dcache_xfer_memory (target_dcache, memaddr, readbuf,
1097 reg_len, 0);
1098 else
1099 /* FIXME drow/2006-08-09: If we're going to preserve const
1100 correctness dcache_xfer_memory should take readbuf and
1101 writebuf. */
1102 res = dcache_xfer_memory (target_dcache, memaddr,
1103 (void *) writebuf,
1104 reg_len, 1);
1105 if (res <= 0)
1106 return -1;
1107 else
1108 {
1109 if (readbuf && !show_memory_breakpoints)
1110 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1111 return res;
1112 }
1113 }
1114
1115 /* If none of those methods found the memory we wanted, fall back
1116 to a target partial transfer. Normally a single call to
1117 to_xfer_partial is enough; if it doesn't recognize an object
1118 it will call the to_xfer_partial of the next target down.
1119 But for memory this won't do. Memory is the only target
1120 object which can be read from more than one valid target.
1121 A core file, for instance, could have some of memory but
1122 delegate other bits to the target below it. So, we must
1123 manually try all targets. */
1124
1125 do
1126 {
1127 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1128 readbuf, writebuf, memaddr, reg_len);
1129 if (res > 0)
1130 break;
1131
1132 /* We want to continue past core files to executables, but not
1133 past a running target's memory. */
1134 if (ops->to_has_all_memory)
1135 break;
1136
1137 ops = ops->beneath;
1138 }
1139 while (ops != NULL);
1140
1141 if (readbuf && !show_memory_breakpoints)
1142 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1143
1144 /* If we still haven't got anything, return the last error. We
1145 give up. */
1146 return res;
1147 }
1148
1149 static void
1150 restore_show_memory_breakpoints (void *arg)
1151 {
1152 show_memory_breakpoints = (uintptr_t) arg;
1153 }
1154
1155 struct cleanup *
1156 make_show_memory_breakpoints_cleanup (int show)
1157 {
1158 int current = show_memory_breakpoints;
1159 show_memory_breakpoints = show;
1160
1161 return make_cleanup (restore_show_memory_breakpoints,
1162 (void *) (uintptr_t) current);
1163 }
1164
1165 static LONGEST
1166 target_xfer_partial (struct target_ops *ops,
1167 enum target_object object, const char *annex,
1168 void *readbuf, const void *writebuf,
1169 ULONGEST offset, LONGEST len)
1170 {
1171 LONGEST retval;
1172
1173 gdb_assert (ops->to_xfer_partial != NULL);
1174
1175 /* If this is a memory transfer, let the memory-specific code
1176 have a look at it instead. Memory transfers are more
1177 complicated. */
1178 if (object == TARGET_OBJECT_MEMORY)
1179 retval = memory_xfer_partial (ops, readbuf, writebuf, offset, len);
1180 else
1181 {
1182 enum target_object raw_object = object;
1183
1184 /* If this is a raw memory transfer, request the normal
1185 memory object from other layers. */
1186 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1187 raw_object = TARGET_OBJECT_MEMORY;
1188
1189 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1190 writebuf, offset, len);
1191 }
1192
1193 if (targetdebug)
1194 {
1195 const unsigned char *myaddr = NULL;
1196
1197 fprintf_unfiltered (gdb_stdlog,
1198 "%s:target_xfer_partial (%d, %s, 0x%lx, 0x%lx, 0x%s, %s) = %s",
1199 ops->to_shortname,
1200 (int) object,
1201 (annex ? annex : "(null)"),
1202 (long) readbuf, (long) writebuf,
1203 paddr_nz (offset), paddr_d (len), paddr_d (retval));
1204
1205 if (readbuf)
1206 myaddr = readbuf;
1207 if (writebuf)
1208 myaddr = writebuf;
1209 if (retval > 0 && myaddr != NULL)
1210 {
1211 int i;
1212
1213 fputs_unfiltered (", bytes =", gdb_stdlog);
1214 for (i = 0; i < retval; i++)
1215 {
1216 if ((((long) &(myaddr[i])) & 0xf) == 0)
1217 {
1218 if (targetdebug < 2 && i > 0)
1219 {
1220 fprintf_unfiltered (gdb_stdlog, " ...");
1221 break;
1222 }
1223 fprintf_unfiltered (gdb_stdlog, "\n");
1224 }
1225
1226 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1227 }
1228 }
1229
1230 fputc_unfiltered ('\n', gdb_stdlog);
1231 }
1232 return retval;
1233 }
1234
1235 /* Read LEN bytes of target memory at address MEMADDR, placing the results in
1236 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1237 if any error occurs.
1238
1239 If an error occurs, no guarantee is made about the contents of the data at
1240 MYADDR. In particular, the caller should not depend upon partial reads
1241 filling the buffer with good data. There is no way for the caller to know
1242 how much good data might have been transfered anyway. Callers that can
1243 deal with partial reads should call target_read (which will retry until
1244 it makes no progress, and then return how much was transferred). */
1245
1246 int
1247 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1248 {
1249 if (target_read (&current_target, TARGET_OBJECT_MEMORY, NULL,
1250 myaddr, memaddr, len) == len)
1251 return 0;
1252 else
1253 return EIO;
1254 }
1255
1256 int
1257 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
1258 {
1259 if (target_write (&current_target, TARGET_OBJECT_MEMORY, NULL,
1260 myaddr, memaddr, len) == len)
1261 return 0;
1262 else
1263 return EIO;
1264 }
1265
1266 /* Fetch the target's memory map. */
1267
1268 VEC(mem_region_s) *
1269 target_memory_map (void)
1270 {
1271 VEC(mem_region_s) *result;
1272 struct mem_region *last_one, *this_one;
1273 int ix;
1274 struct target_ops *t;
1275
1276 if (targetdebug)
1277 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1278
1279 for (t = current_target.beneath; t != NULL; t = t->beneath)
1280 if (t->to_memory_map != NULL)
1281 break;
1282
1283 if (t == NULL)
1284 return NULL;
1285
1286 result = t->to_memory_map (t);
1287 if (result == NULL)
1288 return NULL;
1289
1290 qsort (VEC_address (mem_region_s, result),
1291 VEC_length (mem_region_s, result),
1292 sizeof (struct mem_region), mem_region_cmp);
1293
1294 /* Check that regions do not overlap. Simultaneously assign
1295 a numbering for the "mem" commands to use to refer to
1296 each region. */
1297 last_one = NULL;
1298 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1299 {
1300 this_one->number = ix;
1301
1302 if (last_one && last_one->hi > this_one->lo)
1303 {
1304 warning (_("Overlapping regions in memory map: ignoring"));
1305 VEC_free (mem_region_s, result);
1306 return NULL;
1307 }
1308 last_one = this_one;
1309 }
1310
1311 return result;
1312 }
1313
1314 void
1315 target_flash_erase (ULONGEST address, LONGEST length)
1316 {
1317 struct target_ops *t;
1318
1319 for (t = current_target.beneath; t != NULL; t = t->beneath)
1320 if (t->to_flash_erase != NULL)
1321 {
1322 if (targetdebug)
1323 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1324 paddr (address), phex (length, 0));
1325 t->to_flash_erase (t, address, length);
1326 return;
1327 }
1328
1329 tcomplain ();
1330 }
1331
1332 void
1333 target_flash_done (void)
1334 {
1335 struct target_ops *t;
1336
1337 for (t = current_target.beneath; t != NULL; t = t->beneath)
1338 if (t->to_flash_done != NULL)
1339 {
1340 if (targetdebug)
1341 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1342 t->to_flash_done (t);
1343 return;
1344 }
1345
1346 tcomplain ();
1347 }
1348
1349 #ifndef target_stopped_data_address_p
1350 int
1351 target_stopped_data_address_p (struct target_ops *target)
1352 {
1353 if (target->to_stopped_data_address
1354 == (int (*) (struct target_ops *, CORE_ADDR *)) return_zero)
1355 return 0;
1356 if (target->to_stopped_data_address == debug_to_stopped_data_address
1357 && (debug_target.to_stopped_data_address
1358 == (int (*) (struct target_ops *, CORE_ADDR *)) return_zero))
1359 return 0;
1360 return 1;
1361 }
1362 #endif
1363
1364 static void
1365 show_trust_readonly (struct ui_file *file, int from_tty,
1366 struct cmd_list_element *c, const char *value)
1367 {
1368 fprintf_filtered (file, _("\
1369 Mode for reading from readonly sections is %s.\n"),
1370 value);
1371 }
1372
1373 /* More generic transfers. */
1374
1375 static LONGEST
1376 default_xfer_partial (struct target_ops *ops, enum target_object object,
1377 const char *annex, gdb_byte *readbuf,
1378 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1379 {
1380 if (object == TARGET_OBJECT_MEMORY
1381 && ops->deprecated_xfer_memory != NULL)
1382 /* If available, fall back to the target's
1383 "deprecated_xfer_memory" method. */
1384 {
1385 int xfered = -1;
1386 errno = 0;
1387 if (writebuf != NULL)
1388 {
1389 void *buffer = xmalloc (len);
1390 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1391 memcpy (buffer, writebuf, len);
1392 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1393 1/*write*/, NULL, ops);
1394 do_cleanups (cleanup);
1395 }
1396 if (readbuf != NULL)
1397 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1398 0/*read*/, NULL, ops);
1399 if (xfered > 0)
1400 return xfered;
1401 else if (xfered == 0 && errno == 0)
1402 /* "deprecated_xfer_memory" uses 0, cross checked against
1403 ERRNO as one indication of an error. */
1404 return 0;
1405 else
1406 return -1;
1407 }
1408 else if (ops->beneath != NULL)
1409 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1410 readbuf, writebuf, offset, len);
1411 else
1412 return -1;
1413 }
1414
1415 /* The xfer_partial handler for the topmost target. Unlike the default,
1416 it does not need to handle memory specially; it just passes all
1417 requests down the stack. */
1418
1419 static LONGEST
1420 current_xfer_partial (struct target_ops *ops, enum target_object object,
1421 const char *annex, gdb_byte *readbuf,
1422 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1423 {
1424 if (ops->beneath != NULL)
1425 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1426 readbuf, writebuf, offset, len);
1427 else
1428 return -1;
1429 }
1430
1431 /* Target vector read/write partial wrapper functions.
1432
1433 NOTE: cagney/2003-10-21: I wonder if having "to_xfer_partial
1434 (inbuf, outbuf)", instead of separate read/write methods, make life
1435 easier. */
1436
1437 static LONGEST
1438 target_read_partial (struct target_ops *ops,
1439 enum target_object object,
1440 const char *annex, gdb_byte *buf,
1441 ULONGEST offset, LONGEST len)
1442 {
1443 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1444 }
1445
1446 static LONGEST
1447 target_write_partial (struct target_ops *ops,
1448 enum target_object object,
1449 const char *annex, const gdb_byte *buf,
1450 ULONGEST offset, LONGEST len)
1451 {
1452 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1453 }
1454
1455 /* Wrappers to perform the full transfer. */
1456 LONGEST
1457 target_read (struct target_ops *ops,
1458 enum target_object object,
1459 const char *annex, gdb_byte *buf,
1460 ULONGEST offset, LONGEST len)
1461 {
1462 LONGEST xfered = 0;
1463 while (xfered < len)
1464 {
1465 LONGEST xfer = target_read_partial (ops, object, annex,
1466 (gdb_byte *) buf + xfered,
1467 offset + xfered, len - xfered);
1468 /* Call an observer, notifying them of the xfer progress? */
1469 if (xfer == 0)
1470 return xfered;
1471 if (xfer < 0)
1472 return -1;
1473 xfered += xfer;
1474 QUIT;
1475 }
1476 return len;
1477 }
1478
1479 LONGEST
1480 target_read_until_error (struct target_ops *ops,
1481 enum target_object object,
1482 const char *annex, gdb_byte *buf,
1483 ULONGEST offset, LONGEST len)
1484 {
1485 LONGEST xfered = 0;
1486 while (xfered < len)
1487 {
1488 LONGEST xfer = target_read_partial (ops, object, annex,
1489 (gdb_byte *) buf + xfered,
1490 offset + xfered, len - xfered);
1491 /* Call an observer, notifying them of the xfer progress? */
1492 if (xfer == 0)
1493 return xfered;
1494 if (xfer < 0)
1495 {
1496 /* We've got an error. Try to read in smaller blocks. */
1497 ULONGEST start = offset + xfered;
1498 ULONGEST remaining = len - xfered;
1499 ULONGEST half;
1500
1501 /* If an attempt was made to read a random memory address,
1502 it's likely that the very first byte is not accessible.
1503 Try reading the first byte, to avoid doing log N tries
1504 below. */
1505 xfer = target_read_partial (ops, object, annex,
1506 (gdb_byte *) buf + xfered, start, 1);
1507 if (xfer <= 0)
1508 return xfered;
1509 start += 1;
1510 remaining -= 1;
1511 half = remaining/2;
1512
1513 while (half > 0)
1514 {
1515 xfer = target_read_partial (ops, object, annex,
1516 (gdb_byte *) buf + xfered,
1517 start, half);
1518 if (xfer == 0)
1519 return xfered;
1520 if (xfer < 0)
1521 {
1522 remaining = half;
1523 }
1524 else
1525 {
1526 /* We have successfully read the first half. So, the
1527 error must be in the second half. Adjust start and
1528 remaining to point at the second half. */
1529 xfered += xfer;
1530 start += xfer;
1531 remaining -= xfer;
1532 }
1533 half = remaining/2;
1534 }
1535
1536 return xfered;
1537 }
1538 xfered += xfer;
1539 QUIT;
1540 }
1541 return len;
1542 }
1543
1544
1545 /* An alternative to target_write with progress callbacks. */
1546
1547 LONGEST
1548 target_write_with_progress (struct target_ops *ops,
1549 enum target_object object,
1550 const char *annex, const gdb_byte *buf,
1551 ULONGEST offset, LONGEST len,
1552 void (*progress) (ULONGEST, void *), void *baton)
1553 {
1554 LONGEST xfered = 0;
1555
1556 /* Give the progress callback a chance to set up. */
1557 if (progress)
1558 (*progress) (0, baton);
1559
1560 while (xfered < len)
1561 {
1562 LONGEST xfer = target_write_partial (ops, object, annex,
1563 (gdb_byte *) buf + xfered,
1564 offset + xfered, len - xfered);
1565
1566 if (xfer == 0)
1567 return xfered;
1568 if (xfer < 0)
1569 return -1;
1570
1571 if (progress)
1572 (*progress) (xfer, baton);
1573
1574 xfered += xfer;
1575 QUIT;
1576 }
1577 return len;
1578 }
1579
1580 LONGEST
1581 target_write (struct target_ops *ops,
1582 enum target_object object,
1583 const char *annex, const gdb_byte *buf,
1584 ULONGEST offset, LONGEST len)
1585 {
1586 return target_write_with_progress (ops, object, annex, buf, offset, len,
1587 NULL, NULL);
1588 }
1589
1590 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1591 the size of the transferred data. PADDING additional bytes are
1592 available in *BUF_P. This is a helper function for
1593 target_read_alloc; see the declaration of that function for more
1594 information. */
1595
1596 static LONGEST
1597 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
1598 const char *annex, gdb_byte **buf_p, int padding)
1599 {
1600 size_t buf_alloc, buf_pos;
1601 gdb_byte *buf;
1602 LONGEST n;
1603
1604 /* This function does not have a length parameter; it reads the
1605 entire OBJECT). Also, it doesn't support objects fetched partly
1606 from one target and partly from another (in a different stratum,
1607 e.g. a core file and an executable). Both reasons make it
1608 unsuitable for reading memory. */
1609 gdb_assert (object != TARGET_OBJECT_MEMORY);
1610
1611 /* Start by reading up to 4K at a time. The target will throttle
1612 this number down if necessary. */
1613 buf_alloc = 4096;
1614 buf = xmalloc (buf_alloc);
1615 buf_pos = 0;
1616 while (1)
1617 {
1618 n = target_read_partial (ops, object, annex, &buf[buf_pos],
1619 buf_pos, buf_alloc - buf_pos - padding);
1620 if (n < 0)
1621 {
1622 /* An error occurred. */
1623 xfree (buf);
1624 return -1;
1625 }
1626 else if (n == 0)
1627 {
1628 /* Read all there was. */
1629 if (buf_pos == 0)
1630 xfree (buf);
1631 else
1632 *buf_p = buf;
1633 return buf_pos;
1634 }
1635
1636 buf_pos += n;
1637
1638 /* If the buffer is filling up, expand it. */
1639 if (buf_alloc < buf_pos * 2)
1640 {
1641 buf_alloc *= 2;
1642 buf = xrealloc (buf, buf_alloc);
1643 }
1644
1645 QUIT;
1646 }
1647 }
1648
1649 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1650 the size of the transferred data. See the declaration in "target.h"
1651 function for more information about the return value. */
1652
1653 LONGEST
1654 target_read_alloc (struct target_ops *ops, enum target_object object,
1655 const char *annex, gdb_byte **buf_p)
1656 {
1657 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
1658 }
1659
1660 /* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
1661 returned as a string, allocated using xmalloc. If an error occurs
1662 or the transfer is unsupported, NULL is returned. Empty objects
1663 are returned as allocated but empty strings. A warning is issued
1664 if the result contains any embedded NUL bytes. */
1665
1666 char *
1667 target_read_stralloc (struct target_ops *ops, enum target_object object,
1668 const char *annex)
1669 {
1670 gdb_byte *buffer;
1671 LONGEST transferred;
1672
1673 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
1674
1675 if (transferred < 0)
1676 return NULL;
1677
1678 if (transferred == 0)
1679 return xstrdup ("");
1680
1681 buffer[transferred] = 0;
1682 if (strlen (buffer) < transferred)
1683 warning (_("target object %d, annex %s, "
1684 "contained unexpected null characters"),
1685 (int) object, annex ? annex : "(none)");
1686
1687 return (char *) buffer;
1688 }
1689
1690 /* Memory transfer methods. */
1691
1692 void
1693 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
1694 LONGEST len)
1695 {
1696 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL, buf, addr, len)
1697 != len)
1698 memory_error (EIO, addr);
1699 }
1700
1701 ULONGEST
1702 get_target_memory_unsigned (struct target_ops *ops,
1703 CORE_ADDR addr, int len)
1704 {
1705 gdb_byte buf[sizeof (ULONGEST)];
1706
1707 gdb_assert (len <= sizeof (buf));
1708 get_target_memory (ops, addr, buf, len);
1709 return extract_unsigned_integer (buf, len);
1710 }
1711
1712 static void
1713 target_info (char *args, int from_tty)
1714 {
1715 struct target_ops *t;
1716 int has_all_mem = 0;
1717
1718 if (symfile_objfile != NULL)
1719 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
1720
1721 for (t = target_stack; t != NULL; t = t->beneath)
1722 {
1723 if (!t->to_has_memory)
1724 continue;
1725
1726 if ((int) (t->to_stratum) <= (int) dummy_stratum)
1727 continue;
1728 if (has_all_mem)
1729 printf_unfiltered (_("\tWhile running this, GDB does not access memory from...\n"));
1730 printf_unfiltered ("%s:\n", t->to_longname);
1731 (t->to_files_info) (t);
1732 has_all_mem = t->to_has_all_memory;
1733 }
1734 }
1735
1736 /* This function is called before any new inferior is created, e.g.
1737 by running a program, attaching, or connecting to a target.
1738 It cleans up any state from previous invocations which might
1739 change between runs. This is a subset of what target_preopen
1740 resets (things which might change between targets). */
1741
1742 void
1743 target_pre_inferior (int from_tty)
1744 {
1745 /* Clear out solib state. Otherwise the solib state of the previous
1746 inferior might have survived and is entirely wrong for the new
1747 target. This has been observed on GNU/Linux using glibc 2.3. How
1748 to reproduce:
1749
1750 bash$ ./foo&
1751 [1] 4711
1752 bash$ ./foo&
1753 [1] 4712
1754 bash$ gdb ./foo
1755 [...]
1756 (gdb) attach 4711
1757 (gdb) detach
1758 (gdb) attach 4712
1759 Cannot access memory at address 0xdeadbeef
1760 */
1761 no_shared_libraries (NULL, from_tty);
1762
1763 invalidate_target_mem_regions ();
1764
1765 target_clear_description ();
1766 }
1767
1768 /* This is to be called by the open routine before it does
1769 anything. */
1770
1771 void
1772 target_preopen (int from_tty)
1773 {
1774 dont_repeat ();
1775
1776 if (target_has_execution)
1777 {
1778 if (!from_tty
1779 || query (_("A program is being debugged already. Kill it? ")))
1780 target_kill ();
1781 else
1782 error (_("Program not killed."));
1783 }
1784
1785 /* Calling target_kill may remove the target from the stack. But if
1786 it doesn't (which seems like a win for UDI), remove it now. */
1787 /* Leave the exec target, though. The user may be switching from a
1788 live process to a core of the same program. */
1789 pop_all_targets_above (file_stratum, 0);
1790
1791 target_pre_inferior (from_tty);
1792 }
1793
1794 /* Detach a target after doing deferred register stores. */
1795
1796 void
1797 target_detach (char *args, int from_tty)
1798 {
1799 /* If we're in breakpoints-always-inserted mode, have to
1800 remove them before detaching. */
1801 remove_breakpoints ();
1802
1803 (current_target.to_detach) (args, from_tty);
1804 }
1805
1806 void
1807 target_disconnect (char *args, int from_tty)
1808 {
1809 struct target_ops *t;
1810
1811 /* If we're in breakpoints-always-inserted mode, have to
1812 remove them before disconnecting. */
1813 remove_breakpoints ();
1814
1815 for (t = current_target.beneath; t != NULL; t = t->beneath)
1816 if (t->to_disconnect != NULL)
1817 {
1818 if (targetdebug)
1819 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
1820 args, from_tty);
1821 t->to_disconnect (t, args, from_tty);
1822 return;
1823 }
1824
1825 tcomplain ();
1826 }
1827
1828 void
1829 target_resume (ptid_t ptid, int step, enum target_signal signal)
1830 {
1831 dcache_invalidate (target_dcache);
1832 (*current_target.to_resume) (ptid, step, signal);
1833 set_executing (ptid, 1);
1834 set_running (ptid, 1);
1835 }
1836 /* Look through the list of possible targets for a target that can
1837 follow forks. */
1838
1839 int
1840 target_follow_fork (int follow_child)
1841 {
1842 struct target_ops *t;
1843
1844 for (t = current_target.beneath; t != NULL; t = t->beneath)
1845 {
1846 if (t->to_follow_fork != NULL)
1847 {
1848 int retval = t->to_follow_fork (t, follow_child);
1849 if (targetdebug)
1850 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
1851 follow_child, retval);
1852 return retval;
1853 }
1854 }
1855
1856 /* Some target returned a fork event, but did not know how to follow it. */
1857 internal_error (__FILE__, __LINE__,
1858 "could not find a target to follow fork");
1859 }
1860
1861 /* Look for a target which can describe architectural features, starting
1862 from TARGET. If we find one, return its description. */
1863
1864 const struct target_desc *
1865 target_read_description (struct target_ops *target)
1866 {
1867 struct target_ops *t;
1868
1869 for (t = target; t != NULL; t = t->beneath)
1870 if (t->to_read_description != NULL)
1871 {
1872 const struct target_desc *tdesc;
1873
1874 tdesc = t->to_read_description (t);
1875 if (tdesc)
1876 return tdesc;
1877 }
1878
1879 return NULL;
1880 }
1881
1882 /* The default implementation of to_search_memory.
1883 This implements a basic search of memory, reading target memory and
1884 performing the search here (as opposed to performing the search in on the
1885 target side with, for example, gdbserver). */
1886
1887 int
1888 simple_search_memory (struct target_ops *ops,
1889 CORE_ADDR start_addr, ULONGEST search_space_len,
1890 const gdb_byte *pattern, ULONGEST pattern_len,
1891 CORE_ADDR *found_addrp)
1892 {
1893 /* NOTE: also defined in find.c testcase. */
1894 #define SEARCH_CHUNK_SIZE 16000
1895 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
1896 /* Buffer to hold memory contents for searching. */
1897 gdb_byte *search_buf;
1898 unsigned search_buf_size;
1899 struct cleanup *old_cleanups;
1900
1901 search_buf_size = chunk_size + pattern_len - 1;
1902
1903 /* No point in trying to allocate a buffer larger than the search space. */
1904 if (search_space_len < search_buf_size)
1905 search_buf_size = search_space_len;
1906
1907 search_buf = malloc (search_buf_size);
1908 if (search_buf == NULL)
1909 error (_("Unable to allocate memory to perform the search."));
1910 old_cleanups = make_cleanup (free_current_contents, &search_buf);
1911
1912 /* Prime the search buffer. */
1913
1914 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
1915 search_buf, start_addr, search_buf_size) != search_buf_size)
1916 {
1917 warning (_("Unable to access target memory at %s, halting search."),
1918 hex_string (start_addr));
1919 do_cleanups (old_cleanups);
1920 return -1;
1921 }
1922
1923 /* Perform the search.
1924
1925 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
1926 When we've scanned N bytes we copy the trailing bytes to the start and
1927 read in another N bytes. */
1928
1929 while (search_space_len >= pattern_len)
1930 {
1931 gdb_byte *found_ptr;
1932 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
1933
1934 found_ptr = memmem (search_buf, nr_search_bytes,
1935 pattern, pattern_len);
1936
1937 if (found_ptr != NULL)
1938 {
1939 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
1940 *found_addrp = found_addr;
1941 do_cleanups (old_cleanups);
1942 return 1;
1943 }
1944
1945 /* Not found in this chunk, skip to next chunk. */
1946
1947 /* Don't let search_space_len wrap here, it's unsigned. */
1948 if (search_space_len >= chunk_size)
1949 search_space_len -= chunk_size;
1950 else
1951 search_space_len = 0;
1952
1953 if (search_space_len >= pattern_len)
1954 {
1955 unsigned keep_len = search_buf_size - chunk_size;
1956 CORE_ADDR read_addr = start_addr + keep_len;
1957 int nr_to_read;
1958
1959 /* Copy the trailing part of the previous iteration to the front
1960 of the buffer for the next iteration. */
1961 gdb_assert (keep_len == pattern_len - 1);
1962 memcpy (search_buf, search_buf + chunk_size, keep_len);
1963
1964 nr_to_read = min (search_space_len - keep_len, chunk_size);
1965
1966 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
1967 search_buf + keep_len, read_addr,
1968 nr_to_read) != nr_to_read)
1969 {
1970 warning (_("Unable to access target memory at %s, halting search."),
1971 hex_string (read_addr));
1972 do_cleanups (old_cleanups);
1973 return -1;
1974 }
1975
1976 start_addr += chunk_size;
1977 }
1978 }
1979
1980 /* Not found. */
1981
1982 do_cleanups (old_cleanups);
1983 return 0;
1984 }
1985
1986 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
1987 sequence of bytes in PATTERN with length PATTERN_LEN.
1988
1989 The result is 1 if found, 0 if not found, and -1 if there was an error
1990 requiring halting of the search (e.g. memory read error).
1991 If the pattern is found the address is recorded in FOUND_ADDRP. */
1992
1993 int
1994 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
1995 const gdb_byte *pattern, ULONGEST pattern_len,
1996 CORE_ADDR *found_addrp)
1997 {
1998 struct target_ops *t;
1999 int found;
2000
2001 /* We don't use INHERIT to set current_target.to_search_memory,
2002 so we have to scan the target stack and handle targetdebug
2003 ourselves. */
2004
2005 if (targetdebug)
2006 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2007 hex_string (start_addr));
2008
2009 for (t = current_target.beneath; t != NULL; t = t->beneath)
2010 if (t->to_search_memory != NULL)
2011 break;
2012
2013 if (t != NULL)
2014 {
2015 found = t->to_search_memory (t, start_addr, search_space_len,
2016 pattern, pattern_len, found_addrp);
2017 }
2018 else
2019 {
2020 /* If a special version of to_search_memory isn't available, use the
2021 simple version. */
2022 found = simple_search_memory (&current_target,
2023 start_addr, search_space_len,
2024 pattern, pattern_len, found_addrp);
2025 }
2026
2027 if (targetdebug)
2028 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
2029
2030 return found;
2031 }
2032
2033 /* Look through the currently pushed targets. If none of them will
2034 be able to restart the currently running process, issue an error
2035 message. */
2036
2037 void
2038 target_require_runnable (void)
2039 {
2040 struct target_ops *t;
2041
2042 for (t = target_stack; t != NULL; t = t->beneath)
2043 {
2044 /* If this target knows how to create a new program, then
2045 assume we will still be able to after killing the current
2046 one. Either killing and mourning will not pop T, or else
2047 find_default_run_target will find it again. */
2048 if (t->to_create_inferior != NULL)
2049 return;
2050
2051 /* Do not worry about thread_stratum targets that can not
2052 create inferiors. Assume they will be pushed again if
2053 necessary, and continue to the process_stratum. */
2054 if (t->to_stratum == thread_stratum)
2055 continue;
2056
2057 error (_("\
2058 The \"%s\" target does not support \"run\". Try \"help target\" or \"continue\"."),
2059 t->to_shortname);
2060 }
2061
2062 /* This function is only called if the target is running. In that
2063 case there should have been a process_stratum target and it
2064 should either know how to create inferiors, or not... */
2065 internal_error (__FILE__, __LINE__, "No targets found");
2066 }
2067
2068 /* Look through the list of possible targets for a target that can
2069 execute a run or attach command without any other data. This is
2070 used to locate the default process stratum.
2071
2072 If DO_MESG is not NULL, the result is always valid (error() is
2073 called for errors); else, return NULL on error. */
2074
2075 static struct target_ops *
2076 find_default_run_target (char *do_mesg)
2077 {
2078 struct target_ops **t;
2079 struct target_ops *runable = NULL;
2080 int count;
2081
2082 count = 0;
2083
2084 for (t = target_structs; t < target_structs + target_struct_size;
2085 ++t)
2086 {
2087 if ((*t)->to_can_run && target_can_run (*t))
2088 {
2089 runable = *t;
2090 ++count;
2091 }
2092 }
2093
2094 if (count != 1)
2095 {
2096 if (do_mesg)
2097 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2098 else
2099 return NULL;
2100 }
2101
2102 return runable;
2103 }
2104
2105 void
2106 find_default_attach (char *args, int from_tty)
2107 {
2108 struct target_ops *t;
2109
2110 t = find_default_run_target ("attach");
2111 (t->to_attach) (args, from_tty);
2112 return;
2113 }
2114
2115 void
2116 find_default_create_inferior (char *exec_file, char *allargs, char **env,
2117 int from_tty)
2118 {
2119 struct target_ops *t;
2120
2121 t = find_default_run_target ("run");
2122 (t->to_create_inferior) (exec_file, allargs, env, from_tty);
2123 return;
2124 }
2125
2126 int
2127 find_default_can_async_p (void)
2128 {
2129 struct target_ops *t;
2130
2131 /* This may be called before the target is pushed on the stack;
2132 look for the default process stratum. If there's none, gdb isn't
2133 configured with a native debugger, and target remote isn't
2134 connected yet. */
2135 t = find_default_run_target (NULL);
2136 if (t && t->to_can_async_p)
2137 return (t->to_can_async_p) ();
2138 return 0;
2139 }
2140
2141 int
2142 find_default_is_async_p (void)
2143 {
2144 struct target_ops *t;
2145
2146 /* This may be called before the target is pushed on the stack;
2147 look for the default process stratum. If there's none, gdb isn't
2148 configured with a native debugger, and target remote isn't
2149 connected yet. */
2150 t = find_default_run_target (NULL);
2151 if (t && t->to_is_async_p)
2152 return (t->to_is_async_p) ();
2153 return 0;
2154 }
2155
2156 static int
2157 default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2158 {
2159 return (len <= TYPE_LENGTH (builtin_type_void_data_ptr));
2160 }
2161
2162 static int
2163 default_watchpoint_addr_within_range (struct target_ops *target,
2164 CORE_ADDR addr,
2165 CORE_ADDR start, int length)
2166 {
2167 return addr >= start && addr < start + length;
2168 }
2169
2170 static int
2171 return_zero (void)
2172 {
2173 return 0;
2174 }
2175
2176 static int
2177 return_one (void)
2178 {
2179 return 1;
2180 }
2181
2182 static int
2183 return_minus_one (void)
2184 {
2185 return -1;
2186 }
2187
2188 /*
2189 * Resize the to_sections pointer. Also make sure that anyone that
2190 * was holding on to an old value of it gets updated.
2191 * Returns the old size.
2192 */
2193
2194 int
2195 target_resize_to_sections (struct target_ops *target, int num_added)
2196 {
2197 struct target_ops **t;
2198 struct section_table *old_value;
2199 int old_count;
2200
2201 old_value = target->to_sections;
2202
2203 if (target->to_sections)
2204 {
2205 old_count = target->to_sections_end - target->to_sections;
2206 target->to_sections = (struct section_table *)
2207 xrealloc ((char *) target->to_sections,
2208 (sizeof (struct section_table)) * (num_added + old_count));
2209 }
2210 else
2211 {
2212 old_count = 0;
2213 target->to_sections = (struct section_table *)
2214 xmalloc ((sizeof (struct section_table)) * num_added);
2215 }
2216 target->to_sections_end = target->to_sections + (num_added + old_count);
2217
2218 /* Check to see if anyone else was pointing to this structure.
2219 If old_value was null, then no one was. */
2220
2221 if (old_value)
2222 {
2223 for (t = target_structs; t < target_structs + target_struct_size;
2224 ++t)
2225 {
2226 if ((*t)->to_sections == old_value)
2227 {
2228 (*t)->to_sections = target->to_sections;
2229 (*t)->to_sections_end = target->to_sections_end;
2230 }
2231 }
2232 /* There is a flattened view of the target stack in current_target,
2233 so its to_sections pointer might also need updating. */
2234 if (current_target.to_sections == old_value)
2235 {
2236 current_target.to_sections = target->to_sections;
2237 current_target.to_sections_end = target->to_sections_end;
2238 }
2239 }
2240
2241 return old_count;
2242
2243 }
2244
2245 /* Remove all target sections taken from ABFD.
2246
2247 Scan the current target stack for targets whose section tables
2248 refer to sections from BFD, and remove those sections. We use this
2249 when we notice that the inferior has unloaded a shared object, for
2250 example. */
2251 void
2252 remove_target_sections (bfd *abfd)
2253 {
2254 struct target_ops **t;
2255
2256 for (t = target_structs; t < target_structs + target_struct_size; t++)
2257 {
2258 struct section_table *src, *dest;
2259
2260 dest = (*t)->to_sections;
2261 for (src = (*t)->to_sections; src < (*t)->to_sections_end; src++)
2262 if (src->bfd != abfd)
2263 {
2264 /* Keep this section. */
2265 if (dest < src) *dest = *src;
2266 dest++;
2267 }
2268
2269 /* If we've dropped any sections, resize the section table. */
2270 if (dest < src)
2271 target_resize_to_sections (*t, dest - src);
2272 }
2273 }
2274
2275
2276
2277
2278 /* Find a single runnable target in the stack and return it. If for
2279 some reason there is more than one, return NULL. */
2280
2281 struct target_ops *
2282 find_run_target (void)
2283 {
2284 struct target_ops **t;
2285 struct target_ops *runable = NULL;
2286 int count;
2287
2288 count = 0;
2289
2290 for (t = target_structs; t < target_structs + target_struct_size; ++t)
2291 {
2292 if ((*t)->to_can_run && target_can_run (*t))
2293 {
2294 runable = *t;
2295 ++count;
2296 }
2297 }
2298
2299 return (count == 1 ? runable : NULL);
2300 }
2301
2302 /* Find a single core_stratum target in the list of targets and return it.
2303 If for some reason there is more than one, return NULL. */
2304
2305 struct target_ops *
2306 find_core_target (void)
2307 {
2308 struct target_ops **t;
2309 struct target_ops *runable = NULL;
2310 int count;
2311
2312 count = 0;
2313
2314 for (t = target_structs; t < target_structs + target_struct_size;
2315 ++t)
2316 {
2317 if ((*t)->to_stratum == core_stratum)
2318 {
2319 runable = *t;
2320 ++count;
2321 }
2322 }
2323
2324 return (count == 1 ? runable : NULL);
2325 }
2326
2327 /*
2328 * Find the next target down the stack from the specified target.
2329 */
2330
2331 struct target_ops *
2332 find_target_beneath (struct target_ops *t)
2333 {
2334 return t->beneath;
2335 }
2336
2337 \f
2338 /* The inferior process has died. Long live the inferior! */
2339
2340 void
2341 generic_mourn_inferior (void)
2342 {
2343 extern int show_breakpoint_hit_counts;
2344
2345 inferior_ptid = null_ptid;
2346 attach_flag = 0;
2347 breakpoint_init_inferior (inf_exited);
2348 registers_changed ();
2349
2350 reopen_exec_file ();
2351 reinit_frame_cache ();
2352
2353 /* It is confusing to the user for ignore counts to stick around
2354 from previous runs of the inferior. So clear them. */
2355 /* However, it is more confusing for the ignore counts to disappear when
2356 using hit counts. So don't clear them if we're counting hits. */
2357 if (!show_breakpoint_hit_counts)
2358 breakpoint_clear_ignore_counts ();
2359
2360 if (deprecated_detach_hook)
2361 deprecated_detach_hook ();
2362 }
2363 \f
2364 /* Helper function for child_wait and the derivatives of child_wait.
2365 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2366 translation of that in OURSTATUS. */
2367 void
2368 store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
2369 {
2370 if (WIFEXITED (hoststatus))
2371 {
2372 ourstatus->kind = TARGET_WAITKIND_EXITED;
2373 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2374 }
2375 else if (!WIFSTOPPED (hoststatus))
2376 {
2377 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2378 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2379 }
2380 else
2381 {
2382 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2383 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2384 }
2385 }
2386 \f
2387 /* Returns zero to leave the inferior alone, one to interrupt it. */
2388 int (*target_activity_function) (void);
2389 int target_activity_fd;
2390 \f
2391 /* Convert a normal process ID to a string. Returns the string in a
2392 static buffer. */
2393
2394 char *
2395 normal_pid_to_str (ptid_t ptid)
2396 {
2397 static char buf[32];
2398
2399 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
2400 return buf;
2401 }
2402
2403 /* Error-catcher for target_find_memory_regions */
2404 static int dummy_find_memory_regions (int (*ignore1) (), void *ignore2)
2405 {
2406 error (_("No target."));
2407 return 0;
2408 }
2409
2410 /* Error-catcher for target_make_corefile_notes */
2411 static char * dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
2412 {
2413 error (_("No target."));
2414 return NULL;
2415 }
2416
2417 /* Set up the handful of non-empty slots needed by the dummy target
2418 vector. */
2419
2420 static void
2421 init_dummy_target (void)
2422 {
2423 dummy_target.to_shortname = "None";
2424 dummy_target.to_longname = "None";
2425 dummy_target.to_doc = "";
2426 dummy_target.to_attach = find_default_attach;
2427 dummy_target.to_create_inferior = find_default_create_inferior;
2428 dummy_target.to_can_async_p = find_default_can_async_p;
2429 dummy_target.to_is_async_p = find_default_is_async_p;
2430 dummy_target.to_pid_to_str = normal_pid_to_str;
2431 dummy_target.to_stratum = dummy_stratum;
2432 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
2433 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
2434 dummy_target.to_xfer_partial = default_xfer_partial;
2435 dummy_target.to_magic = OPS_MAGIC;
2436 }
2437 \f
2438 static void
2439 debug_to_open (char *args, int from_tty)
2440 {
2441 debug_target.to_open (args, from_tty);
2442
2443 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
2444 }
2445
2446 static void
2447 debug_to_close (int quitting)
2448 {
2449 target_close (&debug_target, quitting);
2450 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
2451 }
2452
2453 void
2454 target_close (struct target_ops *targ, int quitting)
2455 {
2456 if (targ->to_xclose != NULL)
2457 targ->to_xclose (targ, quitting);
2458 else if (targ->to_close != NULL)
2459 targ->to_close (quitting);
2460 }
2461
2462 static void
2463 debug_to_attach (char *args, int from_tty)
2464 {
2465 debug_target.to_attach (args, from_tty);
2466
2467 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n", args, from_tty);
2468 }
2469
2470
2471 static void
2472 debug_to_post_attach (int pid)
2473 {
2474 debug_target.to_post_attach (pid);
2475
2476 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
2477 }
2478
2479 static void
2480 debug_to_detach (char *args, int from_tty)
2481 {
2482 debug_target.to_detach (args, from_tty);
2483
2484 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n", args, from_tty);
2485 }
2486
2487 static void
2488 debug_to_resume (ptid_t ptid, int step, enum target_signal siggnal)
2489 {
2490 debug_target.to_resume (ptid, step, siggnal);
2491
2492 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n", PIDGET (ptid),
2493 step ? "step" : "continue",
2494 target_signal_to_name (siggnal));
2495 }
2496
2497 static ptid_t
2498 debug_to_wait (ptid_t ptid, struct target_waitstatus *status)
2499 {
2500 ptid_t retval;
2501
2502 retval = debug_target.to_wait (ptid, status);
2503
2504 fprintf_unfiltered (gdb_stdlog,
2505 "target_wait (%d, status) = %d, ", PIDGET (ptid),
2506 PIDGET (retval));
2507 fprintf_unfiltered (gdb_stdlog, "status->kind = ");
2508 switch (status->kind)
2509 {
2510 case TARGET_WAITKIND_EXITED:
2511 fprintf_unfiltered (gdb_stdlog, "exited, status = %d\n",
2512 status->value.integer);
2513 break;
2514 case TARGET_WAITKIND_STOPPED:
2515 fprintf_unfiltered (gdb_stdlog, "stopped, signal = %s\n",
2516 target_signal_to_name (status->value.sig));
2517 break;
2518 case TARGET_WAITKIND_SIGNALLED:
2519 fprintf_unfiltered (gdb_stdlog, "signalled, signal = %s\n",
2520 target_signal_to_name (status->value.sig));
2521 break;
2522 case TARGET_WAITKIND_LOADED:
2523 fprintf_unfiltered (gdb_stdlog, "loaded\n");
2524 break;
2525 case TARGET_WAITKIND_FORKED:
2526 fprintf_unfiltered (gdb_stdlog, "forked\n");
2527 break;
2528 case TARGET_WAITKIND_VFORKED:
2529 fprintf_unfiltered (gdb_stdlog, "vforked\n");
2530 break;
2531 case TARGET_WAITKIND_EXECD:
2532 fprintf_unfiltered (gdb_stdlog, "execd\n");
2533 break;
2534 case TARGET_WAITKIND_SPURIOUS:
2535 fprintf_unfiltered (gdb_stdlog, "spurious\n");
2536 break;
2537 default:
2538 fprintf_unfiltered (gdb_stdlog, "unknown???\n");
2539 break;
2540 }
2541
2542 return retval;
2543 }
2544
2545 static void
2546 debug_print_register (const char * func,
2547 struct regcache *regcache, int regno)
2548 {
2549 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2550 fprintf_unfiltered (gdb_stdlog, "%s ", func);
2551 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
2552 + gdbarch_num_pseudo_regs (gdbarch)
2553 && gdbarch_register_name (gdbarch, regno) != NULL
2554 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
2555 fprintf_unfiltered (gdb_stdlog, "(%s)",
2556 gdbarch_register_name (gdbarch, regno));
2557 else
2558 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
2559 if (regno >= 0)
2560 {
2561 int i, size = register_size (gdbarch, regno);
2562 unsigned char buf[MAX_REGISTER_SIZE];
2563 regcache_cooked_read (regcache, regno, buf);
2564 fprintf_unfiltered (gdb_stdlog, " = ");
2565 for (i = 0; i < size; i++)
2566 {
2567 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
2568 }
2569 if (size <= sizeof (LONGEST))
2570 {
2571 ULONGEST val = extract_unsigned_integer (buf, size);
2572 fprintf_unfiltered (gdb_stdlog, " 0x%s %s",
2573 paddr_nz (val), paddr_d (val));
2574 }
2575 }
2576 fprintf_unfiltered (gdb_stdlog, "\n");
2577 }
2578
2579 static void
2580 debug_to_fetch_registers (struct regcache *regcache, int regno)
2581 {
2582 debug_target.to_fetch_registers (regcache, regno);
2583 debug_print_register ("target_fetch_registers", regcache, regno);
2584 }
2585
2586 static void
2587 debug_to_store_registers (struct regcache *regcache, int regno)
2588 {
2589 debug_target.to_store_registers (regcache, regno);
2590 debug_print_register ("target_store_registers", regcache, regno);
2591 fprintf_unfiltered (gdb_stdlog, "\n");
2592 }
2593
2594 static void
2595 debug_to_prepare_to_store (struct regcache *regcache)
2596 {
2597 debug_target.to_prepare_to_store (regcache);
2598
2599 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
2600 }
2601
2602 static int
2603 deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
2604 int write, struct mem_attrib *attrib,
2605 struct target_ops *target)
2606 {
2607 int retval;
2608
2609 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
2610 attrib, target);
2611
2612 fprintf_unfiltered (gdb_stdlog,
2613 "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d",
2614 (unsigned int) memaddr, /* possable truncate long long */
2615 len, write ? "write" : "read", retval);
2616
2617 if (retval > 0)
2618 {
2619 int i;
2620
2621 fputs_unfiltered (", bytes =", gdb_stdlog);
2622 for (i = 0; i < retval; i++)
2623 {
2624 if ((((long) &(myaddr[i])) & 0xf) == 0)
2625 {
2626 if (targetdebug < 2 && i > 0)
2627 {
2628 fprintf_unfiltered (gdb_stdlog, " ...");
2629 break;
2630 }
2631 fprintf_unfiltered (gdb_stdlog, "\n");
2632 }
2633
2634 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
2635 }
2636 }
2637
2638 fputc_unfiltered ('\n', gdb_stdlog);
2639
2640 return retval;
2641 }
2642
2643 static void
2644 debug_to_files_info (struct target_ops *target)
2645 {
2646 debug_target.to_files_info (target);
2647
2648 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
2649 }
2650
2651 static int
2652 debug_to_insert_breakpoint (struct bp_target_info *bp_tgt)
2653 {
2654 int retval;
2655
2656 retval = debug_target.to_insert_breakpoint (bp_tgt);
2657
2658 fprintf_unfiltered (gdb_stdlog,
2659 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
2660 (unsigned long) bp_tgt->placed_address,
2661 (unsigned long) retval);
2662 return retval;
2663 }
2664
2665 static int
2666 debug_to_remove_breakpoint (struct bp_target_info *bp_tgt)
2667 {
2668 int retval;
2669
2670 retval = debug_target.to_remove_breakpoint (bp_tgt);
2671
2672 fprintf_unfiltered (gdb_stdlog,
2673 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
2674 (unsigned long) bp_tgt->placed_address,
2675 (unsigned long) retval);
2676 return retval;
2677 }
2678
2679 static int
2680 debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
2681 {
2682 int retval;
2683
2684 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
2685
2686 fprintf_unfiltered (gdb_stdlog,
2687 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
2688 (unsigned long) type,
2689 (unsigned long) cnt,
2690 (unsigned long) from_tty,
2691 (unsigned long) retval);
2692 return retval;
2693 }
2694
2695 static int
2696 debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2697 {
2698 CORE_ADDR retval;
2699
2700 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
2701
2702 fprintf_unfiltered (gdb_stdlog,
2703 "TARGET_REGION_OK_FOR_HW_WATCHPOINT (%ld, %ld) = 0x%lx\n",
2704 (unsigned long) addr,
2705 (unsigned long) len,
2706 (unsigned long) retval);
2707 return retval;
2708 }
2709
2710 static int
2711 debug_to_stopped_by_watchpoint (void)
2712 {
2713 int retval;
2714
2715 retval = debug_target.to_stopped_by_watchpoint ();
2716
2717 fprintf_unfiltered (gdb_stdlog,
2718 "STOPPED_BY_WATCHPOINT () = %ld\n",
2719 (unsigned long) retval);
2720 return retval;
2721 }
2722
2723 static int
2724 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
2725 {
2726 int retval;
2727
2728 retval = debug_target.to_stopped_data_address (target, addr);
2729
2730 fprintf_unfiltered (gdb_stdlog,
2731 "target_stopped_data_address ([0x%lx]) = %ld\n",
2732 (unsigned long)*addr,
2733 (unsigned long)retval);
2734 return retval;
2735 }
2736
2737 static int
2738 debug_to_watchpoint_addr_within_range (struct target_ops *target,
2739 CORE_ADDR addr,
2740 CORE_ADDR start, int length)
2741 {
2742 int retval;
2743
2744 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
2745 start, length);
2746
2747 fprintf_filtered (gdb_stdlog,
2748 "target_watchpoint_addr_within_range (0x%lx, 0x%lx, %d) = %d\n",
2749 (unsigned long) addr, (unsigned long) start, length,
2750 retval);
2751 return retval;
2752 }
2753
2754 static int
2755 debug_to_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
2756 {
2757 int retval;
2758
2759 retval = debug_target.to_insert_hw_breakpoint (bp_tgt);
2760
2761 fprintf_unfiltered (gdb_stdlog,
2762 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
2763 (unsigned long) bp_tgt->placed_address,
2764 (unsigned long) retval);
2765 return retval;
2766 }
2767
2768 static int
2769 debug_to_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
2770 {
2771 int retval;
2772
2773 retval = debug_target.to_remove_hw_breakpoint (bp_tgt);
2774
2775 fprintf_unfiltered (gdb_stdlog,
2776 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
2777 (unsigned long) bp_tgt->placed_address,
2778 (unsigned long) retval);
2779 return retval;
2780 }
2781
2782 static int
2783 debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type)
2784 {
2785 int retval;
2786
2787 retval = debug_target.to_insert_watchpoint (addr, len, type);
2788
2789 fprintf_unfiltered (gdb_stdlog,
2790 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
2791 (unsigned long) addr, len, type, (unsigned long) retval);
2792 return retval;
2793 }
2794
2795 static int
2796 debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type)
2797 {
2798 int retval;
2799
2800 retval = debug_target.to_remove_watchpoint (addr, len, type);
2801
2802 fprintf_unfiltered (gdb_stdlog,
2803 "target_remove_watchpoint (0x%lx, %d, %d) = %ld\n",
2804 (unsigned long) addr, len, type, (unsigned long) retval);
2805 return retval;
2806 }
2807
2808 static void
2809 debug_to_terminal_init (void)
2810 {
2811 debug_target.to_terminal_init ();
2812
2813 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
2814 }
2815
2816 static void
2817 debug_to_terminal_inferior (void)
2818 {
2819 debug_target.to_terminal_inferior ();
2820
2821 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
2822 }
2823
2824 static void
2825 debug_to_terminal_ours_for_output (void)
2826 {
2827 debug_target.to_terminal_ours_for_output ();
2828
2829 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
2830 }
2831
2832 static void
2833 debug_to_terminal_ours (void)
2834 {
2835 debug_target.to_terminal_ours ();
2836
2837 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
2838 }
2839
2840 static void
2841 debug_to_terminal_save_ours (void)
2842 {
2843 debug_target.to_terminal_save_ours ();
2844
2845 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
2846 }
2847
2848 static void
2849 debug_to_terminal_info (char *arg, int from_tty)
2850 {
2851 debug_target.to_terminal_info (arg, from_tty);
2852
2853 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
2854 from_tty);
2855 }
2856
2857 static void
2858 debug_to_kill (void)
2859 {
2860 debug_target.to_kill ();
2861
2862 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
2863 }
2864
2865 static void
2866 debug_to_load (char *args, int from_tty)
2867 {
2868 debug_target.to_load (args, from_tty);
2869
2870 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
2871 }
2872
2873 static int
2874 debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
2875 {
2876 int retval;
2877
2878 retval = debug_target.to_lookup_symbol (name, addrp);
2879
2880 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
2881
2882 return retval;
2883 }
2884
2885 static void
2886 debug_to_create_inferior (char *exec_file, char *args, char **env,
2887 int from_tty)
2888 {
2889 debug_target.to_create_inferior (exec_file, args, env, from_tty);
2890
2891 fprintf_unfiltered (gdb_stdlog, "target_create_inferior (%s, %s, xxx, %d)\n",
2892 exec_file, args, from_tty);
2893 }
2894
2895 static void
2896 debug_to_post_startup_inferior (ptid_t ptid)
2897 {
2898 debug_target.to_post_startup_inferior (ptid);
2899
2900 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
2901 PIDGET (ptid));
2902 }
2903
2904 static void
2905 debug_to_acknowledge_created_inferior (int pid)
2906 {
2907 debug_target.to_acknowledge_created_inferior (pid);
2908
2909 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
2910 pid);
2911 }
2912
2913 static void
2914 debug_to_insert_fork_catchpoint (int pid)
2915 {
2916 debug_target.to_insert_fork_catchpoint (pid);
2917
2918 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d)\n",
2919 pid);
2920 }
2921
2922 static int
2923 debug_to_remove_fork_catchpoint (int pid)
2924 {
2925 int retval;
2926
2927 retval = debug_target.to_remove_fork_catchpoint (pid);
2928
2929 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
2930 pid, retval);
2931
2932 return retval;
2933 }
2934
2935 static void
2936 debug_to_insert_vfork_catchpoint (int pid)
2937 {
2938 debug_target.to_insert_vfork_catchpoint (pid);
2939
2940 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)\n",
2941 pid);
2942 }
2943
2944 static int
2945 debug_to_remove_vfork_catchpoint (int pid)
2946 {
2947 int retval;
2948
2949 retval = debug_target.to_remove_vfork_catchpoint (pid);
2950
2951 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
2952 pid, retval);
2953
2954 return retval;
2955 }
2956
2957 static void
2958 debug_to_insert_exec_catchpoint (int pid)
2959 {
2960 debug_target.to_insert_exec_catchpoint (pid);
2961
2962 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d)\n",
2963 pid);
2964 }
2965
2966 static int
2967 debug_to_remove_exec_catchpoint (int pid)
2968 {
2969 int retval;
2970
2971 retval = debug_target.to_remove_exec_catchpoint (pid);
2972
2973 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
2974 pid, retval);
2975
2976 return retval;
2977 }
2978
2979 static int
2980 debug_to_has_exited (int pid, int wait_status, int *exit_status)
2981 {
2982 int has_exited;
2983
2984 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
2985
2986 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
2987 pid, wait_status, *exit_status, has_exited);
2988
2989 return has_exited;
2990 }
2991
2992 static void
2993 debug_to_mourn_inferior (void)
2994 {
2995 debug_target.to_mourn_inferior ();
2996
2997 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2998 }
2999
3000 static int
3001 debug_to_can_run (void)
3002 {
3003 int retval;
3004
3005 retval = debug_target.to_can_run ();
3006
3007 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
3008
3009 return retval;
3010 }
3011
3012 static void
3013 debug_to_notice_signals (ptid_t ptid)
3014 {
3015 debug_target.to_notice_signals (ptid);
3016
3017 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
3018 PIDGET (ptid));
3019 }
3020
3021 static int
3022 debug_to_thread_alive (ptid_t ptid)
3023 {
3024 int retval;
3025
3026 retval = debug_target.to_thread_alive (ptid);
3027
3028 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
3029 PIDGET (ptid), retval);
3030
3031 return retval;
3032 }
3033
3034 static void
3035 debug_to_find_new_threads (void)
3036 {
3037 debug_target.to_find_new_threads ();
3038
3039 fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog);
3040 }
3041
3042 static void
3043 debug_to_stop (ptid_t ptid)
3044 {
3045 debug_target.to_stop (ptid);
3046
3047 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
3048 target_pid_to_str (ptid));
3049 }
3050
3051 static void
3052 debug_to_rcmd (char *command,
3053 struct ui_file *outbuf)
3054 {
3055 debug_target.to_rcmd (command, outbuf);
3056 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
3057 }
3058
3059 static char *
3060 debug_to_pid_to_exec_file (int pid)
3061 {
3062 char *exec_file;
3063
3064 exec_file = debug_target.to_pid_to_exec_file (pid);
3065
3066 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
3067 pid, exec_file);
3068
3069 return exec_file;
3070 }
3071
3072 static void
3073 setup_target_debug (void)
3074 {
3075 memcpy (&debug_target, &current_target, sizeof debug_target);
3076
3077 current_target.to_open = debug_to_open;
3078 current_target.to_close = debug_to_close;
3079 current_target.to_attach = debug_to_attach;
3080 current_target.to_post_attach = debug_to_post_attach;
3081 current_target.to_detach = debug_to_detach;
3082 current_target.to_resume = debug_to_resume;
3083 current_target.to_wait = debug_to_wait;
3084 current_target.to_fetch_registers = debug_to_fetch_registers;
3085 current_target.to_store_registers = debug_to_store_registers;
3086 current_target.to_prepare_to_store = debug_to_prepare_to_store;
3087 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
3088 current_target.to_files_info = debug_to_files_info;
3089 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
3090 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
3091 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
3092 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
3093 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
3094 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
3095 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
3096 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
3097 current_target.to_stopped_data_address = debug_to_stopped_data_address;
3098 current_target.to_watchpoint_addr_within_range = debug_to_watchpoint_addr_within_range;
3099 current_target.to_region_ok_for_hw_watchpoint = debug_to_region_ok_for_hw_watchpoint;
3100 current_target.to_terminal_init = debug_to_terminal_init;
3101 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3102 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
3103 current_target.to_terminal_ours = debug_to_terminal_ours;
3104 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
3105 current_target.to_terminal_info = debug_to_terminal_info;
3106 current_target.to_kill = debug_to_kill;
3107 current_target.to_load = debug_to_load;
3108 current_target.to_lookup_symbol = debug_to_lookup_symbol;
3109 current_target.to_create_inferior = debug_to_create_inferior;
3110 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
3111 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
3112 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
3113 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
3114 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
3115 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
3116 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
3117 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
3118 current_target.to_has_exited = debug_to_has_exited;
3119 current_target.to_mourn_inferior = debug_to_mourn_inferior;
3120 current_target.to_can_run = debug_to_can_run;
3121 current_target.to_notice_signals = debug_to_notice_signals;
3122 current_target.to_thread_alive = debug_to_thread_alive;
3123 current_target.to_find_new_threads = debug_to_find_new_threads;
3124 current_target.to_stop = debug_to_stop;
3125 current_target.to_rcmd = debug_to_rcmd;
3126 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
3127 }
3128 \f
3129
3130 static char targ_desc[] =
3131 "Names of targets and files being debugged.\n\
3132 Shows the entire stack of targets currently in use (including the exec-file,\n\
3133 core-file, and process, if any), as well as the symbol file name.";
3134
3135 static void
3136 do_monitor_command (char *cmd,
3137 int from_tty)
3138 {
3139 if ((current_target.to_rcmd
3140 == (void (*) (char *, struct ui_file *)) tcomplain)
3141 || (current_target.to_rcmd == debug_to_rcmd
3142 && (debug_target.to_rcmd
3143 == (void (*) (char *, struct ui_file *)) tcomplain)))
3144 error (_("\"monitor\" command not supported by this target."));
3145 target_rcmd (cmd, gdb_stdtarg);
3146 }
3147
3148 /* Print the name of each layers of our target stack. */
3149
3150 static void
3151 maintenance_print_target_stack (char *cmd, int from_tty)
3152 {
3153 struct target_ops *t;
3154
3155 printf_filtered (_("The current target stack is:\n"));
3156
3157 for (t = target_stack; t != NULL; t = t->beneath)
3158 {
3159 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
3160 }
3161 }
3162
3163 void
3164 initialize_targets (void)
3165 {
3166 init_dummy_target ();
3167 push_target (&dummy_target);
3168
3169 add_info ("target", target_info, targ_desc);
3170 add_info ("files", target_info, targ_desc);
3171
3172 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
3173 Set target debugging."), _("\
3174 Show target debugging."), _("\
3175 When non-zero, target debugging is enabled. Higher numbers are more\n\
3176 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
3177 command."),
3178 NULL,
3179 show_targetdebug,
3180 &setdebuglist, &showdebuglist);
3181
3182 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
3183 &trust_readonly, _("\
3184 Set mode for reading from readonly sections."), _("\
3185 Show mode for reading from readonly sections."), _("\
3186 When this mode is on, memory reads from readonly sections (such as .text)\n\
3187 will be read from the object file instead of from the target. This will\n\
3188 result in significant performance improvement for remote targets."),
3189 NULL,
3190 show_trust_readonly,
3191 &setlist, &showlist);
3192
3193 add_com ("monitor", class_obscure, do_monitor_command,
3194 _("Send a command to the remote monitor (remote targets only)."));
3195
3196 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
3197 _("Print the name of each layer of the internal target stack."),
3198 &maintenanceprintlist);
3199
3200 target_dcache = dcache_init ();
3201 }