gdb: on exec, delegate pushing / unpushing target and adding thread to target_ops...
[deliverable/binutils-gdb.git] / gdb / target.c
CommitLineData
c906108c 1/* Select target systems and architectures at runtime for GDB.
7998dfc3 2
3666a048 3 Copyright (C) 1990-2021 Free Software Foundation, Inc.
7998dfc3 4
c906108c
SS
5 Contributed by Cygnus Support.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
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.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
c906108c 23#include "target.h"
68c765e2 24#include "target-dcache.h"
c906108c
SS
25#include "gdbcmd.h"
26#include "symtab.h"
27#include "inferior.h"
45741a9c 28#include "infrun.h"
c906108c
SS
29#include "bfd.h"
30#include "symfile.h"
31#include "objfiles.h"
4930751a 32#include "dcache.h"
c906108c 33#include <signal.h>
4e052eda 34#include "regcache.h"
b6591e8b 35#include "gdbcore.h"
424163ea 36#include "target-descriptions.h"
e1ac3328 37#include "gdbthread.h"
b9db4ced 38#include "solib.h"
07b82ea5 39#include "exec.h"
edb3359d 40#include "inline-frame.h"
2f4d8875 41#include "tracepoint.h"
7313baad 42#include "gdb/fileio.h"
268a13a5 43#include "gdbsupport/agent.h"
8de71aab 44#include "auxv.h"
a7068b60 45#include "target-debug.h"
41fd2b0f
PA
46#include "top.h"
47#include "event-top.h"
325fac50 48#include <algorithm>
268a13a5 49#include "gdbsupport/byte-vector.h"
4a72de73 50#include "gdbsupport/search.h"
e671cd59 51#include "terminal.h"
d9f719f1 52#include <unordered_map>
121b3efd 53#include "target-connection.h"
670e35fa 54#include "valprint.h"
c906108c 55
f0f9ff95
TT
56static void generic_tls_error (void) ATTRIBUTE_NORETURN;
57
0a4f40a2 58static void default_terminal_info (struct target_ops *, const char *, int);
c906108c 59
5009afc5
AS
60static int default_watchpoint_addr_within_range (struct target_ops *,
61 CORE_ADDR, CORE_ADDR, int);
62
31568a15
TT
63static int default_region_ok_for_hw_watchpoint (struct target_ops *,
64 CORE_ADDR, int);
e0d24f8d 65
a30bf1f1 66static void default_rcmd (struct target_ops *, const char *, struct ui_file *);
a53f3625 67
4229b31d
TT
68static ptid_t default_get_ada_task_ptid (struct target_ops *self,
69 long lwp, long tid);
70
8d657035
TT
71static void default_mourn_inferior (struct target_ops *self);
72
58a5184e
TT
73static int default_search_memory (struct target_ops *ops,
74 CORE_ADDR start_addr,
75 ULONGEST search_space_len,
76 const gdb_byte *pattern,
77 ULONGEST pattern_len,
78 CORE_ADDR *found_addrp);
79
936d2992
PA
80static int default_verify_memory (struct target_ops *self,
81 const gdb_byte *data,
82 CORE_ADDR memaddr, ULONGEST size);
83
c25c4a8b 84static void tcomplain (void) ATTRIBUTE_NORETURN;
c906108c 85
a121b7c1 86static struct target_ops *find_default_run_target (const char *);
c906108c 87
0b5a2719
TT
88static int dummy_find_memory_regions (struct target_ops *self,
89 find_memory_region_ftype ignore1,
90 void *ignore2);
91
24f5300a
SM
92static gdb::unique_xmalloc_ptr<char> dummy_make_corefile_notes
93 (struct target_ops *self, bfd *ignore1, int *ignore2);
16f796b1 94
a068643d 95static std::string default_pid_to_str (struct target_ops *ops, ptid_t ptid);
770234d3 96
fe31bf5b
TT
97static enum exec_direction_kind default_execution_direction
98 (struct target_ops *self);
99
d9f719f1
PA
100/* Mapping between target_info objects (which have address identity)
101 and corresponding open/factory function/callback. Each add_target
102 call adds one entry to this map, and registers a "target
103 TARGET_NAME" command that when invoked calls the factory registered
104 here. The target_info object is associated with the command via
105 the command's context. */
106static std::unordered_map<const target_info *, target_open_ftype *>
107 target_factories;
c906108c 108
06b5b831 109/* The singleton debug target. */
c906108c 110
f6ac5f3d 111static struct target_ops *the_debug_target;
c906108c 112
c906108c
SS
113/* Command list for target. */
114
115static struct cmd_list_element *targetlist = NULL;
116
491144b5 117/* True if we should trust readonly sections from the
cf7a04e8
DJ
118 executable when reading memory. */
119
491144b5 120static bool trust_readonly = false;
cf7a04e8 121
8defab1a
DJ
122/* Nonzero if we should show true memory content including
123 memory breakpoint inserted by gdb. */
124
125static int show_memory_breakpoints = 0;
126
d914c394
SS
127/* These globals control whether GDB attempts to perform these
128 operations; they are useful for targets that need to prevent
30baf67b 129 inadvertent disruption, such as in non-stop mode. */
d914c394 130
491144b5 131bool may_write_registers = true;
d914c394 132
491144b5 133bool may_write_memory = true;
d914c394 134
491144b5 135bool may_insert_breakpoints = true;
d914c394 136
491144b5 137bool may_insert_tracepoints = true;
d914c394 138
491144b5 139bool may_insert_fast_tracepoints = true;
d914c394 140
491144b5 141bool may_stop = true;
d914c394 142
c906108c
SS
143/* Non-zero if we want to see trace of target level stuff. */
144
ccce17b0 145static unsigned int targetdebug = 0;
3cecbbbe
TT
146
147static void
eb4c3f4a 148set_targetdebug (const char *args, int from_tty, struct cmd_list_element *c)
3cecbbbe 149{
f6ac5f3d 150 if (targetdebug)
02980c56 151 current_inferior ()->push_target (the_debug_target);
f6ac5f3d 152 else
fadf6add 153 current_inferior ()->unpush_target (the_debug_target);
3cecbbbe
TT
154}
155
920d2a44
AC
156static void
157show_targetdebug (struct ui_file *file, int from_tty,
158 struct cmd_list_element *c, const char *value)
159{
160 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
161}
c906108c 162
c35b1492 163int
a739972c 164target_has_memory ()
c35b1492 165{
328d42d8
SM
166 for (target_ops *t = current_inferior ()->top_target ();
167 t != NULL;
168 t = t->beneath ())
f6ac5f3d 169 if (t->has_memory ())
c35b1492
PA
170 return 1;
171
172 return 0;
173}
174
175int
841de120 176target_has_stack ()
c35b1492 177{
328d42d8
SM
178 for (target_ops *t = current_inferior ()->top_target ();
179 t != NULL;
180 t = t->beneath ())
f6ac5f3d 181 if (t->has_stack ())
c35b1492
PA
182 return 1;
183
184 return 0;
185}
186
187int
9dccd06e 188target_has_registers ()
c35b1492 189{
328d42d8
SM
190 for (target_ops *t = current_inferior ()->top_target ();
191 t != NULL;
192 t = t->beneath ())
f6ac5f3d 193 if (t->has_registers ())
c35b1492
PA
194 return 1;
195
196 return 0;
197}
198
5018ce90 199bool
55f6301a 200target_has_execution (inferior *inf)
c35b1492 201{
55f6301a
TT
202 if (inf == nullptr)
203 inf = current_inferior ();
204
5b6d1e4f
PA
205 for (target_ops *t = inf->top_target ();
206 t != nullptr;
207 t = inf->find_target_beneath (t))
5018ce90
PA
208 if (t->has_execution (inf))
209 return true;
c35b1492 210
5018ce90 211 return false;
c35b1492
PA
212}
213
d777bf0d
SM
214const char *
215target_shortname ()
216{
328d42d8 217 return current_inferior ()->top_target ()->shortname ();
d777bf0d
SM
218}
219
220/* See target.h. */
221
222bool
223target_attach_no_wait ()
224{
328d42d8 225 return current_inferior ()->top_target ()->attach_no_wait ();
d777bf0d
SM
226}
227
228/* See target.h. */
229
230void
231target_post_attach (int pid)
232{
328d42d8 233 return current_inferior ()->top_target ()->post_attach (pid);
d777bf0d
SM
234}
235
236/* See target.h. */
237
238void
239target_prepare_to_store (regcache *regcache)
240{
328d42d8 241 return current_inferior ()->top_target ()->prepare_to_store (regcache);
d777bf0d
SM
242}
243
244/* See target.h. */
245
246bool
247target_supports_enable_disable_tracepoint ()
248{
328d42d8
SM
249 target_ops *target = current_inferior ()->top_target ();
250
251 return target->supports_enable_disable_tracepoint ();
d777bf0d
SM
252}
253
254bool
255target_supports_string_tracing ()
256{
328d42d8 257 return current_inferior ()->top_target ()->supports_string_tracing ();
d777bf0d
SM
258}
259
260/* See target.h. */
261
262bool
263target_supports_evaluation_of_breakpoint_conditions ()
264{
328d42d8
SM
265 target_ops *target = current_inferior ()->top_target ();
266
267 return target->supports_evaluation_of_breakpoint_conditions ();
d777bf0d
SM
268}
269
270/* See target.h. */
271
272bool
273target_supports_dumpcore ()
274{
328d42d8 275 return current_inferior ()->top_target ()->supports_dumpcore ();
d777bf0d
SM
276}
277
278/* See target.h. */
279
280void
281target_dumpcore (const char *filename)
282{
328d42d8 283 return current_inferior ()->top_target ()->dumpcore (filename);
d777bf0d
SM
284}
285
286/* See target.h. */
287
288bool
289target_can_run_breakpoint_commands ()
290{
328d42d8 291 return current_inferior ()->top_target ()->can_run_breakpoint_commands ();
d777bf0d
SM
292}
293
294/* See target.h. */
295
296void
297target_files_info ()
298{
328d42d8 299 return current_inferior ()->top_target ()->files_info ();
d777bf0d
SM
300}
301
302/* See target.h. */
303
304void
305target_post_startup_inferior (ptid_t ptid)
306{
328d42d8 307 return current_inferior ()->top_target ()->post_startup_inferior (ptid);
d777bf0d
SM
308}
309
310/* See target.h. */
311
312int
313target_insert_fork_catchpoint (int pid)
314{
328d42d8 315 return current_inferior ()->top_target ()->insert_fork_catchpoint (pid);
d777bf0d
SM
316}
317
318/* See target.h. */
319
320int
321target_remove_fork_catchpoint (int pid)
322{
328d42d8 323 return current_inferior ()->top_target ()->remove_fork_catchpoint (pid);
d777bf0d
SM
324}
325
326/* See target.h. */
327
328int
329target_insert_vfork_catchpoint (int pid)
330{
328d42d8 331 return current_inferior ()->top_target ()->insert_vfork_catchpoint (pid);
d777bf0d
SM
332}
333
334/* See target.h. */
335
336int
337target_remove_vfork_catchpoint (int pid)
338{
328d42d8 339 return current_inferior ()->top_target ()->remove_vfork_catchpoint (pid);
d777bf0d
SM
340}
341
342/* See target.h. */
343
344int
345target_insert_exec_catchpoint (int pid)
346{
328d42d8 347 return current_inferior ()->top_target ()->insert_exec_catchpoint (pid);
d777bf0d
SM
348}
349
350/* See target.h. */
351
352int
353target_remove_exec_catchpoint (int pid)
354{
328d42d8 355 return current_inferior ()->top_target ()->remove_exec_catchpoint (pid);
d777bf0d
SM
356}
357
358/* See target.h. */
359
360int
361target_set_syscall_catchpoint (int pid, bool needed, int any_count,
362 gdb::array_view<const int> syscall_counts)
363{
328d42d8
SM
364 target_ops *target = current_inferior ()->top_target ();
365
366 return target->set_syscall_catchpoint (pid, needed, any_count,
367 syscall_counts);
d777bf0d
SM
368}
369
370/* See target.h. */
371
372void
373target_rcmd (const char *command, struct ui_file *outbuf)
374{
328d42d8 375 return current_inferior ()->top_target ()->rcmd (command, outbuf);
d777bf0d
SM
376}
377
378/* See target.h. */
379
380bool
381target_can_lock_scheduler ()
382{
328d42d8
SM
383 target_ops *target = current_inferior ()->top_target ();
384
385 return (target->get_thread_control_capabilities ()& tc_schedlock) != 0;
d777bf0d
SM
386}
387
388/* See target.h. */
389
390bool
391target_can_async_p ()
392{
328d42d8 393 return current_inferior ()->top_target ()->can_async_p ();
d777bf0d
SM
394}
395
396/* See target.h. */
397
398bool
399target_is_async_p ()
400{
328d42d8 401 return current_inferior ()->top_target ()->is_async_p ();
d777bf0d
SM
402}
403
404exec_direction_kind
405target_execution_direction ()
406{
328d42d8 407 return current_inferior ()->top_target ()->execution_direction ();
d777bf0d
SM
408}
409
410/* See target.h. */
411
412const char *
413target_extra_thread_info (thread_info *tp)
414{
328d42d8 415 return current_inferior ()->top_target ()->extra_thread_info (tp);
d777bf0d
SM
416}
417
418/* See target.h. */
419
420char *
421target_pid_to_exec_file (int pid)
422{
328d42d8 423 return current_inferior ()->top_target ()->pid_to_exec_file (pid);
d777bf0d
SM
424}
425
426/* See target.h. */
427
428gdbarch *
429target_thread_architecture (ptid_t ptid)
430{
328d42d8 431 return current_inferior ()->top_target ()->thread_architecture (ptid);
d777bf0d
SM
432}
433
434/* See target.h. */
435
436int
437target_find_memory_regions (find_memory_region_ftype func, void *data)
438{
328d42d8 439 return current_inferior ()->top_target ()->find_memory_regions (func, data);
d777bf0d
SM
440}
441
442/* See target.h. */
443
444gdb::unique_xmalloc_ptr<char>
445target_make_corefile_notes (bfd *bfd, int *size_p)
446{
328d42d8 447 return current_inferior ()->top_target ()->make_corefile_notes (bfd, size_p);
d777bf0d
SM
448}
449
450gdb_byte *
451target_get_bookmark (const char *args, int from_tty)
452{
328d42d8 453 return current_inferior ()->top_target ()->get_bookmark (args, from_tty);
d777bf0d
SM
454}
455
456void
457target_goto_bookmark (const gdb_byte *arg, int from_tty)
458{
328d42d8 459 return current_inferior ()->top_target ()->goto_bookmark (arg, from_tty);
d777bf0d
SM
460}
461
462/* See target.h. */
463
464bool
465target_stopped_by_watchpoint ()
466{
328d42d8 467 return current_inferior ()->top_target ()->stopped_by_watchpoint ();
d777bf0d
SM
468}
469
470/* See target.h. */
471
472bool
473target_stopped_by_sw_breakpoint ()
474{
328d42d8 475 return current_inferior ()->top_target ()->stopped_by_sw_breakpoint ();
d777bf0d
SM
476}
477
478bool
479target_supports_stopped_by_sw_breakpoint ()
480{
328d42d8
SM
481 target_ops *target = current_inferior ()->top_target ();
482
483 return target->supports_stopped_by_sw_breakpoint ();
d777bf0d
SM
484}
485
486bool
487target_stopped_by_hw_breakpoint ()
488{
328d42d8 489 return current_inferior ()->top_target ()->stopped_by_hw_breakpoint ();
d777bf0d
SM
490}
491
492bool
493target_supports_stopped_by_hw_breakpoint ()
494{
328d42d8
SM
495 target_ops *target = current_inferior ()->top_target ();
496
497 return target->supports_stopped_by_hw_breakpoint ();
d777bf0d
SM
498}
499
500/* See target.h. */
501
502bool
503target_have_steppable_watchpoint ()
504{
328d42d8 505 return current_inferior ()->top_target ()->have_steppable_watchpoint ();
d777bf0d
SM
506}
507
508/* See target.h. */
509
510int
511target_can_use_hardware_watchpoint (bptype type, int cnt, int othertype)
512{
328d42d8
SM
513 target_ops *target = current_inferior ()->top_target ();
514
515 return target->can_use_hw_breakpoint (type, cnt, othertype);
d777bf0d
SM
516}
517
518/* See target.h. */
519
520int
521target_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
522{
328d42d8
SM
523 target_ops *target = current_inferior ()->top_target ();
524
525 return target->region_ok_for_hw_watchpoint (addr, len);
d777bf0d
SM
526}
527
528
529int
530target_can_do_single_step ()
531{
328d42d8 532 return current_inferior ()->top_target ()->can_do_single_step ();
d777bf0d
SM
533}
534
535/* See target.h. */
536
537int
538target_insert_watchpoint (CORE_ADDR addr, int len, target_hw_bp_type type,
539 expression *cond)
540{
328d42d8
SM
541 target_ops *target = current_inferior ()->top_target ();
542
543 return target->insert_watchpoint (addr, len, type, cond);
d777bf0d
SM
544}
545
546/* See target.h. */
547
548int
549target_remove_watchpoint (CORE_ADDR addr, int len, target_hw_bp_type type,
550 expression *cond)
551{
328d42d8
SM
552 target_ops *target = current_inferior ()->top_target ();
553
554 return target->remove_watchpoint (addr, len, type, cond);
d777bf0d
SM
555}
556
557/* See target.h. */
558
559int
560target_insert_hw_breakpoint (gdbarch *gdbarch, bp_target_info *bp_tgt)
561{
328d42d8
SM
562 target_ops *target = current_inferior ()->top_target ();
563
564 return target->insert_hw_breakpoint (gdbarch, bp_tgt);
d777bf0d
SM
565}
566
567/* See target.h. */
568
569int
570target_remove_hw_breakpoint (gdbarch *gdbarch, bp_target_info *bp_tgt)
571{
328d42d8
SM
572 target_ops *target = current_inferior ()->top_target ();
573
574 return target->remove_hw_breakpoint (gdbarch, bp_tgt);
d777bf0d
SM
575}
576
577/* See target.h. */
578
579bool
580target_can_accel_watchpoint_condition (CORE_ADDR addr, int len, int type,
581 expression *cond)
582{
328d42d8
SM
583 target_ops *target = current_inferior ()->top_target ();
584
585 return target->can_accel_watchpoint_condition (addr, len, type, cond);
d777bf0d
SM
586}
587
588/* See target.h. */
589
590bool
591target_can_execute_reverse ()
592{
328d42d8 593 return current_inferior ()->top_target ()->can_execute_reverse ();
d777bf0d
SM
594}
595
596ptid_t
597target_get_ada_task_ptid (long lwp, long tid)
598{
328d42d8 599 return current_inferior ()->top_target ()->get_ada_task_ptid (lwp, tid);
d777bf0d
SM
600}
601
602bool
603target_filesystem_is_local ()
604{
328d42d8 605 return current_inferior ()->top_target ()->filesystem_is_local ();
d777bf0d
SM
606}
607
608void
609target_trace_init ()
610{
328d42d8 611 return current_inferior ()->top_target ()->trace_init ();
d777bf0d
SM
612}
613
614void
615target_download_tracepoint (bp_location *location)
616{
328d42d8 617 return current_inferior ()->top_target ()->download_tracepoint (location);
d777bf0d
SM
618}
619
620bool
621target_can_download_tracepoint ()
622{
328d42d8 623 return current_inferior ()->top_target ()->can_download_tracepoint ();
d777bf0d
SM
624}
625
626void
627target_download_trace_state_variable (const trace_state_variable &tsv)
628{
328d42d8
SM
629 target_ops *target = current_inferior ()->top_target ();
630
631 return target->download_trace_state_variable (tsv);
d777bf0d
SM
632}
633
634void
635target_enable_tracepoint (bp_location *loc)
636{
328d42d8 637 return current_inferior ()->top_target ()->enable_tracepoint (loc);
d777bf0d
SM
638}
639
640void
641target_disable_tracepoint (bp_location *loc)
642{
328d42d8 643 return current_inferior ()->top_target ()->disable_tracepoint (loc);
d777bf0d
SM
644}
645
646void
647target_trace_start ()
648{
328d42d8 649 return current_inferior ()->top_target ()->trace_start ();
d777bf0d
SM
650}
651
652void
653target_trace_set_readonly_regions ()
654{
328d42d8 655 return current_inferior ()->top_target ()->trace_set_readonly_regions ();
d777bf0d
SM
656}
657
658int
659target_get_trace_status (trace_status *ts)
660{
328d42d8 661 return current_inferior ()->top_target ()->get_trace_status (ts);
d777bf0d
SM
662}
663
664void
665target_get_tracepoint_status (breakpoint *tp, uploaded_tp *utp)
666{
328d42d8 667 return current_inferior ()->top_target ()->get_tracepoint_status (tp, utp);
d777bf0d
SM
668}
669
670void
671target_trace_stop ()
672{
328d42d8 673 return current_inferior ()->top_target ()->trace_stop ();
d777bf0d
SM
674}
675
676int
677target_trace_find (trace_find_type type, int num,
678 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp)
679{
328d42d8
SM
680 target_ops *target = current_inferior ()->top_target ();
681
682 return target->trace_find (type, num, addr1, addr2, tpp);
d777bf0d
SM
683}
684
685bool
686target_get_trace_state_variable_value (int tsv, LONGEST *val)
687{
328d42d8
SM
688 target_ops *target = current_inferior ()->top_target ();
689
690 return target->get_trace_state_variable_value (tsv, val);
d777bf0d
SM
691}
692
693int
694target_save_trace_data (const char *filename)
695{
328d42d8 696 return current_inferior ()->top_target ()->save_trace_data (filename);
d777bf0d
SM
697}
698
699int
700target_upload_tracepoints (uploaded_tp **utpp)
701{
328d42d8 702 return current_inferior ()->top_target ()->upload_tracepoints (utpp);
d777bf0d
SM
703}
704
705int
706target_upload_trace_state_variables (uploaded_tsv **utsvp)
707{
328d42d8
SM
708 target_ops *target = current_inferior ()->top_target ();
709
710 return target->upload_trace_state_variables (utsvp);
d777bf0d
SM
711}
712
713LONGEST
714target_get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
715{
328d42d8
SM
716 target_ops *target = current_inferior ()->top_target ();
717
718 return target->get_raw_trace_data (buf, offset, len);
d777bf0d
SM
719}
720
721int
722target_get_min_fast_tracepoint_insn_len ()
723{
328d42d8
SM
724 target_ops *target = current_inferior ()->top_target ();
725
726 return target->get_min_fast_tracepoint_insn_len ();
d777bf0d
SM
727}
728
729void
730target_set_disconnected_tracing (int val)
731{
328d42d8 732 return current_inferior ()->top_target ()->set_disconnected_tracing (val);
d777bf0d
SM
733}
734
735void
736target_set_circular_trace_buffer (int val)
737{
328d42d8 738 return current_inferior ()->top_target ()->set_circular_trace_buffer (val);
d777bf0d
SM
739}
740
741void
742target_set_trace_buffer_size (LONGEST val)
743{
328d42d8 744 return current_inferior ()->top_target ()->set_trace_buffer_size (val);
d777bf0d
SM
745}
746
747bool
748target_set_trace_notes (const char *user, const char *notes,
749 const char *stopnotes)
750{
328d42d8
SM
751 target_ops *target = current_inferior ()->top_target ();
752
753 return target->set_trace_notes (user, notes, stopnotes);
d777bf0d
SM
754}
755
756bool
757target_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
758{
328d42d8 759 return current_inferior ()->top_target ()->get_tib_address (ptid, addr);
d777bf0d
SM
760}
761
762void
763target_set_permissions ()
764{
328d42d8 765 return current_inferior ()->top_target ()->set_permissions ();
d777bf0d
SM
766}
767
768bool
769target_static_tracepoint_marker_at (CORE_ADDR addr,
770 static_tracepoint_marker *marker)
771{
328d42d8
SM
772 target_ops *target = current_inferior ()->top_target ();
773
774 return target->static_tracepoint_marker_at (addr, marker);
d777bf0d
SM
775}
776
777std::vector<static_tracepoint_marker>
778target_static_tracepoint_markers_by_strid (const char *marker_id)
779{
328d42d8
SM
780 target_ops *target = current_inferior ()->top_target ();
781
782 return target->static_tracepoint_markers_by_strid (marker_id);
d777bf0d
SM
783}
784
785traceframe_info_up
786target_traceframe_info ()
787{
328d42d8 788 return current_inferior ()->top_target ()->traceframe_info ();
d777bf0d
SM
789}
790
791bool
792target_use_agent (bool use)
793{
328d42d8 794 return current_inferior ()->top_target ()->use_agent (use);
d777bf0d
SM
795}
796
797bool
798target_can_use_agent ()
799{
328d42d8 800 return current_inferior ()->top_target ()->can_use_agent ();
d777bf0d
SM
801}
802
803bool
804target_augmented_libraries_svr4_read ()
805{
328d42d8 806 return current_inferior ()->top_target ()->augmented_libraries_svr4_read ();
d777bf0d
SM
807}
808
809bool
810target_supports_memory_tagging ()
811{
328d42d8 812 return current_inferior ()->top_target ()->supports_memory_tagging ();
d777bf0d
SM
813}
814
815bool
816target_fetch_memtags (CORE_ADDR address, size_t len, gdb::byte_vector &tags,
817 int type)
818{
328d42d8 819 return current_inferior ()->top_target ()->fetch_memtags (address, len, tags, type);
d777bf0d
SM
820}
821
822bool
823target_store_memtags (CORE_ADDR address, size_t len,
824 const gdb::byte_vector &tags, int type)
825{
328d42d8 826 return current_inferior ()->top_target ()->store_memtags (address, len, tags, type);
d777bf0d
SM
827}
828
829void
830target_log_command (const char *p)
831{
328d42d8 832 return current_inferior ()->top_target ()->log_command (p);
d777bf0d
SM
833}
834
8981c758
TT
835/* This is used to implement the various target commands. */
836
837static void
eb4c3f4a 838open_target (const char *args, int from_tty, struct cmd_list_element *command)
8981c758 839{
d9f719f1
PA
840 auto *ti = static_cast<target_info *> (get_cmd_context (command));
841 target_open_ftype *func = target_factories[ti];
8981c758
TT
842
843 if (targetdebug)
d9f719f1
PA
844 fprintf_unfiltered (gdb_stdlog, "-> %s->open (...)\n",
845 ti->shortname);
8981c758 846
d9f719f1 847 func (args, from_tty);
8981c758
TT
848
849 if (targetdebug)
d9f719f1
PA
850 fprintf_unfiltered (gdb_stdlog, "<- %s->open (%s, %d)\n",
851 ti->shortname, args, from_tty);
8981c758
TT
852}
853
d9f719f1 854/* See target.h. */
c22a2b88
TT
855
856void
d9f719f1
PA
857add_target (const target_info &t, target_open_ftype *func,
858 completer_ftype *completer)
c22a2b88
TT
859{
860 struct cmd_list_element *c;
861
d9f719f1
PA
862 auto &func_slot = target_factories[&t];
863 if (func_slot != nullptr)
864 internal_error (__FILE__, __LINE__,
865 _("target already added (\"%s\")."), t.shortname);
866 func_slot = func;
c906108c
SS
867
868 if (targetlist == NULL)
3b6acaee 869 add_basic_prefix_cmd ("target", class_run, _("\
1bedd215 870Connect to a target machine or process.\n\
c906108c
SS
871The first argument is the type or protocol of the target machine.\n\
872Remaining arguments are interpreted by the target protocol. For more\n\
873information on the arguments for a particular protocol, type\n\
1bedd215 874`help target ' followed by the protocol name."),
2f822da5 875 &targetlist, 0, &cmdlist);
d9f719f1
PA
876 c = add_cmd (t.shortname, no_class, t.doc, &targetlist);
877 set_cmd_context (c, (void *) &t);
8981c758 878 set_cmd_sfunc (c, open_target);
9852c492
YQ
879 if (completer != NULL)
880 set_cmd_completer (c, completer);
881}
882
b48d48eb
MM
883/* See target.h. */
884
885void
d9f719f1 886add_deprecated_target_alias (const target_info &tinfo, const char *alias)
b48d48eb
MM
887{
888 struct cmd_list_element *c;
889 char *alt;
890
891 /* If we use add_alias_cmd, here, we do not get the deprecated warning,
892 see PR cli/15104. */
d9f719f1 893 c = add_cmd (alias, no_class, tinfo.doc, &targetlist);
8981c758 894 set_cmd_sfunc (c, open_target);
d9f719f1
PA
895 set_cmd_context (c, (void *) &tinfo);
896 alt = xstrprintf ("target %s", tinfo.shortname);
b48d48eb
MM
897 deprecate_cmd (c, alt);
898}
899
c906108c
SS
900/* Stub functions */
901
7d85a9c0
JB
902void
903target_kill (void)
904{
328d42d8 905 current_inferior ()->top_target ()->kill ();
7d85a9c0
JB
906}
907
11cf8741 908void
9cbe5fff 909target_load (const char *arg, int from_tty)
11cf8741 910{
4e5d721f 911 target_dcache_invalidate ();
328d42d8 912 current_inferior ()->top_target ()->load (arg, from_tty);
11cf8741
JM
913}
914
223ffa71 915/* Define it. */
5842f62a 916
e671cd59
PA
917target_terminal_state target_terminal::m_terminal_state
918 = target_terminal_state::is_ours;
5842f62a 919
223ffa71 920/* See target/target.h. */
5842f62a
PA
921
922void
223ffa71 923target_terminal::init (void)
5842f62a 924{
328d42d8 925 current_inferior ()->top_target ()->terminal_init ();
5842f62a 926
e671cd59 927 m_terminal_state = target_terminal_state::is_ours;
5842f62a
PA
928}
929
223ffa71 930/* See target/target.h. */
2f99e8fc 931
d9d2d8b6 932void
223ffa71 933target_terminal::inferior (void)
d9d2d8b6 934{
41fd2b0f
PA
935 struct ui *ui = current_ui;
936
d9d2d8b6 937 /* A background resume (``run&'') should leave GDB in control of the
3b12939d
PA
938 terminal. */
939 if (ui->prompt_state != PROMPT_BLOCKED)
d9d2d8b6
PA
940 return;
941
215d3118
PA
942 /* Since we always run the inferior in the main console (unless "set
943 inferior-tty" is in effect), when some UI other than the main one
223ffa71
TT
944 calls target_terminal::inferior, then we leave the main UI's
945 terminal settings as is. */
215d3118
PA
946 if (ui != main_ui)
947 return;
948
d9d2d8b6
PA
949 /* If GDB is resuming the inferior in the foreground, install
950 inferior's terminal modes. */
e671cd59
PA
951
952 struct inferior *inf = current_inferior ();
953
954 if (inf->terminal_state != target_terminal_state::is_inferior)
955 {
328d42d8 956 current_inferior ()->top_target ()->terminal_inferior ();
e671cd59
PA
957 inf->terminal_state = target_terminal_state::is_inferior;
958 }
959
960 m_terminal_state = target_terminal_state::is_inferior;
961
962 /* If the user hit C-c before, pretend that it was hit right
963 here. */
964 if (check_quit_flag ())
965 target_pass_ctrlc ();
966}
967
968/* See target/target.h. */
969
970void
971target_terminal::restore_inferior (void)
972{
973 struct ui *ui = current_ui;
974
975 /* See target_terminal::inferior(). */
976 if (ui->prompt_state != PROMPT_BLOCKED || ui != main_ui)
977 return;
978
979 /* Restore the terminal settings of inferiors that were in the
980 foreground but are now ours_for_output due to a temporary
981 target_target::ours_for_output() call. */
982
983 {
984 scoped_restore_current_inferior restore_inferior;
e671cd59 985
84b68c77 986 for (::inferior *inf : all_inferiors ())
e671cd59
PA
987 {
988 if (inf->terminal_state == target_terminal_state::is_ours_for_output)
989 {
990 set_current_inferior (inf);
328d42d8 991 current_inferior ()->top_target ()->terminal_inferior ();
e671cd59
PA
992 inf->terminal_state = target_terminal_state::is_inferior;
993 }
994 }
995 }
996
997 m_terminal_state = target_terminal_state::is_inferior;
93692b58
PA
998
999 /* If the user hit C-c before, pretend that it was hit right
1000 here. */
1001 if (check_quit_flag ())
1002 target_pass_ctrlc ();
5842f62a
PA
1003}
1004
e671cd59
PA
1005/* Switch terminal state to DESIRED_STATE, either is_ours, or
1006 is_ours_for_output. */
1007
1008static void
1009target_terminal_is_ours_kind (target_terminal_state desired_state)
1010{
1011 scoped_restore_current_inferior restore_inferior;
e671cd59
PA
1012
1013 /* Must do this in two passes. First, have all inferiors save the
1014 current terminal settings. Then, after all inferiors have add a
1015 chance to safely save the terminal settings, restore GDB's
1016 terminal settings. */
1017
08036331 1018 for (inferior *inf : all_inferiors ())
e671cd59
PA
1019 {
1020 if (inf->terminal_state == target_terminal_state::is_inferior)
1021 {
1022 set_current_inferior (inf);
328d42d8 1023 current_inferior ()->top_target ()->terminal_save_inferior ();
e671cd59
PA
1024 }
1025 }
1026
08036331 1027 for (inferior *inf : all_inferiors ())
e671cd59
PA
1028 {
1029 /* Note we don't check is_inferior here like above because we
1030 need to handle 'is_ours_for_output -> is_ours' too. Careful
1031 to never transition from 'is_ours' to 'is_ours_for_output',
1032 though. */
1033 if (inf->terminal_state != target_terminal_state::is_ours
1034 && inf->terminal_state != desired_state)
1035 {
1036 set_current_inferior (inf);
1037 if (desired_state == target_terminal_state::is_ours)
328d42d8 1038 current_inferior ()->top_target ()->terminal_ours ();
e671cd59 1039 else if (desired_state == target_terminal_state::is_ours_for_output)
328d42d8 1040 current_inferior ()->top_target ()->terminal_ours_for_output ();
e671cd59
PA
1041 else
1042 gdb_assert_not_reached ("unhandled desired state");
1043 inf->terminal_state = desired_state;
1044 }
1045 }
1046}
1047
223ffa71 1048/* See target/target.h. */
5842f62a
PA
1049
1050void
223ffa71 1051target_terminal::ours ()
5842f62a 1052{
41fd2b0f
PA
1053 struct ui *ui = current_ui;
1054
223ffa71 1055 /* See target_terminal::inferior. */
215d3118
PA
1056 if (ui != main_ui)
1057 return;
1058
e671cd59 1059 if (m_terminal_state == target_terminal_state::is_ours)
5842f62a
PA
1060 return;
1061
e671cd59
PA
1062 target_terminal_is_ours_kind (target_terminal_state::is_ours);
1063 m_terminal_state = target_terminal_state::is_ours;
5842f62a
PA
1064}
1065
223ffa71 1066/* See target/target.h. */
5842f62a
PA
1067
1068void
223ffa71 1069target_terminal::ours_for_output ()
5842f62a 1070{
215d3118
PA
1071 struct ui *ui = current_ui;
1072
223ffa71 1073 /* See target_terminal::inferior. */
215d3118
PA
1074 if (ui != main_ui)
1075 return;
1076
e671cd59 1077 if (!target_terminal::is_inferior ())
5842f62a 1078 return;
e671cd59
PA
1079
1080 target_terminal_is_ours_kind (target_terminal_state::is_ours_for_output);
1081 target_terminal::m_terminal_state = target_terminal_state::is_ours_for_output;
d9d2d8b6 1082}
136d6dae 1083
223ffa71
TT
1084/* See target/target.h. */
1085
1086void
1087target_terminal::info (const char *arg, int from_tty)
1088{
328d42d8 1089 current_inferior ()->top_target ()->terminal_info (arg, from_tty);
223ffa71
TT
1090}
1091
b0ed115f
TT
1092/* See target.h. */
1093
20f0d60d 1094bool
b0ed115f
TT
1095target_supports_terminal_ours (void)
1096{
5b6d1e4f
PA
1097 /* The current top target is the target at the top of the target
1098 stack of the current inferior. While normally there's always an
1099 inferior, we must check for nullptr here because we can get here
1100 very early during startup, before the initial inferior is first
1101 created. */
1102 inferior *inf = current_inferior ();
20f0d60d 1103
5b6d1e4f 1104 if (inf == nullptr)
20f0d60d 1105 return false;
5b6d1e4f 1106 return inf->top_target ()->supports_terminal_ours ();
b0ed115f
TT
1107}
1108
c906108c 1109static void
fba45db2 1110tcomplain (void)
c906108c 1111{
8a3fe4f8 1112 error (_("You can't do that when your target is `%s'"),
328d42d8 1113 current_inferior ()->top_target ()->shortname ());
c906108c
SS
1114}
1115
1116void
fba45db2 1117noprocess (void)
c906108c 1118{
8a3fe4f8 1119 error (_("You can't do that without a process to debug."));
c906108c
SS
1120}
1121
c906108c 1122static void
0a4f40a2 1123default_terminal_info (struct target_ops *self, const char *args, int from_tty)
c906108c 1124{
a3f17187 1125 printf_unfiltered (_("No saved terminal information.\n"));
c906108c
SS
1126}
1127
0ef643c8
JB
1128/* A default implementation for the to_get_ada_task_ptid target method.
1129
1130 This function builds the PTID by using both LWP and TID as part of
1131 the PTID lwp and tid elements. The pid used is the pid of the
1132 inferior_ptid. */
1133
2c0b251b 1134static ptid_t
1e6b91a4 1135default_get_ada_task_ptid (struct target_ops *self, long lwp, long tid)
0ef643c8 1136{
e99b03dc 1137 return ptid_t (inferior_ptid.pid (), lwp, tid);
0ef643c8
JB
1138}
1139
32231432 1140static enum exec_direction_kind
4c612759 1141default_execution_direction (struct target_ops *self)
32231432 1142{
05374cfd 1143 if (!target_can_execute_reverse ())
32231432
PA
1144 return EXEC_FORWARD;
1145 else if (!target_can_async_p ())
1146 return EXEC_FORWARD;
1147 else
1148 gdb_assert_not_reached ("\
1149to_execution_direction must be implemented for reverse async");
1150}
1151
a1740ee1 1152/* See target.h. */
c906108c 1153
5b6d1e4f
PA
1154void
1155decref_target (target_ops *t)
1156{
1157 t->decref ();
1158 if (t->refcount () == 0)
121b3efd
PA
1159 {
1160 if (t->stratum () == process_stratum)
1161 connection_list_remove (as_process_stratum_target (t));
1162 target_close (t);
1163 }
5b6d1e4f
PA
1164}
1165
1166/* See target.h. */
1167
b26a4dcb 1168void
a1740ee1 1169target_stack::push (target_ops *t)
c906108c 1170{
5b6d1e4f
PA
1171 t->incref ();
1172
66b4deae
PA
1173 strata stratum = t->stratum ();
1174
121b3efd
PA
1175 if (stratum == process_stratum)
1176 connection_list_add (as_process_stratum_target (t));
1177
5b6d1e4f
PA
1178 /* If there's already a target at this stratum, remove it. */
1179
66b4deae 1180 if (m_stack[stratum] != NULL)
494409bb 1181 unpush (m_stack[stratum]);
c906108c 1182
a1740ee1 1183 /* Now add the new one. */
66b4deae 1184 m_stack[stratum] = t;
5d502164 1185
66b4deae
PA
1186 if (m_top < stratum)
1187 m_top = stratum;
a1740ee1
PA
1188}
1189
1190/* See target.h. */
c906108c 1191
a1740ee1
PA
1192bool
1193target_stack::unpush (target_ops *t)
c906108c 1194{
1688cb29
TT
1195 gdb_assert (t != NULL);
1196
66b4deae
PA
1197 strata stratum = t->stratum ();
1198
1199 if (stratum == dummy_stratum)
c8d104ad 1200 internal_error (__FILE__, __LINE__,
9b20d036 1201 _("Attempt to unpush the dummy target"));
c8d104ad 1202
a1740ee1
PA
1203 /* Look for the specified target. Note that a target can only occur
1204 once in the target stack. */
c906108c 1205
66b4deae 1206 if (m_stack[stratum] != t)
258b763a 1207 {
a1740ee1
PA
1208 /* If T wasn't pushed, quit. Only open targets should be
1209 closed. */
1210 return false;
258b763a 1211 }
c906108c 1212
c378eb4e 1213 /* Unchain the target. */
66b4deae 1214 m_stack[stratum] = NULL;
a1740ee1 1215
66b4deae 1216 if (m_top == stratum)
bedc4734 1217 m_top = this->find_beneath (t)->stratum ();
c906108c 1218
5b6d1e4f
PA
1219 /* Finally close the target, if there are no inferiors
1220 referencing this target still. Note we do this after unchaining,
1221 so any target method calls from within the target_close
1222 implementation don't end up in T anymore. Do leave the target
1223 open if we have are other inferiors referencing this target
1224 still. */
1225 decref_target (t);
305436e0 1226
a1740ee1 1227 return true;
c906108c
SS
1228}
1229
915ef8b1
PA
1230/* Unpush TARGET and assert that it worked. */
1231
1232static void
1233unpush_target_and_assert (struct target_ops *target)
1234{
fadf6add 1235 if (!current_inferior ()->unpush_target (target))
915ef8b1
PA
1236 {
1237 fprintf_unfiltered (gdb_stderr,
1238 "pop_all_targets couldn't find target %s\n",
f6ac5f3d 1239 target->shortname ());
915ef8b1
PA
1240 internal_error (__FILE__, __LINE__,
1241 _("failed internal consistency check"));
1242 }
1243}
1244
aa76d38d 1245void
460014f5 1246pop_all_targets_above (enum strata above_stratum)
aa76d38d 1247{
328d42d8
SM
1248 while ((int) (current_inferior ()->top_target ()->stratum ())
1249 > (int) above_stratum)
1250 unpush_target_and_assert (current_inferior ()->top_target ());
915ef8b1
PA
1251}
1252
1253/* See target.h. */
1254
1255void
1256pop_all_targets_at_and_above (enum strata stratum)
1257{
328d42d8
SM
1258 while ((int) (current_inferior ()->top_target ()->stratum ())
1259 >= (int) stratum)
1260 unpush_target_and_assert (current_inferior ()->top_target ());
aa76d38d
PA
1261}
1262
87ab71f0 1263void
460014f5 1264pop_all_targets (void)
87ab71f0 1265{
460014f5 1266 pop_all_targets_above (dummy_stratum);
87ab71f0
PA
1267}
1268
fadf6add
SM
1269void
1270target_unpusher::operator() (struct target_ops *ops) const
1271{
1272 current_inferior ()->unpush_target (ops);
1273}
1274
f0f9ff95
TT
1275/* Default implementation of to_get_thread_local_address. */
1276
1277static void
1278generic_tls_error (void)
1279{
1280 throw_error (TLS_GENERIC_ERROR,
1281 _("Cannot find thread-local variables on this target"));
1282}
1283
72f5cf0e 1284/* Using the objfile specified in OBJFILE, find the address for the
9e35dae4
DJ
1285 current thread's thread-local storage with offset OFFSET. */
1286CORE_ADDR
1287target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
1288{
1289 volatile CORE_ADDR addr = 0;
328d42d8 1290 struct target_ops *target = current_inferior ()->top_target ();
6e056c81 1291 struct gdbarch *gdbarch = target_gdbarch ();
9e35dae4 1292
6e056c81 1293 if (gdbarch_fetch_tls_load_module_address_p (gdbarch))
9e35dae4
DJ
1294 {
1295 ptid_t ptid = inferior_ptid;
9e35dae4 1296
a70b8144 1297 try
9e35dae4
DJ
1298 {
1299 CORE_ADDR lm_addr;
1300
1301 /* Fetch the load module address for this objfile. */
6e056c81 1302 lm_addr = gdbarch_fetch_tls_load_module_address (gdbarch,
dda83cd7 1303 objfile);
9e35dae4 1304
6e056c81
JB
1305 if (gdbarch_get_thread_local_address_p (gdbarch))
1306 addr = gdbarch_get_thread_local_address (gdbarch, ptid, lm_addr,
1307 offset);
1308 else
1309 addr = target->get_thread_local_address (ptid, lm_addr, offset);
9e35dae4
DJ
1310 }
1311 /* If an error occurred, print TLS related messages here. Otherwise,
dda83cd7 1312 throw the error to some higher catcher. */
230d2906 1313 catch (const gdb_exception &ex)
9e35dae4
DJ
1314 {
1315 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1316
1317 switch (ex.error)
1318 {
1319 case TLS_NO_LIBRARY_SUPPORT_ERROR:
3e43a32a
MS
1320 error (_("Cannot find thread-local variables "
1321 "in this thread library."));
9e35dae4
DJ
1322 break;
1323 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1324 if (objfile_is_library)
1325 error (_("Cannot find shared library `%s' in dynamic"
dda83cd7 1326 " linker's load module list"), objfile_name (objfile));
9e35dae4
DJ
1327 else
1328 error (_("Cannot find executable file `%s' in dynamic"
dda83cd7 1329 " linker's load module list"), objfile_name (objfile));
9e35dae4
DJ
1330 break;
1331 case TLS_NOT_ALLOCATED_YET_ERROR:
1332 if (objfile_is_library)
1333 error (_("The inferior has not yet allocated storage for"
dda83cd7
SM
1334 " thread-local variables in\n"
1335 "the shared library `%s'\n"
1336 "for %s"),
a068643d
TT
1337 objfile_name (objfile),
1338 target_pid_to_str (ptid).c_str ());
9e35dae4
DJ
1339 else
1340 error (_("The inferior has not yet allocated storage for"
dda83cd7
SM
1341 " thread-local variables in\n"
1342 "the executable `%s'\n"
1343 "for %s"),
a068643d
TT
1344 objfile_name (objfile),
1345 target_pid_to_str (ptid).c_str ());
9e35dae4
DJ
1346 break;
1347 case TLS_GENERIC_ERROR:
1348 if (objfile_is_library)
1349 error (_("Cannot find thread-local storage for %s, "
dda83cd7 1350 "shared library %s:\n%s"),
a068643d 1351 target_pid_to_str (ptid).c_str (),
3d6e9d23 1352 objfile_name (objfile), ex.what ());
9e35dae4
DJ
1353 else
1354 error (_("Cannot find thread-local storage for %s, "
dda83cd7 1355 "executable file %s:\n%s"),
a068643d 1356 target_pid_to_str (ptid).c_str (),
3d6e9d23 1357 objfile_name (objfile), ex.what ());
9e35dae4
DJ
1358 break;
1359 default:
eedc3f4f 1360 throw;
9e35dae4
DJ
1361 break;
1362 }
1363 }
1364 }
9e35dae4
DJ
1365 else
1366 error (_("Cannot find thread-local variables on this target"));
1367
1368 return addr;
1369}
1370
6be7b56e 1371const char *
01cb8804 1372target_xfer_status_to_string (enum target_xfer_status status)
6be7b56e
PA
1373{
1374#define CASE(X) case X: return #X
01cb8804 1375 switch (status)
6be7b56e
PA
1376 {
1377 CASE(TARGET_XFER_E_IO);
bc113b4e 1378 CASE(TARGET_XFER_UNAVAILABLE);
6be7b56e
PA
1379 default:
1380 return "<unknown>";
1381 }
1382#undef CASE
1383};
1384
1385
66920317 1386/* See target.h. */
c906108c 1387
66920317
TT
1388gdb::unique_xmalloc_ptr<char>
1389target_read_string (CORE_ADDR memaddr, int len, int *bytes_read)
c906108c 1390{
670e35fa 1391 gdb::unique_xmalloc_ptr<gdb_byte> buffer;
5d502164 1392
66920317
TT
1393 int ignore;
1394 if (bytes_read == nullptr)
1395 bytes_read = &ignore;
1396
670e35fa
TT
1397 /* Note that the endian-ness does not matter here. */
1398 int errcode = read_string (memaddr, -1, 1, len, BFD_ENDIAN_LITTLE,
66920317
TT
1399 &buffer, bytes_read);
1400 if (errcode != 0)
1401 return {};
670e35fa 1402
66920317 1403 return gdb::unique_xmalloc_ptr<char> ((char *) buffer.release ());
c906108c
SS
1404}
1405
19cf757a 1406const target_section_table *
07b82ea5
PA
1407target_get_section_table (struct target_ops *target)
1408{
f6ac5f3d 1409 return target->get_section_table ();
07b82ea5
PA
1410}
1411
8db32d44 1412/* Find a section containing ADDR. */
07b82ea5 1413
19cf757a 1414const struct target_section *
8db32d44
AC
1415target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1416{
19cf757a 1417 const target_section_table *table = target_get_section_table (target);
07b82ea5
PA
1418
1419 if (table == NULL)
1420 return NULL;
1421
19cf757a 1422 for (const target_section &secp : *table)
8db32d44 1423 {
bb2a6777
TT
1424 if (addr >= secp.addr && addr < secp.endaddr)
1425 return &secp;
8db32d44
AC
1426 }
1427 return NULL;
1428}
1429
336aa7b7
AB
1430/* See target.h. */
1431
1432const target_section_table *
1433default_get_section_table ()
1434{
1435 return &current_program_space->target_sections ();
1436}
0fec99e8
PA
1437
1438/* Helper for the memory xfer routines. Checks the attributes of the
1439 memory region of MEMADDR against the read or write being attempted.
1440 If the access is permitted returns true, otherwise returns false.
1441 REGION_P is an optional output parameter. If not-NULL, it is
1442 filled with a pointer to the memory region of MEMADDR. REG_LEN
1443 returns LEN trimmed to the end of the region. This is how much the
1444 caller can continue requesting, if the access is permitted. A
1445 single xfer request must not straddle memory region boundaries. */
1446
1447static int
1448memory_xfer_check_region (gdb_byte *readbuf, const gdb_byte *writebuf,
1449 ULONGEST memaddr, ULONGEST len, ULONGEST *reg_len,
1450 struct mem_region **region_p)
1451{
1452 struct mem_region *region;
1453
1454 region = lookup_mem_region (memaddr);
1455
1456 if (region_p != NULL)
1457 *region_p = region;
1458
1459 switch (region->attrib.mode)
1460 {
1461 case MEM_RO:
1462 if (writebuf != NULL)
1463 return 0;
1464 break;
1465
1466 case MEM_WO:
1467 if (readbuf != NULL)
1468 return 0;
1469 break;
1470
1471 case MEM_FLASH:
1472 /* We only support writing to flash during "load" for now. */
1473 if (writebuf != NULL)
1474 error (_("Writing to flash memory forbidden in this context"));
1475 break;
1476
1477 case MEM_NONE:
1478 return 0;
1479 }
1480
1481 /* region->hi == 0 means there's no upper bound. */
1482 if (memaddr + len < region->hi || region->hi == 0)
1483 *reg_len = len;
1484 else
1485 *reg_len = region->hi - memaddr;
1486
1487 return 1;
1488}
1489
9f713294
YQ
1490/* Read memory from more than one valid target. A core file, for
1491 instance, could have some of memory but delegate other bits to
1492 the target below it. So, we must manually try all targets. */
1493
cc9f16aa 1494enum target_xfer_status
17fde6d0 1495raw_memory_xfer_partial (struct target_ops *ops, gdb_byte *readbuf,
9b409511
YQ
1496 const gdb_byte *writebuf, ULONGEST memaddr, LONGEST len,
1497 ULONGEST *xfered_len)
9f713294 1498{
9b409511 1499 enum target_xfer_status res;
9f713294
YQ
1500
1501 do
1502 {
f6ac5f3d
PA
1503 res = ops->xfer_partial (TARGET_OBJECT_MEMORY, NULL,
1504 readbuf, writebuf, memaddr, len,
1505 xfered_len);
9b409511 1506 if (res == TARGET_XFER_OK)
9f713294
YQ
1507 break;
1508
633785ff 1509 /* Stop if the target reports that the memory is not available. */
bc113b4e 1510 if (res == TARGET_XFER_UNAVAILABLE)
633785ff
MM
1511 break;
1512
2735d421 1513 /* Don't continue past targets which have all the memory.
dda83cd7 1514 At one time, this code was necessary to read data from
2735d421
KB
1515 executables / shared libraries when data for the requested
1516 addresses weren't available in the core file. But now the
1517 core target handles this case itself. */
f6ac5f3d 1518 if (ops->has_all_memory ())
9f713294
YQ
1519 break;
1520
b6a8c27b 1521 ops = ops->beneath ();
9f713294
YQ
1522 }
1523 while (ops != NULL);
1524
0f26cec1
PA
1525 /* The cache works at the raw memory level. Make sure the cache
1526 gets updated with raw contents no matter what kind of memory
1527 object was originally being written. Note we do write-through
1528 first, so that if it fails, we don't write to the cache contents
1529 that never made it to the target. */
1530 if (writebuf != NULL
d7e15655 1531 && inferior_ptid != null_ptid
0f26cec1
PA
1532 && target_dcache_init_p ()
1533 && (stack_cache_enabled_p () || code_cache_enabled_p ()))
1534 {
1535 DCACHE *dcache = target_dcache_get ();
1536
1537 /* Note that writing to an area of memory which wasn't present
1538 in the cache doesn't cause it to be loaded in. */
1539 dcache_update (dcache, res, memaddr, writebuf, *xfered_len);
1540 }
1541
9f713294
YQ
1542 return res;
1543}
1544
7f79c47e
DE
1545/* Perform a partial memory transfer.
1546 For docs see target.h, to_xfer_partial. */
cf7a04e8 1547
9b409511 1548static enum target_xfer_status
f0ba3972 1549memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
17fde6d0 1550 gdb_byte *readbuf, const gdb_byte *writebuf, ULONGEST memaddr,
9b409511 1551 ULONGEST len, ULONGEST *xfered_len)
0779438d 1552{
9b409511 1553 enum target_xfer_status res;
0fec99e8 1554 ULONGEST reg_len;
cf7a04e8 1555 struct mem_region *region;
4e5d721f 1556 struct inferior *inf;
cf7a04e8 1557
07b82ea5
PA
1558 /* For accesses to unmapped overlay sections, read directly from
1559 files. Must do this first, as MEMADDR may need adjustment. */
1560 if (readbuf != NULL && overlay_debugging)
1561 {
1562 struct obj_section *section = find_pc_overlay (memaddr);
5d502164 1563
07b82ea5
PA
1564 if (pc_in_unmapped_range (memaddr, section))
1565 {
19cf757a 1566 const target_section_table *table = target_get_section_table (ops);
07b82ea5 1567 const char *section_name = section->the_bfd_section->name;
5d502164 1568
07b82ea5 1569 memaddr = overlay_mapped_address (memaddr, section);
e56cb451
KB
1570
1571 auto match_cb = [=] (const struct target_section *s)
1572 {
1573 return (strcmp (section_name, s->the_bfd_section->name) == 0);
1574 };
1575
07b82ea5 1576 return section_table_xfer_memory_partial (readbuf, writebuf,
9b409511 1577 memaddr, len, xfered_len,
bb2a6777 1578 *table, match_cb);
07b82ea5
PA
1579 }
1580 }
1581
1582 /* Try the executable files, if "trust-readonly-sections" is set. */
cf7a04e8
DJ
1583 if (readbuf != NULL && trust_readonly)
1584 {
19cf757a
AB
1585 const struct target_section *secp
1586 = target_section_by_addr (ops, memaddr);
cf7a04e8 1587 if (secp != NULL
fd361982 1588 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
07b82ea5 1589 {
19cf757a 1590 const target_section_table *table = target_get_section_table (ops);
07b82ea5 1591 return section_table_xfer_memory_partial (readbuf, writebuf,
9b409511 1592 memaddr, len, xfered_len,
bb2a6777 1593 *table);
07b82ea5 1594 }
98646950
UW
1595 }
1596
cf7a04e8 1597 /* Try GDB's internal data cache. */
cf7a04e8 1598
0fec99e8
PA
1599 if (!memory_xfer_check_region (readbuf, writebuf, memaddr, len, &reg_len,
1600 &region))
1601 return TARGET_XFER_E_IO;
cf7a04e8 1602
d7e15655 1603 if (inferior_ptid != null_ptid)
00431a78 1604 inf = current_inferior ();
6c95b8df
PA
1605 else
1606 inf = NULL;
4e5d721f
DE
1607
1608 if (inf != NULL
0f26cec1 1609 && readbuf != NULL
2f4d8875
PA
1610 /* The dcache reads whole cache lines; that doesn't play well
1611 with reading from a trace buffer, because reading outside of
1612 the collected memory range fails. */
1613 && get_traceframe_number () == -1
4e5d721f 1614 && (region->attrib.cache
29453a14
YQ
1615 || (stack_cache_enabled_p () && object == TARGET_OBJECT_STACK_MEMORY)
1616 || (code_cache_enabled_p () && object == TARGET_OBJECT_CODE_MEMORY)))
cf7a04e8 1617 {
2a2f9fe4
YQ
1618 DCACHE *dcache = target_dcache_get_or_init ();
1619
0f26cec1
PA
1620 return dcache_read_memory_partial (ops, dcache, memaddr, readbuf,
1621 reg_len, xfered_len);
cf7a04e8
DJ
1622 }
1623
1624 /* If none of those methods found the memory we wanted, fall back
1625 to a target partial transfer. Normally a single call to
1626 to_xfer_partial is enough; if it doesn't recognize an object
1627 it will call the to_xfer_partial of the next target down.
1628 But for memory this won't do. Memory is the only target
9b409511
YQ
1629 object which can be read from more than one valid target.
1630 A core file, for instance, could have some of memory but
1631 delegate other bits to the target below it. So, we must
1632 manually try all targets. */
1633
1634 res = raw_memory_xfer_partial (ops, readbuf, writebuf, memaddr, reg_len,
1635 xfered_len);
cf7a04e8
DJ
1636
1637 /* If we still haven't got anything, return the last error. We
1638 give up. */
1639 return res;
0779438d
AC
1640}
1641
f0ba3972
PA
1642/* Perform a partial memory transfer. For docs see target.h,
1643 to_xfer_partial. */
1644
9b409511 1645static enum target_xfer_status
f0ba3972 1646memory_xfer_partial (struct target_ops *ops, enum target_object object,
9b409511
YQ
1647 gdb_byte *readbuf, const gdb_byte *writebuf,
1648 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
f0ba3972 1649{
9b409511 1650 enum target_xfer_status res;
f0ba3972
PA
1651
1652 /* Zero length requests are ok and require no work. */
1653 if (len == 0)
9b409511 1654 return TARGET_XFER_EOF;
f0ba3972 1655
a738ea1d
YQ
1656 memaddr = address_significant (target_gdbarch (), memaddr);
1657
f0ba3972
PA
1658 /* Fill in READBUF with breakpoint shadows, or WRITEBUF with
1659 breakpoint insns, thus hiding out from higher layers whether
1660 there are software breakpoints inserted in the code stream. */
1661 if (readbuf != NULL)
1662 {
9b409511
YQ
1663 res = memory_xfer_partial_1 (ops, object, readbuf, NULL, memaddr, len,
1664 xfered_len);
f0ba3972 1665
9b409511 1666 if (res == TARGET_XFER_OK && !show_memory_breakpoints)
c63528fc 1667 breakpoint_xfer_memory (readbuf, NULL, NULL, memaddr, *xfered_len);
f0ba3972
PA
1668 }
1669 else
1670 {
67c059c2
AB
1671 /* A large write request is likely to be partially satisfied
1672 by memory_xfer_partial_1. We will continually malloc
1673 and free a copy of the entire write request for breakpoint
1674 shadow handling even though we only end up writing a small
09c98b44
DB
1675 subset of it. Cap writes to a limit specified by the target
1676 to mitigate this. */
f6ac5f3d 1677 len = std::min (ops->get_memory_xfer_limit (), len);
67c059c2 1678
26fcd5d7
TT
1679 gdb::byte_vector buf (writebuf, writebuf + len);
1680 breakpoint_xfer_memory (NULL, buf.data (), writebuf, memaddr, len);
1681 res = memory_xfer_partial_1 (ops, object, NULL, buf.data (), memaddr, len,
9b409511 1682 xfered_len);
f0ba3972
PA
1683 }
1684
1685 return res;
1686}
1687
cb85b21b
TT
1688scoped_restore_tmpl<int>
1689make_scoped_restore_show_memory_breakpoints (int show)
8defab1a 1690{
cb85b21b 1691 return make_scoped_restore (&show_memory_breakpoints, show);
8defab1a
DJ
1692}
1693
7f79c47e
DE
1694/* For docs see target.h, to_xfer_partial. */
1695
9b409511 1696enum target_xfer_status
27394598
AC
1697target_xfer_partial (struct target_ops *ops,
1698 enum target_object object, const char *annex,
4ac248ca 1699 gdb_byte *readbuf, const gdb_byte *writebuf,
9b409511
YQ
1700 ULONGEST offset, ULONGEST len,
1701 ULONGEST *xfered_len)
27394598 1702{
9b409511 1703 enum target_xfer_status retval;
27394598 1704
ce6d0892
YQ
1705 /* Transfer is done when LEN is zero. */
1706 if (len == 0)
9b409511 1707 return TARGET_XFER_EOF;
ce6d0892 1708
d914c394
SS
1709 if (writebuf && !may_write_memory)
1710 error (_("Writing to memory is not allowed (addr %s, len %s)"),
1711 core_addr_to_string_nz (offset), plongest (len));
1712
9b409511
YQ
1713 *xfered_len = 0;
1714
cf7a04e8
DJ
1715 /* If this is a memory transfer, let the memory-specific code
1716 have a look at it instead. Memory transfers are more
1717 complicated. */
29453a14
YQ
1718 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY
1719 || object == TARGET_OBJECT_CODE_MEMORY)
4e5d721f 1720 retval = memory_xfer_partial (ops, object, readbuf,
9b409511 1721 writebuf, offset, len, xfered_len);
9f713294 1722 else if (object == TARGET_OBJECT_RAW_MEMORY)
cf7a04e8 1723 {
0fec99e8
PA
1724 /* Skip/avoid accessing the target if the memory region
1725 attributes block the access. Check this here instead of in
1726 raw_memory_xfer_partial as otherwise we'd end up checking
1727 this twice in the case of the memory_xfer_partial path is
1728 taken; once before checking the dcache, and another in the
1729 tail call to raw_memory_xfer_partial. */
1730 if (!memory_xfer_check_region (readbuf, writebuf, offset, len, &len,
1731 NULL))
1732 return TARGET_XFER_E_IO;
1733
9f713294 1734 /* Request the normal memory object from other layers. */
9b409511
YQ
1735 retval = raw_memory_xfer_partial (ops, readbuf, writebuf, offset, len,
1736 xfered_len);
cf7a04e8 1737 }
9f713294 1738 else
f6ac5f3d
PA
1739 retval = ops->xfer_partial (object, annex, readbuf,
1740 writebuf, offset, len, xfered_len);
cf7a04e8 1741
27394598
AC
1742 if (targetdebug)
1743 {
1744 const unsigned char *myaddr = NULL;
1745
1746 fprintf_unfiltered (gdb_stdlog,
3e43a32a 1747 "%s:target_xfer_partial "
9b409511 1748 "(%d, %s, %s, %s, %s, %s) = %d, %s",
f6ac5f3d 1749 ops->shortname (),
27394598
AC
1750 (int) object,
1751 (annex ? annex : "(null)"),
53b71562
JB
1752 host_address_to_string (readbuf),
1753 host_address_to_string (writebuf),
0b1553bc 1754 core_addr_to_string_nz (offset),
9b409511
YQ
1755 pulongest (len), retval,
1756 pulongest (*xfered_len));
27394598
AC
1757
1758 if (readbuf)
1759 myaddr = readbuf;
1760 if (writebuf)
1761 myaddr = writebuf;
9b409511 1762 if (retval == TARGET_XFER_OK && myaddr != NULL)
27394598
AC
1763 {
1764 int i;
2bc416ba 1765
27394598 1766 fputs_unfiltered (", bytes =", gdb_stdlog);
9b409511 1767 for (i = 0; i < *xfered_len; i++)
27394598 1768 {
53b71562 1769 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
27394598
AC
1770 {
1771 if (targetdebug < 2 && i > 0)
1772 {
1773 fprintf_unfiltered (gdb_stdlog, " ...");
1774 break;
1775 }
1776 fprintf_unfiltered (gdb_stdlog, "\n");
1777 }
2bc416ba 1778
27394598
AC
1779 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1780 }
1781 }
2bc416ba 1782
27394598
AC
1783 fputc_unfiltered ('\n', gdb_stdlog);
1784 }
9b409511
YQ
1785
1786 /* Check implementations of to_xfer_partial update *XFERED_LEN
1787 properly. Do assertion after printing debug messages, so that we
1788 can find more clues on assertion failure from debugging messages. */
bc113b4e 1789 if (retval == TARGET_XFER_OK || retval == TARGET_XFER_UNAVAILABLE)
9b409511
YQ
1790 gdb_assert (*xfered_len > 0);
1791
27394598
AC
1792 return retval;
1793}
1794
578d3588
PA
1795/* Read LEN bytes of target memory at address MEMADDR, placing the
1796 results in GDB's memory at MYADDR. Returns either 0 for success or
d09f2c3f 1797 -1 if any error occurs.
c906108c
SS
1798
1799 If an error occurs, no guarantee is made about the contents of the data at
1800 MYADDR. In particular, the caller should not depend upon partial reads
1801 filling the buffer with good data. There is no way for the caller to know
1802 how much good data might have been transfered anyway. Callers that can
cf7a04e8 1803 deal with partial reads should call target_read (which will retry until
c378eb4e 1804 it makes no progress, and then return how much was transferred). */
c906108c
SS
1805
1806int
1b162304 1807target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
c906108c 1808{
328d42d8
SM
1809 if (target_read (current_inferior ()->top_target (),
1810 TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1811 myaddr, memaddr, len) == len)
1812 return 0;
0779438d 1813 else
d09f2c3f 1814 return -1;
c906108c
SS
1815}
1816
721ec300
GB
1817/* See target/target.h. */
1818
1819int
1820target_read_uint32 (CORE_ADDR memaddr, uint32_t *result)
1821{
1822 gdb_byte buf[4];
1823 int r;
1824
1825 r = target_read_memory (memaddr, buf, sizeof buf);
1826 if (r != 0)
1827 return r;
1828 *result = extract_unsigned_integer (buf, sizeof buf,
1829 gdbarch_byte_order (target_gdbarch ()));
1830 return 0;
1831}
1832
aee4bf85
PA
1833/* Like target_read_memory, but specify explicitly that this is a read
1834 from the target's raw memory. That is, this read bypasses the
1835 dcache, breakpoint shadowing, etc. */
1836
1837int
1838target_read_raw_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1839{
328d42d8
SM
1840 if (target_read (current_inferior ()->top_target (),
1841 TARGET_OBJECT_RAW_MEMORY, NULL,
aee4bf85
PA
1842 myaddr, memaddr, len) == len)
1843 return 0;
1844 else
d09f2c3f 1845 return -1;
aee4bf85
PA
1846}
1847
4e5d721f
DE
1848/* Like target_read_memory, but specify explicitly that this is a read from
1849 the target's stack. This may trigger different cache behavior. */
1850
1851int
45aa4659 1852target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
4e5d721f 1853{
328d42d8
SM
1854 if (target_read (current_inferior ()->top_target (),
1855 TARGET_OBJECT_STACK_MEMORY, NULL,
4e5d721f
DE
1856 myaddr, memaddr, len) == len)
1857 return 0;
1858 else
d09f2c3f 1859 return -1;
4e5d721f
DE
1860}
1861
29453a14
YQ
1862/* Like target_read_memory, but specify explicitly that this is a read from
1863 the target's code. This may trigger different cache behavior. */
1864
1865int
1866target_read_code (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1867{
328d42d8
SM
1868 if (target_read (current_inferior ()->top_target (),
1869 TARGET_OBJECT_CODE_MEMORY, NULL,
29453a14
YQ
1870 myaddr, memaddr, len) == len)
1871 return 0;
1872 else
d09f2c3f 1873 return -1;
29453a14
YQ
1874}
1875
7f79c47e 1876/* Write LEN bytes from MYADDR to target memory at address MEMADDR.
d09f2c3f
PA
1877 Returns either 0 for success or -1 if any error occurs. If an
1878 error occurs, no guarantee is made about how much data got written.
1879 Callers that can deal with partial writes should call
1880 target_write. */
7f79c47e 1881
c906108c 1882int
45aa4659 1883target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
c906108c 1884{
328d42d8
SM
1885 if (target_write (current_inferior ()->top_target (),
1886 TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1887 myaddr, memaddr, len) == len)
1888 return 0;
0779438d 1889 else
d09f2c3f 1890 return -1;
c906108c 1891}
c5aa993b 1892
f0ba3972 1893/* Write LEN bytes from MYADDR to target raw memory at address
d09f2c3f
PA
1894 MEMADDR. Returns either 0 for success or -1 if any error occurs.
1895 If an error occurs, no guarantee is made about how much data got
1896 written. Callers that can deal with partial writes should call
1897 target_write. */
f0ba3972
PA
1898
1899int
45aa4659 1900target_write_raw_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
f0ba3972 1901{
328d42d8
SM
1902 if (target_write (current_inferior ()->top_target (),
1903 TARGET_OBJECT_RAW_MEMORY, NULL,
f0ba3972
PA
1904 myaddr, memaddr, len) == len)
1905 return 0;
1906 else
d09f2c3f 1907 return -1;
f0ba3972
PA
1908}
1909
fd79ecee
DJ
1910/* Fetch the target's memory map. */
1911
a664f67e 1912std::vector<mem_region>
fd79ecee
DJ
1913target_memory_map (void)
1914{
328d42d8
SM
1915 target_ops *target = current_inferior ()->top_target ();
1916 std::vector<mem_region> result = target->memory_map ();
a664f67e
SM
1917 if (result.empty ())
1918 return result;
fd79ecee 1919
a664f67e 1920 std::sort (result.begin (), result.end ());
fd79ecee
DJ
1921
1922 /* Check that regions do not overlap. Simultaneously assign
1923 a numbering for the "mem" commands to use to refer to
1924 each region. */
a664f67e
SM
1925 mem_region *last_one = NULL;
1926 for (size_t ix = 0; ix < result.size (); ix++)
fd79ecee 1927 {
a664f67e 1928 mem_region *this_one = &result[ix];
fd79ecee
DJ
1929 this_one->number = ix;
1930
a664f67e 1931 if (last_one != NULL && last_one->hi > this_one->lo)
fd79ecee
DJ
1932 {
1933 warning (_("Overlapping regions in memory map: ignoring"));
a664f67e 1934 return std::vector<mem_region> ();
fd79ecee 1935 }
a664f67e 1936
fd79ecee
DJ
1937 last_one = this_one;
1938 }
1939
1940 return result;
1941}
1942
a76d924d
DJ
1943void
1944target_flash_erase (ULONGEST address, LONGEST length)
1945{
328d42d8 1946 current_inferior ()->top_target ()->flash_erase (address, length);
a76d924d
DJ
1947}
1948
1949void
1950target_flash_done (void)
1951{
328d42d8 1952 current_inferior ()->top_target ()->flash_done ();
a76d924d
DJ
1953}
1954
920d2a44
AC
1955static void
1956show_trust_readonly (struct ui_file *file, int from_tty,
1957 struct cmd_list_element *c, const char *value)
1958{
3e43a32a
MS
1959 fprintf_filtered (file,
1960 _("Mode for reading from readonly sections is %s.\n"),
920d2a44
AC
1961 value);
1962}
3a11626d 1963
7f79c47e 1964/* Target vector read/write partial wrapper functions. */
0088c768 1965
9b409511 1966static enum target_xfer_status
1e3ff5ad
AC
1967target_read_partial (struct target_ops *ops,
1968 enum target_object object,
1b0ba102 1969 const char *annex, gdb_byte *buf,
9b409511
YQ
1970 ULONGEST offset, ULONGEST len,
1971 ULONGEST *xfered_len)
1e3ff5ad 1972{
9b409511
YQ
1973 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len,
1974 xfered_len);
1e3ff5ad
AC
1975}
1976
8a55ffb0 1977static enum target_xfer_status
1e3ff5ad
AC
1978target_write_partial (struct target_ops *ops,
1979 enum target_object object,
1b0ba102 1980 const char *annex, const gdb_byte *buf,
9b409511 1981 ULONGEST offset, LONGEST len, ULONGEST *xfered_len)
1e3ff5ad 1982{
9b409511
YQ
1983 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len,
1984 xfered_len);
1e3ff5ad
AC
1985}
1986
1987/* Wrappers to perform the full transfer. */
7f79c47e
DE
1988
1989/* For docs on target_read see target.h. */
1990
1e3ff5ad
AC
1991LONGEST
1992target_read (struct target_ops *ops,
1993 enum target_object object,
1b0ba102 1994 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
1995 ULONGEST offset, LONGEST len)
1996{
279a6fed 1997 LONGEST xfered_total = 0;
d309493c
SM
1998 int unit_size = 1;
1999
2000 /* If we are reading from a memory object, find the length of an addressable
2001 unit for that architecture. */
2002 if (object == TARGET_OBJECT_MEMORY
2003 || object == TARGET_OBJECT_STACK_MEMORY
2004 || object == TARGET_OBJECT_CODE_MEMORY
2005 || object == TARGET_OBJECT_RAW_MEMORY)
2006 unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
5d502164 2007
279a6fed 2008 while (xfered_total < len)
1e3ff5ad 2009 {
279a6fed 2010 ULONGEST xfered_partial;
9b409511
YQ
2011 enum target_xfer_status status;
2012
2013 status = target_read_partial (ops, object, annex,
d309493c 2014 buf + xfered_total * unit_size,
279a6fed
SM
2015 offset + xfered_total, len - xfered_total,
2016 &xfered_partial);
5d502164 2017
1e3ff5ad 2018 /* Call an observer, notifying them of the xfer progress? */
9b409511 2019 if (status == TARGET_XFER_EOF)
279a6fed 2020 return xfered_total;
9b409511
YQ
2021 else if (status == TARGET_XFER_OK)
2022 {
279a6fed 2023 xfered_total += xfered_partial;
9b409511
YQ
2024 QUIT;
2025 }
2026 else
279a6fed 2027 return TARGET_XFER_E_IO;
9b409511 2028
1e3ff5ad
AC
2029 }
2030 return len;
2031}
2032
f1a507a1
JB
2033/* Assuming that the entire [begin, end) range of memory cannot be
2034 read, try to read whatever subrange is possible to read.
2035
2036 The function returns, in RESULT, either zero or one memory block.
2037 If there's a readable subrange at the beginning, it is completely
2038 read and returned. Any further readable subrange will not be read.
2039 Otherwise, if there's a readable subrange at the end, it will be
2040 completely read and returned. Any readable subranges before it
2041 (obviously, not starting at the beginning), will be ignored. In
2042 other cases -- either no readable subrange, or readable subrange(s)
2043 that is neither at the beginning, or end, nothing is returned.
2044
2045 The purpose of this function is to handle a read across a boundary
2046 of accessible memory in a case when memory map is not available.
2047 The above restrictions are fine for this case, but will give
2048 incorrect results if the memory is 'patchy'. However, supporting
2049 'patchy' memory would require trying to read every single byte,
2050 and it seems unacceptable solution. Explicit memory map is
2051 recommended for this case -- and target_read_memory_robust will
2052 take care of reading multiple ranges then. */
8dedea02
VP
2053
2054static void
3e43a32a 2055read_whatever_is_readable (struct target_ops *ops,
279a6fed 2056 const ULONGEST begin, const ULONGEST end,
d309493c 2057 int unit_size,
386c8614 2058 std::vector<memory_read_result> *result)
d5086790 2059{
8dedea02
VP
2060 ULONGEST current_begin = begin;
2061 ULONGEST current_end = end;
2062 int forward;
9b409511 2063 ULONGEST xfered_len;
8dedea02
VP
2064
2065 /* If we previously failed to read 1 byte, nothing can be done here. */
2066 if (end - begin <= 1)
386c8614
TT
2067 return;
2068
2069 gdb::unique_xmalloc_ptr<gdb_byte> buf ((gdb_byte *) xmalloc (end - begin));
8dedea02
VP
2070
2071 /* Check that either first or the last byte is readable, and give up
c378eb4e 2072 if not. This heuristic is meant to permit reading accessible memory
8dedea02
VP
2073 at the boundary of accessible region. */
2074 if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
386c8614 2075 buf.get (), begin, 1, &xfered_len) == TARGET_XFER_OK)
8dedea02
VP
2076 {
2077 forward = 1;
2078 ++current_begin;
2079 }
2080 else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
386c8614 2081 buf.get () + (end - begin) - 1, end - 1, 1,
9b409511 2082 &xfered_len) == TARGET_XFER_OK)
8dedea02
VP
2083 {
2084 forward = 0;
2085 --current_end;
2086 }
2087 else
386c8614 2088 return;
8dedea02
VP
2089
2090 /* Loop invariant is that the [current_begin, current_end) was previously
2091 found to be not readable as a whole.
2092
2093 Note loop condition -- if the range has 1 byte, we can't divide the range
2094 so there's no point trying further. */
2095 while (current_end - current_begin > 1)
2096 {
2097 ULONGEST first_half_begin, first_half_end;
2098 ULONGEST second_half_begin, second_half_end;
2099 LONGEST xfer;
279a6fed 2100 ULONGEST middle = current_begin + (current_end - current_begin) / 2;
f1a507a1 2101
8dedea02
VP
2102 if (forward)
2103 {
2104 first_half_begin = current_begin;
2105 first_half_end = middle;
2106 second_half_begin = middle;
2107 second_half_end = current_end;
2108 }
2109 else
2110 {
2111 first_half_begin = middle;
2112 first_half_end = current_end;
2113 second_half_begin = current_begin;
2114 second_half_end = middle;
2115 }
2116
2117 xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
386c8614 2118 buf.get () + (first_half_begin - begin) * unit_size,
8dedea02
VP
2119 first_half_begin,
2120 first_half_end - first_half_begin);
2121
2122 if (xfer == first_half_end - first_half_begin)
2123 {
c378eb4e 2124 /* This half reads up fine. So, the error must be in the
3e43a32a 2125 other half. */
8dedea02
VP
2126 current_begin = second_half_begin;
2127 current_end = second_half_end;
2128 }
2129 else
2130 {
c378eb4e 2131 /* This half is not readable. Because we've tried one byte, we
279a6fed 2132 know some part of this half if actually readable. Go to the next
8dedea02
VP
2133 iteration to divide again and try to read.
2134
2135 We don't handle the other half, because this function only tries
2136 to read a single readable subrange. */
2137 current_begin = first_half_begin;
2138 current_end = first_half_end;
2139 }
2140 }
2141
2142 if (forward)
2143 {
2144 /* The [begin, current_begin) range has been read. */
386c8614 2145 result->emplace_back (begin, current_end, std::move (buf));
8dedea02
VP
2146 }
2147 else
2148 {
2149 /* The [current_end, end) range has been read. */
279a6fed 2150 LONGEST region_len = end - current_end;
f1a507a1 2151
386c8614
TT
2152 gdb::unique_xmalloc_ptr<gdb_byte> data
2153 ((gdb_byte *) xmalloc (region_len * unit_size));
2154 memcpy (data.get (), buf.get () + (current_end - begin) * unit_size,
d309493c 2155 region_len * unit_size);
386c8614 2156 result->emplace_back (current_end, end, std::move (data));
8dedea02 2157 }
8dedea02
VP
2158}
2159
386c8614 2160std::vector<memory_read_result>
279a6fed
SM
2161read_memory_robust (struct target_ops *ops,
2162 const ULONGEST offset, const LONGEST len)
8dedea02 2163{
386c8614 2164 std::vector<memory_read_result> result;
d309493c 2165 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
8dedea02 2166
279a6fed
SM
2167 LONGEST xfered_total = 0;
2168 while (xfered_total < len)
d5086790 2169 {
279a6fed
SM
2170 struct mem_region *region = lookup_mem_region (offset + xfered_total);
2171 LONGEST region_len;
5d502164 2172
8dedea02
VP
2173 /* If there is no explicit region, a fake one should be created. */
2174 gdb_assert (region);
2175
2176 if (region->hi == 0)
279a6fed 2177 region_len = len - xfered_total;
8dedea02 2178 else
279a6fed 2179 region_len = region->hi - offset;
8dedea02
VP
2180
2181 if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
d5086790 2182 {
c378eb4e 2183 /* Cannot read this region. Note that we can end up here only
8dedea02
VP
2184 if the region is explicitly marked inaccessible, or
2185 'inaccessible-by-default' is in effect. */
279a6fed 2186 xfered_total += region_len;
8dedea02
VP
2187 }
2188 else
2189 {
325fac50 2190 LONGEST to_read = std::min (len - xfered_total, region_len);
386c8614
TT
2191 gdb::unique_xmalloc_ptr<gdb_byte> buffer
2192 ((gdb_byte *) xmalloc (to_read * unit_size));
8dedea02 2193
279a6fed 2194 LONGEST xfered_partial =
386c8614 2195 target_read (ops, TARGET_OBJECT_MEMORY, NULL, buffer.get (),
279a6fed 2196 offset + xfered_total, to_read);
8dedea02 2197 /* Call an observer, notifying them of the xfer progress? */
279a6fed 2198 if (xfered_partial <= 0)
d5086790 2199 {
c378eb4e 2200 /* Got an error reading full chunk. See if maybe we can read
8dedea02 2201 some subrange. */
e084c964
DB
2202 read_whatever_is_readable (ops, offset + xfered_total,
2203 offset + xfered_total + to_read,
2204 unit_size, &result);
279a6fed 2205 xfered_total += to_read;
d5086790 2206 }
8dedea02
VP
2207 else
2208 {
386c8614
TT
2209 result.emplace_back (offset + xfered_total,
2210 offset + xfered_total + xfered_partial,
2211 std::move (buffer));
279a6fed 2212 xfered_total += xfered_partial;
8dedea02
VP
2213 }
2214 QUIT;
d5086790 2215 }
d5086790 2216 }
9d78f827 2217
8dedea02 2218 return result;
d5086790
VP
2219}
2220
8dedea02 2221
cf7a04e8
DJ
2222/* An alternative to target_write with progress callbacks. */
2223
1e3ff5ad 2224LONGEST
cf7a04e8
DJ
2225target_write_with_progress (struct target_ops *ops,
2226 enum target_object object,
2227 const char *annex, const gdb_byte *buf,
2228 ULONGEST offset, LONGEST len,
2229 void (*progress) (ULONGEST, void *), void *baton)
1e3ff5ad 2230{
279a6fed 2231 LONGEST xfered_total = 0;
d309493c
SM
2232 int unit_size = 1;
2233
2234 /* If we are writing to a memory object, find the length of an addressable
2235 unit for that architecture. */
2236 if (object == TARGET_OBJECT_MEMORY
2237 || object == TARGET_OBJECT_STACK_MEMORY
2238 || object == TARGET_OBJECT_CODE_MEMORY
2239 || object == TARGET_OBJECT_RAW_MEMORY)
2240 unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
a76d924d
DJ
2241
2242 /* Give the progress callback a chance to set up. */
2243 if (progress)
2244 (*progress) (0, baton);
2245
279a6fed 2246 while (xfered_total < len)
1e3ff5ad 2247 {
279a6fed 2248 ULONGEST xfered_partial;
9b409511
YQ
2249 enum target_xfer_status status;
2250
2251 status = target_write_partial (ops, object, annex,
d309493c 2252 buf + xfered_total * unit_size,
279a6fed
SM
2253 offset + xfered_total, len - xfered_total,
2254 &xfered_partial);
cf7a04e8 2255
5c328c05 2256 if (status != TARGET_XFER_OK)
279a6fed 2257 return status == TARGET_XFER_EOF ? xfered_total : TARGET_XFER_E_IO;
cf7a04e8
DJ
2258
2259 if (progress)
279a6fed 2260 (*progress) (xfered_partial, baton);
cf7a04e8 2261
279a6fed 2262 xfered_total += xfered_partial;
1e3ff5ad
AC
2263 QUIT;
2264 }
2265 return len;
2266}
2267
7f79c47e
DE
2268/* For docs on target_write see target.h. */
2269
cf7a04e8
DJ
2270LONGEST
2271target_write (struct target_ops *ops,
2272 enum target_object object,
2273 const char *annex, const gdb_byte *buf,
2274 ULONGEST offset, LONGEST len)
2275{
2276 return target_write_with_progress (ops, object, annex, buf, offset, len,
2277 NULL, NULL);
2278}
2279
9018be22
SM
2280/* Help for target_read_alloc and target_read_stralloc. See their comments
2281 for details. */
13547ab6 2282
9018be22
SM
2283template <typename T>
2284gdb::optional<gdb::def_vector<T>>
159f81f3 2285target_read_alloc_1 (struct target_ops *ops, enum target_object object,
9018be22 2286 const char *annex)
13547ab6 2287{
9018be22
SM
2288 gdb::def_vector<T> buf;
2289 size_t buf_pos = 0;
2290 const int chunk = 4096;
13547ab6
DJ
2291
2292 /* This function does not have a length parameter; it reads the
2293 entire OBJECT). Also, it doesn't support objects fetched partly
2294 from one target and partly from another (in a different stratum,
2295 e.g. a core file and an executable). Both reasons make it
2296 unsuitable for reading memory. */
2297 gdb_assert (object != TARGET_OBJECT_MEMORY);
2298
2299 /* Start by reading up to 4K at a time. The target will throttle
2300 this number down if necessary. */
13547ab6
DJ
2301 while (1)
2302 {
9b409511
YQ
2303 ULONGEST xfered_len;
2304 enum target_xfer_status status;
2305
9018be22
SM
2306 buf.resize (buf_pos + chunk);
2307
2308 status = target_read_partial (ops, object, annex,
2309 (gdb_byte *) &buf[buf_pos],
2310 buf_pos, chunk,
9b409511
YQ
2311 &xfered_len);
2312
2313 if (status == TARGET_XFER_EOF)
13547ab6
DJ
2314 {
2315 /* Read all there was. */
9018be22
SM
2316 buf.resize (buf_pos);
2317 return buf;
13547ab6 2318 }
9b409511
YQ
2319 else if (status != TARGET_XFER_OK)
2320 {
2321 /* An error occurred. */
9018be22 2322 return {};
9b409511 2323 }
13547ab6 2324
9b409511 2325 buf_pos += xfered_len;
13547ab6 2326
13547ab6
DJ
2327 QUIT;
2328 }
2329}
2330
9018be22 2331/* See target.h */
159f81f3 2332
9018be22 2333gdb::optional<gdb::byte_vector>
159f81f3 2334target_read_alloc (struct target_ops *ops, enum target_object object,
9018be22 2335 const char *annex)
159f81f3 2336{
9018be22 2337 return target_read_alloc_1<gdb_byte> (ops, object, annex);
159f81f3
DJ
2338}
2339
b7b030ad 2340/* See target.h. */
159f81f3 2341
9018be22 2342gdb::optional<gdb::char_vector>
159f81f3
DJ
2343target_read_stralloc (struct target_ops *ops, enum target_object object,
2344 const char *annex)
2345{
9018be22
SM
2346 gdb::optional<gdb::char_vector> buf
2347 = target_read_alloc_1<char> (ops, object, annex);
159f81f3 2348
9018be22
SM
2349 if (!buf)
2350 return {};
159f81f3 2351
d00a27c5 2352 if (buf->empty () || buf->back () != '\0')
9018be22 2353 buf->push_back ('\0');
7313baad
UW
2354
2355 /* Check for embedded NUL bytes; but allow trailing NULs. */
9018be22
SM
2356 for (auto it = std::find (buf->begin (), buf->end (), '\0');
2357 it != buf->end (); it++)
2358 if (*it != '\0')
7313baad
UW
2359 {
2360 warning (_("target object %d, annex %s, "
2361 "contained unexpected null characters"),
2362 (int) object, annex ? annex : "(none)");
2363 break;
2364 }
159f81f3 2365
9018be22 2366 return buf;
159f81f3
DJ
2367}
2368
b6591e8b
AC
2369/* Memory transfer methods. */
2370
2371void
1b0ba102 2372get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
b6591e8b
AC
2373 LONGEST len)
2374{
07b82ea5
PA
2375 /* This method is used to read from an alternate, non-current
2376 target. This read must bypass the overlay support (as symbols
2377 don't match this target), and GDB's internal cache (wrong cache
2378 for this target). */
2379 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
b6591e8b 2380 != len)
578d3588 2381 memory_error (TARGET_XFER_E_IO, addr);
b6591e8b
AC
2382}
2383
2384ULONGEST
5d502164
MS
2385get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2386 int len, enum bfd_endian byte_order)
b6591e8b 2387{
f6519ebc 2388 gdb_byte buf[sizeof (ULONGEST)];
b6591e8b
AC
2389
2390 gdb_assert (len <= sizeof (buf));
2391 get_target_memory (ops, addr, buf, len);
e17a4113 2392 return extract_unsigned_integer (buf, len, byte_order);
b6591e8b
AC
2393}
2394
3db08215
MM
2395/* See target.h. */
2396
d914c394
SS
2397int
2398target_insert_breakpoint (struct gdbarch *gdbarch,
2399 struct bp_target_info *bp_tgt)
2400{
2401 if (!may_insert_breakpoints)
2402 {
2403 warning (_("May not insert breakpoints"));
2404 return 1;
2405 }
2406
328d42d8
SM
2407 target_ops *target = current_inferior ()->top_target ();
2408
2409 return target->insert_breakpoint (gdbarch, bp_tgt);
d914c394
SS
2410}
2411
3db08215
MM
2412/* See target.h. */
2413
d914c394 2414int
6b84065d 2415target_remove_breakpoint (struct gdbarch *gdbarch,
73971819
PA
2416 struct bp_target_info *bp_tgt,
2417 enum remove_bp_reason reason)
d914c394
SS
2418{
2419 /* This is kind of a weird case to handle, but the permission might
2420 have been changed after breakpoints were inserted - in which case
2421 we should just take the user literally and assume that any
2422 breakpoints should be left in place. */
2423 if (!may_insert_breakpoints)
2424 {
2425 warning (_("May not remove breakpoints"));
2426 return 1;
2427 }
2428
328d42d8
SM
2429 target_ops *target = current_inferior ()->top_target ();
2430
2431 return target->remove_breakpoint (gdbarch, bp_tgt, reason);
d914c394
SS
2432}
2433
c906108c 2434static void
1d12d88f 2435info_target_command (const char *args, int from_tty)
c906108c 2436{
c906108c 2437 int has_all_mem = 0;
c5aa993b 2438
a42d7dd8
TT
2439 if (current_program_space->symfile_object_file != NULL)
2440 {
2441 objfile *objf = current_program_space->symfile_object_file;
2442 printf_unfiltered (_("Symbols from \"%s\".\n"),
2443 objfile_name (objf));
2444 }
c906108c 2445
328d42d8
SM
2446 for (target_ops *t = current_inferior ()->top_target ();
2447 t != NULL;
2448 t = t->beneath ())
c906108c 2449 {
f6ac5f3d 2450 if (!t->has_memory ())
c906108c
SS
2451 continue;
2452
66b4deae 2453 if ((int) (t->stratum ()) <= (int) dummy_stratum)
c906108c
SS
2454 continue;
2455 if (has_all_mem)
3e43a32a
MS
2456 printf_unfiltered (_("\tWhile running this, "
2457 "GDB does not access memory from...\n"));
f6ac5f3d
PA
2458 printf_unfiltered ("%s:\n", t->longname ());
2459 t->files_info ();
2460 has_all_mem = t->has_all_memory ();
c906108c
SS
2461 }
2462}
2463
fd79ecee
DJ
2464/* This function is called before any new inferior is created, e.g.
2465 by running a program, attaching, or connecting to a target.
2466 It cleans up any state from previous invocations which might
2467 change between runs. This is a subset of what target_preopen
2468 resets (things which might change between targets). */
2469
2470void
2471target_pre_inferior (int from_tty)
2472{
c378eb4e 2473 /* Clear out solib state. Otherwise the solib state of the previous
b9db4ced 2474 inferior might have survived and is entirely wrong for the new
c378eb4e 2475 target. This has been observed on GNU/Linux using glibc 2.3. How
b9db4ced
UW
2476 to reproduce:
2477
2478 bash$ ./foo&
2479 [1] 4711
2480 bash$ ./foo&
2481 [1] 4712
2482 bash$ gdb ./foo
2483 [...]
2484 (gdb) attach 4711
2485 (gdb) detach
2486 (gdb) attach 4712
2487 Cannot access memory at address 0xdeadbeef
2488 */
b9db4ced 2489
50c71eaf
PA
2490 /* In some OSs, the shared library list is the same/global/shared
2491 across inferiors. If code is shared between processes, so are
2492 memory regions and features. */
f5656ead 2493 if (!gdbarch_has_global_solist (target_gdbarch ()))
50c71eaf
PA
2494 {
2495 no_shared_libraries (NULL, from_tty);
2496
2497 invalidate_target_mem_regions ();
424163ea 2498
50c71eaf
PA
2499 target_clear_description ();
2500 }
8ffcbaaf 2501
e9756d52
PP
2502 /* attach_flag may be set if the previous process associated with
2503 the inferior was attached to. */
2504 current_inferior ()->attach_flag = 0;
2505
5d5658a1
PA
2506 current_inferior ()->highest_thread_num = 0;
2507
8ffcbaaf 2508 agent_capability_invalidate ();
fd79ecee
DJ
2509}
2510
c906108c
SS
2511/* This is to be called by the open routine before it does
2512 anything. */
2513
2514void
fba45db2 2515target_preopen (int from_tty)
c906108c 2516{
c5aa993b 2517 dont_repeat ();
c906108c 2518
5b6d1e4f 2519 if (current_inferior ()->pid != 0)
c5aa993b 2520 {
adf40b2e 2521 if (!from_tty
55f6301a 2522 || !target_has_execution ()
b8fa0bfa 2523 || query (_("A program is being debugged already. Kill it? ")))
5b6d1e4f
PA
2524 {
2525 /* Core inferiors actually should be detached, not
2526 killed. */
55f6301a 2527 if (target_has_execution ())
5b6d1e4f
PA
2528 target_kill ();
2529 else
2530 target_detach (current_inferior (), 0);
2531 }
c906108c 2532 else
8a3fe4f8 2533 error (_("Program not killed."));
c906108c
SS
2534 }
2535
2536 /* Calling target_kill may remove the target from the stack. But if
2537 it doesn't (which seems like a win for UDI), remove it now. */
87ab71f0
PA
2538 /* Leave the exec target, though. The user may be switching from a
2539 live process to a core of the same program. */
460014f5 2540 pop_all_targets_above (file_stratum);
fd79ecee
DJ
2541
2542 target_pre_inferior (from_tty);
c906108c
SS
2543}
2544
6bd6f3b6 2545/* See target.h. */
c906108c
SS
2546
2547void
6e1e1966 2548target_detach (inferior *inf, int from_tty)
c906108c 2549{
5783e150
PW
2550 /* After we have detached, we will clear the register cache for this inferior
2551 by calling registers_changed_ptid. We must save the pid_ptid before
2552 detaching, as the target detach method will clear inf->pid. */
2553 ptid_t save_pid_ptid = ptid_t (inf->pid);
2554
6e1e1966
SM
2555 /* As long as some to_detach implementations rely on the current_inferior
2556 (either directly, or indirectly, like through target_gdbarch or by
2557 reading memory), INF needs to be the current inferior. When that
2558 requirement will become no longer true, then we can remove this
2559 assertion. */
2560 gdb_assert (inf == current_inferior ());
2561
24291992
PA
2562 prepare_for_detach ();
2563
5b6d1e4f
PA
2564 /* Hold a strong reference because detaching may unpush the
2565 target. */
2566 auto proc_target_ref = target_ops_ref::new_reference (inf->process_target ());
2567
328d42d8 2568 current_inferior ()->top_target ()->detach (inf, from_tty);
799efbe8 2569
5b6d1e4f
PA
2570 process_stratum_target *proc_target
2571 = as_process_stratum_target (proc_target_ref.get ());
2572
2573 registers_changed_ptid (proc_target, save_pid_ptid);
799efbe8
PW
2574
2575 /* We have to ensure we have no frame cache left. Normally,
5783e150
PW
2576 registers_changed_ptid (save_pid_ptid) calls reinit_frame_cache when
2577 inferior_ptid matches save_pid_ptid, but in our case, it does not
799efbe8
PW
2578 call it, as inferior_ptid has been reset. */
2579 reinit_frame_cache ();
c906108c
SS
2580}
2581
6ad8ae5c 2582void
fee354ee 2583target_disconnect (const char *args, int from_tty)
6ad8ae5c 2584{
50c71eaf
PA
2585 /* If we're in breakpoints-always-inserted mode or if breakpoints
2586 are global across processes, we have to remove them before
2587 disconnecting. */
74960c60
VP
2588 remove_breakpoints ();
2589
328d42d8 2590 current_inferior ()->top_target ()->disconnect (args, from_tty);
6ad8ae5c
DJ
2591}
2592
f2b9e3df
SDJ
2593/* See target/target.h. */
2594
117de6a9 2595ptid_t
b60cea74
TT
2596target_wait (ptid_t ptid, struct target_waitstatus *status,
2597 target_wait_flags options)
117de6a9 2598{
328d42d8 2599 target_ops *target = current_inferior ()->top_target ();
1192f124
SM
2600 process_stratum_target *proc_target = current_inferior ()->process_target ();
2601
2602 gdb_assert (!proc_target->commit_resumed_state);
d3a07122
SM
2603
2604 if (!target->can_async_p ())
2605 gdb_assert ((options & TARGET_WNOHANG) == 0);
2606
2607 return target->wait (ptid, status, options);
117de6a9
PA
2608}
2609
0b333c5e
PA
2610/* See target.h. */
2611
2612ptid_t
2613default_target_wait (struct target_ops *ops,
2614 ptid_t ptid, struct target_waitstatus *status,
b60cea74 2615 target_wait_flags options)
0b333c5e
PA
2616{
2617 status->kind = TARGET_WAITKIND_IGNORE;
2618 return minus_one_ptid;
2619}
2620
a068643d 2621std::string
117de6a9
PA
2622target_pid_to_str (ptid_t ptid)
2623{
328d42d8 2624 return current_inferior ()->top_target ()->pid_to_str (ptid);
117de6a9
PA
2625}
2626
73ede765 2627const char *
4694da01
TT
2628target_thread_name (struct thread_info *info)
2629{
5b6d1e4f
PA
2630 gdb_assert (info->inf == current_inferior ());
2631
328d42d8 2632 return current_inferior ()->top_target ()->thread_name (info);
4694da01
TT
2633}
2634
e04ee09e
KB
2635struct thread_info *
2636target_thread_handle_to_thread_info (const gdb_byte *thread_handle,
2637 int handle_len,
2638 struct inferior *inf)
2639{
328d42d8
SM
2640 target_ops *target = current_inferior ()->top_target ();
2641
2642 return target->thread_handle_to_thread_info (thread_handle, handle_len, inf);
e04ee09e
KB
2643}
2644
3d6c6204
KB
2645/* See target.h. */
2646
2647gdb::byte_vector
2648target_thread_info_to_thread_handle (struct thread_info *tip)
2649{
328d42d8
SM
2650 target_ops *target = current_inferior ()->top_target ();
2651
2652 return target->thread_info_to_thread_handle (tip);
3d6c6204
KB
2653}
2654
e1ac3328 2655void
2ea28649 2656target_resume (ptid_t ptid, int step, enum gdb_signal signal)
e1ac3328 2657{
5b6d1e4f 2658 process_stratum_target *curr_target = current_inferior ()->process_target ();
1192f124 2659 gdb_assert (!curr_target->commit_resumed_state);
5b6d1e4f 2660
4e5d721f 2661 target_dcache_invalidate ();
28439f5e 2662
328d42d8 2663 current_inferior ()->top_target ()->resume (ptid, step, signal);
28439f5e 2664
5b6d1e4f 2665 registers_changed_ptid (curr_target, ptid);
251bde03 2666 /* We only set the internal executing state here. The user/frontend
f2ffa92b
PA
2667 running state is set at a higher level. This also clears the
2668 thread's stop_pc as side effect. */
719546c4 2669 set_executing (curr_target, ptid, true);
5b6d1e4f 2670 clear_inline_frame_state (curr_target, ptid);
e1ac3328 2671}
2455069d 2672
85ad3aaf
PA
2673/* See target.h. */
2674
2675void
1192f124 2676target_commit_resumed ()
85ad3aaf 2677{
1192f124
SM
2678 gdb_assert (current_inferior ()->process_target ()->commit_resumed_state);
2679 current_inferior ()->top_target ()->commit_resumed ();
85ad3aaf
PA
2680}
2681
b4b1a226
SM
2682/* See target.h. */
2683
2684bool
2685target_has_pending_events ()
2686{
2687 return current_inferior ()->top_target ()->has_pending_events ();
2688}
2689
2455069d 2690void
adc6a863 2691target_pass_signals (gdb::array_view<const unsigned char> pass_signals)
2455069d 2692{
328d42d8 2693 current_inferior ()->top_target ()->pass_signals (pass_signals);
2455069d
UW
2694}
2695
9b224c5e 2696void
adc6a863 2697target_program_signals (gdb::array_view<const unsigned char> program_signals)
9b224c5e 2698{
328d42d8 2699 current_inferior ()->top_target ()->program_signals (program_signals);
9b224c5e
PA
2700}
2701
e97007b6 2702static void
5ab2fbf1
SM
2703default_follow_fork (struct target_ops *self, bool follow_child,
2704 bool detach_fork)
098dba18
TT
2705{
2706 /* Some target returned a fork event, but did not know how to follow it. */
2707 internal_error (__FILE__, __LINE__,
2708 _("could not find a target to follow fork"));
2709}
2710
e97007b6 2711/* See target.h. */
ee057212 2712
e97007b6 2713void
5ab2fbf1 2714target_follow_fork (bool follow_child, bool detach_fork)
ee057212 2715{
328d42d8
SM
2716 target_ops *target = current_inferior ()->top_target ();
2717
2718 return target->follow_fork (follow_child, detach_fork);
ee057212
DJ
2719}
2720
294c36eb 2721/* See target.h. */
94585166
DB
2722
2723void
294c36eb
SM
2724target_follow_exec (inferior *follow_inf, ptid_t ptid,
2725 const char *execd_pathname)
94585166 2726{
294c36eb
SM
2727 current_inferior ()->top_target ()->follow_exec (follow_inf, ptid,
2728 execd_pathname);
94585166
DB
2729}
2730
8d657035
TT
2731static void
2732default_mourn_inferior (struct target_ops *self)
2733{
2734 internal_error (__FILE__, __LINE__,
2735 _("could not find a target to follow mourn inferior"));
2736}
2737
136d6dae 2738void
bc1e6c81 2739target_mourn_inferior (ptid_t ptid)
136d6dae 2740{
dffdd8b5 2741 gdb_assert (ptid.pid () == inferior_ptid.pid ());
328d42d8 2742 current_inferior ()->top_target ()->mourn_inferior ();
136d6dae 2743
8d657035
TT
2744 /* We no longer need to keep handles on any of the object files.
2745 Make sure to release them to avoid unnecessarily locking any
2746 of them while we're not actually debugging. */
2747 bfd_cache_close_all ();
136d6dae
VP
2748}
2749
424163ea
DJ
2750/* Look for a target which can describe architectural features, starting
2751 from TARGET. If we find one, return its description. */
2752
2753const struct target_desc *
2754target_read_description (struct target_ops *target)
2755{
f6ac5f3d 2756 return target->read_description ();
424163ea
DJ
2757}
2758
08388c79 2759
58a5184e
TT
2760/* Default implementation of memory-searching. */
2761
2762static int
2763default_search_memory (struct target_ops *self,
2764 CORE_ADDR start_addr, ULONGEST search_space_len,
2765 const gdb_byte *pattern, ULONGEST pattern_len,
2766 CORE_ADDR *found_addrp)
2767{
4a72de73
TT
2768 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
2769 {
328d42d8
SM
2770 return target_read (current_inferior ()->top_target (),
2771 TARGET_OBJECT_MEMORY, NULL,
4a72de73
TT
2772 result, addr, len) == len;
2773 };
2774
58a5184e 2775 /* Start over from the top of the target stack. */
4a72de73 2776 return simple_search_memory (read_memory, start_addr, search_space_len,
58a5184e
TT
2777 pattern, pattern_len, found_addrp);
2778}
2779
08388c79
DE
2780/* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2781 sequence of bytes in PATTERN with length PATTERN_LEN.
2782
2783 The result is 1 if found, 0 if not found, and -1 if there was an error
2784 requiring halting of the search (e.g. memory read error).
2785 If the pattern is found the address is recorded in FOUND_ADDRP. */
2786
2787int
2788target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2789 const gdb_byte *pattern, ULONGEST pattern_len,
2790 CORE_ADDR *found_addrp)
2791{
328d42d8
SM
2792 target_ops *target = current_inferior ()->top_target ();
2793
2794 return target->search_memory (start_addr, search_space_len, pattern,
2795 pattern_len, found_addrp);
08388c79
DE
2796}
2797
8edfe269
DJ
2798/* Look through the currently pushed targets. If none of them will
2799 be able to restart the currently running process, issue an error
2800 message. */
2801
2802void
2803target_require_runnable (void)
2804{
328d42d8
SM
2805 for (target_ops *t = current_inferior ()->top_target ();
2806 t != NULL;
2807 t = t->beneath ())
8edfe269
DJ
2808 {
2809 /* If this target knows how to create a new program, then
2810 assume we will still be able to after killing the current
2811 one. Either killing and mourning will not pop T, or else
2812 find_default_run_target will find it again. */
f6ac5f3d 2813 if (t->can_create_inferior ())
8edfe269
DJ
2814 return;
2815
548740d6 2816 /* Do not worry about targets at certain strata that can not
8edfe269
DJ
2817 create inferiors. Assume they will be pushed again if
2818 necessary, and continue to the process_stratum. */
66b4deae 2819 if (t->stratum () > process_stratum)
8edfe269
DJ
2820 continue;
2821
3e43a32a
MS
2822 error (_("The \"%s\" target does not support \"run\". "
2823 "Try \"help target\" or \"continue\"."),
f6ac5f3d 2824 t->shortname ());
8edfe269
DJ
2825 }
2826
2827 /* This function is only called if the target is running. In that
2828 case there should have been a process_stratum target and it
c378eb4e 2829 should either know how to create inferiors, or not... */
9b20d036 2830 internal_error (__FILE__, __LINE__, _("No targets found"));
8edfe269
DJ
2831}
2832
6a3cb8e8
PA
2833/* Whether GDB is allowed to fall back to the default run target for
2834 "run", "attach", etc. when no target is connected yet. */
491144b5 2835static bool auto_connect_native_target = true;
6a3cb8e8
PA
2836
2837static void
2838show_auto_connect_native_target (struct ui_file *file, int from_tty,
2839 struct cmd_list_element *c, const char *value)
2840{
2841 fprintf_filtered (file,
2842 _("Whether GDB may automatically connect to the "
2843 "native target is %s.\n"),
2844 value);
2845}
2846
d9f719f1
PA
2847/* A pointer to the target that can respond to "run" or "attach".
2848 Native targets are always singletons and instantiated early at GDB
2849 startup. */
2850static target_ops *the_native_target;
2851
2852/* See target.h. */
2853
2854void
2855set_native_target (target_ops *target)
2856{
2857 if (the_native_target != NULL)
2858 internal_error (__FILE__, __LINE__,
2859 _("native target already set (\"%s\")."),
2860 the_native_target->longname ());
2861
2862 the_native_target = target;
2863}
2864
2865/* See target.h. */
2866
2867target_ops *
2868get_native_target ()
2869{
2870 return the_native_target;
2871}
2872
c906108c
SS
2873/* Look through the list of possible targets for a target that can
2874 execute a run or attach command without any other data. This is
2875 used to locate the default process stratum.
2876
5f667f2d
PA
2877 If DO_MESG is not NULL, the result is always valid (error() is
2878 called for errors); else, return NULL on error. */
c906108c
SS
2879
2880static struct target_ops *
a121b7c1 2881find_default_run_target (const char *do_mesg)
c906108c 2882{
d9f719f1
PA
2883 if (auto_connect_native_target && the_native_target != NULL)
2884 return the_native_target;
c906108c 2885
d9f719f1
PA
2886 if (do_mesg != NULL)
2887 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2888 return NULL;
c906108c
SS
2889}
2890
b3ccfe11 2891/* See target.h. */
c906108c 2892
b3ccfe11
TT
2893struct target_ops *
2894find_attach_target (void)
c906108c 2895{
b3ccfe11 2896 /* If a target on the current stack can attach, use it. */
328d42d8
SM
2897 for (target_ops *t = current_inferior ()->top_target ();
2898 t != NULL;
2899 t = t->beneath ())
b3ccfe11 2900 {
f6ac5f3d 2901 if (t->can_attach ())
d9f719f1 2902 return t;
b3ccfe11 2903 }
c906108c 2904
b3ccfe11 2905 /* Otherwise, use the default run target for attaching. */
d9f719f1 2906 return find_default_run_target ("attach");
b84876c2
PA
2907}
2908
b3ccfe11 2909/* See target.h. */
b84876c2 2910
b3ccfe11
TT
2911struct target_ops *
2912find_run_target (void)
9908b566 2913{
f6ac5f3d 2914 /* If a target on the current stack can run, use it. */
328d42d8
SM
2915 for (target_ops *t = current_inferior ()->top_target ();
2916 t != NULL;
2917 t = t->beneath ())
b3ccfe11 2918 {
f6ac5f3d 2919 if (t->can_create_inferior ())
d9f719f1 2920 return t;
b3ccfe11 2921 }
5d502164 2922
b3ccfe11 2923 /* Otherwise, use the default run target. */
d9f719f1 2924 return find_default_run_target ("run");
9908b566
VP
2925}
2926
f6ac5f3d
PA
2927bool
2928target_ops::info_proc (const char *args, enum info_proc_what what)
2929{
2930 return false;
2931}
2932
145b16a9
UW
2933/* Implement the "info proc" command. */
2934
451b7c33 2935int
7bc112c1 2936target_info_proc (const char *args, enum info_proc_what what)
145b16a9
UW
2937{
2938 struct target_ops *t;
2939
2940 /* If we're already connected to something that can get us OS
2941 related data, use it. Otherwise, try using the native
2942 target. */
f6ac5f3d
PA
2943 t = find_target_at (process_stratum);
2944 if (t == NULL)
145b16a9
UW
2945 t = find_default_run_target (NULL);
2946
b6a8c27b 2947 for (; t != NULL; t = t->beneath ())
145b16a9 2948 {
f6ac5f3d 2949 if (t->info_proc (args, what))
145b16a9 2950 {
145b16a9
UW
2951 if (targetdebug)
2952 fprintf_unfiltered (gdb_stdlog,
2953 "target_info_proc (\"%s\", %d)\n", args, what);
2954
451b7c33 2955 return 1;
145b16a9
UW
2956 }
2957 }
2958
451b7c33 2959 return 0;
145b16a9
UW
2960}
2961
03583c20 2962static int
2bfc0540 2963find_default_supports_disable_randomization (struct target_ops *self)
03583c20
UW
2964{
2965 struct target_ops *t;
2966
2967 t = find_default_run_target (NULL);
f6ac5f3d
PA
2968 if (t != NULL)
2969 return t->supports_disable_randomization ();
03583c20
UW
2970 return 0;
2971}
2972
2973int
2974target_supports_disable_randomization (void)
2975{
328d42d8 2976 return current_inferior ()->top_target ()->supports_disable_randomization ();
03583c20 2977}
9908b566 2978
1fb77080
SDJ
2979/* See target/target.h. */
2980
2981int
2982target_supports_multi_process (void)
2983{
328d42d8 2984 return current_inferior ()->top_target ()->supports_multi_process ();
1fb77080
SDJ
2985}
2986
b7b030ad
TT
2987/* See target.h. */
2988
9018be22 2989gdb::optional<gdb::char_vector>
07e059b5
VP
2990target_get_osdata (const char *type)
2991{
07e059b5
VP
2992 struct target_ops *t;
2993
739ef7fb
PA
2994 /* If we're already connected to something that can get us OS
2995 related data, use it. Otherwise, try using the native
2996 target. */
f6ac5f3d
PA
2997 t = find_target_at (process_stratum);
2998 if (t == NULL)
739ef7fb 2999 t = find_default_run_target ("get OS data");
07e059b5
VP
3000
3001 if (!t)
9018be22 3002 return {};
07e059b5 3003
6d097e65 3004 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
07e059b5
VP
3005}
3006
8eaff7cd
TT
3007/* Determine the current address space of thread PTID. */
3008
3009struct address_space *
3010target_thread_address_space (ptid_t ptid)
3011{
3012 struct address_space *aspace;
3013
328d42d8 3014 aspace = current_inferior ()->top_target ()->thread_address_space (ptid);
8eaff7cd
TT
3015 gdb_assert (aspace != NULL);
3016
8eaff7cd
TT
3017 return aspace;
3018}
3019
b6a8c27b
PA
3020/* See target.h. */
3021
3022target_ops *
3023target_ops::beneath () const
3024{
5b6d1e4f 3025 return current_inferior ()->find_target_beneath (this);
b6a8c27b
PA
3026}
3027
f6ac5f3d
PA
3028void
3029target_ops::close ()
3030{
3031}
3032
3033bool
3034target_ops::can_attach ()
3035{
3036 return 0;
3037}
3038
3039void
3040target_ops::attach (const char *, int)
3041{
3042 gdb_assert_not_reached ("target_ops::attach called");
3043}
3044
3045bool
3046target_ops::can_create_inferior ()
3047{
3048 return 0;
3049}
3050
3051void
3052target_ops::create_inferior (const char *, const std::string &,
3053 char **, int)
3054{
3055 gdb_assert_not_reached ("target_ops::create_inferior called");
3056}
3057
57810aa7 3058bool
f6ac5f3d
PA
3059target_ops::can_run ()
3060{
57810aa7 3061 return false;
f6ac5f3d
PA
3062}
3063
3064int
3065target_can_run ()
3066{
328d42d8
SM
3067 for (target_ops *t = current_inferior ()->top_target ();
3068 t != NULL;
3069 t = t->beneath ())
f6ac5f3d
PA
3070 {
3071 if (t->can_run ())
3072 return 1;
3073 }
3074
3075 return 0;
3076}
7313baad
UW
3077
3078/* Target file operations. */
3079
3080static struct target_ops *
3081default_fileio_target (void)
3082{
f6ac5f3d
PA
3083 struct target_ops *t;
3084
7313baad
UW
3085 /* If we're already connected to something that can perform
3086 file I/O, use it. Otherwise, try using the native target. */
f6ac5f3d
PA
3087 t = find_target_at (process_stratum);
3088 if (t != NULL)
3089 return t;
3090 return find_default_run_target ("file I/O");
7313baad
UW
3091}
3092
1c4b552b
GB
3093/* File handle for target file operations. */
3094
5ff79300 3095struct fileio_fh_t
1c4b552b 3096{
20db9c52
PA
3097 /* The target on which this file is open. NULL if the target is
3098 meanwhile closed while the handle is open. */
5ff79300 3099 target_ops *target;
1c4b552b
GB
3100
3101 /* The file descriptor on the target. */
5ff79300 3102 int target_fd;
1c4b552b 3103
5ff79300
PA
3104 /* Check whether this fileio_fh_t represents a closed file. */
3105 bool is_closed ()
3106 {
3107 return target_fd < 0;
3108 }
3109};
1c4b552b
GB
3110
3111/* Vector of currently open file handles. The value returned by
3112 target_fileio_open and passed as the FD argument to other
3113 target_fileio_* functions is an index into this vector. This
3114 vector's entries are never freed; instead, files are marked as
3115 closed, and the handle becomes available for reuse. */
5ff79300 3116static std::vector<fileio_fh_t> fileio_fhandles;
1c4b552b
GB
3117
3118/* Index into fileio_fhandles of the lowest handle that might be
3119 closed. This permits handle reuse without searching the whole
3120 list each time a new file is opened. */
3121static int lowest_closed_fd;
3122
20db9c52
PA
3123/* Invalidate the target associated with open handles that were open
3124 on target TARG, since we're about to close (and maybe destroy) the
3125 target. The handles remain open from the client's perspective, but
3126 trying to do anything with them other than closing them will fail
3127 with EIO. */
3128
3129static void
3130fileio_handles_invalidate_target (target_ops *targ)
3131{
3132 for (fileio_fh_t &fh : fileio_fhandles)
3133 if (fh.target == targ)
3134 fh.target = NULL;
3135}
3136
1c4b552b
GB
3137/* Acquire a target fileio file descriptor. */
3138
3139static int
5ff79300 3140acquire_fileio_fd (target_ops *target, int target_fd)
1c4b552b 3141{
1c4b552b 3142 /* Search for closed handles to reuse. */
5ff79300
PA
3143 for (; lowest_closed_fd < fileio_fhandles.size (); lowest_closed_fd++)
3144 {
3145 fileio_fh_t &fh = fileio_fhandles[lowest_closed_fd];
3146
3147 if (fh.is_closed ())
3148 break;
3149 }
1c4b552b
GB
3150
3151 /* Push a new handle if no closed handles were found. */
5ff79300
PA
3152 if (lowest_closed_fd == fileio_fhandles.size ())
3153 fileio_fhandles.push_back (fileio_fh_t {target, target_fd});
3154 else
3155 fileio_fhandles[lowest_closed_fd] = {target, target_fd};
1c4b552b 3156
5ff79300
PA
3157 /* Should no longer be marked closed. */
3158 gdb_assert (!fileio_fhandles[lowest_closed_fd].is_closed ());
1c4b552b
GB
3159
3160 /* Return its index, and start the next lookup at
3161 the next index. */
3162 return lowest_closed_fd++;
3163}
3164
3165/* Release a target fileio file descriptor. */
3166
3167static void
3168release_fileio_fd (int fd, fileio_fh_t *fh)
3169{
5ff79300 3170 fh->target_fd = -1;
325fac50 3171 lowest_closed_fd = std::min (lowest_closed_fd, fd);
1c4b552b
GB
3172}
3173
3174/* Return a pointer to the fileio_fhandle_t corresponding to FD. */
3175
5ff79300
PA
3176static fileio_fh_t *
3177fileio_fd_to_fh (int fd)
3178{
3179 return &fileio_fhandles[fd];
3180}
1c4b552b 3181
f6ac5f3d
PA
3182
3183/* Default implementations of file i/o methods. We don't want these
3184 to delegate automatically, because we need to know which target
3185 supported the method, in order to call it directly from within
3186 pread/pwrite, etc. */
3187
3188int
3189target_ops::fileio_open (struct inferior *inf, const char *filename,
3190 int flags, int mode, int warn_if_slow,
3191 int *target_errno)
3192{
3193 *target_errno = FILEIO_ENOSYS;
3194 return -1;
3195}
3196
3197int
3198target_ops::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3199 ULONGEST offset, int *target_errno)
3200{
3201 *target_errno = FILEIO_ENOSYS;
3202 return -1;
3203}
3204
3205int
3206target_ops::fileio_pread (int fd, gdb_byte *read_buf, int len,
3207 ULONGEST offset, int *target_errno)
3208{
3209 *target_errno = FILEIO_ENOSYS;
3210 return -1;
3211}
3212
3213int
3214target_ops::fileio_fstat (int fd, struct stat *sb, int *target_errno)
3215{
3216 *target_errno = FILEIO_ENOSYS;
3217 return -1;
3218}
3219
3220int
3221target_ops::fileio_close (int fd, int *target_errno)
3222{
3223 *target_errno = FILEIO_ENOSYS;
3224 return -1;
3225}
3226
3227int
3228target_ops::fileio_unlink (struct inferior *inf, const char *filename,
3229 int *target_errno)
3230{
3231 *target_errno = FILEIO_ENOSYS;
3232 return -1;
3233}
3234
3235gdb::optional<std::string>
3236target_ops::fileio_readlink (struct inferior *inf, const char *filename,
3237 int *target_errno)
3238{
3239 *target_errno = FILEIO_ENOSYS;
3240 return {};
3241}
3242
4111f652 3243/* See target.h. */
12e2a5fd 3244
4111f652
PA
3245int
3246target_fileio_open (struct inferior *inf, const char *filename,
3247 int flags, int mode, bool warn_if_slow, int *target_errno)
7313baad 3248{
b6a8c27b 3249 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
7313baad 3250 {
f6ac5f3d
PA
3251 int fd = t->fileio_open (inf, filename, flags, mode,
3252 warn_if_slow, target_errno);
7313baad 3253
f6ac5f3d
PA
3254 if (fd == -1 && *target_errno == FILEIO_ENOSYS)
3255 continue;
1c4b552b 3256
f6ac5f3d
PA
3257 if (fd < 0)
3258 fd = -1;
3259 else
3260 fd = acquire_fileio_fd (t, fd);
3261
3262 if (targetdebug)
3263 fprintf_unfiltered (gdb_stdlog,
4313b8c0 3264 "target_fileio_open (%d,%s,0x%x,0%o,%d)"
07c138c8
GB
3265 " = %d (%d)\n",
3266 inf == NULL ? 0 : inf->num,
7313baad 3267 filename, flags, mode,
4313b8c0
GB
3268 warn_if_slow, fd,
3269 fd != -1 ? 0 : *target_errno);
f6ac5f3d 3270 return fd;
7313baad
UW
3271 }
3272
3273 *target_errno = FILEIO_ENOSYS;
3274 return -1;
3275}
3276
12e2a5fd
GB
3277/* See target.h. */
3278
7313baad
UW
3279int
3280target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3281 ULONGEST offset, int *target_errno)
3282{
1c4b552b
GB
3283 fileio_fh_t *fh = fileio_fd_to_fh (fd);
3284 int ret = -1;
7313baad 3285
5ff79300 3286 if (fh->is_closed ())
1c4b552b 3287 *target_errno = EBADF;
20db9c52
PA
3288 else if (fh->target == NULL)
3289 *target_errno = EIO;
1c4b552b 3290 else
f6ac5f3d
PA
3291 ret = fh->target->fileio_pwrite (fh->target_fd, write_buf,
3292 len, offset, target_errno);
7313baad 3293
1c4b552b
GB
3294 if (targetdebug)
3295 fprintf_unfiltered (gdb_stdlog,
3296 "target_fileio_pwrite (%d,...,%d,%s) "
3297 "= %d (%d)\n",
3298 fd, len, pulongest (offset),
3299 ret, ret != -1 ? 0 : *target_errno);
3300 return ret;
7313baad
UW
3301}
3302
12e2a5fd
GB
3303/* See target.h. */
3304
7313baad
UW
3305int
3306target_fileio_pread (int fd, gdb_byte *read_buf, int len,
3307 ULONGEST offset, int *target_errno)
3308{
1c4b552b
GB
3309 fileio_fh_t *fh = fileio_fd_to_fh (fd);
3310 int ret = -1;
7313baad 3311
5ff79300 3312 if (fh->is_closed ())
1c4b552b 3313 *target_errno = EBADF;
20db9c52
PA
3314 else if (fh->target == NULL)
3315 *target_errno = EIO;
1c4b552b 3316 else
f6ac5f3d
PA
3317 ret = fh->target->fileio_pread (fh->target_fd, read_buf,
3318 len, offset, target_errno);
7313baad 3319
1c4b552b
GB
3320 if (targetdebug)
3321 fprintf_unfiltered (gdb_stdlog,
3322 "target_fileio_pread (%d,...,%d,%s) "
3323 "= %d (%d)\n",
3324 fd, len, pulongest (offset),
3325 ret, ret != -1 ? 0 : *target_errno);
9b15c1f0
GB
3326 return ret;
3327}
3328
3329/* See target.h. */
12e2a5fd 3330
9b15c1f0
GB
3331int
3332target_fileio_fstat (int fd, struct stat *sb, int *target_errno)
3333{
3334 fileio_fh_t *fh = fileio_fd_to_fh (fd);
3335 int ret = -1;
3336
5ff79300 3337 if (fh->is_closed ())
9b15c1f0 3338 *target_errno = EBADF;
20db9c52
PA
3339 else if (fh->target == NULL)
3340 *target_errno = EIO;
9b15c1f0 3341 else
f6ac5f3d 3342 ret = fh->target->fileio_fstat (fh->target_fd, sb, target_errno);
9b15c1f0
GB
3343
3344 if (targetdebug)
3345 fprintf_unfiltered (gdb_stdlog,
3346 "target_fileio_fstat (%d) = %d (%d)\n",
3347 fd, ret, ret != -1 ? 0 : *target_errno);
1c4b552b 3348 return ret;
7313baad
UW
3349}
3350
12e2a5fd
GB
3351/* See target.h. */
3352
7313baad
UW
3353int
3354target_fileio_close (int fd, int *target_errno)
3355{
1c4b552b
GB
3356 fileio_fh_t *fh = fileio_fd_to_fh (fd);
3357 int ret = -1;
7313baad 3358
5ff79300 3359 if (fh->is_closed ())
1c4b552b
GB
3360 *target_errno = EBADF;
3361 else
7313baad 3362 {
20db9c52 3363 if (fh->target != NULL)
f6ac5f3d
PA
3364 ret = fh->target->fileio_close (fh->target_fd,
3365 target_errno);
20db9c52
PA
3366 else
3367 ret = 0;
1c4b552b 3368 release_fileio_fd (fd, fh);
7313baad
UW
3369 }
3370
1c4b552b
GB
3371 if (targetdebug)
3372 fprintf_unfiltered (gdb_stdlog,
3373 "target_fileio_close (%d) = %d (%d)\n",
3374 fd, ret, ret != -1 ? 0 : *target_errno);
3375 return ret;
7313baad
UW
3376}
3377
12e2a5fd
GB
3378/* See target.h. */
3379
7313baad 3380int
07c138c8
GB
3381target_fileio_unlink (struct inferior *inf, const char *filename,
3382 int *target_errno)
7313baad 3383{
b6a8c27b 3384 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
7313baad 3385 {
f6ac5f3d 3386 int ret = t->fileio_unlink (inf, filename, target_errno);
7313baad 3387
f6ac5f3d
PA
3388 if (ret == -1 && *target_errno == FILEIO_ENOSYS)
3389 continue;
3390
3391 if (targetdebug)
3392 fprintf_unfiltered (gdb_stdlog,
3393 "target_fileio_unlink (%d,%s)"
3394 " = %d (%d)\n",
3395 inf == NULL ? 0 : inf->num, filename,
3396 ret, ret != -1 ? 0 : *target_errno);
3397 return ret;
7313baad
UW
3398 }
3399
3400 *target_errno = FILEIO_ENOSYS;
3401 return -1;
3402}
3403
12e2a5fd
GB
3404/* See target.h. */
3405
e0d3522b 3406gdb::optional<std::string>
07c138c8
GB
3407target_fileio_readlink (struct inferior *inf, const char *filename,
3408 int *target_errno)
b9e7b9c3 3409{
b6a8c27b 3410 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
b9e7b9c3 3411 {
f6ac5f3d
PA
3412 gdb::optional<std::string> ret
3413 = t->fileio_readlink (inf, filename, target_errno);
b9e7b9c3 3414
f6ac5f3d
PA
3415 if (!ret.has_value () && *target_errno == FILEIO_ENOSYS)
3416 continue;
3417
3418 if (targetdebug)
3419 fprintf_unfiltered (gdb_stdlog,
3420 "target_fileio_readlink (%d,%s)"
3421 " = %s (%d)\n",
3422 inf == NULL ? 0 : inf->num,
3423 filename, ret ? ret->c_str () : "(nil)",
3424 ret ? 0 : *target_errno);
3425 return ret;
b9e7b9c3
UW
3426 }
3427
3428 *target_errno = FILEIO_ENOSYS;
e0d3522b 3429 return {};
b9e7b9c3
UW
3430}
3431
770623f7
TT
3432/* Like scoped_fd, but specific to target fileio. */
3433
3434class scoped_target_fd
7313baad 3435{
770623f7
TT
3436public:
3437 explicit scoped_target_fd (int fd) noexcept
3438 : m_fd (fd)
3439 {
3440 }
7313baad 3441
770623f7
TT
3442 ~scoped_target_fd ()
3443 {
3444 if (m_fd >= 0)
3445 {
3446 int target_errno;
3447
3448 target_fileio_close (m_fd, &target_errno);
3449 }
3450 }
3451
3452 DISABLE_COPY_AND_ASSIGN (scoped_target_fd);
3453
3454 int get () const noexcept
3455 {
3456 return m_fd;
3457 }
3458
3459private:
3460 int m_fd;
3461};
7313baad 3462
07c138c8
GB
3463/* Read target file FILENAME, in the filesystem as seen by INF. If
3464 INF is NULL, use the filesystem seen by the debugger (GDB or, for
3465 remote targets, the remote stub). Store the result in *BUF_P and
3466 return the size of the transferred data. PADDING additional bytes
3467 are available in *BUF_P. This is a helper function for
3468 target_fileio_read_alloc; see the declaration of that function for
3469 more information. */
7313baad 3470
f7af1fcd
JK
3471static LONGEST
3472target_fileio_read_alloc_1 (struct inferior *inf, const char *filename,
3473 gdb_byte **buf_p, int padding)
3474{
db1ff28b
JK
3475 size_t buf_alloc, buf_pos;
3476 gdb_byte *buf;
3477 LONGEST n;
db1ff28b 3478 int target_errno;
f7af1fcd 3479
770623f7 3480 scoped_target_fd fd (target_fileio_open (inf, filename, FILEIO_O_RDONLY,
4111f652 3481 0700, false, &target_errno));
770623f7 3482 if (fd.get () == -1)
f7af1fcd
JK
3483 return -1;
3484
db1ff28b
JK
3485 /* Start by reading up to 4K at a time. The target will throttle
3486 this number down if necessary. */
3487 buf_alloc = 4096;
224c3ddb 3488 buf = (gdb_byte *) xmalloc (buf_alloc);
db1ff28b
JK
3489 buf_pos = 0;
3490 while (1)
3491 {
770623f7 3492 n = target_fileio_pread (fd.get (), &buf[buf_pos],
db1ff28b
JK
3493 buf_alloc - buf_pos - padding, buf_pos,
3494 &target_errno);
3495 if (n < 0)
3496 {
3497 /* An error occurred. */
db1ff28b
JK
3498 xfree (buf);
3499 return -1;
3500 }
3501 else if (n == 0)
3502 {
3503 /* Read all there was. */
db1ff28b
JK
3504 if (buf_pos == 0)
3505 xfree (buf);
3506 else
3507 *buf_p = buf;
3508 return buf_pos;
3509 }
3510
3511 buf_pos += n;
3512
3513 /* If the buffer is filling up, expand it. */
3514 if (buf_alloc < buf_pos * 2)
3515 {
3516 buf_alloc *= 2;
224c3ddb 3517 buf = (gdb_byte *) xrealloc (buf, buf_alloc);
db1ff28b
JK
3518 }
3519
3520 QUIT;
3521 }
f7af1fcd
JK
3522}
3523
12e2a5fd 3524/* See target.h. */
7313baad
UW
3525
3526LONGEST
07c138c8
GB
3527target_fileio_read_alloc (struct inferior *inf, const char *filename,
3528 gdb_byte **buf_p)
7313baad 3529{
07c138c8 3530 return target_fileio_read_alloc_1 (inf, filename, buf_p, 0);
7313baad
UW
3531}
3532
db1ff28b 3533/* See target.h. */
f7af1fcd 3534
87028b87 3535gdb::unique_xmalloc_ptr<char>
f7af1fcd
JK
3536target_fileio_read_stralloc (struct inferior *inf, const char *filename)
3537{
db1ff28b
JK
3538 gdb_byte *buffer;
3539 char *bufstr;
3540 LONGEST i, transferred;
3541
3542 transferred = target_fileio_read_alloc_1 (inf, filename, &buffer, 1);
3543 bufstr = (char *) buffer;
3544
3545 if (transferred < 0)
87028b87 3546 return gdb::unique_xmalloc_ptr<char> (nullptr);
db1ff28b
JK
3547
3548 if (transferred == 0)
b02f78f9 3549 return make_unique_xstrdup ("");
db1ff28b
JK
3550
3551 bufstr[transferred] = 0;
3552
3553 /* Check for embedded NUL bytes; but allow trailing NULs. */
3554 for (i = strlen (bufstr); i < transferred; i++)
3555 if (bufstr[i] != 0)
3556 {
3557 warning (_("target file %s "
3558 "contained unexpected null characters"),
3559 filename);
3560 break;
3561 }
3562
87028b87 3563 return gdb::unique_xmalloc_ptr<char> (bufstr);
f7af1fcd 3564}
7313baad 3565
db1ff28b 3566
e0d24f8d 3567static int
31568a15
TT
3568default_region_ok_for_hw_watchpoint (struct target_ops *self,
3569 CORE_ADDR addr, int len)
e0d24f8d 3570{
f5656ead 3571 return (len <= gdbarch_ptr_bit (target_gdbarch ()) / TARGET_CHAR_BIT);
ccaa32c7
GS
3572}
3573
5009afc5
AS
3574static int
3575default_watchpoint_addr_within_range (struct target_ops *target,
3576 CORE_ADDR addr,
3577 CORE_ADDR start, int length)
3578{
3579 return addr >= start && addr < start + length;
3580}
3581
8b06beed
TT
3582/* See target.h. */
3583
a1740ee1
PA
3584target_ops *
3585target_stack::find_beneath (const target_ops *t) const
8b06beed 3586{
a1740ee1 3587 /* Look for a non-empty slot at stratum levels beneath T's. */
66b4deae 3588 for (int stratum = t->stratum () - 1; stratum >= 0; --stratum)
a1740ee1
PA
3589 if (m_stack[stratum] != NULL)
3590 return m_stack[stratum];
8b06beed
TT
3591
3592 return NULL;
3593}
3594
a1740ee1
PA
3595/* See target.h. */
3596
3597struct target_ops *
3598find_target_at (enum strata stratum)
3599{
5b6d1e4f 3600 return current_inferior ()->target_at (stratum);
a1740ee1
PA
3601}
3602
c906108c 3603\f
0f48b757
PA
3604
3605/* See target.h */
3606
3607void
3608target_announce_detach (int from_tty)
3609{
3610 pid_t pid;
a121b7c1 3611 const char *exec_file;
0f48b757
PA
3612
3613 if (!from_tty)
3614 return;
3615
3616 exec_file = get_exec_file (0);
3617 if (exec_file == NULL)
3618 exec_file = "";
3619
e99b03dc 3620 pid = inferior_ptid.pid ();
0f48b757 3621 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
a068643d 3622 target_pid_to_str (ptid_t (pid)).c_str ());
0f48b757
PA
3623}
3624
c906108c
SS
3625/* The inferior process has died. Long live the inferior! */
3626
3627void
fba45db2 3628generic_mourn_inferior (void)
c906108c 3629{
00431a78 3630 inferior *inf = current_inferior ();
c906108c 3631
a0776b13 3632 switch_to_no_thread ();
7f9f62ba 3633
f59f708a
PA
3634 /* Mark breakpoints uninserted in case something tries to delete a
3635 breakpoint while we delete the inferior's threads (which would
3636 fail, since the inferior is long gone). */
3637 mark_breakpoints_out ();
3638
00431a78
PA
3639 if (inf->pid != 0)
3640 exit_inferior (inf);
7f9f62ba 3641
f59f708a
PA
3642 /* Note this wipes step-resume breakpoints, so needs to be done
3643 after exit_inferior, which ends up referencing the step-resume
3644 breakpoints through clear_thread_inferior_resources. */
c906108c 3645 breakpoint_init_inferior (inf_exited);
f59f708a 3646
c906108c
SS
3647 registers_changed ();
3648
c906108c
SS
3649 reopen_exec_file ();
3650 reinit_frame_cache ();
3651
9a4105ab
AC
3652 if (deprecated_detach_hook)
3653 deprecated_detach_hook ();
c906108c
SS
3654}
3655\f
fd0a2a6f
MK
3656/* Convert a normal process ID to a string. Returns the string in a
3657 static buffer. */
c906108c 3658
a068643d 3659std::string
39f77062 3660normal_pid_to_str (ptid_t ptid)
c906108c 3661{
a068643d 3662 return string_printf ("process %d", ptid.pid ());
c906108c
SS
3663}
3664
a068643d 3665static std::string
770234d3 3666default_pid_to_str (struct target_ops *ops, ptid_t ptid)
117de6a9
PA
3667{
3668 return normal_pid_to_str (ptid);
3669}
3670
9b4eba8e
HZ
3671/* Error-catcher for target_find_memory_regions. */
3672static int
2e73927c
TT
3673dummy_find_memory_regions (struct target_ops *self,
3674 find_memory_region_ftype ignore1, void *ignore2)
be4d1333 3675{
9b4eba8e 3676 error (_("Command not implemented for this target."));
be4d1333
MS
3677 return 0;
3678}
3679
9b4eba8e 3680/* Error-catcher for target_make_corefile_notes. */
24f5300a 3681static gdb::unique_xmalloc_ptr<char>
fc6691b2
TT
3682dummy_make_corefile_notes (struct target_ops *self,
3683 bfd *ignore1, int *ignore2)
be4d1333 3684{
9b4eba8e 3685 error (_("Command not implemented for this target."));
be4d1333
MS
3686 return NULL;
3687}
3688
f6ac5f3d
PA
3689#include "target-delegates.c"
3690
06b5b831
TT
3691/* The initial current target, so that there is always a semi-valid
3692 current target. */
3693
3694static dummy_target the_dummy_target;
c906108c 3695
5b6d1e4f
PA
3696/* See target.h. */
3697
3698target_ops *
3699get_dummy_target ()
3700{
3701 return &the_dummy_target;
3702}
3703
d9f719f1
PA
3704static const target_info dummy_target_info = {
3705 "None",
3706 N_("None"),
3707 ""
3708};
3709
66b4deae
PA
3710strata
3711dummy_target::stratum () const
f6ac5f3d 3712{
66b4deae 3713 return dummy_stratum;
f6ac5f3d
PA
3714}
3715
66b4deae
PA
3716strata
3717debug_target::stratum () const
f6ac5f3d 3718{
66b4deae 3719 return debug_stratum;
f6ac5f3d
PA
3720}
3721
d9f719f1
PA
3722const target_info &
3723dummy_target::info () const
f6ac5f3d 3724{
d9f719f1 3725 return dummy_target_info;
f6ac5f3d
PA
3726}
3727
d9f719f1
PA
3728const target_info &
3729debug_target::info () const
f6ac5f3d 3730{
b6a8c27b 3731 return beneath ()->info ();
f6ac5f3d
PA
3732}
3733
c906108c 3734\f
c906108c 3735
f1c07ab0 3736void
460014f5 3737target_close (struct target_ops *targ)
f1c07ab0 3738{
27f0a431
SM
3739 for (inferior *inf : all_inferiors ())
3740 gdb_assert (!inf->target_is_pushed (targ));
7fdc1521 3741
20db9c52
PA
3742 fileio_handles_invalidate_target (targ);
3743
f6ac5f3d 3744 targ->close ();
947b8855
PA
3745
3746 if (targetdebug)
460014f5 3747 fprintf_unfiltered (gdb_stdlog, "target_close ()\n");
f1c07ab0
AC
3748}
3749
28439f5e
PA
3750int
3751target_thread_alive (ptid_t ptid)
c906108c 3752{
328d42d8 3753 return current_inferior ()->top_target ()->thread_alive (ptid);
28439f5e
PA
3754}
3755
3756void
e8032dde 3757target_update_thread_list (void)
28439f5e 3758{
328d42d8 3759 current_inferior ()->top_target ()->update_thread_list ();
c906108c
SS
3760}
3761
d914c394
SS
3762void
3763target_stop (ptid_t ptid)
3764{
1192f124
SM
3765 process_stratum_target *proc_target = current_inferior ()->process_target ();
3766
3767 gdb_assert (!proc_target->commit_resumed_state);
3768
d914c394
SS
3769 if (!may_stop)
3770 {
3771 warning (_("May not interrupt or stop the target, ignoring attempt"));
3772 return;
3773 }
3774
328d42d8 3775 current_inferior ()->top_target ()->stop (ptid);
d914c394
SS
3776}
3777
bfedc46a 3778void
e671cd59 3779target_interrupt ()
bfedc46a
PA
3780{
3781 if (!may_stop)
3782 {
3783 warning (_("May not interrupt or stop the target, ignoring attempt"));
3784 return;
3785 }
3786
328d42d8 3787 current_inferior ()->top_target ()->interrupt ();
bfedc46a
PA
3788}
3789
abc56d60
PA
3790/* See target.h. */
3791
93692b58
PA
3792void
3793target_pass_ctrlc (void)
3794{
5b6d1e4f
PA
3795 /* Pass the Ctrl-C to the first target that has a thread
3796 running. */
3797 for (inferior *inf : all_inferiors ())
3798 {
3799 target_ops *proc_target = inf->process_target ();
3800 if (proc_target == NULL)
3801 continue;
3802
43667cc6 3803 for (thread_info *thr : inf->non_exited_threads ())
5b6d1e4f
PA
3804 {
3805 /* A thread can be THREAD_STOPPED and executing, while
3806 running an infcall. */
3807 if (thr->state == THREAD_RUNNING || thr->executing)
3808 {
3809 /* We can get here quite deep in target layers. Avoid
3810 switching thread context or anything that would
3811 communicate with the target (e.g., to fetch
3812 registers), or flushing e.g., the frame cache. We
3813 just switch inferior in order to be able to call
3814 through the target_stack. */
3815 scoped_restore_current_inferior restore_inferior;
3816 set_current_inferior (inf);
328d42d8 3817 current_inferior ()->top_target ()->pass_ctrlc ();
5b6d1e4f
PA
3818 return;
3819 }
3820 }
3821 }
93692b58
PA
3822}
3823
3824/* See target.h. */
3825
3826void
3827default_target_pass_ctrlc (struct target_ops *ops)
3828{
e671cd59 3829 target_interrupt ();
93692b58
PA
3830}
3831
f8c1d06b
GB
3832/* See target/target.h. */
3833
3834void
03f4463b 3835target_stop_and_wait (ptid_t ptid)
f8c1d06b
GB
3836{
3837 struct target_waitstatus status;
491144b5 3838 bool was_non_stop = non_stop;
f8c1d06b 3839
491144b5 3840 non_stop = true;
f8c1d06b
GB
3841 target_stop (ptid);
3842
3843 memset (&status, 0, sizeof (status));
3844 target_wait (ptid, &status, 0);
3845
3846 non_stop = was_non_stop;
3847}
3848
3849/* See target/target.h. */
3850
3851void
03f4463b 3852target_continue_no_signal (ptid_t ptid)
f8c1d06b
GB
3853{
3854 target_resume (ptid, 0, GDB_SIGNAL_0);
3855}
3856
049a8570
SDJ
3857/* See target/target.h. */
3858
3859void
3860target_continue (ptid_t ptid, enum gdb_signal signal)
3861{
3862 target_resume (ptid, 0, signal);
3863}
3864
fdbac7d8 3865/* Concatenate ELEM to LIST, a comma-separated list. */
09826ec5 3866
09ce46f2
SM
3867static void
3868str_comma_list_concat_elem (std::string *list, const char *elem)
09826ec5 3869{
09ce46f2
SM
3870 if (!list->empty ())
3871 list->append (", ");
3872
3873 list->append (elem);
09826ec5
PA
3874}
3875
3876/* Helper for target_options_to_string. If OPT is present in
3877 TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
09ce46f2 3878 OPT is removed from TARGET_OPTIONS. */
09826ec5 3879
09ce46f2 3880static void
b60cea74
TT
3881do_option (target_wait_flags *target_options, std::string *ret,
3882 target_wait_flag opt, const char *opt_str)
09826ec5
PA
3883{
3884 if ((*target_options & opt) != 0)
3885 {
09ce46f2 3886 str_comma_list_concat_elem (ret, opt_str);
09826ec5
PA
3887 *target_options &= ~opt;
3888 }
09826ec5
PA
3889}
3890
fdbac7d8
SM
3891/* See target.h. */
3892
09ce46f2 3893std::string
b60cea74 3894target_options_to_string (target_wait_flags target_options)
09826ec5 3895{
09ce46f2 3896 std::string ret;
09826ec5
PA
3897
3898#define DO_TARG_OPTION(OPT) \
09ce46f2 3899 do_option (&target_options, &ret, OPT, #OPT)
09826ec5
PA
3900
3901 DO_TARG_OPTION (TARGET_WNOHANG);
3902
3903 if (target_options != 0)
09ce46f2 3904 str_comma_list_concat_elem (&ret, "unknown???");
09826ec5 3905
09826ec5
PA
3906 return ret;
3907}
3908
28439f5e
PA
3909void
3910target_fetch_registers (struct regcache *regcache, int regno)
c906108c 3911{
328d42d8 3912 current_inferior ()->top_target ()->fetch_registers (regcache, regno);
ad5989bd 3913 if (targetdebug)
ef79d9a3 3914 regcache->debug_print_register ("target_fetch_registers", regno);
c906108c
SS
3915}
3916
28439f5e
PA
3917void
3918target_store_registers (struct regcache *regcache, int regno)
c906108c 3919{
d914c394
SS
3920 if (!may_write_registers)
3921 error (_("Writing to registers is not allowed (regno %d)"), regno);
3922
328d42d8 3923 current_inferior ()->top_target ()->store_registers (regcache, regno);
6b84065d 3924 if (targetdebug)
28439f5e 3925 {
ef79d9a3 3926 regcache->debug_print_register ("target_store_registers", regno);
28439f5e 3927 }
c906108c
SS
3928}
3929
dc146f7c
VP
3930int
3931target_core_of_thread (ptid_t ptid)
3932{
328d42d8 3933 return current_inferior ()->top_target ()->core_of_thread (ptid);
dc146f7c
VP
3934}
3935
936d2992
PA
3936int
3937simple_verify_memory (struct target_ops *ops,
3938 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
3939{
3940 LONGEST total_xfered = 0;
3941
3942 while (total_xfered < size)
3943 {
3944 ULONGEST xfered_len;
3945 enum target_xfer_status status;
3946 gdb_byte buf[1024];
768adc05 3947 ULONGEST howmuch = std::min<ULONGEST> (sizeof (buf), size - total_xfered);
936d2992
PA
3948
3949 status = target_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
3950 buf, NULL, lma + total_xfered, howmuch,
3951 &xfered_len);
3952 if (status == TARGET_XFER_OK
3953 && memcmp (data + total_xfered, buf, xfered_len) == 0)
3954 {
3955 total_xfered += xfered_len;
3956 QUIT;
3957 }
3958 else
3959 return 0;
3960 }
3961 return 1;
3962}
3963
3964/* Default implementation of memory verification. */
3965
3966static int
3967default_verify_memory (struct target_ops *self,
3968 const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3969{
3970 /* Start over from the top of the target stack. */
328d42d8 3971 return simple_verify_memory (current_inferior ()->top_target (),
936d2992
PA
3972 data, memaddr, size);
3973}
3974
4a5e7a5b
PA
3975int
3976target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3977{
328d42d8
SM
3978 target_ops *target = current_inferior ()->top_target ();
3979
3980 return target->verify_memory (data, memaddr, size);
4a5e7a5b
PA
3981}
3982
9c06b0b4
TJB
3983/* The documentation for this function is in its prototype declaration in
3984 target.h. */
3985
3986int
f4b0a671
SM
3987target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask,
3988 enum target_hw_bp_type rw)
9c06b0b4 3989{
328d42d8
SM
3990 target_ops *target = current_inferior ()->top_target ();
3991
3992 return target->insert_mask_watchpoint (addr, mask, rw);
9c06b0b4
TJB
3993}
3994
3995/* The documentation for this function is in its prototype declaration in
3996 target.h. */
3997
3998int
f4b0a671
SM
3999target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask,
4000 enum target_hw_bp_type rw)
9c06b0b4 4001{
328d42d8
SM
4002 target_ops *target = current_inferior ()->top_target ();
4003
4004 return target->remove_mask_watchpoint (addr, mask, rw);
9c06b0b4
TJB
4005}
4006
4007/* The documentation for this function is in its prototype declaration
4008 in target.h. */
4009
4010int
4011target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
4012{
328d42d8
SM
4013 target_ops *target = current_inferior ()->top_target ();
4014
4015 return target->masked_watch_num_registers (addr, mask);
9c06b0b4
TJB
4016}
4017
f1310107
TJB
4018/* The documentation for this function is in its prototype declaration
4019 in target.h. */
4020
4021int
4022target_ranged_break_num_registers (void)
4023{
328d42d8 4024 return current_inferior ()->top_target ()->ranged_break_num_registers ();
f1310107
TJB
4025}
4026
02d27625
MM
4027/* See target.h. */
4028
02d27625 4029struct btrace_target_info *
f4abbc16 4030target_enable_btrace (ptid_t ptid, const struct btrace_config *conf)
02d27625 4031{
328d42d8 4032 return current_inferior ()->top_target ()->enable_btrace (ptid, conf);
02d27625
MM
4033}
4034
4035/* See target.h. */
4036
4037void
4038target_disable_btrace (struct btrace_target_info *btinfo)
4039{
328d42d8 4040 current_inferior ()->top_target ()->disable_btrace (btinfo);
02d27625
MM
4041}
4042
4043/* See target.h. */
4044
4045void
4046target_teardown_btrace (struct btrace_target_info *btinfo)
4047{
328d42d8 4048 current_inferior ()->top_target ()->teardown_btrace (btinfo);
02d27625
MM
4049}
4050
4051/* See target.h. */
4052
969c39fb 4053enum btrace_error
734b0e4b 4054target_read_btrace (struct btrace_data *btrace,
969c39fb 4055 struct btrace_target_info *btinfo,
02d27625
MM
4056 enum btrace_read_type type)
4057{
328d42d8
SM
4058 target_ops *target = current_inferior ()->top_target ();
4059
4060 return target->read_btrace (btrace, btinfo, type);
02d27625
MM
4061}
4062
d02ed0bb
MM
4063/* See target.h. */
4064
f4abbc16
MM
4065const struct btrace_config *
4066target_btrace_conf (const struct btrace_target_info *btinfo)
4067{
328d42d8 4068 return current_inferior ()->top_target ()->btrace_conf (btinfo);
f4abbc16
MM
4069}
4070
4071/* See target.h. */
4072
7c1687a9
MM
4073void
4074target_stop_recording (void)
4075{
328d42d8 4076 current_inferior ()->top_target ()->stop_recording ();
7c1687a9
MM
4077}
4078
4079/* See target.h. */
4080
d02ed0bb 4081void
85e1311a 4082target_save_record (const char *filename)
d02ed0bb 4083{
328d42d8 4084 current_inferior ()->top_target ()->save_record (filename);
d02ed0bb
MM
4085}
4086
4087/* See target.h. */
4088
4089int
f6ac5f3d 4090target_supports_delete_record ()
d02ed0bb 4091{
328d42d8 4092 return current_inferior ()->top_target ()->supports_delete_record ();
d02ed0bb
MM
4093}
4094
4095/* See target.h. */
4096
4097void
4098target_delete_record (void)
4099{
328d42d8 4100 current_inferior ()->top_target ()->delete_record ();
d02ed0bb
MM
4101}
4102
4103/* See target.h. */
4104
b158a20f
TW
4105enum record_method
4106target_record_method (ptid_t ptid)
4107{
328d42d8 4108 return current_inferior ()->top_target ()->record_method (ptid);
b158a20f
TW
4109}
4110
4111/* See target.h. */
4112
d02ed0bb 4113int
a52eab48 4114target_record_is_replaying (ptid_t ptid)
d02ed0bb 4115{
328d42d8 4116 return current_inferior ()->top_target ()->record_is_replaying (ptid);
d02ed0bb
MM
4117}
4118
4119/* See target.h. */
4120
7ff27e9b
MM
4121int
4122target_record_will_replay (ptid_t ptid, int dir)
4123{
328d42d8 4124 return current_inferior ()->top_target ()->record_will_replay (ptid, dir);
7ff27e9b
MM
4125}
4126
4127/* See target.h. */
4128
797094dd
MM
4129void
4130target_record_stop_replaying (void)
4131{
328d42d8 4132 current_inferior ()->top_target ()->record_stop_replaying ();
797094dd
MM
4133}
4134
4135/* See target.h. */
4136
d02ed0bb
MM
4137void
4138target_goto_record_begin (void)
4139{
328d42d8 4140 current_inferior ()->top_target ()->goto_record_begin ();
d02ed0bb
MM
4141}
4142
4143/* See target.h. */
4144
4145void
4146target_goto_record_end (void)
4147{
328d42d8 4148 current_inferior ()->top_target ()->goto_record_end ();
d02ed0bb
MM
4149}
4150
4151/* See target.h. */
4152
4153void
4154target_goto_record (ULONGEST insn)
4155{
328d42d8 4156 current_inferior ()->top_target ()->goto_record (insn);
d02ed0bb
MM
4157}
4158
67c86d06
MM
4159/* See target.h. */
4160
4161void
9a24775b 4162target_insn_history (int size, gdb_disassembly_flags flags)
67c86d06 4163{
328d42d8 4164 current_inferior ()->top_target ()->insn_history (size, flags);
67c86d06
MM
4165}
4166
4167/* See target.h. */
4168
4169void
9a24775b
PA
4170target_insn_history_from (ULONGEST from, int size,
4171 gdb_disassembly_flags flags)
67c86d06 4172{
328d42d8 4173 current_inferior ()->top_target ()->insn_history_from (from, size, flags);
67c86d06
MM
4174}
4175
4176/* See target.h. */
4177
4178void
9a24775b
PA
4179target_insn_history_range (ULONGEST begin, ULONGEST end,
4180 gdb_disassembly_flags flags)
67c86d06 4181{
328d42d8 4182 current_inferior ()->top_target ()->insn_history_range (begin, end, flags);
67c86d06
MM
4183}
4184
15984c13
MM
4185/* See target.h. */
4186
4187void
0cb7c7b0 4188target_call_history (int size, record_print_flags flags)
15984c13 4189{
328d42d8 4190 current_inferior ()->top_target ()->call_history (size, flags);
15984c13
MM
4191}
4192
4193/* See target.h. */
4194
4195void
0cb7c7b0 4196target_call_history_from (ULONGEST begin, int size, record_print_flags flags)
15984c13 4197{
328d42d8 4198 current_inferior ()->top_target ()->call_history_from (begin, size, flags);
15984c13
MM
4199}
4200
4201/* See target.h. */
4202
4203void
0cb7c7b0 4204target_call_history_range (ULONGEST begin, ULONGEST end, record_print_flags flags)
15984c13 4205{
328d42d8 4206 current_inferior ()->top_target ()->call_history_range (begin, end, flags);
15984c13
MM
4207}
4208
ea001bdc
MM
4209/* See target.h. */
4210
4211const struct frame_unwind *
4212target_get_unwinder (void)
4213{
328d42d8 4214 return current_inferior ()->top_target ()->get_unwinder ();
ea001bdc
MM
4215}
4216
4217/* See target.h. */
4218
4219const struct frame_unwind *
4220target_get_tailcall_unwinder (void)
4221{
328d42d8 4222 return current_inferior ()->top_target ()->get_tailcall_unwinder ();
ea001bdc
MM
4223}
4224
5fff78c4
MM
4225/* See target.h. */
4226
4227void
4228target_prepare_to_generate_core (void)
4229{
328d42d8 4230 current_inferior ()->top_target ()->prepare_to_generate_core ();
5fff78c4
MM
4231}
4232
4233/* See target.h. */
4234
4235void
4236target_done_generating_core (void)
4237{
328d42d8 4238 current_inferior ()->top_target ()->done_generating_core ();
5fff78c4
MM
4239}
4240
c906108c 4241\f
c5aa993b
JM
4242
4243static char targ_desc[] =
3e43a32a
MS
4244"Names of targets and files being debugged.\nShows the entire \
4245stack of targets currently in use (including the exec-file,\n\
c906108c
SS
4246core-file, and process, if any), as well as the symbol file name.";
4247
a53f3625 4248static void
a30bf1f1
TT
4249default_rcmd (struct target_ops *self, const char *command,
4250 struct ui_file *output)
a53f3625
TT
4251{
4252 error (_("\"monitor\" command not supported by this target."));
4253}
4254
96baa820 4255static void
0b39b52e 4256do_monitor_command (const char *cmd, int from_tty)
96baa820 4257{
96baa820
JM
4258 target_rcmd (cmd, gdb_stdtarg);
4259}
4260
78cbbba8
LM
4261/* Erases all the memory regions marked as flash. CMD and FROM_TTY are
4262 ignored. */
4263
4264void
0b39b52e 4265flash_erase_command (const char *cmd, int from_tty)
78cbbba8
LM
4266{
4267 /* Used to communicate termination of flash operations to the target. */
4268 bool found_flash_region = false;
78cbbba8
LM
4269 struct gdbarch *gdbarch = target_gdbarch ();
4270
a664f67e 4271 std::vector<mem_region> mem_regions = target_memory_map ();
78cbbba8
LM
4272
4273 /* Iterate over all memory regions. */
a664f67e 4274 for (const mem_region &m : mem_regions)
78cbbba8 4275 {
78cbbba8 4276 /* Is this a flash memory region? */
a664f67e 4277 if (m.attrib.mode == MEM_FLASH)
dda83cd7
SM
4278 {
4279 found_flash_region = true;
4280 target_flash_erase (m.lo, m.hi - m.lo);
78cbbba8 4281
76f9c9cf 4282 ui_out_emit_tuple tuple_emitter (current_uiout, "erased-regions");
78cbbba8 4283
dda83cd7
SM
4284 current_uiout->message (_("Erasing flash memory region at address "));
4285 current_uiout->field_core_addr ("address", gdbarch, m.lo);
4286 current_uiout->message (", size = ");
4287 current_uiout->field_string ("size", hex_string (m.hi - m.lo));
4288 current_uiout->message ("\n");
4289 }
78cbbba8
LM
4290 }
4291
4292 /* Did we do any flash operations? If so, we need to finalize them. */
4293 if (found_flash_region)
4294 target_flash_done ();
4295 else
4296 current_uiout->message (_("No flash memory regions found.\n"));
4297}
4298
87680a14
JB
4299/* Print the name of each layers of our target stack. */
4300
4301static void
d3cb6b99 4302maintenance_print_target_stack (const char *cmd, int from_tty)
87680a14 4303{
87680a14
JB
4304 printf_filtered (_("The current target stack is:\n"));
4305
328d42d8
SM
4306 for (target_ops *t = current_inferior ()->top_target ();
4307 t != NULL;
4308 t = t->beneath ())
87680a14 4309 {
66b4deae 4310 if (t->stratum () == debug_stratum)
f6ac5f3d
PA
4311 continue;
4312 printf_filtered (" - %s (%s)\n", t->shortname (), t->longname ());
87680a14
JB
4313 }
4314}
4315
372316f1
PA
4316/* See target.h. */
4317
4318void
4319target_async (int enable)
4320{
4321 infrun_async (enable);
328d42d8 4322 current_inferior ()->top_target ()->async (enable);
372316f1
PA
4323}
4324
65706a29
PA
4325/* See target.h. */
4326
4327void
4328target_thread_events (int enable)
4329{
328d42d8 4330 current_inferior ()->top_target ()->thread_events (enable);
65706a29
PA
4331}
4332
329ea579
PA
4333/* Controls if targets can report that they can/are async. This is
4334 just for maintainers to use when debugging gdb. */
491144b5 4335bool target_async_permitted = true;
c6ebd6cf
VP
4336
4337/* The set command writes to this variable. If the inferior is
b5419e49 4338 executing, target_async_permitted is *not* updated. */
491144b5 4339static bool target_async_permitted_1 = true;
c6ebd6cf
VP
4340
4341static void
eb4c3f4a 4342maint_set_target_async_command (const char *args, int from_tty,
329ea579 4343 struct cmd_list_element *c)
c6ebd6cf 4344{
c35b1492 4345 if (have_live_inferiors ())
c6ebd6cf
VP
4346 {
4347 target_async_permitted_1 = target_async_permitted;
4348 error (_("Cannot change this setting while the inferior is running."));
4349 }
4350
4351 target_async_permitted = target_async_permitted_1;
4352}
4353
4354static void
329ea579
PA
4355maint_show_target_async_command (struct ui_file *file, int from_tty,
4356 struct cmd_list_element *c,
4357 const char *value)
c6ebd6cf 4358{
3e43a32a
MS
4359 fprintf_filtered (file,
4360 _("Controlling the inferior in "
4361 "asynchronous mode is %s.\n"), value);
c6ebd6cf
VP
4362}
4363
fbea99ea
PA
4364/* Return true if the target operates in non-stop mode even with "set
4365 non-stop off". */
4366
4367static int
4368target_always_non_stop_p (void)
4369{
328d42d8 4370 return current_inferior ()->top_target ()->always_non_stop_p ();
fbea99ea
PA
4371}
4372
4373/* See target.h. */
4374
6ff267e1
SM
4375bool
4376target_is_non_stop_p ()
fbea99ea 4377{
e5b9b39f
PA
4378 return ((non_stop
4379 || target_non_stop_enabled == AUTO_BOOLEAN_TRUE
4380 || (target_non_stop_enabled == AUTO_BOOLEAN_AUTO
4381 && target_always_non_stop_p ()))
4382 && target_can_async_p ());
fbea99ea
PA
4383}
4384
a0714d30
TBA
4385/* See target.h. */
4386
4387bool
4388exists_non_stop_target ()
4389{
4390 if (target_is_non_stop_p ())
4391 return true;
4392
4393 scoped_restore_current_thread restore_thread;
4394
4395 for (inferior *inf : all_inferiors ())
4396 {
4397 switch_to_inferior_no_thread (inf);
4398 if (target_is_non_stop_p ())
4399 return true;
4400 }
4401
4402 return false;
4403}
4404
fbea99ea
PA
4405/* Controls if targets can report that they always run in non-stop
4406 mode. This is just for maintainers to use when debugging gdb. */
4407enum auto_boolean target_non_stop_enabled = AUTO_BOOLEAN_AUTO;
4408
4409/* The set command writes to this variable. If the inferior is
4410 executing, target_non_stop_enabled is *not* updated. */
4411static enum auto_boolean target_non_stop_enabled_1 = AUTO_BOOLEAN_AUTO;
4412
4413/* Implementation of "maint set target-non-stop". */
4414
4415static void
eb4c3f4a 4416maint_set_target_non_stop_command (const char *args, int from_tty,
fbea99ea
PA
4417 struct cmd_list_element *c)
4418{
4419 if (have_live_inferiors ())
4420 {
4421 target_non_stop_enabled_1 = target_non_stop_enabled;
4422 error (_("Cannot change this setting while the inferior is running."));
4423 }
4424
4425 target_non_stop_enabled = target_non_stop_enabled_1;
4426}
4427
4428/* Implementation of "maint show target-non-stop". */
4429
4430static void
4431maint_show_target_non_stop_command (struct ui_file *file, int from_tty,
4432 struct cmd_list_element *c,
4433 const char *value)
4434{
4435 if (target_non_stop_enabled == AUTO_BOOLEAN_AUTO)
4436 fprintf_filtered (file,
4437 _("Whether the target is always in non-stop mode "
4438 "is %s (currently %s).\n"), value,
4439 target_always_non_stop_p () ? "on" : "off");
4440 else
4441 fprintf_filtered (file,
4442 _("Whether the target is always in non-stop mode "
4443 "is %s.\n"), value);
4444}
4445
d914c394
SS
4446/* Temporary copies of permission settings. */
4447
491144b5
CB
4448static bool may_write_registers_1 = true;
4449static bool may_write_memory_1 = true;
4450static bool may_insert_breakpoints_1 = true;
4451static bool may_insert_tracepoints_1 = true;
4452static bool may_insert_fast_tracepoints_1 = true;
4453static bool may_stop_1 = true;
d914c394
SS
4454
4455/* Make the user-set values match the real values again. */
4456
4457void
4458update_target_permissions (void)
4459{
4460 may_write_registers_1 = may_write_registers;
4461 may_write_memory_1 = may_write_memory;
4462 may_insert_breakpoints_1 = may_insert_breakpoints;
4463 may_insert_tracepoints_1 = may_insert_tracepoints;
4464 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
4465 may_stop_1 = may_stop;
4466}
4467
4468/* The one function handles (most of) the permission flags in the same
4469 way. */
4470
4471static void
eb4c3f4a 4472set_target_permissions (const char *args, int from_tty,
d914c394
SS
4473 struct cmd_list_element *c)
4474{
55f6301a 4475 if (target_has_execution ())
d914c394
SS
4476 {
4477 update_target_permissions ();
4478 error (_("Cannot change this setting while the inferior is running."));
4479 }
4480
4481 /* Make the real values match the user-changed values. */
4482 may_write_registers = may_write_registers_1;
4483 may_insert_breakpoints = may_insert_breakpoints_1;
4484 may_insert_tracepoints = may_insert_tracepoints_1;
4485 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
4486 may_stop = may_stop_1;
4487 update_observer_mode ();
4488}
4489
4490/* Set memory write permission independently of observer mode. */
4491
4492static void
eb4c3f4a 4493set_write_memory_permission (const char *args, int from_tty,
d914c394
SS
4494 struct cmd_list_element *c)
4495{
4496 /* Make the real values match the user-changed values. */
4497 may_write_memory = may_write_memory_1;
4498 update_observer_mode ();
4499}
4500
6c265988
SM
4501void _initialize_target ();
4502
c906108c 4503void
5b6d1e4f 4504_initialize_target ()
c906108c 4505{
f6ac5f3d 4506 the_debug_target = new debug_target ();
c906108c 4507
11db9430
SM
4508 add_info ("target", info_target_command, targ_desc);
4509 add_info ("files", info_target_command, targ_desc);
c906108c 4510
ccce17b0 4511 add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
85c07804
AC
4512Set target debugging."), _("\
4513Show target debugging."), _("\
333dabeb 4514When non-zero, target debugging is enabled. Higher numbers are more\n\
3cecbbbe
TT
4515verbose."),
4516 set_targetdebug,
ccce17b0
YQ
4517 show_targetdebug,
4518 &setdebuglist, &showdebuglist);
3a11626d 4519
2bc416ba 4520 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
7915a72c
AC
4521 &trust_readonly, _("\
4522Set mode for reading from readonly sections."), _("\
4523Show mode for reading from readonly sections."), _("\
3a11626d
MS
4524When this mode is on, memory reads from readonly sections (such as .text)\n\
4525will be read from the object file instead of from the target. This will\n\
7915a72c 4526result in significant performance improvement for remote targets."),
2c5b56ce 4527 NULL,
920d2a44 4528 show_trust_readonly,
e707bbc2 4529 &setlist, &showlist);
96baa820
JM
4530
4531 add_com ("monitor", class_obscure, do_monitor_command,
1bedd215 4532 _("Send a command to the remote monitor (remote targets only)."));
96baa820 4533
87680a14 4534 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
dda83cd7
SM
4535 _("Print the name of each layer of the internal target stack."),
4536 &maintenanceprintlist);
87680a14 4537
c6ebd6cf
VP
4538 add_setshow_boolean_cmd ("target-async", no_class,
4539 &target_async_permitted_1, _("\
4540Set whether gdb controls the inferior in asynchronous mode."), _("\
4541Show whether gdb controls the inferior in asynchronous mode."), _("\
4542Tells gdb whether to control the inferior in asynchronous mode."),
329ea579
PA
4543 maint_set_target_async_command,
4544 maint_show_target_async_command,
4545 &maintenance_set_cmdlist,
4546 &maintenance_show_cmdlist);
c6ebd6cf 4547
fbea99ea
PA
4548 add_setshow_auto_boolean_cmd ("target-non-stop", no_class,
4549 &target_non_stop_enabled_1, _("\
4550Set whether gdb always controls the inferior in non-stop mode."), _("\
4551Show whether gdb always controls the inferior in non-stop mode."), _("\
4552Tells gdb whether to control the inferior in non-stop mode."),
4553 maint_set_target_non_stop_command,
4554 maint_show_target_non_stop_command,
4555 &maintenance_set_cmdlist,
4556 &maintenance_show_cmdlist);
4557
d914c394
SS
4558 add_setshow_boolean_cmd ("may-write-registers", class_support,
4559 &may_write_registers_1, _("\
4560Set permission to write into registers."), _("\
4561Show permission to write into registers."), _("\
4562When this permission is on, GDB may write into the target's registers.\n\
4563Otherwise, any sort of write attempt will result in an error."),
4564 set_target_permissions, NULL,
4565 &setlist, &showlist);
4566
4567 add_setshow_boolean_cmd ("may-write-memory", class_support,
4568 &may_write_memory_1, _("\
4569Set permission to write into target memory."), _("\
4570Show permission to write into target memory."), _("\
4571When this permission is on, GDB may write into the target's memory.\n\
4572Otherwise, any sort of write attempt will result in an error."),
4573 set_write_memory_permission, NULL,
4574 &setlist, &showlist);
4575
4576 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
4577 &may_insert_breakpoints_1, _("\
4578Set permission to insert breakpoints in the target."), _("\
4579Show permission to insert breakpoints in the target."), _("\
4580When this permission is on, GDB may insert breakpoints in the program.\n\
4581Otherwise, any sort of insertion attempt will result in an error."),
4582 set_target_permissions, NULL,
4583 &setlist, &showlist);
4584
4585 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
4586 &may_insert_tracepoints_1, _("\
4587Set permission to insert tracepoints in the target."), _("\
4588Show permission to insert tracepoints in the target."), _("\
4589When this permission is on, GDB may insert tracepoints in the program.\n\
4590Otherwise, any sort of insertion attempt will result in an error."),
4591 set_target_permissions, NULL,
4592 &setlist, &showlist);
4593
4594 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
4595 &may_insert_fast_tracepoints_1, _("\
4596Set permission to insert fast tracepoints in the target."), _("\
4597Show permission to insert fast tracepoints in the target."), _("\
4598When this permission is on, GDB may insert fast tracepoints.\n\
4599Otherwise, any sort of insertion attempt will result in an error."),
4600 set_target_permissions, NULL,
4601 &setlist, &showlist);
4602
4603 add_setshow_boolean_cmd ("may-interrupt", class_support,
4604 &may_stop_1, _("\
4605Set permission to interrupt or signal the target."), _("\
4606Show permission to interrupt or signal the target."), _("\
4607When this permission is on, GDB may interrupt/stop the target's execution.\n\
4608Otherwise, any attempt to interrupt or stop will be ignored."),
4609 set_target_permissions, NULL,
4610 &setlist, &showlist);
6a3cb8e8 4611
78cbbba8 4612 add_com ("flash-erase", no_class, flash_erase_command,
dda83cd7 4613 _("Erase all flash memory regions."));
78cbbba8 4614
6a3cb8e8
PA
4615 add_setshow_boolean_cmd ("auto-connect-native-target", class_support,
4616 &auto_connect_native_target, _("\
4617Set whether GDB may automatically connect to the native target."), _("\
4618Show whether GDB may automatically connect to the native target."), _("\
4619When on, and GDB is not connected to a target yet, GDB\n\
4620attempts \"run\" and other commands with the native target."),
4621 NULL, show_auto_connect_native_target,
4622 &setlist, &showlist);
c906108c 4623}
This page took 2.821954 seconds and 4 git commands to generate.