convert to_trace_set_readonly_regions
[binutils-gdb.git] / gdb / target.c
1 /* Select target systems and architectures at runtime for GDB.
2
3 Copyright (C) 1990-2014 Free Software Foundation, Inc.
4
5 Contributed by Cygnus Support.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include <errno.h>
24 #include <string.h>
25 #include "target.h"
26 #include "target-dcache.h"
27 #include "gdbcmd.h"
28 #include "symtab.h"
29 #include "inferior.h"
30 #include "bfd.h"
31 #include "symfile.h"
32 #include "objfiles.h"
33 #include "dcache.h"
34 #include <signal.h>
35 #include "regcache.h"
36 #include "gdb_assert.h"
37 #include "gdbcore.h"
38 #include "exceptions.h"
39 #include "target-descriptions.h"
40 #include "gdbthread.h"
41 #include "solib.h"
42 #include "exec.h"
43 #include "inline-frame.h"
44 #include "tracepoint.h"
45 #include "gdb/fileio.h"
46 #include "agent.h"
47
48 static void target_info (char *, int);
49
50 static void default_terminal_info (struct target_ops *, const char *, int);
51
52 static int default_watchpoint_addr_within_range (struct target_ops *,
53 CORE_ADDR, CORE_ADDR, int);
54
55 static int default_region_ok_for_hw_watchpoint (struct target_ops *,
56 CORE_ADDR, int);
57
58 static void default_rcmd (struct target_ops *, char *, struct ui_file *);
59
60 static ptid_t default_get_ada_task_ptid (struct target_ops *self,
61 long lwp, long tid);
62
63 static void tcomplain (void) ATTRIBUTE_NORETURN;
64
65 static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
66
67 static int return_zero (void);
68
69 static int return_minus_one (void);
70
71 static void *return_null (void);
72
73 void target_ignore (void);
74
75 static void target_command (char *, int);
76
77 static struct target_ops *find_default_run_target (char *);
78
79 static target_xfer_partial_ftype default_xfer_partial;
80
81 static struct gdbarch *default_thread_architecture (struct target_ops *ops,
82 ptid_t ptid);
83
84 static int dummy_find_memory_regions (struct target_ops *self,
85 find_memory_region_ftype ignore1,
86 void *ignore2);
87
88 static char *dummy_make_corefile_notes (struct target_ops *self,
89 bfd *ignore1, int *ignore2);
90
91 static int find_default_can_async_p (struct target_ops *ignore);
92
93 static int find_default_is_async_p (struct target_ops *ignore);
94
95 static enum exec_direction_kind default_execution_direction
96 (struct target_ops *self);
97
98 #include "target-delegates.c"
99
100 static void init_dummy_target (void);
101
102 static struct target_ops debug_target;
103
104 static void debug_to_open (char *, int);
105
106 static void debug_to_prepare_to_store (struct target_ops *self,
107 struct regcache *);
108
109 static void debug_to_files_info (struct target_ops *);
110
111 static int debug_to_insert_breakpoint (struct target_ops *, struct gdbarch *,
112 struct bp_target_info *);
113
114 static int debug_to_remove_breakpoint (struct target_ops *, struct gdbarch *,
115 struct bp_target_info *);
116
117 static int debug_to_can_use_hw_breakpoint (struct target_ops *self,
118 int, int, int);
119
120 static int debug_to_insert_hw_breakpoint (struct target_ops *self,
121 struct gdbarch *,
122 struct bp_target_info *);
123
124 static int debug_to_remove_hw_breakpoint (struct target_ops *self,
125 struct gdbarch *,
126 struct bp_target_info *);
127
128 static int debug_to_insert_watchpoint (struct target_ops *self,
129 CORE_ADDR, int, int,
130 struct expression *);
131
132 static int debug_to_remove_watchpoint (struct target_ops *self,
133 CORE_ADDR, int, int,
134 struct expression *);
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 (struct target_ops *self,
142 CORE_ADDR, int);
143
144 static int debug_to_can_accel_watchpoint_condition (struct target_ops *self,
145 CORE_ADDR, int, int,
146 struct expression *);
147
148 static void debug_to_terminal_init (struct target_ops *self);
149
150 static void debug_to_terminal_inferior (struct target_ops *self);
151
152 static void debug_to_terminal_ours_for_output (struct target_ops *self);
153
154 static void debug_to_terminal_save_ours (struct target_ops *self);
155
156 static void debug_to_terminal_ours (struct target_ops *self);
157
158 static void debug_to_load (struct target_ops *self, char *, int);
159
160 static int debug_to_can_run (struct target_ops *self);
161
162 static void debug_to_stop (struct target_ops *self, ptid_t);
163
164 /* Pointer to array of target architecture structures; the size of the
165 array; the current index into the array; the allocated size of the
166 array. */
167 struct target_ops **target_structs;
168 unsigned target_struct_size;
169 unsigned target_struct_allocsize;
170 #define DEFAULT_ALLOCSIZE 10
171
172 /* The initial current target, so that there is always a semi-valid
173 current target. */
174
175 static struct target_ops dummy_target;
176
177 /* Top of target stack. */
178
179 static struct target_ops *target_stack;
180
181 /* The target structure we are currently using to talk to a process
182 or file or whatever "inferior" we have. */
183
184 struct target_ops current_target;
185
186 /* Command list for target. */
187
188 static struct cmd_list_element *targetlist = NULL;
189
190 /* Nonzero if we should trust readonly sections from the
191 executable when reading memory. */
192
193 static int trust_readonly = 0;
194
195 /* Nonzero if we should show true memory content including
196 memory breakpoint inserted by gdb. */
197
198 static int show_memory_breakpoints = 0;
199
200 /* These globals control whether GDB attempts to perform these
201 operations; they are useful for targets that need to prevent
202 inadvertant disruption, such as in non-stop mode. */
203
204 int may_write_registers = 1;
205
206 int may_write_memory = 1;
207
208 int may_insert_breakpoints = 1;
209
210 int may_insert_tracepoints = 1;
211
212 int may_insert_fast_tracepoints = 1;
213
214 int may_stop = 1;
215
216 /* Non-zero if we want to see trace of target level stuff. */
217
218 static unsigned int targetdebug = 0;
219 static void
220 show_targetdebug (struct ui_file *file, int from_tty,
221 struct cmd_list_element *c, const char *value)
222 {
223 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
224 }
225
226 static void setup_target_debug (void);
227
228 /* The user just typed 'target' without the name of a target. */
229
230 static void
231 target_command (char *arg, int from_tty)
232 {
233 fputs_filtered ("Argument required (target name). Try `help target'\n",
234 gdb_stdout);
235 }
236
237 /* Default target_has_* methods for process_stratum targets. */
238
239 int
240 default_child_has_all_memory (struct target_ops *ops)
241 {
242 /* If no inferior selected, then we can't read memory here. */
243 if (ptid_equal (inferior_ptid, null_ptid))
244 return 0;
245
246 return 1;
247 }
248
249 int
250 default_child_has_memory (struct target_ops *ops)
251 {
252 /* If no inferior selected, then we can't read memory here. */
253 if (ptid_equal (inferior_ptid, null_ptid))
254 return 0;
255
256 return 1;
257 }
258
259 int
260 default_child_has_stack (struct target_ops *ops)
261 {
262 /* If no inferior selected, there's no stack. */
263 if (ptid_equal (inferior_ptid, null_ptid))
264 return 0;
265
266 return 1;
267 }
268
269 int
270 default_child_has_registers (struct target_ops *ops)
271 {
272 /* Can't read registers from no inferior. */
273 if (ptid_equal (inferior_ptid, null_ptid))
274 return 0;
275
276 return 1;
277 }
278
279 int
280 default_child_has_execution (struct target_ops *ops, ptid_t the_ptid)
281 {
282 /* If there's no thread selected, then we can't make it run through
283 hoops. */
284 if (ptid_equal (the_ptid, null_ptid))
285 return 0;
286
287 return 1;
288 }
289
290
291 int
292 target_has_all_memory_1 (void)
293 {
294 struct target_ops *t;
295
296 for (t = current_target.beneath; t != NULL; t = t->beneath)
297 if (t->to_has_all_memory (t))
298 return 1;
299
300 return 0;
301 }
302
303 int
304 target_has_memory_1 (void)
305 {
306 struct target_ops *t;
307
308 for (t = current_target.beneath; t != NULL; t = t->beneath)
309 if (t->to_has_memory (t))
310 return 1;
311
312 return 0;
313 }
314
315 int
316 target_has_stack_1 (void)
317 {
318 struct target_ops *t;
319
320 for (t = current_target.beneath; t != NULL; t = t->beneath)
321 if (t->to_has_stack (t))
322 return 1;
323
324 return 0;
325 }
326
327 int
328 target_has_registers_1 (void)
329 {
330 struct target_ops *t;
331
332 for (t = current_target.beneath; t != NULL; t = t->beneath)
333 if (t->to_has_registers (t))
334 return 1;
335
336 return 0;
337 }
338
339 int
340 target_has_execution_1 (ptid_t the_ptid)
341 {
342 struct target_ops *t;
343
344 for (t = current_target.beneath; t != NULL; t = t->beneath)
345 if (t->to_has_execution (t, the_ptid))
346 return 1;
347
348 return 0;
349 }
350
351 int
352 target_has_execution_current (void)
353 {
354 return target_has_execution_1 (inferior_ptid);
355 }
356
357 /* Complete initialization of T. This ensures that various fields in
358 T are set, if needed by the target implementation. */
359
360 void
361 complete_target_initialization (struct target_ops *t)
362 {
363 /* Provide default values for all "must have" methods. */
364 if (t->to_xfer_partial == NULL)
365 t->to_xfer_partial = default_xfer_partial;
366
367 if (t->to_has_all_memory == NULL)
368 t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
369
370 if (t->to_has_memory == NULL)
371 t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
372
373 if (t->to_has_stack == NULL)
374 t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
375
376 if (t->to_has_registers == NULL)
377 t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
378
379 if (t->to_has_execution == NULL)
380 t->to_has_execution = (int (*) (struct target_ops *, ptid_t)) return_zero;
381
382 install_delegators (t);
383 }
384
385 /* Add possible target architecture T to the list and add a new
386 command 'target T->to_shortname'. Set COMPLETER as the command's
387 completer if not NULL. */
388
389 void
390 add_target_with_completer (struct target_ops *t,
391 completer_ftype *completer)
392 {
393 struct cmd_list_element *c;
394
395 complete_target_initialization (t);
396
397 if (!target_structs)
398 {
399 target_struct_allocsize = DEFAULT_ALLOCSIZE;
400 target_structs = (struct target_ops **) xmalloc
401 (target_struct_allocsize * sizeof (*target_structs));
402 }
403 if (target_struct_size >= target_struct_allocsize)
404 {
405 target_struct_allocsize *= 2;
406 target_structs = (struct target_ops **)
407 xrealloc ((char *) target_structs,
408 target_struct_allocsize * sizeof (*target_structs));
409 }
410 target_structs[target_struct_size++] = t;
411
412 if (targetlist == NULL)
413 add_prefix_cmd ("target", class_run, target_command, _("\
414 Connect to a target machine or process.\n\
415 The first argument is the type or protocol of the target machine.\n\
416 Remaining arguments are interpreted by the target protocol. For more\n\
417 information on the arguments for a particular protocol, type\n\
418 `help target ' followed by the protocol name."),
419 &targetlist, "target ", 0, &cmdlist);
420 c = add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc,
421 &targetlist);
422 if (completer != NULL)
423 set_cmd_completer (c, completer);
424 }
425
426 /* Add a possible target architecture to the list. */
427
428 void
429 add_target (struct target_ops *t)
430 {
431 add_target_with_completer (t, NULL);
432 }
433
434 /* See target.h. */
435
436 void
437 add_deprecated_target_alias (struct target_ops *t, char *alias)
438 {
439 struct cmd_list_element *c;
440 char *alt;
441
442 /* If we use add_alias_cmd, here, we do not get the deprecated warning,
443 see PR cli/15104. */
444 c = add_cmd (alias, no_class, t->to_open, t->to_doc, &targetlist);
445 alt = xstrprintf ("target %s", t->to_shortname);
446 deprecate_cmd (c, alt);
447 }
448
449 /* Stub functions */
450
451 void
452 target_ignore (void)
453 {
454 }
455
456 void
457 target_kill (void)
458 {
459 struct target_ops *t;
460
461 for (t = current_target.beneath; t != NULL; t = t->beneath)
462 if (t->to_kill != NULL)
463 {
464 if (targetdebug)
465 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
466
467 t->to_kill (t);
468 return;
469 }
470
471 noprocess ();
472 }
473
474 void
475 target_load (char *arg, int from_tty)
476 {
477 target_dcache_invalidate ();
478 (*current_target.to_load) (&current_target, arg, from_tty);
479 }
480
481 void
482 target_create_inferior (char *exec_file, char *args,
483 char **env, int from_tty)
484 {
485 struct target_ops *t;
486
487 for (t = current_target.beneath; t != NULL; t = t->beneath)
488 {
489 if (t->to_create_inferior != NULL)
490 {
491 t->to_create_inferior (t, exec_file, args, env, from_tty);
492 if (targetdebug)
493 fprintf_unfiltered (gdb_stdlog,
494 "target_create_inferior (%s, %s, xxx, %d)\n",
495 exec_file, args, from_tty);
496 return;
497 }
498 }
499
500 internal_error (__FILE__, __LINE__,
501 _("could not find a target to create inferior"));
502 }
503
504 void
505 target_terminal_inferior (void)
506 {
507 /* A background resume (``run&'') should leave GDB in control of the
508 terminal. Use target_can_async_p, not target_is_async_p, since at
509 this point the target is not async yet. However, if sync_execution
510 is not set, we know it will become async prior to resume. */
511 if (target_can_async_p () && !sync_execution)
512 return;
513
514 /* If GDB is resuming the inferior in the foreground, install
515 inferior's terminal modes. */
516 (*current_target.to_terminal_inferior) (&current_target);
517 }
518
519 static int
520 nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
521 struct target_ops *t)
522 {
523 errno = EIO; /* Can't read/write this location. */
524 return 0; /* No bytes handled. */
525 }
526
527 static void
528 tcomplain (void)
529 {
530 error (_("You can't do that when your target is `%s'"),
531 current_target.to_shortname);
532 }
533
534 void
535 noprocess (void)
536 {
537 error (_("You can't do that without a process to debug."));
538 }
539
540 static void
541 default_terminal_info (struct target_ops *self, const char *args, int from_tty)
542 {
543 printf_unfiltered (_("No saved terminal information.\n"));
544 }
545
546 /* A default implementation for the to_get_ada_task_ptid target method.
547
548 This function builds the PTID by using both LWP and TID as part of
549 the PTID lwp and tid elements. The pid used is the pid of the
550 inferior_ptid. */
551
552 static ptid_t
553 default_get_ada_task_ptid (struct target_ops *self, long lwp, long tid)
554 {
555 return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
556 }
557
558 static enum exec_direction_kind
559 default_execution_direction (struct target_ops *self)
560 {
561 if (!target_can_execute_reverse)
562 return EXEC_FORWARD;
563 else if (!target_can_async_p ())
564 return EXEC_FORWARD;
565 else
566 gdb_assert_not_reached ("\
567 to_execution_direction must be implemented for reverse async");
568 }
569
570 /* Go through the target stack from top to bottom, copying over zero
571 entries in current_target, then filling in still empty entries. In
572 effect, we are doing class inheritance through the pushed target
573 vectors.
574
575 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
576 is currently implemented, is that it discards any knowledge of
577 which target an inherited method originally belonged to.
578 Consequently, new new target methods should instead explicitly and
579 locally search the target stack for the target that can handle the
580 request. */
581
582 static void
583 update_current_target (void)
584 {
585 struct target_ops *t;
586
587 /* First, reset current's contents. */
588 memset (&current_target, 0, sizeof (current_target));
589
590 /* Install the delegators. */
591 install_delegators (&current_target);
592
593 #define INHERIT(FIELD, TARGET) \
594 if (!current_target.FIELD) \
595 current_target.FIELD = (TARGET)->FIELD
596
597 for (t = target_stack; t; t = t->beneath)
598 {
599 INHERIT (to_shortname, t);
600 INHERIT (to_longname, t);
601 INHERIT (to_doc, t);
602 /* Do not inherit to_open. */
603 /* Do not inherit to_close. */
604 /* Do not inherit to_attach. */
605 /* Do not inherit to_post_attach. */
606 INHERIT (to_attach_no_wait, t);
607 /* Do not inherit to_detach. */
608 /* Do not inherit to_disconnect. */
609 /* Do not inherit to_resume. */
610 /* Do not inherit to_wait. */
611 /* Do not inherit to_fetch_registers. */
612 /* Do not inherit to_store_registers. */
613 /* Do not inherit to_prepare_to_store. */
614 INHERIT (deprecated_xfer_memory, t);
615 /* Do not inherit to_files_info. */
616 /* Do not inherit to_insert_breakpoint. */
617 /* Do not inherit to_remove_breakpoint. */
618 /* Do not inherit to_can_use_hw_breakpoint. */
619 /* Do not inherit to_insert_hw_breakpoint. */
620 /* Do not inherit to_remove_hw_breakpoint. */
621 /* Do not inherit to_ranged_break_num_registers. */
622 /* Do not inherit to_insert_watchpoint. */
623 /* Do not inherit to_remove_watchpoint. */
624 /* Do not inherit to_insert_mask_watchpoint. */
625 /* Do not inherit to_remove_mask_watchpoint. */
626 /* Do not inherit to_stopped_data_address. */
627 INHERIT (to_have_steppable_watchpoint, t);
628 INHERIT (to_have_continuable_watchpoint, t);
629 /* Do not inherit to_stopped_by_watchpoint. */
630 /* Do not inherit to_watchpoint_addr_within_range. */
631 /* Do not inherit to_region_ok_for_hw_watchpoint. */
632 /* Do not inherit to_can_accel_watchpoint_condition. */
633 /* Do not inherit to_masked_watch_num_registers. */
634 /* Do not inherit to_terminal_init. */
635 /* Do not inherit to_terminal_inferior. */
636 /* Do not inherit to_terminal_ours_for_output. */
637 /* Do not inherit to_terminal_ours. */
638 /* Do not inherit to_terminal_save_ours. */
639 /* Do not inherit to_terminal_info. */
640 /* Do not inherit to_kill. */
641 /* Do not inherit to_load. */
642 /* Do no inherit to_create_inferior. */
643 /* Do not inherit to_post_startup_inferior. */
644 /* Do not inherit to_insert_fork_catchpoint. */
645 /* Do not inherit to_remove_fork_catchpoint. */
646 /* Do not inherit to_insert_vfork_catchpoint. */
647 /* Do not inherit to_remove_vfork_catchpoint. */
648 /* Do not inherit to_follow_fork. */
649 /* Do not inherit to_insert_exec_catchpoint. */
650 /* Do not inherit to_remove_exec_catchpoint. */
651 /* Do not inherit to_set_syscall_catchpoint. */
652 /* Do not inherit to_has_exited. */
653 /* Do not inherit to_mourn_inferior. */
654 INHERIT (to_can_run, t);
655 /* Do not inherit to_pass_signals. */
656 /* Do not inherit to_program_signals. */
657 /* Do not inherit to_thread_alive. */
658 /* Do not inherit to_find_new_threads. */
659 /* Do not inherit to_pid_to_str. */
660 /* Do not inherit to_extra_thread_info. */
661 /* Do not inherit to_thread_name. */
662 INHERIT (to_stop, t);
663 /* Do not inherit to_xfer_partial. */
664 /* Do not inherit to_rcmd. */
665 /* Do not inherit to_pid_to_exec_file. */
666 /* Do not inherit to_log_command. */
667 INHERIT (to_stratum, t);
668 /* Do not inherit to_has_all_memory. */
669 /* Do not inherit to_has_memory. */
670 /* Do not inherit to_has_stack. */
671 /* Do not inherit to_has_registers. */
672 /* Do not inherit to_has_execution. */
673 INHERIT (to_has_thread_control, t);
674 /* Do not inherit to_can_async_p. */
675 /* Do not inherit to_is_async_p. */
676 /* Do not inherit to_async. */
677 /* Do not inherit to_find_memory_regions. */
678 /* Do not inherit to_make_corefile_notes. */
679 /* Do not inherit to_get_bookmark. */
680 /* Do not inherit to_goto_bookmark. */
681 /* Do not inherit to_get_thread_local_address. */
682 /* Do not inherit to_can_execute_reverse. */
683 /* Do not inherit to_execution_direction. */
684 /* Do not inherit to_thread_architecture. */
685 /* Do not inherit to_read_description. */
686 /* Do not inherit to_get_ada_task_ptid. */
687 /* Do not inherit to_search_memory. */
688 /* Do not inherit to_supports_multi_process. */
689 /* Do not inherit to_supports_enable_disable_tracepoint. */
690 /* Do not inherit to_supports_string_tracing. */
691 /* Do not inherit to_trace_init. */
692 /* Do not inherit to_download_tracepoint. */
693 /* Do not inherit to_can_download_tracepoint. */
694 /* Do not inherit to_download_trace_state_variable. */
695 /* Do not inherit to_enable_tracepoint. */
696 /* Do not inherit to_disable_tracepoint. */
697 /* Do not inherit to_trace_set_readonly_regions. */
698 INHERIT (to_trace_start, t);
699 INHERIT (to_get_trace_status, t);
700 INHERIT (to_get_tracepoint_status, t);
701 INHERIT (to_trace_stop, t);
702 INHERIT (to_trace_find, t);
703 INHERIT (to_get_trace_state_variable_value, t);
704 INHERIT (to_save_trace_data, t);
705 INHERIT (to_upload_tracepoints, t);
706 INHERIT (to_upload_trace_state_variables, t);
707 INHERIT (to_get_raw_trace_data, t);
708 INHERIT (to_get_min_fast_tracepoint_insn_len, t);
709 INHERIT (to_set_disconnected_tracing, t);
710 INHERIT (to_set_circular_trace_buffer, t);
711 INHERIT (to_set_trace_buffer_size, t);
712 INHERIT (to_set_trace_notes, t);
713 INHERIT (to_get_tib_address, t);
714 INHERIT (to_set_permissions, t);
715 INHERIT (to_static_tracepoint_marker_at, t);
716 INHERIT (to_static_tracepoint_markers_by_strid, t);
717 INHERIT (to_traceframe_info, t);
718 INHERIT (to_use_agent, t);
719 INHERIT (to_can_use_agent, t);
720 INHERIT (to_augmented_libraries_svr4_read, t);
721 INHERIT (to_magic, t);
722 INHERIT (to_supports_evaluation_of_breakpoint_conditions, t);
723 INHERIT (to_can_run_breakpoint_commands, t);
724 /* Do not inherit to_memory_map. */
725 /* Do not inherit to_flash_erase. */
726 /* Do not inherit to_flash_done. */
727 }
728 #undef INHERIT
729
730 /* Clean up a target struct so it no longer has any zero pointers in
731 it. Some entries are defaulted to a method that print an error,
732 others are hard-wired to a standard recursive default. */
733
734 #define de_fault(field, value) \
735 if (!current_target.field) \
736 current_target.field = value
737
738 de_fault (to_open,
739 (void (*) (char *, int))
740 tcomplain);
741 de_fault (to_close,
742 (void (*) (struct target_ops *))
743 target_ignore);
744 de_fault (deprecated_xfer_memory,
745 (int (*) (CORE_ADDR, gdb_byte *, int, int,
746 struct mem_attrib *, struct target_ops *))
747 nomemory);
748 de_fault (to_can_run,
749 (int (*) (struct target_ops *))
750 return_zero);
751 de_fault (to_stop,
752 (void (*) (struct target_ops *, ptid_t))
753 target_ignore);
754 current_target.to_read_description = NULL;
755 de_fault (to_trace_start,
756 (void (*) (struct target_ops *))
757 tcomplain);
758 de_fault (to_get_trace_status,
759 (int (*) (struct target_ops *, struct trace_status *))
760 return_minus_one);
761 de_fault (to_get_tracepoint_status,
762 (void (*) (struct target_ops *, struct breakpoint *,
763 struct uploaded_tp *))
764 tcomplain);
765 de_fault (to_trace_stop,
766 (void (*) (struct target_ops *))
767 tcomplain);
768 de_fault (to_trace_find,
769 (int (*) (struct target_ops *,
770 enum trace_find_type, int, CORE_ADDR, CORE_ADDR, int *))
771 return_minus_one);
772 de_fault (to_get_trace_state_variable_value,
773 (int (*) (struct target_ops *, int, LONGEST *))
774 return_zero);
775 de_fault (to_save_trace_data,
776 (int (*) (struct target_ops *, const char *))
777 tcomplain);
778 de_fault (to_upload_tracepoints,
779 (int (*) (struct target_ops *, struct uploaded_tp **))
780 return_zero);
781 de_fault (to_upload_trace_state_variables,
782 (int (*) (struct target_ops *, struct uploaded_tsv **))
783 return_zero);
784 de_fault (to_get_raw_trace_data,
785 (LONGEST (*) (struct target_ops *, gdb_byte *, ULONGEST, LONGEST))
786 tcomplain);
787 de_fault (to_get_min_fast_tracepoint_insn_len,
788 (int (*) (struct target_ops *))
789 return_minus_one);
790 de_fault (to_set_disconnected_tracing,
791 (void (*) (struct target_ops *, int))
792 target_ignore);
793 de_fault (to_set_circular_trace_buffer,
794 (void (*) (struct target_ops *, int))
795 target_ignore);
796 de_fault (to_set_trace_buffer_size,
797 (void (*) (struct target_ops *, LONGEST))
798 target_ignore);
799 de_fault (to_set_trace_notes,
800 (int (*) (struct target_ops *,
801 const char *, const char *, const char *))
802 return_zero);
803 de_fault (to_get_tib_address,
804 (int (*) (struct target_ops *, ptid_t, CORE_ADDR *))
805 tcomplain);
806 de_fault (to_set_permissions,
807 (void (*) (struct target_ops *))
808 target_ignore);
809 de_fault (to_static_tracepoint_marker_at,
810 (int (*) (struct target_ops *,
811 CORE_ADDR, struct static_tracepoint_marker *))
812 return_zero);
813 de_fault (to_static_tracepoint_markers_by_strid,
814 (VEC(static_tracepoint_marker_p) * (*) (struct target_ops *,
815 const char *))
816 tcomplain);
817 de_fault (to_traceframe_info,
818 (struct traceframe_info * (*) (struct target_ops *))
819 return_null);
820 de_fault (to_supports_evaluation_of_breakpoint_conditions,
821 (int (*) (struct target_ops *))
822 return_zero);
823 de_fault (to_can_run_breakpoint_commands,
824 (int (*) (struct target_ops *))
825 return_zero);
826 de_fault (to_use_agent,
827 (int (*) (struct target_ops *, int))
828 tcomplain);
829 de_fault (to_can_use_agent,
830 (int (*) (struct target_ops *))
831 return_zero);
832 de_fault (to_augmented_libraries_svr4_read,
833 (int (*) (struct target_ops *))
834 return_zero);
835
836 #undef de_fault
837
838 /* Finally, position the target-stack beneath the squashed
839 "current_target". That way code looking for a non-inherited
840 target method can quickly and simply find it. */
841 current_target.beneath = target_stack;
842
843 if (targetdebug)
844 setup_target_debug ();
845 }
846
847 /* Push a new target type into the stack of the existing target accessors,
848 possibly superseding some of the existing accessors.
849
850 Rather than allow an empty stack, we always have the dummy target at
851 the bottom stratum, so we can call the function vectors without
852 checking them. */
853
854 void
855 push_target (struct target_ops *t)
856 {
857 struct target_ops **cur;
858
859 /* Check magic number. If wrong, it probably means someone changed
860 the struct definition, but not all the places that initialize one. */
861 if (t->to_magic != OPS_MAGIC)
862 {
863 fprintf_unfiltered (gdb_stderr,
864 "Magic number of %s target struct wrong\n",
865 t->to_shortname);
866 internal_error (__FILE__, __LINE__,
867 _("failed internal consistency check"));
868 }
869
870 /* Find the proper stratum to install this target in. */
871 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
872 {
873 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
874 break;
875 }
876
877 /* If there's already targets at this stratum, remove them. */
878 /* FIXME: cagney/2003-10-15: I think this should be popping all
879 targets to CUR, and not just those at this stratum level. */
880 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
881 {
882 /* There's already something at this stratum level. Close it,
883 and un-hook it from the stack. */
884 struct target_ops *tmp = (*cur);
885
886 (*cur) = (*cur)->beneath;
887 tmp->beneath = NULL;
888 target_close (tmp);
889 }
890
891 /* We have removed all targets in our stratum, now add the new one. */
892 t->beneath = (*cur);
893 (*cur) = t;
894
895 update_current_target ();
896 }
897
898 /* Remove a target_ops vector from the stack, wherever it may be.
899 Return how many times it was removed (0 or 1). */
900
901 int
902 unpush_target (struct target_ops *t)
903 {
904 struct target_ops **cur;
905 struct target_ops *tmp;
906
907 if (t->to_stratum == dummy_stratum)
908 internal_error (__FILE__, __LINE__,
909 _("Attempt to unpush the dummy target"));
910
911 /* Look for the specified target. Note that we assume that a target
912 can only occur once in the target stack. */
913
914 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
915 {
916 if ((*cur) == t)
917 break;
918 }
919
920 /* If we don't find target_ops, quit. Only open targets should be
921 closed. */
922 if ((*cur) == NULL)
923 return 0;
924
925 /* Unchain the target. */
926 tmp = (*cur);
927 (*cur) = (*cur)->beneath;
928 tmp->beneath = NULL;
929
930 update_current_target ();
931
932 /* Finally close the target. Note we do this after unchaining, so
933 any target method calls from within the target_close
934 implementation don't end up in T anymore. */
935 target_close (t);
936
937 return 1;
938 }
939
940 void
941 pop_all_targets_above (enum strata above_stratum)
942 {
943 while ((int) (current_target.to_stratum) > (int) above_stratum)
944 {
945 if (!unpush_target (target_stack))
946 {
947 fprintf_unfiltered (gdb_stderr,
948 "pop_all_targets couldn't find target %s\n",
949 target_stack->to_shortname);
950 internal_error (__FILE__, __LINE__,
951 _("failed internal consistency check"));
952 break;
953 }
954 }
955 }
956
957 void
958 pop_all_targets (void)
959 {
960 pop_all_targets_above (dummy_stratum);
961 }
962
963 /* Return 1 if T is now pushed in the target stack. Return 0 otherwise. */
964
965 int
966 target_is_pushed (struct target_ops *t)
967 {
968 struct target_ops **cur;
969
970 /* Check magic number. If wrong, it probably means someone changed
971 the struct definition, but not all the places that initialize one. */
972 if (t->to_magic != OPS_MAGIC)
973 {
974 fprintf_unfiltered (gdb_stderr,
975 "Magic number of %s target struct wrong\n",
976 t->to_shortname);
977 internal_error (__FILE__, __LINE__,
978 _("failed internal consistency check"));
979 }
980
981 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
982 if (*cur == t)
983 return 1;
984
985 return 0;
986 }
987
988 /* Using the objfile specified in OBJFILE, find the address for the
989 current thread's thread-local storage with offset OFFSET. */
990 CORE_ADDR
991 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
992 {
993 volatile CORE_ADDR addr = 0;
994 struct target_ops *target;
995
996 for (target = current_target.beneath;
997 target != NULL;
998 target = target->beneath)
999 {
1000 if (target->to_get_thread_local_address != NULL)
1001 break;
1002 }
1003
1004 if (target != NULL
1005 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch ()))
1006 {
1007 ptid_t ptid = inferior_ptid;
1008 volatile struct gdb_exception ex;
1009
1010 TRY_CATCH (ex, RETURN_MASK_ALL)
1011 {
1012 CORE_ADDR lm_addr;
1013
1014 /* Fetch the load module address for this objfile. */
1015 lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch (),
1016 objfile);
1017 /* If it's 0, throw the appropriate exception. */
1018 if (lm_addr == 0)
1019 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1020 _("TLS load module not found"));
1021
1022 addr = target->to_get_thread_local_address (target, ptid,
1023 lm_addr, offset);
1024 }
1025 /* If an error occurred, print TLS related messages here. Otherwise,
1026 throw the error to some higher catcher. */
1027 if (ex.reason < 0)
1028 {
1029 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1030
1031 switch (ex.error)
1032 {
1033 case TLS_NO_LIBRARY_SUPPORT_ERROR:
1034 error (_("Cannot find thread-local variables "
1035 "in this thread library."));
1036 break;
1037 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1038 if (objfile_is_library)
1039 error (_("Cannot find shared library `%s' in dynamic"
1040 " linker's load module list"), objfile_name (objfile));
1041 else
1042 error (_("Cannot find executable file `%s' in dynamic"
1043 " linker's load module list"), objfile_name (objfile));
1044 break;
1045 case TLS_NOT_ALLOCATED_YET_ERROR:
1046 if (objfile_is_library)
1047 error (_("The inferior has not yet allocated storage for"
1048 " thread-local variables in\n"
1049 "the shared library `%s'\n"
1050 "for %s"),
1051 objfile_name (objfile), target_pid_to_str (ptid));
1052 else
1053 error (_("The inferior has not yet allocated storage for"
1054 " thread-local variables in\n"
1055 "the executable `%s'\n"
1056 "for %s"),
1057 objfile_name (objfile), target_pid_to_str (ptid));
1058 break;
1059 case TLS_GENERIC_ERROR:
1060 if (objfile_is_library)
1061 error (_("Cannot find thread-local storage for %s, "
1062 "shared library %s:\n%s"),
1063 target_pid_to_str (ptid),
1064 objfile_name (objfile), ex.message);
1065 else
1066 error (_("Cannot find thread-local storage for %s, "
1067 "executable file %s:\n%s"),
1068 target_pid_to_str (ptid),
1069 objfile_name (objfile), ex.message);
1070 break;
1071 default:
1072 throw_exception (ex);
1073 break;
1074 }
1075 }
1076 }
1077 /* It wouldn't be wrong here to try a gdbarch method, too; finding
1078 TLS is an ABI-specific thing. But we don't do that yet. */
1079 else
1080 error (_("Cannot find thread-local variables on this target"));
1081
1082 return addr;
1083 }
1084
1085 const char *
1086 target_xfer_status_to_string (enum target_xfer_status err)
1087 {
1088 #define CASE(X) case X: return #X
1089 switch (err)
1090 {
1091 CASE(TARGET_XFER_E_IO);
1092 CASE(TARGET_XFER_E_UNAVAILABLE);
1093 default:
1094 return "<unknown>";
1095 }
1096 #undef CASE
1097 };
1098
1099
1100 #undef MIN
1101 #define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1102
1103 /* target_read_string -- read a null terminated string, up to LEN bytes,
1104 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1105 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1106 is responsible for freeing it. Return the number of bytes successfully
1107 read. */
1108
1109 int
1110 target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
1111 {
1112 int tlen, offset, i;
1113 gdb_byte buf[4];
1114 int errcode = 0;
1115 char *buffer;
1116 int buffer_allocated;
1117 char *bufptr;
1118 unsigned int nbytes_read = 0;
1119
1120 gdb_assert (string);
1121
1122 /* Small for testing. */
1123 buffer_allocated = 4;
1124 buffer = xmalloc (buffer_allocated);
1125 bufptr = buffer;
1126
1127 while (len > 0)
1128 {
1129 tlen = MIN (len, 4 - (memaddr & 3));
1130 offset = memaddr & 3;
1131
1132 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
1133 if (errcode != 0)
1134 {
1135 /* The transfer request might have crossed the boundary to an
1136 unallocated region of memory. Retry the transfer, requesting
1137 a single byte. */
1138 tlen = 1;
1139 offset = 0;
1140 errcode = target_read_memory (memaddr, buf, 1);
1141 if (errcode != 0)
1142 goto done;
1143 }
1144
1145 if (bufptr - buffer + tlen > buffer_allocated)
1146 {
1147 unsigned int bytes;
1148
1149 bytes = bufptr - buffer;
1150 buffer_allocated *= 2;
1151 buffer = xrealloc (buffer, buffer_allocated);
1152 bufptr = buffer + bytes;
1153 }
1154
1155 for (i = 0; i < tlen; i++)
1156 {
1157 *bufptr++ = buf[i + offset];
1158 if (buf[i + offset] == '\000')
1159 {
1160 nbytes_read += i + 1;
1161 goto done;
1162 }
1163 }
1164
1165 memaddr += tlen;
1166 len -= tlen;
1167 nbytes_read += tlen;
1168 }
1169 done:
1170 *string = buffer;
1171 if (errnop != NULL)
1172 *errnop = errcode;
1173 return nbytes_read;
1174 }
1175
1176 struct target_section_table *
1177 target_get_section_table (struct target_ops *target)
1178 {
1179 struct target_ops *t;
1180
1181 if (targetdebug)
1182 fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1183
1184 for (t = target; t != NULL; t = t->beneath)
1185 if (t->to_get_section_table != NULL)
1186 return (*t->to_get_section_table) (t);
1187
1188 return NULL;
1189 }
1190
1191 /* Find a section containing ADDR. */
1192
1193 struct target_section *
1194 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1195 {
1196 struct target_section_table *table = target_get_section_table (target);
1197 struct target_section *secp;
1198
1199 if (table == NULL)
1200 return NULL;
1201
1202 for (secp = table->sections; secp < table->sections_end; secp++)
1203 {
1204 if (addr >= secp->addr && addr < secp->endaddr)
1205 return secp;
1206 }
1207 return NULL;
1208 }
1209
1210 /* Read memory from the live target, even if currently inspecting a
1211 traceframe. The return is the same as that of target_read. */
1212
1213 static enum target_xfer_status
1214 target_read_live_memory (enum target_object object,
1215 ULONGEST memaddr, gdb_byte *myaddr, ULONGEST len,
1216 ULONGEST *xfered_len)
1217 {
1218 enum target_xfer_status ret;
1219 struct cleanup *cleanup;
1220
1221 /* Switch momentarily out of tfind mode so to access live memory.
1222 Note that this must not clear global state, such as the frame
1223 cache, which must still remain valid for the previous traceframe.
1224 We may be _building_ the frame cache at this point. */
1225 cleanup = make_cleanup_restore_traceframe_number ();
1226 set_traceframe_number (-1);
1227
1228 ret = target_xfer_partial (current_target.beneath, object, NULL,
1229 myaddr, NULL, memaddr, len, xfered_len);
1230
1231 do_cleanups (cleanup);
1232 return ret;
1233 }
1234
1235 /* Using the set of read-only target sections of OPS, read live
1236 read-only memory. Note that the actual reads start from the
1237 top-most target again.
1238
1239 For interface/parameters/return description see target.h,
1240 to_xfer_partial. */
1241
1242 static enum target_xfer_status
1243 memory_xfer_live_readonly_partial (struct target_ops *ops,
1244 enum target_object object,
1245 gdb_byte *readbuf, ULONGEST memaddr,
1246 ULONGEST len, ULONGEST *xfered_len)
1247 {
1248 struct target_section *secp;
1249 struct target_section_table *table;
1250
1251 secp = target_section_by_addr (ops, memaddr);
1252 if (secp != NULL
1253 && (bfd_get_section_flags (secp->the_bfd_section->owner,
1254 secp->the_bfd_section)
1255 & SEC_READONLY))
1256 {
1257 struct target_section *p;
1258 ULONGEST memend = memaddr + len;
1259
1260 table = target_get_section_table (ops);
1261
1262 for (p = table->sections; p < table->sections_end; p++)
1263 {
1264 if (memaddr >= p->addr)
1265 {
1266 if (memend <= p->endaddr)
1267 {
1268 /* Entire transfer is within this section. */
1269 return target_read_live_memory (object, memaddr,
1270 readbuf, len, xfered_len);
1271 }
1272 else if (memaddr >= p->endaddr)
1273 {
1274 /* This section ends before the transfer starts. */
1275 continue;
1276 }
1277 else
1278 {
1279 /* This section overlaps the transfer. Just do half. */
1280 len = p->endaddr - memaddr;
1281 return target_read_live_memory (object, memaddr,
1282 readbuf, len, xfered_len);
1283 }
1284 }
1285 }
1286 }
1287
1288 return TARGET_XFER_EOF;
1289 }
1290
1291 /* Read memory from more than one valid target. A core file, for
1292 instance, could have some of memory but delegate other bits to
1293 the target below it. So, we must manually try all targets. */
1294
1295 static enum target_xfer_status
1296 raw_memory_xfer_partial (struct target_ops *ops, gdb_byte *readbuf,
1297 const gdb_byte *writebuf, ULONGEST memaddr, LONGEST len,
1298 ULONGEST *xfered_len)
1299 {
1300 enum target_xfer_status res;
1301
1302 do
1303 {
1304 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
1305 readbuf, writebuf, memaddr, len,
1306 xfered_len);
1307 if (res == TARGET_XFER_OK)
1308 break;
1309
1310 /* Stop if the target reports that the memory is not available. */
1311 if (res == TARGET_XFER_E_UNAVAILABLE)
1312 break;
1313
1314 /* We want to continue past core files to executables, but not
1315 past a running target's memory. */
1316 if (ops->to_has_all_memory (ops))
1317 break;
1318
1319 ops = ops->beneath;
1320 }
1321 while (ops != NULL);
1322
1323 return res;
1324 }
1325
1326 /* Perform a partial memory transfer.
1327 For docs see target.h, to_xfer_partial. */
1328
1329 static enum target_xfer_status
1330 memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
1331 gdb_byte *readbuf, const gdb_byte *writebuf, ULONGEST memaddr,
1332 ULONGEST len, ULONGEST *xfered_len)
1333 {
1334 enum target_xfer_status res;
1335 int reg_len;
1336 struct mem_region *region;
1337 struct inferior *inf;
1338
1339 /* For accesses to unmapped overlay sections, read directly from
1340 files. Must do this first, as MEMADDR may need adjustment. */
1341 if (readbuf != NULL && overlay_debugging)
1342 {
1343 struct obj_section *section = find_pc_overlay (memaddr);
1344
1345 if (pc_in_unmapped_range (memaddr, section))
1346 {
1347 struct target_section_table *table
1348 = target_get_section_table (ops);
1349 const char *section_name = section->the_bfd_section->name;
1350
1351 memaddr = overlay_mapped_address (memaddr, section);
1352 return section_table_xfer_memory_partial (readbuf, writebuf,
1353 memaddr, len, xfered_len,
1354 table->sections,
1355 table->sections_end,
1356 section_name);
1357 }
1358 }
1359
1360 /* Try the executable files, if "trust-readonly-sections" is set. */
1361 if (readbuf != NULL && trust_readonly)
1362 {
1363 struct target_section *secp;
1364 struct target_section_table *table;
1365
1366 secp = target_section_by_addr (ops, memaddr);
1367 if (secp != NULL
1368 && (bfd_get_section_flags (secp->the_bfd_section->owner,
1369 secp->the_bfd_section)
1370 & SEC_READONLY))
1371 {
1372 table = target_get_section_table (ops);
1373 return section_table_xfer_memory_partial (readbuf, writebuf,
1374 memaddr, len, xfered_len,
1375 table->sections,
1376 table->sections_end,
1377 NULL);
1378 }
1379 }
1380
1381 /* If reading unavailable memory in the context of traceframes, and
1382 this address falls within a read-only section, fallback to
1383 reading from live memory. */
1384 if (readbuf != NULL && get_traceframe_number () != -1)
1385 {
1386 VEC(mem_range_s) *available;
1387
1388 /* If we fail to get the set of available memory, then the
1389 target does not support querying traceframe info, and so we
1390 attempt reading from the traceframe anyway (assuming the
1391 target implements the old QTro packet then). */
1392 if (traceframe_available_memory (&available, memaddr, len))
1393 {
1394 struct cleanup *old_chain;
1395
1396 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
1397
1398 if (VEC_empty (mem_range_s, available)
1399 || VEC_index (mem_range_s, available, 0)->start != memaddr)
1400 {
1401 /* Don't read into the traceframe's available
1402 memory. */
1403 if (!VEC_empty (mem_range_s, available))
1404 {
1405 LONGEST oldlen = len;
1406
1407 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
1408 gdb_assert (len <= oldlen);
1409 }
1410
1411 do_cleanups (old_chain);
1412
1413 /* This goes through the topmost target again. */
1414 res = memory_xfer_live_readonly_partial (ops, object,
1415 readbuf, memaddr,
1416 len, xfered_len);
1417 if (res == TARGET_XFER_OK)
1418 return TARGET_XFER_OK;
1419 else
1420 {
1421 /* No use trying further, we know some memory starting
1422 at MEMADDR isn't available. */
1423 *xfered_len = len;
1424 return TARGET_XFER_E_UNAVAILABLE;
1425 }
1426 }
1427
1428 /* Don't try to read more than how much is available, in
1429 case the target implements the deprecated QTro packet to
1430 cater for older GDBs (the target's knowledge of read-only
1431 sections may be outdated by now). */
1432 len = VEC_index (mem_range_s, available, 0)->length;
1433
1434 do_cleanups (old_chain);
1435 }
1436 }
1437
1438 /* Try GDB's internal data cache. */
1439 region = lookup_mem_region (memaddr);
1440 /* region->hi == 0 means there's no upper bound. */
1441 if (memaddr + len < region->hi || region->hi == 0)
1442 reg_len = len;
1443 else
1444 reg_len = region->hi - memaddr;
1445
1446 switch (region->attrib.mode)
1447 {
1448 case MEM_RO:
1449 if (writebuf != NULL)
1450 return TARGET_XFER_E_IO;
1451 break;
1452
1453 case MEM_WO:
1454 if (readbuf != NULL)
1455 return TARGET_XFER_E_IO;
1456 break;
1457
1458 case MEM_FLASH:
1459 /* We only support writing to flash during "load" for now. */
1460 if (writebuf != NULL)
1461 error (_("Writing to flash memory forbidden in this context"));
1462 break;
1463
1464 case MEM_NONE:
1465 return TARGET_XFER_E_IO;
1466 }
1467
1468 if (!ptid_equal (inferior_ptid, null_ptid))
1469 inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1470 else
1471 inf = NULL;
1472
1473 if (inf != NULL
1474 /* The dcache reads whole cache lines; that doesn't play well
1475 with reading from a trace buffer, because reading outside of
1476 the collected memory range fails. */
1477 && get_traceframe_number () == -1
1478 && (region->attrib.cache
1479 || (stack_cache_enabled_p () && object == TARGET_OBJECT_STACK_MEMORY)
1480 || (code_cache_enabled_p () && object == TARGET_OBJECT_CODE_MEMORY)))
1481 {
1482 DCACHE *dcache = target_dcache_get_or_init ();
1483 int l;
1484
1485 if (readbuf != NULL)
1486 l = dcache_xfer_memory (ops, dcache, memaddr, readbuf, reg_len, 0);
1487 else
1488 /* FIXME drow/2006-08-09: If we're going to preserve const
1489 correctness dcache_xfer_memory should take readbuf and
1490 writebuf. */
1491 l = dcache_xfer_memory (ops, dcache, memaddr, (void *) writebuf,
1492 reg_len, 1);
1493 if (l <= 0)
1494 return TARGET_XFER_E_IO;
1495 else
1496 {
1497 *xfered_len = (ULONGEST) l;
1498 return TARGET_XFER_OK;
1499 }
1500 }
1501
1502 /* If none of those methods found the memory we wanted, fall back
1503 to a target partial transfer. Normally a single call to
1504 to_xfer_partial is enough; if it doesn't recognize an object
1505 it will call the to_xfer_partial of the next target down.
1506 But for memory this won't do. Memory is the only target
1507 object which can be read from more than one valid target.
1508 A core file, for instance, could have some of memory but
1509 delegate other bits to the target below it. So, we must
1510 manually try all targets. */
1511
1512 res = raw_memory_xfer_partial (ops, readbuf, writebuf, memaddr, reg_len,
1513 xfered_len);
1514
1515 /* Make sure the cache gets updated no matter what - if we are writing
1516 to the stack. Even if this write is not tagged as such, we still need
1517 to update the cache. */
1518
1519 if (res == TARGET_XFER_OK
1520 && inf != NULL
1521 && writebuf != NULL
1522 && target_dcache_init_p ()
1523 && !region->attrib.cache
1524 && ((stack_cache_enabled_p () && object != TARGET_OBJECT_STACK_MEMORY)
1525 || (code_cache_enabled_p () && object != TARGET_OBJECT_CODE_MEMORY)))
1526 {
1527 DCACHE *dcache = target_dcache_get ();
1528
1529 dcache_update (dcache, memaddr, (void *) writebuf, reg_len);
1530 }
1531
1532 /* If we still haven't got anything, return the last error. We
1533 give up. */
1534 return res;
1535 }
1536
1537 /* Perform a partial memory transfer. For docs see target.h,
1538 to_xfer_partial. */
1539
1540 static enum target_xfer_status
1541 memory_xfer_partial (struct target_ops *ops, enum target_object object,
1542 gdb_byte *readbuf, const gdb_byte *writebuf,
1543 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
1544 {
1545 enum target_xfer_status res;
1546
1547 /* Zero length requests are ok and require no work. */
1548 if (len == 0)
1549 return TARGET_XFER_EOF;
1550
1551 /* Fill in READBUF with breakpoint shadows, or WRITEBUF with
1552 breakpoint insns, thus hiding out from higher layers whether
1553 there are software breakpoints inserted in the code stream. */
1554 if (readbuf != NULL)
1555 {
1556 res = memory_xfer_partial_1 (ops, object, readbuf, NULL, memaddr, len,
1557 xfered_len);
1558
1559 if (res == TARGET_XFER_OK && !show_memory_breakpoints)
1560 breakpoint_xfer_memory (readbuf, NULL, NULL, memaddr, res);
1561 }
1562 else
1563 {
1564 void *buf;
1565 struct cleanup *old_chain;
1566
1567 /* A large write request is likely to be partially satisfied
1568 by memory_xfer_partial_1. We will continually malloc
1569 and free a copy of the entire write request for breakpoint
1570 shadow handling even though we only end up writing a small
1571 subset of it. Cap writes to 4KB to mitigate this. */
1572 len = min (4096, len);
1573
1574 buf = xmalloc (len);
1575 old_chain = make_cleanup (xfree, buf);
1576 memcpy (buf, writebuf, len);
1577
1578 breakpoint_xfer_memory (NULL, buf, writebuf, memaddr, len);
1579 res = memory_xfer_partial_1 (ops, object, NULL, buf, memaddr, len,
1580 xfered_len);
1581
1582 do_cleanups (old_chain);
1583 }
1584
1585 return res;
1586 }
1587
1588 static void
1589 restore_show_memory_breakpoints (void *arg)
1590 {
1591 show_memory_breakpoints = (uintptr_t) arg;
1592 }
1593
1594 struct cleanup *
1595 make_show_memory_breakpoints_cleanup (int show)
1596 {
1597 int current = show_memory_breakpoints;
1598
1599 show_memory_breakpoints = show;
1600 return make_cleanup (restore_show_memory_breakpoints,
1601 (void *) (uintptr_t) current);
1602 }
1603
1604 /* For docs see target.h, to_xfer_partial. */
1605
1606 enum target_xfer_status
1607 target_xfer_partial (struct target_ops *ops,
1608 enum target_object object, const char *annex,
1609 gdb_byte *readbuf, const gdb_byte *writebuf,
1610 ULONGEST offset, ULONGEST len,
1611 ULONGEST *xfered_len)
1612 {
1613 enum target_xfer_status retval;
1614
1615 gdb_assert (ops->to_xfer_partial != NULL);
1616
1617 /* Transfer is done when LEN is zero. */
1618 if (len == 0)
1619 return TARGET_XFER_EOF;
1620
1621 if (writebuf && !may_write_memory)
1622 error (_("Writing to memory is not allowed (addr %s, len %s)"),
1623 core_addr_to_string_nz (offset), plongest (len));
1624
1625 *xfered_len = 0;
1626
1627 /* If this is a memory transfer, let the memory-specific code
1628 have a look at it instead. Memory transfers are more
1629 complicated. */
1630 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY
1631 || object == TARGET_OBJECT_CODE_MEMORY)
1632 retval = memory_xfer_partial (ops, object, readbuf,
1633 writebuf, offset, len, xfered_len);
1634 else if (object == TARGET_OBJECT_RAW_MEMORY)
1635 {
1636 /* Request the normal memory object from other layers. */
1637 retval = raw_memory_xfer_partial (ops, readbuf, writebuf, offset, len,
1638 xfered_len);
1639 }
1640 else
1641 retval = ops->to_xfer_partial (ops, object, annex, readbuf,
1642 writebuf, offset, len, xfered_len);
1643
1644 if (targetdebug)
1645 {
1646 const unsigned char *myaddr = NULL;
1647
1648 fprintf_unfiltered (gdb_stdlog,
1649 "%s:target_xfer_partial "
1650 "(%d, %s, %s, %s, %s, %s) = %d, %s",
1651 ops->to_shortname,
1652 (int) object,
1653 (annex ? annex : "(null)"),
1654 host_address_to_string (readbuf),
1655 host_address_to_string (writebuf),
1656 core_addr_to_string_nz (offset),
1657 pulongest (len), retval,
1658 pulongest (*xfered_len));
1659
1660 if (readbuf)
1661 myaddr = readbuf;
1662 if (writebuf)
1663 myaddr = writebuf;
1664 if (retval == TARGET_XFER_OK && myaddr != NULL)
1665 {
1666 int i;
1667
1668 fputs_unfiltered (", bytes =", gdb_stdlog);
1669 for (i = 0; i < *xfered_len; i++)
1670 {
1671 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
1672 {
1673 if (targetdebug < 2 && i > 0)
1674 {
1675 fprintf_unfiltered (gdb_stdlog, " ...");
1676 break;
1677 }
1678 fprintf_unfiltered (gdb_stdlog, "\n");
1679 }
1680
1681 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1682 }
1683 }
1684
1685 fputc_unfiltered ('\n', gdb_stdlog);
1686 }
1687
1688 /* Check implementations of to_xfer_partial update *XFERED_LEN
1689 properly. Do assertion after printing debug messages, so that we
1690 can find more clues on assertion failure from debugging messages. */
1691 if (retval == TARGET_XFER_OK || retval == TARGET_XFER_E_UNAVAILABLE)
1692 gdb_assert (*xfered_len > 0);
1693
1694 return retval;
1695 }
1696
1697 /* Read LEN bytes of target memory at address MEMADDR, placing the
1698 results in GDB's memory at MYADDR. Returns either 0 for success or
1699 TARGET_XFER_E_IO if any error occurs.
1700
1701 If an error occurs, no guarantee is made about the contents of the data at
1702 MYADDR. In particular, the caller should not depend upon partial reads
1703 filling the buffer with good data. There is no way for the caller to know
1704 how much good data might have been transfered anyway. Callers that can
1705 deal with partial reads should call target_read (which will retry until
1706 it makes no progress, and then return how much was transferred). */
1707
1708 int
1709 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1710 {
1711 /* Dispatch to the topmost target, not the flattened current_target.
1712 Memory accesses check target->to_has_(all_)memory, and the
1713 flattened target doesn't inherit those. */
1714 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1715 myaddr, memaddr, len) == len)
1716 return 0;
1717 else
1718 return TARGET_XFER_E_IO;
1719 }
1720
1721 /* Like target_read_memory, but specify explicitly that this is a read
1722 from the target's raw memory. That is, this read bypasses the
1723 dcache, breakpoint shadowing, etc. */
1724
1725 int
1726 target_read_raw_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1727 {
1728 /* See comment in target_read_memory about why the request starts at
1729 current_target.beneath. */
1730 if (target_read (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1731 myaddr, memaddr, len) == len)
1732 return 0;
1733 else
1734 return TARGET_XFER_E_IO;
1735 }
1736
1737 /* Like target_read_memory, but specify explicitly that this is a read from
1738 the target's stack. This may trigger different cache behavior. */
1739
1740 int
1741 target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1742 {
1743 /* See comment in target_read_memory about why the request starts at
1744 current_target.beneath. */
1745 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1746 myaddr, memaddr, len) == len)
1747 return 0;
1748 else
1749 return TARGET_XFER_E_IO;
1750 }
1751
1752 /* Like target_read_memory, but specify explicitly that this is a read from
1753 the target's code. This may trigger different cache behavior. */
1754
1755 int
1756 target_read_code (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1757 {
1758 /* See comment in target_read_memory about why the request starts at
1759 current_target.beneath. */
1760 if (target_read (current_target.beneath, TARGET_OBJECT_CODE_MEMORY, NULL,
1761 myaddr, memaddr, len) == len)
1762 return 0;
1763 else
1764 return TARGET_XFER_E_IO;
1765 }
1766
1767 /* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1768 Returns either 0 for success or TARGET_XFER_E_IO if any
1769 error occurs. If an error occurs, no guarantee is made about how
1770 much data got written. Callers that can deal with partial writes
1771 should call target_write. */
1772
1773 int
1774 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1775 {
1776 /* See comment in target_read_memory about why the request starts at
1777 current_target.beneath. */
1778 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
1779 myaddr, memaddr, len) == len)
1780 return 0;
1781 else
1782 return TARGET_XFER_E_IO;
1783 }
1784
1785 /* Write LEN bytes from MYADDR to target raw memory at address
1786 MEMADDR. Returns either 0 for success or TARGET_XFER_E_IO
1787 if any error occurs. If an error occurs, no guarantee is made
1788 about how much data got written. Callers that can deal with
1789 partial writes should call target_write. */
1790
1791 int
1792 target_write_raw_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1793 {
1794 /* See comment in target_read_memory about why the request starts at
1795 current_target.beneath. */
1796 if (target_write (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1797 myaddr, memaddr, len) == len)
1798 return 0;
1799 else
1800 return TARGET_XFER_E_IO;
1801 }
1802
1803 /* Fetch the target's memory map. */
1804
1805 VEC(mem_region_s) *
1806 target_memory_map (void)
1807 {
1808 VEC(mem_region_s) *result;
1809 struct mem_region *last_one, *this_one;
1810 int ix;
1811 struct target_ops *t;
1812
1813 if (targetdebug)
1814 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1815
1816 for (t = current_target.beneath; t != NULL; t = t->beneath)
1817 if (t->to_memory_map != NULL)
1818 break;
1819
1820 if (t == NULL)
1821 return NULL;
1822
1823 result = t->to_memory_map (t);
1824 if (result == NULL)
1825 return NULL;
1826
1827 qsort (VEC_address (mem_region_s, result),
1828 VEC_length (mem_region_s, result),
1829 sizeof (struct mem_region), mem_region_cmp);
1830
1831 /* Check that regions do not overlap. Simultaneously assign
1832 a numbering for the "mem" commands to use to refer to
1833 each region. */
1834 last_one = NULL;
1835 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1836 {
1837 this_one->number = ix;
1838
1839 if (last_one && last_one->hi > this_one->lo)
1840 {
1841 warning (_("Overlapping regions in memory map: ignoring"));
1842 VEC_free (mem_region_s, result);
1843 return NULL;
1844 }
1845 last_one = this_one;
1846 }
1847
1848 return result;
1849 }
1850
1851 void
1852 target_flash_erase (ULONGEST address, LONGEST length)
1853 {
1854 struct target_ops *t;
1855
1856 for (t = current_target.beneath; t != NULL; t = t->beneath)
1857 if (t->to_flash_erase != NULL)
1858 {
1859 if (targetdebug)
1860 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1861 hex_string (address), phex (length, 0));
1862 t->to_flash_erase (t, address, length);
1863 return;
1864 }
1865
1866 tcomplain ();
1867 }
1868
1869 void
1870 target_flash_done (void)
1871 {
1872 struct target_ops *t;
1873
1874 for (t = current_target.beneath; t != NULL; t = t->beneath)
1875 if (t->to_flash_done != NULL)
1876 {
1877 if (targetdebug)
1878 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1879 t->to_flash_done (t);
1880 return;
1881 }
1882
1883 tcomplain ();
1884 }
1885
1886 static void
1887 show_trust_readonly (struct ui_file *file, int from_tty,
1888 struct cmd_list_element *c, const char *value)
1889 {
1890 fprintf_filtered (file,
1891 _("Mode for reading from readonly sections is %s.\n"),
1892 value);
1893 }
1894
1895 /* More generic transfers. */
1896
1897 static enum target_xfer_status
1898 default_xfer_partial (struct target_ops *ops, enum target_object object,
1899 const char *annex, gdb_byte *readbuf,
1900 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
1901 ULONGEST *xfered_len)
1902 {
1903 if (object == TARGET_OBJECT_MEMORY
1904 && ops->deprecated_xfer_memory != NULL)
1905 /* If available, fall back to the target's
1906 "deprecated_xfer_memory" method. */
1907 {
1908 int xfered = -1;
1909
1910 errno = 0;
1911 if (writebuf != NULL)
1912 {
1913 void *buffer = xmalloc (len);
1914 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1915
1916 memcpy (buffer, writebuf, len);
1917 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1918 1/*write*/, NULL, ops);
1919 do_cleanups (cleanup);
1920 }
1921 if (readbuf != NULL)
1922 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1923 0/*read*/, NULL, ops);
1924 if (xfered > 0)
1925 {
1926 *xfered_len = (ULONGEST) xfered;
1927 return TARGET_XFER_E_IO;
1928 }
1929 else if (xfered == 0 && errno == 0)
1930 /* "deprecated_xfer_memory" uses 0, cross checked against
1931 ERRNO as one indication of an error. */
1932 return TARGET_XFER_EOF;
1933 else
1934 return TARGET_XFER_E_IO;
1935 }
1936 else
1937 {
1938 gdb_assert (ops->beneath != NULL);
1939 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1940 readbuf, writebuf, offset, len,
1941 xfered_len);
1942 }
1943 }
1944
1945 /* Target vector read/write partial wrapper functions. */
1946
1947 static enum target_xfer_status
1948 target_read_partial (struct target_ops *ops,
1949 enum target_object object,
1950 const char *annex, gdb_byte *buf,
1951 ULONGEST offset, ULONGEST len,
1952 ULONGEST *xfered_len)
1953 {
1954 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len,
1955 xfered_len);
1956 }
1957
1958 static enum target_xfer_status
1959 target_write_partial (struct target_ops *ops,
1960 enum target_object object,
1961 const char *annex, const gdb_byte *buf,
1962 ULONGEST offset, LONGEST len, ULONGEST *xfered_len)
1963 {
1964 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len,
1965 xfered_len);
1966 }
1967
1968 /* Wrappers to perform the full transfer. */
1969
1970 /* For docs on target_read see target.h. */
1971
1972 LONGEST
1973 target_read (struct target_ops *ops,
1974 enum target_object object,
1975 const char *annex, gdb_byte *buf,
1976 ULONGEST offset, LONGEST len)
1977 {
1978 LONGEST xfered = 0;
1979
1980 while (xfered < len)
1981 {
1982 ULONGEST xfered_len;
1983 enum target_xfer_status status;
1984
1985 status = target_read_partial (ops, object, annex,
1986 (gdb_byte *) buf + xfered,
1987 offset + xfered, len - xfered,
1988 &xfered_len);
1989
1990 /* Call an observer, notifying them of the xfer progress? */
1991 if (status == TARGET_XFER_EOF)
1992 return xfered;
1993 else if (status == TARGET_XFER_OK)
1994 {
1995 xfered += xfered_len;
1996 QUIT;
1997 }
1998 else
1999 return -1;
2000
2001 }
2002 return len;
2003 }
2004
2005 /* Assuming that the entire [begin, end) range of memory cannot be
2006 read, try to read whatever subrange is possible to read.
2007
2008 The function returns, in RESULT, either zero or one memory block.
2009 If there's a readable subrange at the beginning, it is completely
2010 read and returned. Any further readable subrange will not be read.
2011 Otherwise, if there's a readable subrange at the end, it will be
2012 completely read and returned. Any readable subranges before it
2013 (obviously, not starting at the beginning), will be ignored. In
2014 other cases -- either no readable subrange, or readable subrange(s)
2015 that is neither at the beginning, or end, nothing is returned.
2016
2017 The purpose of this function is to handle a read across a boundary
2018 of accessible memory in a case when memory map is not available.
2019 The above restrictions are fine for this case, but will give
2020 incorrect results if the memory is 'patchy'. However, supporting
2021 'patchy' memory would require trying to read every single byte,
2022 and it seems unacceptable solution. Explicit memory map is
2023 recommended for this case -- and target_read_memory_robust will
2024 take care of reading multiple ranges then. */
2025
2026 static void
2027 read_whatever_is_readable (struct target_ops *ops,
2028 ULONGEST begin, ULONGEST end,
2029 VEC(memory_read_result_s) **result)
2030 {
2031 gdb_byte *buf = xmalloc (end - begin);
2032 ULONGEST current_begin = begin;
2033 ULONGEST current_end = end;
2034 int forward;
2035 memory_read_result_s r;
2036 ULONGEST xfered_len;
2037
2038 /* If we previously failed to read 1 byte, nothing can be done here. */
2039 if (end - begin <= 1)
2040 {
2041 xfree (buf);
2042 return;
2043 }
2044
2045 /* Check that either first or the last byte is readable, and give up
2046 if not. This heuristic is meant to permit reading accessible memory
2047 at the boundary of accessible region. */
2048 if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2049 buf, begin, 1, &xfered_len) == TARGET_XFER_OK)
2050 {
2051 forward = 1;
2052 ++current_begin;
2053 }
2054 else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2055 buf + (end-begin) - 1, end - 1, 1,
2056 &xfered_len) == TARGET_XFER_OK)
2057 {
2058 forward = 0;
2059 --current_end;
2060 }
2061 else
2062 {
2063 xfree (buf);
2064 return;
2065 }
2066
2067 /* Loop invariant is that the [current_begin, current_end) was previously
2068 found to be not readable as a whole.
2069
2070 Note loop condition -- if the range has 1 byte, we can't divide the range
2071 so there's no point trying further. */
2072 while (current_end - current_begin > 1)
2073 {
2074 ULONGEST first_half_begin, first_half_end;
2075 ULONGEST second_half_begin, second_half_end;
2076 LONGEST xfer;
2077 ULONGEST middle = current_begin + (current_end - current_begin)/2;
2078
2079 if (forward)
2080 {
2081 first_half_begin = current_begin;
2082 first_half_end = middle;
2083 second_half_begin = middle;
2084 second_half_end = current_end;
2085 }
2086 else
2087 {
2088 first_half_begin = middle;
2089 first_half_end = current_end;
2090 second_half_begin = current_begin;
2091 second_half_end = middle;
2092 }
2093
2094 xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2095 buf + (first_half_begin - begin),
2096 first_half_begin,
2097 first_half_end - first_half_begin);
2098
2099 if (xfer == first_half_end - first_half_begin)
2100 {
2101 /* This half reads up fine. So, the error must be in the
2102 other half. */
2103 current_begin = second_half_begin;
2104 current_end = second_half_end;
2105 }
2106 else
2107 {
2108 /* This half is not readable. Because we've tried one byte, we
2109 know some part of this half if actually redable. Go to the next
2110 iteration to divide again and try to read.
2111
2112 We don't handle the other half, because this function only tries
2113 to read a single readable subrange. */
2114 current_begin = first_half_begin;
2115 current_end = first_half_end;
2116 }
2117 }
2118
2119 if (forward)
2120 {
2121 /* The [begin, current_begin) range has been read. */
2122 r.begin = begin;
2123 r.end = current_begin;
2124 r.data = buf;
2125 }
2126 else
2127 {
2128 /* The [current_end, end) range has been read. */
2129 LONGEST rlen = end - current_end;
2130
2131 r.data = xmalloc (rlen);
2132 memcpy (r.data, buf + current_end - begin, rlen);
2133 r.begin = current_end;
2134 r.end = end;
2135 xfree (buf);
2136 }
2137 VEC_safe_push(memory_read_result_s, (*result), &r);
2138 }
2139
2140 void
2141 free_memory_read_result_vector (void *x)
2142 {
2143 VEC(memory_read_result_s) *v = x;
2144 memory_read_result_s *current;
2145 int ix;
2146
2147 for (ix = 0; VEC_iterate (memory_read_result_s, v, ix, current); ++ix)
2148 {
2149 xfree (current->data);
2150 }
2151 VEC_free (memory_read_result_s, v);
2152 }
2153
2154 VEC(memory_read_result_s) *
2155 read_memory_robust (struct target_ops *ops, ULONGEST offset, LONGEST len)
2156 {
2157 VEC(memory_read_result_s) *result = 0;
2158
2159 LONGEST xfered = 0;
2160 while (xfered < len)
2161 {
2162 struct mem_region *region = lookup_mem_region (offset + xfered);
2163 LONGEST rlen;
2164
2165 /* If there is no explicit region, a fake one should be created. */
2166 gdb_assert (region);
2167
2168 if (region->hi == 0)
2169 rlen = len - xfered;
2170 else
2171 rlen = region->hi - offset;
2172
2173 if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
2174 {
2175 /* Cannot read this region. Note that we can end up here only
2176 if the region is explicitly marked inaccessible, or
2177 'inaccessible-by-default' is in effect. */
2178 xfered += rlen;
2179 }
2180 else
2181 {
2182 LONGEST to_read = min (len - xfered, rlen);
2183 gdb_byte *buffer = (gdb_byte *)xmalloc (to_read);
2184
2185 LONGEST xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2186 (gdb_byte *) buffer,
2187 offset + xfered, to_read);
2188 /* Call an observer, notifying them of the xfer progress? */
2189 if (xfer <= 0)
2190 {
2191 /* Got an error reading full chunk. See if maybe we can read
2192 some subrange. */
2193 xfree (buffer);
2194 read_whatever_is_readable (ops, offset + xfered,
2195 offset + xfered + to_read, &result);
2196 xfered += to_read;
2197 }
2198 else
2199 {
2200 struct memory_read_result r;
2201 r.data = buffer;
2202 r.begin = offset + xfered;
2203 r.end = r.begin + xfer;
2204 VEC_safe_push (memory_read_result_s, result, &r);
2205 xfered += xfer;
2206 }
2207 QUIT;
2208 }
2209 }
2210 return result;
2211 }
2212
2213
2214 /* An alternative to target_write with progress callbacks. */
2215
2216 LONGEST
2217 target_write_with_progress (struct target_ops *ops,
2218 enum target_object object,
2219 const char *annex, const gdb_byte *buf,
2220 ULONGEST offset, LONGEST len,
2221 void (*progress) (ULONGEST, void *), void *baton)
2222 {
2223 LONGEST xfered = 0;
2224
2225 /* Give the progress callback a chance to set up. */
2226 if (progress)
2227 (*progress) (0, baton);
2228
2229 while (xfered < len)
2230 {
2231 ULONGEST xfered_len;
2232 enum target_xfer_status status;
2233
2234 status = target_write_partial (ops, object, annex,
2235 (gdb_byte *) buf + xfered,
2236 offset + xfered, len - xfered,
2237 &xfered_len);
2238
2239 if (status == TARGET_XFER_EOF)
2240 return xfered;
2241 if (TARGET_XFER_STATUS_ERROR_P (status))
2242 return -1;
2243
2244 gdb_assert (status == TARGET_XFER_OK);
2245 if (progress)
2246 (*progress) (xfered_len, baton);
2247
2248 xfered += xfered_len;
2249 QUIT;
2250 }
2251 return len;
2252 }
2253
2254 /* For docs on target_write see target.h. */
2255
2256 LONGEST
2257 target_write (struct target_ops *ops,
2258 enum target_object object,
2259 const char *annex, const gdb_byte *buf,
2260 ULONGEST offset, LONGEST len)
2261 {
2262 return target_write_with_progress (ops, object, annex, buf, offset, len,
2263 NULL, NULL);
2264 }
2265
2266 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2267 the size of the transferred data. PADDING additional bytes are
2268 available in *BUF_P. This is a helper function for
2269 target_read_alloc; see the declaration of that function for more
2270 information. */
2271
2272 static LONGEST
2273 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
2274 const char *annex, gdb_byte **buf_p, int padding)
2275 {
2276 size_t buf_alloc, buf_pos;
2277 gdb_byte *buf;
2278
2279 /* This function does not have a length parameter; it reads the
2280 entire OBJECT). Also, it doesn't support objects fetched partly
2281 from one target and partly from another (in a different stratum,
2282 e.g. a core file and an executable). Both reasons make it
2283 unsuitable for reading memory. */
2284 gdb_assert (object != TARGET_OBJECT_MEMORY);
2285
2286 /* Start by reading up to 4K at a time. The target will throttle
2287 this number down if necessary. */
2288 buf_alloc = 4096;
2289 buf = xmalloc (buf_alloc);
2290 buf_pos = 0;
2291 while (1)
2292 {
2293 ULONGEST xfered_len;
2294 enum target_xfer_status status;
2295
2296 status = target_read_partial (ops, object, annex, &buf[buf_pos],
2297 buf_pos, buf_alloc - buf_pos - padding,
2298 &xfered_len);
2299
2300 if (status == TARGET_XFER_EOF)
2301 {
2302 /* Read all there was. */
2303 if (buf_pos == 0)
2304 xfree (buf);
2305 else
2306 *buf_p = buf;
2307 return buf_pos;
2308 }
2309 else if (status != TARGET_XFER_OK)
2310 {
2311 /* An error occurred. */
2312 xfree (buf);
2313 return TARGET_XFER_E_IO;
2314 }
2315
2316 buf_pos += xfered_len;
2317
2318 /* If the buffer is filling up, expand it. */
2319 if (buf_alloc < buf_pos * 2)
2320 {
2321 buf_alloc *= 2;
2322 buf = xrealloc (buf, buf_alloc);
2323 }
2324
2325 QUIT;
2326 }
2327 }
2328
2329 /* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2330 the size of the transferred data. See the declaration in "target.h"
2331 function for more information about the return value. */
2332
2333 LONGEST
2334 target_read_alloc (struct target_ops *ops, enum target_object object,
2335 const char *annex, gdb_byte **buf_p)
2336 {
2337 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
2338 }
2339
2340 /* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
2341 returned as a string, allocated using xmalloc. If an error occurs
2342 or the transfer is unsupported, NULL is returned. Empty objects
2343 are returned as allocated but empty strings. A warning is issued
2344 if the result contains any embedded NUL bytes. */
2345
2346 char *
2347 target_read_stralloc (struct target_ops *ops, enum target_object object,
2348 const char *annex)
2349 {
2350 gdb_byte *buffer;
2351 char *bufstr;
2352 LONGEST i, transferred;
2353
2354 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
2355 bufstr = (char *) buffer;
2356
2357 if (transferred < 0)
2358 return NULL;
2359
2360 if (transferred == 0)
2361 return xstrdup ("");
2362
2363 bufstr[transferred] = 0;
2364
2365 /* Check for embedded NUL bytes; but allow trailing NULs. */
2366 for (i = strlen (bufstr); i < transferred; i++)
2367 if (bufstr[i] != 0)
2368 {
2369 warning (_("target object %d, annex %s, "
2370 "contained unexpected null characters"),
2371 (int) object, annex ? annex : "(none)");
2372 break;
2373 }
2374
2375 return bufstr;
2376 }
2377
2378 /* Memory transfer methods. */
2379
2380 void
2381 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
2382 LONGEST len)
2383 {
2384 /* This method is used to read from an alternate, non-current
2385 target. This read must bypass the overlay support (as symbols
2386 don't match this target), and GDB's internal cache (wrong cache
2387 for this target). */
2388 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
2389 != len)
2390 memory_error (TARGET_XFER_E_IO, addr);
2391 }
2392
2393 ULONGEST
2394 get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2395 int len, enum bfd_endian byte_order)
2396 {
2397 gdb_byte buf[sizeof (ULONGEST)];
2398
2399 gdb_assert (len <= sizeof (buf));
2400 get_target_memory (ops, addr, buf, len);
2401 return extract_unsigned_integer (buf, len, byte_order);
2402 }
2403
2404 /* See target.h. */
2405
2406 int
2407 target_insert_breakpoint (struct gdbarch *gdbarch,
2408 struct bp_target_info *bp_tgt)
2409 {
2410 if (!may_insert_breakpoints)
2411 {
2412 warning (_("May not insert breakpoints"));
2413 return 1;
2414 }
2415
2416 return current_target.to_insert_breakpoint (&current_target,
2417 gdbarch, bp_tgt);
2418 }
2419
2420 /* See target.h. */
2421
2422 int
2423 target_remove_breakpoint (struct gdbarch *gdbarch,
2424 struct bp_target_info *bp_tgt)
2425 {
2426 /* This is kind of a weird case to handle, but the permission might
2427 have been changed after breakpoints were inserted - in which case
2428 we should just take the user literally and assume that any
2429 breakpoints should be left in place. */
2430 if (!may_insert_breakpoints)
2431 {
2432 warning (_("May not remove breakpoints"));
2433 return 1;
2434 }
2435
2436 return current_target.to_remove_breakpoint (&current_target,
2437 gdbarch, bp_tgt);
2438 }
2439
2440 static void
2441 target_info (char *args, int from_tty)
2442 {
2443 struct target_ops *t;
2444 int has_all_mem = 0;
2445
2446 if (symfile_objfile != NULL)
2447 printf_unfiltered (_("Symbols from \"%s\".\n"),
2448 objfile_name (symfile_objfile));
2449
2450 for (t = target_stack; t != NULL; t = t->beneath)
2451 {
2452 if (!(*t->to_has_memory) (t))
2453 continue;
2454
2455 if ((int) (t->to_stratum) <= (int) dummy_stratum)
2456 continue;
2457 if (has_all_mem)
2458 printf_unfiltered (_("\tWhile running this, "
2459 "GDB does not access memory from...\n"));
2460 printf_unfiltered ("%s:\n", t->to_longname);
2461 (t->to_files_info) (t);
2462 has_all_mem = (*t->to_has_all_memory) (t);
2463 }
2464 }
2465
2466 /* This function is called before any new inferior is created, e.g.
2467 by running a program, attaching, or connecting to a target.
2468 It cleans up any state from previous invocations which might
2469 change between runs. This is a subset of what target_preopen
2470 resets (things which might change between targets). */
2471
2472 void
2473 target_pre_inferior (int from_tty)
2474 {
2475 /* Clear out solib state. Otherwise the solib state of the previous
2476 inferior might have survived and is entirely wrong for the new
2477 target. This has been observed on GNU/Linux using glibc 2.3. How
2478 to reproduce:
2479
2480 bash$ ./foo&
2481 [1] 4711
2482 bash$ ./foo&
2483 [1] 4712
2484 bash$ gdb ./foo
2485 [...]
2486 (gdb) attach 4711
2487 (gdb) detach
2488 (gdb) attach 4712
2489 Cannot access memory at address 0xdeadbeef
2490 */
2491
2492 /* In some OSs, the shared library list is the same/global/shared
2493 across inferiors. If code is shared between processes, so are
2494 memory regions and features. */
2495 if (!gdbarch_has_global_solist (target_gdbarch ()))
2496 {
2497 no_shared_libraries (NULL, from_tty);
2498
2499 invalidate_target_mem_regions ();
2500
2501 target_clear_description ();
2502 }
2503
2504 agent_capability_invalidate ();
2505 }
2506
2507 /* Callback for iterate_over_inferiors. Gets rid of the given
2508 inferior. */
2509
2510 static int
2511 dispose_inferior (struct inferior *inf, void *args)
2512 {
2513 struct thread_info *thread;
2514
2515 thread = any_thread_of_process (inf->pid);
2516 if (thread)
2517 {
2518 switch_to_thread (thread->ptid);
2519
2520 /* Core inferiors actually should be detached, not killed. */
2521 if (target_has_execution)
2522 target_kill ();
2523 else
2524 target_detach (NULL, 0);
2525 }
2526
2527 return 0;
2528 }
2529
2530 /* This is to be called by the open routine before it does
2531 anything. */
2532
2533 void
2534 target_preopen (int from_tty)
2535 {
2536 dont_repeat ();
2537
2538 if (have_inferiors ())
2539 {
2540 if (!from_tty
2541 || !have_live_inferiors ()
2542 || query (_("A program is being debugged already. Kill it? ")))
2543 iterate_over_inferiors (dispose_inferior, NULL);
2544 else
2545 error (_("Program not killed."));
2546 }
2547
2548 /* Calling target_kill may remove the target from the stack. But if
2549 it doesn't (which seems like a win for UDI), remove it now. */
2550 /* Leave the exec target, though. The user may be switching from a
2551 live process to a core of the same program. */
2552 pop_all_targets_above (file_stratum);
2553
2554 target_pre_inferior (from_tty);
2555 }
2556
2557 /* Detach a target after doing deferred register stores. */
2558
2559 void
2560 target_detach (const char *args, int from_tty)
2561 {
2562 struct target_ops* t;
2563
2564 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
2565 /* Don't remove global breakpoints here. They're removed on
2566 disconnection from the target. */
2567 ;
2568 else
2569 /* If we're in breakpoints-always-inserted mode, have to remove
2570 them before detaching. */
2571 remove_breakpoints_pid (ptid_get_pid (inferior_ptid));
2572
2573 prepare_for_detach ();
2574
2575 current_target.to_detach (&current_target, args, from_tty);
2576 if (targetdebug)
2577 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2578 args, from_tty);
2579 }
2580
2581 void
2582 target_disconnect (char *args, int from_tty)
2583 {
2584 struct target_ops *t;
2585
2586 /* If we're in breakpoints-always-inserted mode or if breakpoints
2587 are global across processes, we have to remove them before
2588 disconnecting. */
2589 remove_breakpoints ();
2590
2591 for (t = current_target.beneath; t != NULL; t = t->beneath)
2592 if (t->to_disconnect != NULL)
2593 {
2594 if (targetdebug)
2595 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2596 args, from_tty);
2597 t->to_disconnect (t, args, from_tty);
2598 return;
2599 }
2600
2601 tcomplain ();
2602 }
2603
2604 ptid_t
2605 target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
2606 {
2607 struct target_ops *t;
2608 ptid_t retval = (current_target.to_wait) (&current_target, ptid,
2609 status, options);
2610
2611 if (targetdebug)
2612 {
2613 char *status_string;
2614 char *options_string;
2615
2616 status_string = target_waitstatus_to_string (status);
2617 options_string = target_options_to_string (options);
2618 fprintf_unfiltered (gdb_stdlog,
2619 "target_wait (%d, status, options={%s})"
2620 " = %d, %s\n",
2621 ptid_get_pid (ptid), options_string,
2622 ptid_get_pid (retval), status_string);
2623 xfree (status_string);
2624 xfree (options_string);
2625 }
2626
2627 return retval;
2628 }
2629
2630 char *
2631 target_pid_to_str (ptid_t ptid)
2632 {
2633 struct target_ops *t;
2634
2635 for (t = current_target.beneath; t != NULL; t = t->beneath)
2636 {
2637 if (t->to_pid_to_str != NULL)
2638 return (*t->to_pid_to_str) (t, ptid);
2639 }
2640
2641 return normal_pid_to_str (ptid);
2642 }
2643
2644 char *
2645 target_thread_name (struct thread_info *info)
2646 {
2647 return current_target.to_thread_name (&current_target, info);
2648 }
2649
2650 void
2651 target_resume (ptid_t ptid, int step, enum gdb_signal signal)
2652 {
2653 struct target_ops *t;
2654
2655 target_dcache_invalidate ();
2656
2657 current_target.to_resume (&current_target, ptid, step, signal);
2658 if (targetdebug)
2659 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2660 ptid_get_pid (ptid),
2661 step ? "step" : "continue",
2662 gdb_signal_to_name (signal));
2663
2664 registers_changed_ptid (ptid);
2665 set_executing (ptid, 1);
2666 set_running (ptid, 1);
2667 clear_inline_frame_state (ptid);
2668 }
2669
2670 void
2671 target_pass_signals (int numsigs, unsigned char *pass_signals)
2672 {
2673 struct target_ops *t;
2674
2675 for (t = current_target.beneath; t != NULL; t = t->beneath)
2676 {
2677 if (t->to_pass_signals != NULL)
2678 {
2679 if (targetdebug)
2680 {
2681 int i;
2682
2683 fprintf_unfiltered (gdb_stdlog, "target_pass_signals (%d, {",
2684 numsigs);
2685
2686 for (i = 0; i < numsigs; i++)
2687 if (pass_signals[i])
2688 fprintf_unfiltered (gdb_stdlog, " %s",
2689 gdb_signal_to_name (i));
2690
2691 fprintf_unfiltered (gdb_stdlog, " })\n");
2692 }
2693
2694 (*t->to_pass_signals) (t, numsigs, pass_signals);
2695 return;
2696 }
2697 }
2698 }
2699
2700 void
2701 target_program_signals (int numsigs, unsigned char *program_signals)
2702 {
2703 struct target_ops *t;
2704
2705 for (t = current_target.beneath; t != NULL; t = t->beneath)
2706 {
2707 if (t->to_program_signals != NULL)
2708 {
2709 if (targetdebug)
2710 {
2711 int i;
2712
2713 fprintf_unfiltered (gdb_stdlog, "target_program_signals (%d, {",
2714 numsigs);
2715
2716 for (i = 0; i < numsigs; i++)
2717 if (program_signals[i])
2718 fprintf_unfiltered (gdb_stdlog, " %s",
2719 gdb_signal_to_name (i));
2720
2721 fprintf_unfiltered (gdb_stdlog, " })\n");
2722 }
2723
2724 (*t->to_program_signals) (t, numsigs, program_signals);
2725 return;
2726 }
2727 }
2728 }
2729
2730 /* Look through the list of possible targets for a target that can
2731 follow forks. */
2732
2733 int
2734 target_follow_fork (int follow_child, int detach_fork)
2735 {
2736 struct target_ops *t;
2737
2738 for (t = current_target.beneath; t != NULL; t = t->beneath)
2739 {
2740 if (t->to_follow_fork != NULL)
2741 {
2742 int retval = t->to_follow_fork (t, follow_child, detach_fork);
2743
2744 if (targetdebug)
2745 fprintf_unfiltered (gdb_stdlog,
2746 "target_follow_fork (%d, %d) = %d\n",
2747 follow_child, detach_fork, retval);
2748 return retval;
2749 }
2750 }
2751
2752 /* Some target returned a fork event, but did not know how to follow it. */
2753 internal_error (__FILE__, __LINE__,
2754 _("could not find a target to follow fork"));
2755 }
2756
2757 void
2758 target_mourn_inferior (void)
2759 {
2760 struct target_ops *t;
2761
2762 for (t = current_target.beneath; t != NULL; t = t->beneath)
2763 {
2764 if (t->to_mourn_inferior != NULL)
2765 {
2766 t->to_mourn_inferior (t);
2767 if (targetdebug)
2768 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
2769
2770 /* We no longer need to keep handles on any of the object files.
2771 Make sure to release them to avoid unnecessarily locking any
2772 of them while we're not actually debugging. */
2773 bfd_cache_close_all ();
2774
2775 return;
2776 }
2777 }
2778
2779 internal_error (__FILE__, __LINE__,
2780 _("could not find a target to follow mourn inferior"));
2781 }
2782
2783 /* Look for a target which can describe architectural features, starting
2784 from TARGET. If we find one, return its description. */
2785
2786 const struct target_desc *
2787 target_read_description (struct target_ops *target)
2788 {
2789 struct target_ops *t;
2790
2791 for (t = target; t != NULL; t = t->beneath)
2792 if (t->to_read_description != NULL)
2793 {
2794 const struct target_desc *tdesc;
2795
2796 tdesc = t->to_read_description (t);
2797 if (tdesc)
2798 return tdesc;
2799 }
2800
2801 return NULL;
2802 }
2803
2804 /* The default implementation of to_search_memory.
2805 This implements a basic search of memory, reading target memory and
2806 performing the search here (as opposed to performing the search in on the
2807 target side with, for example, gdbserver). */
2808
2809 int
2810 simple_search_memory (struct target_ops *ops,
2811 CORE_ADDR start_addr, ULONGEST search_space_len,
2812 const gdb_byte *pattern, ULONGEST pattern_len,
2813 CORE_ADDR *found_addrp)
2814 {
2815 /* NOTE: also defined in find.c testcase. */
2816 #define SEARCH_CHUNK_SIZE 16000
2817 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2818 /* Buffer to hold memory contents for searching. */
2819 gdb_byte *search_buf;
2820 unsigned search_buf_size;
2821 struct cleanup *old_cleanups;
2822
2823 search_buf_size = chunk_size + pattern_len - 1;
2824
2825 /* No point in trying to allocate a buffer larger than the search space. */
2826 if (search_space_len < search_buf_size)
2827 search_buf_size = search_space_len;
2828
2829 search_buf = malloc (search_buf_size);
2830 if (search_buf == NULL)
2831 error (_("Unable to allocate memory to perform the search."));
2832 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2833
2834 /* Prime the search buffer. */
2835
2836 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2837 search_buf, start_addr, search_buf_size) != search_buf_size)
2838 {
2839 warning (_("Unable to access %s bytes of target "
2840 "memory at %s, halting search."),
2841 pulongest (search_buf_size), hex_string (start_addr));
2842 do_cleanups (old_cleanups);
2843 return -1;
2844 }
2845
2846 /* Perform the search.
2847
2848 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2849 When we've scanned N bytes we copy the trailing bytes to the start and
2850 read in another N bytes. */
2851
2852 while (search_space_len >= pattern_len)
2853 {
2854 gdb_byte *found_ptr;
2855 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2856
2857 found_ptr = memmem (search_buf, nr_search_bytes,
2858 pattern, pattern_len);
2859
2860 if (found_ptr != NULL)
2861 {
2862 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
2863
2864 *found_addrp = found_addr;
2865 do_cleanups (old_cleanups);
2866 return 1;
2867 }
2868
2869 /* Not found in this chunk, skip to next chunk. */
2870
2871 /* Don't let search_space_len wrap here, it's unsigned. */
2872 if (search_space_len >= chunk_size)
2873 search_space_len -= chunk_size;
2874 else
2875 search_space_len = 0;
2876
2877 if (search_space_len >= pattern_len)
2878 {
2879 unsigned keep_len = search_buf_size - chunk_size;
2880 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
2881 int nr_to_read;
2882
2883 /* Copy the trailing part of the previous iteration to the front
2884 of the buffer for the next iteration. */
2885 gdb_assert (keep_len == pattern_len - 1);
2886 memcpy (search_buf, search_buf + chunk_size, keep_len);
2887
2888 nr_to_read = min (search_space_len - keep_len, chunk_size);
2889
2890 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2891 search_buf + keep_len, read_addr,
2892 nr_to_read) != nr_to_read)
2893 {
2894 warning (_("Unable to access %s bytes of target "
2895 "memory at %s, halting search."),
2896 plongest (nr_to_read),
2897 hex_string (read_addr));
2898 do_cleanups (old_cleanups);
2899 return -1;
2900 }
2901
2902 start_addr += chunk_size;
2903 }
2904 }
2905
2906 /* Not found. */
2907
2908 do_cleanups (old_cleanups);
2909 return 0;
2910 }
2911
2912 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2913 sequence of bytes in PATTERN with length PATTERN_LEN.
2914
2915 The result is 1 if found, 0 if not found, and -1 if there was an error
2916 requiring halting of the search (e.g. memory read error).
2917 If the pattern is found the address is recorded in FOUND_ADDRP. */
2918
2919 int
2920 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2921 const gdb_byte *pattern, ULONGEST pattern_len,
2922 CORE_ADDR *found_addrp)
2923 {
2924 struct target_ops *t;
2925 int found;
2926
2927 /* We don't use INHERIT to set current_target.to_search_memory,
2928 so we have to scan the target stack and handle targetdebug
2929 ourselves. */
2930
2931 if (targetdebug)
2932 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2933 hex_string (start_addr));
2934
2935 for (t = current_target.beneath; t != NULL; t = t->beneath)
2936 if (t->to_search_memory != NULL)
2937 break;
2938
2939 if (t != NULL)
2940 {
2941 found = t->to_search_memory (t, start_addr, search_space_len,
2942 pattern, pattern_len, found_addrp);
2943 }
2944 else
2945 {
2946 /* If a special version of to_search_memory isn't available, use the
2947 simple version. */
2948 found = simple_search_memory (current_target.beneath,
2949 start_addr, search_space_len,
2950 pattern, pattern_len, found_addrp);
2951 }
2952
2953 if (targetdebug)
2954 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
2955
2956 return found;
2957 }
2958
2959 /* Look through the currently pushed targets. If none of them will
2960 be able to restart the currently running process, issue an error
2961 message. */
2962
2963 void
2964 target_require_runnable (void)
2965 {
2966 struct target_ops *t;
2967
2968 for (t = target_stack; t != NULL; t = t->beneath)
2969 {
2970 /* If this target knows how to create a new program, then
2971 assume we will still be able to after killing the current
2972 one. Either killing and mourning will not pop T, or else
2973 find_default_run_target will find it again. */
2974 if (t->to_create_inferior != NULL)
2975 return;
2976
2977 /* Do not worry about thread_stratum targets that can not
2978 create inferiors. Assume they will be pushed again if
2979 necessary, and continue to the process_stratum. */
2980 if (t->to_stratum == thread_stratum
2981 || t->to_stratum == arch_stratum)
2982 continue;
2983
2984 error (_("The \"%s\" target does not support \"run\". "
2985 "Try \"help target\" or \"continue\"."),
2986 t->to_shortname);
2987 }
2988
2989 /* This function is only called if the target is running. In that
2990 case there should have been a process_stratum target and it
2991 should either know how to create inferiors, or not... */
2992 internal_error (__FILE__, __LINE__, _("No targets found"));
2993 }
2994
2995 /* Look through the list of possible targets for a target that can
2996 execute a run or attach command without any other data. This is
2997 used to locate the default process stratum.
2998
2999 If DO_MESG is not NULL, the result is always valid (error() is
3000 called for errors); else, return NULL on error. */
3001
3002 static struct target_ops *
3003 find_default_run_target (char *do_mesg)
3004 {
3005 struct target_ops **t;
3006 struct target_ops *runable = NULL;
3007 int count;
3008
3009 count = 0;
3010
3011 for (t = target_structs; t < target_structs + target_struct_size;
3012 ++t)
3013 {
3014 if ((*t)->to_can_run && target_can_run (*t))
3015 {
3016 runable = *t;
3017 ++count;
3018 }
3019 }
3020
3021 if (count != 1)
3022 {
3023 if (do_mesg)
3024 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
3025 else
3026 return NULL;
3027 }
3028
3029 return runable;
3030 }
3031
3032 void
3033 find_default_attach (struct target_ops *ops, char *args, int from_tty)
3034 {
3035 struct target_ops *t;
3036
3037 t = find_default_run_target ("attach");
3038 (t->to_attach) (t, args, from_tty);
3039 return;
3040 }
3041
3042 void
3043 find_default_create_inferior (struct target_ops *ops,
3044 char *exec_file, char *allargs, char **env,
3045 int from_tty)
3046 {
3047 struct target_ops *t;
3048
3049 t = find_default_run_target ("run");
3050 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
3051 return;
3052 }
3053
3054 static int
3055 find_default_can_async_p (struct target_ops *ignore)
3056 {
3057 struct target_ops *t;
3058
3059 /* This may be called before the target is pushed on the stack;
3060 look for the default process stratum. If there's none, gdb isn't
3061 configured with a native debugger, and target remote isn't
3062 connected yet. */
3063 t = find_default_run_target (NULL);
3064 if (t && t->to_can_async_p != delegate_can_async_p)
3065 return (t->to_can_async_p) (t);
3066 return 0;
3067 }
3068
3069 static int
3070 find_default_is_async_p (struct target_ops *ignore)
3071 {
3072 struct target_ops *t;
3073
3074 /* This may be called before the target is pushed on the stack;
3075 look for the default process stratum. If there's none, gdb isn't
3076 configured with a native debugger, and target remote isn't
3077 connected yet. */
3078 t = find_default_run_target (NULL);
3079 if (t && t->to_is_async_p != delegate_is_async_p)
3080 return (t->to_is_async_p) (t);
3081 return 0;
3082 }
3083
3084 static int
3085 find_default_supports_non_stop (struct target_ops *self)
3086 {
3087 struct target_ops *t;
3088
3089 t = find_default_run_target (NULL);
3090 if (t && t->to_supports_non_stop)
3091 return (t->to_supports_non_stop) (t);
3092 return 0;
3093 }
3094
3095 int
3096 target_supports_non_stop (void)
3097 {
3098 struct target_ops *t;
3099
3100 for (t = &current_target; t != NULL; t = t->beneath)
3101 if (t->to_supports_non_stop)
3102 return t->to_supports_non_stop (t);
3103
3104 return 0;
3105 }
3106
3107 /* Implement the "info proc" command. */
3108
3109 int
3110 target_info_proc (char *args, enum info_proc_what what)
3111 {
3112 struct target_ops *t;
3113
3114 /* If we're already connected to something that can get us OS
3115 related data, use it. Otherwise, try using the native
3116 target. */
3117 if (current_target.to_stratum >= process_stratum)
3118 t = current_target.beneath;
3119 else
3120 t = find_default_run_target (NULL);
3121
3122 for (; t != NULL; t = t->beneath)
3123 {
3124 if (t->to_info_proc != NULL)
3125 {
3126 t->to_info_proc (t, args, what);
3127
3128 if (targetdebug)
3129 fprintf_unfiltered (gdb_stdlog,
3130 "target_info_proc (\"%s\", %d)\n", args, what);
3131
3132 return 1;
3133 }
3134 }
3135
3136 return 0;
3137 }
3138
3139 static int
3140 find_default_supports_disable_randomization (struct target_ops *self)
3141 {
3142 struct target_ops *t;
3143
3144 t = find_default_run_target (NULL);
3145 if (t && t->to_supports_disable_randomization)
3146 return (t->to_supports_disable_randomization) (t);
3147 return 0;
3148 }
3149
3150 int
3151 target_supports_disable_randomization (void)
3152 {
3153 struct target_ops *t;
3154
3155 for (t = &current_target; t != NULL; t = t->beneath)
3156 if (t->to_supports_disable_randomization)
3157 return t->to_supports_disable_randomization (t);
3158
3159 return 0;
3160 }
3161
3162 char *
3163 target_get_osdata (const char *type)
3164 {
3165 struct target_ops *t;
3166
3167 /* If we're already connected to something that can get us OS
3168 related data, use it. Otherwise, try using the native
3169 target. */
3170 if (current_target.to_stratum >= process_stratum)
3171 t = current_target.beneath;
3172 else
3173 t = find_default_run_target ("get OS data");
3174
3175 if (!t)
3176 return NULL;
3177
3178 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
3179 }
3180
3181 /* Determine the current address space of thread PTID. */
3182
3183 struct address_space *
3184 target_thread_address_space (ptid_t ptid)
3185 {
3186 struct address_space *aspace;
3187 struct inferior *inf;
3188 struct target_ops *t;
3189
3190 for (t = current_target.beneath; t != NULL; t = t->beneath)
3191 {
3192 if (t->to_thread_address_space != NULL)
3193 {
3194 aspace = t->to_thread_address_space (t, ptid);
3195 gdb_assert (aspace);
3196
3197 if (targetdebug)
3198 fprintf_unfiltered (gdb_stdlog,
3199 "target_thread_address_space (%s) = %d\n",
3200 target_pid_to_str (ptid),
3201 address_space_num (aspace));
3202 return aspace;
3203 }
3204 }
3205
3206 /* Fall-back to the "main" address space of the inferior. */
3207 inf = find_inferior_pid (ptid_get_pid (ptid));
3208
3209 if (inf == NULL || inf->aspace == NULL)
3210 internal_error (__FILE__, __LINE__,
3211 _("Can't determine the current "
3212 "address space of thread %s\n"),
3213 target_pid_to_str (ptid));
3214
3215 return inf->aspace;
3216 }
3217
3218
3219 /* Target file operations. */
3220
3221 static struct target_ops *
3222 default_fileio_target (void)
3223 {
3224 /* If we're already connected to something that can perform
3225 file I/O, use it. Otherwise, try using the native target. */
3226 if (current_target.to_stratum >= process_stratum)
3227 return current_target.beneath;
3228 else
3229 return find_default_run_target ("file I/O");
3230 }
3231
3232 /* Open FILENAME on the target, using FLAGS and MODE. Return a
3233 target file descriptor, or -1 if an error occurs (and set
3234 *TARGET_ERRNO). */
3235 int
3236 target_fileio_open (const char *filename, int flags, int mode,
3237 int *target_errno)
3238 {
3239 struct target_ops *t;
3240
3241 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3242 {
3243 if (t->to_fileio_open != NULL)
3244 {
3245 int fd = t->to_fileio_open (t, filename, flags, mode, target_errno);
3246
3247 if (targetdebug)
3248 fprintf_unfiltered (gdb_stdlog,
3249 "target_fileio_open (%s,0x%x,0%o) = %d (%d)\n",
3250 filename, flags, mode,
3251 fd, fd != -1 ? 0 : *target_errno);
3252 return fd;
3253 }
3254 }
3255
3256 *target_errno = FILEIO_ENOSYS;
3257 return -1;
3258 }
3259
3260 /* Write up to LEN bytes from WRITE_BUF to FD on the target.
3261 Return the number of bytes written, or -1 if an error occurs
3262 (and set *TARGET_ERRNO). */
3263 int
3264 target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3265 ULONGEST offset, int *target_errno)
3266 {
3267 struct target_ops *t;
3268
3269 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3270 {
3271 if (t->to_fileio_pwrite != NULL)
3272 {
3273 int ret = t->to_fileio_pwrite (t, fd, write_buf, len, offset,
3274 target_errno);
3275
3276 if (targetdebug)
3277 fprintf_unfiltered (gdb_stdlog,
3278 "target_fileio_pwrite (%d,...,%d,%s) "
3279 "= %d (%d)\n",
3280 fd, len, pulongest (offset),
3281 ret, ret != -1 ? 0 : *target_errno);
3282 return ret;
3283 }
3284 }
3285
3286 *target_errno = FILEIO_ENOSYS;
3287 return -1;
3288 }
3289
3290 /* Read up to LEN bytes FD on the target into READ_BUF.
3291 Return the number of bytes read, or -1 if an error occurs
3292 (and set *TARGET_ERRNO). */
3293 int
3294 target_fileio_pread (int fd, gdb_byte *read_buf, int len,
3295 ULONGEST offset, int *target_errno)
3296 {
3297 struct target_ops *t;
3298
3299 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3300 {
3301 if (t->to_fileio_pread != NULL)
3302 {
3303 int ret = t->to_fileio_pread (t, fd, read_buf, len, offset,
3304 target_errno);
3305
3306 if (targetdebug)
3307 fprintf_unfiltered (gdb_stdlog,
3308 "target_fileio_pread (%d,...,%d,%s) "
3309 "= %d (%d)\n",
3310 fd, len, pulongest (offset),
3311 ret, ret != -1 ? 0 : *target_errno);
3312 return ret;
3313 }
3314 }
3315
3316 *target_errno = FILEIO_ENOSYS;
3317 return -1;
3318 }
3319
3320 /* Close FD on the target. Return 0, or -1 if an error occurs
3321 (and set *TARGET_ERRNO). */
3322 int
3323 target_fileio_close (int fd, int *target_errno)
3324 {
3325 struct target_ops *t;
3326
3327 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3328 {
3329 if (t->to_fileio_close != NULL)
3330 {
3331 int ret = t->to_fileio_close (t, fd, target_errno);
3332
3333 if (targetdebug)
3334 fprintf_unfiltered (gdb_stdlog,
3335 "target_fileio_close (%d) = %d (%d)\n",
3336 fd, ret, ret != -1 ? 0 : *target_errno);
3337 return ret;
3338 }
3339 }
3340
3341 *target_errno = FILEIO_ENOSYS;
3342 return -1;
3343 }
3344
3345 /* Unlink FILENAME on the target. Return 0, or -1 if an error
3346 occurs (and set *TARGET_ERRNO). */
3347 int
3348 target_fileio_unlink (const char *filename, int *target_errno)
3349 {
3350 struct target_ops *t;
3351
3352 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3353 {
3354 if (t->to_fileio_unlink != NULL)
3355 {
3356 int ret = t->to_fileio_unlink (t, filename, target_errno);
3357
3358 if (targetdebug)
3359 fprintf_unfiltered (gdb_stdlog,
3360 "target_fileio_unlink (%s) = %d (%d)\n",
3361 filename, ret, ret != -1 ? 0 : *target_errno);
3362 return ret;
3363 }
3364 }
3365
3366 *target_errno = FILEIO_ENOSYS;
3367 return -1;
3368 }
3369
3370 /* Read value of symbolic link FILENAME on the target. Return a
3371 null-terminated string allocated via xmalloc, or NULL if an error
3372 occurs (and set *TARGET_ERRNO). */
3373 char *
3374 target_fileio_readlink (const char *filename, int *target_errno)
3375 {
3376 struct target_ops *t;
3377
3378 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3379 {
3380 if (t->to_fileio_readlink != NULL)
3381 {
3382 char *ret = t->to_fileio_readlink (t, filename, target_errno);
3383
3384 if (targetdebug)
3385 fprintf_unfiltered (gdb_stdlog,
3386 "target_fileio_readlink (%s) = %s (%d)\n",
3387 filename, ret? ret : "(nil)",
3388 ret? 0 : *target_errno);
3389 return ret;
3390 }
3391 }
3392
3393 *target_errno = FILEIO_ENOSYS;
3394 return NULL;
3395 }
3396
3397 static void
3398 target_fileio_close_cleanup (void *opaque)
3399 {
3400 int fd = *(int *) opaque;
3401 int target_errno;
3402
3403 target_fileio_close (fd, &target_errno);
3404 }
3405
3406 /* Read target file FILENAME. Store the result in *BUF_P and
3407 return the size of the transferred data. PADDING additional bytes are
3408 available in *BUF_P. This is a helper function for
3409 target_fileio_read_alloc; see the declaration of that function for more
3410 information. */
3411
3412 static LONGEST
3413 target_fileio_read_alloc_1 (const char *filename,
3414 gdb_byte **buf_p, int padding)
3415 {
3416 struct cleanup *close_cleanup;
3417 size_t buf_alloc, buf_pos;
3418 gdb_byte *buf;
3419 LONGEST n;
3420 int fd;
3421 int target_errno;
3422
3423 fd = target_fileio_open (filename, FILEIO_O_RDONLY, 0700, &target_errno);
3424 if (fd == -1)
3425 return -1;
3426
3427 close_cleanup = make_cleanup (target_fileio_close_cleanup, &fd);
3428
3429 /* Start by reading up to 4K at a time. The target will throttle
3430 this number down if necessary. */
3431 buf_alloc = 4096;
3432 buf = xmalloc (buf_alloc);
3433 buf_pos = 0;
3434 while (1)
3435 {
3436 n = target_fileio_pread (fd, &buf[buf_pos],
3437 buf_alloc - buf_pos - padding, buf_pos,
3438 &target_errno);
3439 if (n < 0)
3440 {
3441 /* An error occurred. */
3442 do_cleanups (close_cleanup);
3443 xfree (buf);
3444 return -1;
3445 }
3446 else if (n == 0)
3447 {
3448 /* Read all there was. */
3449 do_cleanups (close_cleanup);
3450 if (buf_pos == 0)
3451 xfree (buf);
3452 else
3453 *buf_p = buf;
3454 return buf_pos;
3455 }
3456
3457 buf_pos += n;
3458
3459 /* If the buffer is filling up, expand it. */
3460 if (buf_alloc < buf_pos * 2)
3461 {
3462 buf_alloc *= 2;
3463 buf = xrealloc (buf, buf_alloc);
3464 }
3465
3466 QUIT;
3467 }
3468 }
3469
3470 /* Read target file FILENAME. Store the result in *BUF_P and return
3471 the size of the transferred data. See the declaration in "target.h"
3472 function for more information about the return value. */
3473
3474 LONGEST
3475 target_fileio_read_alloc (const char *filename, gdb_byte **buf_p)
3476 {
3477 return target_fileio_read_alloc_1 (filename, buf_p, 0);
3478 }
3479
3480 /* Read target file FILENAME. The result is NUL-terminated and
3481 returned as a string, allocated using xmalloc. If an error occurs
3482 or the transfer is unsupported, NULL is returned. Empty objects
3483 are returned as allocated but empty strings. A warning is issued
3484 if the result contains any embedded NUL bytes. */
3485
3486 char *
3487 target_fileio_read_stralloc (const char *filename)
3488 {
3489 gdb_byte *buffer;
3490 char *bufstr;
3491 LONGEST i, transferred;
3492
3493 transferred = target_fileio_read_alloc_1 (filename, &buffer, 1);
3494 bufstr = (char *) buffer;
3495
3496 if (transferred < 0)
3497 return NULL;
3498
3499 if (transferred == 0)
3500 return xstrdup ("");
3501
3502 bufstr[transferred] = 0;
3503
3504 /* Check for embedded NUL bytes; but allow trailing NULs. */
3505 for (i = strlen (bufstr); i < transferred; i++)
3506 if (bufstr[i] != 0)
3507 {
3508 warning (_("target file %s "
3509 "contained unexpected null characters"),
3510 filename);
3511 break;
3512 }
3513
3514 return bufstr;
3515 }
3516
3517
3518 static int
3519 default_region_ok_for_hw_watchpoint (struct target_ops *self,
3520 CORE_ADDR addr, int len)
3521 {
3522 return (len <= gdbarch_ptr_bit (target_gdbarch ()) / TARGET_CHAR_BIT);
3523 }
3524
3525 static int
3526 default_watchpoint_addr_within_range (struct target_ops *target,
3527 CORE_ADDR addr,
3528 CORE_ADDR start, int length)
3529 {
3530 return addr >= start && addr < start + length;
3531 }
3532
3533 static struct gdbarch *
3534 default_thread_architecture (struct target_ops *ops, ptid_t ptid)
3535 {
3536 return target_gdbarch ();
3537 }
3538
3539 static int
3540 return_zero (void)
3541 {
3542 return 0;
3543 }
3544
3545 static int
3546 return_minus_one (void)
3547 {
3548 return -1;
3549 }
3550
3551 static void *
3552 return_null (void)
3553 {
3554 return 0;
3555 }
3556
3557 /*
3558 * Find the next target down the stack from the specified target.
3559 */
3560
3561 struct target_ops *
3562 find_target_beneath (struct target_ops *t)
3563 {
3564 return t->beneath;
3565 }
3566
3567 /* See target.h. */
3568
3569 struct target_ops *
3570 find_target_at (enum strata stratum)
3571 {
3572 struct target_ops *t;
3573
3574 for (t = current_target.beneath; t != NULL; t = t->beneath)
3575 if (t->to_stratum == stratum)
3576 return t;
3577
3578 return NULL;
3579 }
3580
3581 \f
3582 /* The inferior process has died. Long live the inferior! */
3583
3584 void
3585 generic_mourn_inferior (void)
3586 {
3587 ptid_t ptid;
3588
3589 ptid = inferior_ptid;
3590 inferior_ptid = null_ptid;
3591
3592 /* Mark breakpoints uninserted in case something tries to delete a
3593 breakpoint while we delete the inferior's threads (which would
3594 fail, since the inferior is long gone). */
3595 mark_breakpoints_out ();
3596
3597 if (!ptid_equal (ptid, null_ptid))
3598 {
3599 int pid = ptid_get_pid (ptid);
3600 exit_inferior (pid);
3601 }
3602
3603 /* Note this wipes step-resume breakpoints, so needs to be done
3604 after exit_inferior, which ends up referencing the step-resume
3605 breakpoints through clear_thread_inferior_resources. */
3606 breakpoint_init_inferior (inf_exited);
3607
3608 registers_changed ();
3609
3610 reopen_exec_file ();
3611 reinit_frame_cache ();
3612
3613 if (deprecated_detach_hook)
3614 deprecated_detach_hook ();
3615 }
3616 \f
3617 /* Convert a normal process ID to a string. Returns the string in a
3618 static buffer. */
3619
3620 char *
3621 normal_pid_to_str (ptid_t ptid)
3622 {
3623 static char buf[32];
3624
3625 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
3626 return buf;
3627 }
3628
3629 static char *
3630 dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
3631 {
3632 return normal_pid_to_str (ptid);
3633 }
3634
3635 /* Error-catcher for target_find_memory_regions. */
3636 static int
3637 dummy_find_memory_regions (struct target_ops *self,
3638 find_memory_region_ftype ignore1, void *ignore2)
3639 {
3640 error (_("Command not implemented for this target."));
3641 return 0;
3642 }
3643
3644 /* Error-catcher for target_make_corefile_notes. */
3645 static char *
3646 dummy_make_corefile_notes (struct target_ops *self,
3647 bfd *ignore1, int *ignore2)
3648 {
3649 error (_("Command not implemented for this target."));
3650 return NULL;
3651 }
3652
3653 /* Set up the handful of non-empty slots needed by the dummy target
3654 vector. */
3655
3656 static void
3657 init_dummy_target (void)
3658 {
3659 dummy_target.to_shortname = "None";
3660 dummy_target.to_longname = "None";
3661 dummy_target.to_doc = "";
3662 dummy_target.to_create_inferior = find_default_create_inferior;
3663 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
3664 dummy_target.to_supports_disable_randomization
3665 = find_default_supports_disable_randomization;
3666 dummy_target.to_pid_to_str = dummy_pid_to_str;
3667 dummy_target.to_stratum = dummy_stratum;
3668 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
3669 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
3670 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
3671 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
3672 dummy_target.to_has_execution
3673 = (int (*) (struct target_ops *, ptid_t)) return_zero;
3674 dummy_target.to_magic = OPS_MAGIC;
3675
3676 install_dummy_methods (&dummy_target);
3677 }
3678 \f
3679 static void
3680 debug_to_open (char *args, int from_tty)
3681 {
3682 debug_target.to_open (args, from_tty);
3683
3684 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
3685 }
3686
3687 void
3688 target_close (struct target_ops *targ)
3689 {
3690 gdb_assert (!target_is_pushed (targ));
3691
3692 if (targ->to_xclose != NULL)
3693 targ->to_xclose (targ);
3694 else if (targ->to_close != NULL)
3695 targ->to_close (targ);
3696
3697 if (targetdebug)
3698 fprintf_unfiltered (gdb_stdlog, "target_close ()\n");
3699 }
3700
3701 void
3702 target_attach (char *args, int from_tty)
3703 {
3704 current_target.to_attach (&current_target, args, from_tty);
3705 if (targetdebug)
3706 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
3707 args, from_tty);
3708 }
3709
3710 int
3711 target_thread_alive (ptid_t ptid)
3712 {
3713 struct target_ops *t;
3714
3715 for (t = current_target.beneath; t != NULL; t = t->beneath)
3716 {
3717 if (t->to_thread_alive != NULL)
3718 {
3719 int retval;
3720
3721 retval = t->to_thread_alive (t, ptid);
3722 if (targetdebug)
3723 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
3724 ptid_get_pid (ptid), retval);
3725
3726 return retval;
3727 }
3728 }
3729
3730 return 0;
3731 }
3732
3733 void
3734 target_find_new_threads (void)
3735 {
3736 struct target_ops *t;
3737
3738 for (t = current_target.beneath; t != NULL; t = t->beneath)
3739 {
3740 if (t->to_find_new_threads != NULL)
3741 {
3742 t->to_find_new_threads (t);
3743 if (targetdebug)
3744 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
3745
3746 return;
3747 }
3748 }
3749 }
3750
3751 void
3752 target_stop (ptid_t ptid)
3753 {
3754 if (!may_stop)
3755 {
3756 warning (_("May not interrupt or stop the target, ignoring attempt"));
3757 return;
3758 }
3759
3760 (*current_target.to_stop) (&current_target, ptid);
3761 }
3762
3763 static void
3764 debug_to_post_attach (struct target_ops *self, int pid)
3765 {
3766 debug_target.to_post_attach (&debug_target, pid);
3767
3768 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
3769 }
3770
3771 /* Concatenate ELEM to LIST, a comma separate list, and return the
3772 result. The LIST incoming argument is released. */
3773
3774 static char *
3775 str_comma_list_concat_elem (char *list, const char *elem)
3776 {
3777 if (list == NULL)
3778 return xstrdup (elem);
3779 else
3780 return reconcat (list, list, ", ", elem, (char *) NULL);
3781 }
3782
3783 /* Helper for target_options_to_string. If OPT is present in
3784 TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
3785 Returns the new resulting string. OPT is removed from
3786 TARGET_OPTIONS. */
3787
3788 static char *
3789 do_option (int *target_options, char *ret,
3790 int opt, char *opt_str)
3791 {
3792 if ((*target_options & opt) != 0)
3793 {
3794 ret = str_comma_list_concat_elem (ret, opt_str);
3795 *target_options &= ~opt;
3796 }
3797
3798 return ret;
3799 }
3800
3801 char *
3802 target_options_to_string (int target_options)
3803 {
3804 char *ret = NULL;
3805
3806 #define DO_TARG_OPTION(OPT) \
3807 ret = do_option (&target_options, ret, OPT, #OPT)
3808
3809 DO_TARG_OPTION (TARGET_WNOHANG);
3810
3811 if (target_options != 0)
3812 ret = str_comma_list_concat_elem (ret, "unknown???");
3813
3814 if (ret == NULL)
3815 ret = xstrdup ("");
3816 return ret;
3817 }
3818
3819 static void
3820 debug_print_register (const char * func,
3821 struct regcache *regcache, int regno)
3822 {
3823 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3824
3825 fprintf_unfiltered (gdb_stdlog, "%s ", func);
3826 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
3827 && gdbarch_register_name (gdbarch, regno) != NULL
3828 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
3829 fprintf_unfiltered (gdb_stdlog, "(%s)",
3830 gdbarch_register_name (gdbarch, regno));
3831 else
3832 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
3833 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
3834 {
3835 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3836 int i, size = register_size (gdbarch, regno);
3837 gdb_byte buf[MAX_REGISTER_SIZE];
3838
3839 regcache_raw_collect (regcache, regno, buf);
3840 fprintf_unfiltered (gdb_stdlog, " = ");
3841 for (i = 0; i < size; i++)
3842 {
3843 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3844 }
3845 if (size <= sizeof (LONGEST))
3846 {
3847 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
3848
3849 fprintf_unfiltered (gdb_stdlog, " %s %s",
3850 core_addr_to_string_nz (val), plongest (val));
3851 }
3852 }
3853 fprintf_unfiltered (gdb_stdlog, "\n");
3854 }
3855
3856 void
3857 target_fetch_registers (struct regcache *regcache, int regno)
3858 {
3859 struct target_ops *t;
3860
3861 for (t = current_target.beneath; t != NULL; t = t->beneath)
3862 {
3863 if (t->to_fetch_registers != NULL)
3864 {
3865 t->to_fetch_registers (t, regcache, regno);
3866 if (targetdebug)
3867 debug_print_register ("target_fetch_registers", regcache, regno);
3868 return;
3869 }
3870 }
3871 }
3872
3873 void
3874 target_store_registers (struct regcache *regcache, int regno)
3875 {
3876 struct target_ops *t;
3877
3878 if (!may_write_registers)
3879 error (_("Writing to registers is not allowed (regno %d)"), regno);
3880
3881 current_target.to_store_registers (&current_target, regcache, regno);
3882 if (targetdebug)
3883 {
3884 debug_print_register ("target_store_registers", regcache, regno);
3885 }
3886 }
3887
3888 int
3889 target_core_of_thread (ptid_t ptid)
3890 {
3891 struct target_ops *t;
3892
3893 for (t = current_target.beneath; t != NULL; t = t->beneath)
3894 {
3895 if (t->to_core_of_thread != NULL)
3896 {
3897 int retval = t->to_core_of_thread (t, ptid);
3898
3899 if (targetdebug)
3900 fprintf_unfiltered (gdb_stdlog,
3901 "target_core_of_thread (%d) = %d\n",
3902 ptid_get_pid (ptid), retval);
3903 return retval;
3904 }
3905 }
3906
3907 return -1;
3908 }
3909
3910 int
3911 target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3912 {
3913 struct target_ops *t;
3914
3915 for (t = current_target.beneath; t != NULL; t = t->beneath)
3916 {
3917 if (t->to_verify_memory != NULL)
3918 {
3919 int retval = t->to_verify_memory (t, data, memaddr, size);
3920
3921 if (targetdebug)
3922 fprintf_unfiltered (gdb_stdlog,
3923 "target_verify_memory (%s, %s) = %d\n",
3924 paddress (target_gdbarch (), memaddr),
3925 pulongest (size),
3926 retval);
3927 return retval;
3928 }
3929 }
3930
3931 tcomplain ();
3932 }
3933
3934 /* The documentation for this function is in its prototype declaration in
3935 target.h. */
3936
3937 int
3938 target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
3939 {
3940 struct target_ops *t;
3941
3942 for (t = current_target.beneath; t != NULL; t = t->beneath)
3943 if (t->to_insert_mask_watchpoint != NULL)
3944 {
3945 int ret;
3946
3947 ret = t->to_insert_mask_watchpoint (t, addr, mask, rw);
3948
3949 if (targetdebug)
3950 fprintf_unfiltered (gdb_stdlog, "\
3951 target_insert_mask_watchpoint (%s, %s, %d) = %d\n",
3952 core_addr_to_string (addr),
3953 core_addr_to_string (mask), rw, ret);
3954
3955 return ret;
3956 }
3957
3958 return 1;
3959 }
3960
3961 /* The documentation for this function is in its prototype declaration in
3962 target.h. */
3963
3964 int
3965 target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
3966 {
3967 struct target_ops *t;
3968
3969 for (t = current_target.beneath; t != NULL; t = t->beneath)
3970 if (t->to_remove_mask_watchpoint != NULL)
3971 {
3972 int ret;
3973
3974 ret = t->to_remove_mask_watchpoint (t, addr, mask, rw);
3975
3976 if (targetdebug)
3977 fprintf_unfiltered (gdb_stdlog, "\
3978 target_remove_mask_watchpoint (%s, %s, %d) = %d\n",
3979 core_addr_to_string (addr),
3980 core_addr_to_string (mask), rw, ret);
3981
3982 return ret;
3983 }
3984
3985 return 1;
3986 }
3987
3988 /* The documentation for this function is in its prototype declaration
3989 in target.h. */
3990
3991 int
3992 target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
3993 {
3994 struct target_ops *t;
3995
3996 for (t = current_target.beneath; t != NULL; t = t->beneath)
3997 if (t->to_masked_watch_num_registers != NULL)
3998 return t->to_masked_watch_num_registers (t, addr, mask);
3999
4000 return -1;
4001 }
4002
4003 /* The documentation for this function is in its prototype declaration
4004 in target.h. */
4005
4006 int
4007 target_ranged_break_num_registers (void)
4008 {
4009 struct target_ops *t;
4010
4011 for (t = current_target.beneath; t != NULL; t = t->beneath)
4012 if (t->to_ranged_break_num_registers != NULL)
4013 return t->to_ranged_break_num_registers (t);
4014
4015 return -1;
4016 }
4017
4018 /* See target.h. */
4019
4020 struct btrace_target_info *
4021 target_enable_btrace (ptid_t ptid)
4022 {
4023 struct target_ops *t;
4024
4025 for (t = current_target.beneath; t != NULL; t = t->beneath)
4026 if (t->to_enable_btrace != NULL)
4027 return t->to_enable_btrace (t, ptid);
4028
4029 tcomplain ();
4030 return NULL;
4031 }
4032
4033 /* See target.h. */
4034
4035 void
4036 target_disable_btrace (struct btrace_target_info *btinfo)
4037 {
4038 struct target_ops *t;
4039
4040 for (t = current_target.beneath; t != NULL; t = t->beneath)
4041 if (t->to_disable_btrace != NULL)
4042 {
4043 t->to_disable_btrace (t, btinfo);
4044 return;
4045 }
4046
4047 tcomplain ();
4048 }
4049
4050 /* See target.h. */
4051
4052 void
4053 target_teardown_btrace (struct btrace_target_info *btinfo)
4054 {
4055 struct target_ops *t;
4056
4057 for (t = current_target.beneath; t != NULL; t = t->beneath)
4058 if (t->to_teardown_btrace != NULL)
4059 {
4060 t->to_teardown_btrace (t, btinfo);
4061 return;
4062 }
4063
4064 tcomplain ();
4065 }
4066
4067 /* See target.h. */
4068
4069 enum btrace_error
4070 target_read_btrace (VEC (btrace_block_s) **btrace,
4071 struct btrace_target_info *btinfo,
4072 enum btrace_read_type type)
4073 {
4074 struct target_ops *t;
4075
4076 for (t = current_target.beneath; t != NULL; t = t->beneath)
4077 if (t->to_read_btrace != NULL)
4078 return t->to_read_btrace (t, btrace, btinfo, type);
4079
4080 tcomplain ();
4081 return BTRACE_ERR_NOT_SUPPORTED;
4082 }
4083
4084 /* See target.h. */
4085
4086 void
4087 target_stop_recording (void)
4088 {
4089 struct target_ops *t;
4090
4091 for (t = current_target.beneath; t != NULL; t = t->beneath)
4092 if (t->to_stop_recording != NULL)
4093 {
4094 t->to_stop_recording (t);
4095 return;
4096 }
4097
4098 /* This is optional. */
4099 }
4100
4101 /* See target.h. */
4102
4103 void
4104 target_info_record (void)
4105 {
4106 struct target_ops *t;
4107
4108 for (t = current_target.beneath; t != NULL; t = t->beneath)
4109 if (t->to_info_record != NULL)
4110 {
4111 t->to_info_record (t);
4112 return;
4113 }
4114
4115 tcomplain ();
4116 }
4117
4118 /* See target.h. */
4119
4120 void
4121 target_save_record (const char *filename)
4122 {
4123 struct target_ops *t;
4124
4125 for (t = current_target.beneath; t != NULL; t = t->beneath)
4126 if (t->to_save_record != NULL)
4127 {
4128 t->to_save_record (t, filename);
4129 return;
4130 }
4131
4132 tcomplain ();
4133 }
4134
4135 /* See target.h. */
4136
4137 int
4138 target_supports_delete_record (void)
4139 {
4140 struct target_ops *t;
4141
4142 for (t = current_target.beneath; t != NULL; t = t->beneath)
4143 if (t->to_delete_record != NULL)
4144 return 1;
4145
4146 return 0;
4147 }
4148
4149 /* See target.h. */
4150
4151 void
4152 target_delete_record (void)
4153 {
4154 struct target_ops *t;
4155
4156 for (t = current_target.beneath; t != NULL; t = t->beneath)
4157 if (t->to_delete_record != NULL)
4158 {
4159 t->to_delete_record (t);
4160 return;
4161 }
4162
4163 tcomplain ();
4164 }
4165
4166 /* See target.h. */
4167
4168 int
4169 target_record_is_replaying (void)
4170 {
4171 struct target_ops *t;
4172
4173 for (t = current_target.beneath; t != NULL; t = t->beneath)
4174 if (t->to_record_is_replaying != NULL)
4175 return t->to_record_is_replaying (t);
4176
4177 return 0;
4178 }
4179
4180 /* See target.h. */
4181
4182 void
4183 target_goto_record_begin (void)
4184 {
4185 struct target_ops *t;
4186
4187 for (t = current_target.beneath; t != NULL; t = t->beneath)
4188 if (t->to_goto_record_begin != NULL)
4189 {
4190 t->to_goto_record_begin (t);
4191 return;
4192 }
4193
4194 tcomplain ();
4195 }
4196
4197 /* See target.h. */
4198
4199 void
4200 target_goto_record_end (void)
4201 {
4202 struct target_ops *t;
4203
4204 for (t = current_target.beneath; t != NULL; t = t->beneath)
4205 if (t->to_goto_record_end != NULL)
4206 {
4207 t->to_goto_record_end (t);
4208 return;
4209 }
4210
4211 tcomplain ();
4212 }
4213
4214 /* See target.h. */
4215
4216 void
4217 target_goto_record (ULONGEST insn)
4218 {
4219 struct target_ops *t;
4220
4221 for (t = current_target.beneath; t != NULL; t = t->beneath)
4222 if (t->to_goto_record != NULL)
4223 {
4224 t->to_goto_record (t, insn);
4225 return;
4226 }
4227
4228 tcomplain ();
4229 }
4230
4231 /* See target.h. */
4232
4233 void
4234 target_insn_history (int size, int flags)
4235 {
4236 struct target_ops *t;
4237
4238 for (t = current_target.beneath; t != NULL; t = t->beneath)
4239 if (t->to_insn_history != NULL)
4240 {
4241 t->to_insn_history (t, size, flags);
4242 return;
4243 }
4244
4245 tcomplain ();
4246 }
4247
4248 /* See target.h. */
4249
4250 void
4251 target_insn_history_from (ULONGEST from, int size, int flags)
4252 {
4253 struct target_ops *t;
4254
4255 for (t = current_target.beneath; t != NULL; t = t->beneath)
4256 if (t->to_insn_history_from != NULL)
4257 {
4258 t->to_insn_history_from (t, from, size, flags);
4259 return;
4260 }
4261
4262 tcomplain ();
4263 }
4264
4265 /* See target.h. */
4266
4267 void
4268 target_insn_history_range (ULONGEST begin, ULONGEST end, int flags)
4269 {
4270 struct target_ops *t;
4271
4272 for (t = current_target.beneath; t != NULL; t = t->beneath)
4273 if (t->to_insn_history_range != NULL)
4274 {
4275 t->to_insn_history_range (t, begin, end, flags);
4276 return;
4277 }
4278
4279 tcomplain ();
4280 }
4281
4282 /* See target.h. */
4283
4284 void
4285 target_call_history (int size, int flags)
4286 {
4287 struct target_ops *t;
4288
4289 for (t = current_target.beneath; t != NULL; t = t->beneath)
4290 if (t->to_call_history != NULL)
4291 {
4292 t->to_call_history (t, size, flags);
4293 return;
4294 }
4295
4296 tcomplain ();
4297 }
4298
4299 /* See target.h. */
4300
4301 void
4302 target_call_history_from (ULONGEST begin, int size, int flags)
4303 {
4304 struct target_ops *t;
4305
4306 for (t = current_target.beneath; t != NULL; t = t->beneath)
4307 if (t->to_call_history_from != NULL)
4308 {
4309 t->to_call_history_from (t, begin, size, flags);
4310 return;
4311 }
4312
4313 tcomplain ();
4314 }
4315
4316 /* See target.h. */
4317
4318 void
4319 target_call_history_range (ULONGEST begin, ULONGEST end, int flags)
4320 {
4321 struct target_ops *t;
4322
4323 for (t = current_target.beneath; t != NULL; t = t->beneath)
4324 if (t->to_call_history_range != NULL)
4325 {
4326 t->to_call_history_range (t, begin, end, flags);
4327 return;
4328 }
4329
4330 tcomplain ();
4331 }
4332
4333 static void
4334 debug_to_prepare_to_store (struct target_ops *self, struct regcache *regcache)
4335 {
4336 debug_target.to_prepare_to_store (&debug_target, regcache);
4337
4338 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
4339 }
4340
4341 /* See target.h. */
4342
4343 const struct frame_unwind *
4344 target_get_unwinder (void)
4345 {
4346 struct target_ops *t;
4347
4348 for (t = current_target.beneath; t != NULL; t = t->beneath)
4349 if (t->to_get_unwinder != NULL)
4350 return t->to_get_unwinder;
4351
4352 return NULL;
4353 }
4354
4355 /* See target.h. */
4356
4357 const struct frame_unwind *
4358 target_get_tailcall_unwinder (void)
4359 {
4360 struct target_ops *t;
4361
4362 for (t = current_target.beneath; t != NULL; t = t->beneath)
4363 if (t->to_get_tailcall_unwinder != NULL)
4364 return t->to_get_tailcall_unwinder;
4365
4366 return NULL;
4367 }
4368
4369 /* See target.h. */
4370
4371 CORE_ADDR
4372 forward_target_decr_pc_after_break (struct target_ops *ops,
4373 struct gdbarch *gdbarch)
4374 {
4375 for (; ops != NULL; ops = ops->beneath)
4376 if (ops->to_decr_pc_after_break != NULL)
4377 return ops->to_decr_pc_after_break (ops, gdbarch);
4378
4379 return gdbarch_decr_pc_after_break (gdbarch);
4380 }
4381
4382 /* See target.h. */
4383
4384 CORE_ADDR
4385 target_decr_pc_after_break (struct gdbarch *gdbarch)
4386 {
4387 return forward_target_decr_pc_after_break (current_target.beneath, gdbarch);
4388 }
4389
4390 static int
4391 deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
4392 int write, struct mem_attrib *attrib,
4393 struct target_ops *target)
4394 {
4395 int retval;
4396
4397 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
4398 attrib, target);
4399
4400 fprintf_unfiltered (gdb_stdlog,
4401 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
4402 paddress (target_gdbarch (), memaddr), len,
4403 write ? "write" : "read", retval);
4404
4405 if (retval > 0)
4406 {
4407 int i;
4408
4409 fputs_unfiltered (", bytes =", gdb_stdlog);
4410 for (i = 0; i < retval; i++)
4411 {
4412 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
4413 {
4414 if (targetdebug < 2 && i > 0)
4415 {
4416 fprintf_unfiltered (gdb_stdlog, " ...");
4417 break;
4418 }
4419 fprintf_unfiltered (gdb_stdlog, "\n");
4420 }
4421
4422 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
4423 }
4424 }
4425
4426 fputc_unfiltered ('\n', gdb_stdlog);
4427
4428 return retval;
4429 }
4430
4431 static void
4432 debug_to_files_info (struct target_ops *target)
4433 {
4434 debug_target.to_files_info (target);
4435
4436 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
4437 }
4438
4439 static int
4440 debug_to_insert_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
4441 struct bp_target_info *bp_tgt)
4442 {
4443 int retval;
4444
4445 retval = debug_target.to_insert_breakpoint (&debug_target, gdbarch, bp_tgt);
4446
4447 fprintf_unfiltered (gdb_stdlog,
4448 "target_insert_breakpoint (%s, xxx) = %ld\n",
4449 core_addr_to_string (bp_tgt->placed_address),
4450 (unsigned long) retval);
4451 return retval;
4452 }
4453
4454 static int
4455 debug_to_remove_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
4456 struct bp_target_info *bp_tgt)
4457 {
4458 int retval;
4459
4460 retval = debug_target.to_remove_breakpoint (&debug_target, gdbarch, bp_tgt);
4461
4462 fprintf_unfiltered (gdb_stdlog,
4463 "target_remove_breakpoint (%s, xxx) = %ld\n",
4464 core_addr_to_string (bp_tgt->placed_address),
4465 (unsigned long) retval);
4466 return retval;
4467 }
4468
4469 static int
4470 debug_to_can_use_hw_breakpoint (struct target_ops *self,
4471 int type, int cnt, int from_tty)
4472 {
4473 int retval;
4474
4475 retval = debug_target.to_can_use_hw_breakpoint (&debug_target,
4476 type, cnt, from_tty);
4477
4478 fprintf_unfiltered (gdb_stdlog,
4479 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
4480 (unsigned long) type,
4481 (unsigned long) cnt,
4482 (unsigned long) from_tty,
4483 (unsigned long) retval);
4484 return retval;
4485 }
4486
4487 static int
4488 debug_to_region_ok_for_hw_watchpoint (struct target_ops *self,
4489 CORE_ADDR addr, int len)
4490 {
4491 CORE_ADDR retval;
4492
4493 retval = debug_target.to_region_ok_for_hw_watchpoint (&debug_target,
4494 addr, len);
4495
4496 fprintf_unfiltered (gdb_stdlog,
4497 "target_region_ok_for_hw_watchpoint (%s, %ld) = %s\n",
4498 core_addr_to_string (addr), (unsigned long) len,
4499 core_addr_to_string (retval));
4500 return retval;
4501 }
4502
4503 static int
4504 debug_to_can_accel_watchpoint_condition (struct target_ops *self,
4505 CORE_ADDR addr, int len, int rw,
4506 struct expression *cond)
4507 {
4508 int retval;
4509
4510 retval = debug_target.to_can_accel_watchpoint_condition (&debug_target,
4511 addr, len,
4512 rw, cond);
4513
4514 fprintf_unfiltered (gdb_stdlog,
4515 "target_can_accel_watchpoint_condition "
4516 "(%s, %d, %d, %s) = %ld\n",
4517 core_addr_to_string (addr), len, rw,
4518 host_address_to_string (cond), (unsigned long) retval);
4519 return retval;
4520 }
4521
4522 static int
4523 debug_to_stopped_by_watchpoint (struct target_ops *ops)
4524 {
4525 int retval;
4526
4527 retval = debug_target.to_stopped_by_watchpoint (&debug_target);
4528
4529 fprintf_unfiltered (gdb_stdlog,
4530 "target_stopped_by_watchpoint () = %ld\n",
4531 (unsigned long) retval);
4532 return retval;
4533 }
4534
4535 static int
4536 debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
4537 {
4538 int retval;
4539
4540 retval = debug_target.to_stopped_data_address (target, addr);
4541
4542 fprintf_unfiltered (gdb_stdlog,
4543 "target_stopped_data_address ([%s]) = %ld\n",
4544 core_addr_to_string (*addr),
4545 (unsigned long)retval);
4546 return retval;
4547 }
4548
4549 static int
4550 debug_to_watchpoint_addr_within_range (struct target_ops *target,
4551 CORE_ADDR addr,
4552 CORE_ADDR start, int length)
4553 {
4554 int retval;
4555
4556 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
4557 start, length);
4558
4559 fprintf_filtered (gdb_stdlog,
4560 "target_watchpoint_addr_within_range (%s, %s, %d) = %d\n",
4561 core_addr_to_string (addr), core_addr_to_string (start),
4562 length, retval);
4563 return retval;
4564 }
4565
4566 static int
4567 debug_to_insert_hw_breakpoint (struct target_ops *self,
4568 struct gdbarch *gdbarch,
4569 struct bp_target_info *bp_tgt)
4570 {
4571 int retval;
4572
4573 retval = debug_target.to_insert_hw_breakpoint (&debug_target,
4574 gdbarch, bp_tgt);
4575
4576 fprintf_unfiltered (gdb_stdlog,
4577 "target_insert_hw_breakpoint (%s, xxx) = %ld\n",
4578 core_addr_to_string (bp_tgt->placed_address),
4579 (unsigned long) retval);
4580 return retval;
4581 }
4582
4583 static int
4584 debug_to_remove_hw_breakpoint (struct target_ops *self,
4585 struct gdbarch *gdbarch,
4586 struct bp_target_info *bp_tgt)
4587 {
4588 int retval;
4589
4590 retval = debug_target.to_remove_hw_breakpoint (&debug_target,
4591 gdbarch, bp_tgt);
4592
4593 fprintf_unfiltered (gdb_stdlog,
4594 "target_remove_hw_breakpoint (%s, xxx) = %ld\n",
4595 core_addr_to_string (bp_tgt->placed_address),
4596 (unsigned long) retval);
4597 return retval;
4598 }
4599
4600 static int
4601 debug_to_insert_watchpoint (struct target_ops *self,
4602 CORE_ADDR addr, int len, int type,
4603 struct expression *cond)
4604 {
4605 int retval;
4606
4607 retval = debug_target.to_insert_watchpoint (&debug_target,
4608 addr, len, type, cond);
4609
4610 fprintf_unfiltered (gdb_stdlog,
4611 "target_insert_watchpoint (%s, %d, %d, %s) = %ld\n",
4612 core_addr_to_string (addr), len, type,
4613 host_address_to_string (cond), (unsigned long) retval);
4614 return retval;
4615 }
4616
4617 static int
4618 debug_to_remove_watchpoint (struct target_ops *self,
4619 CORE_ADDR addr, int len, int type,
4620 struct expression *cond)
4621 {
4622 int retval;
4623
4624 retval = debug_target.to_remove_watchpoint (&debug_target,
4625 addr, len, type, cond);
4626
4627 fprintf_unfiltered (gdb_stdlog,
4628 "target_remove_watchpoint (%s, %d, %d, %s) = %ld\n",
4629 core_addr_to_string (addr), len, type,
4630 host_address_to_string (cond), (unsigned long) retval);
4631 return retval;
4632 }
4633
4634 static void
4635 debug_to_terminal_init (struct target_ops *self)
4636 {
4637 debug_target.to_terminal_init (&debug_target);
4638
4639 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
4640 }
4641
4642 static void
4643 debug_to_terminal_inferior (struct target_ops *self)
4644 {
4645 debug_target.to_terminal_inferior (&debug_target);
4646
4647 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
4648 }
4649
4650 static void
4651 debug_to_terminal_ours_for_output (struct target_ops *self)
4652 {
4653 debug_target.to_terminal_ours_for_output (&debug_target);
4654
4655 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
4656 }
4657
4658 static void
4659 debug_to_terminal_ours (struct target_ops *self)
4660 {
4661 debug_target.to_terminal_ours (&debug_target);
4662
4663 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
4664 }
4665
4666 static void
4667 debug_to_terminal_save_ours (struct target_ops *self)
4668 {
4669 debug_target.to_terminal_save_ours (&debug_target);
4670
4671 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
4672 }
4673
4674 static void
4675 debug_to_terminal_info (struct target_ops *self,
4676 const char *arg, int from_tty)
4677 {
4678 debug_target.to_terminal_info (&debug_target, arg, from_tty);
4679
4680 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
4681 from_tty);
4682 }
4683
4684 static void
4685 debug_to_load (struct target_ops *self, char *args, int from_tty)
4686 {
4687 debug_target.to_load (&debug_target, args, from_tty);
4688
4689 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
4690 }
4691
4692 static void
4693 debug_to_post_startup_inferior (struct target_ops *self, ptid_t ptid)
4694 {
4695 debug_target.to_post_startup_inferior (&debug_target, ptid);
4696
4697 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
4698 ptid_get_pid (ptid));
4699 }
4700
4701 static int
4702 debug_to_insert_fork_catchpoint (struct target_ops *self, int pid)
4703 {
4704 int retval;
4705
4706 retval = debug_target.to_insert_fork_catchpoint (&debug_target, pid);
4707
4708 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
4709 pid, retval);
4710
4711 return retval;
4712 }
4713
4714 static int
4715 debug_to_remove_fork_catchpoint (struct target_ops *self, int pid)
4716 {
4717 int retval;
4718
4719 retval = debug_target.to_remove_fork_catchpoint (&debug_target, pid);
4720
4721 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
4722 pid, retval);
4723
4724 return retval;
4725 }
4726
4727 static int
4728 debug_to_insert_vfork_catchpoint (struct target_ops *self, int pid)
4729 {
4730 int retval;
4731
4732 retval = debug_target.to_insert_vfork_catchpoint (&debug_target, pid);
4733
4734 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d) = %d\n",
4735 pid, retval);
4736
4737 return retval;
4738 }
4739
4740 static int
4741 debug_to_remove_vfork_catchpoint (struct target_ops *self, int pid)
4742 {
4743 int retval;
4744
4745 retval = debug_target.to_remove_vfork_catchpoint (&debug_target, pid);
4746
4747 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
4748 pid, retval);
4749
4750 return retval;
4751 }
4752
4753 static int
4754 debug_to_insert_exec_catchpoint (struct target_ops *self, int pid)
4755 {
4756 int retval;
4757
4758 retval = debug_target.to_insert_exec_catchpoint (&debug_target, pid);
4759
4760 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
4761 pid, retval);
4762
4763 return retval;
4764 }
4765
4766 static int
4767 debug_to_remove_exec_catchpoint (struct target_ops *self, int pid)
4768 {
4769 int retval;
4770
4771 retval = debug_target.to_remove_exec_catchpoint (&debug_target, pid);
4772
4773 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
4774 pid, retval);
4775
4776 return retval;
4777 }
4778
4779 static int
4780 debug_to_has_exited (struct target_ops *self,
4781 int pid, int wait_status, int *exit_status)
4782 {
4783 int has_exited;
4784
4785 has_exited = debug_target.to_has_exited (&debug_target,
4786 pid, wait_status, exit_status);
4787
4788 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
4789 pid, wait_status, *exit_status, has_exited);
4790
4791 return has_exited;
4792 }
4793
4794 static int
4795 debug_to_can_run (struct target_ops *self)
4796 {
4797 int retval;
4798
4799 retval = debug_target.to_can_run (&debug_target);
4800
4801 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
4802
4803 return retval;
4804 }
4805
4806 static struct gdbarch *
4807 debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
4808 {
4809 struct gdbarch *retval;
4810
4811 retval = debug_target.to_thread_architecture (ops, ptid);
4812
4813 fprintf_unfiltered (gdb_stdlog,
4814 "target_thread_architecture (%s) = %s [%s]\n",
4815 target_pid_to_str (ptid),
4816 host_address_to_string (retval),
4817 gdbarch_bfd_arch_info (retval)->printable_name);
4818 return retval;
4819 }
4820
4821 static void
4822 debug_to_stop (struct target_ops *self, ptid_t ptid)
4823 {
4824 debug_target.to_stop (&debug_target, ptid);
4825
4826 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
4827 target_pid_to_str (ptid));
4828 }
4829
4830 static void
4831 debug_to_rcmd (struct target_ops *self, char *command,
4832 struct ui_file *outbuf)
4833 {
4834 debug_target.to_rcmd (&debug_target, command, outbuf);
4835 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
4836 }
4837
4838 static char *
4839 debug_to_pid_to_exec_file (struct target_ops *self, int pid)
4840 {
4841 char *exec_file;
4842
4843 exec_file = debug_target.to_pid_to_exec_file (&debug_target, pid);
4844
4845 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
4846 pid, exec_file);
4847
4848 return exec_file;
4849 }
4850
4851 static void
4852 setup_target_debug (void)
4853 {
4854 memcpy (&debug_target, &current_target, sizeof debug_target);
4855
4856 current_target.to_open = debug_to_open;
4857 current_target.to_post_attach = debug_to_post_attach;
4858 current_target.to_prepare_to_store = debug_to_prepare_to_store;
4859 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
4860 current_target.to_files_info = debug_to_files_info;
4861 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
4862 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
4863 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
4864 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
4865 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
4866 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
4867 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
4868 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
4869 current_target.to_stopped_data_address = debug_to_stopped_data_address;
4870 current_target.to_watchpoint_addr_within_range
4871 = debug_to_watchpoint_addr_within_range;
4872 current_target.to_region_ok_for_hw_watchpoint
4873 = debug_to_region_ok_for_hw_watchpoint;
4874 current_target.to_can_accel_watchpoint_condition
4875 = debug_to_can_accel_watchpoint_condition;
4876 current_target.to_terminal_init = debug_to_terminal_init;
4877 current_target.to_terminal_inferior = debug_to_terminal_inferior;
4878 current_target.to_terminal_ours_for_output
4879 = debug_to_terminal_ours_for_output;
4880 current_target.to_terminal_ours = debug_to_terminal_ours;
4881 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
4882 current_target.to_terminal_info = debug_to_terminal_info;
4883 current_target.to_load = debug_to_load;
4884 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
4885 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
4886 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
4887 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
4888 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
4889 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
4890 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
4891 current_target.to_has_exited = debug_to_has_exited;
4892 current_target.to_can_run = debug_to_can_run;
4893 current_target.to_stop = debug_to_stop;
4894 current_target.to_rcmd = debug_to_rcmd;
4895 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
4896 current_target.to_thread_architecture = debug_to_thread_architecture;
4897 }
4898 \f
4899
4900 static char targ_desc[] =
4901 "Names of targets and files being debugged.\nShows the entire \
4902 stack of targets currently in use (including the exec-file,\n\
4903 core-file, and process, if any), as well as the symbol file name.";
4904
4905 static void
4906 default_rcmd (struct target_ops *self, char *command, struct ui_file *output)
4907 {
4908 error (_("\"monitor\" command not supported by this target."));
4909 }
4910
4911 static void
4912 do_monitor_command (char *cmd,
4913 int from_tty)
4914 {
4915 target_rcmd (cmd, gdb_stdtarg);
4916 }
4917
4918 /* Print the name of each layers of our target stack. */
4919
4920 static void
4921 maintenance_print_target_stack (char *cmd, int from_tty)
4922 {
4923 struct target_ops *t;
4924
4925 printf_filtered (_("The current target stack is:\n"));
4926
4927 for (t = target_stack; t != NULL; t = t->beneath)
4928 {
4929 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
4930 }
4931 }
4932
4933 /* Controls if async mode is permitted. */
4934 int target_async_permitted = 0;
4935
4936 /* The set command writes to this variable. If the inferior is
4937 executing, target_async_permitted is *not* updated. */
4938 static int target_async_permitted_1 = 0;
4939
4940 static void
4941 set_target_async_command (char *args, int from_tty,
4942 struct cmd_list_element *c)
4943 {
4944 if (have_live_inferiors ())
4945 {
4946 target_async_permitted_1 = target_async_permitted;
4947 error (_("Cannot change this setting while the inferior is running."));
4948 }
4949
4950 target_async_permitted = target_async_permitted_1;
4951 }
4952
4953 static void
4954 show_target_async_command (struct ui_file *file, int from_tty,
4955 struct cmd_list_element *c,
4956 const char *value)
4957 {
4958 fprintf_filtered (file,
4959 _("Controlling the inferior in "
4960 "asynchronous mode is %s.\n"), value);
4961 }
4962
4963 /* Temporary copies of permission settings. */
4964
4965 static int may_write_registers_1 = 1;
4966 static int may_write_memory_1 = 1;
4967 static int may_insert_breakpoints_1 = 1;
4968 static int may_insert_tracepoints_1 = 1;
4969 static int may_insert_fast_tracepoints_1 = 1;
4970 static int may_stop_1 = 1;
4971
4972 /* Make the user-set values match the real values again. */
4973
4974 void
4975 update_target_permissions (void)
4976 {
4977 may_write_registers_1 = may_write_registers;
4978 may_write_memory_1 = may_write_memory;
4979 may_insert_breakpoints_1 = may_insert_breakpoints;
4980 may_insert_tracepoints_1 = may_insert_tracepoints;
4981 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
4982 may_stop_1 = may_stop;
4983 }
4984
4985 /* The one function handles (most of) the permission flags in the same
4986 way. */
4987
4988 static void
4989 set_target_permissions (char *args, int from_tty,
4990 struct cmd_list_element *c)
4991 {
4992 if (target_has_execution)
4993 {
4994 update_target_permissions ();
4995 error (_("Cannot change this setting while the inferior is running."));
4996 }
4997
4998 /* Make the real values match the user-changed values. */
4999 may_write_registers = may_write_registers_1;
5000 may_insert_breakpoints = may_insert_breakpoints_1;
5001 may_insert_tracepoints = may_insert_tracepoints_1;
5002 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
5003 may_stop = may_stop_1;
5004 update_observer_mode ();
5005 }
5006
5007 /* Set memory write permission independently of observer mode. */
5008
5009 static void
5010 set_write_memory_permission (char *args, int from_tty,
5011 struct cmd_list_element *c)
5012 {
5013 /* Make the real values match the user-changed values. */
5014 may_write_memory = may_write_memory_1;
5015 update_observer_mode ();
5016 }
5017
5018
5019 void
5020 initialize_targets (void)
5021 {
5022 init_dummy_target ();
5023 push_target (&dummy_target);
5024
5025 add_info ("target", target_info, targ_desc);
5026 add_info ("files", target_info, targ_desc);
5027
5028 add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
5029 Set target debugging."), _("\
5030 Show target debugging."), _("\
5031 When non-zero, target debugging is enabled. Higher numbers are more\n\
5032 verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
5033 command."),
5034 NULL,
5035 show_targetdebug,
5036 &setdebuglist, &showdebuglist);
5037
5038 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
5039 &trust_readonly, _("\
5040 Set mode for reading from readonly sections."), _("\
5041 Show mode for reading from readonly sections."), _("\
5042 When this mode is on, memory reads from readonly sections (such as .text)\n\
5043 will be read from the object file instead of from the target. This will\n\
5044 result in significant performance improvement for remote targets."),
5045 NULL,
5046 show_trust_readonly,
5047 &setlist, &showlist);
5048
5049 add_com ("monitor", class_obscure, do_monitor_command,
5050 _("Send a command to the remote monitor (remote targets only)."));
5051
5052 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
5053 _("Print the name of each layer of the internal target stack."),
5054 &maintenanceprintlist);
5055
5056 add_setshow_boolean_cmd ("target-async", no_class,
5057 &target_async_permitted_1, _("\
5058 Set whether gdb controls the inferior in asynchronous mode."), _("\
5059 Show whether gdb controls the inferior in asynchronous mode."), _("\
5060 Tells gdb whether to control the inferior in asynchronous mode."),
5061 set_target_async_command,
5062 show_target_async_command,
5063 &setlist,
5064 &showlist);
5065
5066 add_setshow_boolean_cmd ("may-write-registers", class_support,
5067 &may_write_registers_1, _("\
5068 Set permission to write into registers."), _("\
5069 Show permission to write into registers."), _("\
5070 When this permission is on, GDB may write into the target's registers.\n\
5071 Otherwise, any sort of write attempt will result in an error."),
5072 set_target_permissions, NULL,
5073 &setlist, &showlist);
5074
5075 add_setshow_boolean_cmd ("may-write-memory", class_support,
5076 &may_write_memory_1, _("\
5077 Set permission to write into target memory."), _("\
5078 Show permission to write into target memory."), _("\
5079 When this permission is on, GDB may write into the target's memory.\n\
5080 Otherwise, any sort of write attempt will result in an error."),
5081 set_write_memory_permission, NULL,
5082 &setlist, &showlist);
5083
5084 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
5085 &may_insert_breakpoints_1, _("\
5086 Set permission to insert breakpoints in the target."), _("\
5087 Show permission to insert breakpoints in the target."), _("\
5088 When this permission is on, GDB may insert breakpoints in the program.\n\
5089 Otherwise, any sort of insertion attempt will result in an error."),
5090 set_target_permissions, NULL,
5091 &setlist, &showlist);
5092
5093 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
5094 &may_insert_tracepoints_1, _("\
5095 Set permission to insert tracepoints in the target."), _("\
5096 Show permission to insert tracepoints in the target."), _("\
5097 When this permission is on, GDB may insert tracepoints in the program.\n\
5098 Otherwise, any sort of insertion attempt will result in an error."),
5099 set_target_permissions, NULL,
5100 &setlist, &showlist);
5101
5102 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
5103 &may_insert_fast_tracepoints_1, _("\
5104 Set permission to insert fast tracepoints in the target."), _("\
5105 Show permission to insert fast tracepoints in the target."), _("\
5106 When this permission is on, GDB may insert fast tracepoints.\n\
5107 Otherwise, any sort of insertion attempt will result in an error."),
5108 set_target_permissions, NULL,
5109 &setlist, &showlist);
5110
5111 add_setshow_boolean_cmd ("may-interrupt", class_support,
5112 &may_stop_1, _("\
5113 Set permission to interrupt or signal the target."), _("\
5114 Show permission to interrupt or signal the target."), _("\
5115 When this permission is on, GDB may interrupt/stop the target's execution.\n\
5116 Otherwise, any attempt to interrupt or stop will be ignored."),
5117 set_target_permissions, NULL,
5118 &setlist, &showlist);
5119 }