gdb: add target_ops::supports_displaced_step
[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
4111f652 2778/* See target.h. */
12e2a5fd 2779
4111f652
PA
2780int
2781target_fileio_open (struct inferior *inf, const char *filename,
2782 int flags, int mode, bool warn_if_slow, int *target_errno)
7313baad 2783{
b6a8c27b 2784 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
7313baad 2785 {
f6ac5f3d
PA
2786 int fd = t->fileio_open (inf, filename, flags, mode,
2787 warn_if_slow, target_errno);
7313baad 2788
f6ac5f3d
PA
2789 if (fd == -1 && *target_errno == FILEIO_ENOSYS)
2790 continue;
1c4b552b 2791
f6ac5f3d
PA
2792 if (fd < 0)
2793 fd = -1;
2794 else
2795 fd = acquire_fileio_fd (t, fd);
2796
2797 if (targetdebug)
2798 fprintf_unfiltered (gdb_stdlog,
4313b8c0 2799 "target_fileio_open (%d,%s,0x%x,0%o,%d)"
07c138c8
GB
2800 " = %d (%d)\n",
2801 inf == NULL ? 0 : inf->num,
7313baad 2802 filename, flags, mode,
4313b8c0
GB
2803 warn_if_slow, fd,
2804 fd != -1 ? 0 : *target_errno);
f6ac5f3d 2805 return fd;
7313baad
UW
2806 }
2807
2808 *target_errno = FILEIO_ENOSYS;
2809 return -1;
2810}
2811
12e2a5fd
GB
2812/* See target.h. */
2813
7313baad
UW
2814int
2815target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
2816 ULONGEST offset, int *target_errno)
2817{
1c4b552b
GB
2818 fileio_fh_t *fh = fileio_fd_to_fh (fd);
2819 int ret = -1;
7313baad 2820
5ff79300 2821 if (fh->is_closed ())
1c4b552b 2822 *target_errno = EBADF;
20db9c52
PA
2823 else if (fh->target == NULL)
2824 *target_errno = EIO;
1c4b552b 2825 else
f6ac5f3d
PA
2826 ret = fh->target->fileio_pwrite (fh->target_fd, write_buf,
2827 len, offset, target_errno);
7313baad 2828
1c4b552b
GB
2829 if (targetdebug)
2830 fprintf_unfiltered (gdb_stdlog,
2831 "target_fileio_pwrite (%d,...,%d,%s) "
2832 "= %d (%d)\n",
2833 fd, len, pulongest (offset),
2834 ret, ret != -1 ? 0 : *target_errno);
2835 return ret;
7313baad
UW
2836}
2837
12e2a5fd
GB
2838/* See target.h. */
2839
7313baad
UW
2840int
2841target_fileio_pread (int fd, gdb_byte *read_buf, int len,
2842 ULONGEST offset, int *target_errno)
2843{
1c4b552b
GB
2844 fileio_fh_t *fh = fileio_fd_to_fh (fd);
2845 int ret = -1;
7313baad 2846
5ff79300 2847 if (fh->is_closed ())
1c4b552b 2848 *target_errno = EBADF;
20db9c52
PA
2849 else if (fh->target == NULL)
2850 *target_errno = EIO;
1c4b552b 2851 else
f6ac5f3d
PA
2852 ret = fh->target->fileio_pread (fh->target_fd, read_buf,
2853 len, offset, target_errno);
7313baad 2854
1c4b552b
GB
2855 if (targetdebug)
2856 fprintf_unfiltered (gdb_stdlog,
2857 "target_fileio_pread (%d,...,%d,%s) "
2858 "= %d (%d)\n",
2859 fd, len, pulongest (offset),
2860 ret, ret != -1 ? 0 : *target_errno);
9b15c1f0
GB
2861 return ret;
2862}
2863
2864/* See target.h. */
12e2a5fd 2865
9b15c1f0
GB
2866int
2867target_fileio_fstat (int fd, struct stat *sb, int *target_errno)
2868{
2869 fileio_fh_t *fh = fileio_fd_to_fh (fd);
2870 int ret = -1;
2871
5ff79300 2872 if (fh->is_closed ())
9b15c1f0 2873 *target_errno = EBADF;
20db9c52
PA
2874 else if (fh->target == NULL)
2875 *target_errno = EIO;
9b15c1f0 2876 else
f6ac5f3d 2877 ret = fh->target->fileio_fstat (fh->target_fd, sb, target_errno);
9b15c1f0
GB
2878
2879 if (targetdebug)
2880 fprintf_unfiltered (gdb_stdlog,
2881 "target_fileio_fstat (%d) = %d (%d)\n",
2882 fd, ret, ret != -1 ? 0 : *target_errno);
1c4b552b 2883 return ret;
7313baad
UW
2884}
2885
12e2a5fd
GB
2886/* See target.h. */
2887
7313baad
UW
2888int
2889target_fileio_close (int fd, int *target_errno)
2890{
1c4b552b
GB
2891 fileio_fh_t *fh = fileio_fd_to_fh (fd);
2892 int ret = -1;
7313baad 2893
5ff79300 2894 if (fh->is_closed ())
1c4b552b
GB
2895 *target_errno = EBADF;
2896 else
7313baad 2897 {
20db9c52 2898 if (fh->target != NULL)
f6ac5f3d
PA
2899 ret = fh->target->fileio_close (fh->target_fd,
2900 target_errno);
20db9c52
PA
2901 else
2902 ret = 0;
1c4b552b 2903 release_fileio_fd (fd, fh);
7313baad
UW
2904 }
2905
1c4b552b
GB
2906 if (targetdebug)
2907 fprintf_unfiltered (gdb_stdlog,
2908 "target_fileio_close (%d) = %d (%d)\n",
2909 fd, ret, ret != -1 ? 0 : *target_errno);
2910 return ret;
7313baad
UW
2911}
2912
12e2a5fd
GB
2913/* See target.h. */
2914
7313baad 2915int
07c138c8
GB
2916target_fileio_unlink (struct inferior *inf, const char *filename,
2917 int *target_errno)
7313baad 2918{
b6a8c27b 2919 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
7313baad 2920 {
f6ac5f3d 2921 int ret = t->fileio_unlink (inf, filename, target_errno);
7313baad 2922
f6ac5f3d
PA
2923 if (ret == -1 && *target_errno == FILEIO_ENOSYS)
2924 continue;
2925
2926 if (targetdebug)
2927 fprintf_unfiltered (gdb_stdlog,
2928 "target_fileio_unlink (%d,%s)"
2929 " = %d (%d)\n",
2930 inf == NULL ? 0 : inf->num, filename,
2931 ret, ret != -1 ? 0 : *target_errno);
2932 return ret;
7313baad
UW
2933 }
2934
2935 *target_errno = FILEIO_ENOSYS;
2936 return -1;
2937}
2938
12e2a5fd
GB
2939/* See target.h. */
2940
e0d3522b 2941gdb::optional<std::string>
07c138c8
GB
2942target_fileio_readlink (struct inferior *inf, const char *filename,
2943 int *target_errno)
b9e7b9c3 2944{
b6a8c27b 2945 for (target_ops *t = default_fileio_target (); t != NULL; t = t->beneath ())
b9e7b9c3 2946 {
f6ac5f3d
PA
2947 gdb::optional<std::string> ret
2948 = t->fileio_readlink (inf, filename, target_errno);
b9e7b9c3 2949
f6ac5f3d
PA
2950 if (!ret.has_value () && *target_errno == FILEIO_ENOSYS)
2951 continue;
2952
2953 if (targetdebug)
2954 fprintf_unfiltered (gdb_stdlog,
2955 "target_fileio_readlink (%d,%s)"
2956 " = %s (%d)\n",
2957 inf == NULL ? 0 : inf->num,
2958 filename, ret ? ret->c_str () : "(nil)",
2959 ret ? 0 : *target_errno);
2960 return ret;
b9e7b9c3
UW
2961 }
2962
2963 *target_errno = FILEIO_ENOSYS;
e0d3522b 2964 return {};
b9e7b9c3
UW
2965}
2966
770623f7
TT
2967/* Like scoped_fd, but specific to target fileio. */
2968
2969class scoped_target_fd
7313baad 2970{
770623f7
TT
2971public:
2972 explicit scoped_target_fd (int fd) noexcept
2973 : m_fd (fd)
2974 {
2975 }
7313baad 2976
770623f7
TT
2977 ~scoped_target_fd ()
2978 {
2979 if (m_fd >= 0)
2980 {
2981 int target_errno;
2982
2983 target_fileio_close (m_fd, &target_errno);
2984 }
2985 }
2986
2987 DISABLE_COPY_AND_ASSIGN (scoped_target_fd);
2988
2989 int get () const noexcept
2990 {
2991 return m_fd;
2992 }
2993
2994private:
2995 int m_fd;
2996};
7313baad 2997
07c138c8
GB
2998/* Read target file FILENAME, in the filesystem as seen by INF. If
2999 INF is NULL, use the filesystem seen by the debugger (GDB or, for
3000 remote targets, the remote stub). Store the result in *BUF_P and
3001 return the size of the transferred data. PADDING additional bytes
3002 are available in *BUF_P. This is a helper function for
3003 target_fileio_read_alloc; see the declaration of that function for
3004 more information. */
7313baad 3005
f7af1fcd
JK
3006static LONGEST
3007target_fileio_read_alloc_1 (struct inferior *inf, const char *filename,
3008 gdb_byte **buf_p, int padding)
3009{
db1ff28b
JK
3010 size_t buf_alloc, buf_pos;
3011 gdb_byte *buf;
3012 LONGEST n;
db1ff28b 3013 int target_errno;
f7af1fcd 3014
770623f7 3015 scoped_target_fd fd (target_fileio_open (inf, filename, FILEIO_O_RDONLY,
4111f652 3016 0700, false, &target_errno));
770623f7 3017 if (fd.get () == -1)
f7af1fcd
JK
3018 return -1;
3019
db1ff28b
JK
3020 /* Start by reading up to 4K at a time. The target will throttle
3021 this number down if necessary. */
3022 buf_alloc = 4096;
224c3ddb 3023 buf = (gdb_byte *) xmalloc (buf_alloc);
db1ff28b
JK
3024 buf_pos = 0;
3025 while (1)
3026 {
770623f7 3027 n = target_fileio_pread (fd.get (), &buf[buf_pos],
db1ff28b
JK
3028 buf_alloc - buf_pos - padding, buf_pos,
3029 &target_errno);
3030 if (n < 0)
3031 {
3032 /* An error occurred. */
db1ff28b
JK
3033 xfree (buf);
3034 return -1;
3035 }
3036 else if (n == 0)
3037 {
3038 /* Read all there was. */
db1ff28b
JK
3039 if (buf_pos == 0)
3040 xfree (buf);
3041 else
3042 *buf_p = buf;
3043 return buf_pos;
3044 }
3045
3046 buf_pos += n;
3047
3048 /* If the buffer is filling up, expand it. */
3049 if (buf_alloc < buf_pos * 2)
3050 {
3051 buf_alloc *= 2;
224c3ddb 3052 buf = (gdb_byte *) xrealloc (buf, buf_alloc);
db1ff28b
JK
3053 }
3054
3055 QUIT;
3056 }
f7af1fcd
JK
3057}
3058
12e2a5fd 3059/* See target.h. */
7313baad
UW
3060
3061LONGEST
07c138c8
GB
3062target_fileio_read_alloc (struct inferior *inf, const char *filename,
3063 gdb_byte **buf_p)
7313baad 3064{
07c138c8 3065 return target_fileio_read_alloc_1 (inf, filename, buf_p, 0);
7313baad
UW
3066}
3067
db1ff28b 3068/* See target.h. */
f7af1fcd 3069
87028b87 3070gdb::unique_xmalloc_ptr<char>
f7af1fcd
JK
3071target_fileio_read_stralloc (struct inferior *inf, const char *filename)
3072{
db1ff28b
JK
3073 gdb_byte *buffer;
3074 char *bufstr;
3075 LONGEST i, transferred;
3076
3077 transferred = target_fileio_read_alloc_1 (inf, filename, &buffer, 1);
3078 bufstr = (char *) buffer;
3079
3080 if (transferred < 0)
87028b87 3081 return gdb::unique_xmalloc_ptr<char> (nullptr);
db1ff28b
JK
3082
3083 if (transferred == 0)
b02f78f9 3084 return make_unique_xstrdup ("");
db1ff28b
JK
3085
3086 bufstr[transferred] = 0;
3087
3088 /* Check for embedded NUL bytes; but allow trailing NULs. */
3089 for (i = strlen (bufstr); i < transferred; i++)
3090 if (bufstr[i] != 0)
3091 {
3092 warning (_("target file %s "
3093 "contained unexpected null characters"),
3094 filename);
3095 break;
3096 }
3097
87028b87 3098 return gdb::unique_xmalloc_ptr<char> (bufstr);
f7af1fcd 3099}
7313baad 3100
db1ff28b 3101
e0d24f8d 3102static int
31568a15
TT
3103default_region_ok_for_hw_watchpoint (struct target_ops *self,
3104 CORE_ADDR addr, int len)
e0d24f8d 3105{
f5656ead 3106 return (len <= gdbarch_ptr_bit (target_gdbarch ()) / TARGET_CHAR_BIT);
ccaa32c7
GS
3107}
3108
5009afc5
AS
3109static int
3110default_watchpoint_addr_within_range (struct target_ops *target,
3111 CORE_ADDR addr,
3112 CORE_ADDR start, int length)
3113{
3114 return addr >= start && addr < start + length;
3115}
3116
8b06beed
TT
3117/* See target.h. */
3118
a1740ee1
PA
3119target_ops *
3120target_stack::find_beneath (const target_ops *t) const
8b06beed 3121{
a1740ee1 3122 /* Look for a non-empty slot at stratum levels beneath T's. */
66b4deae 3123 for (int stratum = t->stratum () - 1; stratum >= 0; --stratum)
a1740ee1
PA
3124 if (m_stack[stratum] != NULL)
3125 return m_stack[stratum];
8b06beed
TT
3126
3127 return NULL;
3128}
3129
a1740ee1
PA
3130/* See target.h. */
3131
3132struct target_ops *
3133find_target_at (enum strata stratum)
3134{
5b6d1e4f 3135 return current_inferior ()->target_at (stratum);
a1740ee1
PA
3136}
3137
c906108c 3138\f
0f48b757
PA
3139
3140/* See target.h */
3141
3142void
3143target_announce_detach (int from_tty)
3144{
3145 pid_t pid;
a121b7c1 3146 const char *exec_file;
0f48b757
PA
3147
3148 if (!from_tty)
3149 return;
3150
3151 exec_file = get_exec_file (0);
3152 if (exec_file == NULL)
3153 exec_file = "";
3154
e99b03dc 3155 pid = inferior_ptid.pid ();
0f48b757 3156 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
a068643d 3157 target_pid_to_str (ptid_t (pid)).c_str ());
0f48b757
PA
3158}
3159
c906108c
SS
3160/* The inferior process has died. Long live the inferior! */
3161
3162void
fba45db2 3163generic_mourn_inferior (void)
c906108c 3164{
00431a78 3165 inferior *inf = current_inferior ();
c906108c 3166
39f77062 3167 inferior_ptid = null_ptid;
7f9f62ba 3168
f59f708a
PA
3169 /* Mark breakpoints uninserted in case something tries to delete a
3170 breakpoint while we delete the inferior's threads (which would
3171 fail, since the inferior is long gone). */
3172 mark_breakpoints_out ();
3173
00431a78
PA
3174 if (inf->pid != 0)
3175 exit_inferior (inf);
7f9f62ba 3176
f59f708a
PA
3177 /* Note this wipes step-resume breakpoints, so needs to be done
3178 after exit_inferior, which ends up referencing the step-resume
3179 breakpoints through clear_thread_inferior_resources. */
c906108c 3180 breakpoint_init_inferior (inf_exited);
f59f708a 3181
c906108c
SS
3182 registers_changed ();
3183
c906108c
SS
3184 reopen_exec_file ();
3185 reinit_frame_cache ();
3186
9a4105ab
AC
3187 if (deprecated_detach_hook)
3188 deprecated_detach_hook ();
c906108c
SS
3189}
3190\f
fd0a2a6f
MK
3191/* Convert a normal process ID to a string. Returns the string in a
3192 static buffer. */
c906108c 3193
a068643d 3194std::string
39f77062 3195normal_pid_to_str (ptid_t ptid)
c906108c 3196{
a068643d 3197 return string_printf ("process %d", ptid.pid ());
c906108c
SS
3198}
3199
a068643d 3200static std::string
770234d3 3201default_pid_to_str (struct target_ops *ops, ptid_t ptid)
117de6a9
PA
3202{
3203 return normal_pid_to_str (ptid);
3204}
3205
9b4eba8e
HZ
3206/* Error-catcher for target_find_memory_regions. */
3207static int
2e73927c
TT
3208dummy_find_memory_regions (struct target_ops *self,
3209 find_memory_region_ftype ignore1, void *ignore2)
be4d1333 3210{
9b4eba8e 3211 error (_("Command not implemented for this target."));
be4d1333
MS
3212 return 0;
3213}
3214
9b4eba8e
HZ
3215/* Error-catcher for target_make_corefile_notes. */
3216static char *
fc6691b2
TT
3217dummy_make_corefile_notes (struct target_ops *self,
3218 bfd *ignore1, int *ignore2)
be4d1333 3219{
9b4eba8e 3220 error (_("Command not implemented for this target."));
be4d1333
MS
3221 return NULL;
3222}
3223
f6ac5f3d
PA
3224#include "target-delegates.c"
3225
06b5b831
TT
3226/* The initial current target, so that there is always a semi-valid
3227 current target. */
3228
3229static dummy_target the_dummy_target;
c906108c 3230
5b6d1e4f
PA
3231/* See target.h. */
3232
3233target_ops *
3234get_dummy_target ()
3235{
3236 return &the_dummy_target;
3237}
3238
d9f719f1
PA
3239static const target_info dummy_target_info = {
3240 "None",
3241 N_("None"),
3242 ""
3243};
3244
66b4deae
PA
3245strata
3246dummy_target::stratum () const
f6ac5f3d 3247{
66b4deae 3248 return dummy_stratum;
f6ac5f3d
PA
3249}
3250
66b4deae
PA
3251strata
3252debug_target::stratum () const
f6ac5f3d 3253{
66b4deae 3254 return debug_stratum;
f6ac5f3d
PA
3255}
3256
d9f719f1
PA
3257const target_info &
3258dummy_target::info () const
f6ac5f3d 3259{
d9f719f1 3260 return dummy_target_info;
f6ac5f3d
PA
3261}
3262
d9f719f1
PA
3263const target_info &
3264debug_target::info () const
f6ac5f3d 3265{
b6a8c27b 3266 return beneath ()->info ();
f6ac5f3d
PA
3267}
3268
c906108c 3269\f
c906108c 3270
f1c07ab0 3271void
460014f5 3272target_close (struct target_ops *targ)
f1c07ab0 3273{
7fdc1521
TT
3274 gdb_assert (!target_is_pushed (targ));
3275
20db9c52
PA
3276 fileio_handles_invalidate_target (targ);
3277
f6ac5f3d 3278 targ->close ();
947b8855
PA
3279
3280 if (targetdebug)
460014f5 3281 fprintf_unfiltered (gdb_stdlog, "target_close ()\n");
f1c07ab0
AC
3282}
3283
28439f5e
PA
3284int
3285target_thread_alive (ptid_t ptid)
c906108c 3286{
8b88a78e 3287 return current_top_target ()->thread_alive (ptid);
28439f5e
PA
3288}
3289
3290void
e8032dde 3291target_update_thread_list (void)
28439f5e 3292{
8b88a78e 3293 current_top_target ()->update_thread_list ();
c906108c
SS
3294}
3295
d914c394
SS
3296void
3297target_stop (ptid_t ptid)
3298{
3299 if (!may_stop)
3300 {
3301 warning (_("May not interrupt or stop the target, ignoring attempt"));
3302 return;
3303 }
3304
8b88a78e 3305 current_top_target ()->stop (ptid);
d914c394
SS
3306}
3307
bfedc46a 3308void
e671cd59 3309target_interrupt ()
bfedc46a
PA
3310{
3311 if (!may_stop)
3312 {
3313 warning (_("May not interrupt or stop the target, ignoring attempt"));
3314 return;
3315 }
3316
8b88a78e 3317 current_top_target ()->interrupt ();
bfedc46a
PA
3318}
3319
abc56d60
PA
3320/* See target.h. */
3321
93692b58
PA
3322void
3323target_pass_ctrlc (void)
3324{
5b6d1e4f
PA
3325 /* Pass the Ctrl-C to the first target that has a thread
3326 running. */
3327 for (inferior *inf : all_inferiors ())
3328 {
3329 target_ops *proc_target = inf->process_target ();
3330 if (proc_target == NULL)
3331 continue;
3332
3333 for (thread_info *thr : inf->threads ())
3334 {
3335 /* A thread can be THREAD_STOPPED and executing, while
3336 running an infcall. */
3337 if (thr->state == THREAD_RUNNING || thr->executing)
3338 {
3339 /* We can get here quite deep in target layers. Avoid
3340 switching thread context or anything that would
3341 communicate with the target (e.g., to fetch
3342 registers), or flushing e.g., the frame cache. We
3343 just switch inferior in order to be able to call
3344 through the target_stack. */
3345 scoped_restore_current_inferior restore_inferior;
3346 set_current_inferior (inf);
3347 current_top_target ()->pass_ctrlc ();
3348 return;
3349 }
3350 }
3351 }
93692b58
PA
3352}
3353
3354/* See target.h. */
3355
3356void
3357default_target_pass_ctrlc (struct target_ops *ops)
3358{
e671cd59 3359 target_interrupt ();
93692b58
PA
3360}
3361
f8c1d06b
GB
3362/* See target/target.h. */
3363
3364void
03f4463b 3365target_stop_and_wait (ptid_t ptid)
f8c1d06b
GB
3366{
3367 struct target_waitstatus status;
491144b5 3368 bool was_non_stop = non_stop;
f8c1d06b 3369
491144b5 3370 non_stop = true;
f8c1d06b
GB
3371 target_stop (ptid);
3372
3373 memset (&status, 0, sizeof (status));
3374 target_wait (ptid, &status, 0);
3375
3376 non_stop = was_non_stop;
3377}
3378
3379/* See target/target.h. */
3380
3381void
03f4463b 3382target_continue_no_signal (ptid_t ptid)
f8c1d06b
GB
3383{
3384 target_resume (ptid, 0, GDB_SIGNAL_0);
3385}
3386
049a8570
SDJ
3387/* See target/target.h. */
3388
3389void
3390target_continue (ptid_t ptid, enum gdb_signal signal)
3391{
3392 target_resume (ptid, 0, signal);
3393}
3394
fdbac7d8 3395/* Concatenate ELEM to LIST, a comma-separated list. */
09826ec5 3396
09ce46f2
SM
3397static void
3398str_comma_list_concat_elem (std::string *list, const char *elem)
09826ec5 3399{
09ce46f2
SM
3400 if (!list->empty ())
3401 list->append (", ");
3402
3403 list->append (elem);
09826ec5
PA
3404}
3405
3406/* Helper for target_options_to_string. If OPT is present in
3407 TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
09ce46f2 3408 OPT is removed from TARGET_OPTIONS. */
09826ec5 3409
09ce46f2
SM
3410static void
3411do_option (int *target_options, std::string *ret,
a121b7c1 3412 int opt, const char *opt_str)
09826ec5
PA
3413{
3414 if ((*target_options & opt) != 0)
3415 {
09ce46f2 3416 str_comma_list_concat_elem (ret, opt_str);
09826ec5
PA
3417 *target_options &= ~opt;
3418 }
09826ec5
PA
3419}
3420
fdbac7d8
SM
3421/* See target.h. */
3422
09ce46f2 3423std::string
09826ec5
PA
3424target_options_to_string (int target_options)
3425{
09ce46f2 3426 std::string ret;
09826ec5
PA
3427
3428#define DO_TARG_OPTION(OPT) \
09ce46f2 3429 do_option (&target_options, &ret, OPT, #OPT)
09826ec5
PA
3430
3431 DO_TARG_OPTION (TARGET_WNOHANG);
3432
3433 if (target_options != 0)
09ce46f2 3434 str_comma_list_concat_elem (&ret, "unknown???");
09826ec5 3435
09826ec5
PA
3436 return ret;
3437}
3438
28439f5e
PA
3439void
3440target_fetch_registers (struct regcache *regcache, int regno)
c906108c 3441{
8b88a78e 3442 current_top_target ()->fetch_registers (regcache, regno);
ad5989bd 3443 if (targetdebug)
ef79d9a3 3444 regcache->debug_print_register ("target_fetch_registers", regno);
c906108c
SS
3445}
3446
28439f5e
PA
3447void
3448target_store_registers (struct regcache *regcache, int regno)
c906108c 3449{
d914c394
SS
3450 if (!may_write_registers)
3451 error (_("Writing to registers is not allowed (regno %d)"), regno);
3452
8b88a78e 3453 current_top_target ()->store_registers (regcache, regno);
6b84065d 3454 if (targetdebug)
28439f5e 3455 {
ef79d9a3 3456 regcache->debug_print_register ("target_store_registers", regno);
28439f5e 3457 }
c906108c
SS
3458}
3459
dc146f7c
VP
3460int
3461target_core_of_thread (ptid_t ptid)
3462{
8b88a78e 3463 return current_top_target ()->core_of_thread (ptid);
dc146f7c
VP
3464}
3465
936d2992
PA
3466int
3467simple_verify_memory (struct target_ops *ops,
3468 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
3469{
3470 LONGEST total_xfered = 0;
3471
3472 while (total_xfered < size)
3473 {
3474 ULONGEST xfered_len;
3475 enum target_xfer_status status;
3476 gdb_byte buf[1024];
768adc05 3477 ULONGEST howmuch = std::min<ULONGEST> (sizeof (buf), size - total_xfered);
936d2992
PA
3478
3479 status = target_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
3480 buf, NULL, lma + total_xfered, howmuch,
3481 &xfered_len);
3482 if (status == TARGET_XFER_OK
3483 && memcmp (data + total_xfered, buf, xfered_len) == 0)
3484 {
3485 total_xfered += xfered_len;
3486 QUIT;
3487 }
3488 else
3489 return 0;
3490 }
3491 return 1;
3492}
3493
3494/* Default implementation of memory verification. */
3495
3496static int
3497default_verify_memory (struct target_ops *self,
3498 const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3499{
3500 /* Start over from the top of the target stack. */
8b88a78e 3501 return simple_verify_memory (current_top_target (),
936d2992
PA
3502 data, memaddr, size);
3503}
3504
4a5e7a5b
PA
3505int
3506target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3507{
8b88a78e 3508 return current_top_target ()->verify_memory (data, memaddr, size);
4a5e7a5b
PA
3509}
3510
9c06b0b4
TJB
3511/* The documentation for this function is in its prototype declaration in
3512 target.h. */
3513
3514int
f4b0a671
SM
3515target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask,
3516 enum target_hw_bp_type rw)
9c06b0b4 3517{
8b88a78e 3518 return current_top_target ()->insert_mask_watchpoint (addr, mask, rw);
9c06b0b4
TJB
3519}
3520
3521/* The documentation for this function is in its prototype declaration in
3522 target.h. */
3523
3524int
f4b0a671
SM
3525target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask,
3526 enum target_hw_bp_type rw)
9c06b0b4 3527{
8b88a78e 3528 return current_top_target ()->remove_mask_watchpoint (addr, mask, rw);
9c06b0b4
TJB
3529}
3530
3531/* The documentation for this function is in its prototype declaration
3532 in target.h. */
3533
3534int
3535target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
3536{
8b88a78e 3537 return current_top_target ()->masked_watch_num_registers (addr, mask);
9c06b0b4
TJB
3538}
3539
f1310107
TJB
3540/* The documentation for this function is in its prototype declaration
3541 in target.h. */
3542
3543int
3544target_ranged_break_num_registers (void)
3545{
8b88a78e 3546 return current_top_target ()->ranged_break_num_registers ();
f1310107
TJB
3547}
3548
02d27625
MM
3549/* See target.h. */
3550
02d27625 3551struct btrace_target_info *
f4abbc16 3552target_enable_btrace (ptid_t ptid, const struct btrace_config *conf)
02d27625 3553{
8b88a78e 3554 return current_top_target ()->enable_btrace (ptid, conf);
02d27625
MM
3555}
3556
3557/* See target.h. */
3558
3559void
3560target_disable_btrace (struct btrace_target_info *btinfo)
3561{
8b88a78e 3562 current_top_target ()->disable_btrace (btinfo);
02d27625
MM
3563}
3564
3565/* See target.h. */
3566
3567void
3568target_teardown_btrace (struct btrace_target_info *btinfo)
3569{
8b88a78e 3570 current_top_target ()->teardown_btrace (btinfo);
02d27625
MM
3571}
3572
3573/* See target.h. */
3574
969c39fb 3575enum btrace_error
734b0e4b 3576target_read_btrace (struct btrace_data *btrace,
969c39fb 3577 struct btrace_target_info *btinfo,
02d27625
MM
3578 enum btrace_read_type type)
3579{
8b88a78e 3580 return current_top_target ()->read_btrace (btrace, btinfo, type);
02d27625
MM
3581}
3582
d02ed0bb
MM
3583/* See target.h. */
3584
f4abbc16
MM
3585const struct btrace_config *
3586target_btrace_conf (const struct btrace_target_info *btinfo)
3587{
8b88a78e 3588 return current_top_target ()->btrace_conf (btinfo);
f4abbc16
MM
3589}
3590
3591/* See target.h. */
3592
7c1687a9
MM
3593void
3594target_stop_recording (void)
3595{
8b88a78e 3596 current_top_target ()->stop_recording ();
7c1687a9
MM
3597}
3598
3599/* See target.h. */
3600
d02ed0bb 3601void
85e1311a 3602target_save_record (const char *filename)
d02ed0bb 3603{
8b88a78e 3604 current_top_target ()->save_record (filename);
d02ed0bb
MM
3605}
3606
3607/* See target.h. */
3608
3609int
f6ac5f3d 3610target_supports_delete_record ()
d02ed0bb 3611{
8b88a78e 3612 return current_top_target ()->supports_delete_record ();
d02ed0bb
MM
3613}
3614
3615/* See target.h. */
3616
3617void
3618target_delete_record (void)
3619{
8b88a78e 3620 current_top_target ()->delete_record ();
d02ed0bb
MM
3621}
3622
3623/* See target.h. */
3624
b158a20f
TW
3625enum record_method
3626target_record_method (ptid_t ptid)
3627{
8b88a78e 3628 return current_top_target ()->record_method (ptid);
b158a20f
TW
3629}
3630
3631/* See target.h. */
3632
d02ed0bb 3633int
a52eab48 3634target_record_is_replaying (ptid_t ptid)
d02ed0bb 3635{
8b88a78e 3636 return current_top_target ()->record_is_replaying (ptid);
d02ed0bb
MM
3637}
3638
3639/* See target.h. */
3640
7ff27e9b
MM
3641int
3642target_record_will_replay (ptid_t ptid, int dir)
3643{
8b88a78e 3644 return current_top_target ()->record_will_replay (ptid, dir);
7ff27e9b
MM
3645}
3646
3647/* See target.h. */
3648
797094dd
MM
3649void
3650target_record_stop_replaying (void)
3651{
8b88a78e 3652 current_top_target ()->record_stop_replaying ();
797094dd
MM
3653}
3654
3655/* See target.h. */
3656
d02ed0bb
MM
3657void
3658target_goto_record_begin (void)
3659{
8b88a78e 3660 current_top_target ()->goto_record_begin ();
d02ed0bb
MM
3661}
3662
3663/* See target.h. */
3664
3665void
3666target_goto_record_end (void)
3667{
8b88a78e 3668 current_top_target ()->goto_record_end ();
d02ed0bb
MM
3669}
3670
3671/* See target.h. */
3672
3673void
3674target_goto_record (ULONGEST insn)
3675{
8b88a78e 3676 current_top_target ()->goto_record (insn);
d02ed0bb
MM
3677}
3678
67c86d06
MM
3679/* See target.h. */
3680
3681void
9a24775b 3682target_insn_history (int size, gdb_disassembly_flags flags)
67c86d06 3683{
8b88a78e 3684 current_top_target ()->insn_history (size, flags);
67c86d06
MM
3685}
3686
3687/* See target.h. */
3688
3689void
9a24775b
PA
3690target_insn_history_from (ULONGEST from, int size,
3691 gdb_disassembly_flags flags)
67c86d06 3692{
8b88a78e 3693 current_top_target ()->insn_history_from (from, size, flags);
67c86d06
MM
3694}
3695
3696/* See target.h. */
3697
3698void
9a24775b
PA
3699target_insn_history_range (ULONGEST begin, ULONGEST end,
3700 gdb_disassembly_flags flags)
67c86d06 3701{
8b88a78e 3702 current_top_target ()->insn_history_range (begin, end, flags);
67c86d06
MM
3703}
3704
15984c13
MM
3705/* See target.h. */
3706
3707void
0cb7c7b0 3708target_call_history (int size, record_print_flags flags)
15984c13 3709{
8b88a78e 3710 current_top_target ()->call_history (size, flags);
15984c13
MM
3711}
3712
3713/* See target.h. */
3714
3715void
0cb7c7b0 3716target_call_history_from (ULONGEST begin, int size, record_print_flags flags)
15984c13 3717{
8b88a78e 3718 current_top_target ()->call_history_from (begin, size, flags);
15984c13
MM
3719}
3720
3721/* See target.h. */
3722
3723void
0cb7c7b0 3724target_call_history_range (ULONGEST begin, ULONGEST end, record_print_flags flags)
15984c13 3725{
8b88a78e 3726 current_top_target ()->call_history_range (begin, end, flags);
15984c13
MM
3727}
3728
ea001bdc
MM
3729/* See target.h. */
3730
3731const struct frame_unwind *
3732target_get_unwinder (void)
3733{
8b88a78e 3734 return current_top_target ()->get_unwinder ();
ea001bdc
MM
3735}
3736
3737/* See target.h. */
3738
3739const struct frame_unwind *
3740target_get_tailcall_unwinder (void)
3741{
8b88a78e 3742 return current_top_target ()->get_tailcall_unwinder ();
ea001bdc
MM
3743}
3744
5fff78c4
MM
3745/* See target.h. */
3746
3747void
3748target_prepare_to_generate_core (void)
3749{
8b88a78e 3750 current_top_target ()->prepare_to_generate_core ();
5fff78c4
MM
3751}
3752
3753/* See target.h. */
3754
3755void
3756target_done_generating_core (void)
3757{
8b88a78e 3758 current_top_target ()->done_generating_core ();
5fff78c4
MM
3759}
3760
c906108c 3761\f
c5aa993b
JM
3762
3763static char targ_desc[] =
3e43a32a
MS
3764"Names of targets and files being debugged.\nShows the entire \
3765stack of targets currently in use (including the exec-file,\n\
c906108c
SS
3766core-file, and process, if any), as well as the symbol file name.";
3767
a53f3625 3768static void
a30bf1f1
TT
3769default_rcmd (struct target_ops *self, const char *command,
3770 struct ui_file *output)
a53f3625
TT
3771{
3772 error (_("\"monitor\" command not supported by this target."));
3773}
3774
96baa820 3775static void
0b39b52e 3776do_monitor_command (const char *cmd, int from_tty)
96baa820 3777{
96baa820
JM
3778 target_rcmd (cmd, gdb_stdtarg);
3779}
3780
78cbbba8
LM
3781/* Erases all the memory regions marked as flash. CMD and FROM_TTY are
3782 ignored. */
3783
3784void
0b39b52e 3785flash_erase_command (const char *cmd, int from_tty)
78cbbba8
LM
3786{
3787 /* Used to communicate termination of flash operations to the target. */
3788 bool found_flash_region = false;
78cbbba8
LM
3789 struct gdbarch *gdbarch = target_gdbarch ();
3790
a664f67e 3791 std::vector<mem_region> mem_regions = target_memory_map ();
78cbbba8
LM
3792
3793 /* Iterate over all memory regions. */
a664f67e 3794 for (const mem_region &m : mem_regions)
78cbbba8 3795 {
78cbbba8 3796 /* Is this a flash memory region? */
a664f67e 3797 if (m.attrib.mode == MEM_FLASH)
78cbbba8
LM
3798 {
3799 found_flash_region = true;
a664f67e 3800 target_flash_erase (m.lo, m.hi - m.lo);
78cbbba8 3801
76f9c9cf 3802 ui_out_emit_tuple tuple_emitter (current_uiout, "erased-regions");
78cbbba8
LM
3803
3804 current_uiout->message (_("Erasing flash memory region at address "));
ca8d69be 3805 current_uiout->field_core_addr ("address", gdbarch, m.lo);
78cbbba8 3806 current_uiout->message (", size = ");
33eca680 3807 current_uiout->field_string ("size", hex_string (m.hi - m.lo));
78cbbba8 3808 current_uiout->message ("\n");
78cbbba8
LM
3809 }
3810 }
3811
3812 /* Did we do any flash operations? If so, we need to finalize them. */
3813 if (found_flash_region)
3814 target_flash_done ();
3815 else
3816 current_uiout->message (_("No flash memory regions found.\n"));
3817}
3818
87680a14
JB
3819/* Print the name of each layers of our target stack. */
3820
3821static void
d3cb6b99 3822maintenance_print_target_stack (const char *cmd, int from_tty)
87680a14 3823{
87680a14
JB
3824 printf_filtered (_("The current target stack is:\n"));
3825
b6a8c27b 3826 for (target_ops *t = current_top_target (); t != NULL; t = t->beneath ())
87680a14 3827 {
66b4deae 3828 if (t->stratum () == debug_stratum)
f6ac5f3d
PA
3829 continue;
3830 printf_filtered (" - %s (%s)\n", t->shortname (), t->longname ());
87680a14
JB
3831 }
3832}
3833
372316f1
PA
3834/* See target.h. */
3835
3836void
3837target_async (int enable)
3838{
3839 infrun_async (enable);
8b88a78e 3840 current_top_target ()->async (enable);
372316f1
PA
3841}
3842
65706a29
PA
3843/* See target.h. */
3844
3845void
3846target_thread_events (int enable)
3847{
8b88a78e 3848 current_top_target ()->thread_events (enable);
65706a29
PA
3849}
3850
329ea579
PA
3851/* Controls if targets can report that they can/are async. This is
3852 just for maintainers to use when debugging gdb. */
491144b5 3853bool target_async_permitted = true;
c6ebd6cf
VP
3854
3855/* The set command writes to this variable. If the inferior is
b5419e49 3856 executing, target_async_permitted is *not* updated. */
491144b5 3857static bool target_async_permitted_1 = true;
c6ebd6cf
VP
3858
3859static void
eb4c3f4a 3860maint_set_target_async_command (const char *args, int from_tty,
329ea579 3861 struct cmd_list_element *c)
c6ebd6cf 3862{
c35b1492 3863 if (have_live_inferiors ())
c6ebd6cf
VP
3864 {
3865 target_async_permitted_1 = target_async_permitted;
3866 error (_("Cannot change this setting while the inferior is running."));
3867 }
3868
3869 target_async_permitted = target_async_permitted_1;
3870}
3871
3872static void
329ea579
PA
3873maint_show_target_async_command (struct ui_file *file, int from_tty,
3874 struct cmd_list_element *c,
3875 const char *value)
c6ebd6cf 3876{
3e43a32a
MS
3877 fprintf_filtered (file,
3878 _("Controlling the inferior in "
3879 "asynchronous mode is %s.\n"), value);
c6ebd6cf
VP
3880}
3881
fbea99ea
PA
3882/* Return true if the target operates in non-stop mode even with "set
3883 non-stop off". */
3884
3885static int
3886target_always_non_stop_p (void)
3887{
8b88a78e 3888 return current_top_target ()->always_non_stop_p ();
fbea99ea
PA
3889}
3890
3891/* See target.h. */
3892
3893int
3894target_is_non_stop_p (void)
3895{
3896 return (non_stop
3897 || target_non_stop_enabled == AUTO_BOOLEAN_TRUE
3898 || (target_non_stop_enabled == AUTO_BOOLEAN_AUTO
3899 && target_always_non_stop_p ()));
3900}
3901
a0714d30
TBA
3902/* See target.h. */
3903
3904bool
3905exists_non_stop_target ()
3906{
3907 if (target_is_non_stop_p ())
3908 return true;
3909
3910 scoped_restore_current_thread restore_thread;
3911
3912 for (inferior *inf : all_inferiors ())
3913 {
3914 switch_to_inferior_no_thread (inf);
3915 if (target_is_non_stop_p ())
3916 return true;
3917 }
3918
3919 return false;
3920}
3921
fbea99ea
PA
3922/* Controls if targets can report that they always run in non-stop
3923 mode. This is just for maintainers to use when debugging gdb. */
3924enum auto_boolean target_non_stop_enabled = AUTO_BOOLEAN_AUTO;
3925
3926/* The set command writes to this variable. If the inferior is
3927 executing, target_non_stop_enabled is *not* updated. */
3928static enum auto_boolean target_non_stop_enabled_1 = AUTO_BOOLEAN_AUTO;
3929
3930/* Implementation of "maint set target-non-stop". */
3931
3932static void
eb4c3f4a 3933maint_set_target_non_stop_command (const char *args, int from_tty,
fbea99ea
PA
3934 struct cmd_list_element *c)
3935{
3936 if (have_live_inferiors ())
3937 {
3938 target_non_stop_enabled_1 = target_non_stop_enabled;
3939 error (_("Cannot change this setting while the inferior is running."));
3940 }
3941
3942 target_non_stop_enabled = target_non_stop_enabled_1;
3943}
3944
3945/* Implementation of "maint show target-non-stop". */
3946
3947static void
3948maint_show_target_non_stop_command (struct ui_file *file, int from_tty,
3949 struct cmd_list_element *c,
3950 const char *value)
3951{
3952 if (target_non_stop_enabled == AUTO_BOOLEAN_AUTO)
3953 fprintf_filtered (file,
3954 _("Whether the target is always in non-stop mode "
3955 "is %s (currently %s).\n"), value,
3956 target_always_non_stop_p () ? "on" : "off");
3957 else
3958 fprintf_filtered (file,
3959 _("Whether the target is always in non-stop mode "
3960 "is %s.\n"), value);
3961}
3962
d914c394
SS
3963/* Temporary copies of permission settings. */
3964
491144b5
CB
3965static bool may_write_registers_1 = true;
3966static bool may_write_memory_1 = true;
3967static bool may_insert_breakpoints_1 = true;
3968static bool may_insert_tracepoints_1 = true;
3969static bool may_insert_fast_tracepoints_1 = true;
3970static bool may_stop_1 = true;
d914c394
SS
3971
3972/* Make the user-set values match the real values again. */
3973
3974void
3975update_target_permissions (void)
3976{
3977 may_write_registers_1 = may_write_registers;
3978 may_write_memory_1 = may_write_memory;
3979 may_insert_breakpoints_1 = may_insert_breakpoints;
3980 may_insert_tracepoints_1 = may_insert_tracepoints;
3981 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
3982 may_stop_1 = may_stop;
3983}
3984
3985/* The one function handles (most of) the permission flags in the same
3986 way. */
3987
3988static void
eb4c3f4a 3989set_target_permissions (const char *args, int from_tty,
d914c394
SS
3990 struct cmd_list_element *c)
3991{
3992 if (target_has_execution)
3993 {
3994 update_target_permissions ();
3995 error (_("Cannot change this setting while the inferior is running."));
3996 }
3997
3998 /* Make the real values match the user-changed values. */
3999 may_write_registers = may_write_registers_1;
4000 may_insert_breakpoints = may_insert_breakpoints_1;
4001 may_insert_tracepoints = may_insert_tracepoints_1;
4002 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
4003 may_stop = may_stop_1;
4004 update_observer_mode ();
4005}
4006
4007/* Set memory write permission independently of observer mode. */
4008
4009static void
eb4c3f4a 4010set_write_memory_permission (const char *args, int from_tty,
d914c394
SS
4011 struct cmd_list_element *c)
4012{
4013 /* Make the real values match the user-changed values. */
4014 may_write_memory = may_write_memory_1;
4015 update_observer_mode ();
4016}
4017
6c265988
SM
4018void _initialize_target ();
4019
c906108c 4020void
5b6d1e4f 4021_initialize_target ()
c906108c 4022{
f6ac5f3d 4023 the_debug_target = new debug_target ();
c906108c 4024
11db9430
SM
4025 add_info ("target", info_target_command, targ_desc);
4026 add_info ("files", info_target_command, targ_desc);
c906108c 4027
ccce17b0 4028 add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
85c07804
AC
4029Set target debugging."), _("\
4030Show target debugging."), _("\
333dabeb 4031When non-zero, target debugging is enabled. Higher numbers are more\n\
3cecbbbe
TT
4032verbose."),
4033 set_targetdebug,
ccce17b0
YQ
4034 show_targetdebug,
4035 &setdebuglist, &showdebuglist);
3a11626d 4036
2bc416ba 4037 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
7915a72c
AC
4038 &trust_readonly, _("\
4039Set mode for reading from readonly sections."), _("\
4040Show mode for reading from readonly sections."), _("\
3a11626d
MS
4041When this mode is on, memory reads from readonly sections (such as .text)\n\
4042will be read from the object file instead of from the target. This will\n\
7915a72c 4043result in significant performance improvement for remote targets."),
2c5b56ce 4044 NULL,
920d2a44 4045 show_trust_readonly,
e707bbc2 4046 &setlist, &showlist);
96baa820
JM
4047
4048 add_com ("monitor", class_obscure, do_monitor_command,
1bedd215 4049 _("Send a command to the remote monitor (remote targets only)."));
96baa820 4050
87680a14
JB
4051 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
4052 _("Print the name of each layer of the internal target stack."),
4053 &maintenanceprintlist);
4054
c6ebd6cf
VP
4055 add_setshow_boolean_cmd ("target-async", no_class,
4056 &target_async_permitted_1, _("\
4057Set whether gdb controls the inferior in asynchronous mode."), _("\
4058Show whether gdb controls the inferior in asynchronous mode."), _("\
4059Tells gdb whether to control the inferior in asynchronous mode."),
329ea579
PA
4060 maint_set_target_async_command,
4061 maint_show_target_async_command,
4062 &maintenance_set_cmdlist,
4063 &maintenance_show_cmdlist);
c6ebd6cf 4064
fbea99ea
PA
4065 add_setshow_auto_boolean_cmd ("target-non-stop", no_class,
4066 &target_non_stop_enabled_1, _("\
4067Set whether gdb always controls the inferior in non-stop mode."), _("\
4068Show whether gdb always controls the inferior in non-stop mode."), _("\
4069Tells gdb whether to control the inferior in non-stop mode."),
4070 maint_set_target_non_stop_command,
4071 maint_show_target_non_stop_command,
4072 &maintenance_set_cmdlist,
4073 &maintenance_show_cmdlist);
4074
d914c394
SS
4075 add_setshow_boolean_cmd ("may-write-registers", class_support,
4076 &may_write_registers_1, _("\
4077Set permission to write into registers."), _("\
4078Show permission to write into registers."), _("\
4079When this permission is on, GDB may write into the target's registers.\n\
4080Otherwise, any sort of write attempt will result in an error."),
4081 set_target_permissions, NULL,
4082 &setlist, &showlist);
4083
4084 add_setshow_boolean_cmd ("may-write-memory", class_support,
4085 &may_write_memory_1, _("\
4086Set permission to write into target memory."), _("\
4087Show permission to write into target memory."), _("\
4088When this permission is on, GDB may write into the target's memory.\n\
4089Otherwise, any sort of write attempt will result in an error."),
4090 set_write_memory_permission, NULL,
4091 &setlist, &showlist);
4092
4093 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
4094 &may_insert_breakpoints_1, _("\
4095Set permission to insert breakpoints in the target."), _("\
4096Show permission to insert breakpoints in the target."), _("\
4097When this permission is on, GDB may insert breakpoints in the program.\n\
4098Otherwise, any sort of insertion attempt will result in an error."),
4099 set_target_permissions, NULL,
4100 &setlist, &showlist);
4101
4102 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
4103 &may_insert_tracepoints_1, _("\
4104Set permission to insert tracepoints in the target."), _("\
4105Show permission to insert tracepoints in the target."), _("\
4106When this permission is on, GDB may insert tracepoints in the program.\n\
4107Otherwise, any sort of insertion attempt will result in an error."),
4108 set_target_permissions, NULL,
4109 &setlist, &showlist);
4110
4111 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
4112 &may_insert_fast_tracepoints_1, _("\
4113Set permission to insert fast tracepoints in the target."), _("\
4114Show permission to insert fast tracepoints in the target."), _("\
4115When this permission is on, GDB may insert fast tracepoints.\n\
4116Otherwise, any sort of insertion attempt will result in an error."),
4117 set_target_permissions, NULL,
4118 &setlist, &showlist);
4119
4120 add_setshow_boolean_cmd ("may-interrupt", class_support,
4121 &may_stop_1, _("\
4122Set permission to interrupt or signal the target."), _("\
4123Show permission to interrupt or signal the target."), _("\
4124When this permission is on, GDB may interrupt/stop the target's execution.\n\
4125Otherwise, any attempt to interrupt or stop will be ignored."),
4126 set_target_permissions, NULL,
4127 &setlist, &showlist);
6a3cb8e8 4128
78cbbba8
LM
4129 add_com ("flash-erase", no_class, flash_erase_command,
4130 _("Erase all flash memory regions."));
4131
6a3cb8e8
PA
4132 add_setshow_boolean_cmd ("auto-connect-native-target", class_support,
4133 &auto_connect_native_target, _("\
4134Set whether GDB may automatically connect to the native target."), _("\
4135Show whether GDB may automatically connect to the native target."), _("\
4136When on, and GDB is not connected to a target yet, GDB\n\
4137attempts \"run\" and other commands with the native target."),
4138 NULL, show_auto_connect_native_target,
4139 &setlist, &showlist);
c906108c 4140}
This page took 2.651933 seconds and 4 git commands to generate.