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