ld x86_64 tests: Accept x86-64-v3 as a needed ISA
[binutils-gdb.git] / gdb / target.c
blobf688ff33e3b0e157bbe4042a5287436c46159d82
1 /* Select target systems and architectures at runtime for GDB.
3 Copyright (C) 1990-2023 Free Software Foundation, Inc.
5 Contributed by Cygnus Support.
7 This file is part of GDB.
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.
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.
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/>. */
22 #include "defs.h"
23 #include "target.h"
24 #include "target-dcache.h"
25 #include "gdbcmd.h"
26 #include "symtab.h"
27 #include "inferior.h"
28 #include "infrun.h"
29 #include "observable.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 "gdbcore.h"
37 #include "target-descriptions.h"
38 #include "gdbthread.h"
39 #include "solib.h"
40 #include "exec.h"
41 #include "inline-frame.h"
42 #include "tracepoint.h"
43 #include "gdbsupport/fileio.h"
44 #include "gdbsupport/agent.h"
45 #include "auxv.h"
46 #include "target-debug.h"
47 #include "ui.h"
48 #include "event-top.h"
49 #include <algorithm>
50 #include "gdbsupport/byte-vector.h"
51 #include "gdbsupport/search.h"
52 #include "terminal.h"
53 #include <unordered_map>
54 #include "target-connection.h"
55 #include "valprint.h"
56 #include "cli/cli-decode.h"
58 static void generic_tls_error (void) ATTRIBUTE_NORETURN;
60 static void default_rcmd (struct target_ops *, const char *, struct ui_file *);
62 static int default_verify_memory (struct target_ops *self,
63 const gdb_byte *data,
64 CORE_ADDR memaddr, ULONGEST size);
66 static void tcomplain (void) ATTRIBUTE_NORETURN;
68 /* Mapping between target_info objects (which have address identity)
69 and corresponding open/factory function/callback. Each add_target
70 call adds one entry to this map, and registers a "target
71 TARGET_NAME" command that when invoked calls the factory registered
72 here. The target_info object is associated with the command via
73 the command's context. */
74 static std::unordered_map<const target_info *, target_open_ftype *>
75 target_factories;
77 /* The singleton debug target. */
79 static struct target_ops *the_debug_target;
81 /* Command list for target. */
83 static struct cmd_list_element *targetlist = NULL;
85 /* See target.h. */
87 bool trust_readonly = false;
89 /* Nonzero if we should show true memory content including
90 memory breakpoint inserted by gdb. */
92 static int show_memory_breakpoints = 0;
94 /* These globals control whether GDB attempts to perform these
95 operations; they are useful for targets that need to prevent
96 inadvertent disruption, such as in non-stop mode. */
98 bool may_write_registers = true;
100 bool may_write_memory = true;
102 bool may_insert_breakpoints = true;
104 bool may_insert_tracepoints = true;
106 bool may_insert_fast_tracepoints = true;
108 bool may_stop = true;
110 /* Non-zero if we want to see trace of target level stuff. */
112 static unsigned int targetdebug = 0;
114 static void
115 set_targetdebug (const char *args, int from_tty, struct cmd_list_element *c)
117 if (targetdebug)
118 current_inferior ()->push_target (the_debug_target);
119 else
120 current_inferior ()->unpush_target (the_debug_target);
123 static void
124 show_targetdebug (struct ui_file *file, int from_tty,
125 struct cmd_list_element *c, const char *value)
127 gdb_printf (file, _("Target debugging is %s.\n"), value);
131 target_has_memory ()
133 for (target_ops *t = current_inferior ()->top_target ();
134 t != NULL;
135 t = t->beneath ())
136 if (t->has_memory ())
137 return 1;
139 return 0;
143 target_has_stack ()
145 for (target_ops *t = current_inferior ()->top_target ();
146 t != NULL;
147 t = t->beneath ())
148 if (t->has_stack ())
149 return 1;
151 return 0;
155 target_has_registers ()
157 for (target_ops *t = current_inferior ()->top_target ();
158 t != NULL;
159 t = t->beneath ())
160 if (t->has_registers ())
161 return 1;
163 return 0;
166 bool
167 target_has_execution (inferior *inf)
169 if (inf == nullptr)
170 inf = current_inferior ();
172 for (target_ops *t = inf->top_target ();
173 t != nullptr;
174 t = inf->find_target_beneath (t))
175 if (t->has_execution (inf))
176 return true;
178 return false;
181 const char *
182 target_shortname ()
184 return current_inferior ()->top_target ()->shortname ();
187 /* See target.h. */
189 bool
190 target_attach_no_wait ()
192 return current_inferior ()->top_target ()->attach_no_wait ();
195 /* See target.h. */
197 void
198 target_post_attach (int pid)
200 return current_inferior ()->top_target ()->post_attach (pid);
203 /* See target.h. */
205 void
206 target_prepare_to_store (regcache *regcache)
208 return current_inferior ()->top_target ()->prepare_to_store (regcache);
211 /* See target.h. */
213 bool
214 target_supports_enable_disable_tracepoint ()
216 target_ops *target = current_inferior ()->top_target ();
218 return target->supports_enable_disable_tracepoint ();
221 bool
222 target_supports_string_tracing ()
224 return current_inferior ()->top_target ()->supports_string_tracing ();
227 /* See target.h. */
229 bool
230 target_supports_evaluation_of_breakpoint_conditions ()
232 target_ops *target = current_inferior ()->top_target ();
234 return target->supports_evaluation_of_breakpoint_conditions ();
237 /* See target.h. */
239 bool
240 target_supports_dumpcore ()
242 return current_inferior ()->top_target ()->supports_dumpcore ();
245 /* See target.h. */
247 void
248 target_dumpcore (const char *filename)
250 return current_inferior ()->top_target ()->dumpcore (filename);
253 /* See target.h. */
255 bool
256 target_can_run_breakpoint_commands ()
258 return current_inferior ()->top_target ()->can_run_breakpoint_commands ();
261 /* See target.h. */
263 void
264 target_files_info ()
266 return current_inferior ()->top_target ()->files_info ();
269 /* See target.h. */
272 target_insert_fork_catchpoint (int pid)
274 return current_inferior ()->top_target ()->insert_fork_catchpoint (pid);
277 /* See target.h. */
280 target_remove_fork_catchpoint (int pid)
282 return current_inferior ()->top_target ()->remove_fork_catchpoint (pid);
285 /* See target.h. */
288 target_insert_vfork_catchpoint (int pid)
290 return current_inferior ()->top_target ()->insert_vfork_catchpoint (pid);
293 /* See target.h. */
296 target_remove_vfork_catchpoint (int pid)
298 return current_inferior ()->top_target ()->remove_vfork_catchpoint (pid);
301 /* See target.h. */
304 target_insert_exec_catchpoint (int pid)
306 return current_inferior ()->top_target ()->insert_exec_catchpoint (pid);
309 /* See target.h. */
312 target_remove_exec_catchpoint (int pid)
314 return current_inferior ()->top_target ()->remove_exec_catchpoint (pid);
317 /* See target.h. */
320 target_set_syscall_catchpoint (int pid, bool needed, int any_count,
321 gdb::array_view<const int> syscall_counts)
323 target_ops *target = current_inferior ()->top_target ();
325 return target->set_syscall_catchpoint (pid, needed, any_count,
326 syscall_counts);
329 /* See target.h. */
331 void
332 target_rcmd (const char *command, struct ui_file *outbuf)
334 return current_inferior ()->top_target ()->rcmd (command, outbuf);
337 /* See target.h. */
339 bool
340 target_can_lock_scheduler ()
342 target_ops *target = current_inferior ()->top_target ();
344 return (target->get_thread_control_capabilities ()& tc_schedlock) != 0;
347 /* See target.h. */
349 bool
350 target_can_async_p ()
352 return target_can_async_p (current_inferior ()->top_target ());
355 /* See target.h. */
357 bool
358 target_can_async_p (struct target_ops *target)
360 if (!target_async_permitted)
361 return false;
362 return target->can_async_p ();
365 /* See target.h. */
367 bool
368 target_is_async_p ()
370 bool result = current_inferior ()->top_target ()->is_async_p ();
371 gdb_assert (target_async_permitted || !result);
372 return result;
375 exec_direction_kind
376 target_execution_direction ()
378 return current_inferior ()->top_target ()->execution_direction ();
381 /* See target.h. */
383 const char *
384 target_extra_thread_info (thread_info *tp)
386 return current_inferior ()->top_target ()->extra_thread_info (tp);
389 /* See target.h. */
391 const char *
392 target_pid_to_exec_file (int pid)
394 return current_inferior ()->top_target ()->pid_to_exec_file (pid);
397 /* See target.h. */
399 gdbarch *
400 target_thread_architecture (ptid_t ptid)
402 return current_inferior ()->top_target ()->thread_architecture (ptid);
405 /* See target.h. */
408 target_find_memory_regions (find_memory_region_ftype func, void *data)
410 return current_inferior ()->top_target ()->find_memory_regions (func, data);
413 /* See target.h. */
415 gdb::unique_xmalloc_ptr<char>
416 target_make_corefile_notes (bfd *bfd, int *size_p)
418 return current_inferior ()->top_target ()->make_corefile_notes (bfd, size_p);
421 gdb_byte *
422 target_get_bookmark (const char *args, int from_tty)
424 return current_inferior ()->top_target ()->get_bookmark (args, from_tty);
427 void
428 target_goto_bookmark (const gdb_byte *arg, int from_tty)
430 return current_inferior ()->top_target ()->goto_bookmark (arg, from_tty);
433 /* See target.h. */
435 bool
436 target_stopped_by_watchpoint ()
438 return current_inferior ()->top_target ()->stopped_by_watchpoint ();
441 /* See target.h. */
443 bool
444 target_stopped_by_sw_breakpoint ()
446 return current_inferior ()->top_target ()->stopped_by_sw_breakpoint ();
449 bool
450 target_supports_stopped_by_sw_breakpoint ()
452 target_ops *target = current_inferior ()->top_target ();
454 return target->supports_stopped_by_sw_breakpoint ();
457 bool
458 target_stopped_by_hw_breakpoint ()
460 return current_inferior ()->top_target ()->stopped_by_hw_breakpoint ();
463 bool
464 target_supports_stopped_by_hw_breakpoint ()
466 target_ops *target = current_inferior ()->top_target ();
468 return target->supports_stopped_by_hw_breakpoint ();
471 /* See target.h. */
473 bool
474 target_have_steppable_watchpoint ()
476 return current_inferior ()->top_target ()->have_steppable_watchpoint ();
479 /* See target.h. */
482 target_can_use_hardware_watchpoint (bptype type, int cnt, int othertype)
484 target_ops *target = current_inferior ()->top_target ();
486 return target->can_use_hw_breakpoint (type, cnt, othertype);
489 /* See target.h. */
492 target_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
494 target_ops *target = current_inferior ()->top_target ();
496 return target->region_ok_for_hw_watchpoint (addr, len);
501 target_can_do_single_step ()
503 return current_inferior ()->top_target ()->can_do_single_step ();
506 /* See target.h. */
509 target_insert_watchpoint (CORE_ADDR addr, int len, target_hw_bp_type type,
510 expression *cond)
512 target_ops *target = current_inferior ()->top_target ();
514 return target->insert_watchpoint (addr, len, type, cond);
517 /* See target.h. */
520 target_remove_watchpoint (CORE_ADDR addr, int len, target_hw_bp_type type,
521 expression *cond)
523 target_ops *target = current_inferior ()->top_target ();
525 return target->remove_watchpoint (addr, len, type, cond);
528 /* See target.h. */
531 target_insert_hw_breakpoint (gdbarch *gdbarch, bp_target_info *bp_tgt)
533 target_ops *target = current_inferior ()->top_target ();
535 return target->insert_hw_breakpoint (gdbarch, bp_tgt);
538 /* See target.h. */
541 target_remove_hw_breakpoint (gdbarch *gdbarch, bp_target_info *bp_tgt)
543 target_ops *target = current_inferior ()->top_target ();
545 return target->remove_hw_breakpoint (gdbarch, bp_tgt);
548 /* See target.h. */
550 bool
551 target_can_accel_watchpoint_condition (CORE_ADDR addr, int len, int type,
552 expression *cond)
554 target_ops *target = current_inferior ()->top_target ();
556 return target->can_accel_watchpoint_condition (addr, len, type, cond);
559 /* See target.h. */
561 bool
562 target_can_execute_reverse ()
564 return current_inferior ()->top_target ()->can_execute_reverse ();
567 ptid_t
568 target_get_ada_task_ptid (long lwp, ULONGEST tid)
570 return current_inferior ()->top_target ()->get_ada_task_ptid (lwp, tid);
573 bool
574 target_filesystem_is_local ()
576 return current_inferior ()->top_target ()->filesystem_is_local ();
579 void
580 target_trace_init ()
582 return current_inferior ()->top_target ()->trace_init ();
585 void
586 target_download_tracepoint (bp_location *location)
588 return current_inferior ()->top_target ()->download_tracepoint (location);
591 bool
592 target_can_download_tracepoint ()
594 return current_inferior ()->top_target ()->can_download_tracepoint ();
597 void
598 target_download_trace_state_variable (const trace_state_variable &tsv)
600 target_ops *target = current_inferior ()->top_target ();
602 return target->download_trace_state_variable (tsv);
605 void
606 target_enable_tracepoint (bp_location *loc)
608 return current_inferior ()->top_target ()->enable_tracepoint (loc);
611 void
612 target_disable_tracepoint (bp_location *loc)
614 return current_inferior ()->top_target ()->disable_tracepoint (loc);
617 void
618 target_trace_start ()
620 return current_inferior ()->top_target ()->trace_start ();
623 void
624 target_trace_set_readonly_regions ()
626 return current_inferior ()->top_target ()->trace_set_readonly_regions ();
630 target_get_trace_status (trace_status *ts)
632 return current_inferior ()->top_target ()->get_trace_status (ts);
635 void
636 target_get_tracepoint_status (tracepoint *tp, uploaded_tp *utp)
638 return current_inferior ()->top_target ()->get_tracepoint_status (tp, utp);
641 void
642 target_trace_stop ()
644 return current_inferior ()->top_target ()->trace_stop ();
648 target_trace_find (trace_find_type type, int num,
649 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp)
651 target_ops *target = current_inferior ()->top_target ();
653 return target->trace_find (type, num, addr1, addr2, tpp);
656 bool
657 target_get_trace_state_variable_value (int tsv, LONGEST *val)
659 target_ops *target = current_inferior ()->top_target ();
661 return target->get_trace_state_variable_value (tsv, val);
665 target_save_trace_data (const char *filename)
667 return current_inferior ()->top_target ()->save_trace_data (filename);
671 target_upload_tracepoints (uploaded_tp **utpp)
673 return current_inferior ()->top_target ()->upload_tracepoints (utpp);
677 target_upload_trace_state_variables (uploaded_tsv **utsvp)
679 target_ops *target = current_inferior ()->top_target ();
681 return target->upload_trace_state_variables (utsvp);
684 LONGEST
685 target_get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
687 target_ops *target = current_inferior ()->top_target ();
689 return target->get_raw_trace_data (buf, offset, len);
693 target_get_min_fast_tracepoint_insn_len ()
695 target_ops *target = current_inferior ()->top_target ();
697 return target->get_min_fast_tracepoint_insn_len ();
700 void
701 target_set_disconnected_tracing (int val)
703 return current_inferior ()->top_target ()->set_disconnected_tracing (val);
706 void
707 target_set_circular_trace_buffer (int val)
709 return current_inferior ()->top_target ()->set_circular_trace_buffer (val);
712 void
713 target_set_trace_buffer_size (LONGEST val)
715 return current_inferior ()->top_target ()->set_trace_buffer_size (val);
718 bool
719 target_set_trace_notes (const char *user, const char *notes,
720 const char *stopnotes)
722 target_ops *target = current_inferior ()->top_target ();
724 return target->set_trace_notes (user, notes, stopnotes);
727 bool
728 target_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
730 return current_inferior ()->top_target ()->get_tib_address (ptid, addr);
733 void
734 target_set_permissions ()
736 return current_inferior ()->top_target ()->set_permissions ();
739 bool
740 target_static_tracepoint_marker_at (CORE_ADDR addr,
741 static_tracepoint_marker *marker)
743 target_ops *target = current_inferior ()->top_target ();
745 return target->static_tracepoint_marker_at (addr, marker);
748 std::vector<static_tracepoint_marker>
749 target_static_tracepoint_markers_by_strid (const char *marker_id)
751 target_ops *target = current_inferior ()->top_target ();
753 return target->static_tracepoint_markers_by_strid (marker_id);
756 traceframe_info_up
757 target_traceframe_info ()
759 return current_inferior ()->top_target ()->traceframe_info ();
762 bool
763 target_use_agent (bool use)
765 return current_inferior ()->top_target ()->use_agent (use);
768 bool
769 target_can_use_agent ()
771 return current_inferior ()->top_target ()->can_use_agent ();
774 bool
775 target_augmented_libraries_svr4_read ()
777 return current_inferior ()->top_target ()->augmented_libraries_svr4_read ();
780 bool
781 target_supports_memory_tagging ()
783 return current_inferior ()->top_target ()->supports_memory_tagging ();
786 bool
787 target_fetch_memtags (CORE_ADDR address, size_t len, gdb::byte_vector &tags,
788 int type)
790 return current_inferior ()->top_target ()->fetch_memtags (address, len, tags, type);
793 bool
794 target_store_memtags (CORE_ADDR address, size_t len,
795 const gdb::byte_vector &tags, int type)
797 return current_inferior ()->top_target ()->store_memtags (address, len, tags, type);
800 x86_xsave_layout
801 target_fetch_x86_xsave_layout ()
803 return current_inferior ()->top_target ()->fetch_x86_xsave_layout ();
806 void
807 target_log_command (const char *p)
809 return current_inferior ()->top_target ()->log_command (p);
812 /* This is used to implement the various target commands. */
814 static void
815 open_target (const char *args, int from_tty, struct cmd_list_element *command)
817 auto *ti = static_cast<target_info *> (command->context ());
818 target_open_ftype *func = target_factories[ti];
820 if (targetdebug)
821 gdb_printf (gdb_stdlog, "-> %s->open (...)\n",
822 ti->shortname);
824 func (args, from_tty);
826 if (targetdebug)
827 gdb_printf (gdb_stdlog, "<- %s->open (%s, %d)\n",
828 ti->shortname, args, from_tty);
831 /* See target.h. */
833 void
834 add_target (const target_info &t, target_open_ftype *func,
835 completer_ftype *completer)
837 struct cmd_list_element *c;
839 auto &func_slot = target_factories[&t];
840 if (func_slot != nullptr)
841 internal_error (_("target already added (\"%s\")."), t.shortname);
842 func_slot = func;
844 if (targetlist == NULL)
845 add_basic_prefix_cmd ("target", class_run, _("\
846 Connect to a target machine or process.\n\
847 The first argument is the type or protocol of the target machine.\n\
848 Remaining arguments are interpreted by the target protocol. For more\n\
849 information on the arguments for a particular protocol, type\n\
850 `help target ' followed by the protocol name."),
851 &targetlist, 0, &cmdlist);
852 c = add_cmd (t.shortname, no_class, t.doc, &targetlist);
853 c->set_context ((void *) &t);
854 c->func = open_target;
855 if (completer != NULL)
856 set_cmd_completer (c, completer);
859 /* See target.h. */
861 void
862 add_deprecated_target_alias (const target_info &tinfo, const char *alias)
864 struct cmd_list_element *c;
866 /* If we use add_alias_cmd, here, we do not get the deprecated warning,
867 see PR cli/15104. */
868 c = add_cmd (alias, no_class, tinfo.doc, &targetlist);
869 c->func = open_target;
870 c->set_context ((void *) &tinfo);
871 gdb::unique_xmalloc_ptr<char> alt
872 = xstrprintf ("target %s", tinfo.shortname);
873 deprecate_cmd (c, alt.release ());
876 /* Stub functions */
878 void
879 target_kill (void)
882 /* If the commit_resume_state of the to-be-killed-inferior's process stratum
883 is true, and this inferior is the last live inferior with resumed threads
884 of that target, then we want to leave commit_resume_state to false, as the
885 target won't have any resumed threads anymore. We achieve this with
886 this scoped_disable_commit_resumed. On construction, it will set the flag
887 to false. On destruction, it will only set it to true if there are resumed
888 threads left. */
889 scoped_disable_commit_resumed disable ("killing");
890 current_inferior ()->top_target ()->kill ();
893 void
894 target_load (const char *arg, int from_tty)
896 target_dcache_invalidate ();
897 current_inferior ()->top_target ()->load (arg, from_tty);
900 /* Define it. */
902 target_terminal_state target_terminal::m_terminal_state
903 = target_terminal_state::is_ours;
905 /* See target/target.h. */
907 void
908 target_terminal::init (void)
910 current_inferior ()->top_target ()->terminal_init ();
912 m_terminal_state = target_terminal_state::is_ours;
915 /* See target/target.h. */
917 void
918 target_terminal::inferior (void)
920 struct ui *ui = current_ui;
922 /* A background resume (``run&'') should leave GDB in control of the
923 terminal. */
924 if (ui->prompt_state != PROMPT_BLOCKED)
925 return;
927 /* Since we always run the inferior in the main console (unless "set
928 inferior-tty" is in effect), when some UI other than the main one
929 calls target_terminal::inferior, then we leave the main UI's
930 terminal settings as is. */
931 if (ui != main_ui)
932 return;
934 /* If GDB is resuming the inferior in the foreground, install
935 inferior's terminal modes. */
937 struct inferior *inf = current_inferior ();
939 if (inf->terminal_state != target_terminal_state::is_inferior)
941 current_inferior ()->top_target ()->terminal_inferior ();
942 inf->terminal_state = target_terminal_state::is_inferior;
945 m_terminal_state = target_terminal_state::is_inferior;
947 /* If the user hit C-c before, pretend that it was hit right
948 here. */
949 if (check_quit_flag ())
950 target_pass_ctrlc ();
953 /* See target/target.h. */
955 void
956 target_terminal::restore_inferior (void)
958 struct ui *ui = current_ui;
960 /* See target_terminal::inferior(). */
961 if (ui->prompt_state != PROMPT_BLOCKED || ui != main_ui)
962 return;
964 /* Restore the terminal settings of inferiors that were in the
965 foreground but are now ours_for_output due to a temporary
966 target_target::ours_for_output() call. */
969 scoped_restore_current_inferior restore_inferior;
971 for (::inferior *inf : all_inferiors ())
973 if (inf->terminal_state == target_terminal_state::is_ours_for_output)
975 set_current_inferior (inf);
976 current_inferior ()->top_target ()->terminal_inferior ();
977 inf->terminal_state = target_terminal_state::is_inferior;
982 m_terminal_state = target_terminal_state::is_inferior;
984 /* If the user hit C-c before, pretend that it was hit right
985 here. */
986 if (check_quit_flag ())
987 target_pass_ctrlc ();
990 /* Switch terminal state to DESIRED_STATE, either is_ours, or
991 is_ours_for_output. */
993 static void
994 target_terminal_is_ours_kind (target_terminal_state desired_state)
996 scoped_restore_current_inferior restore_inferior;
998 /* Must do this in two passes. First, have all inferiors save the
999 current terminal settings. Then, after all inferiors have add a
1000 chance to safely save the terminal settings, restore GDB's
1001 terminal settings. */
1003 for (inferior *inf : all_inferiors ())
1005 if (inf->terminal_state == target_terminal_state::is_inferior)
1007 set_current_inferior (inf);
1008 current_inferior ()->top_target ()->terminal_save_inferior ();
1012 for (inferior *inf : all_inferiors ())
1014 /* Note we don't check is_inferior here like above because we
1015 need to handle 'is_ours_for_output -> is_ours' too. Careful
1016 to never transition from 'is_ours' to 'is_ours_for_output',
1017 though. */
1018 if (inf->terminal_state != target_terminal_state::is_ours
1019 && inf->terminal_state != desired_state)
1021 set_current_inferior (inf);
1022 if (desired_state == target_terminal_state::is_ours)
1023 current_inferior ()->top_target ()->terminal_ours ();
1024 else if (desired_state == target_terminal_state::is_ours_for_output)
1025 current_inferior ()->top_target ()->terminal_ours_for_output ();
1026 else
1027 gdb_assert_not_reached ("unhandled desired state");
1028 inf->terminal_state = desired_state;
1033 /* See target/target.h. */
1035 void
1036 target_terminal::ours ()
1038 struct ui *ui = current_ui;
1040 /* See target_terminal::inferior. */
1041 if (ui != main_ui)
1042 return;
1044 if (m_terminal_state == target_terminal_state::is_ours)
1045 return;
1047 target_terminal_is_ours_kind (target_terminal_state::is_ours);
1048 m_terminal_state = target_terminal_state::is_ours;
1051 /* See target/target.h. */
1053 void
1054 target_terminal::ours_for_output ()
1056 struct ui *ui = current_ui;
1058 /* See target_terminal::inferior. */
1059 if (ui != main_ui)
1060 return;
1062 if (!target_terminal::is_inferior ())
1063 return;
1065 target_terminal_is_ours_kind (target_terminal_state::is_ours_for_output);
1066 target_terminal::m_terminal_state = target_terminal_state::is_ours_for_output;
1069 /* See target/target.h. */
1071 void
1072 target_terminal::info (const char *arg, int from_tty)
1074 current_inferior ()->top_target ()->terminal_info (arg, from_tty);
1077 /* See target.h. */
1079 bool
1080 target_supports_terminal_ours (void)
1082 /* The current top target is the target at the top of the target
1083 stack of the current inferior. While normally there's always an
1084 inferior, we must check for nullptr here because we can get here
1085 very early during startup, before the initial inferior is first
1086 created. */
1087 inferior *inf = current_inferior ();
1089 if (inf == nullptr)
1090 return false;
1091 return inf->top_target ()->supports_terminal_ours ();
1094 static void
1095 tcomplain (void)
1097 error (_("You can't do that when your target is `%s'"),
1098 current_inferior ()->top_target ()->shortname ());
1101 void
1102 noprocess (void)
1104 error (_("You can't do that without a process to debug."));
1107 static void
1108 default_terminal_info (struct target_ops *self, const char *args, int from_tty)
1110 gdb_printf (_("No saved terminal information.\n"));
1113 /* A default implementation for the to_get_ada_task_ptid target method.
1115 This function builds the PTID by using both LWP and TID as part of
1116 the PTID lwp and tid elements. The pid used is the pid of the
1117 inferior_ptid. */
1119 static ptid_t
1120 default_get_ada_task_ptid (struct target_ops *self, long lwp, ULONGEST tid)
1122 return ptid_t (inferior_ptid.pid (), lwp, tid);
1125 static enum exec_direction_kind
1126 default_execution_direction (struct target_ops *self)
1128 if (!target_can_execute_reverse ())
1129 return EXEC_FORWARD;
1130 else if (!target_can_async_p ())
1131 return EXEC_FORWARD;
1132 else
1133 gdb_assert_not_reached ("\
1134 to_execution_direction must be implemented for reverse async");
1137 /* See target.h. */
1139 void
1140 target_ops_ref_policy::decref (target_ops *t)
1142 t->decref ();
1143 if (t->refcount () == 0)
1145 if (t->stratum () == process_stratum)
1146 connection_list_remove (as_process_stratum_target (t));
1148 for (inferior *inf : all_inferiors ())
1149 gdb_assert (!inf->target_is_pushed (t));
1151 fileio_handles_invalidate_target (t);
1153 t->close ();
1155 if (targetdebug)
1156 gdb_printf (gdb_stdlog, "closing target\n");
1160 /* See target.h. */
1162 void
1163 target_stack::push (target_ops *t)
1165 /* We must create a new reference first. It is possible that T is
1166 already pushed on this target stack, in which case we will first
1167 unpush it below, before re-pushing it. If we don't increment the
1168 reference count now, then when we unpush it, we might end up deleting
1169 T, which is not good. */
1170 auto ref = target_ops_ref::new_reference (t);
1172 strata stratum = t->stratum ();
1174 /* If there's already a target at this stratum, remove it. */
1176 if (m_stack[stratum].get () != nullptr)
1177 unpush (m_stack[stratum].get ());
1179 /* Now add the new one. */
1180 m_stack[stratum] = std::move (ref);
1182 if (m_top < stratum)
1183 m_top = stratum;
1185 if (stratum == process_stratum)
1186 connection_list_add (as_process_stratum_target (t));
1189 /* See target.h. */
1191 bool
1192 target_stack::unpush (target_ops *t)
1194 gdb_assert (t != NULL);
1196 strata stratum = t->stratum ();
1198 if (stratum == dummy_stratum)
1199 internal_error (_("Attempt to unpush the dummy target"));
1201 /* Look for the specified target. Note that a target can only occur
1202 once in the target stack. */
1204 if (m_stack[stratum] != t)
1206 /* If T wasn't pushed, quit. Only open targets should be
1207 closed. */
1208 return false;
1211 if (m_top == stratum)
1212 m_top = this->find_beneath (t)->stratum ();
1214 /* Move the target reference off the target stack, this sets the pointer
1215 held in m_stack to nullptr, and places the reference in ref. When
1216 ref goes out of scope its reference count will be decremented, which
1217 might cause the target to close.
1219 We have to do it this way, and not just set the value in m_stack to
1220 nullptr directly, because doing so would decrement the reference
1221 count first, which might close the target, and closing the target
1222 does a check that the target is not on any inferiors target_stack. */
1223 auto ref = std::move (m_stack[stratum]);
1225 return true;
1228 void
1229 target_unpusher::operator() (struct target_ops *ops) const
1231 current_inferior ()->unpush_target (ops);
1234 /* Default implementation of to_get_thread_local_address. */
1236 static void
1237 generic_tls_error (void)
1239 throw_error (TLS_GENERIC_ERROR,
1240 _("Cannot find thread-local variables on this target"));
1243 /* Using the objfile specified in OBJFILE, find the address for the
1244 current thread's thread-local storage with offset OFFSET. */
1245 CORE_ADDR
1246 target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
1248 volatile CORE_ADDR addr = 0;
1249 struct target_ops *target = current_inferior ()->top_target ();
1250 gdbarch *gdbarch = current_inferior ()->arch ();
1252 /* If OBJFILE is a separate debug object file, look for the
1253 original object file. */
1254 if (objfile->separate_debug_objfile_backlink != NULL)
1255 objfile = objfile->separate_debug_objfile_backlink;
1257 if (gdbarch_fetch_tls_load_module_address_p (gdbarch))
1259 ptid_t ptid = inferior_ptid;
1263 CORE_ADDR lm_addr;
1265 /* Fetch the load module address for this objfile. */
1266 lm_addr = gdbarch_fetch_tls_load_module_address (gdbarch,
1267 objfile);
1269 if (gdbarch_get_thread_local_address_p (gdbarch))
1270 addr = gdbarch_get_thread_local_address (gdbarch, ptid, lm_addr,
1271 offset);
1272 else
1273 addr = target->get_thread_local_address (ptid, lm_addr, offset);
1275 /* If an error occurred, print TLS related messages here. Otherwise,
1276 throw the error to some higher catcher. */
1277 catch (const gdb_exception &ex)
1279 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1281 switch (ex.error)
1283 case TLS_NO_LIBRARY_SUPPORT_ERROR:
1284 error (_("Cannot find thread-local variables "
1285 "in this thread library."));
1286 break;
1287 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1288 if (objfile_is_library)
1289 error (_("Cannot find shared library `%s' in dynamic"
1290 " linker's load module list"), objfile_name (objfile));
1291 else
1292 error (_("Cannot find executable file `%s' in dynamic"
1293 " linker's load module list"), objfile_name (objfile));
1294 break;
1295 case TLS_NOT_ALLOCATED_YET_ERROR:
1296 if (objfile_is_library)
1297 error (_("The inferior has not yet allocated storage for"
1298 " thread-local variables in\n"
1299 "the shared library `%s'\n"
1300 "for %s"),
1301 objfile_name (objfile),
1302 target_pid_to_str (ptid).c_str ());
1303 else
1304 error (_("The inferior has not yet allocated storage for"
1305 " thread-local variables in\n"
1306 "the executable `%s'\n"
1307 "for %s"),
1308 objfile_name (objfile),
1309 target_pid_to_str (ptid).c_str ());
1310 break;
1311 case TLS_GENERIC_ERROR:
1312 if (objfile_is_library)
1313 error (_("Cannot find thread-local storage for %s, "
1314 "shared library %s:\n%s"),
1315 target_pid_to_str (ptid).c_str (),
1316 objfile_name (objfile), ex.what ());
1317 else
1318 error (_("Cannot find thread-local storage for %s, "
1319 "executable file %s:\n%s"),
1320 target_pid_to_str (ptid).c_str (),
1321 objfile_name (objfile), ex.what ());
1322 break;
1323 default:
1324 throw;
1325 break;
1329 else
1330 error (_("Cannot find thread-local variables on this target"));
1332 return addr;
1335 const char *
1336 target_xfer_status_to_string (enum target_xfer_status status)
1338 #define CASE(X) case X: return #X
1339 switch (status)
1341 CASE(TARGET_XFER_E_IO);
1342 CASE(TARGET_XFER_UNAVAILABLE);
1343 default:
1344 return "<unknown>";
1346 #undef CASE
1350 const std::vector<target_section> *
1351 target_get_section_table (struct target_ops *target)
1353 return target->get_section_table ();
1356 /* Find a section containing ADDR. */
1358 const struct target_section *
1359 target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1361 const std::vector<target_section> *table = target_get_section_table (target);
1363 if (table == NULL)
1364 return NULL;
1366 for (const target_section &secp : *table)
1368 if (addr >= secp.addr && addr < secp.endaddr)
1369 return &secp;
1371 return NULL;
1374 /* See target.h. */
1376 const std::vector<target_section> *
1377 default_get_section_table ()
1379 return &current_program_space->target_sections ();
1382 /* Helper for the memory xfer routines. Checks the attributes of the
1383 memory region of MEMADDR against the read or write being attempted.
1384 If the access is permitted returns true, otherwise returns false.
1385 REGION_P is an optional output parameter. If not-NULL, it is
1386 filled with a pointer to the memory region of MEMADDR. REG_LEN
1387 returns LEN trimmed to the end of the region. This is how much the
1388 caller can continue requesting, if the access is permitted. A
1389 single xfer request must not straddle memory region boundaries. */
1391 static int
1392 memory_xfer_check_region (gdb_byte *readbuf, const gdb_byte *writebuf,
1393 ULONGEST memaddr, ULONGEST len, ULONGEST *reg_len,
1394 struct mem_region **region_p)
1396 struct mem_region *region;
1398 region = lookup_mem_region (memaddr);
1400 if (region_p != NULL)
1401 *region_p = region;
1403 switch (region->attrib.mode)
1405 case MEM_RO:
1406 if (writebuf != NULL)
1407 return 0;
1408 break;
1410 case MEM_WO:
1411 if (readbuf != NULL)
1412 return 0;
1413 break;
1415 case MEM_FLASH:
1416 /* We only support writing to flash during "load" for now. */
1417 if (writebuf != NULL)
1418 error (_("Writing to flash memory forbidden in this context"));
1419 break;
1421 case MEM_NONE:
1422 return 0;
1425 /* region->hi == 0 means there's no upper bound. */
1426 if (memaddr + len < region->hi || region->hi == 0)
1427 *reg_len = len;
1428 else
1429 *reg_len = region->hi - memaddr;
1431 return 1;
1434 /* Read memory from more than one valid target. A core file, for
1435 instance, could have some of memory but delegate other bits to
1436 the target below it. So, we must manually try all targets. */
1438 enum target_xfer_status
1439 raw_memory_xfer_partial (struct target_ops *ops, gdb_byte *readbuf,
1440 const gdb_byte *writebuf, ULONGEST memaddr, LONGEST len,
1441 ULONGEST *xfered_len)
1443 enum target_xfer_status res;
1447 res = ops->xfer_partial (TARGET_OBJECT_MEMORY, NULL,
1448 readbuf, writebuf, memaddr, len,
1449 xfered_len);
1450 if (res == TARGET_XFER_OK)
1451 break;
1453 /* Stop if the target reports that the memory is not available. */
1454 if (res == TARGET_XFER_UNAVAILABLE)
1455 break;
1457 /* Don't continue past targets which have all the memory.
1458 At one time, this code was necessary to read data from
1459 executables / shared libraries when data for the requested
1460 addresses weren't available in the core file. But now the
1461 core target handles this case itself. */
1462 if (ops->has_all_memory ())
1463 break;
1465 ops = ops->beneath ();
1467 while (ops != NULL);
1469 /* The cache works at the raw memory level. Make sure the cache
1470 gets updated with raw contents no matter what kind of memory
1471 object was originally being written. Note we do write-through
1472 first, so that if it fails, we don't write to the cache contents
1473 that never made it to the target. */
1474 if (writebuf != NULL
1475 && inferior_ptid != null_ptid
1476 && target_dcache_init_p ()
1477 && (stack_cache_enabled_p () || code_cache_enabled_p ()))
1479 DCACHE *dcache = target_dcache_get ();
1481 /* Note that writing to an area of memory which wasn't present
1482 in the cache doesn't cause it to be loaded in. */
1483 dcache_update (dcache, res, memaddr, writebuf, *xfered_len);
1486 return res;
1489 /* Perform a partial memory transfer.
1490 For docs see target.h, to_xfer_partial. */
1492 static enum target_xfer_status
1493 memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
1494 gdb_byte *readbuf, const gdb_byte *writebuf, ULONGEST memaddr,
1495 ULONGEST len, ULONGEST *xfered_len)
1497 enum target_xfer_status res;
1498 ULONGEST reg_len;
1499 struct mem_region *region;
1500 struct inferior *inf;
1502 /* For accesses to unmapped overlay sections, read directly from
1503 files. Must do this first, as MEMADDR may need adjustment. */
1504 if (readbuf != NULL && overlay_debugging)
1506 struct obj_section *section = find_pc_overlay (memaddr);
1508 if (pc_in_unmapped_range (memaddr, section))
1510 const std::vector<target_section> *table = target_get_section_table (ops);
1511 const char *section_name = section->the_bfd_section->name;
1513 memaddr = overlay_mapped_address (memaddr, section);
1515 auto match_cb = [=] (const struct target_section *s)
1517 return (strcmp (section_name, s->the_bfd_section->name) == 0);
1520 return section_table_xfer_memory_partial (readbuf, writebuf,
1521 memaddr, len, xfered_len,
1522 *table, match_cb);
1526 /* Try the executable files, if "trust-readonly-sections" is set. */
1527 if (readbuf != NULL && trust_readonly)
1529 const struct target_section *secp
1530 = target_section_by_addr (ops, memaddr);
1531 if (secp != NULL
1532 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
1534 const std::vector<target_section> *table = target_get_section_table (ops);
1535 return section_table_xfer_memory_partial (readbuf, writebuf,
1536 memaddr, len, xfered_len,
1537 *table);
1541 /* Try GDB's internal data cache. */
1543 if (!memory_xfer_check_region (readbuf, writebuf, memaddr, len, &reg_len,
1544 &region))
1545 return TARGET_XFER_E_IO;
1547 if (inferior_ptid != null_ptid)
1548 inf = current_inferior ();
1549 else
1550 inf = NULL;
1552 if (inf != NULL
1553 && readbuf != NULL
1554 /* The dcache reads whole cache lines; that doesn't play well
1555 with reading from a trace buffer, because reading outside of
1556 the collected memory range fails. */
1557 && get_traceframe_number () == -1
1558 && (region->attrib.cache
1559 || (stack_cache_enabled_p () && object == TARGET_OBJECT_STACK_MEMORY)
1560 || (code_cache_enabled_p () && object == TARGET_OBJECT_CODE_MEMORY)))
1562 DCACHE *dcache = target_dcache_get_or_init ();
1564 return dcache_read_memory_partial (ops, dcache, memaddr, readbuf,
1565 reg_len, xfered_len);
1568 /* If none of those methods found the memory we wanted, fall back
1569 to a target partial transfer. Normally a single call to
1570 to_xfer_partial is enough; if it doesn't recognize an object
1571 it will call the to_xfer_partial of the next target down.
1572 But for memory this won't do. Memory is the only target
1573 object which can be read from more than one valid target.
1574 A core file, for instance, could have some of memory but
1575 delegate other bits to the target below it. So, we must
1576 manually try all targets. */
1578 res = raw_memory_xfer_partial (ops, readbuf, writebuf, memaddr, reg_len,
1579 xfered_len);
1581 /* If we still haven't got anything, return the last error. We
1582 give up. */
1583 return res;
1586 /* Perform a partial memory transfer. For docs see target.h,
1587 to_xfer_partial. */
1589 static enum target_xfer_status
1590 memory_xfer_partial (struct target_ops *ops, enum target_object object,
1591 gdb_byte *readbuf, const gdb_byte *writebuf,
1592 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
1594 enum target_xfer_status res;
1596 /* Zero length requests are ok and require no work. */
1597 if (len == 0)
1598 return TARGET_XFER_EOF;
1600 memaddr = gdbarch_remove_non_address_bits (current_inferior ()->arch (),
1601 memaddr);
1603 /* Fill in READBUF with breakpoint shadows, or WRITEBUF with
1604 breakpoint insns, thus hiding out from higher layers whether
1605 there are software breakpoints inserted in the code stream. */
1606 if (readbuf != NULL)
1608 res = memory_xfer_partial_1 (ops, object, readbuf, NULL, memaddr, len,
1609 xfered_len);
1611 if (res == TARGET_XFER_OK && !show_memory_breakpoints)
1612 breakpoint_xfer_memory (readbuf, NULL, NULL, memaddr, *xfered_len);
1614 else
1616 /* A large write request is likely to be partially satisfied
1617 by memory_xfer_partial_1. We will continually malloc
1618 and free a copy of the entire write request for breakpoint
1619 shadow handling even though we only end up writing a small
1620 subset of it. Cap writes to a limit specified by the target
1621 to mitigate this. */
1622 len = std::min (ops->get_memory_xfer_limit (), len);
1624 gdb::byte_vector buf (writebuf, writebuf + len);
1625 breakpoint_xfer_memory (NULL, buf.data (), writebuf, memaddr, len);
1626 res = memory_xfer_partial_1 (ops, object, NULL, buf.data (), memaddr, len,
1627 xfered_len);
1630 return res;
1633 scoped_restore_tmpl<int>
1634 make_scoped_restore_show_memory_breakpoints (int show)
1636 return make_scoped_restore (&show_memory_breakpoints, show);
1639 /* For docs see target.h, to_xfer_partial. */
1641 enum target_xfer_status
1642 target_xfer_partial (struct target_ops *ops,
1643 enum target_object object, const char *annex,
1644 gdb_byte *readbuf, const gdb_byte *writebuf,
1645 ULONGEST offset, ULONGEST len,
1646 ULONGEST *xfered_len)
1648 enum target_xfer_status retval;
1650 /* Transfer is done when LEN is zero. */
1651 if (len == 0)
1652 return TARGET_XFER_EOF;
1654 if (writebuf && !may_write_memory)
1655 error (_("Writing to memory is not allowed (addr %s, len %s)"),
1656 core_addr_to_string_nz (offset), plongest (len));
1658 *xfered_len = 0;
1660 /* If this is a memory transfer, let the memory-specific code
1661 have a look at it instead. Memory transfers are more
1662 complicated. */
1663 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY
1664 || object == TARGET_OBJECT_CODE_MEMORY)
1665 retval = memory_xfer_partial (ops, object, readbuf,
1666 writebuf, offset, len, xfered_len);
1667 else if (object == TARGET_OBJECT_RAW_MEMORY)
1669 /* Skip/avoid accessing the target if the memory region
1670 attributes block the access. Check this here instead of in
1671 raw_memory_xfer_partial as otherwise we'd end up checking
1672 this twice in the case of the memory_xfer_partial path is
1673 taken; once before checking the dcache, and another in the
1674 tail call to raw_memory_xfer_partial. */
1675 if (!memory_xfer_check_region (readbuf, writebuf, offset, len, &len,
1676 NULL))
1677 return TARGET_XFER_E_IO;
1679 /* Request the normal memory object from other layers. */
1680 retval = raw_memory_xfer_partial (ops, readbuf, writebuf, offset, len,
1681 xfered_len);
1683 else
1684 retval = ops->xfer_partial (object, annex, readbuf,
1685 writebuf, offset, len, xfered_len);
1687 if (targetdebug)
1689 const unsigned char *myaddr = NULL;
1691 gdb_printf (gdb_stdlog,
1692 "%s:target_xfer_partial "
1693 "(%d, %s, %s, %s, %s, %s) = %d, %s",
1694 ops->shortname (),
1695 (int) object,
1696 (annex ? annex : "(null)"),
1697 host_address_to_string (readbuf),
1698 host_address_to_string (writebuf),
1699 core_addr_to_string_nz (offset),
1700 pulongest (len), retval,
1701 pulongest (*xfered_len));
1703 if (readbuf)
1704 myaddr = readbuf;
1705 if (writebuf)
1706 myaddr = writebuf;
1707 if (retval == TARGET_XFER_OK && myaddr != NULL)
1709 int i;
1711 gdb_puts (", bytes =", gdb_stdlog);
1712 for (i = 0; i < *xfered_len; i++)
1714 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
1716 if (targetdebug < 2 && i > 0)
1718 gdb_printf (gdb_stdlog, " ...");
1719 break;
1721 gdb_printf (gdb_stdlog, "\n");
1724 gdb_printf (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1728 gdb_putc ('\n', gdb_stdlog);
1731 /* Check implementations of to_xfer_partial update *XFERED_LEN
1732 properly. Do assertion after printing debug messages, so that we
1733 can find more clues on assertion failure from debugging messages. */
1734 if (retval == TARGET_XFER_OK || retval == TARGET_XFER_UNAVAILABLE)
1735 gdb_assert (*xfered_len > 0);
1737 return retval;
1740 /* Read LEN bytes of target memory at address MEMADDR, placing the
1741 results in GDB's memory at MYADDR. Returns either 0 for success or
1742 -1 if any error occurs.
1744 If an error occurs, no guarantee is made about the contents of the data at
1745 MYADDR. In particular, the caller should not depend upon partial reads
1746 filling the buffer with good data. There is no way for the caller to know
1747 how much good data might have been transfered anyway. Callers that can
1748 deal with partial reads should call target_read (which will retry until
1749 it makes no progress, and then return how much was transferred). */
1752 target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1754 if (target_read (current_inferior ()->top_target (),
1755 TARGET_OBJECT_MEMORY, NULL,
1756 myaddr, memaddr, len) == len)
1757 return 0;
1758 else
1759 return -1;
1762 /* See target/target.h. */
1765 target_read_uint32 (CORE_ADDR memaddr, uint32_t *result)
1767 gdb_byte buf[4];
1768 int r;
1770 r = target_read_memory (memaddr, buf, sizeof buf);
1771 if (r != 0)
1772 return r;
1773 *result = extract_unsigned_integer
1774 (buf, sizeof buf,
1775 gdbarch_byte_order (current_inferior ()->arch ()));
1776 return 0;
1779 /* Like target_read_memory, but specify explicitly that this is a read
1780 from the target's raw memory. That is, this read bypasses the
1781 dcache, breakpoint shadowing, etc. */
1784 target_read_raw_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1786 if (target_read (current_inferior ()->top_target (),
1787 TARGET_OBJECT_RAW_MEMORY, NULL,
1788 myaddr, memaddr, len) == len)
1789 return 0;
1790 else
1791 return -1;
1794 /* Like target_read_memory, but specify explicitly that this is a read from
1795 the target's stack. This may trigger different cache behavior. */
1798 target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1800 if (target_read (current_inferior ()->top_target (),
1801 TARGET_OBJECT_STACK_MEMORY, NULL,
1802 myaddr, memaddr, len) == len)
1803 return 0;
1804 else
1805 return -1;
1808 /* Like target_read_memory, but specify explicitly that this is a read from
1809 the target's code. This may trigger different cache behavior. */
1812 target_read_code (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1814 if (target_read (current_inferior ()->top_target (),
1815 TARGET_OBJECT_CODE_MEMORY, NULL,
1816 myaddr, memaddr, len) == len)
1817 return 0;
1818 else
1819 return -1;
1822 /* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1823 Returns either 0 for success or -1 if any error occurs. If an
1824 error occurs, no guarantee is made about how much data got written.
1825 Callers that can deal with partial writes should call
1826 target_write. */
1829 target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1831 if (target_write (current_inferior ()->top_target (),
1832 TARGET_OBJECT_MEMORY, NULL,
1833 myaddr, memaddr, len) == len)
1834 return 0;
1835 else
1836 return -1;
1839 /* Write LEN bytes from MYADDR to target raw memory at address
1840 MEMADDR. Returns either 0 for success or -1 if any error occurs.
1841 If an error occurs, no guarantee is made about how much data got
1842 written. Callers that can deal with partial writes should call
1843 target_write. */
1846 target_write_raw_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
1848 if (target_write (current_inferior ()->top_target (),
1849 TARGET_OBJECT_RAW_MEMORY, NULL,
1850 myaddr, memaddr, len) == len)
1851 return 0;
1852 else
1853 return -1;
1856 /* Fetch the target's memory map. */
1858 std::vector<mem_region>
1859 target_memory_map (void)
1861 target_ops *target = current_inferior ()->top_target ();
1862 std::vector<mem_region> result = target->memory_map ();
1863 if (result.empty ())
1864 return result;
1866 std::sort (result.begin (), result.end ());
1868 /* Check that regions do not overlap. Simultaneously assign
1869 a numbering for the "mem" commands to use to refer to
1870 each region. */
1871 mem_region *last_one = NULL;
1872 for (size_t ix = 0; ix < result.size (); ix++)
1874 mem_region *this_one = &result[ix];
1875 this_one->number = ix;
1877 if (last_one != NULL && last_one->hi > this_one->lo)
1879 warning (_("Overlapping regions in memory map: ignoring"));
1880 return std::vector<mem_region> ();
1883 last_one = this_one;
1886 return result;
1889 void
1890 target_flash_erase (ULONGEST address, LONGEST length)
1892 current_inferior ()->top_target ()->flash_erase (address, length);
1895 void
1896 target_flash_done (void)
1898 current_inferior ()->top_target ()->flash_done ();
1901 static void
1902 show_trust_readonly (struct ui_file *file, int from_tty,
1903 struct cmd_list_element *c, const char *value)
1905 gdb_printf (file,
1906 _("Mode for reading from readonly sections is %s.\n"),
1907 value);
1910 /* Target vector read/write partial wrapper functions. */
1912 static enum target_xfer_status
1913 target_read_partial (struct target_ops *ops,
1914 enum target_object object,
1915 const char *annex, gdb_byte *buf,
1916 ULONGEST offset, ULONGEST len,
1917 ULONGEST *xfered_len)
1919 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len,
1920 xfered_len);
1923 static enum target_xfer_status
1924 target_write_partial (struct target_ops *ops,
1925 enum target_object object,
1926 const char *annex, const gdb_byte *buf,
1927 ULONGEST offset, LONGEST len, ULONGEST *xfered_len)
1929 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len,
1930 xfered_len);
1933 /* Wrappers to perform the full transfer. */
1935 /* For docs on target_read see target.h. */
1937 LONGEST
1938 target_read (struct target_ops *ops,
1939 enum target_object object,
1940 const char *annex, gdb_byte *buf,
1941 ULONGEST offset, LONGEST len)
1943 LONGEST xfered_total = 0;
1944 int unit_size = 1;
1946 /* If we are reading from a memory object, find the length of an addressable
1947 unit for that architecture. */
1948 if (object == TARGET_OBJECT_MEMORY
1949 || object == TARGET_OBJECT_STACK_MEMORY
1950 || object == TARGET_OBJECT_CODE_MEMORY
1951 || object == TARGET_OBJECT_RAW_MEMORY)
1952 unit_size = gdbarch_addressable_memory_unit_size
1953 (current_inferior ()->arch ());
1955 while (xfered_total < len)
1957 ULONGEST xfered_partial;
1958 enum target_xfer_status status;
1960 status = target_read_partial (ops, object, annex,
1961 buf + xfered_total * unit_size,
1962 offset + xfered_total, len - xfered_total,
1963 &xfered_partial);
1965 /* Call an observer, notifying them of the xfer progress? */
1966 if (status == TARGET_XFER_EOF)
1967 return xfered_total;
1968 else if (status == TARGET_XFER_OK)
1970 xfered_total += xfered_partial;
1971 QUIT;
1973 else
1974 return TARGET_XFER_E_IO;
1977 return len;
1980 /* Assuming that the entire [begin, end) range of memory cannot be
1981 read, try to read whatever subrange is possible to read.
1983 The function returns, in RESULT, either zero or one memory block.
1984 If there's a readable subrange at the beginning, it is completely
1985 read and returned. Any further readable subrange will not be read.
1986 Otherwise, if there's a readable subrange at the end, it will be
1987 completely read and returned. Any readable subranges before it
1988 (obviously, not starting at the beginning), will be ignored. In
1989 other cases -- either no readable subrange, or readable subrange(s)
1990 that is neither at the beginning, or end, nothing is returned.
1992 The purpose of this function is to handle a read across a boundary
1993 of accessible memory in a case when memory map is not available.
1994 The above restrictions are fine for this case, but will give
1995 incorrect results if the memory is 'patchy'. However, supporting
1996 'patchy' memory would require trying to read every single byte,
1997 and it seems unacceptable solution. Explicit memory map is
1998 recommended for this case -- and target_read_memory_robust will
1999 take care of reading multiple ranges then. */
2001 static void
2002 read_whatever_is_readable (struct target_ops *ops,
2003 const ULONGEST begin, const ULONGEST end,
2004 int unit_size,
2005 std::vector<memory_read_result> *result)
2007 ULONGEST current_begin = begin;
2008 ULONGEST current_end = end;
2009 int forward;
2010 ULONGEST xfered_len;
2012 /* If we previously failed to read 1 byte, nothing can be done here. */
2013 if (end - begin <= 1)
2014 return;
2016 gdb::unique_xmalloc_ptr<gdb_byte> buf ((gdb_byte *) xmalloc (end - begin));
2018 /* Check that either first or the last byte is readable, and give up
2019 if not. This heuristic is meant to permit reading accessible memory
2020 at the boundary of accessible region. */
2021 if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2022 buf.get (), begin, 1, &xfered_len) == TARGET_XFER_OK)
2024 forward = 1;
2025 ++current_begin;
2027 else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2028 buf.get () + (end - begin) - 1, end - 1, 1,
2029 &xfered_len) == TARGET_XFER_OK)
2031 forward = 0;
2032 --current_end;
2034 else
2035 return;
2037 /* Loop invariant is that the [current_begin, current_end) was previously
2038 found to be not readable as a whole.
2040 Note loop condition -- if the range has 1 byte, we can't divide the range
2041 so there's no point trying further. */
2042 while (current_end - current_begin > 1)
2044 ULONGEST first_half_begin, first_half_end;
2045 ULONGEST second_half_begin, second_half_end;
2046 LONGEST xfer;
2047 ULONGEST middle = current_begin + (current_end - current_begin) / 2;
2049 if (forward)
2051 first_half_begin = current_begin;
2052 first_half_end = middle;
2053 second_half_begin = middle;
2054 second_half_end = current_end;
2056 else
2058 first_half_begin = middle;
2059 first_half_end = current_end;
2060 second_half_begin = current_begin;
2061 second_half_end = middle;
2064 xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2065 buf.get () + (first_half_begin - begin) * unit_size,
2066 first_half_begin,
2067 first_half_end - first_half_begin);
2069 if (xfer == first_half_end - first_half_begin)
2071 /* This half reads up fine. So, the error must be in the
2072 other half. */
2073 current_begin = second_half_begin;
2074 current_end = second_half_end;
2076 else
2078 /* This half is not readable. Because we've tried one byte, we
2079 know some part of this half if actually readable. Go to the next
2080 iteration to divide again and try to read.
2082 We don't handle the other half, because this function only tries
2083 to read a single readable subrange. */
2084 current_begin = first_half_begin;
2085 current_end = first_half_end;
2089 if (forward)
2091 /* The [begin, current_begin) range has been read. */
2092 result->emplace_back (begin, current_end, std::move (buf));
2094 else
2096 /* The [current_end, end) range has been read. */
2097 LONGEST region_len = end - current_end;
2099 gdb::unique_xmalloc_ptr<gdb_byte> data
2100 ((gdb_byte *) xmalloc (region_len * unit_size));
2101 memcpy (data.get (), buf.get () + (current_end - begin) * unit_size,
2102 region_len * unit_size);
2103 result->emplace_back (current_end, end, std::move (data));
2107 std::vector<memory_read_result>
2108 read_memory_robust (struct target_ops *ops,
2109 const ULONGEST offset, const LONGEST len)
2111 std::vector<memory_read_result> result;
2112 int unit_size
2113 = gdbarch_addressable_memory_unit_size (current_inferior ()->arch ());
2115 LONGEST xfered_total = 0;
2116 while (xfered_total < len)
2118 struct mem_region *region = lookup_mem_region (offset + xfered_total);
2119 LONGEST region_len;
2121 /* If there is no explicit region, a fake one should be created. */
2122 gdb_assert (region);
2124 if (region->hi == 0)
2125 region_len = len - xfered_total;
2126 else
2127 region_len = region->hi - offset;
2129 if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
2131 /* Cannot read this region. Note that we can end up here only
2132 if the region is explicitly marked inaccessible, or
2133 'inaccessible-by-default' is in effect. */
2134 xfered_total += region_len;
2136 else
2138 LONGEST to_read = std::min (len - xfered_total, region_len);
2139 gdb::unique_xmalloc_ptr<gdb_byte> buffer
2140 ((gdb_byte *) xmalloc (to_read * unit_size));
2142 LONGEST xfered_partial =
2143 target_read (ops, TARGET_OBJECT_MEMORY, NULL, buffer.get (),
2144 offset + xfered_total, to_read);
2145 /* Call an observer, notifying them of the xfer progress? */
2146 if (xfered_partial <= 0)
2148 /* Got an error reading full chunk. See if maybe we can read
2149 some subrange. */
2150 read_whatever_is_readable (ops, offset + xfered_total,
2151 offset + xfered_total + to_read,
2152 unit_size, &result);
2153 xfered_total += to_read;
2155 else
2157 result.emplace_back (offset + xfered_total,
2158 offset + xfered_total + xfered_partial,
2159 std::move (buffer));
2160 xfered_total += xfered_partial;
2162 QUIT;
2166 return result;
2170 /* An alternative to target_write with progress callbacks. */
2172 LONGEST
2173 target_write_with_progress (struct target_ops *ops,
2174 enum target_object object,
2175 const char *annex, const gdb_byte *buf,
2176 ULONGEST offset, LONGEST len,
2177 void (*progress) (ULONGEST, void *), void *baton)
2179 LONGEST xfered_total = 0;
2180 int unit_size = 1;
2182 /* If we are writing to a memory object, find the length of an addressable
2183 unit for that architecture. */
2184 if (object == TARGET_OBJECT_MEMORY
2185 || object == TARGET_OBJECT_STACK_MEMORY
2186 || object == TARGET_OBJECT_CODE_MEMORY
2187 || object == TARGET_OBJECT_RAW_MEMORY)
2188 unit_size = gdbarch_addressable_memory_unit_size
2189 (current_inferior ()->arch ());
2191 /* Give the progress callback a chance to set up. */
2192 if (progress)
2193 (*progress) (0, baton);
2195 while (xfered_total < len)
2197 ULONGEST xfered_partial;
2198 enum target_xfer_status status;
2200 status = target_write_partial (ops, object, annex,
2201 buf + xfered_total * unit_size,
2202 offset + xfered_total, len - xfered_total,
2203 &xfered_partial);
2205 if (status != TARGET_XFER_OK)
2206 return status == TARGET_XFER_EOF ? xfered_total : TARGET_XFER_E_IO;
2208 if (progress)
2209 (*progress) (xfered_partial, baton);
2211 xfered_total += xfered_partial;
2212 QUIT;
2214 return len;
2217 /* For docs on target_write see target.h. */
2219 LONGEST
2220 target_write (struct target_ops *ops,
2221 enum target_object object,
2222 const char *annex, const gdb_byte *buf,
2223 ULONGEST offset, LONGEST len)
2225 return target_write_with_progress (ops, object, annex, buf, offset, len,
2226 NULL, NULL);
2229 /* Help for target_read_alloc and target_read_stralloc. See their comments
2230 for details. */
2232 template <typename T>
2233 gdb::optional<gdb::def_vector<T>>
2234 target_read_alloc_1 (struct target_ops *ops, enum target_object object,
2235 const char *annex)
2237 gdb::def_vector<T> buf;
2238 size_t buf_pos = 0;
2239 const int chunk = 4096;
2241 /* This function does not have a length parameter; it reads the
2242 entire OBJECT). Also, it doesn't support objects fetched partly
2243 from one target and partly from another (in a different stratum,
2244 e.g. a core file and an executable). Both reasons make it
2245 unsuitable for reading memory. */
2246 gdb_assert (object != TARGET_OBJECT_MEMORY);
2248 /* Start by reading up to 4K at a time. The target will throttle
2249 this number down if necessary. */
2250 while (1)
2252 ULONGEST xfered_len;
2253 enum target_xfer_status status;
2255 buf.resize (buf_pos + chunk);
2257 status = target_read_partial (ops, object, annex,
2258 (gdb_byte *) &buf[buf_pos],
2259 buf_pos, chunk,
2260 &xfered_len);
2262 if (status == TARGET_XFER_EOF)
2264 /* Read all there was. */
2265 buf.resize (buf_pos);
2266 return buf;
2268 else if (status != TARGET_XFER_OK)
2270 /* An error occurred. */
2271 return {};
2274 buf_pos += xfered_len;
2276 QUIT;
2280 /* See target.h */
2282 gdb::optional<gdb::byte_vector>
2283 target_read_alloc (struct target_ops *ops, enum target_object object,
2284 const char *annex)
2286 return target_read_alloc_1<gdb_byte> (ops, object, annex);
2289 /* See target.h. */
2291 gdb::optional<gdb::char_vector>
2292 target_read_stralloc (struct target_ops *ops, enum target_object object,
2293 const char *annex)
2295 gdb::optional<gdb::char_vector> buf
2296 = target_read_alloc_1<char> (ops, object, annex);
2298 if (!buf)
2299 return {};
2301 if (buf->empty () || buf->back () != '\0')
2302 buf->push_back ('\0');
2304 /* Check for embedded NUL bytes; but allow trailing NULs. */
2305 for (auto it = std::find (buf->begin (), buf->end (), '\0');
2306 it != buf->end (); it++)
2307 if (*it != '\0')
2309 warning (_("target object %d, annex %s, "
2310 "contained unexpected null characters"),
2311 (int) object, annex ? annex : "(none)");
2312 break;
2315 return buf;
2318 /* Memory transfer methods. */
2320 void
2321 get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
2322 LONGEST len)
2324 /* This method is used to read from an alternate, non-current
2325 target. This read must bypass the overlay support (as symbols
2326 don't match this target), and GDB's internal cache (wrong cache
2327 for this target). */
2328 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
2329 != len)
2330 memory_error (TARGET_XFER_E_IO, addr);
2333 ULONGEST
2334 get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2335 int len, enum bfd_endian byte_order)
2337 gdb_byte buf[sizeof (ULONGEST)];
2339 gdb_assert (len <= sizeof (buf));
2340 get_target_memory (ops, addr, buf, len);
2341 return extract_unsigned_integer (buf, len, byte_order);
2344 /* See target.h. */
2347 target_insert_breakpoint (struct gdbarch *gdbarch,
2348 struct bp_target_info *bp_tgt)
2350 if (!may_insert_breakpoints)
2352 warning (_("May not insert breakpoints"));
2353 return 1;
2356 target_ops *target = current_inferior ()->top_target ();
2358 return target->insert_breakpoint (gdbarch, bp_tgt);
2361 /* See target.h. */
2364 target_remove_breakpoint (struct gdbarch *gdbarch,
2365 struct bp_target_info *bp_tgt,
2366 enum remove_bp_reason reason)
2368 /* This is kind of a weird case to handle, but the permission might
2369 have been changed after breakpoints were inserted - in which case
2370 we should just take the user literally and assume that any
2371 breakpoints should be left in place. */
2372 if (!may_insert_breakpoints)
2374 warning (_("May not remove breakpoints"));
2375 return 1;
2378 target_ops *target = current_inferior ()->top_target ();
2380 return target->remove_breakpoint (gdbarch, bp_tgt, reason);
2383 static void
2384 info_target_command (const char *args, int from_tty)
2386 int has_all_mem = 0;
2388 if (current_program_space->symfile_object_file != NULL)
2390 objfile *objf = current_program_space->symfile_object_file;
2391 gdb_printf (_("Symbols from \"%s\".\n"),
2392 objfile_name (objf));
2395 for (target_ops *t = current_inferior ()->top_target ();
2396 t != NULL;
2397 t = t->beneath ())
2399 if (!t->has_memory ())
2400 continue;
2402 if ((int) (t->stratum ()) <= (int) dummy_stratum)
2403 continue;
2404 if (has_all_mem)
2405 gdb_printf (_("\tWhile running this, "
2406 "GDB does not access memory from...\n"));
2407 gdb_printf ("%s:\n", t->longname ());
2408 t->files_info ();
2409 has_all_mem = t->has_all_memory ();
2413 /* This function is called before any new inferior is created, e.g.
2414 by running a program, attaching, or connecting to a target.
2415 It cleans up any state from previous invocations which might
2416 change between runs. This is a subset of what target_preopen
2417 resets (things which might change between targets). */
2419 void
2420 target_pre_inferior (int from_tty)
2422 /* Clear out solib state. Otherwise the solib state of the previous
2423 inferior might have survived and is entirely wrong for the new
2424 target. This has been observed on GNU/Linux using glibc 2.3. How
2425 to reproduce:
2427 bash$ ./foo&
2428 [1] 4711
2429 bash$ ./foo&
2430 [1] 4712
2431 bash$ gdb ./foo
2432 [...]
2433 (gdb) attach 4711
2434 (gdb) detach
2435 (gdb) attach 4712
2436 Cannot access memory at address 0xdeadbeef
2439 /* In some OSs, the shared library list is the same/global/shared
2440 across inferiors. If code is shared between processes, so are
2441 memory regions and features. */
2442 if (!gdbarch_has_global_solist (current_inferior ()->arch ()))
2444 no_shared_libraries (NULL, from_tty);
2446 invalidate_target_mem_regions ();
2448 target_clear_description ();
2451 /* attach_flag may be set if the previous process associated with
2452 the inferior was attached to. */
2453 current_inferior ()->attach_flag = false;
2455 current_inferior ()->highest_thread_num = 0;
2457 update_previous_thread ();
2459 agent_capability_invalidate ();
2462 /* This is to be called by the open routine before it does
2463 anything. */
2465 void
2466 target_preopen (int from_tty)
2468 dont_repeat ();
2470 if (current_inferior ()->pid != 0)
2472 if (!from_tty
2473 || !target_has_execution ()
2474 || query (_("A program is being debugged already. Kill it? ")))
2476 /* Core inferiors actually should be detached, not
2477 killed. */
2478 if (target_has_execution ())
2479 target_kill ();
2480 else
2481 target_detach (current_inferior (), 0);
2483 else
2484 error (_("Program not killed."));
2487 /* Release reference to old previous thread. */
2488 update_previous_thread ();
2490 /* Calling target_kill may remove the target from the stack. But if
2491 it doesn't (which seems like a win for UDI), remove it now. */
2492 /* Leave the exec target, though. The user may be switching from a
2493 live process to a core of the same program. */
2494 current_inferior ()->pop_all_targets_above (file_stratum);
2496 target_pre_inferior (from_tty);
2499 /* See target.h. */
2501 void
2502 target_detach (inferior *inf, int from_tty)
2504 /* Thread's don't need to be resumed until the end of this function. */
2505 scoped_disable_commit_resumed disable_commit_resumed ("detaching");
2507 /* After we have detached, we will clear the register cache for this inferior
2508 by calling registers_changed_ptid. We must save the pid_ptid before
2509 detaching, as the target detach method will clear inf->pid. */
2510 ptid_t save_pid_ptid = ptid_t (inf->pid);
2512 /* As long as some to_detach implementations rely on the current_inferior
2513 (either directly, or indirectly, like through reading memory), INF needs
2514 to be the current inferior. When that requirement will become no longer
2515 true, then we can remove this assertion. */
2516 gdb_assert (inf == current_inferior ());
2518 prepare_for_detach ();
2520 gdb::observers::inferior_pre_detach.notify (inf);
2522 /* Hold a strong reference because detaching may unpush the
2523 target. */
2524 auto proc_target_ref = target_ops_ref::new_reference (inf->process_target ());
2526 current_inferior ()->top_target ()->detach (inf, from_tty);
2528 process_stratum_target *proc_target
2529 = as_process_stratum_target (proc_target_ref.get ());
2531 registers_changed_ptid (proc_target, save_pid_ptid);
2533 /* We have to ensure we have no frame cache left. Normally,
2534 registers_changed_ptid (save_pid_ptid) calls reinit_frame_cache when
2535 inferior_ptid matches save_pid_ptid, but in our case, it does not
2536 call it, as inferior_ptid has been reset. */
2537 reinit_frame_cache ();
2539 disable_commit_resumed.reset_and_commit ();
2542 void
2543 target_disconnect (const char *args, int from_tty)
2545 /* If we're in breakpoints-always-inserted mode or if breakpoints
2546 are global across processes, we have to remove them before
2547 disconnecting. */
2548 remove_breakpoints ();
2550 current_inferior ()->top_target ()->disconnect (args, from_tty);
2553 /* See target/target.h. */
2555 ptid_t
2556 target_wait (ptid_t ptid, struct target_waitstatus *status,
2557 target_wait_flags options)
2559 target_ops *target = current_inferior ()->top_target ();
2560 process_stratum_target *proc_target = current_inferior ()->process_target ();
2562 gdb_assert (!proc_target->commit_resumed_state);
2564 if (!target_can_async_p (target))
2565 gdb_assert ((options & TARGET_WNOHANG) == 0);
2569 gdb::observers::target_pre_wait.notify (ptid);
2570 ptid_t event_ptid = target->wait (ptid, status, options);
2571 gdb::observers::target_post_wait.notify (event_ptid);
2572 return event_ptid;
2574 catch (...)
2576 gdb::observers::target_post_wait.notify (null_ptid);
2577 throw;
2581 /* See target.h. */
2583 ptid_t
2584 default_target_wait (struct target_ops *ops,
2585 ptid_t ptid, struct target_waitstatus *status,
2586 target_wait_flags options)
2588 status->set_ignore ();
2589 return minus_one_ptid;
2592 std::string
2593 target_pid_to_str (ptid_t ptid)
2595 return current_inferior ()->top_target ()->pid_to_str (ptid);
2598 const char *
2599 target_thread_name (struct thread_info *info)
2601 gdb_assert (info->inf == current_inferior ());
2603 return current_inferior ()->top_target ()->thread_name (info);
2606 struct thread_info *
2607 target_thread_handle_to_thread_info (const gdb_byte *thread_handle,
2608 int handle_len,
2609 struct inferior *inf)
2611 target_ops *target = current_inferior ()->top_target ();
2613 return target->thread_handle_to_thread_info (thread_handle, handle_len, inf);
2616 /* See target.h. */
2618 gdb::array_view<const gdb_byte>
2619 target_thread_info_to_thread_handle (struct thread_info *tip)
2621 target_ops *target = current_inferior ()->top_target ();
2623 return target->thread_info_to_thread_handle (tip);
2626 void
2627 target_resume (ptid_t scope_ptid, int step, enum gdb_signal signal)
2629 process_stratum_target *curr_target = current_inferior ()->process_target ();
2630 gdb_assert (!curr_target->commit_resumed_state);
2632 gdb_assert (inferior_ptid != null_ptid);
2633 gdb_assert (inferior_ptid.matches (scope_ptid));
2635 target_dcache_invalidate ();
2637 current_inferior ()->top_target ()->resume (scope_ptid, step, signal);
2639 registers_changed_ptid (curr_target, scope_ptid);
2640 /* We only set the internal executing state here. The user/frontend
2641 running state is set at a higher level. This also clears the
2642 thread's stop_pc as side effect. */
2643 set_executing (curr_target, scope_ptid, true);
2644 clear_inline_frame_state (curr_target, scope_ptid);
2646 if (target_can_async_p ())
2647 target_async (true);
2650 /* See target.h. */
2652 void
2653 target_commit_resumed ()
2655 gdb_assert (current_inferior ()->process_target ()->commit_resumed_state);
2656 current_inferior ()->top_target ()->commit_resumed ();
2659 /* See target.h. */
2661 bool
2662 target_has_pending_events ()
2664 return current_inferior ()->top_target ()->has_pending_events ();
2667 void
2668 target_pass_signals (gdb::array_view<const unsigned char> pass_signals)
2670 current_inferior ()->top_target ()->pass_signals (pass_signals);
2673 void
2674 target_program_signals (gdb::array_view<const unsigned char> program_signals)
2676 current_inferior ()->top_target ()->program_signals (program_signals);
2679 static void
2680 default_follow_fork (struct target_ops *self, inferior *child_inf,
2681 ptid_t child_ptid, target_waitkind fork_kind,
2682 bool follow_child, bool detach_fork)
2684 /* Some target returned a fork event, but did not know how to follow it. */
2685 internal_error (_("could not find a target to follow fork"));
2688 /* See target.h. */
2690 void
2691 target_follow_fork (inferior *child_inf, ptid_t child_ptid,
2692 target_waitkind fork_kind, bool follow_child,
2693 bool detach_fork)
2695 target_ops *target = current_inferior ()->top_target ();
2697 /* Check consistency between CHILD_INF, CHILD_PTID, FOLLOW_CHILD and
2698 DETACH_FORK. */
2699 if (child_inf != nullptr)
2701 gdb_assert (follow_child || !detach_fork);
2702 gdb_assert (child_inf->pid == child_ptid.pid ());
2704 else
2705 gdb_assert (!follow_child && detach_fork);
2707 return target->follow_fork (child_inf, child_ptid, fork_kind, follow_child,
2708 detach_fork);
2711 /* See target.h. */
2713 void
2714 target_follow_exec (inferior *follow_inf, ptid_t ptid,
2715 const char *execd_pathname)
2717 current_inferior ()->top_target ()->follow_exec (follow_inf, ptid,
2718 execd_pathname);
2721 static void
2722 default_mourn_inferior (struct target_ops *self)
2724 internal_error (_("could not find a target to follow mourn inferior"));
2727 void
2728 target_mourn_inferior (ptid_t ptid)
2730 gdb_assert (ptid.pid () == inferior_ptid.pid ());
2731 current_inferior ()->top_target ()->mourn_inferior ();
2733 /* We no longer need to keep handles on any of the object files.
2734 Make sure to release them to avoid unnecessarily locking any
2735 of them while we're not actually debugging. */
2736 bfd_cache_close_all ();
2739 /* Look for a target which can describe architectural features, starting
2740 from TARGET. If we find one, return its description. */
2742 const struct target_desc *
2743 target_read_description (struct target_ops *target)
2745 return target->read_description ();
2749 /* Default implementation of memory-searching. */
2751 static int
2752 default_search_memory (struct target_ops *self,
2753 CORE_ADDR start_addr, ULONGEST search_space_len,
2754 const gdb_byte *pattern, ULONGEST pattern_len,
2755 CORE_ADDR *found_addrp)
2757 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
2759 return target_read (current_inferior ()->top_target (),
2760 TARGET_OBJECT_MEMORY, NULL,
2761 result, addr, len) == len;
2764 /* Start over from the top of the target stack. */
2765 return simple_search_memory (read_memory, start_addr, search_space_len,
2766 pattern, pattern_len, found_addrp);
2769 /* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2770 sequence of bytes in PATTERN with length PATTERN_LEN.
2772 The result is 1 if found, 0 if not found, and -1 if there was an error
2773 requiring halting of the search (e.g. memory read error).
2774 If the pattern is found the address is recorded in FOUND_ADDRP. */
2777 target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2778 const gdb_byte *pattern, ULONGEST pattern_len,
2779 CORE_ADDR *found_addrp)
2781 target_ops *target = current_inferior ()->top_target ();
2783 return target->search_memory (start_addr, search_space_len, pattern,
2784 pattern_len, found_addrp);
2787 /* Look through the currently pushed targets. If none of them will
2788 be able to restart the currently running process, issue an error
2789 message. */
2791 void
2792 target_require_runnable (void)
2794 for (target_ops *t = current_inferior ()->top_target ();
2795 t != NULL;
2796 t = t->beneath ())
2798 /* If this target knows how to create a new program, then
2799 assume we will still be able to after killing the current
2800 one. Either killing and mourning will not pop T, or else
2801 find_default_run_target will find it again. */
2802 if (t->can_create_inferior ())
2803 return;
2805 /* Do not worry about targets at certain strata that can not
2806 create inferiors. Assume they will be pushed again if
2807 necessary, and continue to the process_stratum. */
2808 if (t->stratum () > process_stratum)
2809 continue;
2811 error (_("The \"%s\" target does not support \"run\". "
2812 "Try \"help target\" or \"continue\"."),
2813 t->shortname ());
2816 /* This function is only called if the target is running. In that
2817 case there should have been a process_stratum target and it
2818 should either know how to create inferiors, or not... */
2819 internal_error (_("No targets found"));
2822 /* Whether GDB is allowed to fall back to the default run target for
2823 "run", "attach", etc. when no target is connected yet. */
2824 static bool auto_connect_native_target = true;
2826 static void
2827 show_auto_connect_native_target (struct ui_file *file, int from_tty,
2828 struct cmd_list_element *c, const char *value)
2830 gdb_printf (file,
2831 _("Whether GDB may automatically connect to the "
2832 "native target is %s.\n"),
2833 value);
2836 /* A pointer to the target that can respond to "run" or "attach".
2837 Native targets are always singletons and instantiated early at GDB
2838 startup. */
2839 static target_ops *the_native_target;
2841 /* See target.h. */
2843 void
2844 set_native_target (target_ops *target)
2846 if (the_native_target != NULL)
2847 internal_error (_("native target already set (\"%s\")."),
2848 the_native_target->longname ());
2850 the_native_target = target;
2853 /* See target.h. */
2855 target_ops *
2856 get_native_target ()
2858 return the_native_target;
2861 /* Look through the list of possible targets for a target that can
2862 execute a run or attach command without any other data. This is
2863 used to locate the default process stratum.
2865 If DO_MESG is not NULL, the result is always valid (error() is
2866 called for errors); else, return NULL on error. */
2868 static struct target_ops *
2869 find_default_run_target (const char *do_mesg)
2871 if (auto_connect_native_target && the_native_target != NULL)
2872 return the_native_target;
2874 if (do_mesg != NULL)
2875 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2876 return NULL;
2879 /* See target.h. */
2881 struct target_ops *
2882 find_attach_target (void)
2884 /* If a target on the current stack can attach, use it. */
2885 for (target_ops *t = current_inferior ()->top_target ();
2886 t != NULL;
2887 t = t->beneath ())
2889 if (t->can_attach ())
2890 return t;
2893 /* Otherwise, use the default run target for attaching. */
2894 return find_default_run_target ("attach");
2897 /* See target.h. */
2899 struct target_ops *
2900 find_run_target (void)
2902 /* If a target on the current stack can run, use it. */
2903 for (target_ops *t = current_inferior ()->top_target ();
2904 t != NULL;
2905 t = t->beneath ())
2907 if (t->can_create_inferior ())
2908 return t;
2911 /* Otherwise, use the default run target. */
2912 return find_default_run_target ("run");
2915 bool
2916 target_ops::info_proc (const char *args, enum info_proc_what what)
2918 return false;
2921 /* Implement the "info proc" command. */
2924 target_info_proc (const char *args, enum info_proc_what what)
2926 struct target_ops *t;
2928 /* If we're already connected to something that can get us OS
2929 related data, use it. Otherwise, try using the native
2930 target. */
2931 t = find_target_at (process_stratum);
2932 if (t == NULL)
2933 t = find_default_run_target (NULL);
2935 for (; t != NULL; t = t->beneath ())
2937 if (t->info_proc (args, what))
2939 if (targetdebug)
2940 gdb_printf (gdb_stdlog,
2941 "target_info_proc (\"%s\", %d)\n", args, what);
2943 return 1;
2947 return 0;
2950 static int
2951 find_default_supports_disable_randomization (struct target_ops *self)
2953 struct target_ops *t;
2955 t = find_default_run_target (NULL);
2956 if (t != NULL)
2957 return t->supports_disable_randomization ();
2958 return 0;
2962 target_supports_disable_randomization (void)
2964 return current_inferior ()->top_target ()->supports_disable_randomization ();
2967 /* See target/target.h. */
2970 target_supports_multi_process (void)
2972 return current_inferior ()->top_target ()->supports_multi_process ();
2975 /* See target.h. */
2977 gdb::optional<gdb::char_vector>
2978 target_get_osdata (const char *type)
2980 struct target_ops *t;
2982 /* If we're already connected to something that can get us OS
2983 related data, use it. Otherwise, try using the native
2984 target. */
2985 t = find_target_at (process_stratum);
2986 if (t == NULL)
2987 t = find_default_run_target ("get OS data");
2989 if (!t)
2990 return {};
2992 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
2995 /* Determine the current address space of thread PTID. */
2997 struct address_space *
2998 target_thread_address_space (ptid_t ptid)
3000 struct address_space *aspace;
3002 aspace = current_inferior ()->top_target ()->thread_address_space (ptid);
3003 gdb_assert (aspace != NULL);
3005 return aspace;
3008 /* See target.h. */
3010 target_ops *
3011 target_ops::beneath () const
3013 return current_inferior ()->find_target_beneath (this);
3016 void
3017 target_ops::close ()
3021 bool
3022 target_ops::can_attach ()
3024 return 0;
3027 void
3028 target_ops::attach (const char *, int)
3030 gdb_assert_not_reached ("target_ops::attach called");
3033 bool
3034 target_ops::can_create_inferior ()
3036 return 0;
3039 void
3040 target_ops::create_inferior (const char *, const std::string &,
3041 char **, int)
3043 gdb_assert_not_reached ("target_ops::create_inferior called");
3046 bool
3047 target_ops::can_run ()
3049 return false;
3053 target_can_run ()
3055 for (target_ops *t = current_inferior ()->top_target ();
3056 t != NULL;
3057 t = t->beneath ())
3059 if (t->can_run ())
3060 return 1;
3063 return 0;
3066 /* Target file operations. */
3068 static struct target_ops *
3069 default_fileio_target (void)
3071 struct target_ops *t;
3073 /* If we're already connected to something that can perform
3074 file I/O, use it. Otherwise, try using the native target. */
3075 t = find_target_at (process_stratum);
3076 if (t != NULL)
3077 return t;
3078 return find_default_run_target ("file I/O");
3081 /* File handle for target file operations. */
3083 struct fileio_fh_t
3085 /* The target on which this file is open. NULL if the target is
3086 meanwhile closed while the handle is open. */
3087 target_ops *target;
3089 /* The file descriptor on the target. */
3090 int target_fd;
3092 /* Check whether this fileio_fh_t represents a closed file. */
3093 bool is_closed ()
3095 return target_fd < 0;
3099 /* Vector of currently open file handles. The value returned by
3100 target_fileio_open and passed as the FD argument to other
3101 target_fileio_* functions is an index into this vector. This
3102 vector's entries are never freed; instead, files are marked as
3103 closed, and the handle becomes available for reuse. */
3104 static std::vector<fileio_fh_t> fileio_fhandles;
3106 /* Index into fileio_fhandles of the lowest handle that might be
3107 closed. This permits handle reuse without searching the whole
3108 list each time a new file is opened. */
3109 static int lowest_closed_fd;
3111 /* See target.h. */
3113 void
3114 fileio_handles_invalidate_target (target_ops *targ)
3116 for (fileio_fh_t &fh : fileio_fhandles)
3117 if (fh.target == targ)
3118 fh.target = NULL;
3121 /* Acquire a target fileio file descriptor. */
3123 static int
3124 acquire_fileio_fd (target_ops *target, int target_fd)
3126 /* Search for closed handles to reuse. */
3127 for (; lowest_closed_fd < fileio_fhandles.size (); lowest_closed_fd++)
3129 fileio_fh_t &fh = fileio_fhandles[lowest_closed_fd];
3131 if (fh.is_closed ())
3132 break;
3135 /* Push a new handle if no closed handles were found. */
3136 if (lowest_closed_fd == fileio_fhandles.size ())
3137 fileio_fhandles.push_back (fileio_fh_t {target, target_fd});
3138 else
3139 fileio_fhandles[lowest_closed_fd] = {target, target_fd};
3141 /* Should no longer be marked closed. */
3142 gdb_assert (!fileio_fhandles[lowest_closed_fd].is_closed ());
3144 /* Return its index, and start the next lookup at
3145 the next index. */
3146 return lowest_closed_fd++;
3149 /* Release a target fileio file descriptor. */
3151 static void
3152 release_fileio_fd (int fd, fileio_fh_t *fh)
3154 fh->target_fd = -1;
3155 lowest_closed_fd = std::min (lowest_closed_fd, fd);
3158 /* Return a pointer to the fileio_fhandle_t corresponding to FD. */
3160 static fileio_fh_t *
3161 fileio_fd_to_fh (int fd)
3163 return &fileio_fhandles[fd];
3167 /* Default implementations of file i/o methods. We don't want these
3168 to delegate automatically, because we need to know which target
3169 supported the method, in order to call it directly from within
3170 pread/pwrite, etc. */
3173 target_ops::fileio_open (struct inferior *inf, const char *filename,
3174 int flags, int mode, int warn_if_slow,
3175 fileio_error *target_errno)
3177 *target_errno = FILEIO_ENOSYS;
3178 return -1;
3182 target_ops::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3183 ULONGEST offset, fileio_error *target_errno)
3185 *target_errno = FILEIO_ENOSYS;
3186 return -1;
3190 target_ops::fileio_pread (int fd, gdb_byte *read_buf, int len,
3191 ULONGEST offset, fileio_error *target_errno)
3193 *target_errno = FILEIO_ENOSYS;
3194 return -1;
3198 target_ops::fileio_fstat (int fd, struct stat *sb, fileio_error *target_errno)
3200 *target_errno = FILEIO_ENOSYS;
3201 return -1;
3205 target_ops::fileio_close (int fd, fileio_error *target_errno)
3207 *target_errno = FILEIO_ENOSYS;
3208 return -1;
3212 target_ops::fileio_unlink (struct inferior *inf, const char *filename,
3213 fileio_error *target_errno)
3215 *target_errno = FILEIO_ENOSYS;
3216 return -1;
3219 gdb::optional<std::string>
3220 target_ops::fileio_readlink (struct inferior *inf, const char *filename,
3221 fileio_error *target_errno)
3223 *target_errno = FILEIO_ENOSYS;
3224 return {};
3227 /* See target.h. */
3230 target_fileio_open (struct inferior *inf, const char *filename,
3231 int flags, int mode, bool warn_if_slow, fileio_error *target_errno)
3233 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
3235 int fd = t->fileio_open (inf, filename, flags, mode,
3236 warn_if_slow, target_errno);
3238 if (fd == -1 && *target_errno == FILEIO_ENOSYS)
3239 continue;
3241 if (fd < 0)
3242 fd = -1;
3243 else
3244 fd = acquire_fileio_fd (t, fd);
3246 if (targetdebug)
3247 gdb_printf (gdb_stdlog,
3248 "target_fileio_open (%d,%s,0x%x,0%o,%d)"
3249 " = %d (%d)\n",
3250 inf == NULL ? 0 : inf->num,
3251 filename, flags, mode,
3252 warn_if_slow, fd,
3253 fd != -1 ? 0 : *target_errno);
3254 return fd;
3257 *target_errno = FILEIO_ENOSYS;
3258 return -1;
3261 /* See target.h. */
3264 target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3265 ULONGEST offset, fileio_error *target_errno)
3267 fileio_fh_t *fh = fileio_fd_to_fh (fd);
3268 int ret = -1;
3270 if (fh->is_closed ())
3271 *target_errno = FILEIO_EBADF;
3272 else if (fh->target == NULL)
3273 *target_errno = FILEIO_EIO;
3274 else
3275 ret = fh->target->fileio_pwrite (fh->target_fd, write_buf,
3276 len, offset, target_errno);
3278 if (targetdebug)
3279 gdb_printf (gdb_stdlog,
3280 "target_fileio_pwrite (%d,...,%d,%s) "
3281 "= %d (%d)\n",
3282 fd, len, pulongest (offset),
3283 ret, ret != -1 ? 0 : *target_errno);
3284 return ret;
3287 /* See target.h. */
3290 target_fileio_pread (int fd, gdb_byte *read_buf, int len,
3291 ULONGEST offset, fileio_error *target_errno)
3293 fileio_fh_t *fh = fileio_fd_to_fh (fd);
3294 int ret = -1;
3296 if (fh->is_closed ())
3297 *target_errno = FILEIO_EBADF;
3298 else if (fh->target == NULL)
3299 *target_errno = FILEIO_EIO;
3300 else
3301 ret = fh->target->fileio_pread (fh->target_fd, read_buf,
3302 len, offset, target_errno);
3304 if (targetdebug)
3305 gdb_printf (gdb_stdlog,
3306 "target_fileio_pread (%d,...,%d,%s) "
3307 "= %d (%d)\n",
3308 fd, len, pulongest (offset),
3309 ret, ret != -1 ? 0 : *target_errno);
3310 return ret;
3313 /* See target.h. */
3316 target_fileio_fstat (int fd, struct stat *sb, fileio_error *target_errno)
3318 fileio_fh_t *fh = fileio_fd_to_fh (fd);
3319 int ret = -1;
3321 if (fh->is_closed ())
3322 *target_errno = FILEIO_EBADF;
3323 else if (fh->target == NULL)
3324 *target_errno = FILEIO_EIO;
3325 else
3326 ret = fh->target->fileio_fstat (fh->target_fd, sb, target_errno);
3328 if (targetdebug)
3329 gdb_printf (gdb_stdlog,
3330 "target_fileio_fstat (%d) = %d (%d)\n",
3331 fd, ret, ret != -1 ? 0 : *target_errno);
3332 return ret;
3335 /* See target.h. */
3338 target_fileio_close (int fd, fileio_error *target_errno)
3340 fileio_fh_t *fh = fileio_fd_to_fh (fd);
3341 int ret = -1;
3343 if (fh->is_closed ())
3344 *target_errno = FILEIO_EBADF;
3345 else
3347 if (fh->target != NULL)
3348 ret = fh->target->fileio_close (fh->target_fd,
3349 target_errno);
3350 else
3351 ret = 0;
3352 release_fileio_fd (fd, fh);
3355 if (targetdebug)
3356 gdb_printf (gdb_stdlog,
3357 "target_fileio_close (%d) = %d (%d)\n",
3358 fd, ret, ret != -1 ? 0 : *target_errno);
3359 return ret;
3362 /* See target.h. */
3365 target_fileio_unlink (struct inferior *inf, const char *filename,
3366 fileio_error *target_errno)
3368 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
3370 int ret = t->fileio_unlink (inf, filename, target_errno);
3372 if (ret == -1 && *target_errno == FILEIO_ENOSYS)
3373 continue;
3375 if (targetdebug)
3376 gdb_printf (gdb_stdlog,
3377 "target_fileio_unlink (%d,%s)"
3378 " = %d (%d)\n",
3379 inf == NULL ? 0 : inf->num, filename,
3380 ret, ret != -1 ? 0 : *target_errno);
3381 return ret;
3384 *target_errno = FILEIO_ENOSYS;
3385 return -1;
3388 /* See target.h. */
3390 gdb::optional<std::string>
3391 target_fileio_readlink (struct inferior *inf, const char *filename,
3392 fileio_error *target_errno)
3394 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
3396 gdb::optional<std::string> ret
3397 = t->fileio_readlink (inf, filename, target_errno);
3399 if (!ret.has_value () && *target_errno == FILEIO_ENOSYS)
3400 continue;
3402 if (targetdebug)
3403 gdb_printf (gdb_stdlog,
3404 "target_fileio_readlink (%d,%s)"
3405 " = %s (%d)\n",
3406 inf == NULL ? 0 : inf->num,
3407 filename, ret ? ret->c_str () : "(nil)",
3408 ret ? 0 : *target_errno);
3409 return ret;
3412 *target_errno = FILEIO_ENOSYS;
3413 return {};
3416 /* Like scoped_fd, but specific to target fileio. */
3418 class scoped_target_fd
3420 public:
3421 explicit scoped_target_fd (int fd) noexcept
3422 : m_fd (fd)
3426 ~scoped_target_fd ()
3428 if (m_fd >= 0)
3430 fileio_error target_errno;
3432 target_fileio_close (m_fd, &target_errno);
3436 DISABLE_COPY_AND_ASSIGN (scoped_target_fd);
3438 int get () const noexcept
3440 return m_fd;
3443 private:
3444 int m_fd;
3447 /* Read target file FILENAME, in the filesystem as seen by INF. If
3448 INF is NULL, use the filesystem seen by the debugger (GDB or, for
3449 remote targets, the remote stub). Store the result in *BUF_P and
3450 return the size of the transferred data. PADDING additional bytes
3451 are available in *BUF_P. This is a helper function for
3452 target_fileio_read_alloc; see the declaration of that function for
3453 more information. */
3455 static LONGEST
3456 target_fileio_read_alloc_1 (struct inferior *inf, const char *filename,
3457 gdb_byte **buf_p, int padding)
3459 size_t buf_alloc, buf_pos;
3460 gdb_byte *buf;
3461 LONGEST n;
3462 fileio_error target_errno;
3464 scoped_target_fd fd (target_fileio_open (inf, filename, FILEIO_O_RDONLY,
3465 0700, false, &target_errno));
3466 if (fd.get () == -1)
3467 return -1;
3469 /* Start by reading up to 4K at a time. The target will throttle
3470 this number down if necessary. */
3471 buf_alloc = 4096;
3472 buf = (gdb_byte *) xmalloc (buf_alloc);
3473 buf_pos = 0;
3474 while (1)
3476 n = target_fileio_pread (fd.get (), &buf[buf_pos],
3477 buf_alloc - buf_pos - padding, buf_pos,
3478 &target_errno);
3479 if (n < 0)
3481 /* An error occurred. */
3482 xfree (buf);
3483 return -1;
3485 else if (n == 0)
3487 /* Read all there was. */
3488 if (buf_pos == 0)
3489 xfree (buf);
3490 else
3491 *buf_p = buf;
3492 return buf_pos;
3495 buf_pos += n;
3497 /* If the buffer is filling up, expand it. */
3498 if (buf_alloc < buf_pos * 2)
3500 buf_alloc *= 2;
3501 buf = (gdb_byte *) xrealloc (buf, buf_alloc);
3504 QUIT;
3508 /* See target.h. */
3510 LONGEST
3511 target_fileio_read_alloc (struct inferior *inf, const char *filename,
3512 gdb_byte **buf_p)
3514 return target_fileio_read_alloc_1 (inf, filename, buf_p, 0);
3517 /* See target.h. */
3519 gdb::unique_xmalloc_ptr<char>
3520 target_fileio_read_stralloc (struct inferior *inf, const char *filename)
3522 gdb_byte *buffer;
3523 char *bufstr;
3524 LONGEST i, transferred;
3526 transferred = target_fileio_read_alloc_1 (inf, filename, &buffer, 1);
3527 bufstr = (char *) buffer;
3529 if (transferred < 0)
3530 return gdb::unique_xmalloc_ptr<char> (nullptr);
3532 if (transferred == 0)
3533 return make_unique_xstrdup ("");
3535 bufstr[transferred] = 0;
3537 /* Check for embedded NUL bytes; but allow trailing NULs. */
3538 for (i = strlen (bufstr); i < transferred; i++)
3539 if (bufstr[i] != 0)
3541 warning (_("target file %s "
3542 "contained unexpected null characters"),
3543 filename);
3544 break;
3547 return gdb::unique_xmalloc_ptr<char> (bufstr);
3551 static int
3552 default_region_ok_for_hw_watchpoint (struct target_ops *self,
3553 CORE_ADDR addr, int len)
3555 gdbarch *arch = current_inferior ()->arch ();
3556 return (len <= gdbarch_ptr_bit (arch) / TARGET_CHAR_BIT);
3559 static int
3560 default_watchpoint_addr_within_range (struct target_ops *target,
3561 CORE_ADDR addr,
3562 CORE_ADDR start, int length)
3564 return addr >= start && addr < start + length;
3567 /* See target.h. */
3569 target_ops *
3570 target_stack::find_beneath (const target_ops *t) const
3572 /* Look for a non-empty slot at stratum levels beneath T's. */
3573 for (int stratum = t->stratum () - 1; stratum >= 0; --stratum)
3574 if (m_stack[stratum].get () != NULL)
3575 return m_stack[stratum].get ();
3577 return NULL;
3580 /* See target.h. */
3582 struct target_ops *
3583 find_target_at (enum strata stratum)
3585 return current_inferior ()->target_at (stratum);
3590 /* See target.h */
3592 void
3593 target_announce_detach (int from_tty)
3595 pid_t pid;
3596 const char *exec_file;
3598 if (!from_tty)
3599 return;
3601 pid = inferior_ptid.pid ();
3602 exec_file = get_exec_file (0);
3603 if (exec_file == nullptr)
3604 gdb_printf ("Detaching from pid %s\n",
3605 target_pid_to_str (ptid_t (pid)).c_str ());
3606 else
3607 gdb_printf (_("Detaching from program: %s, %s\n"), exec_file,
3608 target_pid_to_str (ptid_t (pid)).c_str ());
3611 /* See target.h */
3613 void
3614 target_announce_attach (int from_tty, int pid)
3616 if (!from_tty)
3617 return;
3619 const char *exec_file = get_exec_file (0);
3621 if (exec_file != nullptr)
3622 gdb_printf ("Attaching to program: %s, %s\n", exec_file,
3623 target_pid_to_str (ptid_t (pid)).c_str ());
3624 else
3625 gdb_printf ("Attaching to %s\n",
3626 target_pid_to_str (ptid_t (pid)).c_str ());
3629 /* The inferior process has died. Long live the inferior! */
3631 void
3632 generic_mourn_inferior (void)
3634 inferior *inf = current_inferior ();
3636 switch_to_no_thread ();
3638 /* Mark breakpoints uninserted in case something tries to delete a
3639 breakpoint while we delete the inferior's threads (which would
3640 fail, since the inferior is long gone). */
3641 mark_breakpoints_out ();
3643 if (inf->pid != 0)
3644 exit_inferior (inf);
3646 /* Note this wipes step-resume breakpoints, so needs to be done
3647 after exit_inferior, which ends up referencing the step-resume
3648 breakpoints through clear_thread_inferior_resources. */
3649 breakpoint_init_inferior (inf_exited);
3651 registers_changed ();
3653 reopen_exec_file ();
3654 reinit_frame_cache ();
3656 if (deprecated_detach_hook)
3657 deprecated_detach_hook ();
3660 /* Convert a normal process ID to a string. Returns the string in a
3661 static buffer. */
3663 std::string
3664 normal_pid_to_str (ptid_t ptid)
3666 return string_printf ("process %d", ptid.pid ());
3669 static std::string
3670 default_pid_to_str (struct target_ops *ops, ptid_t ptid)
3672 return normal_pid_to_str (ptid);
3675 /* Error-catcher for target_find_memory_regions. */
3676 static int
3677 dummy_find_memory_regions (struct target_ops *self,
3678 find_memory_region_ftype ignore1, void *ignore2)
3680 error (_("Command not implemented for this target."));
3681 return 0;
3684 /* Error-catcher for target_make_corefile_notes. */
3685 static gdb::unique_xmalloc_ptr<char>
3686 dummy_make_corefile_notes (struct target_ops *self,
3687 bfd *ignore1, int *ignore2)
3689 error (_("Command not implemented for this target."));
3690 return NULL;
3693 #include "target-delegates.c"
3695 /* The initial current target, so that there is always a semi-valid
3696 current target. */
3698 static dummy_target the_dummy_target;
3700 /* See target.h. */
3702 target_ops *
3703 get_dummy_target ()
3705 return &the_dummy_target;
3708 static const target_info dummy_target_info = {
3709 "None",
3710 N_("None"),
3714 strata
3715 dummy_target::stratum () const
3717 return dummy_stratum;
3720 strata
3721 debug_target::stratum () const
3723 return debug_stratum;
3726 const target_info &
3727 dummy_target::info () const
3729 return dummy_target_info;
3732 const target_info &
3733 debug_target::info () const
3735 return beneath ()->info ();
3741 target_thread_alive (ptid_t ptid)
3743 return current_inferior ()->top_target ()->thread_alive (ptid);
3746 void
3747 target_update_thread_list (void)
3749 current_inferior ()->top_target ()->update_thread_list ();
3752 void
3753 target_stop (ptid_t ptid)
3755 process_stratum_target *proc_target = current_inferior ()->process_target ();
3757 gdb_assert (!proc_target->commit_resumed_state);
3759 if (!may_stop)
3761 warning (_("May not interrupt or stop the target, ignoring attempt"));
3762 return;
3765 current_inferior ()->top_target ()->stop (ptid);
3768 void
3769 target_interrupt ()
3771 if (!may_stop)
3773 warning (_("May not interrupt or stop the target, ignoring attempt"));
3774 return;
3777 current_inferior ()->top_target ()->interrupt ();
3780 /* See target.h. */
3782 void
3783 target_pass_ctrlc (void)
3785 /* Pass the Ctrl-C to the first target that has a thread
3786 running. */
3787 for (inferior *inf : all_inferiors ())
3789 target_ops *proc_target = inf->process_target ();
3790 if (proc_target == NULL)
3791 continue;
3793 for (thread_info *thr : inf->non_exited_threads ())
3795 /* A thread can be THREAD_STOPPED and executing, while
3796 running an infcall. */
3797 if (thr->state == THREAD_RUNNING || thr->executing ())
3799 /* We can get here quite deep in target layers. Avoid
3800 switching thread context or anything that would
3801 communicate with the target (e.g., to fetch
3802 registers), or flushing e.g., the frame cache. We
3803 just switch inferior in order to be able to call
3804 through the target_stack. */
3805 scoped_restore_current_inferior restore_inferior;
3806 set_current_inferior (inf);
3807 current_inferior ()->top_target ()->pass_ctrlc ();
3808 return;
3814 /* See target.h. */
3816 void
3817 default_target_pass_ctrlc (struct target_ops *ops)
3819 target_interrupt ();
3822 /* See target/target.h. */
3824 void
3825 target_stop_and_wait (ptid_t ptid)
3827 struct target_waitstatus status;
3828 bool was_non_stop = non_stop;
3830 non_stop = true;
3831 target_stop (ptid);
3833 target_wait (ptid, &status, 0);
3835 non_stop = was_non_stop;
3838 /* See target/target.h. */
3840 void
3841 target_continue_no_signal (ptid_t ptid)
3843 target_resume (ptid, 0, GDB_SIGNAL_0);
3846 /* See target/target.h. */
3848 void
3849 target_continue (ptid_t ptid, enum gdb_signal signal)
3851 target_resume (ptid, 0, signal);
3854 /* Concatenate ELEM to LIST, a comma-separated list. */
3856 static void
3857 str_comma_list_concat_elem (std::string *list, const char *elem)
3859 if (!list->empty ())
3860 list->append (", ");
3862 list->append (elem);
3865 /* Helper for target_options_to_string. If OPT is present in
3866 TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
3867 OPT is removed from TARGET_OPTIONS. */
3869 static void
3870 do_option (target_wait_flags *target_options, std::string *ret,
3871 target_wait_flag opt, const char *opt_str)
3873 if ((*target_options & opt) != 0)
3875 str_comma_list_concat_elem (ret, opt_str);
3876 *target_options &= ~opt;
3880 /* See target.h. */
3882 std::string
3883 target_options_to_string (target_wait_flags target_options)
3885 std::string ret;
3887 #define DO_TARG_OPTION(OPT) \
3888 do_option (&target_options, &ret, OPT, #OPT)
3890 DO_TARG_OPTION (TARGET_WNOHANG);
3892 if (target_options != 0)
3893 str_comma_list_concat_elem (&ret, "unknown???");
3895 return ret;
3898 void
3899 target_fetch_registers (struct regcache *regcache, int regno)
3901 current_inferior ()->top_target ()->fetch_registers (regcache, regno);
3902 if (targetdebug)
3903 regcache->debug_print_register ("target_fetch_registers", regno);
3906 void
3907 target_store_registers (struct regcache *regcache, int regno)
3909 if (!may_write_registers)
3910 error (_("Writing to registers is not allowed (regno %d)"), regno);
3912 current_inferior ()->top_target ()->store_registers (regcache, regno);
3913 if (targetdebug)
3915 regcache->debug_print_register ("target_store_registers", regno);
3920 target_core_of_thread (ptid_t ptid)
3922 return current_inferior ()->top_target ()->core_of_thread (ptid);
3926 simple_verify_memory (struct target_ops *ops,
3927 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
3929 LONGEST total_xfered = 0;
3931 while (total_xfered < size)
3933 ULONGEST xfered_len;
3934 enum target_xfer_status status;
3935 gdb_byte buf[1024];
3936 ULONGEST howmuch = std::min<ULONGEST> (sizeof (buf), size - total_xfered);
3938 status = target_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
3939 buf, NULL, lma + total_xfered, howmuch,
3940 &xfered_len);
3941 if (status == TARGET_XFER_OK
3942 && memcmp (data + total_xfered, buf, xfered_len) == 0)
3944 total_xfered += xfered_len;
3945 QUIT;
3947 else
3948 return 0;
3950 return 1;
3953 /* Default implementation of memory verification. */
3955 static int
3956 default_verify_memory (struct target_ops *self,
3957 const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3959 /* Start over from the top of the target stack. */
3960 return simple_verify_memory (current_inferior ()->top_target (),
3961 data, memaddr, size);
3965 target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3967 target_ops *target = current_inferior ()->top_target ();
3969 return target->verify_memory (data, memaddr, size);
3972 /* The documentation for this function is in its prototype declaration in
3973 target.h. */
3976 target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask,
3977 enum target_hw_bp_type rw)
3979 target_ops *target = current_inferior ()->top_target ();
3981 return target->insert_mask_watchpoint (addr, mask, rw);
3984 /* The documentation for this function is in its prototype declaration in
3985 target.h. */
3988 target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask,
3989 enum target_hw_bp_type rw)
3991 target_ops *target = current_inferior ()->top_target ();
3993 return target->remove_mask_watchpoint (addr, mask, rw);
3996 /* The documentation for this function is in its prototype declaration
3997 in target.h. */
4000 target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
4002 target_ops *target = current_inferior ()->top_target ();
4004 return target->masked_watch_num_registers (addr, mask);
4007 /* The documentation for this function is in its prototype declaration
4008 in target.h. */
4011 target_ranged_break_num_registers (void)
4013 return current_inferior ()->top_target ()->ranged_break_num_registers ();
4016 /* See target.h. */
4018 struct btrace_target_info *
4019 target_enable_btrace (thread_info *tp, const struct btrace_config *conf)
4021 return current_inferior ()->top_target ()->enable_btrace (tp, conf);
4024 /* See target.h. */
4026 void
4027 target_disable_btrace (struct btrace_target_info *btinfo)
4029 current_inferior ()->top_target ()->disable_btrace (btinfo);
4032 /* See target.h. */
4034 void
4035 target_teardown_btrace (struct btrace_target_info *btinfo)
4037 current_inferior ()->top_target ()->teardown_btrace (btinfo);
4040 /* See target.h. */
4042 enum btrace_error
4043 target_read_btrace (struct btrace_data *btrace,
4044 struct btrace_target_info *btinfo,
4045 enum btrace_read_type type)
4047 target_ops *target = current_inferior ()->top_target ();
4049 return target->read_btrace (btrace, btinfo, type);
4052 /* See target.h. */
4054 const struct btrace_config *
4055 target_btrace_conf (const struct btrace_target_info *btinfo)
4057 return current_inferior ()->top_target ()->btrace_conf (btinfo);
4060 /* See target.h. */
4062 void
4063 target_stop_recording (void)
4065 current_inferior ()->top_target ()->stop_recording ();
4068 /* See target.h. */
4070 void
4071 target_save_record (const char *filename)
4073 current_inferior ()->top_target ()->save_record (filename);
4076 /* See target.h. */
4079 target_supports_delete_record ()
4081 return current_inferior ()->top_target ()->supports_delete_record ();
4084 /* See target.h. */
4086 void
4087 target_delete_record (void)
4089 current_inferior ()->top_target ()->delete_record ();
4092 /* See target.h. */
4094 enum record_method
4095 target_record_method (ptid_t ptid)
4097 return current_inferior ()->top_target ()->record_method (ptid);
4100 /* See target.h. */
4103 target_record_is_replaying (ptid_t ptid)
4105 return current_inferior ()->top_target ()->record_is_replaying (ptid);
4108 /* See target.h. */
4111 target_record_will_replay (ptid_t ptid, int dir)
4113 return current_inferior ()->top_target ()->record_will_replay (ptid, dir);
4116 /* See target.h. */
4118 void
4119 target_record_stop_replaying (void)
4121 current_inferior ()->top_target ()->record_stop_replaying ();
4124 /* See target.h. */
4126 void
4127 target_goto_record_begin (void)
4129 current_inferior ()->top_target ()->goto_record_begin ();
4132 /* See target.h. */
4134 void
4135 target_goto_record_end (void)
4137 current_inferior ()->top_target ()->goto_record_end ();
4140 /* See target.h. */
4142 void
4143 target_goto_record (ULONGEST insn)
4145 current_inferior ()->top_target ()->goto_record (insn);
4148 /* See target.h. */
4150 void
4151 target_insn_history (int size, gdb_disassembly_flags flags)
4153 current_inferior ()->top_target ()->insn_history (size, flags);
4156 /* See target.h. */
4158 void
4159 target_insn_history_from (ULONGEST from, int size,
4160 gdb_disassembly_flags flags)
4162 current_inferior ()->top_target ()->insn_history_from (from, size, flags);
4165 /* See target.h. */
4167 void
4168 target_insn_history_range (ULONGEST begin, ULONGEST end,
4169 gdb_disassembly_flags flags)
4171 current_inferior ()->top_target ()->insn_history_range (begin, end, flags);
4174 /* See target.h. */
4176 void
4177 target_call_history (int size, record_print_flags flags)
4179 current_inferior ()->top_target ()->call_history (size, flags);
4182 /* See target.h. */
4184 void
4185 target_call_history_from (ULONGEST begin, int size, record_print_flags flags)
4187 current_inferior ()->top_target ()->call_history_from (begin, size, flags);
4190 /* See target.h. */
4192 void
4193 target_call_history_range (ULONGEST begin, ULONGEST end, record_print_flags flags)
4195 current_inferior ()->top_target ()->call_history_range (begin, end, flags);
4198 /* See target.h. */
4200 const struct frame_unwind *
4201 target_get_unwinder (void)
4203 return current_inferior ()->top_target ()->get_unwinder ();
4206 /* See target.h. */
4208 const struct frame_unwind *
4209 target_get_tailcall_unwinder (void)
4211 return current_inferior ()->top_target ()->get_tailcall_unwinder ();
4214 /* See target.h. */
4216 void
4217 target_prepare_to_generate_core (void)
4219 current_inferior ()->top_target ()->prepare_to_generate_core ();
4222 /* See target.h. */
4224 void
4225 target_done_generating_core (void)
4227 current_inferior ()->top_target ()->done_generating_core ();
4232 static char targ_desc[] =
4233 "Names of targets and files being debugged.\nShows the entire \
4234 stack of targets currently in use (including the exec-file,\n\
4235 core-file, and process, if any), as well as the symbol file name.";
4237 static void
4238 default_rcmd (struct target_ops *self, const char *command,
4239 struct ui_file *output)
4241 error (_("\"monitor\" command not supported by this target."));
4244 static void
4245 do_monitor_command (const char *cmd, int from_tty)
4247 target_rcmd (cmd, gdb_stdtarg);
4250 /* Erases all the memory regions marked as flash. CMD and FROM_TTY are
4251 ignored. */
4253 void
4254 flash_erase_command (const char *cmd, int from_tty)
4256 /* Used to communicate termination of flash operations to the target. */
4257 bool found_flash_region = false;
4258 gdbarch *gdbarch = current_inferior ()->arch ();
4260 std::vector<mem_region> mem_regions = target_memory_map ();
4262 /* Iterate over all memory regions. */
4263 for (const mem_region &m : mem_regions)
4265 /* Is this a flash memory region? */
4266 if (m.attrib.mode == MEM_FLASH)
4268 found_flash_region = true;
4269 target_flash_erase (m.lo, m.hi - m.lo);
4271 ui_out_emit_tuple tuple_emitter (current_uiout, "erased-regions");
4273 current_uiout->message (_("Erasing flash memory region at address "));
4274 current_uiout->field_core_addr ("address", gdbarch, m.lo);
4275 current_uiout->message (", size = ");
4276 current_uiout->field_string ("size", hex_string (m.hi - m.lo));
4277 current_uiout->message ("\n");
4281 /* Did we do any flash operations? If so, we need to finalize them. */
4282 if (found_flash_region)
4283 target_flash_done ();
4284 else
4285 current_uiout->message (_("No flash memory regions found.\n"));
4288 /* Print the name of each layers of our target stack. */
4290 static void
4291 maintenance_print_target_stack (const char *cmd, int from_tty)
4293 gdb_printf (_("The current target stack is:\n"));
4295 for (target_ops *t = current_inferior ()->top_target ();
4296 t != NULL;
4297 t = t->beneath ())
4299 if (t->stratum () == debug_stratum)
4300 continue;
4301 gdb_printf (" - %s (%s)\n", t->shortname (), t->longname ());
4305 /* See target.h. */
4307 void
4308 target_async (bool enable)
4310 /* If we are trying to enable async mode then it must be the case that
4311 async mode is possible for this target. */
4312 gdb_assert (!enable || target_can_async_p ());
4313 infrun_async (enable);
4314 current_inferior ()->top_target ()->async (enable);
4317 /* See target.h. */
4319 void
4320 target_thread_events (int enable)
4322 current_inferior ()->top_target ()->thread_events (enable);
4325 /* Controls if targets can report that they can/are async. This is
4326 just for maintainers to use when debugging gdb. */
4327 bool target_async_permitted = true;
4329 static void
4330 set_maint_target_async (bool permitted)
4332 if (have_live_inferiors ())
4333 error (_("Cannot change this setting while the inferior is running."));
4335 target_async_permitted = permitted;
4338 static bool
4339 get_maint_target_async ()
4341 return target_async_permitted;
4344 static void
4345 show_maint_target_async (ui_file *file, int from_tty,
4346 cmd_list_element *c, const char *value)
4348 gdb_printf (file,
4349 _("Controlling the inferior in "
4350 "asynchronous mode is %s.\n"), value);
4353 /* Return true if the target operates in non-stop mode even with "set
4354 non-stop off". */
4356 static int
4357 target_always_non_stop_p (void)
4359 return current_inferior ()->top_target ()->always_non_stop_p ();
4362 /* See target.h. */
4364 bool
4365 target_is_non_stop_p ()
4367 return ((non_stop
4368 || target_non_stop_enabled == AUTO_BOOLEAN_TRUE
4369 || (target_non_stop_enabled == AUTO_BOOLEAN_AUTO
4370 && target_always_non_stop_p ()))
4371 && target_can_async_p ());
4374 /* See target.h. */
4376 bool
4377 exists_non_stop_target ()
4379 if (target_is_non_stop_p ())
4380 return true;
4382 scoped_restore_current_thread restore_thread;
4384 for (inferior *inf : all_inferiors ())
4386 switch_to_inferior_no_thread (inf);
4387 if (target_is_non_stop_p ())
4388 return true;
4391 return false;
4394 /* Controls if targets can report that they always run in non-stop
4395 mode. This is just for maintainers to use when debugging gdb. */
4396 enum auto_boolean target_non_stop_enabled = AUTO_BOOLEAN_AUTO;
4398 /* Set callback for maint target-non-stop setting. */
4400 static void
4401 set_maint_target_non_stop (auto_boolean enabled)
4403 if (have_live_inferiors ())
4404 error (_("Cannot change this setting while the inferior is running."));
4406 target_non_stop_enabled = enabled;
4409 /* Get callback for maint target-non-stop setting. */
4411 static auto_boolean
4412 get_maint_target_non_stop ()
4414 return target_non_stop_enabled;
4417 static void
4418 show_maint_target_non_stop (ui_file *file, int from_tty,
4419 cmd_list_element *c, const char *value)
4421 if (target_non_stop_enabled == AUTO_BOOLEAN_AUTO)
4422 gdb_printf (file,
4423 _("Whether the target is always in non-stop mode "
4424 "is %s (currently %s).\n"), value,
4425 target_always_non_stop_p () ? "on" : "off");
4426 else
4427 gdb_printf (file,
4428 _("Whether the target is always in non-stop mode "
4429 "is %s.\n"), value);
4432 /* Temporary copies of permission settings. */
4434 static bool may_write_registers_1 = true;
4435 static bool may_write_memory_1 = true;
4436 static bool may_insert_breakpoints_1 = true;
4437 static bool may_insert_tracepoints_1 = true;
4438 static bool may_insert_fast_tracepoints_1 = true;
4439 static bool may_stop_1 = true;
4441 /* Make the user-set values match the real values again. */
4443 void
4444 update_target_permissions (void)
4446 may_write_registers_1 = may_write_registers;
4447 may_write_memory_1 = may_write_memory;
4448 may_insert_breakpoints_1 = may_insert_breakpoints;
4449 may_insert_tracepoints_1 = may_insert_tracepoints;
4450 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
4451 may_stop_1 = may_stop;
4454 /* The one function handles (most of) the permission flags in the same
4455 way. */
4457 static void
4458 set_target_permissions (const char *args, int from_tty,
4459 struct cmd_list_element *c)
4461 if (target_has_execution ())
4463 update_target_permissions ();
4464 error (_("Cannot change this setting while the inferior is running."));
4467 /* Make the real values match the user-changed values. */
4468 may_insert_breakpoints = may_insert_breakpoints_1;
4469 may_insert_tracepoints = may_insert_tracepoints_1;
4470 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
4471 may_stop = may_stop_1;
4472 update_observer_mode ();
4475 /* Set some permissions independently of observer mode. */
4477 static void
4478 set_write_memory_registers_permission (const char *args, int from_tty,
4479 struct cmd_list_element *c)
4481 /* Make the real values match the user-changed values. */
4482 may_write_memory = may_write_memory_1;
4483 may_write_registers = may_write_registers_1;
4484 update_observer_mode ();
4487 void _initialize_target ();
4489 void
4490 _initialize_target ()
4492 the_debug_target = new debug_target ();
4494 add_info ("target", info_target_command, targ_desc);
4495 add_info ("files", info_target_command, targ_desc);
4497 add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
4498 Set target debugging."), _("\
4499 Show target debugging."), _("\
4500 When non-zero, target debugging is enabled. Higher numbers are more\n\
4501 verbose."),
4502 set_targetdebug,
4503 show_targetdebug,
4504 &setdebuglist, &showdebuglist);
4506 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
4507 &trust_readonly, _("\
4508 Set mode for reading from readonly sections."), _("\
4509 Show mode for reading from readonly sections."), _("\
4510 When this mode is on, memory reads from readonly sections (such as .text)\n\
4511 will be read from the object file instead of from the target. This will\n\
4512 result in significant performance improvement for remote targets."),
4513 NULL,
4514 show_trust_readonly,
4515 &setlist, &showlist);
4517 add_com ("monitor", class_obscure, do_monitor_command,
4518 _("Send a command to the remote monitor (remote targets only)."));
4520 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
4521 _("Print the name of each layer of the internal target stack."),
4522 &maintenanceprintlist);
4524 add_setshow_boolean_cmd ("target-async", no_class,
4525 _("\
4526 Set whether gdb controls the inferior in asynchronous mode."), _("\
4527 Show whether gdb controls the inferior in asynchronous mode."), _("\
4528 Tells gdb whether to control the inferior in asynchronous mode."),
4529 set_maint_target_async,
4530 get_maint_target_async,
4531 show_maint_target_async,
4532 &maintenance_set_cmdlist,
4533 &maintenance_show_cmdlist);
4535 add_setshow_auto_boolean_cmd ("target-non-stop", no_class,
4536 _("\
4537 Set whether gdb always controls the inferior in non-stop mode."), _("\
4538 Show whether gdb always controls the inferior in non-stop mode."), _("\
4539 Tells gdb whether to control the inferior in non-stop mode."),
4540 set_maint_target_non_stop,
4541 get_maint_target_non_stop,
4542 show_maint_target_non_stop,
4543 &maintenance_set_cmdlist,
4544 &maintenance_show_cmdlist);
4546 add_setshow_boolean_cmd ("may-write-registers", class_support,
4547 &may_write_registers_1, _("\
4548 Set permission to write into registers."), _("\
4549 Show permission to write into registers."), _("\
4550 When this permission is on, GDB may write into the target's registers.\n\
4551 Otherwise, any sort of write attempt will result in an error."),
4552 set_write_memory_registers_permission, NULL,
4553 &setlist, &showlist);
4555 add_setshow_boolean_cmd ("may-write-memory", class_support,
4556 &may_write_memory_1, _("\
4557 Set permission to write into target memory."), _("\
4558 Show permission to write into target memory."), _("\
4559 When this permission is on, GDB may write into the target's memory.\n\
4560 Otherwise, any sort of write attempt will result in an error."),
4561 set_write_memory_registers_permission, NULL,
4562 &setlist, &showlist);
4564 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
4565 &may_insert_breakpoints_1, _("\
4566 Set permission to insert breakpoints in the target."), _("\
4567 Show permission to insert breakpoints in the target."), _("\
4568 When this permission is on, GDB may insert breakpoints in the program.\n\
4569 Otherwise, any sort of insertion attempt will result in an error."),
4570 set_target_permissions, NULL,
4571 &setlist, &showlist);
4573 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
4574 &may_insert_tracepoints_1, _("\
4575 Set permission to insert tracepoints in the target."), _("\
4576 Show permission to insert tracepoints in the target."), _("\
4577 When this permission is on, GDB may insert tracepoints in the program.\n\
4578 Otherwise, any sort of insertion attempt will result in an error."),
4579 set_target_permissions, NULL,
4580 &setlist, &showlist);
4582 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
4583 &may_insert_fast_tracepoints_1, _("\
4584 Set permission to insert fast tracepoints in the target."), _("\
4585 Show permission to insert fast tracepoints in the target."), _("\
4586 When this permission is on, GDB may insert fast tracepoints.\n\
4587 Otherwise, any sort of insertion attempt will result in an error."),
4588 set_target_permissions, NULL,
4589 &setlist, &showlist);
4591 add_setshow_boolean_cmd ("may-interrupt", class_support,
4592 &may_stop_1, _("\
4593 Set permission to interrupt or signal the target."), _("\
4594 Show permission to interrupt or signal the target."), _("\
4595 When this permission is on, GDB may interrupt/stop the target's execution.\n\
4596 Otherwise, any attempt to interrupt or stop will be ignored."),
4597 set_target_permissions, NULL,
4598 &setlist, &showlist);
4600 add_com ("flash-erase", no_class, flash_erase_command,
4601 _("Erase all flash memory regions."));
4603 add_setshow_boolean_cmd ("auto-connect-native-target", class_support,
4604 &auto_connect_native_target, _("\
4605 Set whether GDB may automatically connect to the native target."), _("\
4606 Show whether GDB may automatically connect to the native target."), _("\
4607 When on, and GDB is not connected to a target yet, GDB\n\
4608 attempts \"run\" and other commands with the native target."),
4609 NULL, show_auto_connect_native_target,
4610 &setlist, &showlist);