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