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