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