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