]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/remote.c
Change ptid_t::tid to ULONGEST
[thirdparty/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
3666a048 3 Copyright (C) 1988-2021 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 19
23860348 20/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 21
c906108c 22#include "defs.h"
c906108c
SS
23#include <ctype.h>
24#include <fcntl.h>
c906108c 25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "bfd.h"
28#include "symfile.h"
29#include "target.h"
3b3dac9b 30#include "process-stratum-target.h"
c906108c
SS
31#include "gdbcmd.h"
32#include "objfiles.h"
33#include "gdb-stabs.h"
34#include "gdbthread.h"
c2c6d25f 35#include "remote.h"
722247f1 36#include "remote-notif.h"
4e052eda 37#include "regcache.h"
fd0407d6 38#include "value.h"
76727919 39#include "observable.h"
a77053c2 40#include "solib.h"
37a105a1
DJ
41#include "cli/cli-decode.h"
42#include "cli/cli-setshow.h"
424163ea 43#include "target-descriptions.h"
a4453b7e 44#include "gdb_bfd.h"
268a13a5
TT
45#include "gdbsupport/filestuff.h"
46#include "gdbsupport/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
268a13a5 50#include "gdbsupport/gdb_sys_time.h"
c906108c 51
400b5eca 52#include "gdbsupport/event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
7e10abd1 59#include "gdbcore.h"
6240bebf 60
449092f6 61#include "remote-fileio.h"
a6b151f1 62#include "gdb/fileio.h"
53ce3c39 63#include <sys/stat.h>
dc146f7c 64#include "xml-support.h"
449092f6 65
fd79ecee
DJ
66#include "memory-map.h"
67
35b1e5cc
SS
68#include "tracepoint.h"
69#include "ax.h"
70#include "ax-gdb.h"
268a13a5 71#include "gdbsupport/agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
268a13a5
TT
75#include "gdbsupport/scoped_restore.h"
76#include "gdbsupport/environ.h"
77#include "gdbsupport/byte-vector.h"
4a72de73 78#include "gdbsupport/search.h"
39ef2f62 79#include <algorithm>
9d6eea31 80#include <unordered_map>
93b54c8e 81#include "async-event.h"
754487e2 82#include "gdbsupport/selftest.h"
35b1e5cc 83
f6ac5f3d
PA
84/* The remote target. */
85
d9f719f1
PA
86static const char remote_doc[] = N_("\
87Use a remote computer via a serial line, using a gdb-specific protocol.\n\
88Specify the serial device it is connected to\n\
89(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
90
cda09ec9
SM
91/* See remote.h */
92
02349803 93bool remote_debug = false;
cda09ec9 94
6b8edb51
PA
95#define OPAQUETHREADBYTES 8
96
97/* a 64 bit opaque identifier */
98typedef unsigned char threadref[OPAQUETHREADBYTES];
99
100struct gdb_ext_thread_info;
101struct threads_listing_context;
102typedef int (*rmt_thread_action) (threadref *ref, void *context);
103struct protocol_feature;
104struct packet_reg;
105
106struct stop_reply;
32603266 107typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
108
109/* Generic configuration support for packets the stub optionally
110 supports. Allows the user to specify the use of the packet as well
111 as allowing GDB to auto-detect support in the remote stub. */
112
113enum packet_support
114 {
115 PACKET_SUPPORT_UNKNOWN = 0,
116 PACKET_ENABLE,
117 PACKET_DISABLE
118 };
119
120/* Analyze a packet's return value and update the packet config
121 accordingly. */
122
123enum packet_result
124{
125 PACKET_ERROR,
126 PACKET_OK,
127 PACKET_UNKNOWN
128};
129
130struct threads_listing_context;
3c69da40
PA
131
132/* Stub vCont actions support.
133
134 Each field is a boolean flag indicating whether the stub reports
135 support for the corresponding action. */
136
137struct vCont_action_support
138{
139 /* vCont;t */
140 bool t = false;
141
142 /* vCont;r */
143 bool r = false;
144
145 /* vCont;s */
146 bool s = false;
147
148 /* vCont;S */
149 bool S = false;
150};
151
405feb71 152/* About this many threadids fit in a packet. */
3c69da40
PA
153
154#define MAXTHREADLISTRESULTS 32
155
156/* Data for the vFile:pread readahead cache. */
157
158struct readahead_cache
159{
160 /* Invalidate the readahead cache. */
161 void invalidate ();
162
163 /* Invalidate the readahead cache if it is holding data for FD. */
164 void invalidate_fd (int fd);
165
166 /* Serve pread from the readahead cache. Returns number of bytes
167 read, or 0 if the request can't be served from the cache. */
168 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
169
170 /* The file descriptor for the file that is being cached. -1 if the
171 cache is invalid. */
172 int fd = -1;
173
174 /* The offset into the file that the cache buffer corresponds
175 to. */
176 ULONGEST offset = 0;
177
178 /* The buffer holding the cache contents. */
179 gdb_byte *buf = nullptr;
180 /* The buffer's size. We try to read as much as fits into a packet
181 at a time. */
182 size_t bufsize = 0;
183
184 /* Cache hit and miss counters. */
185 ULONGEST hit_count = 0;
186 ULONGEST miss_count = 0;
187};
188
189/* Description of the remote protocol for a given architecture. */
190
191struct packet_reg
192{
193 long offset; /* Offset into G packet. */
194 long regnum; /* GDB's internal register number. */
195 LONGEST pnum; /* Remote protocol register number. */
196 int in_g_packet; /* Always part of G packet. */
197 /* long size in bytes; == register_size (target_gdbarch (), regnum);
198 at present. */
199 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
200 at present. */
201};
202
203struct remote_arch_state
204{
205 explicit remote_arch_state (struct gdbarch *gdbarch);
206
207 /* Description of the remote protocol registers. */
208 long sizeof_g_packet;
209
210 /* Description of the remote protocol registers indexed by REGNUM
211 (making an array gdbarch_num_regs in size). */
212 std::unique_ptr<packet_reg[]> regs;
213
214 /* This is the size (in chars) of the first response to the ``g''
215 packet. It is used as a heuristic when determining the maximum
216 size of memory-read and memory-write packets. A target will
217 typically only reserve a buffer large enough to hold the ``g''
218 packet. The size does not include packet overhead (headers and
219 trailers). */
220 long actual_register_packet_size;
221
222 /* This is the maximum size (in chars) of a non read/write packet.
223 It is also used as a cap on the size of read/write packets. */
224 long remote_packet_size;
225};
226
227/* Description of the remote protocol state for the currently
228 connected target. This is per-target state, and independent of the
229 selected architecture. */
230
231class remote_state
232{
233public:
234
235 remote_state ();
236 ~remote_state ();
237
238 /* Get the remote arch state for GDBARCH. */
239 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
240
241public: /* data */
242
243 /* A buffer to use for incoming packets, and its current size. The
244 buffer is grown dynamically for larger incoming packets.
245 Outgoing packets may also be constructed in this buffer.
8d64371b 246 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
247 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
248 packets. */
8d64371b 249 gdb::char_vector buf;
3c69da40
PA
250
251 /* True if we're going through initial connection setup (finding out
252 about the remote side's threads, relocating symbols, etc.). */
253 bool starting_up = false;
254
255 /* If we negotiated packet size explicitly (and thus can bypass
256 heuristics for the largest packet size that will not overflow
257 a buffer in the stub), this will be set to that packet size.
258 Otherwise zero, meaning to use the guessed size. */
259 long explicit_packet_size = 0;
260
261 /* remote_wait is normally called when the target is running and
262 waits for a stop reply packet. But sometimes we need to call it
263 when the target is already stopped. We can send a "?" packet
264 and have remote_wait read the response. Or, if we already have
265 the response, we can stash it in BUF and tell remote_wait to
266 skip calling getpkt. This flag is set when BUF contains a
267 stop reply packet and the target is not waiting. */
268 int cached_wait_status = 0;
269
270 /* True, if in no ack mode. That is, neither GDB nor the stub will
271 expect acks from each other. The connection is assumed to be
272 reliable. */
273 bool noack_mode = false;
274
275 /* True if we're connected in extended remote mode. */
276 bool extended = false;
277
278 /* True if we resumed the target and we're waiting for the target to
279 stop. In the mean time, we can't start another command/query.
280 The remote server wouldn't be ready to process it, so we'd
281 timeout waiting for a reply that would never come and eventually
282 we'd close the connection. This can happen in asynchronous mode
283 because we allow GDB commands while the target is running. */
284 bool waiting_for_stop_reply = false;
285
286 /* The status of the stub support for the various vCont actions. */
287 vCont_action_support supports_vCont;
5b6d1e4f
PA
288 /* Whether vCont support was probed already. This is a workaround
289 until packet_support is per-connection. */
290 bool supports_vCont_probed;
3c69da40
PA
291
292 /* True if the user has pressed Ctrl-C, but the target hasn't
293 responded to that. */
294 bool ctrlc_pending_p = false;
295
296 /* True if we saw a Ctrl-C while reading or writing from/to the
297 remote descriptor. At that point it is not safe to send a remote
298 interrupt packet, so we instead remember we saw the Ctrl-C and
299 process it once we're done with sending/receiving the current
300 packet, which should be shortly. If however that takes too long,
301 and the user presses Ctrl-C again, we offer to disconnect. */
302 bool got_ctrlc_during_io = false;
303
304 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
305 remote_open knows that we don't have a file open when the program
306 starts. */
307 struct serial *remote_desc = nullptr;
308
309 /* These are the threads which we last sent to the remote system. The
310 TID member will be -1 for all or -2 for not sent yet. */
311 ptid_t general_thread = null_ptid;
312 ptid_t continue_thread = null_ptid;
313
314 /* This is the traceframe which we last selected on the remote system.
315 It will be -1 if no traceframe is selected. */
316 int remote_traceframe_number = -1;
317
318 char *last_pass_packet = nullptr;
319
320 /* The last QProgramSignals packet sent to the target. We bypass
321 sending a new program signals list down to the target if the new
322 packet is exactly the same as the last we sent. IOW, we only let
323 the target know about program signals list changes. */
324 char *last_program_signals_packet = nullptr;
325
326 gdb_signal last_sent_signal = GDB_SIGNAL_0;
327
328 bool last_sent_step = false;
329
330 /* The execution direction of the last resume we got. */
331 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
332
333 char *finished_object = nullptr;
334 char *finished_annex = nullptr;
335 ULONGEST finished_offset = 0;
336
337 /* Should we try the 'ThreadInfo' query packet?
338
339 This variable (NOT available to the user: auto-detect only!)
340 determines whether GDB will use the new, simpler "ThreadInfo"
341 query or the older, more complex syntax for thread queries.
342 This is an auto-detect variable (set to true at each connect,
343 and set to false when the target fails to recognize it). */
344 bool use_threadinfo_query = false;
345 bool use_threadextra_query = false;
346
347 threadref echo_nextthread {};
348 threadref nextthread {};
349 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
350
351 /* The state of remote notification. */
352 struct remote_notif_state *notif_state = nullptr;
353
354 /* The branch trace configuration. */
355 struct btrace_config btrace_config {};
356
357 /* The argument to the last "vFile:setfs:" packet we sent, used
358 to avoid sending repeated unnecessary "vFile:setfs:" packets.
359 Initialized to -1 to indicate that no "vFile:setfs:" packet
360 has yet been sent. */
361 int fs_pid = -1;
362
363 /* A readahead cache for vFile:pread. Often, reading a binary
364 involves a sequence of small reads. E.g., when parsing an ELF
365 file. A readahead cache helps mostly the case of remote
366 debugging on a connection with higher latency, due to the
367 request/reply nature of the RSP. We only cache data for a single
368 file descriptor at a time. */
369 struct readahead_cache readahead_cache;
370
371 /* The list of already fetched and acknowledged stop events. This
372 queue is used for notification Stop, and other notifications
373 don't need queue for their events, because the notification
374 events of Stop can't be consumed immediately, so that events
375 should be queued first, and be consumed by remote_wait_{ns,as}
376 one per time. Other notifications can consume their events
377 immediately, so queue is not needed for them. */
953edf2b 378 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
379
380 /* Asynchronous signal handle registered as event loop source for
381 when we have pending events ready to be passed to the core. */
382 struct async_event_handler *remote_async_inferior_event_token = nullptr;
383
384 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
385 ``forever'' still use the normal timeout mechanism. This is
386 currently used by the ASYNC code to guarentee that target reads
387 during the initial connect always time-out. Once getpkt has been
388 modified to return a timeout indication and, in turn
389 remote_wait()/wait_for_inferior() have gained a timeout parameter
390 this can go away. */
391 int wait_forever_enabled_p = 1;
392
393private:
394 /* Mapping of remote protocol data for each gdbarch. Usually there
395 is only one entry here, though we may see more with stubs that
396 support multi-process. */
397 std::unordered_map<struct gdbarch *, remote_arch_state>
398 m_arch_states;
399};
6b8edb51 400
d9f719f1
PA
401static const target_info remote_target_info = {
402 "remote",
403 N_("Remote serial target in gdb-specific protocol"),
404 remote_doc
405};
406
3b3dac9b 407class remote_target : public process_stratum_target
f6ac5f3d
PA
408{
409public:
3b3dac9b 410 remote_target () = default;
6b8edb51 411 ~remote_target () override;
f6ac5f3d 412
d9f719f1
PA
413 const target_info &info () const override
414 { return remote_target_info; }
f6ac5f3d 415
121b3efd
PA
416 const char *connection_string () override;
417
f6ac5f3d
PA
418 thread_control_capabilities get_thread_control_capabilities () override
419 { return tc_schedlock; }
420
d9f719f1
PA
421 /* Open a remote connection. */
422 static void open (const char *, int);
423
f6ac5f3d
PA
424 void close () override;
425
426 void detach (inferior *, int) override;
427 void disconnect (const char *, int) override;
428
1192f124 429 void commit_resumed () override;
f6ac5f3d 430 void resume (ptid_t, int, enum gdb_signal) override;
b60cea74 431 ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
b4b1a226 432 bool has_pending_events () override;
f6ac5f3d
PA
433
434 void fetch_registers (struct regcache *, int) override;
435 void store_registers (struct regcache *, int) override;
436 void prepare_to_store (struct regcache *) override;
437
438 void files_info () override;
439
440 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
441
442 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
443 enum remove_bp_reason) override;
444
445
57810aa7
PA
446 bool stopped_by_sw_breakpoint () override;
447 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 448
57810aa7 449 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 450
57810aa7 451 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 452
57810aa7 453 bool stopped_by_watchpoint () override;
f6ac5f3d 454
57810aa7 455 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 456
57810aa7 457 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
458
459 int can_use_hw_breakpoint (enum bptype, int, int) override;
460
461 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
462
463 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
464
465 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
466
467 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
468 struct expression *) override;
469
470 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
471 struct expression *) override;
472
473 void kill () override;
474
475 void load (const char *, int) override;
476
477 void mourn_inferior () override;
478
adc6a863 479 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
480
481 int set_syscall_catchpoint (int, bool, int,
482 gdb::array_view<const int>) override;
483
adc6a863 484 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 485
57810aa7 486 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
487
488 const char *thread_name (struct thread_info *) override;
489
490 void update_thread_list () override;
491
a068643d 492 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
493
494 const char *extra_thread_info (struct thread_info *) override;
495
496 ptid_t get_ada_task_ptid (long lwp, long thread) override;
497
498 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
499 int handle_len,
500 inferior *inf) override;
501
3d6c6204
KB
502 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
503 override;
504
f6ac5f3d
PA
505 void stop (ptid_t) override;
506
507 void interrupt () override;
508
509 void pass_ctrlc () override;
510
511 enum target_xfer_status xfer_partial (enum target_object object,
512 const char *annex,
513 gdb_byte *readbuf,
514 const gdb_byte *writebuf,
515 ULONGEST offset, ULONGEST len,
516 ULONGEST *xfered_len) override;
517
518 ULONGEST get_memory_xfer_limit () override;
519
520 void rcmd (const char *command, struct ui_file *output) override;
521
522 char *pid_to_exec_file (int pid) override;
523
524 void log_command (const char *cmd) override
525 {
526 serial_log_command (this, cmd);
527 }
528
529 CORE_ADDR get_thread_local_address (ptid_t ptid,
530 CORE_ADDR load_module_addr,
531 CORE_ADDR offset) override;
532
57810aa7 533 bool can_execute_reverse () override;
f6ac5f3d
PA
534
535 std::vector<mem_region> memory_map () override;
536
537 void flash_erase (ULONGEST address, LONGEST length) override;
538
539 void flash_done () override;
540
541 const struct target_desc *read_description () override;
542
543 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
544 const gdb_byte *pattern, ULONGEST pattern_len,
545 CORE_ADDR *found_addrp) override;
546
57810aa7 547 bool can_async_p () override;
f6ac5f3d 548
57810aa7 549 bool is_async_p () override;
f6ac5f3d
PA
550
551 void async (int) override;
552
5b6d1e4f
PA
553 int async_wait_fd () override;
554
f6ac5f3d
PA
555 void thread_events (int) override;
556
557 int can_do_single_step () override;
558
559 void terminal_inferior () override;
560
561 void terminal_ours () override;
562
57810aa7 563 bool supports_non_stop () override;
f6ac5f3d 564
57810aa7 565 bool supports_multi_process () override;
f6ac5f3d 566
57810aa7 567 bool supports_disable_randomization () override;
f6ac5f3d 568
57810aa7 569 bool filesystem_is_local () override;
f6ac5f3d
PA
570
571
572 int fileio_open (struct inferior *inf, const char *filename,
573 int flags, int mode, int warn_if_slow,
574 int *target_errno) override;
575
576 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
577 ULONGEST offset, int *target_errno) override;
578
579 int fileio_pread (int fd, gdb_byte *read_buf, int len,
580 ULONGEST offset, int *target_errno) override;
581
582 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
583
584 int fileio_close (int fd, int *target_errno) override;
585
586 int fileio_unlink (struct inferior *inf,
587 const char *filename,
588 int *target_errno) override;
589
590 gdb::optional<std::string>
591 fileio_readlink (struct inferior *inf,
592 const char *filename,
593 int *target_errno) override;
594
57810aa7 595 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 596
57810aa7 597 bool supports_string_tracing () override;
f6ac5f3d 598
57810aa7 599 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 600
57810aa7 601 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
602
603 void trace_init () override;
604
605 void download_tracepoint (struct bp_location *location) override;
606
57810aa7 607 bool can_download_tracepoint () override;
f6ac5f3d
PA
608
609 void download_trace_state_variable (const trace_state_variable &tsv) override;
610
611 void enable_tracepoint (struct bp_location *location) override;
612
613 void disable_tracepoint (struct bp_location *location) override;
614
615 void trace_set_readonly_regions () override;
616
617 void trace_start () override;
618
619 int get_trace_status (struct trace_status *ts) override;
620
621 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
622 override;
623
624 void trace_stop () override;
625
626 int trace_find (enum trace_find_type type, int num,
627 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
628
57810aa7 629 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
630
631 int save_trace_data (const char *filename) override;
632
633 int upload_tracepoints (struct uploaded_tp **utpp) override;
634
635 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
636
637 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
638
639 int get_min_fast_tracepoint_insn_len () override;
640
641 void set_disconnected_tracing (int val) override;
642
643 void set_circular_trace_buffer (int val) override;
644
645 void set_trace_buffer_size (LONGEST val) override;
646
57810aa7
PA
647 bool set_trace_notes (const char *user, const char *notes,
648 const char *stopnotes) override;
f6ac5f3d
PA
649
650 int core_of_thread (ptid_t ptid) override;
651
652 int verify_memory (const gdb_byte *data,
653 CORE_ADDR memaddr, ULONGEST size) override;
654
655
57810aa7 656 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
657
658 void set_permissions () override;
659
660 bool static_tracepoint_marker_at (CORE_ADDR,
661 struct static_tracepoint_marker *marker)
662 override;
663
664 std::vector<static_tracepoint_marker>
665 static_tracepoint_markers_by_strid (const char *id) override;
666
667 traceframe_info_up traceframe_info () override;
668
57810aa7
PA
669 bool use_agent (bool use) override;
670 bool can_use_agent () override;
f6ac5f3d
PA
671
672 struct btrace_target_info *enable_btrace (ptid_t ptid,
673 const struct btrace_config *conf) override;
674
675 void disable_btrace (struct btrace_target_info *tinfo) override;
676
677 void teardown_btrace (struct btrace_target_info *tinfo) override;
678
679 enum btrace_error read_btrace (struct btrace_data *data,
680 struct btrace_target_info *btinfo,
681 enum btrace_read_type type) override;
682
683 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 684 bool augmented_libraries_svr4_read () override;
82d1f134 685 void follow_fork (inferior *, ptid_t, target_waitkind, bool, bool) override;
294c36eb 686 void follow_exec (inferior *, ptid_t, const char *) override;
f6ac5f3d
PA
687 int insert_fork_catchpoint (int) override;
688 int remove_fork_catchpoint (int) override;
689 int insert_vfork_catchpoint (int) override;
690 int remove_vfork_catchpoint (int) override;
691 int insert_exec_catchpoint (int) override;
692 int remove_exec_catchpoint (int) override;
693 enum exec_direction_kind execution_direction () override;
694
dbe692af
LM
695 bool supports_memory_tagging () override;
696
697 bool fetch_memtags (CORE_ADDR address, size_t len,
698 gdb::byte_vector &tags, int type) override;
699
700 bool store_memtags (CORE_ADDR address, size_t len,
701 const gdb::byte_vector &tags, int type) override;
702
6b8edb51
PA
703public: /* Remote specific methods. */
704
705 void remote_download_command_source (int num, ULONGEST addr,
706 struct command_line *cmds);
707
708 void remote_file_put (const char *local_file, const char *remote_file,
709 int from_tty);
710 void remote_file_get (const char *remote_file, const char *local_file,
711 int from_tty);
712 void remote_file_delete (const char *remote_file, int from_tty);
713
714 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
715 ULONGEST offset, int *remote_errno);
716 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
717 ULONGEST offset, int *remote_errno);
718 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
719 ULONGEST offset, int *remote_errno);
720
721 int remote_hostio_send_command (int command_bytes, int which_packet,
aa2838cc 722 int *remote_errno, const char **attachment,
6b8edb51
PA
723 int *attachment_len);
724 int remote_hostio_set_filesystem (struct inferior *inf,
725 int *remote_errno);
726 /* We should get rid of this and use fileio_open directly. */
727 int remote_hostio_open (struct inferior *inf, const char *filename,
728 int flags, int mode, int warn_if_slow,
729 int *remote_errno);
730 int remote_hostio_close (int fd, int *remote_errno);
731
732 int remote_hostio_unlink (inferior *inf, const char *filename,
733 int *remote_errno);
734
735 struct remote_state *get_remote_state ();
736
737 long get_remote_packet_size (void);
738 long get_memory_packet_size (struct memory_packet_config *config);
739
740 long get_memory_write_packet_size ();
741 long get_memory_read_packet_size ();
742
743 char *append_pending_thread_resumptions (char *p, char *endp,
744 ptid_t ptid);
d9f719f1 745 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 746 void start_remote (int from_tty, int extended_p);
00431a78 747 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
748
749 char *append_resumption (char *p, char *endp,
750 ptid_t ptid, int step, gdb_signal siggnal);
751 int remote_resume_with_vcont (ptid_t ptid, int step,
752 gdb_signal siggnal);
753
64d38fdd 754 thread_info *add_current_inferior_and_thread (const char *wait_status);
6b8edb51
PA
755
756 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
b60cea74 757 target_wait_flags options);
6b8edb51 758 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
b60cea74 759 target_wait_flags options);
6b8edb51
PA
760
761 ptid_t process_stop_reply (struct stop_reply *stop_reply,
762 target_waitstatus *status);
763
8f66807b
AB
764 ptid_t select_thread_for_ambiguous_stop_reply
765 (const struct target_waitstatus *status);
766
8a82de58 767 void remote_notice_new_inferior (ptid_t currthread, bool executing);
6b8edb51 768
1edb66d8 769 void print_one_stopped_thread (thread_info *thread);
6b8edb51
PA
770 void process_initial_stop_replies (int from_tty);
771
00431a78 772 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
773
774 void btrace_sync_conf (const btrace_config *conf);
775
776 void remote_btrace_maybe_reopen ();
777
778 void remove_new_fork_children (threads_listing_context *context);
779 void kill_new_fork_children (int pid);
780 void discard_pending_stop_replies (struct inferior *inf);
781 int stop_reply_queue_length ();
782
783 void check_pending_events_prevent_wildcard_vcont
2f63ec5c 784 (bool *may_global_wildcard_vcont);
6b8edb51
PA
785
786 void discard_pending_stop_replies_in_queue ();
787 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
788 struct stop_reply *queued_stop_reply (ptid_t ptid);
789 int peek_stop_reply (ptid_t ptid);
bb277751 790 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
791
792 void remote_stop_ns (ptid_t ptid);
793 void remote_interrupt_as ();
794 void remote_interrupt_ns ();
795
796 char *remote_get_noisy_reply ();
797 int remote_query_attached (int pid);
9ab8741a 798 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51
PA
799 int try_open_exec);
800
801 ptid_t remote_current_thread (ptid_t oldpid);
e3b2741b 802 ptid_t get_current_thread (const char *wait_status);
6b8edb51
PA
803
804 void set_thread (ptid_t ptid, int gen);
805 void set_general_thread (ptid_t ptid);
806 void set_continue_thread (ptid_t ptid);
807 void set_general_process ();
808
809 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
810
cecb1912 811 int remote_unpack_thread_info_response (const char *pkt, threadref *expectedref,
6b8edb51
PA
812 gdb_ext_thread_info *info);
813 int remote_get_threadinfo (threadref *threadid, int fieldset,
814 gdb_ext_thread_info *info);
815
cecb1912 816 int parse_threadlist_response (const char *pkt, int result_limit,
6b8edb51
PA
817 threadref *original_echo,
818 threadref *resultlist,
819 int *doneflag);
820 int remote_get_threadlist (int startflag, threadref *nextthread,
821 int result_limit, int *done, int *result_count,
822 threadref *threadlist);
823
824 int remote_threadlist_iterator (rmt_thread_action stepfunction,
825 void *context, int looplimit);
826
827 int remote_get_threads_with_ql (threads_listing_context *context);
828 int remote_get_threads_with_qxfer (threads_listing_context *context);
829 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
830
831 void extended_remote_restart ();
832
833 void get_offsets ();
834
835 void remote_check_symbols ();
836
837 void remote_supported_packet (const struct protocol_feature *feature,
838 enum packet_support support,
839 const char *argument);
840
841 void remote_query_supported ();
842
843 void remote_packet_size (const protocol_feature *feature,
844 packet_support support, const char *value);
845
846 void remote_serial_quit_handler ();
847
848 void remote_detach_pid (int pid);
849
850 void remote_vcont_probe ();
851
852 void remote_resume_with_hc (ptid_t ptid, int step,
853 gdb_signal siggnal);
854
855 void send_interrupt_sequence ();
856 void interrupt_query ();
857
858 void remote_notif_get_pending_events (notif_client *nc);
859
860 int fetch_register_using_p (struct regcache *regcache,
861 packet_reg *reg);
862 int send_g_packet ();
863 void process_g_packet (struct regcache *regcache);
864 void fetch_registers_using_g (struct regcache *regcache);
865 int store_register_using_P (const struct regcache *regcache,
866 packet_reg *reg);
867 void store_registers_using_G (const struct regcache *regcache);
868
869 void set_remote_traceframe ();
870
871 void check_binary_download (CORE_ADDR addr);
872
873 target_xfer_status remote_write_bytes_aux (const char *header,
874 CORE_ADDR memaddr,
875 const gdb_byte *myaddr,
876 ULONGEST len_units,
877 int unit_size,
878 ULONGEST *xfered_len_units,
879 char packet_format,
880 int use_length);
881
882 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
883 const gdb_byte *myaddr, ULONGEST len,
884 int unit_size, ULONGEST *xfered_len);
885
886 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
887 ULONGEST len_units,
888 int unit_size, ULONGEST *xfered_len_units);
889
890 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
891 ULONGEST memaddr,
892 ULONGEST len,
893 int unit_size,
894 ULONGEST *xfered_len);
895
896 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
897 gdb_byte *myaddr, ULONGEST len,
898 int unit_size,
899 ULONGEST *xfered_len);
900
901 packet_result remote_send_printf (const char *format, ...)
902 ATTRIBUTE_PRINTF (2, 3);
903
904 target_xfer_status remote_flash_write (ULONGEST address,
905 ULONGEST length, ULONGEST *xfered_len,
906 const gdb_byte *data);
907
908 int readchar (int timeout);
909
910 void remote_serial_write (const char *str, int len);
911
912 int putpkt (const char *buf);
913 int putpkt_binary (const char *buf, int cnt);
914
8d64371b
TT
915 int putpkt (const gdb::char_vector &buf)
916 {
917 return putpkt (buf.data ());
918 }
919
6b8edb51 920 void skip_frame ();
8d64371b
TT
921 long read_frame (gdb::char_vector *buf_p);
922 void getpkt (gdb::char_vector *buf, int forever);
923 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 924 int expecting_notif, int *is_notif);
8d64371b
TT
925 int getpkt_sane (gdb::char_vector *buf, int forever);
926 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
927 int *is_notif);
928 int remote_vkill (int pid);
929 void remote_kill_k ();
930
931 void extended_remote_disable_randomization (int val);
932 int extended_remote_run (const std::string &args);
933
934 void send_environment_packet (const char *action,
935 const char *packet,
936 const char *value);
937
938 void extended_remote_environment_support ();
3c69da40 939 void extended_remote_set_inferior_cwd ();
80152258 940
3c69da40
PA
941 target_xfer_status remote_write_qxfer (const char *object_name,
942 const char *annex,
943 const gdb_byte *writebuf,
944 ULONGEST offset, LONGEST len,
945 ULONGEST *xfered_len,
946 struct packet_config *packet);
43c3a0e4 947
3c69da40
PA
948 target_xfer_status remote_read_qxfer (const char *object_name,
949 const char *annex,
950 gdb_byte *readbuf, ULONGEST offset,
951 LONGEST len,
952 ULONGEST *xfered_len,
953 struct packet_config *packet);
43c3a0e4 954
3c69da40 955 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 956
3c69da40 957 bool vcont_r_supported ();
43c3a0e4 958
3c69da40 959 void packet_command (const char *args, int from_tty);
43c3a0e4 960
3c69da40 961private: /* data fields */
43c3a0e4 962
3c69da40
PA
963 /* The remote state. Don't reference this directly. Use the
964 get_remote_state method instead. */
965 remote_state m_remote_state;
43c3a0e4
PA
966};
967
3c69da40
PA
968static const target_info extended_remote_target_info = {
969 "extended-remote",
970 N_("Extended remote serial target in gdb-specific protocol"),
971 remote_doc
972};
ea9c271d 973
3c69da40
PA
974/* Set up the extended remote target by extending the standard remote
975 target and adding to it. */
976
977class extended_remote_target final : public remote_target
ea9c271d 978{
9d6eea31 979public:
3c69da40
PA
980 const target_info &info () const override
981 { return extended_remote_target_info; }
9d6eea31 982
3c69da40
PA
983 /* Open an extended-remote connection. */
984 static void open (const char *, int);
de44f5a7 985
3c69da40
PA
986 bool can_create_inferior () override { return true; }
987 void create_inferior (const char *, const std::string &,
988 char **, int) override;
9d6eea31 989
3c69da40 990 void detach (inferior *, int) override;
9d6eea31 991
3c69da40
PA
992 bool can_attach () override { return true; }
993 void attach (const char *, int) override;
be2a5f71 994
3c69da40
PA
995 void post_attach (int) override;
996 bool supports_disable_randomization () override;
997};
1e51243a 998
3c69da40 999/* Per-program-space data key. */
7b4a314f
TT
1000static const struct program_space_key<char, gdb::xfree_deleter<char>>
1001 remote_pspace_data;
2d717e4f 1002
3c69da40
PA
1003/* The variable registered as the control variable used by the
1004 remote exec-file commands. While the remote exec-file setting is
1005 per-program-space, the set/show machinery uses this as the
1006 location of the remote exec-file value. */
1007static char *remote_exec_file_var;
a6f3e723 1008
3c69da40
PA
1009/* The size to align memory write packets, when practical. The protocol
1010 does not guarantee any alignment, and gdb will generate short
1011 writes and unaligned writes, but even as a best-effort attempt this
1012 can improve bulk transfers. For instance, if a write is misaligned
1013 relative to the target's data bus, the stub may need to make an extra
1014 round trip fetching data from the target. This doesn't make a
1015 huge difference, but it's easy to do, so we try to be helpful.
82f73884 1016
3c69da40
PA
1017 The alignment chosen is arbitrary; usually data bus width is
1018 important here, not the possibly larger cache line size. */
1019enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 1020
3c69da40 1021/* Prototypes for local functions. */
74531fed 1022
3c69da40 1023static int hexnumlen (ULONGEST num);
782b2b07 1024
3c69da40 1025static int stubhex (int ch);
5d93a237 1026
3c69da40 1027static int hexnumstr (char *, ULONGEST);
048094ac 1028
3c69da40 1029static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1030
3c69da40 1031static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1032
3c69da40 1033static void print_packet (const char *);
747dc59d 1034
cecb1912 1035static int stub_unpack_int (const char *buff, int fieldlength);
5e4a05c4 1036
3c69da40 1037struct packet_config;
b73be471 1038
3c69da40 1039static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1040
3c69da40
PA
1041static void show_remote_protocol_packet_cmd (struct ui_file *file,
1042 int from_tty,
1043 struct cmd_list_element *c,
1044 const char *value);
8e88304f 1045
3c69da40 1046static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1047
3c69da40 1048static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1049
eefce37f 1050static bool remote_read_description_p (struct target_ops *target);
88b496c3 1051
05be00a8 1052static void remote_console_output (const char *msg);
5965e028 1053
3c69da40 1054static void remote_btrace_reset (remote_state *rs);
f4abbc16 1055
5b6d1e4f 1056static void remote_unpush_and_throw (remote_target *target);
15a201c8 1057
3c69da40 1058/* For "remote". */
80152258 1059
3c69da40 1060static struct cmd_list_element *remote_cmdlist;
9d6eea31 1061
3c69da40 1062/* For "set remote" and "show remote". */
6b8edb51 1063
3c69da40
PA
1064static struct cmd_list_element *remote_set_cmdlist;
1065static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1066
3c69da40 1067/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1068
491144b5 1069static bool use_range_stepping = true;
3c69da40 1070
c9d22089
SM
1071/* From the remote target's point of view, each thread is in one of these three
1072 states. */
1073enum class resume_state
1074{
1075 /* Not resumed - we haven't been asked to resume this thread. */
1076 NOT_RESUMED,
1077
1078 /* We have been asked to resume this thread, but haven't sent a vCont action
1079 for it yet. We'll need to consider it next time commit_resume is
1080 called. */
1081 RESUMED_PENDING_VCONT,
1082
1083 /* We have been asked to resume this thread, and we have sent a vCont action
1084 for it. */
1085 RESUMED,
1086};
1087
1088/* Information about a thread's pending vCont-resume. Used when a thread is in
1089 the remote_resume_state::RESUMED_PENDING_VCONT state. remote_target::resume
1090 stores this information which is then picked up by
1091 remote_target::commit_resume to know which is the proper action for this
1092 thread to include in the vCont packet. */
1093struct resumed_pending_vcont_info
1094{
1095 /* True if the last resume call for this thread was a step request, false
1096 if a continue request. */
1097 bool step;
1098
1099 /* The signal specified in the last resume call for this thread. */
1100 gdb_signal sig;
1101};
1102
7aabaf9d
SM
1103/* Private data that we'll store in (struct thread_info)->priv. */
1104struct remote_thread_info : public private_thread_info
dc146f7c 1105{
7aabaf9d
SM
1106 std::string extra;
1107 std::string name;
1108 int core = -1;
799a2abe 1109
f6327dcb
KB
1110 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1111 sequence of bytes. */
7aabaf9d 1112 gdb::byte_vector thread_handle;
f6327dcb 1113
799a2abe 1114 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1115 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1116
1117 /* This is set to the data address of the access causing the target
1118 to stop for a watchpoint. */
7aabaf9d 1119 CORE_ADDR watch_data_address = 0;
85ad3aaf 1120
c9d22089 1121 /* Get the thread's resume state. */
a6c11cbb 1122 enum resume_state get_resume_state () const
c9d22089
SM
1123 {
1124 return m_resume_state;
1125 }
1126
1127 /* Put the thread in the NOT_RESUMED state. */
1128 void set_not_resumed ()
1129 {
1130 m_resume_state = resume_state::NOT_RESUMED;
1131 }
85ad3aaf 1132
c9d22089
SM
1133 /* Put the thread in the RESUMED_PENDING_VCONT state. */
1134 void set_resumed_pending_vcont (bool step, gdb_signal sig)
1135 {
1136 m_resume_state = resume_state::RESUMED_PENDING_VCONT;
1137 m_resumed_pending_vcont_info.step = step;
1138 m_resumed_pending_vcont_info.sig = sig;
1139 }
85ad3aaf 1140
c9d22089 1141 /* Get the information this thread's pending vCont-resumption.
85ad3aaf 1142
c9d22089
SM
1143 Must only be called if the thread is in the RESUMED_PENDING_VCONT resume
1144 state. */
1145 const struct resumed_pending_vcont_info &resumed_pending_vcont_info () const
1146 {
1147 gdb_assert (m_resume_state == resume_state::RESUMED_PENDING_VCONT);
1148
1149 return m_resumed_pending_vcont_info;
1150 }
1151
1152 /* Put the thread in the VCONT_RESUMED state. */
1153 void set_resumed ()
1154 {
1155 m_resume_state = resume_state::RESUMED;
1156 }
1157
1158private:
1159 /* Resume state for this thread. This is used to implement vCont action
1160 coalescing (only when the target operates in non-stop mode).
1161
1162 remote_target::resume moves the thread to the RESUMED_PENDING_VCONT state,
1163 which notes that this thread must be considered in the next commit_resume
1164 call.
1165
1166 remote_target::commit_resume sends a vCont packet with actions for the
1167 threads in the RESUMED_PENDING_VCONT state and moves them to the
1168 VCONT_RESUMED state.
1169
1170 When reporting a stop to the core for a thread, that thread is moved back
1171 to the NOT_RESUMED state. */
1172 enum resume_state m_resume_state = resume_state::NOT_RESUMED;
1173
1174 /* Extra info used if the thread is in the RESUMED_PENDING_VCONT state. */
1175 struct resumed_pending_vcont_info m_resumed_pending_vcont_info;
dc146f7c
VP
1176};
1177
de44f5a7 1178remote_state::remote_state ()
8d64371b 1179 : buf (400)
de44f5a7 1180{
de44f5a7
PA
1181}
1182
1183remote_state::~remote_state ()
1184{
1185 xfree (this->last_pass_packet);
1186 xfree (this->last_program_signals_packet);
de44f5a7
PA
1187 xfree (this->finished_object);
1188 xfree (this->finished_annex);
cf792862
TT
1189}
1190
35b1e5cc
SS
1191/* Utility: generate error from an incoming stub packet. */
1192static void
1193trace_error (char *buf)
1194{
1195 if (*buf++ != 'E')
1196 return; /* not an error msg */
1197 switch (*buf)
1198 {
1199 case '1': /* malformed packet error */
1200 if (*++buf == '0') /* general case: */
1201 error (_("remote.c: error in outgoing packet."));
1202 else
1203 error (_("remote.c: error in outgoing packet at field #%ld."),
1204 strtol (buf, NULL, 16));
35b1e5cc
SS
1205 default:
1206 error (_("Target returns error code '%s'."), buf);
1207 }
1208}
1209
1210/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1211
6b8edb51
PA
1212char *
1213remote_target::remote_get_noisy_reply ()
35b1e5cc 1214{
b6bb3468
PA
1215 struct remote_state *rs = get_remote_state ();
1216
35b1e5cc
SS
1217 do /* Loop on reply from remote stub. */
1218 {
1219 char *buf;
a744cf53 1220
0df8b418 1221 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1222 getpkt (&rs->buf, 0);
1223 buf = rs->buf.data ();
ad91cd99 1224 if (buf[0] == 'E')
35b1e5cc 1225 trace_error (buf);
61012eef 1226 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1227 {
1228 ULONGEST ul;
1229 CORE_ADDR from, to, org_to;
256642e8 1230 const char *p, *pp;
dde08ee1 1231 int adjusted_size = 0;
7556d4a4 1232 int relocated = 0;
dde08ee1
PA
1233
1234 p = buf + strlen ("qRelocInsn:");
1235 pp = unpack_varlen_hex (p, &ul);
1236 if (*pp != ';')
cb91c06a 1237 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1238 from = ul;
1239
1240 p = pp + 1;
a9cbf802 1241 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1242 to = ul;
1243
1244 org_to = to;
1245
a70b8144 1246 try
dde08ee1 1247 {
f5656ead 1248 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1249 relocated = 1;
dde08ee1 1250 }
230d2906 1251 catch (const gdb_exception &ex)
7556d4a4
PA
1252 {
1253 if (ex.error == MEMORY_ERROR)
1254 {
1255 /* Propagate memory errors silently back to the
1256 target. The stub may have limited the range of
1257 addresses we can write to, for example. */
1258 }
1259 else
1260 {
1261 /* Something unexpectedly bad happened. Be verbose
1262 so we can tell what, and propagate the error back
1263 to the stub, so it doesn't get stuck waiting for
1264 a response. */
1265 exception_fprintf (gdb_stderr, ex,
1266 _("warning: relocating instruction: "));
1267 }
1268 putpkt ("E01");
1269 }
1270
1271 if (relocated)
dde08ee1
PA
1272 {
1273 adjusted_size = to - org_to;
1274
8d64371b 1275 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1276 putpkt (buf);
1277 }
dde08ee1 1278 }
ad91cd99 1279 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1280 remote_console_output (buf + 1); /* 'O' message from stub */
1281 else
0df8b418 1282 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1283 }
1284 while (1);
1285}
3c3bea1c 1286
9d6eea31
PA
1287struct remote_arch_state *
1288remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1289{
43c3a0e4
PA
1290 remote_arch_state *rsa;
1291
1292 auto it = this->m_arch_states.find (gdbarch);
1293 if (it == this->m_arch_states.end ())
9d6eea31 1294 {
43c3a0e4
PA
1295 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1296 std::forward_as_tuple (gdbarch),
1297 std::forward_as_tuple (gdbarch));
1298 rsa = &p.first->second;
9d6eea31
PA
1299
1300 /* Make sure that the packet buffer is plenty big enough for
1301 this architecture. */
8d64371b
TT
1302 if (this->buf.size () < rsa->remote_packet_size)
1303 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1304 }
43c3a0e4
PA
1305 else
1306 rsa = &it->second;
1307
1308 return rsa;
d01949b6
AC
1309}
1310
0b83947e
DJ
1311/* Fetch the global remote target state. */
1312
6b8edb51
PA
1313remote_state *
1314remote_target::get_remote_state ()
0b83947e
DJ
1315{
1316 /* Make sure that the remote architecture state has been
1317 initialized, because doing so might reallocate rs->buf. Any
1318 function which calls getpkt also needs to be mindful of changes
1319 to rs->buf, but this call limits the number of places which run
1320 into trouble. */
3c69da40 1321 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1322
3c69da40 1323 return &m_remote_state;
0b83947e
DJ
1324}
1325
94585166
DB
1326/* Fetch the remote exec-file from the current program space. */
1327
1328static const char *
1329get_remote_exec_file (void)
1330{
1331 char *remote_exec_file;
1332
7b4a314f 1333 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1334 if (remote_exec_file == NULL)
1335 return "";
1336
1337 return remote_exec_file;
1338}
1339
1340/* Set the remote exec file for PSPACE. */
1341
1342static void
1343set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1344 const char *remote_exec_file)
94585166 1345{
7b4a314f 1346 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1347
1348 xfree (old_file);
7b4a314f 1349 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1350}
1351
1352/* The "set/show remote exec-file" set command hook. */
1353
1354static void
eb4c3f4a 1355set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1356 struct cmd_list_element *c)
1357{
1358 gdb_assert (remote_exec_file_var != NULL);
1359 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1360}
1361
1362/* The "set/show remote exec-file" show command hook. */
1363
1364static void
1365show_remote_exec_file (struct ui_file *file, int from_tty,
1366 struct cmd_list_element *cmd, const char *value)
1367{
acdf84a6 1368 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
94585166
DB
1369}
1370
c21236dc
PA
1371static int
1372map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1373{
74ca34ce 1374 int regnum, num_remote_regs, offset;
74ca34ce 1375 struct packet_reg **remote_regs;
ea9c271d 1376
4a22f64d 1377 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1378 {
c21236dc 1379 struct packet_reg *r = &regs[regnum];
baef701f 1380
4a22f64d 1381 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1382 /* Do not try to fetch zero-sized (placeholder) registers. */
1383 r->pnum = -1;
1384 else
1385 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1386
b323314b 1387 r->regnum = regnum;
74ca34ce
DJ
1388 }
1389
1390 /* Define the g/G packet format as the contents of each register
1391 with a remote protocol number, in order of ascending protocol
1392 number. */
1393
224c3ddb 1394 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1395 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1396 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1397 regnum++)
c21236dc
PA
1398 if (regs[regnum].pnum != -1)
1399 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1400
39ef2f62
CB
1401 std::sort (remote_regs, remote_regs + num_remote_regs,
1402 [] (const packet_reg *a, const packet_reg *b)
1403 { return a->pnum < b->pnum; });
74ca34ce
DJ
1404
1405 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1406 {
1407 remote_regs[regnum]->in_g_packet = 1;
1408 remote_regs[regnum]->offset = offset;
4a22f64d 1409 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1410 }
1411
c21236dc
PA
1412 return offset;
1413}
1414
1415/* Given the architecture described by GDBARCH, return the remote
1416 protocol register's number and the register's offset in the g/G
1417 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1418 If the target does not have a mapping for REGNUM, return false,
1419 otherwise, return true. */
1420
1421int
1422remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1423 int *pnum, int *poffset)
1424{
c21236dc
PA
1425 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1426
b80406ac 1427 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1428
b80406ac 1429 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1430
1431 *pnum = regs[regnum].pnum;
1432 *poffset = regs[regnum].offset;
1433
c21236dc
PA
1434 return *pnum != -1;
1435}
1436
9d6eea31 1437remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1438{
c21236dc
PA
1439 /* Use the architecture to build a regnum<->pnum table, which will be
1440 1:1 unless a feature set specifies otherwise. */
9d6eea31 1441 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1442
74ca34ce
DJ
1443 /* Record the maximum possible size of the g packet - it may turn out
1444 to be smaller. */
9d6eea31
PA
1445 this->sizeof_g_packet
1446 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1447
0df8b418 1448 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1449 remote stubs have a hardwired buffer size of 400 bytes
1450 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1451 as the maximum packet-size to ensure that the packet and an extra
1452 NUL character can always fit in the buffer. This stops GDB
1453 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1454 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1455 this->remote_packet_size = 400 - 1;
d01949b6 1456
ea9c271d 1457 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1458 this->actual_register_packet_size = 0;
ea9c271d
DJ
1459
1460 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1461 default, adjust the size accordingly. Remember that each byte is
1462 encoded as two characters. 32 is the overhead for the packet
1463 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1464 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1465 little. */
9d6eea31
PA
1466 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1467 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1468}
1469
6b8edb51
PA
1470/* Get a pointer to the current remote target. If not connected to a
1471 remote target, return NULL. */
1472
1473static remote_target *
1474get_current_remote_target ()
1475{
5b6d1e4f 1476 target_ops *proc_target = current_inferior ()->process_target ();
6b8edb51
PA
1477 return dynamic_cast<remote_target *> (proc_target);
1478}
1479
ea9c271d
DJ
1480/* Return the current allowed size of a remote packet. This is
1481 inferred from the current architecture, and should be used to
1482 limit the length of outgoing packets. */
6b8edb51
PA
1483long
1484remote_target::get_remote_packet_size ()
ea9c271d 1485{
be2a5f71 1486 struct remote_state *rs = get_remote_state ();
9d6eea31 1487 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1488
be2a5f71
DJ
1489 if (rs->explicit_packet_size)
1490 return rs->explicit_packet_size;
1491
ea9c271d 1492 return rsa->remote_packet_size;
d01949b6
AC
1493}
1494
ad10f812 1495static struct packet_reg *
5cd63fda
PA
1496packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1497 long regnum)
ad10f812 1498{
5cd63fda 1499 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1500 return NULL;
1501 else
ad10f812 1502 {
ea9c271d 1503 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1504
b323314b
AC
1505 gdb_assert (r->regnum == regnum);
1506 return r;
ad10f812 1507 }
ad10f812
AC
1508}
1509
1510static struct packet_reg *
5cd63fda
PA
1511packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1512 LONGEST pnum)
ad10f812 1513{
b323314b 1514 int i;
a744cf53 1515
5cd63fda 1516 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1517 {
ea9c271d 1518 struct packet_reg *r = &rsa->regs[i];
a744cf53 1519
b323314b
AC
1520 if (r->pnum == pnum)
1521 return r;
ad10f812
AC
1522 }
1523 return NULL;
d01949b6
AC
1524}
1525
9a7071a8
JB
1526/* Allow the user to specify what sequence to send to the remote
1527 when he requests a program interruption: Although ^C is usually
1528 what remote systems expect (this is the default, here), it is
1529 sometimes preferable to send a break. On other systems such
1530 as the Linux kernel, a break followed by g, which is Magic SysRq g
1531 is required in order to interrupt the execution. */
1532const char interrupt_sequence_control_c[] = "Ctrl-C";
1533const char interrupt_sequence_break[] = "BREAK";
1534const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1535static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1536 {
1537 interrupt_sequence_control_c,
1538 interrupt_sequence_break,
1539 interrupt_sequence_break_g,
1540 NULL
1541 };
1542static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1543
1544static void
1545show_interrupt_sequence (struct ui_file *file, int from_tty,
1546 struct cmd_list_element *c,
1547 const char *value)
1548{
1549 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1550 fprintf_filtered (file,
1551 _("Send the ASCII ETX character (Ctrl-c) "
1552 "to the remote target to interrupt the "
1553 "execution of the program.\n"));
1554 else if (interrupt_sequence_mode == interrupt_sequence_break)
1555 fprintf_filtered (file,
1556 _("send a break signal to the remote target "
1557 "to interrupt the execution of the program.\n"));
1558 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1559 fprintf_filtered (file,
1560 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1561 "the remote target to interrupt the execution "
1562 "of Linux kernel.\n"));
1563 else
1564 internal_error (__FILE__, __LINE__,
1565 _("Invalid value for interrupt_sequence_mode: %s."),
1566 interrupt_sequence_mode);
1567}
6426a772 1568
9a7071a8
JB
1569/* This boolean variable specifies whether interrupt_sequence is sent
1570 to the remote target when gdb connects to it.
1571 This is mostly needed when you debug the Linux kernel: The Linux kernel
1572 expects BREAK g which is Magic SysRq g for connecting gdb. */
491144b5 1573static bool interrupt_on_connect = false;
c906108c 1574
9a7071a8
JB
1575/* This variable is used to implement the "set/show remotebreak" commands.
1576 Since these commands are now deprecated in favor of "set/show remote
1577 interrupt-sequence", it no longer has any effect on the code. */
491144b5 1578static bool remote_break;
c906108c 1579
9a7071a8 1580static void
eb4c3f4a 1581set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1582{
1583 if (remote_break)
1584 interrupt_sequence_mode = interrupt_sequence_break;
1585 else
1586 interrupt_sequence_mode = interrupt_sequence_control_c;
1587}
1588
1589static void
1590show_remotebreak (struct ui_file *file, int from_tty,
1591 struct cmd_list_element *c,
1592 const char *value)
1593{
1594}
1595
c906108c
SS
1596/* This variable sets the number of bits in an address that are to be
1597 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1598 leading zeros, the entire address would be sent. This variable
c906108c
SS
1599 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1600 initial implementation of remote.c restricted the address sent in
1601 memory packets to ``host::sizeof long'' bytes - (typically 32
1602 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1603 address was never sent. Since fixing this bug may cause a break in
85102364 1604 some remote targets this variable is principally provided to
23860348 1605 facilitate backward compatibility. */
c906108c 1606
883b9c6c 1607static unsigned int remote_address_size;
c906108c 1608
11cf8741 1609\f
11cf8741 1610/* User configurable variables for the number of characters in a
ea9c271d
DJ
1611 memory read/write packet. MIN (rsa->remote_packet_size,
1612 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1613 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1614 (speed up transfers). The variables ``preferred_*'' (the user
1615 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1616 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1617
1618struct memory_packet_config
1619{
a121b7c1 1620 const char *name;
11cf8741
JM
1621 long size;
1622 int fixed_p;
1623};
1624
cc0be08f
PA
1625/* The default max memory-write-packet-size, when the setting is
1626 "fixed". The 16k is historical. (It came from older GDB's using
1627 alloca for buffers and the knowledge (folklore?) that some hosts
1628 don't cope very well with large alloca calls.) */
1629#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1630
1631/* The minimum remote packet size for memory transfers. Ensures we
1632 can write at least one byte. */
1633#define MIN_MEMORY_PACKET_SIZE 20
1634
cc0be08f
PA
1635/* Get the memory packet size, assuming it is fixed. */
1636
1637static long
1638get_fixed_memory_packet_size (struct memory_packet_config *config)
1639{
1640 gdb_assert (config->fixed_p);
1641
1642 if (config->size <= 0)
1643 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1644 else
1645 return config->size;
1646}
1647
11cf8741
JM
1648/* Compute the current size of a read/write packet. Since this makes
1649 use of ``actual_register_packet_size'' the computation is dynamic. */
1650
6b8edb51
PA
1651long
1652remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1653{
d01949b6 1654 struct remote_state *rs = get_remote_state ();
9d6eea31 1655 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1656
11cf8741
JM
1657 long what_they_get;
1658 if (config->fixed_p)
cc0be08f 1659 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1660 else
1661 {
ea9c271d 1662 what_they_get = get_remote_packet_size ();
23860348 1663 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1664 if (config->size > 0
1665 && what_they_get > config->size)
1666 what_they_get = config->size;
be2a5f71
DJ
1667
1668 /* Limit it to the size of the targets ``g'' response unless we have
1669 permission from the stub to use a larger packet size. */
1670 if (rs->explicit_packet_size == 0
1671 && rsa->actual_register_packet_size > 0
1672 && what_they_get > rsa->actual_register_packet_size)
1673 what_they_get = rsa->actual_register_packet_size;
11cf8741 1674 }
a5c0808e
PA
1675 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1676 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1677
1678 /* Make sure there is room in the global buffer for this packet
1679 (including its trailing NUL byte). */
8d64371b
TT
1680 if (rs->buf.size () < what_they_get + 1)
1681 rs->buf.resize (2 * what_they_get);
6d820c5c 1682
11cf8741
JM
1683 return what_they_get;
1684}
1685
0df8b418 1686/* Update the size of a read/write packet. If they user wants
23860348 1687 something really big then do a sanity check. */
11cf8741
JM
1688
1689static void
ac88e2de 1690set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1691{
1692 int fixed_p = config->fixed_p;
1693 long size = config->size;
a744cf53 1694
11cf8741 1695 if (args == NULL)
8a3fe4f8 1696 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1697 else if (strcmp (args, "hard") == 0
1698 || strcmp (args, "fixed") == 0)
1699 fixed_p = 1;
1700 else if (strcmp (args, "soft") == 0
1701 || strcmp (args, "limit") == 0)
1702 fixed_p = 0;
1703 else
1704 {
1705 char *end;
a744cf53 1706
11cf8741
JM
1707 size = strtoul (args, &end, 0);
1708 if (args == end)
8a3fe4f8 1709 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1710
1711 /* Instead of explicitly capping the size of a packet to or
1712 disallowing it, the user is allowed to set the size to
1713 something arbitrarily large. */
11cf8741 1714 }
a5c0808e 1715
23860348 1716 /* Extra checks? */
11cf8741
JM
1717 if (fixed_p && !config->fixed_p)
1718 {
cc0be08f
PA
1719 /* So that the query shows the correct value. */
1720 long query_size = (size <= 0
1721 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1722 : size);
1723
e2e0b3e5
AC
1724 if (! query (_("The target may not be able to correctly handle a %s\n"
1725 "of %ld bytes. Change the packet size? "),
cc0be08f 1726 config->name, query_size))
8a3fe4f8 1727 error (_("Packet size not changed."));
11cf8741 1728 }
23860348 1729 /* Update the config. */
11cf8741
JM
1730 config->fixed_p = fixed_p;
1731 config->size = size;
1732}
1733
1734static void
1735show_memory_packet_size (struct memory_packet_config *config)
1736{
cc0be08f
PA
1737 if (config->size == 0)
1738 printf_filtered (_("The %s is 0 (default). "), config->name);
1739 else
1740 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1741 if (config->fixed_p)
a3f17187 1742 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1743 get_fixed_memory_packet_size (config));
11cf8741 1744 else
cc0be08f 1745 {
6b8edb51 1746 remote_target *remote = get_current_remote_target ();
cc0be08f 1747
6b8edb51 1748 if (remote != NULL)
cc0be08f 1749 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1750 remote->get_memory_packet_size (config));
cc0be08f
PA
1751 else
1752 puts_filtered ("The actual limit will be further reduced "
1753 "dependent on the target.\n");
1754 }
11cf8741
JM
1755}
1756
5b6d1e4f 1757/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1758static struct memory_packet_config memory_write_packet_config =
1759{
1760 "memory-write-packet-size",
1761};
1762
1763static void
ac88e2de 1764set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1765{
1766 set_memory_packet_size (args, &memory_write_packet_config);
1767}
1768
1769static void
ac88e2de 1770show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1771{
1772 show_memory_packet_size (&memory_write_packet_config);
1773}
1774
055303e2
AB
1775/* Show the number of hardware watchpoints that can be used. */
1776
1777static void
1778show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1779 struct cmd_list_element *c,
1780 const char *value)
1781{
1782 fprintf_filtered (file, _("The maximum number of target hardware "
1783 "watchpoints is %s.\n"), value);
1784}
1785
1786/* Show the length limit (in bytes) for hardware watchpoints. */
1787
1788static void
1789show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1790 struct cmd_list_element *c,
1791 const char *value)
1792{
1793 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1794 "hardware watchpoint is %s.\n"), value);
1795}
1796
1797/* Show the number of hardware breakpoints that can be used. */
1798
1799static void
1800show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1801 struct cmd_list_element *c,
1802 const char *value)
1803{
1804 fprintf_filtered (file, _("The maximum number of target hardware "
1805 "breakpoints is %s.\n"), value);
1806}
1807
6cc8564b
LM
1808/* Controls the maximum number of characters to display in the debug output
1809 for each remote packet. The remaining characters are omitted. */
1810
1811static int remote_packet_max_chars = 512;
1812
1813/* Show the maximum number of characters to display for each remote packet
1814 when remote debugging is enabled. */
1815
1816static void
1817show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1818 struct cmd_list_element *c,
1819 const char *value)
1820{
1821 fprintf_filtered (file, _("Number of remote packet characters to "
1822 "display is %s.\n"), value);
1823}
1824
6b8edb51
PA
1825long
1826remote_target::get_memory_write_packet_size ()
11cf8741
JM
1827{
1828 return get_memory_packet_size (&memory_write_packet_config);
1829}
1830
5b6d1e4f 1831/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1832static struct memory_packet_config memory_read_packet_config =
1833{
1834 "memory-read-packet-size",
1835};
1836
1837static void
ac88e2de 1838set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1839{
1840 set_memory_packet_size (args, &memory_read_packet_config);
1841}
1842
1843static void
ac88e2de 1844show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1845{
1846 show_memory_packet_size (&memory_read_packet_config);
1847}
1848
6b8edb51
PA
1849long
1850remote_target::get_memory_read_packet_size ()
11cf8741
JM
1851{
1852 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1853
11cf8741
JM
1854 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1855 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1856 increased beyond this. */
1857 if (size > get_remote_packet_size ())
1858 size = get_remote_packet_size ();
11cf8741
JM
1859 return size;
1860}
1861
11cf8741 1862\f
5a2468f5 1863
5a2468f5
JM
1864struct packet_config
1865 {
bb572ddd
DJ
1866 const char *name;
1867 const char *title;
4082afcc
PA
1868
1869 /* If auto, GDB auto-detects support for this packet or feature,
1870 either through qSupported, or by trying the packet and looking
1871 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1872 packet. If false, the packet is disabled. Configs that don't
1873 have an associated command always have this set to auto. */
7f19b9a2 1874 enum auto_boolean detect;
4082afcc
PA
1875
1876 /* Does the target support this packet? */
5a2468f5
JM
1877 enum packet_support support;
1878 };
1879
4082afcc
PA
1880static enum packet_support packet_config_support (struct packet_config *config);
1881static enum packet_support packet_support (int packet);
5a2468f5
JM
1882
1883static void
fba45db2 1884show_packet_config_cmd (struct packet_config *config)
5a2468f5 1885{
a121b7c1 1886 const char *support = "internal-error";
a744cf53 1887
4082afcc 1888 switch (packet_config_support (config))
5a2468f5
JM
1889 {
1890 case PACKET_ENABLE:
1891 support = "enabled";
1892 break;
1893 case PACKET_DISABLE:
1894 support = "disabled";
1895 break;
1896 case PACKET_SUPPORT_UNKNOWN:
1897 support = "unknown";
1898 break;
1899 }
1900 switch (config->detect)
1901 {
7f19b9a2 1902 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1903 printf_filtered (_("Support for the `%s' packet "
1904 "is auto-detected, currently %s.\n"),
37a105a1 1905 config->name, support);
5a2468f5 1906 break;
7f19b9a2
AC
1907 case AUTO_BOOLEAN_TRUE:
1908 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1909 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1910 config->name, support);
8e248173 1911 break;
5a2468f5
JM
1912 }
1913}
1914
1915static void
bb572ddd
DJ
1916add_packet_config_cmd (struct packet_config *config, const char *name,
1917 const char *title, int legacy)
d471ea57 1918{
5a2468f5
JM
1919 char *set_doc;
1920 char *show_doc;
d471ea57 1921 char *cmd_name;
3ed07be4 1922
5a2468f5
JM
1923 config->name = name;
1924 config->title = title;
590042fc 1925 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
b435e160 1926 name, title);
3e43a32a 1927 show_doc = xstrprintf ("Show current use of remote "
590042fc 1928 "protocol `%s' (%s) packet.",
b435e160 1929 name, title);
d471ea57 1930 /* set/show TITLE-packet {auto,on,off} */
b435e160 1931 cmd_name = xstrprintf ("%s-packet", title);
5e84b7ee
SM
1932 set_show_commands cmds
1933 = add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1934 &config->detect, set_doc,
1935 show_doc, NULL, /* help_doc */
1936 NULL,
1937 show_remote_protocol_packet_cmd,
1938 &remote_set_cmdlist, &remote_show_cmdlist);
1939
1eefb858
TT
1940 /* The command code copies the documentation strings. */
1941 xfree (set_doc);
1942 xfree (show_doc);
5e84b7ee 1943
23860348 1944 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1945 if (legacy)
1946 {
1947 char *legacy_name;
a744cf53 1948
b435e160 1949 legacy_name = xstrprintf ("%s-packet", name);
5e84b7ee 1950 add_alias_cmd (legacy_name, cmds.set, class_obscure, 0,
bb572ddd 1951 &remote_set_cmdlist);
5e84b7ee 1952 add_alias_cmd (legacy_name, cmds.show, class_obscure, 0,
bb572ddd 1953 &remote_show_cmdlist);
d471ea57 1954 }
5a2468f5
JM
1955}
1956
d471ea57 1957static enum packet_result
a76d924d 1958packet_check_result (const char *buf)
5a2468f5 1959{
d471ea57 1960 if (buf[0] != '\0')
5a2468f5 1961 {
d471ea57 1962 /* The stub recognized the packet request. Check that the
23860348 1963 operation succeeded. */
a76d924d
DJ
1964 if (buf[0] == 'E'
1965 && isxdigit (buf[1]) && isxdigit (buf[2])
1966 && buf[3] == '\0')
85102364 1967 /* "Enn" - definitely an error. */
a76d924d
DJ
1968 return PACKET_ERROR;
1969
1970 /* Always treat "E." as an error. This will be used for
1971 more verbose error messages, such as E.memtypes. */
1972 if (buf[0] == 'E' && buf[1] == '.')
1973 return PACKET_ERROR;
1974
1975 /* The packet may or may not be OK. Just assume it is. */
1976 return PACKET_OK;
1977 }
1978 else
1979 /* The stub does not support the packet. */
1980 return PACKET_UNKNOWN;
1981}
1982
8d64371b
TT
1983static enum packet_result
1984packet_check_result (const gdb::char_vector &buf)
1985{
1986 return packet_check_result (buf.data ());
1987}
1988
a76d924d
DJ
1989static enum packet_result
1990packet_ok (const char *buf, struct packet_config *config)
1991{
1992 enum packet_result result;
1993
4082afcc
PA
1994 if (config->detect != AUTO_BOOLEAN_TRUE
1995 && config->support == PACKET_DISABLE)
1996 internal_error (__FILE__, __LINE__,
1997 _("packet_ok: attempt to use a disabled packet"));
1998
a76d924d
DJ
1999 result = packet_check_result (buf);
2000 switch (result)
2001 {
2002 case PACKET_OK:
2003 case PACKET_ERROR:
2004 /* The stub recognized the packet request. */
4082afcc 2005 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 2006 {
2189c312
SM
2007 remote_debug_printf ("Packet %s (%s) is supported",
2008 config->name, config->title);
d471ea57 2009 config->support = PACKET_ENABLE;
d471ea57 2010 }
a76d924d
DJ
2011 break;
2012 case PACKET_UNKNOWN:
23860348 2013 /* The stub does not support the packet. */
4082afcc
PA
2014 if (config->detect == AUTO_BOOLEAN_AUTO
2015 && config->support == PACKET_ENABLE)
d471ea57 2016 {
4082afcc
PA
2017 /* If the stub previously indicated that the packet was
2018 supported then there is a protocol error. */
2019 error (_("Protocol error: %s (%s) conflicting enabled responses."),
2020 config->name, config->title);
2021 }
2022 else if (config->detect == AUTO_BOOLEAN_TRUE)
2023 {
2024 /* The user set it wrong. */
2025 error (_("Enabled packet %s (%s) not recognized by stub"),
2026 config->name, config->title);
d471ea57 2027 }
4082afcc 2028
2189c312
SM
2029 remote_debug_printf ("Packet %s (%s) is NOT supported",
2030 config->name, config->title);
4082afcc 2031 config->support = PACKET_DISABLE;
a76d924d 2032 break;
5a2468f5 2033 }
a76d924d
DJ
2034
2035 return result;
5a2468f5
JM
2036}
2037
8d64371b
TT
2038static enum packet_result
2039packet_ok (const gdb::char_vector &buf, struct packet_config *config)
2040{
2041 return packet_ok (buf.data (), config);
2042}
2043
444abaca
DJ
2044enum {
2045 PACKET_vCont = 0,
2046 PACKET_X,
2047 PACKET_qSymbol,
2048 PACKET_P,
2049 PACKET_p,
2050 PACKET_Z0,
2051 PACKET_Z1,
2052 PACKET_Z2,
2053 PACKET_Z3,
2054 PACKET_Z4,
15a201c8 2055 PACKET_vFile_setfs,
a6b151f1
DJ
2056 PACKET_vFile_open,
2057 PACKET_vFile_pread,
2058 PACKET_vFile_pwrite,
2059 PACKET_vFile_close,
2060 PACKET_vFile_unlink,
b9e7b9c3 2061 PACKET_vFile_readlink,
0a93529c 2062 PACKET_vFile_fstat,
0876f84a 2063 PACKET_qXfer_auxv,
23181151 2064 PACKET_qXfer_features,
c78fa86a 2065 PACKET_qXfer_exec_file,
cfa9d6d9 2066 PACKET_qXfer_libraries,
2268b414 2067 PACKET_qXfer_libraries_svr4,
fd79ecee 2068 PACKET_qXfer_memory_map,
07e059b5 2069 PACKET_qXfer_osdata,
dc146f7c 2070 PACKET_qXfer_threads,
0fb4aa4b 2071 PACKET_qXfer_statictrace_read,
b3b9301e 2072 PACKET_qXfer_traceframe_info,
169081d0 2073 PACKET_qXfer_uib,
711e434b 2074 PACKET_qGetTIBAddr,
444abaca 2075 PACKET_qGetTLSAddr,
be2a5f71 2076 PACKET_qSupported,
bd3eecc3 2077 PACKET_qTStatus,
89be2091 2078 PACKET_QPassSignals,
82075af2 2079 PACKET_QCatchSyscalls,
9b224c5e 2080 PACKET_QProgramSignals,
bc3b087d 2081 PACKET_QSetWorkingDir,
aefd8b33 2082 PACKET_QStartupWithShell,
0a2dde4a
SDJ
2083 PACKET_QEnvironmentHexEncoded,
2084 PACKET_QEnvironmentReset,
2085 PACKET_QEnvironmentUnset,
936d2992 2086 PACKET_qCRC,
08388c79 2087 PACKET_qSearch_memory,
2d717e4f
DJ
2088 PACKET_vAttach,
2089 PACKET_vRun,
a6f3e723 2090 PACKET_QStartNoAckMode,
82f73884 2091 PACKET_vKill,
4aa995e1
PA
2092 PACKET_qXfer_siginfo_read,
2093 PACKET_qXfer_siginfo_write,
0b16c5cf 2094 PACKET_qAttached,
4082afcc
PA
2095
2096 /* Support for conditional tracepoints. */
782b2b07 2097 PACKET_ConditionalTracepoints,
4082afcc
PA
2098
2099 /* Support for target-side breakpoint conditions. */
3788aec7 2100 PACKET_ConditionalBreakpoints,
4082afcc
PA
2101
2102 /* Support for target-side breakpoint commands. */
d3ce09f5 2103 PACKET_BreakpointCommands,
4082afcc
PA
2104
2105 /* Support for fast tracepoints. */
7a697b8d 2106 PACKET_FastTracepoints,
4082afcc
PA
2107
2108 /* Support for static tracepoints. */
0fb4aa4b 2109 PACKET_StaticTracepoints,
4082afcc
PA
2110
2111 /* Support for installing tracepoints while a trace experiment is
2112 running. */
1e4d1764 2113 PACKET_InstallInTrace,
4082afcc 2114
40ab02ce
MS
2115 PACKET_bc,
2116 PACKET_bs,
409873ef 2117 PACKET_TracepointSource,
d914c394 2118 PACKET_QAllow,
78d85199 2119 PACKET_qXfer_fdpic,
03583c20 2120 PACKET_QDisableRandomization,
d1feda86 2121 PACKET_QAgent,
f6f899bf 2122 PACKET_QTBuffer_size,
9accd112
MM
2123 PACKET_Qbtrace_off,
2124 PACKET_Qbtrace_bts,
b20a6524 2125 PACKET_Qbtrace_pt,
9accd112 2126 PACKET_qXfer_btrace,
4082afcc
PA
2127
2128 /* Support for the QNonStop packet. */
2129 PACKET_QNonStop,
2130
65706a29
PA
2131 /* Support for the QThreadEvents packet. */
2132 PACKET_QThreadEvents,
2133
4082afcc
PA
2134 /* Support for multi-process extensions. */
2135 PACKET_multiprocess_feature,
2136
2137 /* Support for enabling and disabling tracepoints while a trace
2138 experiment is running. */
2139 PACKET_EnableDisableTracepoints_feature,
2140
2141 /* Support for collecting strings using the tracenz bytecode. */
2142 PACKET_tracenz_feature,
2143
2144 /* Support for continuing to run a trace experiment while GDB is
2145 disconnected. */
2146 PACKET_DisconnectedTracing_feature,
2147
2148 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2149 PACKET_augmented_libraries_svr4_read_feature,
2150
f4abbc16
MM
2151 /* Support for the qXfer:btrace-conf:read packet. */
2152 PACKET_qXfer_btrace_conf,
2153
d33501a5
MM
2154 /* Support for the Qbtrace-conf:bts:size packet. */
2155 PACKET_Qbtrace_conf_bts_size,
2156
f7e6eed5
PA
2157 /* Support for swbreak+ feature. */
2158 PACKET_swbreak_feature,
2159
2160 /* Support for hwbreak+ feature. */
2161 PACKET_hwbreak_feature,
2162
89245bc0
DB
2163 /* Support for fork events. */
2164 PACKET_fork_event_feature,
2165
2166 /* Support for vfork events. */
2167 PACKET_vfork_event_feature,
2168
b20a6524
MM
2169 /* Support for the Qbtrace-conf:pt:size packet. */
2170 PACKET_Qbtrace_conf_pt_size,
2171
94585166
DB
2172 /* Support for exec events. */
2173 PACKET_exec_event_feature,
2174
750ce8d1
YQ
2175 /* Support for query supported vCont actions. */
2176 PACKET_vContSupported,
2177
de979965
PA
2178 /* Support remote CTRL-C. */
2179 PACKET_vCtrlC,
2180
f2faf941
PA
2181 /* Support TARGET_WAITKIND_NO_RESUMED. */
2182 PACKET_no_resumed,
2183
2c2e7f87
LM
2184 /* Support for memory tagging, allocation tag fetch/store
2185 packets and the tag violation stop replies. */
2186 PACKET_memory_tagging_feature,
2187
444abaca
DJ
2188 PACKET_MAX
2189};
506fb367 2190
5b6d1e4f
PA
2191/* FIXME: needs to be per-remote-target. Ignoring this for now,
2192 assuming all remote targets are the same server (thus all support
2193 the same packets). */
444abaca 2194static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2195
f7e6eed5
PA
2196/* Returns the packet's corresponding "set remote foo-packet" command
2197 state. See struct packet_config for more details. */
2198
2199static enum auto_boolean
2200packet_set_cmd_state (int packet)
2201{
2202 return remote_protocol_packets[packet].detect;
2203}
2204
4082afcc
PA
2205/* Returns whether a given packet or feature is supported. This takes
2206 into account the state of the corresponding "set remote foo-packet"
2207 command, which may be used to bypass auto-detection. */
dc8acb97 2208
4082afcc
PA
2209static enum packet_support
2210packet_config_support (struct packet_config *config)
2211{
2212 switch (config->detect)
444abaca 2213 {
4082afcc
PA
2214 case AUTO_BOOLEAN_TRUE:
2215 return PACKET_ENABLE;
2216 case AUTO_BOOLEAN_FALSE:
2217 return PACKET_DISABLE;
2218 case AUTO_BOOLEAN_AUTO:
2219 return config->support;
2220 default:
2221 gdb_assert_not_reached (_("bad switch"));
444abaca 2222 }
4082afcc
PA
2223}
2224
2225/* Same as packet_config_support, but takes the packet's enum value as
2226 argument. */
2227
2228static enum packet_support
2229packet_support (int packet)
2230{
2231 struct packet_config *config = &remote_protocol_packets[packet];
2232
2233 return packet_config_support (config);
dc8acb97
MS
2234}
2235
5a2468f5 2236static void
444abaca
DJ
2237show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2238 struct cmd_list_element *c,
2239 const char *value)
5a2468f5 2240{
444abaca 2241 struct packet_config *packet;
5a2468f5 2242
444abaca
DJ
2243 for (packet = remote_protocol_packets;
2244 packet < &remote_protocol_packets[PACKET_MAX];
2245 packet++)
2246 {
2247 if (&packet->detect == c->var)
2248 {
2249 show_packet_config_cmd (packet);
2250 return;
2251 }
2252 }
9b20d036 2253 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2254 c->name);
5a2468f5
JM
2255}
2256
d471ea57
AC
2257/* Should we try one of the 'Z' requests? */
2258
2259enum Z_packet_type
2260{
2261 Z_PACKET_SOFTWARE_BP,
2262 Z_PACKET_HARDWARE_BP,
2263 Z_PACKET_WRITE_WP,
2264 Z_PACKET_READ_WP,
2265 Z_PACKET_ACCESS_WP,
2266 NR_Z_PACKET_TYPES
2267};
96baa820 2268
d471ea57 2269/* For compatibility with older distributions. Provide a ``set remote
23860348 2270 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2271
7f19b9a2 2272static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2273
2274static void
eb4c3f4a 2275set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2276 struct cmd_list_element *c)
96baa820 2277{
d471ea57 2278 int i;
a744cf53 2279
d471ea57 2280 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2281 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2282}
2283
2284static void
08546159
AC
2285show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2286 struct cmd_list_element *c,
2287 const char *value)
96baa820 2288{
d471ea57 2289 int i;
a744cf53 2290
d471ea57
AC
2291 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2292 {
444abaca 2293 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2294 }
96baa820
JM
2295}
2296
4082afcc
PA
2297/* Returns true if the multi-process extensions are in effect. */
2298
2299static int
2300remote_multi_process_p (struct remote_state *rs)
2301{
2302 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2303}
2304
de0d863e
DB
2305/* Returns true if fork events are supported. */
2306
2307static int
2308remote_fork_event_p (struct remote_state *rs)
2309{
2310 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2311}
2312
c269dbdb
DB
2313/* Returns true if vfork events are supported. */
2314
2315static int
2316remote_vfork_event_p (struct remote_state *rs)
2317{
2318 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2319}
2320
d46addbb
DB
2321/* Returns true if exec events are supported. */
2322
2323static int
2324remote_exec_event_p (struct remote_state *rs)
2325{
2326 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2327}
2328
2c2e7f87
LM
2329/* Returns true if memory tagging is supported, false otherwise. */
2330
2331static bool
2332remote_memory_tagging_p ()
2333{
2334 return packet_support (PACKET_memory_tagging_feature) == PACKET_ENABLE;
2335}
2336
cbb8991c
DB
2337/* Insert fork catchpoint target routine. If fork events are enabled
2338 then return success, nothing more to do. */
2339
f6ac5f3d
PA
2340int
2341remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2342{
2343 struct remote_state *rs = get_remote_state ();
2344
2345 return !remote_fork_event_p (rs);
2346}
2347
2348/* Remove fork catchpoint target routine. Nothing to do, just
2349 return success. */
2350
f6ac5f3d
PA
2351int
2352remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2353{
2354 return 0;
2355}
2356
2357/* Insert vfork catchpoint target routine. If vfork events are enabled
2358 then return success, nothing more to do. */
2359
f6ac5f3d
PA
2360int
2361remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2362{
2363 struct remote_state *rs = get_remote_state ();
2364
2365 return !remote_vfork_event_p (rs);
2366}
2367
2368/* Remove vfork catchpoint target routine. Nothing to do, just
2369 return success. */
2370
f6ac5f3d
PA
2371int
2372remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2373{
2374 return 0;
2375}
2376
d46addbb
DB
2377/* Insert exec catchpoint target routine. If exec events are
2378 enabled, just return success. */
2379
f6ac5f3d
PA
2380int
2381remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2382{
2383 struct remote_state *rs = get_remote_state ();
2384
2385 return !remote_exec_event_p (rs);
2386}
2387
2388/* Remove exec catchpoint target routine. Nothing to do, just
2389 return success. */
2390
f6ac5f3d
PA
2391int
2392remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2393{
2394 return 0;
2395}
2396
c906108c
SS
2397\f
2398
ffdd69cf
TT
2399/* Take advantage of the fact that the TID field is not used, to tag
2400 special ptids with it set to != 0. */
2401static const ptid_t magic_null_ptid (42000, -1, 1);
2402static const ptid_t not_sent_ptid (42000, -2, 1);
2403static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2404
0b16c5cf
PA
2405/* Find out if the stub attached to PID (and hence GDB should offer to
2406 detach instead of killing it when bailing out). */
2407
6b8edb51
PA
2408int
2409remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2410{
2411 struct remote_state *rs = get_remote_state ();
bba74b36 2412 size_t size = get_remote_packet_size ();
0b16c5cf 2413
4082afcc 2414 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2415 return 0;
2416
2417 if (remote_multi_process_p (rs))
8d64371b 2418 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2419 else
8d64371b 2420 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2421
2422 putpkt (rs->buf);
8d64371b 2423 getpkt (&rs->buf, 0);
0b16c5cf
PA
2424
2425 switch (packet_ok (rs->buf,
1554e9be 2426 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2427 {
2428 case PACKET_OK:
8d64371b 2429 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2430 return 1;
2431 break;
2432 case PACKET_ERROR:
8d64371b 2433 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2434 break;
2435 case PACKET_UNKNOWN:
2436 break;
2437 }
2438
2439 return 0;
2440}
2441
49c62f2e
PA
2442/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2443 has been invented by GDB, instead of reported by the target. Since
2444 we can be connected to a remote system before before knowing about
2445 any inferior, mark the target with execution when we find the first
2446 inferior. If ATTACHED is 1, then we had just attached to this
2447 inferior. If it is 0, then we just created this inferior. If it
2448 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2449 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2450 attempt to open this inferior's executable as the main executable
2451 if no main executable is open already. */
1941c569 2452
6b8edb51 2453inferior *
9ab8741a 2454remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2455 int try_open_exec)
1941c569 2456{
1941c569
PA
2457 struct inferior *inf;
2458
0b16c5cf
PA
2459 /* Check whether this process we're learning about is to be
2460 considered attached, or if is to be considered to have been
2461 spawned by the stub. */
2462 if (attached == -1)
2463 attached = remote_query_attached (pid);
2464
f5656ead 2465 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2466 {
2467 /* If the target shares code across all inferiors, then every
2468 attach adds a new inferior. */
2469 inf = add_inferior (pid);
2470
2471 /* ... and every inferior is bound to the same program space.
2472 However, each inferior may still have its own address
2473 space. */
2474 inf->aspace = maybe_new_address_space ();
2475 inf->pspace = current_program_space;
2476 }
2477 else
2478 {
2479 /* In the traditional debugging scenario, there's a 1-1 match
2480 between program/address spaces. We simply bind the inferior
2481 to the program space's address space. */
2482 inf = current_inferior ();
78f2c40a
PA
2483
2484 /* However, if the current inferior is already bound to a
2485 process, find some other empty inferior. */
2486 if (inf->pid != 0)
2487 {
2488 inf = nullptr;
2489 for (inferior *it : all_inferiors ())
2490 if (it->pid == 0)
2491 {
2492 inf = it;
2493 break;
2494 }
2495 }
2496 if (inf == nullptr)
2497 {
2498 /* Since all inferiors were already bound to a process, add
2499 a new inferior. */
2500 inf = add_inferior_with_spaces ();
2501 }
2502 switch_to_inferior_no_thread (inf);
02980c56 2503 inf->push_target (this);
6c95b8df
PA
2504 inferior_appeared (inf, pid);
2505 }
1941c569 2506
0b16c5cf 2507 inf->attach_flag = attached;
49c62f2e 2508 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2509
1b6e6f5c
GB
2510 /* If no main executable is currently open then attempt to
2511 open the file that was executed to create this inferior. */
835205d0 2512 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2513 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2514
a2fedca9
PW
2515 /* Check for exec file mismatch, and let the user solve it. */
2516 validate_exec_file (1);
2517
1941c569
PA
2518 return inf;
2519}
2520
7aabaf9d 2521static remote_thread_info *get_remote_thread_info (thread_info *thread);
5b6d1e4f
PA
2522static remote_thread_info *get_remote_thread_info (remote_target *target,
2523 ptid_t ptid);
85ad3aaf 2524
1941c569
PA
2525/* Add thread PTID to GDB's thread list. Tag it as executing/running
2526 according to RUNNING. */
2527
00431a78 2528thread_info *
6b8edb51 2529remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2530{
b7ea362b 2531 struct remote_state *rs = get_remote_state ();
85ad3aaf 2532 struct thread_info *thread;
b7ea362b
PA
2533
2534 /* GDB historically didn't pull threads in the initial connection
2535 setup. If the remote target doesn't even have a concept of
2536 threads (e.g., a bare-metal target), even if internally we
2537 consider that a single-threaded target, mentioning a new thread
2538 might be confusing to the user. Be silent then, preserving the
2539 age old behavior. */
2540 if (rs->starting_up)
5b6d1e4f 2541 thread = add_thread_silent (this, ptid);
b7ea362b 2542 else
5b6d1e4f 2543 thread = add_thread (this, ptid);
1941c569 2544
c9d22089
SM
2545 /* We start by assuming threads are resumed. That state then gets updated
2546 when we process a matching stop reply. */
2547 get_remote_thread_info (thread)->set_resumed ();
2548
5b6d1e4f
PA
2549 set_executing (this, ptid, executing);
2550 set_running (this, ptid, running);
00431a78
PA
2551
2552 return thread;
1941c569
PA
2553}
2554
2555/* Come here when we learn about a thread id from the remote target.
2556 It may be the first time we hear about such thread, so take the
2557 opportunity to add it to GDB's thread list. In case this is the
2558 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2559 GDB's inferior list as well. EXECUTING indicates whether the
2560 thread is (internally) executing or stopped. */
1941c569 2561
6b8edb51 2562void
8a82de58 2563remote_target::remote_notice_new_inferior (ptid_t currthread, bool executing)
1941c569 2564{
0d5b594f
PA
2565 /* In non-stop mode, we assume new found threads are (externally)
2566 running until proven otherwise with a stop reply. In all-stop,
2567 we can only get here if all threads are stopped. */
8a82de58 2568 bool running = target_is_non_stop_p ();
0d5b594f 2569
c906108c
SS
2570 /* If this is a new thread, add it to GDB's thread list.
2571 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2572
5b6d1e4f 2573 thread_info *tp = find_thread_ptid (this, currthread);
00431a78 2574 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2575 {
2576 /* We're seeing an event on a thread id we knew had exited.
2577 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2578 remote_add_thread (currthread, running, executing);
82f73884
PA
2579 return;
2580 }
2581
5b6d1e4f 2582 if (!in_thread_list (this, currthread))
c0a2216e 2583 {
1941c569 2584 struct inferior *inf = NULL;
e99b03dc 2585 int pid = currthread.pid ();
1941c569 2586
0e998d96 2587 if (inferior_ptid.is_pid ()
e99b03dc 2588 && pid == inferior_ptid.pid ())
c0a2216e
PA
2589 {
2590 /* inferior_ptid has no thread member yet. This can happen
2591 with the vAttach -> remote_wait,"TAAthread:" path if the
2592 stub doesn't support qC. This is the first stop reported
2593 after an attach, so this is the main thread. Update the
2594 ptid in the thread list. */
5b6d1e4f
PA
2595 if (in_thread_list (this, ptid_t (pid)))
2596 thread_change_ptid (this, inferior_ptid, currthread);
bad34192
PA
2597 else
2598 {
0ac55310
PA
2599 thread_info *thr
2600 = remote_add_thread (currthread, running, executing);
2601 switch_to_thread (thr);
bad34192 2602 }
dc146f7c 2603 return;
c0a2216e 2604 }
82f73884 2605
d7e15655 2606 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2607 {
2608 /* inferior_ptid is not set yet. This can happen with the
2609 vRun -> remote_wait,"TAAthread:" path if the stub
2610 doesn't support qC. This is the first stop reported
2611 after an attach, so this is the main thread. Update the
2612 ptid in the thread list. */
5b6d1e4f 2613 thread_change_ptid (this, inferior_ptid, currthread);
82f73884 2614 return;
c0a2216e 2615 }
82f73884 2616
29c87f7f
PA
2617 /* When connecting to a target remote, or to a target
2618 extended-remote which already was debugging an inferior, we
2619 may not know about it yet. Add it before adding its child
2620 thread, so notifications are emitted in a sensible order. */
5b6d1e4f 2621 if (find_inferior_pid (this, currthread.pid ()) == NULL)
49c62f2e
PA
2622 {
2623 struct remote_state *rs = get_remote_state ();
9ab8741a 2624 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2625
2626 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2627 currthread.pid (), -1, 1);
49c62f2e 2628 }
29c87f7f 2629
82f73884 2630 /* This is really a new thread. Add it. */
00431a78
PA
2631 thread_info *new_thr
2632 = remote_add_thread (currthread, running, executing);
1941c569
PA
2633
2634 /* If we found a new inferior, let the common code do whatever
2635 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2636 breakpoints), unless we're just setting up an all-stop
2637 connection. */
1941c569 2638 if (inf != NULL)
b7ea362b
PA
2639 {
2640 struct remote_state *rs = get_remote_state ();
2641
6efcd9a8 2642 if (!rs->starting_up)
00431a78 2643 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2644 }
c0a2216e 2645 }
c906108c
SS
2646}
2647
85ad3aaf 2648/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2649
7aabaf9d
SM
2650static remote_thread_info *
2651get_remote_thread_info (thread_info *thread)
dc146f7c 2652{
85ad3aaf 2653 gdb_assert (thread != NULL);
dc146f7c 2654
85ad3aaf 2655 if (thread->priv == NULL)
7aabaf9d 2656 thread->priv.reset (new remote_thread_info);
dc146f7c 2657
7aabaf9d 2658 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2659}
2660
5b6d1e4f
PA
2661/* Return PTID's private thread data, creating it if necessary. */
2662
7aabaf9d 2663static remote_thread_info *
5b6d1e4f 2664get_remote_thread_info (remote_target *target, ptid_t ptid)
85ad3aaf 2665{
5b6d1e4f 2666 thread_info *thr = find_thread_ptid (target, ptid);
00431a78 2667 return get_remote_thread_info (thr);
dc146f7c
VP
2668}
2669
74531fed
PA
2670/* Call this function as a result of
2671 1) A halt indication (T packet) containing a thread id
2672 2) A direct query of currthread
0df8b418 2673 3) Successful execution of set thread */
74531fed
PA
2674
2675static void
47f8a51d 2676record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2677{
47f8a51d 2678 rs->general_thread = currthread;
74531fed
PA
2679}
2680
89be2091
DJ
2681/* If 'QPassSignals' is supported, tell the remote stub what signals
2682 it can simply pass through to the inferior without reporting. */
2683
f6ac5f3d 2684void
adc6a863 2685remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2686{
4082afcc 2687 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2688 {
2689 char *pass_packet, *p;
adc6a863 2690 int count = 0;
747dc59d 2691 struct remote_state *rs = get_remote_state ();
89be2091 2692
adc6a863
PA
2693 gdb_assert (pass_signals.size () < 256);
2694 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2695 {
2455069d 2696 if (pass_signals[i])
89be2091
DJ
2697 count++;
2698 }
224c3ddb 2699 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2700 strcpy (pass_packet, "QPassSignals:");
2701 p = pass_packet + strlen (pass_packet);
adc6a863 2702 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2703 {
2455069d 2704 if (pass_signals[i])
89be2091
DJ
2705 {
2706 if (i >= 16)
2707 *p++ = tohex (i >> 4);
2708 *p++ = tohex (i & 15);
2709 if (count)
2710 *p++ = ';';
2711 else
2712 break;
2713 count--;
2714 }
2715 }
2716 *p = 0;
747dc59d 2717 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2718 {
89be2091 2719 putpkt (pass_packet);
8d64371b 2720 getpkt (&rs->buf, 0);
8dc5b319 2721 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
84d53fa9 2722 xfree (rs->last_pass_packet);
747dc59d 2723 rs->last_pass_packet = pass_packet;
89be2091
DJ
2724 }
2725 else
2726 xfree (pass_packet);
2727 }
2728}
2729
82075af2
JS
2730/* If 'QCatchSyscalls' is supported, tell the remote stub
2731 to report syscalls to GDB. */
2732
f6ac5f3d
PA
2733int
2734remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2735 gdb::array_view<const int> syscall_counts)
82075af2 2736{
b80406ac 2737 const char *catch_packet;
82075af2
JS
2738 enum packet_result result;
2739 int n_sysno = 0;
2740
2741 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2742 {
2743 /* Not supported. */
2744 return 1;
2745 }
2746
649a140c 2747 if (needed && any_count == 0)
82075af2 2748 {
649a140c
PA
2749 /* Count how many syscalls are to be caught. */
2750 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2751 {
649a140c 2752 if (syscall_counts[i] != 0)
82075af2
JS
2753 n_sysno++;
2754 }
2755 }
2756
2189c312
SM
2757 remote_debug_printf ("pid %d needed %d any_count %d n_sysno %d",
2758 pid, needed, any_count, n_sysno);
82075af2 2759
1b81856f 2760 std::string built_packet;
82075af2
JS
2761 if (needed)
2762 {
2763 /* Prepare a packet with the sysno list, assuming max 8+1
2764 characters for a sysno. If the resulting packet size is too
2765 big, fallback on the non-selective packet. */
2766 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2767 built_packet.reserve (maxpktsz);
2768 built_packet = "QCatchSyscalls:1";
649a140c 2769 if (any_count == 0)
82075af2 2770 {
649a140c
PA
2771 /* Add in each syscall to be caught. */
2772 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2773 {
649a140c
PA
2774 if (syscall_counts[i] != 0)
2775 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2776 }
2777 }
1b81856f 2778 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2779 {
2780 /* catch_packet too big. Fallback to less efficient
2781 non selective mode, with GDB doing the filtering. */
b80406ac 2782 catch_packet = "QCatchSyscalls:1";
82075af2 2783 }
b80406ac 2784 else
1b81856f 2785 catch_packet = built_packet.c_str ();
82075af2
JS
2786 }
2787 else
b80406ac 2788 catch_packet = "QCatchSyscalls:0";
82075af2 2789
b80406ac 2790 struct remote_state *rs = get_remote_state ();
82075af2 2791
b80406ac 2792 putpkt (catch_packet);
8d64371b 2793 getpkt (&rs->buf, 0);
b80406ac
TT
2794 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2795 if (result == PACKET_OK)
2796 return 0;
2797 else
2798 return -1;
82075af2
JS
2799}
2800
9b224c5e
PA
2801/* If 'QProgramSignals' is supported, tell the remote stub what
2802 signals it should pass through to the inferior when detaching. */
2803
f6ac5f3d 2804void
adc6a863 2805remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2806{
4082afcc 2807 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2808 {
2809 char *packet, *p;
adc6a863 2810 int count = 0;
5e4a05c4 2811 struct remote_state *rs = get_remote_state ();
9b224c5e 2812
adc6a863
PA
2813 gdb_assert (signals.size () < 256);
2814 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2815 {
2816 if (signals[i])
2817 count++;
2818 }
224c3ddb 2819 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2820 strcpy (packet, "QProgramSignals:");
2821 p = packet + strlen (packet);
adc6a863 2822 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2823 {
2824 if (signal_pass_state (i))
2825 {
2826 if (i >= 16)
2827 *p++ = tohex (i >> 4);
2828 *p++ = tohex (i & 15);
2829 if (count)
2830 *p++ = ';';
2831 else
2832 break;
2833 count--;
2834 }
2835 }
2836 *p = 0;
5e4a05c4
TT
2837 if (!rs->last_program_signals_packet
2838 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2839 {
9b224c5e 2840 putpkt (packet);
8d64371b 2841 getpkt (&rs->buf, 0);
8dc5b319 2842 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2843 xfree (rs->last_program_signals_packet);
2844 rs->last_program_signals_packet = packet;
9b224c5e
PA
2845 }
2846 else
2847 xfree (packet);
2848 }
2849}
2850
79d7f229
PA
2851/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2852 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2853 thread. If GEN is set, set the general thread, if not, then set
2854 the step/continue thread. */
6b8edb51
PA
2855void
2856remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2857{
d01949b6 2858 struct remote_state *rs = get_remote_state ();
47f8a51d 2859 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2860 char *buf = rs->buf.data ();
2861 char *endbuf = buf + get_remote_packet_size ();
c906108c 2862
d7e15655 2863 if (state == ptid)
c906108c
SS
2864 return;
2865
79d7f229
PA
2866 *buf++ = 'H';
2867 *buf++ = gen ? 'g' : 'c';
d7e15655 2868 if (ptid == magic_null_ptid)
79d7f229 2869 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2870 else if (ptid == any_thread_ptid)
79d7f229 2871 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2872 else if (ptid == minus_one_ptid)
79d7f229
PA
2873 xsnprintf (buf, endbuf - buf, "-1");
2874 else
82f73884 2875 write_ptid (buf, endbuf, ptid);
79d7f229 2876 putpkt (rs->buf);
8d64371b 2877 getpkt (&rs->buf, 0);
c906108c 2878 if (gen)
47f8a51d 2879 rs->general_thread = ptid;
c906108c 2880 else
47f8a51d 2881 rs->continue_thread = ptid;
c906108c 2882}
79d7f229 2883
6b8edb51
PA
2884void
2885remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2886{
2887 set_thread (ptid, 1);
2888}
2889
6b8edb51
PA
2890void
2891remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2892{
2893 set_thread (ptid, 0);
2894}
2895
3c9c4b83
PA
2896/* Change the remote current process. Which thread within the process
2897 ends up selected isn't important, as long as it is the same process
2898 as what INFERIOR_PTID points to.
2899
2900 This comes from that fact that there is no explicit notion of
2901 "selected process" in the protocol. The selected process for
2902 general operations is the process the selected general thread
2903 belongs to. */
2904
6b8edb51
PA
2905void
2906remote_target::set_general_process ()
3c9c4b83
PA
2907{
2908 struct remote_state *rs = get_remote_state ();
2909
2910 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2911 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2912 return;
2913
2914 /* We only need to change the remote current thread if it's pointing
2915 at some other process. */
e99b03dc 2916 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2917 set_general_thread (inferior_ptid);
2918}
2919
c906108c 2920\f
7d1a114c
PA
2921/* Return nonzero if this is the main thread that we made up ourselves
2922 to model non-threaded targets as single-threaded. */
c906108c
SS
2923
2924static int
f6ac5f3d 2925remote_thread_always_alive (ptid_t ptid)
c906108c 2926{
d7e15655 2927 if (ptid == magic_null_ptid)
c0a2216e
PA
2928 /* The main thread is always alive. */
2929 return 1;
2930
e38504b3 2931 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2932 /* The main thread is always alive. This can happen after a
2933 vAttach, if the remote side doesn't support
2934 multi-threading. */
2935 return 1;
2936
7d1a114c
PA
2937 return 0;
2938}
2939
2940/* Return nonzero if the thread PTID is still alive on the remote
2941 system. */
2942
57810aa7 2943bool
f6ac5f3d 2944remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2945{
2946 struct remote_state *rs = get_remote_state ();
2947 char *p, *endp;
2948
2949 /* Check if this is a thread that we made up ourselves to model
2950 non-threaded targets as single-threaded. */
f6ac5f3d 2951 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2952 return 1;
2953
8d64371b
TT
2954 p = rs->buf.data ();
2955 endp = p + get_remote_packet_size ();
82f73884
PA
2956
2957 *p++ = 'T';
2958 write_ptid (p, endp, ptid);
2959
2e9f7625 2960 putpkt (rs->buf);
8d64371b 2961 getpkt (&rs->buf, 0);
2e9f7625 2962 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2963}
2964
79efa585
SM
2965/* Return a pointer to a thread name if we know it and NULL otherwise.
2966 The thread_info object owns the memory for the name. */
2967
f6ac5f3d
PA
2968const char *
2969remote_target::thread_name (struct thread_info *info)
79efa585
SM
2970{
2971 if (info->priv != NULL)
a9334058
SM
2972 {
2973 const std::string &name = get_remote_thread_info (info)->name;
2974 return !name.empty () ? name.c_str () : NULL;
2975 }
79efa585
SM
2976
2977 return NULL;
2978}
2979
c906108c
SS
2980/* About these extended threadlist and threadinfo packets. They are
2981 variable length packets but, the fields within them are often fixed
30baf67b 2982 length. They are redundant enough to send over UDP as is the
c906108c
SS
2983 remote protocol in general. There is a matching unit test module
2984 in libstub. */
2985
23860348 2986/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2987 libstub protocol encoding, and remote.c. It is not particularly
23860348 2988 changable. */
cce74817
JM
2989
2990/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2991 Plan to fix this. */
cce74817 2992
23860348 2993typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2994
9d1f7ab2 2995/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2996 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2997
2998struct gdb_ext_thread_info
c5aa993b 2999 {
23860348 3000 threadref threadid; /* External form of thread reference. */
2bc416ba 3001 int active; /* Has state interesting to GDB?
23860348 3002 regs, stack. */
2bc416ba 3003 char display[256]; /* Brief state display, name,
cedea757 3004 blocked/suspended. */
23860348 3005 char shortname[32]; /* To be used to name threads. */
2bc416ba 3006 char more_display[256]; /* Long info, statistics, queue depth,
23860348 3007 whatever. */
c5aa993b 3008 };
cce74817
JM
3009
3010/* The volume of remote transfers can be limited by submitting
3011 a mask containing bits specifying the desired information.
3012 Use a union of these values as the 'selection' parameter to
0df8b418 3013 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
3014
3015#define TAG_THREADID 1
3016#define TAG_EXISTS 2
3017#define TAG_DISPLAY 4
3018#define TAG_THREADNAME 8
c5aa993b 3019#define TAG_MOREDISPLAY 16
cce74817 3020
23860348 3021#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 3022
cecb1912 3023static const char *unpack_nibble (const char *buf, int *val);
cce74817 3024
cecb1912 3025static const char *unpack_byte (const char *buf, int *value);
cce74817 3026
a14ed312 3027static char *pack_int (char *buf, int value);
cce74817 3028
cecb1912 3029static const char *unpack_int (const char *buf, int *value);
cce74817 3030
cecb1912 3031static const char *unpack_string (const char *src, char *dest, int length);
cce74817 3032
23860348 3033static char *pack_threadid (char *pkt, threadref *id);
cce74817 3034
cecb1912 3035static const char *unpack_threadid (const char *inbuf, threadref *id);
cce74817 3036
23860348 3037void int_to_threadref (threadref *id, int value);
cce74817 3038
23860348 3039static int threadref_to_int (threadref *ref);
cce74817 3040
23860348 3041static void copy_threadref (threadref *dest, threadref *src);
cce74817 3042
23860348 3043static int threadmatch (threadref *dest, threadref *src);
cce74817 3044
2bc416ba 3045static char *pack_threadinfo_request (char *pkt, int mode,
23860348 3046 threadref *id);
cce74817 3047
a14ed312
KB
3048static char *pack_threadlist_request (char *pkt, int startflag,
3049 int threadcount,
23860348 3050 threadref *nextthread);
cce74817 3051
23860348 3052static int remote_newthread_step (threadref *ref, void *context);
cce74817 3053
82f73884
PA
3054
3055/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
3056 buffer we're allowed to write to. Returns
3057 BUF+CHARACTERS_WRITTEN. */
3058
6b8edb51
PA
3059char *
3060remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
3061{
3062 int pid, tid;
3063 struct remote_state *rs = get_remote_state ();
3064
3065 if (remote_multi_process_p (rs))
3066 {
e99b03dc 3067 pid = ptid.pid ();
82f73884
PA
3068 if (pid < 0)
3069 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
3070 else
3071 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
3072 }
e38504b3 3073 tid = ptid.lwp ();
82f73884
PA
3074 if (tid < 0)
3075 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
3076 else
3077 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
3078
3079 return buf;
3080}
3081
256642e8
PA
3082/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
3083 last parsed char. Returns null_ptid if no thread id is found, and
3084 throws an error if the thread id has an invalid format. */
82f73884
PA
3085
3086static ptid_t
256642e8 3087read_ptid (const char *buf, const char **obuf)
82f73884 3088{
256642e8
PA
3089 const char *p = buf;
3090 const char *pp;
82f73884 3091 ULONGEST pid = 0, tid = 0;
82f73884
PA
3092
3093 if (*p == 'p')
3094 {
3095 /* Multi-process ptid. */
3096 pp = unpack_varlen_hex (p + 1, &pid);
3097 if (*pp != '.')
b37520b6 3098 error (_("invalid remote ptid: %s"), p);
82f73884
PA
3099
3100 p = pp;
3101 pp = unpack_varlen_hex (p + 1, &tid);
3102 if (obuf)
3103 *obuf = pp;
184ea2f7 3104 return ptid_t (pid, tid);
82f73884
PA
3105 }
3106
3107 /* No multi-process. Just a tid. */
3108 pp = unpack_varlen_hex (p, &tid);
3109
c9f35b34
KB
3110 /* Return null_ptid when no thread id is found. */
3111 if (p == pp)
3112 {
3113 if (obuf)
3114 *obuf = pp;
3115 return null_ptid;
3116 }
3117
82f73884 3118 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3119 what's in inferior_ptid, unless it's null at this point. If so,
3120 then since there's no way to know the pid of the reported
3121 threads, use the magic number. */
d7e15655 3122 if (inferior_ptid == null_ptid)
e99b03dc 3123 pid = magic_null_ptid.pid ();
ca19bf23 3124 else
e99b03dc 3125 pid = inferior_ptid.pid ();
82f73884
PA
3126
3127 if (obuf)
3128 *obuf = pp;
184ea2f7 3129 return ptid_t (pid, tid);
82f73884
PA
3130}
3131
c906108c 3132static int
fba45db2 3133stubhex (int ch)
c906108c
SS
3134{
3135 if (ch >= 'a' && ch <= 'f')
3136 return ch - 'a' + 10;
3137 if (ch >= '0' && ch <= '9')
3138 return ch - '0';
3139 if (ch >= 'A' && ch <= 'F')
3140 return ch - 'A' + 10;
3141 return -1;
3142}
3143
3144static int
cecb1912 3145stub_unpack_int (const char *buff, int fieldlength)
c906108c
SS
3146{
3147 int nibble;
3148 int retval = 0;
3149
3150 while (fieldlength)
3151 {
3152 nibble = stubhex (*buff++);
3153 retval |= nibble;
3154 fieldlength--;
3155 if (fieldlength)
3156 retval = retval << 4;
3157 }
3158 return retval;
3159}
3160
cecb1912
SM
3161static const char *
3162unpack_nibble (const char *buf, int *val)
c906108c 3163{
b7589f7d 3164 *val = fromhex (*buf++);
c906108c
SS
3165 return buf;
3166}
3167
cecb1912
SM
3168static const char *
3169unpack_byte (const char *buf, int *value)
c906108c
SS
3170{
3171 *value = stub_unpack_int (buf, 2);
3172 return buf + 2;
3173}
3174
3175static char *
fba45db2 3176pack_int (char *buf, int value)
c906108c
SS
3177{
3178 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3179 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3180 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3181 buf = pack_hex_byte (buf, (value & 0xff));
3182 return buf;
3183}
3184
cecb1912
SM
3185static const char *
3186unpack_int (const char *buf, int *value)
c906108c
SS
3187{
3188 *value = stub_unpack_int (buf, 8);
3189 return buf + 8;
3190}
3191
23860348 3192#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3193static char *pack_string (char *pkt, char *string);
c906108c
SS
3194
3195static char *
fba45db2 3196pack_string (char *pkt, char *string)
c906108c
SS
3197{
3198 char ch;
3199 int len;
3200
3201 len = strlen (string);
3202 if (len > 200)
23860348 3203 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3204 pkt = pack_hex_byte (pkt, len);
3205 while (len-- > 0)
3206 {
3207 ch = *string++;
3208 if ((ch == '\0') || (ch == '#'))
23860348 3209 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3210 *pkt++ = ch;
3211 }
3212 return pkt;
3213}
3214#endif /* 0 (unused) */
3215
cecb1912
SM
3216static const char *
3217unpack_string (const char *src, char *dest, int length)
c906108c
SS
3218{
3219 while (length--)
3220 *dest++ = *src++;
3221 *dest = '\0';
3222 return src;
3223}
3224
3225static char *
fba45db2 3226pack_threadid (char *pkt, threadref *id)
c906108c
SS
3227{
3228 char *limit;
3229 unsigned char *altid;
3230
3231 altid = (unsigned char *) id;
3232 limit = pkt + BUF_THREAD_ID_SIZE;
3233 while (pkt < limit)
3234 pkt = pack_hex_byte (pkt, *altid++);
3235 return pkt;
3236}
3237
3238
cecb1912
SM
3239static const char *
3240unpack_threadid (const char *inbuf, threadref *id)
c906108c
SS
3241{
3242 char *altref;
cecb1912 3243 const char *limit = inbuf + BUF_THREAD_ID_SIZE;
c906108c
SS
3244 int x, y;
3245
3246 altref = (char *) id;
3247
3248 while (inbuf < limit)
3249 {
3250 x = stubhex (*inbuf++);
3251 y = stubhex (*inbuf++);
3252 *altref++ = (x << 4) | y;
3253 }
3254 return inbuf;
3255}
3256
3257/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3258 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3259 to use 64bit thread references internally. This is an adapter
3260 function. */
3261
3262void
fba45db2 3263int_to_threadref (threadref *id, int value)
c906108c
SS
3264{
3265 unsigned char *scan;
3266
3267 scan = (unsigned char *) id;
3268 {
3269 int i = 4;
3270 while (i--)
3271 *scan++ = 0;
3272 }
3273 *scan++ = (value >> 24) & 0xff;
3274 *scan++ = (value >> 16) & 0xff;
3275 *scan++ = (value >> 8) & 0xff;
3276 *scan++ = (value & 0xff);
3277}
3278
3279static int
fba45db2 3280threadref_to_int (threadref *ref)
c906108c
SS
3281{
3282 int i, value = 0;
3283 unsigned char *scan;
3284
cfd77fa1 3285 scan = *ref;
c906108c
SS
3286 scan += 4;
3287 i = 4;
3288 while (i-- > 0)
3289 value = (value << 8) | ((*scan++) & 0xff);
3290 return value;
3291}
3292
3293static void
fba45db2 3294copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3295{
3296 int i;
3297 unsigned char *csrc, *cdest;
3298
3299 csrc = (unsigned char *) src;
3300 cdest = (unsigned char *) dest;
3301 i = 8;
3302 while (i--)
3303 *cdest++ = *csrc++;
3304}
3305
3306static int
fba45db2 3307threadmatch (threadref *dest, threadref *src)
c906108c 3308{
23860348 3309 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3310#if 0
3311 unsigned char *srcp, *destp;
3312 int i, result;
3313 srcp = (char *) src;
3314 destp = (char *) dest;
3315
3316 result = 1;
3317 while (i-- > 0)
3318 result &= (*srcp++ == *destp++) ? 1 : 0;
3319 return result;
3320#endif
3321 return 1;
3322}
3323
3324/*
c5aa993b
JM
3325 threadid:1, # always request threadid
3326 context_exists:2,
3327 display:4,
3328 unique_name:8,
3329 more_display:16
3330 */
c906108c
SS
3331
3332/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3333
3334static char *
fba45db2 3335pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3336{
23860348
MS
3337 *pkt++ = 'q'; /* Info Query */
3338 *pkt++ = 'P'; /* process or thread info */
3339 pkt = pack_int (pkt, mode); /* mode */
c906108c 3340 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3341 *pkt = '\0'; /* terminate */
c906108c
SS
3342 return pkt;
3343}
3344
23860348 3345/* These values tag the fields in a thread info response packet. */
c906108c 3346/* Tagging the fields allows us to request specific fields and to
23860348 3347 add more fields as time goes by. */
c906108c 3348
23860348 3349#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3350#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3351 fetch registers and its stack? */
c5aa993b 3352#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3353#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3354#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3355 the process. */
c906108c 3356
6b8edb51 3357int
cecb1912 3358remote_target::remote_unpack_thread_info_response (const char *pkt,
6b8edb51
PA
3359 threadref *expectedref,
3360 gdb_ext_thread_info *info)
c906108c 3361{
d01949b6 3362 struct remote_state *rs = get_remote_state ();
c906108c 3363 int mask, length;
cfd77fa1 3364 int tag;
c906108c 3365 threadref ref;
cecb1912 3366 const char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3367 int retval = 1;
3368
23860348 3369 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3370 info->active = 0;
3371 info->display[0] = '\0';
3372 info->shortname[0] = '\0';
3373 info->more_display[0] = '\0';
3374
23860348
MS
3375 /* Assume the characters indicating the packet type have been
3376 stripped. */
c906108c
SS
3377 pkt = unpack_int (pkt, &mask); /* arg mask */
3378 pkt = unpack_threadid (pkt, &ref);
3379
3380 if (mask == 0)
8a3fe4f8 3381 warning (_("Incomplete response to threadinfo request."));
c906108c 3382 if (!threadmatch (&ref, expectedref))
23860348 3383 { /* This is an answer to a different request. */
8a3fe4f8 3384 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3385 return 0;
3386 }
3387 copy_threadref (&info->threadid, &ref);
3388
405feb71 3389 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3390
23860348
MS
3391 /* Packets are terminated with nulls. */
3392 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3393 {
3394 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3395 pkt = unpack_byte (pkt, &length); /* length */
3396 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3397 {
8a3fe4f8 3398 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3399 retval = 0;
3400 break;
3401 }
3402 if (tag == TAG_THREADID)
3403 {
3404 if (length != 16)
3405 {
8a3fe4f8 3406 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3407 retval = 0;
3408 break;
3409 }
3410 pkt = unpack_threadid (pkt, &ref);
3411 mask = mask & ~TAG_THREADID;
3412 continue;
3413 }
3414 if (tag == TAG_EXISTS)
3415 {
3416 info->active = stub_unpack_int (pkt, length);
3417 pkt += length;
3418 mask = mask & ~(TAG_EXISTS);
3419 if (length > 8)
3420 {
8a3fe4f8 3421 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3422 retval = 0;
3423 break;
3424 }
3425 continue;
3426 }
3427 if (tag == TAG_THREADNAME)
3428 {
3429 pkt = unpack_string (pkt, &info->shortname[0], length);
3430 mask = mask & ~TAG_THREADNAME;
3431 continue;
3432 }
3433 if (tag == TAG_DISPLAY)
3434 {
3435 pkt = unpack_string (pkt, &info->display[0], length);
3436 mask = mask & ~TAG_DISPLAY;
3437 continue;
3438 }
3439 if (tag == TAG_MOREDISPLAY)
3440 {
3441 pkt = unpack_string (pkt, &info->more_display[0], length);
3442 mask = mask & ~TAG_MOREDISPLAY;
3443 continue;
3444 }
8a3fe4f8 3445 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3446 break; /* Not a tag we know about. */
c906108c
SS
3447 }
3448 return retval;
3449}
3450
6b8edb51
PA
3451int
3452remote_target::remote_get_threadinfo (threadref *threadid,
3453 int fieldset,
3454 gdb_ext_thread_info *info)
c906108c 3455{
d01949b6 3456 struct remote_state *rs = get_remote_state ();
c906108c 3457 int result;
c906108c 3458
8d64371b 3459 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3460 putpkt (rs->buf);
8d64371b 3461 getpkt (&rs->buf, 0);
3084dd77
PA
3462
3463 if (rs->buf[0] == '\0')
3464 return 0;
3465
8d64371b 3466 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3467 threadid, info);
c906108c
SS
3468 return result;
3469}
3470
c906108c
SS
3471/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3472
3473static char *
fba45db2
KB
3474pack_threadlist_request (char *pkt, int startflag, int threadcount,
3475 threadref *nextthread)
c906108c
SS
3476{
3477 *pkt++ = 'q'; /* info query packet */
3478 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3479 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3480 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3481 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3482 *pkt = '\0';
3483 return pkt;
3484}
3485
3486/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3487
6b8edb51 3488int
cecb1912 3489remote_target::parse_threadlist_response (const char *pkt, int result_limit,
6b8edb51
PA
3490 threadref *original_echo,
3491 threadref *resultlist,
3492 int *doneflag)
c906108c 3493{
d01949b6 3494 struct remote_state *rs = get_remote_state ();
c906108c
SS
3495 int count, resultcount, done;
3496
3497 resultcount = 0;
3498 /* Assume the 'q' and 'M chars have been stripped. */
cecb1912 3499 const char *limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3500 /* done parse past here */
c906108c
SS
3501 pkt = unpack_byte (pkt, &count); /* count field */
3502 pkt = unpack_nibble (pkt, &done);
3503 /* The first threadid is the argument threadid. */
3504 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3505 while ((count-- > 0) && (pkt < limit))
3506 {
3507 pkt = unpack_threadid (pkt, resultlist++);
3508 if (resultcount++ >= result_limit)
3509 break;
3510 }
3511 if (doneflag)
3512 *doneflag = done;
3513 return resultcount;
3514}
3515
6dc54d91
PA
3516/* Fetch the next batch of threads from the remote. Returns -1 if the
3517 qL packet is not supported, 0 on error and 1 on success. */
3518
6b8edb51
PA
3519int
3520remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3521 int result_limit, int *done, int *result_count,
3522 threadref *threadlist)
c906108c 3523{
d01949b6 3524 struct remote_state *rs = get_remote_state ();
c906108c
SS
3525 int result = 1;
3526
405feb71 3527 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3528 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3529 >= get_remote_packet_size ())
ea9c271d 3530 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3531
8d64371b
TT
3532 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3533 nextthread);
6d820c5c 3534 putpkt (rs->buf);
8d64371b
TT
3535 getpkt (&rs->buf, 0);
3536 if (rs->buf[0] == '\0')
6dc54d91
PA
3537 {
3538 /* Packet not supported. */
3539 return -1;
3540 }
3541
3542 *result_count =
8d64371b 3543 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3544 &rs->echo_nextthread, threadlist, done);
c906108c 3545
0d031856 3546 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3547 {
23860348 3548 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3549 /* Possibly, there is a duplicate response. */
3550 /* Possibilities :
dda83cd7
SM
3551 retransmit immediatly - race conditions
3552 retransmit after timeout - yes
3553 exit
3554 wait for packet, then exit
c906108c 3555 */
8a3fe4f8 3556 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3557 return 0; /* I choose simply exiting. */
c906108c
SS
3558 }
3559 if (*result_count <= 0)
3560 {
3561 if (*done != 1)
3562 {
8a3fe4f8 3563 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3564 result = 0;
3565 }
3566 return result; /* break; */
3567 }
3568 if (*result_count > result_limit)
3569 {
3570 *result_count = 0;
8a3fe4f8 3571 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3572 return 0;
3573 }
3574 return result;
3575}
3576
6dc54d91
PA
3577/* Fetch the list of remote threads, with the qL packet, and call
3578 STEPFUNCTION for each thread found. Stops iterating and returns 1
3579 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3580 STEPFUNCTION returns false. If the packet is not supported,
3581 returns -1. */
c906108c 3582
6b8edb51
PA
3583int
3584remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3585 void *context, int looplimit)
c906108c 3586{
0d031856 3587 struct remote_state *rs = get_remote_state ();
c906108c
SS
3588 int done, i, result_count;
3589 int startflag = 1;
3590 int result = 1;
3591 int loopcount = 0;
c906108c
SS
3592
3593 done = 0;
3594 while (!done)
3595 {
3596 if (loopcount++ > looplimit)
3597 {
3598 result = 0;
8a3fe4f8 3599 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3600 break;
3601 }
6dc54d91
PA
3602 result = remote_get_threadlist (startflag, &rs->nextthread,
3603 MAXTHREADLISTRESULTS,
3604 &done, &result_count,
3605 rs->resultthreadlist);
3606 if (result <= 0)
3607 break;
23860348 3608 /* Clear for later iterations. */
c906108c
SS
3609 startflag = 0;
3610 /* Setup to resume next batch of thread references, set nextthread. */
3611 if (result_count >= 1)
0d031856
TT
3612 copy_threadref (&rs->nextthread,
3613 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3614 i = 0;
3615 while (result_count--)
6dc54d91
PA
3616 {
3617 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3618 {
3619 result = 0;
3620 break;
3621 }
3622 }
c906108c
SS
3623 }
3624 return result;
3625}
3626
6dc54d91
PA
3627/* A thread found on the remote target. */
3628
21fe1c75 3629struct thread_item
6dc54d91 3630{
21fe1c75
SM
3631 explicit thread_item (ptid_t ptid_)
3632 : ptid (ptid_)
3633 {}
3634
3635 thread_item (thread_item &&other) = default;
3636 thread_item &operator= (thread_item &&other) = default;
3637
3638 DISABLE_COPY_AND_ASSIGN (thread_item);
3639
6dc54d91
PA
3640 /* The thread's PTID. */
3641 ptid_t ptid;
3642
21fe1c75
SM
3643 /* The thread's extra info. */
3644 std::string extra;
6dc54d91 3645
21fe1c75
SM
3646 /* The thread's name. */
3647 std::string name;
79efa585 3648
6dc54d91 3649 /* The core the thread was running on. -1 if not known. */
21fe1c75 3650 int core = -1;
f6327dcb
KB
3651
3652 /* The thread handle associated with the thread. */
21fe1c75 3653 gdb::byte_vector thread_handle;
21fe1c75 3654};
6dc54d91
PA
3655
3656/* Context passed around to the various methods listing remote
3657 threads. As new threads are found, they're added to the ITEMS
3658 vector. */
3659
3660struct threads_listing_context
3661{
21fe1c75
SM
3662 /* Return true if this object contains an entry for a thread with ptid
3663 PTID. */
6dc54d91 3664
21fe1c75
SM
3665 bool contains_thread (ptid_t ptid) const
3666 {
3667 auto match_ptid = [&] (const thread_item &item)
3668 {
3669 return item.ptid == ptid;
3670 };
80134cf5 3671
21fe1c75
SM
3672 auto it = std::find_if (this->items.begin (),
3673 this->items.end (),
3674 match_ptid);
80134cf5 3675
21fe1c75
SM
3676 return it != this->items.end ();
3677 }
80134cf5 3678
21fe1c75 3679 /* Remove the thread with ptid PTID. */
80134cf5 3680
21fe1c75
SM
3681 void remove_thread (ptid_t ptid)
3682 {
3683 auto match_ptid = [&] (const thread_item &item)
3684 {
dda83cd7 3685 return item.ptid == ptid;
21fe1c75 3686 };
cbb8991c 3687
21fe1c75
SM
3688 auto it = std::remove_if (this->items.begin (),
3689 this->items.end (),
3690 match_ptid);
cbb8991c 3691
21fe1c75
SM
3692 if (it != this->items.end ())
3693 this->items.erase (it);
3694 }
3695
3696 /* The threads found on the remote target. */
3697 std::vector<thread_item> items;
3698};
cbb8991c 3699
c906108c 3700static int
6dc54d91 3701remote_newthread_step (threadref *ref, void *data)
c906108c 3702{
19ba03f4
SM
3703 struct threads_listing_context *context
3704 = (struct threads_listing_context *) data;
21fe1c75
SM
3705 int pid = inferior_ptid.pid ();
3706 int lwp = threadref_to_int (ref);
3707 ptid_t ptid (pid, lwp);
6dc54d91 3708
21fe1c75 3709 context->items.emplace_back (ptid);
6dc54d91 3710
c906108c
SS
3711 return 1; /* continue iterator */
3712}
3713
3714#define CRAZY_MAX_THREADS 1000
3715
6b8edb51
PA
3716ptid_t
3717remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3718{
d01949b6 3719 struct remote_state *rs = get_remote_state ();
c906108c
SS
3720
3721 putpkt ("qC");
8d64371b 3722 getpkt (&rs->buf, 0);
2e9f7625 3723 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3724 {
256642e8 3725 const char *obuf;
c9f35b34
KB
3726 ptid_t result;
3727
3728 result = read_ptid (&rs->buf[2], &obuf);
2189c312
SM
3729 if (*obuf != '\0')
3730 remote_debug_printf ("warning: garbage in qC reply");
c9f35b34
KB
3731
3732 return result;
3733 }
c906108c
SS
3734 else
3735 return oldpid;
3736}
3737
6dc54d91 3738/* List remote threads using the deprecated qL packet. */
cce74817 3739
6b8edb51
PA
3740int
3741remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3742{
6dc54d91
PA
3743 if (remote_threadlist_iterator (remote_newthread_step, context,
3744 CRAZY_MAX_THREADS) >= 0)
3745 return 1;
3746
3747 return 0;
c906108c
SS
3748}
3749
dc146f7c
VP
3750#if defined(HAVE_LIBEXPAT)
3751
dc146f7c
VP
3752static void
3753start_thread (struct gdb_xml_parser *parser,
3754 const struct gdb_xml_element *element,
4d0fdd9b
SM
3755 void *user_data,
3756 std::vector<gdb_xml_value> &attributes)
dc146f7c 3757{
19ba03f4
SM
3758 struct threads_listing_context *data
3759 = (struct threads_listing_context *) user_data;
3d2c1d41 3760 struct gdb_xml_value *attr;
dc146f7c 3761
4d0fdd9b 3762 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3763 ptid_t ptid = read_ptid (id, NULL);
3764
3765 data->items.emplace_back (ptid);
3766 thread_item &item = data->items.back ();
dc146f7c 3767
3d2c1d41
PA
3768 attr = xml_find_attribute (attributes, "core");
3769 if (attr != NULL)
4d0fdd9b 3770 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3771
79efa585 3772 attr = xml_find_attribute (attributes, "name");
21fe1c75 3773 if (attr != NULL)
4d0fdd9b 3774 item.name = (const char *) attr->value.get ();
79efa585 3775
f6327dcb
KB
3776 attr = xml_find_attribute (attributes, "handle");
3777 if (attr != NULL)
4d0fdd9b 3778 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3779}
3780
3781static void
3782end_thread (struct gdb_xml_parser *parser,
3783 const struct gdb_xml_element *element,
3784 void *user_data, const char *body_text)
3785{
19ba03f4
SM
3786 struct threads_listing_context *data
3787 = (struct threads_listing_context *) user_data;
dc146f7c 3788
21fe1c75
SM
3789 if (body_text != NULL && *body_text != '\0')
3790 data->items.back ().extra = body_text;
dc146f7c
VP
3791}
3792
3793const struct gdb_xml_attribute thread_attributes[] = {
3794 { "id", GDB_XML_AF_NONE, NULL, NULL },
3795 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3796 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3797 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3798 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3799};
3800
3801const struct gdb_xml_element thread_children[] = {
3802 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3803};
3804
3805const struct gdb_xml_element threads_children[] = {
3806 { "thread", thread_attributes, thread_children,
3807 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3808 start_thread, end_thread },
3809 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3810};
3811
3812const struct gdb_xml_element threads_elements[] = {
3813 { "threads", NULL, threads_children,
3814 GDB_XML_EF_NONE, NULL, NULL },
3815 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3816};
3817
3818#endif
3819
6dc54d91 3820/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3821
6b8edb51
PA
3822int
3823remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3824{
dc146f7c 3825#if defined(HAVE_LIBEXPAT)
4082afcc 3826 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3827 {
9018be22 3828 gdb::optional<gdb::char_vector> xml
6b8edb51 3829 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3830
9018be22 3831 if (xml && (*xml)[0] != '\0')
dc146f7c 3832 {
6dc54d91 3833 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3834 threads_elements, xml->data (), context);
dc146f7c
VP
3835 }
3836
6dc54d91 3837 return 1;
dc146f7c
VP
3838 }
3839#endif
3840
6dc54d91
PA
3841 return 0;
3842}
3843
3844/* List remote threads using qfThreadInfo/qsThreadInfo. */
3845
6b8edb51
PA
3846int
3847remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3848{
3849 struct remote_state *rs = get_remote_state ();
3850
b80fafe3 3851 if (rs->use_threadinfo_query)
9d1f7ab2 3852 {
256642e8 3853 const char *bufp;
6dc54d91 3854
9d1f7ab2 3855 putpkt ("qfThreadInfo");
8d64371b
TT
3856 getpkt (&rs->buf, 0);
3857 bufp = rs->buf.data ();
9d1f7ab2 3858 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3859 {
9d1f7ab2
MS
3860 while (*bufp++ == 'm') /* reply contains one or more TID */
3861 {
3862 do
3863 {
21fe1c75
SM
3864 ptid_t ptid = read_ptid (bufp, &bufp);
3865 context->items.emplace_back (ptid);
9d1f7ab2
MS
3866 }
3867 while (*bufp++ == ','); /* comma-separated list */
3868 putpkt ("qsThreadInfo");
8d64371b
TT
3869 getpkt (&rs->buf, 0);
3870 bufp = rs->buf.data ();
9d1f7ab2 3871 }
6dc54d91
PA
3872 return 1;
3873 }
3874 else
3875 {
3876 /* Packet not recognized. */
3877 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3878 }
3879 }
3880
6dc54d91
PA
3881 return 0;
3882}
3883
a05575d3
TBA
3884/* Return true if INF only has one non-exited thread. */
3885
3886static bool
3887has_single_non_exited_thread (inferior *inf)
3888{
3889 int count = 0;
3890 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3891 if (++count > 1)
3892 break;
3893 return count == 1;
3894}
3895
e8032dde 3896/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3897 targets. */
3898
f6ac5f3d
PA
3899void
3900remote_target::update_thread_list ()
6dc54d91 3901{
6dc54d91 3902 struct threads_listing_context context;
ab970af1 3903 int got_list = 0;
e8032dde 3904
6dc54d91
PA
3905 /* We have a few different mechanisms to fetch the thread list. Try
3906 them all, starting with the most preferred one first, falling
3907 back to older methods. */
6b8edb51
PA
3908 if (remote_get_threads_with_qxfer (&context)
3909 || remote_get_threads_with_qthreadinfo (&context)
3910 || remote_get_threads_with_ql (&context))
6dc54d91 3911 {
ab970af1
PA
3912 got_list = 1;
3913
21fe1c75 3914 if (context.items.empty ()
f6ac5f3d 3915 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3916 {
3917 /* Some targets don't really support threads, but still
3918 reply an (empty) thread list in response to the thread
3919 listing packets, instead of replying "packet not
3920 supported". Exit early so we don't delete the main
3921 thread. */
7d1a114c
PA
3922 return;
3923 }
3924
ab970af1
PA
3925 /* CONTEXT now holds the current thread list on the remote
3926 target end. Delete GDB-side threads no longer found on the
3927 target. */
08036331 3928 for (thread_info *tp : all_threads_safe ())
cbb8991c 3929 {
5b6d1e4f
PA
3930 if (tp->inf->process_target () != this)
3931 continue;
3932
21fe1c75 3933 if (!context.contains_thread (tp->ptid))
ab970af1 3934 {
a05575d3
TBA
3935 /* Do not remove the thread if it is the last thread in
3936 the inferior. This situation happens when we have a
3937 pending exit process status to process. Otherwise we
3938 may end up with a seemingly live inferior (i.e. pid
3939 != 0) that has no threads. */
3940 if (has_single_non_exited_thread (tp->inf))
3941 continue;
3942
ab970af1 3943 /* Not found. */
00431a78 3944 delete_thread (tp);
ab970af1 3945 }
cbb8991c
DB
3946 }
3947
3948 /* Remove any unreported fork child threads from CONTEXT so
3949 that we don't interfere with follow fork, which is where
3950 creation of such threads is handled. */
3951 remove_new_fork_children (&context);
74531fed 3952
ab970af1 3953 /* And now add threads we don't know about yet to our list. */
21fe1c75 3954 for (thread_item &item : context.items)
6dc54d91 3955 {
21fe1c75 3956 if (item.ptid != null_ptid)
6dc54d91 3957 {
6dc54d91 3958 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3959 executing until proven otherwise with a stop reply.
3960 In all-stop, we can only get here if all threads are
6dc54d91 3961 stopped. */
8a82de58 3962 bool executing = target_is_non_stop_p ();
6dc54d91 3963
21fe1c75 3964 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3965
5b6d1e4f 3966 thread_info *tp = find_thread_ptid (this, item.ptid);
00431a78 3967 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3968 info->core = item.core;
7aabaf9d
SM
3969 info->extra = std::move (item.extra);
3970 info->name = std::move (item.name);
3971 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3972 }
3973 }
3974 }
3975
ab970af1
PA
3976 if (!got_list)
3977 {
3978 /* If no thread listing method is supported, then query whether
3979 each known thread is alive, one by one, with the T packet.
3980 If the target doesn't support threads at all, then this is a
3981 no-op. See remote_thread_alive. */
3982 prune_threads ();
3983 }
9d1f7ab2
MS
3984}
3985
802188a7 3986/*
9d1f7ab2
MS
3987 * Collect a descriptive string about the given thread.
3988 * The target may say anything it wants to about the thread
3989 * (typically info about its blocked / runnable state, name, etc.).
3990 * This string will appear in the info threads display.
802188a7 3991 *
9d1f7ab2
MS
3992 * Optional: targets are not required to implement this function.
3993 */
3994
f6ac5f3d
PA
3995const char *
3996remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3997{
d01949b6 3998 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3999 int set;
4000 threadref id;
4001 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 4002
5d93a237 4003 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 4004 internal_error (__FILE__, __LINE__,
e2e0b3e5 4005 _("remote_threads_extra_info"));
9d1f7ab2 4006
d7e15655 4007 if (tp->ptid == magic_null_ptid
e38504b3 4008 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
4009 /* This is the main thread which was added by GDB. The remote
4010 server doesn't know about it. */
4011 return NULL;
4012
c76a8ea3
PA
4013 std::string &extra = get_remote_thread_info (tp)->extra;
4014
4015 /* If already have cached info, use it. */
4016 if (!extra.empty ())
4017 return extra.c_str ();
4018
4082afcc 4019 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 4020 {
c76a8ea3
PA
4021 /* If we're using qXfer:threads:read, then the extra info is
4022 included in the XML. So if we didn't have anything cached,
4023 it's because there's really no extra info. */
4024 return NULL;
dc146f7c
VP
4025 }
4026
b80fafe3 4027 if (rs->use_threadextra_query)
9d1f7ab2 4028 {
8d64371b
TT
4029 char *b = rs->buf.data ();
4030 char *endb = b + get_remote_packet_size ();
82f73884
PA
4031
4032 xsnprintf (b, endb - b, "qThreadExtraInfo,");
4033 b += strlen (b);
4034 write_ptid (b, endb, tp->ptid);
4035
2e9f7625 4036 putpkt (rs->buf);
8d64371b 4037 getpkt (&rs->buf, 0);
2e9f7625 4038 if (rs->buf[0] != 0)
9d1f7ab2 4039 {
8d64371b
TT
4040 extra.resize (strlen (rs->buf.data ()) / 2);
4041 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 4042 return extra.c_str ();
9d1f7ab2 4043 }
0f71a2f6 4044 }
9d1f7ab2
MS
4045
4046 /* If the above query fails, fall back to the old method. */
b80fafe3 4047 rs->use_threadextra_query = 0;
9d1f7ab2
MS
4048 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
4049 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 4050 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
4051 if (remote_get_threadinfo (&id, set, &threadinfo))
4052 if (threadinfo.active)
0f71a2f6 4053 {
9d1f7ab2 4054 if (*threadinfo.shortname)
c76a8ea3 4055 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 4056 if (*threadinfo.display)
c76a8ea3
PA
4057 {
4058 if (!extra.empty ())
4059 extra += ',';
4060 string_appendf (extra, " State: %s", threadinfo.display);
4061 }
9d1f7ab2 4062 if (*threadinfo.more_display)
c5aa993b 4063 {
c76a8ea3
PA
4064 if (!extra.empty ())
4065 extra += ',';
4066 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 4067 }
c76a8ea3 4068 return extra.c_str ();
0f71a2f6 4069 }
9d1f7ab2 4070 return NULL;
0f71a2f6 4071}
c906108c 4072\f
c5aa993b 4073
f6ac5f3d
PA
4074bool
4075remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
4076 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
4077{
4078 struct remote_state *rs = get_remote_state ();
8d64371b 4079 char *p = rs->buf.data ();
0fb4aa4b 4080
bba74b36 4081 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
4082 p += strlen (p);
4083 p += hexnumstr (p, addr);
4084 putpkt (rs->buf);
8d64371b
TT
4085 getpkt (&rs->buf, 0);
4086 p = rs->buf.data ();
0fb4aa4b
PA
4087
4088 if (*p == 'E')
4089 error (_("Remote failure reply: %s"), p);
4090
4091 if (*p++ == 'm')
4092 {
256642e8 4093 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 4094 return true;
0fb4aa4b
PA
4095 }
4096
5d9310c4 4097 return false;
0fb4aa4b
PA
4098}
4099
f6ac5f3d
PA
4100std::vector<static_tracepoint_marker>
4101remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
4102{
4103 struct remote_state *rs = get_remote_state ();
5d9310c4 4104 std::vector<static_tracepoint_marker> markers;
256642e8 4105 const char *p;
5d9310c4 4106 static_tracepoint_marker marker;
0fb4aa4b
PA
4107
4108 /* Ask for a first packet of static tracepoint marker
4109 definition. */
4110 putpkt ("qTfSTM");
8d64371b
TT
4111 getpkt (&rs->buf, 0);
4112 p = rs->buf.data ();
0fb4aa4b
PA
4113 if (*p == 'E')
4114 error (_("Remote failure reply: %s"), p);
4115
0fb4aa4b
PA
4116 while (*p++ == 'm')
4117 {
0fb4aa4b
PA
4118 do
4119 {
5d9310c4 4120 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 4121
5d9310c4
SM
4122 if (strid == NULL || marker.str_id == strid)
4123 markers.push_back (std::move (marker));
0fb4aa4b
PA
4124 }
4125 while (*p++ == ','); /* comma-separated list */
4126 /* Ask for another packet of static tracepoint definition. */
4127 putpkt ("qTsSTM");
8d64371b
TT
4128 getpkt (&rs->buf, 0);
4129 p = rs->buf.data ();
0fb4aa4b
PA
4130 }
4131
0fb4aa4b
PA
4132 return markers;
4133}
4134
4135\f
10760264
JB
4136/* Implement the to_get_ada_task_ptid function for the remote targets. */
4137
f6ac5f3d
PA
4138ptid_t
4139remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4140{
184ea2f7 4141 return ptid_t (inferior_ptid.pid (), lwp);
10760264
JB
4142}
4143\f
4144
24b06219 4145/* Restart the remote side; this is an extended protocol operation. */
c906108c 4146
6b8edb51
PA
4147void
4148remote_target::extended_remote_restart ()
c906108c 4149{
d01949b6 4150 struct remote_state *rs = get_remote_state ();
c906108c
SS
4151
4152 /* Send the restart command; for reasons I don't understand the
4153 remote side really expects a number after the "R". */
8d64371b 4154 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4155 putpkt (rs->buf);
c906108c 4156
ad9a8f3f 4157 remote_fileio_reset ();
c906108c
SS
4158}
4159\f
4160/* Clean up connection to a remote debugger. */
4161
f6ac5f3d
PA
4162void
4163remote_target::close ()
c906108c 4164{
048094ac 4165 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4166 terminal_ours ();
ce5ce7ed 4167
6b8edb51
PA
4168 trace_reset_local_state ();
4169
4170 delete this;
4171}
4172
4173remote_target::~remote_target ()
4174{
4175 struct remote_state *rs = get_remote_state ();
4176
4177 /* Check for NULL because we may get here with a partially
4178 constructed target/connection. */
4179 if (rs->remote_desc == nullptr)
4180 return;
4181
4182 serial_close (rs->remote_desc);
4183
4184 /* We are destroying the remote target, so we should discard
f48ff2a7 4185 everything of this target. */
6b8edb51 4186 discard_pending_stop_replies_in_queue ();
74531fed 4187
6b8edb51
PA
4188 if (rs->remote_async_inferior_event_token)
4189 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4190
97dfbadd 4191 delete rs->notif_state;
c906108c
SS
4192}
4193
23860348 4194/* Query the remote side for the text, data and bss offsets. */
c906108c 4195
6b8edb51
PA
4196void
4197remote_target::get_offsets ()
c906108c 4198{
d01949b6 4199 struct remote_state *rs = get_remote_state ();
2e9f7625 4200 char *buf;
085dd6e6 4201 char *ptr;
31d99776
DJ
4202 int lose, num_segments = 0, do_sections, do_segments;
4203 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776 4204
a42d7dd8 4205 if (current_program_space->symfile_object_file == NULL)
31d99776 4206 return;
c906108c
SS
4207
4208 putpkt ("qOffsets");
8d64371b
TT
4209 getpkt (&rs->buf, 0);
4210 buf = rs->buf.data ();
c906108c
SS
4211
4212 if (buf[0] == '\000')
4213 return; /* Return silently. Stub doesn't support
23860348 4214 this command. */
c906108c
SS
4215 if (buf[0] == 'E')
4216 {
8a3fe4f8 4217 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4218 return;
4219 }
4220
4221 /* Pick up each field in turn. This used to be done with scanf, but
4222 scanf will make trouble if CORE_ADDR size doesn't match
4223 conversion directives correctly. The following code will work
4224 with any size of CORE_ADDR. */
4225 text_addr = data_addr = bss_addr = 0;
4226 ptr = buf;
4227 lose = 0;
4228
61012eef 4229 if (startswith (ptr, "Text="))
c906108c
SS
4230 {
4231 ptr += 5;
4232 /* Don't use strtol, could lose on big values. */
4233 while (*ptr && *ptr != ';')
4234 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4235
61012eef 4236 if (startswith (ptr, ";Data="))
31d99776
DJ
4237 {
4238 ptr += 6;
4239 while (*ptr && *ptr != ';')
4240 data_addr = (data_addr << 4) + fromhex (*ptr++);
4241 }
4242 else
4243 lose = 1;
4244
61012eef 4245 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4246 {
4247 ptr += 5;
4248 while (*ptr && *ptr != ';')
4249 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4250
31d99776
DJ
4251 if (bss_addr != data_addr)
4252 warning (_("Target reported unsupported offsets: %s"), buf);
4253 }
4254 else
4255 lose = 1;
4256 }
61012eef 4257 else if (startswith (ptr, "TextSeg="))
c906108c 4258 {
31d99776
DJ
4259 ptr += 8;
4260 /* Don't use strtol, could lose on big values. */
c906108c 4261 while (*ptr && *ptr != ';')
31d99776
DJ
4262 text_addr = (text_addr << 4) + fromhex (*ptr++);
4263 num_segments = 1;
4264
61012eef 4265 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4266 {
4267 ptr += 9;
4268 while (*ptr && *ptr != ';')
4269 data_addr = (data_addr << 4) + fromhex (*ptr++);
4270 num_segments++;
4271 }
c906108c
SS
4272 }
4273 else
4274 lose = 1;
4275
4276 if (lose)
8a3fe4f8 4277 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4278 else if (*ptr != '\0')
4279 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4280
a42d7dd8
TT
4281 objfile *objf = current_program_space->symfile_object_file;
4282 section_offsets offs = objf->section_offsets;
c906108c 4283
a42d7dd8 4284 symfile_segment_data_up data = get_symfile_segment_data (objf->obfd);
31d99776
DJ
4285 do_segments = (data != NULL);
4286 do_sections = num_segments == 0;
c906108c 4287
28c32713 4288 if (num_segments > 0)
31d99776 4289 {
31d99776
DJ
4290 segments[0] = text_addr;
4291 segments[1] = data_addr;
4292 }
28c32713
JB
4293 /* If we have two segments, we can still try to relocate everything
4294 by assuming that the .text and .data offsets apply to the whole
4295 text and data segments. Convert the offsets given in the packet
4296 to base addresses for symfile_map_offsets_to_segments. */
68b888ff 4297 else if (data != nullptr && data->segments.size () == 2)
28c32713 4298 {
68b888ff
SM
4299 segments[0] = data->segments[0].base + text_addr;
4300 segments[1] = data->segments[1].base + data_addr;
28c32713
JB
4301 num_segments = 2;
4302 }
8d385431
DJ
4303 /* If the object file has only one segment, assume that it is text
4304 rather than data; main programs with no writable data are rare,
4305 but programs with no code are useless. Of course the code might
4306 have ended up in the data segment... to detect that we would need
4307 the permissions here. */
68b888ff 4308 else if (data && data->segments.size () == 1)
8d385431 4309 {
68b888ff 4310 segments[0] = data->segments[0].base + text_addr;
8d385431
DJ
4311 num_segments = 1;
4312 }
28c32713
JB
4313 /* There's no way to relocate by segment. */
4314 else
4315 do_segments = 0;
31d99776
DJ
4316
4317 if (do_segments)
4318 {
a42d7dd8 4319 int ret = symfile_map_offsets_to_segments (objf->obfd,
62982abd
SM
4320 data.get (), offs,
4321 num_segments, segments);
31d99776
DJ
4322
4323 if (ret == 0 && !do_sections)
3e43a32a
MS
4324 error (_("Can not handle qOffsets TextSeg "
4325 "response with this symbol file"));
31d99776
DJ
4326
4327 if (ret > 0)
4328 do_sections = 0;
4329 }
c906108c 4330
31d99776
DJ
4331 if (do_sections)
4332 {
a42d7dd8 4333 offs[SECT_OFF_TEXT (objf)] = text_addr;
31d99776 4334
3e43a32a
MS
4335 /* This is a temporary kludge to force data and bss to use the
4336 same offsets because that's what nlmconv does now. The real
4337 solution requires changes to the stub and remote.c that I
4338 don't have time to do right now. */
31d99776 4339
a42d7dd8
TT
4340 offs[SECT_OFF_DATA (objf)] = data_addr;
4341 offs[SECT_OFF_BSS (objf)] = data_addr;
31d99776 4342 }
c906108c 4343
a42d7dd8 4344 objfile_relocate (objf, offs);
c906108c
SS
4345}
4346
9a7071a8 4347/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4348
4349void
4350remote_target::send_interrupt_sequence ()
9a7071a8 4351{
5d93a237
TT
4352 struct remote_state *rs = get_remote_state ();
4353
9a7071a8 4354 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4355 remote_serial_write ("\x03", 1);
9a7071a8 4356 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4357 serial_send_break (rs->remote_desc);
9a7071a8
JB
4358 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4359 {
5d93a237 4360 serial_send_break (rs->remote_desc);
c33e31fd 4361 remote_serial_write ("g", 1);
9a7071a8
JB
4362 }
4363 else
4364 internal_error (__FILE__, __LINE__,
4365 _("Invalid value for interrupt_sequence_mode: %s."),
4366 interrupt_sequence_mode);
4367}
4368
3405876a
PA
4369
4370/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4371 and extract the PTID. Returns NULL_PTID if not found. */
4372
4373static ptid_t
e3b2741b 4374stop_reply_extract_thread (const char *stop_reply)
3405876a
PA
4375{
4376 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4377 {
256642e8 4378 const char *p;
3405876a
PA
4379
4380 /* Txx r:val ; r:val (...) */
4381 p = &stop_reply[3];
4382
4383 /* Look for "register" named "thread". */
4384 while (*p != '\0')
4385 {
256642e8 4386 const char *p1;
3405876a
PA
4387
4388 p1 = strchr (p, ':');
4389 if (p1 == NULL)
4390 return null_ptid;
4391
4392 if (strncmp (p, "thread", p1 - p) == 0)
4393 return read_ptid (++p1, &p);
4394
4395 p1 = strchr (p, ';');
4396 if (p1 == NULL)
4397 return null_ptid;
4398 p1++;
4399
4400 p = p1;
4401 }
4402 }
4403
4404 return null_ptid;
4405}
4406
b7ea362b
PA
4407/* Determine the remote side's current thread. If we have a stop
4408 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4409 "thread" register we can extract the current thread from. If not,
4410 ask the remote which is the current thread with qC. The former
4411 method avoids a roundtrip. */
4412
6b8edb51 4413ptid_t
e3b2741b 4414remote_target::get_current_thread (const char *wait_status)
b7ea362b 4415{
6a49a997 4416 ptid_t ptid = null_ptid;
b7ea362b
PA
4417
4418 /* Note we don't use remote_parse_stop_reply as that makes use of
4419 the target architecture, which we haven't yet fully determined at
4420 this point. */
4421 if (wait_status != NULL)
4422 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4423 if (ptid == null_ptid)
b7ea362b
PA
4424 ptid = remote_current_thread (inferior_ptid);
4425
4426 return ptid;
4427}
4428
49c62f2e
PA
4429/* Query the remote target for which is the current thread/process,
4430 add it to our tables, and update INFERIOR_PTID. The caller is
4431 responsible for setting the state such that the remote end is ready
3405876a
PA
4432 to return the current thread.
4433
4434 This function is called after handling the '?' or 'vRun' packets,
4435 whose response is a stop reply from which we can also try
4436 extracting the thread. If the target doesn't support the explicit
4437 qC query, we infer the current thread from that stop reply, passed
64d38fdd 4438 in in WAIT_STATUS, which may be NULL.
49c62f2e 4439
64d38fdd
JM
4440 The function returns pointer to the main thread of the inferior. */
4441
4442thread_info *
e3b2741b 4443remote_target::add_current_inferior_and_thread (const char *wait_status)
49c62f2e
PA
4444{
4445 struct remote_state *rs = get_remote_state ();
9ab8741a 4446 bool fake_pid_p = false;
49c62f2e 4447
0ac55310 4448 switch_to_no_thread ();
49c62f2e 4449
0ac55310
PA
4450 /* Now, if we have thread information, update the current thread's
4451 ptid. */
87215ad1 4452 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4453
87215ad1 4454 if (curr_ptid != null_ptid)
49c62f2e
PA
4455 {
4456 if (!remote_multi_process_p (rs))
9ab8741a 4457 fake_pid_p = true;
49c62f2e
PA
4458 }
4459 else
4460 {
4461 /* Without this, some commands which require an active target
4462 (such as kill) won't work. This variable serves (at least)
4463 double duty as both the pid of the target process (if it has
4464 such), and as a flag indicating that a target is active. */
87215ad1 4465 curr_ptid = magic_null_ptid;
9ab8741a 4466 fake_pid_p = true;
49c62f2e
PA
4467 }
4468
e99b03dc 4469 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4470
87215ad1
SDJ
4471 /* Add the main thread and switch to it. Don't try reading
4472 registers yet, since we haven't fetched the target description
4473 yet. */
5b6d1e4f 4474 thread_info *tp = add_thread_silent (this, curr_ptid);
87215ad1 4475 switch_to_thread_no_regs (tp);
64d38fdd
JM
4476
4477 return tp;
49c62f2e
PA
4478}
4479
6efcd9a8
PA
4480/* Print info about a thread that was found already stopped on
4481 connection. */
4482
1edb66d8
SM
4483void
4484remote_target::print_one_stopped_thread (thread_info *thread)
6efcd9a8 4485{
1edb66d8
SM
4486 target_waitstatus ws;
4487
4488 /* If there is a pending waitstatus, use it. If there isn't it's because
4489 the thread's stop was reported with TARGET_WAITKIND_STOPPED / GDB_SIGNAL_0
4490 and process_initial_stop_replies decided it wasn't interesting to save
4491 and report to the core. */
4492 if (thread->has_pending_waitstatus ())
4493 {
4494 ws = thread->pending_waitstatus ();
4495 thread->clear_pending_waitstatus ();
4496 }
4497 else
4498 {
4499 ws.kind = TARGET_WAITKIND_STOPPED;
4500 ws.value.sig = GDB_SIGNAL_0;
4501 }
6efcd9a8 4502
00431a78 4503 switch_to_thread (thread);
1edb66d8 4504 thread->set_stop_pc (get_frame_pc (get_current_frame ()));
6efcd9a8
PA
4505 set_current_sal_from_frame (get_current_frame ());
4506
1edb66d8
SM
4507 /* For "info program". */
4508 set_last_target_status (this, thread->ptid, ws);
6efcd9a8 4509
1edb66d8 4510 if (ws.kind == TARGET_WAITKIND_STOPPED)
6efcd9a8 4511 {
1edb66d8 4512 enum gdb_signal sig = ws.value.sig;
6efcd9a8
PA
4513
4514 if (signal_print_state (sig))
76727919 4515 gdb::observers::signal_received.notify (sig);
6efcd9a8 4516 }
76727919 4517 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4518}
4519
221e1a37
PA
4520/* Process all initial stop replies the remote side sent in response
4521 to the ? packet. These indicate threads that were already stopped
4522 on initial connection. We mark these threads as stopped and print
4523 their current frame before giving the user the prompt. */
4524
6b8edb51
PA
4525void
4526remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4527{
4528 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4529 struct thread_info *selected = NULL;
4530 struct thread_info *lowest_stopped = NULL;
4531 struct thread_info *first = NULL;
221e1a37 4532
1edb66d8
SM
4533 /* This is only used when the target is non-stop. */
4534 gdb_assert (target_is_non_stop_p ());
4535
221e1a37
PA
4536 /* Consume the initial pending events. */
4537 while (pending_stop_replies-- > 0)
4538 {
4539 ptid_t waiton_ptid = minus_one_ptid;
4540 ptid_t event_ptid;
4541 struct target_waitstatus ws;
4542 int ignore_event = 0;
4543
4544 memset (&ws, 0, sizeof (ws));
4545 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4546 if (remote_debug)
4547 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4548
4549 switch (ws.kind)
4550 {
4551 case TARGET_WAITKIND_IGNORE:
4552 case TARGET_WAITKIND_NO_RESUMED:
4553 case TARGET_WAITKIND_SIGNALLED:
4554 case TARGET_WAITKIND_EXITED:
4555 /* We shouldn't see these, but if we do, just ignore. */
2189c312 4556 remote_debug_printf ("event ignored");
221e1a37
PA
4557 ignore_event = 1;
4558 break;
4559
4560 case TARGET_WAITKIND_EXECD:
4561 xfree (ws.value.execd_pathname);
4562 break;
4563 default:
4564 break;
4565 }
4566
4567 if (ignore_event)
4568 continue;
4569
5b6d1e4f 4570 thread_info *evthread = find_thread_ptid (this, event_ptid);
221e1a37
PA
4571
4572 if (ws.kind == TARGET_WAITKIND_STOPPED)
4573 {
4574 enum gdb_signal sig = ws.value.sig;
4575
4576 /* Stubs traditionally report SIGTRAP as initial signal,
4577 instead of signal 0. Suppress it. */
4578 if (sig == GDB_SIGNAL_TRAP)
4579 sig = GDB_SIGNAL_0;
1edb66d8 4580 evthread->set_stop_signal (sig);
6efcd9a8
PA
4581 ws.value.sig = sig;
4582 }
221e1a37 4583
6efcd9a8
PA
4584 if (ws.kind != TARGET_WAITKIND_STOPPED
4585 || ws.value.sig != GDB_SIGNAL_0)
1edb66d8 4586 evthread->set_pending_waitstatus (ws);
6efcd9a8 4587
719546c4
SM
4588 set_executing (this, event_ptid, false);
4589 set_running (this, event_ptid, false);
c9d22089 4590 get_remote_thread_info (evthread)->set_not_resumed ();
6efcd9a8
PA
4591 }
4592
4593 /* "Notice" the new inferiors before anything related to
4594 registers/memory. */
5b6d1e4f 4595 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4596 {
6efcd9a8
PA
4597 inf->needs_setup = 1;
4598
4599 if (non_stop)
4600 {
08036331 4601 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4602 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4603 from_tty);
4604 }
4605 }
4606
4607 /* If all-stop on top of non-stop, pause all threads. Note this
4608 records the threads' stop pc, so must be done after "noticing"
4609 the inferiors. */
4610 if (!non_stop)
4611 {
4612 stop_all_threads ();
4613
4614 /* If all threads of an inferior were already stopped, we
4615 haven't setup the inferior yet. */
5b6d1e4f 4616 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4617 {
6efcd9a8
PA
4618 if (inf->needs_setup)
4619 {
08036331 4620 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4621 switch_to_thread_no_regs (thread);
4622 setup_inferior (0);
4623 }
4624 }
221e1a37 4625 }
6efcd9a8
PA
4626
4627 /* Now go over all threads that are stopped, and print their current
4628 frame. If all-stop, then if there's a signalled thread, pick
4629 that as current. */
5b6d1e4f 4630 for (thread_info *thread : all_non_exited_threads (this))
6efcd9a8 4631 {
6efcd9a8
PA
4632 if (first == NULL)
4633 first = thread;
4634
4635 if (!non_stop)
00431a78 4636 thread->set_running (false);
6efcd9a8
PA
4637 else if (thread->state != THREAD_STOPPED)
4638 continue;
4639
1edb66d8 4640 if (selected == nullptr && thread->has_pending_waitstatus ())
6efcd9a8
PA
4641 selected = thread;
4642
5d5658a1
PA
4643 if (lowest_stopped == NULL
4644 || thread->inf->num < lowest_stopped->inf->num
4645 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4646 lowest_stopped = thread;
4647
4648 if (non_stop)
4649 print_one_stopped_thread (thread);
4650 }
4651
4652 /* In all-stop, we only print the status of one thread, and leave
4653 others with their status pending. */
4654 if (!non_stop)
4655 {
08036331 4656 thread_info *thread = selected;
6efcd9a8
PA
4657 if (thread == NULL)
4658 thread = lowest_stopped;
4659 if (thread == NULL)
4660 thread = first;
4661
4662 print_one_stopped_thread (thread);
4663 }
221e1a37
PA
4664}
4665
048094ac
PA
4666/* Start the remote connection and sync state. */
4667
f6ac5f3d
PA
4668void
4669remote_target::start_remote (int from_tty, int extended_p)
c906108c 4670{
2189c312
SM
4671 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
4672
c8d104ad
PA
4673 struct remote_state *rs = get_remote_state ();
4674 struct packet_config *noack_config;
8621d6a9 4675
048094ac
PA
4676 /* Signal other parts that we're going through the initial setup,
4677 and so things may not be stable yet. E.g., we don't try to
4678 install tracepoints until we've relocated symbols. Also, a
4679 Ctrl-C before we're connected and synced up can't interrupt the
4680 target. Instead, it offers to drop the (potentially wedged)
4681 connection. */
4d60b897 4682 rs->starting_up = true;
048094ac 4683
522002f9 4684 QUIT;
c906108c 4685
9a7071a8
JB
4686 if (interrupt_on_connect)
4687 send_interrupt_sequence ();
4688
57e12211 4689 /* Ack any packet which the remote side has already sent. */
048094ac 4690 remote_serial_write ("+", 1);
1e51243a 4691
c8d104ad
PA
4692 /* The first packet we send to the target is the optional "supported
4693 packets" request. If the target can answer this, it will tell us
4694 which later probes to skip. */
4695 remote_query_supported ();
4696
d914c394 4697 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4698 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4699 set_permissions ();
d914c394 4700
57809e5e
JK
4701 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4702 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4703 as a reply to known packet. For packet "vFile:setfs:" it is an
4704 invalid reply and GDB would return error in
4705 remote_hostio_set_filesystem, making remote files access impossible.
4706 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4707 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4708 {
4709 const char v_mustreplyempty[] = "vMustReplyEmpty";
4710
4711 putpkt (v_mustreplyempty);
8d64371b
TT
4712 getpkt (&rs->buf, 0);
4713 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4714 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4715 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4716 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4717 rs->buf.data ());
57809e5e
JK
4718 }
4719
c8d104ad
PA
4720 /* Next, we possibly activate noack mode.
4721
4722 If the QStartNoAckMode packet configuration is set to AUTO,
4723 enable noack mode if the stub reported a wish for it with
4724 qSupported.
4725
4726 If set to TRUE, then enable noack mode even if the stub didn't
4727 report it in qSupported. If the stub doesn't reply OK, the
4728 session ends with an error.
4729
4730 If FALSE, then don't activate noack mode, regardless of what the
4731 stub claimed should be the default with qSupported. */
4732
4733 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4734 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4735 {
4736 putpkt ("QStartNoAckMode");
8d64371b 4737 getpkt (&rs->buf, 0);
c8d104ad
PA
4738 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4739 rs->noack_mode = 1;
4740 }
4741
04bd08de 4742 if (extended_p)
5fe04517
PA
4743 {
4744 /* Tell the remote that we are using the extended protocol. */
4745 putpkt ("!");
8d64371b 4746 getpkt (&rs->buf, 0);
5fe04517
PA
4747 }
4748
9b224c5e
PA
4749 /* Let the target know which signals it is allowed to pass down to
4750 the program. */
4751 update_signals_program_target ();
4752
d962ef82
DJ
4753 /* Next, if the target can specify a description, read it. We do
4754 this before anything involving memory or registers. */
4755 target_find_description ();
4756
6c95b8df
PA
4757 /* Next, now that we know something about the target, update the
4758 address spaces in the program spaces. */
4759 update_address_spaces ();
4760
50c71eaf
PA
4761 /* On OSs where the list of libraries is global to all
4762 processes, we fetch them early. */
f5656ead 4763 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4764 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4765
6efcd9a8 4766 if (target_is_non_stop_p ())
74531fed 4767 {
4082afcc 4768 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4769 error (_("Non-stop mode requested, but remote "
4770 "does not support non-stop"));
74531fed
PA
4771
4772 putpkt ("QNonStop:1");
8d64371b 4773 getpkt (&rs->buf, 0);
74531fed 4774
8d64371b
TT
4775 if (strcmp (rs->buf.data (), "OK") != 0)
4776 error (_("Remote refused setting non-stop mode with: %s"),
4777 rs->buf.data ());
74531fed
PA
4778
4779 /* Find about threads and processes the stub is already
4780 controlling. We default to adding them in the running state.
4781 The '?' query below will then tell us about which threads are
4782 stopped. */
f6ac5f3d 4783 this->update_thread_list ();
74531fed 4784 }
4082afcc 4785 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4786 {
4787 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4788 Request it explicitly. */
74531fed 4789 putpkt ("QNonStop:0");
8d64371b 4790 getpkt (&rs->buf, 0);
74531fed 4791
8d64371b
TT
4792 if (strcmp (rs->buf.data (), "OK") != 0)
4793 error (_("Remote refused setting all-stop mode with: %s"),
4794 rs->buf.data ());
74531fed
PA
4795 }
4796
a0743c90
YQ
4797 /* Upload TSVs regardless of whether the target is running or not. The
4798 remote stub, such as GDBserver, may have some predefined or builtin
4799 TSVs, even if the target is not running. */
f6ac5f3d 4800 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4801 {
4802 struct uploaded_tsv *uploaded_tsvs = NULL;
4803
f6ac5f3d 4804 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4805 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4806 }
4807
2d717e4f
DJ
4808 /* Check whether the target is running now. */
4809 putpkt ("?");
8d64371b 4810 getpkt (&rs->buf, 0);
2d717e4f 4811
6efcd9a8 4812 if (!target_is_non_stop_p ())
2d717e4f 4813 {
b5c8f22d
SM
4814 char *wait_status = NULL;
4815
74531fed 4816 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4817 {
04bd08de 4818 if (!extended_p)
74531fed 4819 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4820
4821 /* We're connected, but not running. Drop out before we
4822 call start_remote. */
4d60b897 4823 rs->starting_up = false;
c35b1492 4824 return;
2d717e4f
DJ
4825 }
4826 else
74531fed 4827 {
74531fed 4828 /* Save the reply for later. */
8d64371b
TT
4829 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4830 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4831 }
4832
b7ea362b 4833 /* Fetch thread list. */
e8032dde 4834 target_update_thread_list ();
b7ea362b 4835
74531fed
PA
4836 /* Let the stub know that we want it to return the thread. */
4837 set_continue_thread (minus_one_ptid);
4838
5b6d1e4f 4839 if (thread_count (this) == 0)
b7ea362b
PA
4840 {
4841 /* Target has no concept of threads at all. GDB treats
4842 non-threaded target as single-threaded; add a main
4843 thread. */
64d38fdd
JM
4844 thread_info *tp = add_current_inferior_and_thread (wait_status);
4845 get_remote_thread_info (tp)->set_resumed ();
b7ea362b
PA
4846 }
4847 else
4848 {
4849 /* We have thread information; select the thread the target
4850 says should be current. If we're reconnecting to a
4851 multi-threaded program, this will ideally be the thread
4852 that last reported an event before GDB disconnected. */
75c6c844
PA
4853 ptid_t curr_thread = get_current_thread (wait_status);
4854 if (curr_thread == null_ptid)
b7ea362b
PA
4855 {
4856 /* Odd... The target was able to list threads, but not
4857 tell us which thread was current (no "thread"
4858 register in T stop reply?). Just pick the first
4859 thread in the thread list then. */
2189c312
SM
4860
4861 remote_debug_printf ("warning: couldn't determine remote "
4862 "current thread; picking first in list.");
c9f35b34 4863
5b6d1e4f
PA
4864 for (thread_info *tp : all_non_exited_threads (this,
4865 minus_one_ptid))
75c6c844
PA
4866 {
4867 switch_to_thread (tp);
4868 break;
4869 }
b7ea362b 4870 }
75c6c844 4871 else
5b6d1e4f 4872 switch_to_thread (find_thread_ptid (this, curr_thread));
b7ea362b 4873 }
74531fed 4874
6e586cc5
YQ
4875 /* init_wait_for_inferior should be called before get_offsets in order
4876 to manage `inserted' flag in bp loc in a correct state.
4877 breakpoint_init_inferior, called from init_wait_for_inferior, set
4878 `inserted' flag to 0, while before breakpoint_re_set, called from
4879 start_remote, set `inserted' flag to 1. In the initialization of
4880 inferior, breakpoint_init_inferior should be called first, and then
4881 breakpoint_re_set can be called. If this order is broken, state of
4882 `inserted' flag is wrong, and cause some problems on breakpoint
4883 manipulation. */
4884 init_wait_for_inferior ();
4885
74531fed
PA
4886 get_offsets (); /* Get text, data & bss offsets. */
4887
d962ef82
DJ
4888 /* If we could not find a description using qXfer, and we know
4889 how to do it some other way, try again. This is not
4890 supported for non-stop; it could be, but it is tricky if
4891 there are no stopped threads when we connect. */
f6ac5f3d 4892 if (remote_read_description_p (this)
f5656ead 4893 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4894 {
4895 target_clear_description ();
4896 target_find_description ();
4897 }
4898
74531fed
PA
4899 /* Use the previously fetched status. */
4900 gdb_assert (wait_status != NULL);
8d64371b 4901 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4902 rs->cached_wait_status = 1;
4903
f6ac5f3d 4904 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4905 }
4906 else
4907 {
68c97600
PA
4908 /* Clear WFI global state. Do this before finding about new
4909 threads and inferiors, and setting the current inferior.
4910 Otherwise we would clear the proceed status of the current
4911 inferior when we want its stop_soon state to be preserved
4912 (see notice_new_inferior). */
4913 init_wait_for_inferior ();
4914
74531fed
PA
4915 /* In non-stop, we will either get an "OK", meaning that there
4916 are no stopped threads at this time; or, a regular stop
4917 reply. In the latter case, there may be more than one thread
4918 stopped --- we pull them all out using the vStopped
4919 mechanism. */
8d64371b 4920 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4921 {
722247f1 4922 struct notif_client *notif = &notif_client_stop;
2d717e4f 4923
722247f1
YQ
4924 /* remote_notif_get_pending_replies acks this one, and gets
4925 the rest out. */
f48ff2a7 4926 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4927 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4928 remote_notif_get_pending_events (notif);
74531fed 4929 }
2d717e4f 4930
5b6d1e4f 4931 if (thread_count (this) == 0)
74531fed 4932 {
04bd08de 4933 if (!extended_p)
74531fed 4934 error (_("The target is not running (try extended-remote?)"));
82f73884 4935
c35b1492
PA
4936 /* We're connected, but not running. Drop out before we
4937 call start_remote. */
4d60b897 4938 rs->starting_up = false;
c35b1492
PA
4939 return;
4940 }
74531fed 4941
2455069d 4942 /* Report all signals during attach/startup. */
adc6a863 4943 pass_signals ({});
221e1a37
PA
4944
4945 /* If there are already stopped threads, mark them stopped and
4946 report their stops before giving the prompt to the user. */
6efcd9a8 4947 process_initial_stop_replies (from_tty);
221e1a37
PA
4948
4949 if (target_can_async_p ())
4950 target_async (1);
74531fed 4951 }
c8d104ad 4952
c8d104ad 4953 /* If we connected to a live target, do some additional setup. */
55f6301a 4954 if (target_has_execution ())
c8d104ad 4955 {
a42d7dd8
TT
4956 /* No use without a symbol-file. */
4957 if (current_program_space->symfile_object_file)
36d25514 4958 remote_check_symbols ();
c8d104ad 4959 }
50c71eaf 4960
d5551862
SS
4961 /* Possibly the target has been engaged in a trace run started
4962 previously; find out where things are at. */
f6ac5f3d 4963 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4964 {
00bf0b85 4965 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4966
00bf0b85
SS
4967 if (current_trace_status ()->running)
4968 printf_filtered (_("Trace is already running on the target.\n"));
4969
f6ac5f3d 4970 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4971
4972 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4973 }
4974
c0272db5
TW
4975 /* Possibly the target has been engaged in a btrace record started
4976 previously; find out where things are at. */
4977 remote_btrace_maybe_reopen ();
4978
1e51243a
PA
4979 /* The thread and inferior lists are now synchronized with the
4980 target, our symbols have been relocated, and we're merged the
4981 target's tracepoints with ours. We're done with basic start
4982 up. */
4d60b897 4983 rs->starting_up = false;
1e51243a 4984
a25a5a45
PA
4985 /* Maybe breakpoints are global and need to be inserted now. */
4986 if (breakpoints_should_be_inserted_now ())
50c71eaf 4987 insert_breakpoints ();
c906108c
SS
4988}
4989
121b3efd
PA
4990const char *
4991remote_target::connection_string ()
4992{
4993 remote_state *rs = get_remote_state ();
4994
4995 if (rs->remote_desc->name != NULL)
4996 return rs->remote_desc->name;
4997 else
4998 return NULL;
4999}
5000
c906108c
SS
5001/* Open a connection to a remote debugger.
5002 NAME is the filename used for communication. */
5003
f6ac5f3d
PA
5004void
5005remote_target::open (const char *name, int from_tty)
c906108c 5006{
f6ac5f3d 5007 open_1 (name, from_tty, 0);
43ff13b4
JM
5008}
5009
c906108c
SS
5010/* Open a connection to a remote debugger using the extended
5011 remote gdb protocol. NAME is the filename used for communication. */
5012
f6ac5f3d
PA
5013void
5014extended_remote_target::open (const char *name, int from_tty)
c906108c 5015{
f6ac5f3d 5016 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
5017}
5018
ca4f7f8b
PA
5019/* Reset all packets back to "unknown support". Called when opening a
5020 new connection to a remote target. */
c906108c 5021
d471ea57 5022static void
ca4f7f8b 5023reset_all_packet_configs_support (void)
d471ea57
AC
5024{
5025 int i;
a744cf53 5026
444abaca 5027 for (i = 0; i < PACKET_MAX; i++)
4082afcc 5028 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
5029}
5030
ca4f7f8b
PA
5031/* Initialize all packet configs. */
5032
5033static void
5034init_all_packet_configs (void)
5035{
5036 int i;
5037
5038 for (i = 0; i < PACKET_MAX; i++)
5039 {
5040 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
5041 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
5042 }
5043}
5044
23860348 5045/* Symbol look-up. */
dc8acb97 5046
6b8edb51
PA
5047void
5048remote_target::remote_check_symbols ()
dc8acb97 5049{
8d64371b 5050 char *tmp;
dc8acb97
MS
5051 int end;
5052
63154eca
PA
5053 /* The remote side has no concept of inferiors that aren't running
5054 yet, it only knows about running processes. If we're connected
5055 but our current inferior is not running, we should not invite the
5056 remote target to request symbol lookups related to its
5057 (unrelated) current process. */
55f6301a 5058 if (!target_has_execution ())
63154eca
PA
5059 return;
5060
4082afcc 5061 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
5062 return;
5063
63154eca
PA
5064 /* Make sure the remote is pointing at the right process. Note
5065 there's no way to select "no process". */
3c9c4b83
PA
5066 set_general_process ();
5067
6d820c5c
DJ
5068 /* Allocate a message buffer. We can't reuse the input buffer in RS,
5069 because we need both at the same time. */
66644cd3 5070 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 5071 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 5072
23860348 5073 /* Invite target to request symbol lookups. */
dc8acb97
MS
5074
5075 putpkt ("qSymbol::");
8d64371b 5076 getpkt (&reply, 0);
28170b88 5077 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 5078
8d64371b 5079 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 5080 {
77e371c0
TT
5081 struct bound_minimal_symbol sym;
5082
dc8acb97 5083 tmp = &reply[8];
66644cd3
AB
5084 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
5085 strlen (tmp) / 2);
dc8acb97 5086 msg[end] = '\0';
66644cd3 5087 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 5088 if (sym.minsym == NULL)
66644cd3
AB
5089 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
5090 &reply[8]);
dc8acb97 5091 else
2bbe3cc1 5092 {
f5656ead 5093 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 5094 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
5095
5096 /* If this is a function address, return the start of code
5097 instead of any data function descriptor. */
328d42d8
SM
5098 sym_addr = gdbarch_convert_from_func_ptr_addr
5099 (target_gdbarch (), sym_addr, current_inferior ()->top_target ());
2bbe3cc1 5100
66644cd3 5101 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 5102 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 5103 }
66644cd3
AB
5104
5105 putpkt (msg.data ());
8d64371b 5106 getpkt (&reply, 0);
dc8acb97
MS
5107 }
5108}
5109
9db8d71f 5110static struct serial *
baa336ce 5111remote_serial_open (const char *name)
9db8d71f
DJ
5112{
5113 static int udp_warning = 0;
5114
5115 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
5116 of in ser-tcp.c, because it is the remote protocol assuming that the
5117 serial connection is reliable and not the serial connection promising
5118 to be. */
61012eef 5119 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 5120 {
3e43a32a
MS
5121 warning (_("The remote protocol may be unreliable over UDP.\n"
5122 "Some events may be lost, rendering further debugging "
5123 "impossible."));
9db8d71f
DJ
5124 udp_warning = 1;
5125 }
5126
5127 return serial_open (name);
5128}
5129
d914c394
SS
5130/* Inform the target of our permission settings. The permission flags
5131 work without this, but if the target knows the settings, it can do
5132 a couple things. First, it can add its own check, to catch cases
5133 that somehow manage to get by the permissions checks in target
5134 methods. Second, if the target is wired to disallow particular
5135 settings (for instance, a system in the field that is not set up to
5136 be able to stop at a breakpoint), it can object to any unavailable
5137 permissions. */
5138
5139void
f6ac5f3d 5140remote_target::set_permissions ()
d914c394
SS
5141{
5142 struct remote_state *rs = get_remote_state ();
5143
8d64371b 5144 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
5145 "WriteReg:%x;WriteMem:%x;"
5146 "InsertBreak:%x;InsertTrace:%x;"
5147 "InsertFastTrace:%x;Stop:%x",
5148 may_write_registers, may_write_memory,
5149 may_insert_breakpoints, may_insert_tracepoints,
5150 may_insert_fast_tracepoints, may_stop);
d914c394 5151 putpkt (rs->buf);
8d64371b 5152 getpkt (&rs->buf, 0);
d914c394
SS
5153
5154 /* If the target didn't like the packet, warn the user. Do not try
5155 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5156 if (strcmp (rs->buf.data (), "OK") != 0)
5157 warning (_("Remote refused setting permissions with: %s"),
5158 rs->buf.data ());
d914c394
SS
5159}
5160
be2a5f71
DJ
5161/* This type describes each known response to the qSupported
5162 packet. */
5163struct protocol_feature
5164{
5165 /* The name of this protocol feature. */
5166 const char *name;
5167
5168 /* The default for this protocol feature. */
5169 enum packet_support default_support;
5170
5171 /* The function to call when this feature is reported, or after
5172 qSupported processing if the feature is not supported.
5173 The first argument points to this structure. The second
5174 argument indicates whether the packet requested support be
5175 enabled, disabled, or probed (or the default, if this function
5176 is being called at the end of processing and this feature was
5177 not reported). The third argument may be NULL; if not NULL, it
5178 is a NUL-terminated string taken from the packet following
5179 this feature's name and an equals sign. */
6b8edb51
PA
5180 void (*func) (remote_target *remote, const struct protocol_feature *,
5181 enum packet_support, const char *);
be2a5f71
DJ
5182
5183 /* The corresponding packet for this feature. Only used if
5184 FUNC is remote_supported_packet. */
5185 int packet;
5186};
5187
be2a5f71 5188static void
6b8edb51
PA
5189remote_supported_packet (remote_target *remote,
5190 const struct protocol_feature *feature,
be2a5f71
DJ
5191 enum packet_support support,
5192 const char *argument)
5193{
5194 if (argument)
5195 {
5196 warning (_("Remote qSupported response supplied an unexpected value for"
5197 " \"%s\"."), feature->name);
5198 return;
5199 }
5200
4082afcc 5201 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5202}
be2a5f71 5203
6b8edb51
PA
5204void
5205remote_target::remote_packet_size (const protocol_feature *feature,
5206 enum packet_support support, const char *value)
be2a5f71
DJ
5207{
5208 struct remote_state *rs = get_remote_state ();
5209
5210 int packet_size;
5211 char *value_end;
5212
5213 if (support != PACKET_ENABLE)
5214 return;
5215
5216 if (value == NULL || *value == '\0')
5217 {
5218 warning (_("Remote target reported \"%s\" without a size."),
5219 feature->name);
5220 return;
5221 }
5222
5223 errno = 0;
5224 packet_size = strtol (value, &value_end, 16);
5225 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5226 {
5227 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5228 feature->name, value);
5229 return;
5230 }
5231
be2a5f71
DJ
5232 /* Record the new maximum packet size. */
5233 rs->explicit_packet_size = packet_size;
5234}
5235
cb8c24b6 5236static void
6b8edb51
PA
5237remote_packet_size (remote_target *remote, const protocol_feature *feature,
5238 enum packet_support support, const char *value)
5239{
5240 remote->remote_packet_size (feature, support, value);
5241}
5242
dc473cfb 5243static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5244 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5245 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5246 PACKET_qXfer_auxv },
c78fa86a
GB
5247 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5248 PACKET_qXfer_exec_file },
23181151
DJ
5249 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5250 PACKET_qXfer_features },
cfa9d6d9
DJ
5251 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5252 PACKET_qXfer_libraries },
2268b414
JK
5253 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5254 PACKET_qXfer_libraries_svr4 },
ced63ec0 5255 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5256 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5257 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5258 PACKET_qXfer_memory_map },
07e059b5
VP
5259 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5260 PACKET_qXfer_osdata },
dc146f7c
VP
5261 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5262 PACKET_qXfer_threads },
b3b9301e
PA
5263 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5264 PACKET_qXfer_traceframe_info },
89be2091
DJ
5265 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5266 PACKET_QPassSignals },
82075af2
JS
5267 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5268 PACKET_QCatchSyscalls },
9b224c5e
PA
5269 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5270 PACKET_QProgramSignals },
bc3b087d
SDJ
5271 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5272 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5273 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5274 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5275 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5276 PACKET_QEnvironmentHexEncoded },
5277 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5278 PACKET_QEnvironmentReset },
5279 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5280 PACKET_QEnvironmentUnset },
a6f3e723
SL
5281 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5282 PACKET_QStartNoAckMode },
4082afcc
PA
5283 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5284 PACKET_multiprocess_feature },
5285 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5286 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5287 PACKET_qXfer_siginfo_read },
5288 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5289 PACKET_qXfer_siginfo_write },
4082afcc 5290 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5291 PACKET_ConditionalTracepoints },
4082afcc 5292 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5293 PACKET_ConditionalBreakpoints },
4082afcc 5294 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5295 PACKET_BreakpointCommands },
4082afcc 5296 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5297 PACKET_FastTracepoints },
4082afcc 5298 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5299 PACKET_StaticTracepoints },
4082afcc 5300 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5301 PACKET_InstallInTrace},
4082afcc
PA
5302 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5303 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5304 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5305 PACKET_bc },
5306 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5307 PACKET_bs },
409873ef
SS
5308 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5309 PACKET_TracepointSource },
d914c394
SS
5310 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5311 PACKET_QAllow },
4082afcc
PA
5312 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5313 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5314 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5315 PACKET_qXfer_fdpic },
169081d0
TG
5316 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5317 PACKET_qXfer_uib },
03583c20
UW
5318 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5319 PACKET_QDisableRandomization },
d1feda86 5320 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5321 { "QTBuffer:size", PACKET_DISABLE,
5322 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5323 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5324 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5325 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5326 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5327 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5328 PACKET_qXfer_btrace },
5329 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5330 PACKET_qXfer_btrace_conf },
5331 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5332 PACKET_Qbtrace_conf_bts_size },
5333 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5334 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5335 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5336 PACKET_fork_event_feature },
5337 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5338 PACKET_vfork_event_feature },
94585166
DB
5339 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5340 PACKET_exec_event_feature },
b20a6524 5341 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5342 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5343 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5344 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5345 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
2c2e7f87
LM
5346 { "memory-tagging", PACKET_DISABLE, remote_supported_packet,
5347 PACKET_memory_tagging_feature },
be2a5f71
DJ
5348};
5349
c8d5aac9
L
5350static char *remote_support_xml;
5351
5352/* Register string appended to "xmlRegisters=" in qSupported query. */
5353
5354void
6e39997a 5355register_remote_support_xml (const char *xml)
c8d5aac9
L
5356{
5357#if defined(HAVE_LIBEXPAT)
5358 if (remote_support_xml == NULL)
c4f7c687 5359 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5360 else
5361 {
5362 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5363 char *saveptr;
5364 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5365
5366 do
5367 {
5368 if (strcmp (p, xml) == 0)
5369 {
5370 /* already there */
5371 xfree (copy);
5372 return;
5373 }
5374 }
ca3a04f6 5375 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5376 xfree (copy);
5377
94b0dee1
PA
5378 remote_support_xml = reconcat (remote_support_xml,
5379 remote_support_xml, ",", xml,
5380 (char *) NULL);
c8d5aac9
L
5381 }
5382#endif
5383}
5384
69b6ecb0
TT
5385static void
5386remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5387{
69b6ecb0
TT
5388 if (!msg->empty ())
5389 msg->append (";");
5390 msg->append (append);
c8d5aac9
L
5391}
5392
6b8edb51
PA
5393void
5394remote_target::remote_query_supported ()
be2a5f71
DJ
5395{
5396 struct remote_state *rs = get_remote_state ();
5397 char *next;
5398 int i;
5399 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5400
5401 /* The packet support flags are handled differently for this packet
5402 than for most others. We treat an error, a disabled packet, and
5403 an empty response identically: any features which must be reported
5404 to be used will be automatically disabled. An empty buffer
5405 accomplishes this, since that is also the representation for a list
5406 containing no features. */
5407
5408 rs->buf[0] = 0;
4082afcc 5409 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5410 {
69b6ecb0 5411 std::string q;
c8d5aac9 5412
73b8c1fd 5413 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5414 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5415
f7e6eed5 5416 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5417 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5418 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5419 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5420
69b6ecb0 5421 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5422
8020350c
DB
5423 if (packet_set_cmd_state (PACKET_fork_event_feature)
5424 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5425 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5426 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5427 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5428 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5429 if (packet_set_cmd_state (PACKET_exec_event_feature)
5430 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5431 remote_query_supported_append (&q, "exec-events+");
89245bc0 5432
750ce8d1 5433 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5434 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5435
65706a29 5436 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5437 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5438
f2faf941 5439 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5440 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5441
2c2e7f87
LM
5442 if (packet_set_cmd_state (PACKET_memory_tagging_feature)
5443 != AUTO_BOOLEAN_FALSE)
5444 remote_query_supported_append (&q, "memory-tagging+");
5445
b35d5edb
PA
5446 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5447 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5448 if (remote_support_xml != NULL
5449 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5450 remote_query_supported_append (&q, remote_support_xml);
82f73884 5451
69b6ecb0
TT
5452 q = "qSupported:" + q;
5453 putpkt (q.c_str ());
94b0dee1 5454
8d64371b 5455 getpkt (&rs->buf, 0);
be2a5f71
DJ
5456
5457 /* If an error occured, warn, but do not return - just reset the
5458 buffer to empty and go on to disable features. */
5459 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5460 == PACKET_ERROR)
5461 {
8d64371b 5462 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5463 rs->buf[0] = 0;
5464 }
5465 }
5466
5467 memset (seen, 0, sizeof (seen));
5468
8d64371b 5469 next = rs->buf.data ();
be2a5f71
DJ
5470 while (*next)
5471 {
5472 enum packet_support is_supported;
5473 char *p, *end, *name_end, *value;
5474
5475 /* First separate out this item from the rest of the packet. If
5476 there's another item after this, we overwrite the separator
5477 (terminated strings are much easier to work with). */
5478 p = next;
5479 end = strchr (p, ';');
5480 if (end == NULL)
5481 {
5482 end = p + strlen (p);
5483 next = end;
5484 }
5485 else
5486 {
89be2091
DJ
5487 *end = '\0';
5488 next = end + 1;
5489
be2a5f71
DJ
5490 if (end == p)
5491 {
5492 warning (_("empty item in \"qSupported\" response"));
5493 continue;
5494 }
be2a5f71
DJ
5495 }
5496
5497 name_end = strchr (p, '=');
5498 if (name_end)
5499 {
5500 /* This is a name=value entry. */
5501 is_supported = PACKET_ENABLE;
5502 value = name_end + 1;
5503 *name_end = '\0';
5504 }
5505 else
5506 {
5507 value = NULL;
5508 switch (end[-1])
5509 {
5510 case '+':
5511 is_supported = PACKET_ENABLE;
5512 break;
5513
5514 case '-':
5515 is_supported = PACKET_DISABLE;
5516 break;
5517
5518 case '?':
5519 is_supported = PACKET_SUPPORT_UNKNOWN;
5520 break;
5521
5522 default:
3e43a32a
MS
5523 warning (_("unrecognized item \"%s\" "
5524 "in \"qSupported\" response"), p);
be2a5f71
DJ
5525 continue;
5526 }
5527 end[-1] = '\0';
5528 }
5529
5530 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5531 if (strcmp (remote_protocol_features[i].name, p) == 0)
5532 {
5533 const struct protocol_feature *feature;
5534
5535 seen[i] = 1;
5536 feature = &remote_protocol_features[i];
6b8edb51 5537 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5538 break;
5539 }
5540 }
5541
5542 /* If we increased the packet size, make sure to increase the global
5543 buffer size also. We delay this until after parsing the entire
5544 qSupported packet, because this is the same buffer we were
5545 parsing. */
8d64371b
TT
5546 if (rs->buf.size () < rs->explicit_packet_size)
5547 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5548
5549 /* Handle the defaults for unmentioned features. */
5550 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5551 if (!seen[i])
5552 {
5553 const struct protocol_feature *feature;
5554
5555 feature = &remote_protocol_features[i];
6b8edb51 5556 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5557 }
5558}
5559
048094ac
PA
5560/* Serial QUIT handler for the remote serial descriptor.
5561
5562 Defers handling a Ctrl-C until we're done with the current
5563 command/response packet sequence, unless:
5564
5565 - We're setting up the connection. Don't send a remote interrupt
5566 request, as we're not fully synced yet. Quit immediately
5567 instead.
5568
5569 - The target has been resumed in the foreground
223ffa71 5570 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5571 packet, and we're blocked waiting for the stop reply, thus a
5572 Ctrl-C should be immediately sent to the target.
5573
5574 - We get a second Ctrl-C while still within the same serial read or
5575 write. In that case the serial is seemingly wedged --- offer to
5576 quit/disconnect.
5577
5578 - We see a second Ctrl-C without target response, after having
5579 previously interrupted the target. In that case the target/stub
5580 is probably wedged --- offer to quit/disconnect.
5581*/
5582
6b8edb51
PA
5583void
5584remote_target::remote_serial_quit_handler ()
048094ac
PA
5585{
5586 struct remote_state *rs = get_remote_state ();
5587
5588 if (check_quit_flag ())
5589 {
5590 /* If we're starting up, we're not fully synced yet. Quit
5591 immediately. */
5592 if (rs->starting_up)
5593 quit ();
5594 else if (rs->got_ctrlc_during_io)
5595 {
5596 if (query (_("The target is not responding to GDB commands.\n"
5597 "Stop debugging it? ")))
5b6d1e4f 5598 remote_unpush_and_throw (this);
048094ac
PA
5599 }
5600 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5601 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5602 interrupt_query ();
5603 /* All-stop protocol, and blocked waiting for stop reply. Send
5604 an interrupt request. */
223ffa71 5605 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5606 target_interrupt ();
048094ac
PA
5607 else
5608 rs->got_ctrlc_during_io = 1;
5609 }
5610}
5611
6b8edb51
PA
5612/* The remote_target that is current while the quit handler is
5613 overridden with remote_serial_quit_handler. */
5614static remote_target *curr_quit_handler_target;
5615
5616static void
5617remote_serial_quit_handler ()
5618{
5619 curr_quit_handler_target->remote_serial_quit_handler ();
5620}
5621
5b6d1e4f
PA
5622/* Remove the remote target from the target stack of each inferior
5623 that is using it. Upper targets depend on it so remove them
5624 first. */
78a095c3
JK
5625
5626static void
5b6d1e4f 5627remote_unpush_target (remote_target *target)
78a095c3 5628{
5b6d1e4f
PA
5629 /* We have to unpush the target from all inferiors, even those that
5630 aren't running. */
5631 scoped_restore_current_inferior restore_current_inferior;
5632
5633 for (inferior *inf : all_inferiors (target))
5634 {
5635 switch_to_inferior_no_thread (inf);
5636 pop_all_targets_at_and_above (process_stratum);
5637 generic_mourn_inferior ();
5638 }
d7cb0ef3
PA
5639
5640 /* Don't rely on target_close doing this when the target is popped
5641 from the last remote inferior above, because something may be
5642 holding a reference to the target higher up on the stack, meaning
5643 target_close won't be called yet. We lost the connection to the
5644 target, so clear these now, otherwise we may later throw
5645 TARGET_CLOSE_ERROR while trying to tell the remote target to
5646 close the file. */
5647 fileio_handles_invalidate_target (target);
78a095c3 5648}
be2a5f71 5649
048094ac 5650static void
5b6d1e4f 5651remote_unpush_and_throw (remote_target *target)
048094ac 5652{
5b6d1e4f 5653 remote_unpush_target (target);
048094ac
PA
5654 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5655}
5656
f6ac5f3d
PA
5657void
5658remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5659{
6b8edb51 5660 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5661
c906108c 5662 if (name == 0)
8a3fe4f8 5663 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5664 "serial device is attached to the remote system\n"
8a3fe4f8 5665 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5666
2d717e4f 5667 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5668 Ask this question first, before target_preopen has a chance to kill
5669 anything. */
55f6301a 5670 if (curr_remote != NULL && !target_has_execution ())
2d717e4f 5671 {
78a095c3
JK
5672 if (from_tty
5673 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5674 error (_("Still connected."));
5675 }
5676
78a095c3 5677 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5678 target_preopen (from_tty);
5679
ad9a8f3f 5680 remote_fileio_reset ();
1dd41f16
NS
5681 reopen_exec_file ();
5682 reread_symbols ();
5683
6b8edb51
PA
5684 remote_target *remote
5685 = (extended_p ? new extended_remote_target () : new remote_target ());
5686 target_ops_up target_holder (remote);
5687
5688 remote_state *rs = remote->get_remote_state ();
5689
5690 /* See FIXME above. */
5691 if (!target_async_permitted)
5692 rs->wait_forever_enabled_p = 1;
5693
5d93a237
TT
5694 rs->remote_desc = remote_serial_open (name);
5695 if (!rs->remote_desc)
c906108c
SS
5696 perror_with_name (name);
5697
5698 if (baud_rate != -1)
5699 {
5d93a237 5700 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5701 {
9b74d5d3
KB
5702 /* The requested speed could not be set. Error out to
5703 top level after closing remote_desc. Take care to
5704 set remote_desc to NULL to avoid closing remote_desc
5705 more than once. */
5d93a237
TT
5706 serial_close (rs->remote_desc);
5707 rs->remote_desc = NULL;
c906108c
SS
5708 perror_with_name (name);
5709 }
5710 }
5711
236af5e3 5712 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5713 serial_raw (rs->remote_desc);
c906108c
SS
5714
5715 /* If there is something sitting in the buffer we might take it as a
5716 response to a command, which would be bad. */
5d93a237 5717 serial_flush_input (rs->remote_desc);
c906108c
SS
5718
5719 if (from_tty)
5720 {
5721 puts_filtered ("Remote debugging using ");
5722 puts_filtered (name);
5723 puts_filtered ("\n");
5724 }
d9f719f1 5725
6b8edb51 5726 /* Switch to using the remote target now. */
02980c56 5727 current_inferior ()->push_target (std::move (target_holder));
c906108c 5728
74531fed 5729 /* Register extra event sources in the event loop. */
6b8edb51 5730 rs->remote_async_inferior_event_token
baa8575b 5731 = create_async_event_handler (remote_async_inferior_event_handler, nullptr,
db20ebdf 5732 "remote");
6b8edb51 5733 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5734
be2a5f71
DJ
5735 /* Reset the target state; these things will be queried either by
5736 remote_query_supported or as they are needed. */
ca4f7f8b 5737 reset_all_packet_configs_support ();
74531fed 5738 rs->cached_wait_status = 0;
be2a5f71 5739 rs->explicit_packet_size = 0;
a6f3e723 5740 rs->noack_mode = 0;
82f73884 5741 rs->extended = extended_p;
e24a49d8 5742 rs->waiting_for_stop_reply = 0;
3a29589a 5743 rs->ctrlc_pending_p = 0;
048094ac 5744 rs->got_ctrlc_during_io = 0;
802188a7 5745
47f8a51d
TT
5746 rs->general_thread = not_sent_ptid;
5747 rs->continue_thread = not_sent_ptid;
262e1174 5748 rs->remote_traceframe_number = -1;
c906108c 5749
3a00c802
PA
5750 rs->last_resume_exec_dir = EXEC_FORWARD;
5751
9d1f7ab2 5752 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5753 rs->use_threadinfo_query = 1;
5754 rs->use_threadextra_query = 1;
9d1f7ab2 5755
dd194f6b 5756 rs->readahead_cache.invalidate ();
80152258 5757
c6ebd6cf 5758 if (target_async_permitted)
92d1e331 5759 {
92d1e331
DJ
5760 /* FIXME: cagney/1999-09-23: During the initial connection it is
5761 assumed that the target is already ready and able to respond to
0df8b418 5762 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5763 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5764 around this. Eventually a mechanism that allows
92d1e331 5765 wait_for_inferior() to expect/get timeouts will be
23860348 5766 implemented. */
6b8edb51 5767 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5768 }
5769
23860348 5770 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5771 no_shared_libraries (NULL, 0);
f78f6cf1 5772
36918e70 5773 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5774 target (we'd otherwise be in an inconsistent state) and then
5775 propogate the error on up the exception chain. This ensures that
5776 the caller doesn't stumble along blindly assuming that the
5777 function succeeded. The CLI doesn't have this problem but other
5778 UI's, such as MI do.
36918e70
AC
5779
5780 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5781 this function should return an error indication letting the
ce2826aa 5782 caller restore the previous state. Unfortunately the command
36918e70
AC
5783 ``target remote'' is directly wired to this function making that
5784 impossible. On a positive note, the CLI side of this problem has
5785 been fixed - the function set_cmd_context() makes it possible for
5786 all the ``target ....'' commands to share a common callback
5787 function. See cli-dump.c. */
109c3e39 5788 {
2d717e4f 5789
a70b8144 5790 try
04bd08de 5791 {
6b8edb51 5792 remote->start_remote (from_tty, extended_p);
04bd08de 5793 }
230d2906 5794 catch (const gdb_exception &ex)
109c3e39 5795 {
c8d104ad
PA
5796 /* Pop the partially set up target - unless something else did
5797 already before throwing the exception. */
6b8edb51 5798 if (ex.error != TARGET_CLOSE_ERROR)
5b6d1e4f 5799 remote_unpush_target (remote);
eedc3f4f 5800 throw;
109c3e39
AC
5801 }
5802 }
c906108c 5803
6b8edb51 5804 remote_btrace_reset (rs);
f4abbc16 5805
c6ebd6cf 5806 if (target_async_permitted)
6b8edb51 5807 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5808}
5809
de0d863e
DB
5810/* Detach the specified process. */
5811
6b8edb51
PA
5812void
5813remote_target::remote_detach_pid (int pid)
de0d863e
DB
5814{
5815 struct remote_state *rs = get_remote_state ();
5816
4c7333b3
PA
5817 /* This should not be necessary, but the handling for D;PID in
5818 GDBserver versions prior to 8.2 incorrectly assumes that the
5819 selected process points to the same process we're detaching,
5820 leading to misbehavior (and possibly GDBserver crashing) when it
5821 does not. Since it's easy and cheap, work around it by forcing
5822 GDBserver to select GDB's current process. */
5823 set_general_process ();
5824
de0d863e 5825 if (remote_multi_process_p (rs))
8d64371b 5826 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5827 else
8d64371b 5828 strcpy (rs->buf.data (), "D");
de0d863e
DB
5829
5830 putpkt (rs->buf);
8d64371b 5831 getpkt (&rs->buf, 0);
de0d863e
DB
5832
5833 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5834 ;
5835 else if (rs->buf[0] == '\0')
5836 error (_("Remote doesn't know how to detach"));
5837 else
5838 error (_("Can't detach process."));
5839}
5840
5841/* This detaches a program to which we previously attached, using
5842 inferior_ptid to identify the process. After this is done, GDB
5843 can be used to debug some other program. We better not have left
5844 any breakpoints in the target program or it'll die when it hits
5845 one. */
c906108c 5846
6b8edb51 5847void
00431a78 5848remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5849{
e99b03dc 5850 int pid = inferior_ptid.pid ();
d01949b6 5851 struct remote_state *rs = get_remote_state ();
de0d863e 5852 int is_fork_parent;
c906108c 5853
55f6301a 5854 if (!target_has_execution ())
2d717e4f
DJ
5855 error (_("No process to detach from."));
5856
0f48b757 5857 target_announce_detach (from_tty);
7cee1e54 5858
e87f0fe8
PA
5859 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
5860 {
5861 /* If we're in breakpoints-always-inserted mode, or the inferior
5862 is running, we have to remove breakpoints before detaching.
5863 We don't do this in common code instead because not all
5864 targets support removing breakpoints while the target is
5865 running. The remote target / gdbserver does, though. */
5866 remove_breakpoints_inf (current_inferior ());
5867 }
5868
c906108c 5869 /* Tell the remote target to detach. */
de0d863e 5870 remote_detach_pid (pid);
82f73884 5871
8020350c 5872 /* Exit only if this is the only active inferior. */
5b6d1e4f 5873 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
7cee1e54 5874 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5875
5b6d1e4f 5876 thread_info *tp = find_thread_ptid (this, inferior_ptid);
00431a78 5877
de0d863e
DB
5878 /* Check to see if we are detaching a fork parent. Note that if we
5879 are detaching a fork child, tp == NULL. */
5880 is_fork_parent = (tp != NULL
5881 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5882
5883 /* If doing detach-on-fork, we don't mourn, because that will delete
5884 breakpoints that should be available for the followed inferior. */
5885 if (!is_fork_parent)
f67c0c91 5886 {
249b5733
PA
5887 /* Save the pid as a string before mourning, since that will
5888 unpush the remote target, and we need the string after. */
f2907e49 5889 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5890
5891 target_mourn_inferior (inferior_ptid);
5892 if (print_inferior_events)
5893 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5894 inf->num, infpid.c_str ());
5895 }
de0d863e
DB
5896 else
5897 {
0ac55310 5898 switch_to_no_thread ();
00431a78 5899 detach_inferior (current_inferior ());
de0d863e 5900 }
2d717e4f
DJ
5901}
5902
f6ac5f3d
PA
5903void
5904remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5905{
00431a78 5906 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5907}
5908
f6ac5f3d
PA
5909void
5910extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5911{
00431a78 5912 remote_detach_1 (inf, from_tty);
de0d863e
DB
5913}
5914
5915/* Target follow-fork function for remote targets. On entry, and
5916 at return, the current inferior is the fork parent.
5917
5918 Note that although this is currently only used for extended-remote,
5919 it is named remote_follow_fork in anticipation of using it for the
5920 remote target as well. */
5921
e97007b6 5922void
82d1f134
SM
5923remote_target::follow_fork (inferior *child_inf, ptid_t child_ptid,
5924 target_waitkind fork_kind, bool follow_child,
5925 bool detach_fork)
de0d863e 5926{
82d1f134
SM
5927 process_stratum_target::follow_fork (child_inf, child_ptid,
5928 fork_kind, follow_child, detach_fork);
5929
de0d863e
DB
5930 struct remote_state *rs = get_remote_state ();
5931
3a849a34
SM
5932 if ((fork_kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5933 || (fork_kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5934 {
5935 /* When following the parent and detaching the child, we detach
5936 the child here. For the case of following the child and
5937 detaching the parent, the detach is done in the target-
5938 independent follow fork code in infrun.c. We can't use
5939 target_detach when detaching an unfollowed child because
5940 the client side doesn't know anything about the child. */
5941 if (detach_fork && !follow_child)
5942 {
5943 /* Detach the fork child. */
3a849a34 5944 remote_detach_pid (child_ptid.pid ());
de0d863e
DB
5945 }
5946 }
c906108c
SS
5947}
5948
94585166 5949/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
294c36eb 5950 in the program space of the new inferior. */
94585166 5951
f6ac5f3d 5952void
294c36eb
SM
5953remote_target::follow_exec (inferior *follow_inf, ptid_t ptid,
5954 const char *execd_pathname)
94585166 5955{
294c36eb
SM
5956 process_stratum_target::follow_exec (follow_inf, ptid, execd_pathname);
5957
94585166
DB
5958 /* We know that this is a target file name, so if it has the "target:"
5959 prefix we strip it off before saving it in the program space. */
5960 if (is_target_filename (execd_pathname))
5961 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5962
294c36eb 5963 set_pspace_remote_exec_file (follow_inf->pspace, execd_pathname);
94585166
DB
5964}
5965
6ad8ae5c
DJ
5966/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5967
f6ac5f3d
PA
5968void
5969remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5970{
43ff13b4 5971 if (args)
2d717e4f 5972 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5973
8020350c 5974 /* Make sure we unpush even the extended remote targets. Calling
5b6d1e4f
PA
5975 target_mourn_inferior won't unpush, and
5976 remote_target::mourn_inferior won't unpush if there is more than
5977 one inferior left. */
5978 remote_unpush_target (this);
2d717e4f 5979
43ff13b4
JM
5980 if (from_tty)
5981 puts_filtered ("Ending remote debugging.\n");
5982}
5983
2d717e4f
DJ
5984/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5985 be chatty about it. */
5986
f6ac5f3d
PA
5987void
5988extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5989{
5990 struct remote_state *rs = get_remote_state ();
be86555c 5991 int pid;
96ef3384 5992 char *wait_status = NULL;
2d717e4f 5993
74164c56 5994 pid = parse_pid_to_attach (args);
2d717e4f 5995
74164c56
JK
5996 /* Remote PID can be freely equal to getpid, do not check it here the same
5997 way as in other targets. */
2d717e4f 5998
4082afcc 5999 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
6000 error (_("This target does not support attaching to a process"));
6001
7cee1e54
PA
6002 if (from_tty)
6003 {
d9fa87f4 6004 const char *exec_file = get_exec_file (0);
7cee1e54
PA
6005
6006 if (exec_file)
6007 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 6008 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
6009 else
6010 printf_unfiltered (_("Attaching to %s\n"),
a068643d 6011 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
6012 }
6013
8d64371b 6014 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 6015 putpkt (rs->buf);
8d64371b 6016 getpkt (&rs->buf, 0);
2d717e4f 6017
4082afcc
PA
6018 switch (packet_ok (rs->buf,
6019 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 6020 {
4082afcc 6021 case PACKET_OK:
6efcd9a8 6022 if (!target_is_non_stop_p ())
74531fed
PA
6023 {
6024 /* Save the reply for later. */
8d64371b
TT
6025 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
6026 strcpy (wait_status, rs->buf.data ());
74531fed 6027 }
8d64371b 6028 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 6029 error (_("Attaching to %s failed with: %s"),
a068643d 6030 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 6031 rs->buf.data ());
4082afcc
PA
6032 break;
6033 case PACKET_UNKNOWN:
6034 error (_("This target does not support attaching to a process"));
6035 default:
50fa3001
SDJ
6036 error (_("Attaching to %s failed"),
6037 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 6038 }
2d717e4f 6039
0ac55310 6040 switch_to_inferior_no_thread (remote_add_inferior (false, pid, 1, 0));
bad34192 6041
f2907e49 6042 inferior_ptid = ptid_t (pid);
79d7f229 6043
6efcd9a8 6044 if (target_is_non_stop_p ())
bad34192 6045 {
bad34192 6046 /* Get list of threads. */
f6ac5f3d 6047 update_thread_list ();
82f73884 6048
0ac55310
PA
6049 thread_info *thread = first_thread_of_inferior (current_inferior ());
6050 if (thread != nullptr)
6051 switch_to_thread (thread);
bad34192
PA
6052
6053 /* Invalidate our notion of the remote current thread. */
47f8a51d 6054 record_currthread (rs, minus_one_ptid);
bad34192 6055 }
74531fed 6056 else
bad34192 6057 {
0ac55310
PA
6058 /* Now, if we have thread information, update the main thread's
6059 ptid. */
6060 ptid_t curr_ptid = remote_current_thread (ptid_t (pid));
bad34192
PA
6061
6062 /* Add the main thread to the thread list. */
0ac55310
PA
6063 thread_info *thr = add_thread_silent (this, curr_ptid);
6064
6065 switch_to_thread (thr);
6066
00aecdcf
PA
6067 /* Don't consider the thread stopped until we've processed the
6068 saved stop reply. */
5b6d1e4f 6069 set_executing (this, thr->ptid, true);
bad34192 6070 }
c0a2216e 6071
96ef3384
UW
6072 /* Next, if the target can specify a description, read it. We do
6073 this before anything involving memory or registers. */
6074 target_find_description ();
6075
6efcd9a8 6076 if (!target_is_non_stop_p ())
74531fed
PA
6077 {
6078 /* Use the previously fetched status. */
6079 gdb_assert (wait_status != NULL);
6080
6081 if (target_can_async_p ())
6082 {
722247f1 6083 struct notif_event *reply
6b8edb51 6084 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 6085
722247f1 6086 push_stop_reply ((struct stop_reply *) reply);
74531fed 6087
6a3753b3 6088 target_async (1);
74531fed
PA
6089 }
6090 else
6091 {
6092 gdb_assert (wait_status != NULL);
8d64371b 6093 strcpy (rs->buf.data (), wait_status);
74531fed
PA
6094 rs->cached_wait_status = 1;
6095 }
6096 }
6097 else
621cc310
PA
6098 {
6099 gdb_assert (wait_status == NULL);
6100
6101 gdb_assert (target_can_async_p ());
6102 target_async (1);
6103 }
2d717e4f
DJ
6104}
6105
b9c1d481
AS
6106/* Implementation of the to_post_attach method. */
6107
f6ac5f3d
PA
6108void
6109extended_remote_target::post_attach (int pid)
b9c1d481 6110{
6efcd9a8
PA
6111 /* Get text, data & bss offsets. */
6112 get_offsets ();
6113
b9c1d481
AS
6114 /* In certain cases GDB might not have had the chance to start
6115 symbol lookup up until now. This could happen if the debugged
6116 binary is not using shared libraries, the vsyscall page is not
6117 present (on Linux) and the binary itself hadn't changed since the
6118 debugging process was started. */
a42d7dd8 6119 if (current_program_space->symfile_object_file != NULL)
b9c1d481
AS
6120 remote_check_symbols();
6121}
6122
c906108c 6123\f
506fb367
DJ
6124/* Check for the availability of vCont. This function should also check
6125 the response. */
c906108c 6126
6b8edb51
PA
6127void
6128remote_target::remote_vcont_probe ()
c906108c 6129{
6b8edb51 6130 remote_state *rs = get_remote_state ();
2e9f7625 6131 char *buf;
6d820c5c 6132
8d64371b 6133 strcpy (rs->buf.data (), "vCont?");
2e9f7625 6134 putpkt (rs->buf);
8d64371b
TT
6135 getpkt (&rs->buf, 0);
6136 buf = rs->buf.data ();
c906108c 6137
506fb367 6138 /* Make sure that the features we assume are supported. */
61012eef 6139 if (startswith (buf, "vCont"))
506fb367
DJ
6140 {
6141 char *p = &buf[5];
750ce8d1 6142 int support_c, support_C;
506fb367 6143
750ce8d1
YQ
6144 rs->supports_vCont.s = 0;
6145 rs->supports_vCont.S = 0;
506fb367
DJ
6146 support_c = 0;
6147 support_C = 0;
d458bd84 6148 rs->supports_vCont.t = 0;
c1e36e3e 6149 rs->supports_vCont.r = 0;
506fb367
DJ
6150 while (p && *p == ';')
6151 {
6152 p++;
6153 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6154 rs->supports_vCont.s = 1;
506fb367 6155 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6156 rs->supports_vCont.S = 1;
506fb367
DJ
6157 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
6158 support_c = 1;
6159 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
6160 support_C = 1;
74531fed 6161 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 6162 rs->supports_vCont.t = 1;
c1e36e3e
PA
6163 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
6164 rs->supports_vCont.r = 1;
506fb367
DJ
6165
6166 p = strchr (p, ';');
6167 }
c906108c 6168
750ce8d1
YQ
6169 /* If c, and C are not all supported, we can't use vCont. Clearing
6170 BUF will make packet_ok disable the packet. */
6171 if (!support_c || !support_C)
506fb367
DJ
6172 buf[0] = 0;
6173 }
c906108c 6174
8d64371b 6175 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5b6d1e4f 6176 rs->supports_vCont_probed = true;
506fb367 6177}
c906108c 6178
0d8f58ca
PA
6179/* Helper function for building "vCont" resumptions. Write a
6180 resumption to P. ENDP points to one-passed-the-end of the buffer
6181 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6182 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6183 resumed thread should be single-stepped and/or signalled. If PTID
6184 equals minus_one_ptid, then all threads are resumed; if PTID
6185 represents a process, then all threads of the process are resumed;
6186 the thread to be stepped and/or signalled is given in the global
6187 INFERIOR_PTID. */
6188
6b8edb51
PA
6189char *
6190remote_target::append_resumption (char *p, char *endp,
6191 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6192{
6193 struct remote_state *rs = get_remote_state ();
6194
a493e3e2 6195 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6196 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6197 else if (step
6198 /* GDB is willing to range step. */
6199 && use_range_stepping
6200 /* Target supports range stepping. */
6201 && rs->supports_vCont.r
6202 /* We don't currently support range stepping multiple
6203 threads with a wildcard (though the protocol allows it,
6204 so stubs shouldn't make an active effort to forbid
6205 it). */
0e998d96 6206 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6207 {
6208 struct thread_info *tp;
6209
d7e15655 6210 if (ptid == minus_one_ptid)
c1e36e3e
PA
6211 {
6212 /* If we don't know about the target thread's tid, then
6213 we're resuming magic_null_ptid (see caller). */
5b6d1e4f 6214 tp = find_thread_ptid (this, magic_null_ptid);
c1e36e3e
PA
6215 }
6216 else
5b6d1e4f 6217 tp = find_thread_ptid (this, ptid);
c1e36e3e
PA
6218 gdb_assert (tp != NULL);
6219
6220 if (tp->control.may_range_step)
6221 {
6222 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6223
6224 p += xsnprintf (p, endp - p, ";r%s,%s",
6225 phex_nz (tp->control.step_range_start,
6226 addr_size),
6227 phex_nz (tp->control.step_range_end,
6228 addr_size));
6229 }
6230 else
6231 p += xsnprintf (p, endp - p, ";s");
6232 }
0d8f58ca
PA
6233 else if (step)
6234 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6235 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6236 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6237 else
6238 p += xsnprintf (p, endp - p, ";c");
6239
0e998d96 6240 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6241 {
6242 ptid_t nptid;
6243
6244 /* All (-1) threads of process. */
184ea2f7 6245 nptid = ptid_t (ptid.pid (), -1);
0d8f58ca
PA
6246
6247 p += xsnprintf (p, endp - p, ":");
6248 p = write_ptid (p, endp, nptid);
6249 }
d7e15655 6250 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6251 {
6252 p += xsnprintf (p, endp - p, ":");
6253 p = write_ptid (p, endp, ptid);
6254 }
6255
6256 return p;
6257}
6258
799a2abe
PA
6259/* Clear the thread's private info on resume. */
6260
6261static void
6262resume_clear_thread_private_info (struct thread_info *thread)
6263{
6264 if (thread->priv != NULL)
6265 {
7aabaf9d
SM
6266 remote_thread_info *priv = get_remote_thread_info (thread);
6267
6268 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6269 priv->watch_data_address = 0;
799a2abe
PA
6270 }
6271}
6272
e5ef252a
PA
6273/* Append a vCont continue-with-signal action for threads that have a
6274 non-zero stop signal. */
6275
6b8edb51
PA
6276char *
6277remote_target::append_pending_thread_resumptions (char *p, char *endp,
6278 ptid_t ptid)
e5ef252a 6279{
5b6d1e4f 6280 for (thread_info *thread : all_non_exited_threads (this, ptid))
08036331 6281 if (inferior_ptid != thread->ptid
1edb66d8 6282 && thread->stop_signal () != GDB_SIGNAL_0)
e5ef252a
PA
6283 {
6284 p = append_resumption (p, endp, thread->ptid,
1edb66d8
SM
6285 0, thread->stop_signal ());
6286 thread->set_stop_signal (GDB_SIGNAL_0);
799a2abe 6287 resume_clear_thread_private_info (thread);
e5ef252a
PA
6288 }
6289
6290 return p;
6291}
6292
7b68ffbb
PA
6293/* Set the target running, using the packets that use Hc
6294 (c/s/C/S). */
6295
6b8edb51
PA
6296void
6297remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6298 gdb_signal siggnal)
7b68ffbb
PA
6299{
6300 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6301 char *buf;
6302
6303 rs->last_sent_signal = siggnal;
6304 rs->last_sent_step = step;
6305
6306 /* The c/s/C/S resume packets use Hc, so set the continue
6307 thread. */
d7e15655 6308 if (ptid == minus_one_ptid)
7b68ffbb
PA
6309 set_continue_thread (any_thread_ptid);
6310 else
6311 set_continue_thread (ptid);
6312
5b6d1e4f 6313 for (thread_info *thread : all_non_exited_threads (this))
7b68ffbb
PA
6314 resume_clear_thread_private_info (thread);
6315
8d64371b 6316 buf = rs->buf.data ();
6b8edb51 6317 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6318 {
6319 /* We don't pass signals to the target in reverse exec mode. */
6320 if (info_verbose && siggnal != GDB_SIGNAL_0)
6321 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6322 siggnal);
6323
6324 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6325 error (_("Remote reverse-step not supported."));
6326 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6327 error (_("Remote reverse-continue not supported."));
6328
6329 strcpy (buf, step ? "bs" : "bc");
6330 }
6331 else if (siggnal != GDB_SIGNAL_0)
6332 {
6333 buf[0] = step ? 'S' : 'C';
6334 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6335 buf[2] = tohex (((int) siggnal) & 0xf);
6336 buf[3] = '\0';
6337 }
6338 else
6339 strcpy (buf, step ? "s" : "c");
6340
6341 putpkt (buf);
6342}
6343
506fb367
DJ
6344/* Resume the remote inferior by using a "vCont" packet. The thread
6345 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6346 resumed thread should be single-stepped and/or signalled. If PTID
6347 equals minus_one_ptid, then all threads are resumed; the thread to
6348 be stepped and/or signalled is given in the global INFERIOR_PTID.
6349 This function returns non-zero iff it resumes the inferior.
44eaed12 6350
7b68ffbb
PA
6351 This function issues a strict subset of all possible vCont commands
6352 at the moment. */
44eaed12 6353
6b8edb51
PA
6354int
6355remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6356 enum gdb_signal siggnal)
506fb367
DJ
6357{
6358 struct remote_state *rs = get_remote_state ();
82f73884
PA
6359 char *p;
6360 char *endp;
44eaed12 6361
7b68ffbb 6362 /* No reverse execution actions defined for vCont. */
6b8edb51 6363 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6364 return 0;
6365
4082afcc 6366 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6367 remote_vcont_probe ();
44eaed12 6368
4082afcc 6369 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6370 return 0;
44eaed12 6371
8d64371b
TT
6372 p = rs->buf.data ();
6373 endp = p + get_remote_packet_size ();
82f73884 6374
506fb367
DJ
6375 /* If we could generate a wider range of packets, we'd have to worry
6376 about overflowing BUF. Should there be a generic
6377 "multi-part-packet" packet? */
6378
0d8f58ca
PA
6379 p += xsnprintf (p, endp - p, "vCont");
6380
d7e15655 6381 if (ptid == magic_null_ptid)
c906108c 6382 {
79d7f229
PA
6383 /* MAGIC_NULL_PTID means that we don't have any active threads,
6384 so we don't have any TID numbers the inferior will
6385 understand. Make sure to only send forms that do not specify
6386 a TID. */
a9cbf802 6387 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6388 }
d7e15655 6389 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6390 {
0d8f58ca
PA
6391 /* Resume all threads (of all processes, or of a single
6392 process), with preference for INFERIOR_PTID. This assumes
6393 inferior_ptid belongs to the set of all threads we are about
6394 to resume. */
a493e3e2 6395 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6396 {
0d8f58ca
PA
6397 /* Step inferior_ptid, with or without signal. */
6398 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6399 }
0d8f58ca 6400
e5ef252a
PA
6401 /* Also pass down any pending signaled resumption for other
6402 threads not the current. */
6403 p = append_pending_thread_resumptions (p, endp, ptid);
6404
0d8f58ca 6405 /* And continue others without a signal. */
a493e3e2 6406 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6407 }
6408 else
506fb367
DJ
6409 {
6410 /* Scheduler locking; resume only PTID. */
a9cbf802 6411 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6412 }
c906108c 6413
8d64371b 6414 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6415 putpkt (rs->buf);
506fb367 6416
6efcd9a8 6417 if (target_is_non_stop_p ())
74531fed
PA
6418 {
6419 /* In non-stop, the stub replies to vCont with "OK". The stop
6420 reply will be reported asynchronously by means of a `%Stop'
6421 notification. */
8d64371b
TT
6422 getpkt (&rs->buf, 0);
6423 if (strcmp (rs->buf.data (), "OK") != 0)
6424 error (_("Unexpected vCont reply in non-stop mode: %s"),
6425 rs->buf.data ());
74531fed
PA
6426 }
6427
506fb367 6428 return 1;
c906108c 6429}
43ff13b4 6430
506fb367
DJ
6431/* Tell the remote machine to resume. */
6432
f6ac5f3d
PA
6433void
6434remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6435{
d01949b6 6436 struct remote_state *rs = get_remote_state ();
43ff13b4 6437
85ad3aaf
PA
6438 /* When connected in non-stop mode, the core resumes threads
6439 individually. Resuming remote threads directly in target_resume
6440 would thus result in sending one packet per thread. Instead, to
6441 minimize roundtrip latency, here we just store the resume
c9d22089
SM
6442 request (put the thread in RESUMED_PENDING_VCONT state); the actual remote
6443 resumption will be done in remote_target::commit_resume, where we'll be
6444 able to do vCont action coalescing. */
f6ac5f3d 6445 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6446 {
7aabaf9d 6447 remote_thread_info *remote_thr;
85ad3aaf 6448
d7e15655 6449 if (minus_one_ptid == ptid || ptid.is_pid ())
5b6d1e4f 6450 remote_thr = get_remote_thread_info (this, inferior_ptid);
85ad3aaf 6451 else
5b6d1e4f 6452 remote_thr = get_remote_thread_info (this, ptid);
7aabaf9d 6453
c9d22089
SM
6454 /* We don't expect the core to ask to resume an already resumed (from
6455 its point of view) thread. */
a6c11cbb 6456 gdb_assert (remote_thr->get_resume_state () == resume_state::NOT_RESUMED);
c9d22089
SM
6457
6458 remote_thr->set_resumed_pending_vcont (step, siggnal);
85ad3aaf
PA
6459 return;
6460 }
6461
722247f1
YQ
6462 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6463 (explained in remote-notif.c:handle_notification) so
6464 remote_notif_process is not called. We need find a place where
6465 it is safe to start a 'vNotif' sequence. It is good to do it
6466 before resuming inferior, because inferior was stopped and no RSP
6467 traffic at that moment. */
6efcd9a8 6468 if (!target_is_non_stop_p ())
5965e028 6469 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6470
f6ac5f3d 6471 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6472
7b68ffbb
PA
6473 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6474 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6475 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6476
c9d22089
SM
6477 /* Update resumed state tracked by the remote target. */
6478 for (thread_info *tp : all_non_exited_threads (this, ptid))
6479 get_remote_thread_info (tp)->set_resumed ();
6480
2acceee2 6481 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6482 with the event loop. NOTE: this is the one place where all the
6483 execution commands end up. We could alternatively do this in each
23860348 6484 of the execution commands in infcmd.c. */
2acceee2
JM
6485 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6486 into infcmd.c in order to allow inferior function calls to work
23860348 6487 NOT asynchronously. */
362646f5 6488 if (target_can_async_p ())
6a3753b3 6489 target_async (1);
e24a49d8
PA
6490
6491 /* We've just told the target to resume. The remote server will
6492 wait for the inferior to stop, and then send a stop reply. In
6493 the mean time, we can't start another command/query ourselves
74531fed
PA
6494 because the stub wouldn't be ready to process it. This applies
6495 only to the base all-stop protocol, however. In non-stop (which
6496 only supports vCont), the stub replies with an "OK", and is
6497 immediate able to process further serial input. */
6efcd9a8 6498 if (!target_is_non_stop_p ())
74531fed 6499 rs->waiting_for_stop_reply = 1;
43ff13b4 6500}
85ad3aaf 6501
85ad3aaf
PA
6502static int is_pending_fork_parent_thread (struct thread_info *thread);
6503
6504/* Private per-inferior info for target remote processes. */
6505
089354bb 6506struct remote_inferior : public private_inferior
85ad3aaf
PA
6507{
6508 /* Whether we can send a wildcard vCont for this process. */
089354bb 6509 bool may_wildcard_vcont = true;
85ad3aaf
PA
6510};
6511
089354bb
SM
6512/* Get the remote private inferior data associated to INF. */
6513
6514static remote_inferior *
6515get_remote_inferior (inferior *inf)
6516{
6517 if (inf->priv == NULL)
6518 inf->priv.reset (new remote_inferior);
6519
6520 return static_cast<remote_inferior *> (inf->priv.get ());
6521}
6522
1192f124
SM
6523struct stop_reply : public notif_event
6524{
6525 ~stop_reply ();
6526
6527 /* The identifier of the thread about this event */
6528 ptid_t ptid;
6529
6530 /* The remote state this event is associated with. When the remote
6531 connection, represented by a remote_state object, is closed,
6532 all the associated stop_reply events should be released. */
6533 struct remote_state *rs;
6534
6535 struct target_waitstatus ws;
6536
6537 /* The architecture associated with the expedited registers. */
6538 gdbarch *arch;
6539
6540 /* Expedited registers. This makes remote debugging a bit more
6541 efficient for those targets that provide critical registers as
6542 part of their normal status mechanism (as another roundtrip to
6543 fetch them is avoided). */
6544 std::vector<cached_reg_t> regcache;
6545
6546 enum target_stop_reason stop_reason;
6547
6548 CORE_ADDR watch_data_address;
6549
6550 int core;
6551};
6552
f5db4863 6553/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6554 outgoing packet buffer. This is used to send multiple vCont
6555 packets if we have more actions than would fit a single packet. */
6556
f5db4863 6557class vcont_builder
85ad3aaf 6558{
f5db4863 6559public:
6b8edb51
PA
6560 explicit vcont_builder (remote_target *remote)
6561 : m_remote (remote)
f5db4863
PA
6562 {
6563 restart ();
6564 }
6565
6566 void flush ();
6567 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6568
6569private:
6570 void restart ();
6571
6b8edb51
PA
6572 /* The remote target. */
6573 remote_target *m_remote;
6574
85ad3aaf
PA
6575 /* Pointer to the first action. P points here if no action has been
6576 appended yet. */
f5db4863 6577 char *m_first_action;
85ad3aaf
PA
6578
6579 /* Where the next action will be appended. */
f5db4863 6580 char *m_p;
85ad3aaf
PA
6581
6582 /* The end of the buffer. Must never write past this. */
f5db4863 6583 char *m_endp;
85ad3aaf
PA
6584};
6585
6586/* Prepare the outgoing buffer for a new vCont packet. */
6587
f5db4863
PA
6588void
6589vcont_builder::restart ()
85ad3aaf 6590{
6b8edb51 6591 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6592
8d64371b
TT
6593 m_p = rs->buf.data ();
6594 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6595 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6596 m_first_action = m_p;
85ad3aaf
PA
6597}
6598
6599/* If the vCont packet being built has any action, send it to the
6600 remote end. */
6601
f5db4863
PA
6602void
6603vcont_builder::flush ()
85ad3aaf
PA
6604{
6605 struct remote_state *rs;
6606
f5db4863 6607 if (m_p == m_first_action)
85ad3aaf
PA
6608 return;
6609
6b8edb51
PA
6610 rs = m_remote->get_remote_state ();
6611 m_remote->putpkt (rs->buf);
8d64371b
TT
6612 m_remote->getpkt (&rs->buf, 0);
6613 if (strcmp (rs->buf.data (), "OK") != 0)
6614 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6615}
6616
6617/* The largest action is range-stepping, with its two addresses. This
6618 is more than sufficient. If a new, bigger action is created, it'll
6619 quickly trigger a failed assertion in append_resumption (and we'll
6620 just bump this). */
6621#define MAX_ACTION_SIZE 200
6622
6623/* Append a new vCont action in the outgoing packet being built. If
6624 the action doesn't fit the packet along with previous actions, push
6625 what we've got so far to the remote end and start over a new vCont
6626 packet (with the new action). */
6627
f5db4863
PA
6628void
6629vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6630{
6631 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6632
6b8edb51
PA
6633 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6634 ptid, step, siggnal);
85ad3aaf
PA
6635
6636 /* Check whether this new action would fit in the vCont packet along
6637 with previous actions. If not, send what we've got so far and
6638 start a new vCont packet. */
f5db4863
PA
6639 size_t rsize = endp - buf;
6640 if (rsize > m_endp - m_p)
85ad3aaf 6641 {
f5db4863
PA
6642 flush ();
6643 restart ();
85ad3aaf
PA
6644
6645 /* Should now fit. */
f5db4863 6646 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6647 }
6648
f5db4863
PA
6649 memcpy (m_p, buf, rsize);
6650 m_p += rsize;
6651 *m_p = '\0';
85ad3aaf
PA
6652}
6653
6654/* to_commit_resume implementation. */
6655
f6ac5f3d 6656void
1192f124 6657remote_target::commit_resumed ()
85ad3aaf 6658{
85ad3aaf
PA
6659 /* If connected in all-stop mode, we'd send the remote resume
6660 request directly from remote_resume. Likewise if
6661 reverse-debugging, as there are no defined vCont actions for
6662 reverse execution. */
f6ac5f3d 6663 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6664 return;
6665
6666 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6667 instead of resuming all threads of each process individually.
6668 However, if any thread of a process must remain halted, we can't
6669 send wildcard resumes and must send one action per thread.
6670
6671 Care must be taken to not resume threads/processes the server
6672 side already told us are stopped, but the core doesn't know about
6673 yet, because the events are still in the vStopped notification
6674 queue. For example:
6675
6676 #1 => vCont s:p1.1;c
6677 #2 <= OK
6678 #3 <= %Stopped T05 p1.1
6679 #4 => vStopped
6680 #5 <= T05 p1.2
6681 #6 => vStopped
6682 #7 <= OK
6683 #8 (infrun handles the stop for p1.1 and continues stepping)
6684 #9 => vCont s:p1.1;c
6685
6686 The last vCont above would resume thread p1.2 by mistake, because
6687 the server has no idea that the event for p1.2 had not been
6688 handled yet.
6689
6690 The server side must similarly ignore resume actions for the
6691 thread that has a pending %Stopped notification (and any other
6692 threads with events pending), until GDB acks the notification
6693 with vStopped. Otherwise, e.g., the following case is
6694 mishandled:
6695
6696 #1 => g (or any other packet)
6697 #2 <= [registers]
6698 #3 <= %Stopped T05 p1.2
6699 #4 => vCont s:p1.1;c
6700 #5 <= OK
6701
6702 Above, the server must not resume thread p1.2. GDB can't know
6703 that p1.2 stopped until it acks the %Stopped notification, and
6704 since from GDB's perspective all threads should be running, it
6705 sends a "c" action.
6706
6707 Finally, special care must also be given to handling fork/vfork
6708 events. A (v)fork event actually tells us that two processes
6709 stopped -- the parent and the child. Until we follow the fork,
6710 we must not resume the child. Therefore, if we have a pending
6711 fork follow, we must not send a global wildcard resume action
6712 (vCont;c). We can still send process-wide wildcards though. */
6713
6714 /* Start by assuming a global wildcard (vCont;c) is possible. */
2f63ec5c 6715 bool may_global_wildcard_vcont = true;
85ad3aaf
PA
6716
6717 /* And assume every process is individually wildcard-able too. */
5b6d1e4f 6718 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6719 {
089354bb
SM
6720 remote_inferior *priv = get_remote_inferior (inf);
6721
6722 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6723 }
6724
6725 /* Check for any pending events (not reported or processed yet) and
6726 disable process and global wildcard resumes appropriately. */
6727 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6728
1192f124
SM
6729 bool any_pending_vcont_resume = false;
6730
5b6d1e4f 6731 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6732 {
c9d22089
SM
6733 remote_thread_info *priv = get_remote_thread_info (tp);
6734
85ad3aaf
PA
6735 /* If a thread of a process is not meant to be resumed, then we
6736 can't wildcard that process. */
a6c11cbb 6737 if (priv->get_resume_state () == resume_state::NOT_RESUMED)
85ad3aaf 6738 {
089354bb 6739 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6740
6741 /* And if we can't wildcard a process, we can't wildcard
6742 everything either. */
2f63ec5c 6743 may_global_wildcard_vcont = false;
85ad3aaf
PA
6744 continue;
6745 }
6746
1192f124
SM
6747 if (priv->get_resume_state () == resume_state::RESUMED_PENDING_VCONT)
6748 any_pending_vcont_resume = true;
6749
85ad3aaf
PA
6750 /* If a thread is the parent of an unfollowed fork, then we
6751 can't do a global wildcard, as that would resume the fork
6752 child. */
6753 if (is_pending_fork_parent_thread (tp))
2f63ec5c 6754 may_global_wildcard_vcont = false;
85ad3aaf
PA
6755 }
6756
1192f124
SM
6757 /* We didn't have any resumed thread pending a vCont resume, so nothing to
6758 do. */
6759 if (!any_pending_vcont_resume)
6760 return;
6761
85ad3aaf
PA
6762 /* Now let's build the vCont packet(s). Actions must be appended
6763 from narrower to wider scopes (thread -> process -> global). If
6764 we end up with too many actions for a single packet vcont_builder
6765 flushes the current vCont packet to the remote side and starts a
6766 new one. */
6b8edb51 6767 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6768
6769 /* Threads first. */
5b6d1e4f 6770 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6771 {
7aabaf9d 6772 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf 6773
c9d22089
SM
6774 /* If the thread was previously vCont-resumed, no need to send a specific
6775 action for it. If we didn't receive a resume request for it, don't
6776 send an action for it either. */
a6c11cbb 6777 if (remote_thr->get_resume_state () != resume_state::RESUMED_PENDING_VCONT)
85ad3aaf
PA
6778 continue;
6779
6780 gdb_assert (!thread_is_in_step_over_chain (tp));
6781
1192f124
SM
6782 /* We should never be commit-resuming a thread that has a stop reply.
6783 Otherwise, we would end up reporting a stop event for a thread while
6784 it is running on the remote target. */
6785 remote_state *rs = get_remote_state ();
6786 for (const auto &stop_reply : rs->stop_reply_queue)
6787 gdb_assert (stop_reply->ptid != tp->ptid);
6788
c9d22089
SM
6789 const resumed_pending_vcont_info &info
6790 = remote_thr->resumed_pending_vcont_info ();
85ad3aaf 6791
c9d22089
SM
6792 /* Check if we need to send a specific action for this thread. If not,
6793 it will be included in a wildcard resume instead. */
6794 if (info.step || info.sig != GDB_SIGNAL_0
6795 || !get_remote_inferior (tp->inf)->may_wildcard_vcont)
6796 vcont_builder.push_action (tp->ptid, info.step, info.sig);
6797
6798 remote_thr->set_resumed ();
85ad3aaf
PA
6799 }
6800
6801 /* Now check whether we can send any process-wide wildcard. This is
6802 to avoid sending a global wildcard in the case nothing is
6803 supposed to be resumed. */
2f63ec5c 6804 bool any_process_wildcard = false;
85ad3aaf 6805
5b6d1e4f 6806 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6807 {
089354bb 6808 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6809 {
2f63ec5c 6810 any_process_wildcard = true;
85ad3aaf
PA
6811 break;
6812 }
6813 }
6814
6815 if (any_process_wildcard)
6816 {
6817 /* If all processes are wildcard-able, then send a single "c"
6818 action, otherwise, send an "all (-1) threads of process"
6819 continue action for each running process, if any. */
6820 if (may_global_wildcard_vcont)
6821 {
f5db4863
PA
6822 vcont_builder.push_action (minus_one_ptid,
6823 false, GDB_SIGNAL_0);
85ad3aaf
PA
6824 }
6825 else
6826 {
5b6d1e4f 6827 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6828 {
089354bb 6829 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6830 {
f2907e49 6831 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6832 false, GDB_SIGNAL_0);
85ad3aaf
PA
6833 }
6834 }
6835 }
6836 }
6837
f5db4863 6838 vcont_builder.flush ();
85ad3aaf
PA
6839}
6840
b4b1a226
SM
6841/* Implementation of target_has_pending_events. */
6842
6843bool
6844remote_target::has_pending_events ()
6845{
6846 if (target_can_async_p ())
6847 {
6848 remote_state *rs = get_remote_state ();
6849
6850 if (async_event_handler_marked (rs->remote_async_inferior_event_token))
6851 return true;
6852
6853 /* Note that BUFCNT can be negative, indicating sticky
6854 error. */
6855 if (rs->remote_desc->bufcnt != 0)
6856 return true;
6857 }
6858 return false;
6859}
6860
c906108c 6861\f
43ff13b4 6862
74531fed
PA
6863/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6864 thread, all threads of a remote process, or all threads of all
6865 processes. */
6866
6b8edb51
PA
6867void
6868remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6869{
6870 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6871 char *p = rs->buf.data ();
6872 char *endp = p + get_remote_packet_size ();
74531fed 6873
1192f124
SM
6874 /* If any thread that needs to stop was resumed but pending a vCont
6875 resume, generate a phony stop_reply. However, first check
6876 whether the thread wasn't resumed with a signal. Generating a
6877 phony stop in that case would result in losing the signal. */
6878 bool needs_commit = false;
6879 for (thread_info *tp : all_non_exited_threads (this, ptid))
6880 {
6881 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6882
6883 if (remote_thr->get_resume_state ()
6884 == resume_state::RESUMED_PENDING_VCONT)
6885 {
6886 const resumed_pending_vcont_info &info
6887 = remote_thr->resumed_pending_vcont_info ();
6888 if (info.sig != GDB_SIGNAL_0)
6889 {
6890 /* This signal must be forwarded to the inferior. We
6891 could commit-resume just this thread, but its simpler
6892 to just commit-resume everything. */
6893 needs_commit = true;
6894 break;
6895 }
6896 }
6897 }
6898
6899 if (needs_commit)
6900 commit_resumed ();
6901 else
6902 for (thread_info *tp : all_non_exited_threads (this, ptid))
6903 {
6904 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6905
6906 if (remote_thr->get_resume_state ()
6907 == resume_state::RESUMED_PENDING_VCONT)
6908 {
6909 remote_debug_printf ("Enqueueing phony stop reply for thread pending "
96bbe3ef
TT
6910 "vCont-resume (%d, %ld, %s)", tp->ptid.pid(),
6911 tp->ptid.lwp (),
6912 pulongest (tp->ptid.tid ()));
1192f124
SM
6913
6914 /* Check that the thread wasn't resumed with a signal.
6915 Generating a phony stop would result in losing the
6916 signal. */
6917 const resumed_pending_vcont_info &info
6918 = remote_thr->resumed_pending_vcont_info ();
6919 gdb_assert (info.sig == GDB_SIGNAL_0);
6920
6921 stop_reply *sr = new stop_reply ();
6922 sr->ptid = tp->ptid;
6923 sr->rs = rs;
6924 sr->ws.kind = TARGET_WAITKIND_STOPPED;
6925 sr->ws.value.sig = GDB_SIGNAL_0;
6926 sr->arch = tp->inf->gdbarch;
6927 sr->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6928 sr->watch_data_address = 0;
6929 sr->core = 0;
6930 this->push_stop_reply (sr);
6931
6932 /* Pretend that this thread was actually resumed on the
6933 remote target, then stopped. If we leave it in the
6934 RESUMED_PENDING_VCONT state and the commit_resumed
6935 method is called while the stop reply is still in the
6936 queue, we'll end up reporting a stop event to the core
6937 for that thread while it is running on the remote
6938 target... that would be bad. */
6939 remote_thr->set_resumed ();
6940 }
6941 }
6942
5b6d1e4f
PA
6943 /* FIXME: This supports_vCont_probed check is a workaround until
6944 packet_support is per-connection. */
6945 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6946 || !rs->supports_vCont_probed)
6b8edb51 6947 remote_vcont_probe ();
74531fed 6948
d458bd84 6949 if (!rs->supports_vCont.t)
74531fed
PA
6950 error (_("Remote server does not support stopping threads"));
6951
d7e15655 6952 if (ptid == minus_one_ptid
0e998d96 6953 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6954 p += xsnprintf (p, endp - p, "vCont;t");
6955 else
6956 {
6957 ptid_t nptid;
6958
74531fed
PA
6959 p += xsnprintf (p, endp - p, "vCont;t:");
6960
0e998d96 6961 if (ptid.is_pid ())
74531fed 6962 /* All (-1) threads of process. */
184ea2f7 6963 nptid = ptid_t (ptid.pid (), -1);
74531fed
PA
6964 else
6965 {
6966 /* Small optimization: if we already have a stop reply for
6967 this thread, no use in telling the stub we want this
6968 stopped. */
6969 if (peek_stop_reply (ptid))
6970 return;
6971
6972 nptid = ptid;
6973 }
6974
a9cbf802 6975 write_ptid (p, endp, nptid);
74531fed
PA
6976 }
6977
6978 /* In non-stop, we get an immediate OK reply. The stop reply will
6979 come in asynchronously by notification. */
6980 putpkt (rs->buf);
8d64371b
TT
6981 getpkt (&rs->buf, 0);
6982 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6983 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6984 rs->buf.data ());
74531fed
PA
6985}
6986
bfedc46a
PA
6987/* All-stop version of target_interrupt. Sends a break or a ^C to
6988 interrupt the remote target. It is undefined which thread of which
6989 process reports the interrupt. */
74531fed 6990
6b8edb51
PA
6991void
6992remote_target::remote_interrupt_as ()
74531fed
PA
6993{
6994 struct remote_state *rs = get_remote_state ();
6995
3a29589a
DJ
6996 rs->ctrlc_pending_p = 1;
6997
74531fed
PA
6998 /* If the inferior is stopped already, but the core didn't know
6999 about it yet, just ignore the request. The cached wait status
7000 will be collected in remote_wait. */
7001 if (rs->cached_wait_status)
7002 return;
7003
9a7071a8
JB
7004 /* Send interrupt_sequence to remote target. */
7005 send_interrupt_sequence ();
74531fed
PA
7006}
7007
de979965
PA
7008/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
7009 the remote target. It is undefined which thread of which process
e42de8c7
PA
7010 reports the interrupt. Throws an error if the packet is not
7011 supported by the server. */
de979965 7012
6b8edb51
PA
7013void
7014remote_target::remote_interrupt_ns ()
de979965
PA
7015{
7016 struct remote_state *rs = get_remote_state ();
8d64371b
TT
7017 char *p = rs->buf.data ();
7018 char *endp = p + get_remote_packet_size ();
de979965
PA
7019
7020 xsnprintf (p, endp - p, "vCtrlC");
7021
7022 /* In non-stop, we get an immediate OK reply. The stop reply will
7023 come in asynchronously by notification. */
7024 putpkt (rs->buf);
8d64371b 7025 getpkt (&rs->buf, 0);
de979965
PA
7026
7027 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
7028 {
7029 case PACKET_OK:
7030 break;
7031 case PACKET_UNKNOWN:
e42de8c7 7032 error (_("No support for interrupting the remote target."));
de979965 7033 case PACKET_ERROR:
8d64371b 7034 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 7035 }
de979965
PA
7036}
7037
bfedc46a 7038/* Implement the to_stop function for the remote targets. */
74531fed 7039
f6ac5f3d
PA
7040void
7041remote_target::stop (ptid_t ptid)
c906108c 7042{
2189c312 7043 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
c906108c 7044
6efcd9a8 7045 if (target_is_non_stop_p ())
74531fed 7046 remote_stop_ns (ptid);
c906108c 7047 else
bfedc46a
PA
7048 {
7049 /* We don't currently have a way to transparently pause the
7050 remote target in all-stop mode. Interrupt it instead. */
de979965 7051 remote_interrupt_as ();
bfedc46a
PA
7052 }
7053}
7054
7055/* Implement the to_interrupt function for the remote targets. */
7056
f6ac5f3d
PA
7057void
7058remote_target::interrupt ()
bfedc46a 7059{
2189c312 7060 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
bfedc46a 7061
e42de8c7
PA
7062 if (target_is_non_stop_p ())
7063 remote_interrupt_ns ();
bfedc46a 7064 else
e42de8c7 7065 remote_interrupt_as ();
c906108c
SS
7066}
7067
93692b58
PA
7068/* Implement the to_pass_ctrlc function for the remote targets. */
7069
f6ac5f3d
PA
7070void
7071remote_target::pass_ctrlc ()
93692b58 7072{
2189c312 7073 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
93692b58 7074
2189c312 7075 struct remote_state *rs = get_remote_state ();
93692b58
PA
7076
7077 /* If we're starting up, we're not fully synced yet. Quit
7078 immediately. */
7079 if (rs->starting_up)
7080 quit ();
7081 /* If ^C has already been sent once, offer to disconnect. */
7082 else if (rs->ctrlc_pending_p)
7083 interrupt_query ();
7084 else
e671cd59 7085 target_interrupt ();
93692b58
PA
7086}
7087
c906108c
SS
7088/* Ask the user what to do when an interrupt is received. */
7089
6b8edb51
PA
7090void
7091remote_target::interrupt_query ()
c906108c 7092{
abc56d60 7093 struct remote_state *rs = get_remote_state ();
c906108c 7094
abc56d60 7095 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 7096 {
abc56d60
PA
7097 if (query (_("The target is not responding to interrupt requests.\n"
7098 "Stop debugging it? ")))
74531fed 7099 {
5b6d1e4f 7100 remote_unpush_target (this);
abc56d60 7101 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
7102 }
7103 }
abc56d60
PA
7104 else
7105 {
7106 if (query (_("Interrupted while waiting for the program.\n"
7107 "Give up waiting? ")))
7108 quit ();
7109 }
c906108c
SS
7110}
7111
6426a772
JM
7112/* Enable/disable target terminal ownership. Most targets can use
7113 terminal groups to control terminal ownership. Remote targets are
7114 different in that explicit transfer of ownership to/from GDB/target
23860348 7115 is required. */
6426a772 7116
f6ac5f3d
PA
7117void
7118remote_target::terminal_inferior ()
6426a772 7119{
6426a772
JM
7120 /* NOTE: At this point we could also register our selves as the
7121 recipient of all input. Any characters typed could then be
23860348 7122 passed on down to the target. */
6426a772
JM
7123}
7124
f6ac5f3d
PA
7125void
7126remote_target::terminal_ours ()
6426a772 7127{
6426a772
JM
7128}
7129
176a6961 7130static void
05be00a8 7131remote_console_output (const char *msg)
c906108c 7132{
05be00a8 7133 const char *p;
c906108c 7134
c5aa993b 7135 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
7136 {
7137 char tb[2];
7138 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 7139
c906108c
SS
7140 tb[0] = c;
7141 tb[1] = 0;
da5bd37e 7142 gdb_stdtarg->puts (tb);
c906108c 7143 }
da5bd37e 7144 gdb_stdtarg->flush ();
00db5b94 7145}
74531fed 7146
221e1a37
PA
7147/* Return the length of the stop reply queue. */
7148
6b8edb51
PA
7149int
7150remote_target::stop_reply_queue_length ()
221e1a37 7151{
6b8edb51 7152 remote_state *rs = get_remote_state ();
953edf2b 7153 return rs->stop_reply_queue.size ();
221e1a37
PA
7154}
7155
cb8c24b6 7156static void
6b8edb51 7157remote_notif_stop_parse (remote_target *remote,
bb277751 7158 struct notif_client *self, const char *buf,
722247f1
YQ
7159 struct notif_event *event)
7160{
6b8edb51 7161 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
7162}
7163
7164static void
6b8edb51 7165remote_notif_stop_ack (remote_target *remote,
bb277751 7166 struct notif_client *self, const char *buf,
722247f1
YQ
7167 struct notif_event *event)
7168{
7169 struct stop_reply *stop_reply = (struct stop_reply *) event;
7170
7171 /* acknowledge */
6b8edb51 7172 putpkt (remote, self->ack_command);
722247f1 7173
b0083dd7
PA
7174 /* Kind can be TARGET_WAITKIND_IGNORE if we have meanwhile discarded
7175 the notification. It was left in the queue because we need to
7176 acknowledge it and pull the rest of the notifications out. */
7177 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
7178 remote->push_stop_reply (stop_reply);
722247f1
YQ
7179}
7180
7181static int
6b8edb51
PA
7182remote_notif_stop_can_get_pending_events (remote_target *remote,
7183 struct notif_client *self)
722247f1
YQ
7184{
7185 /* We can't get pending events in remote_notif_process for
7186 notification stop, and we have to do this in remote_wait_ns
7187 instead. If we fetch all queued events from stub, remote stub
7188 may exit and we have no chance to process them back in
7189 remote_wait_ns. */
6b8edb51
PA
7190 remote_state *rs = remote->get_remote_state ();
7191 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
7192 return 0;
7193}
7194
32603266 7195stop_reply::~stop_reply ()
722247f1 7196{
32603266
TT
7197 for (cached_reg_t &reg : regcache)
7198 xfree (reg.data);
722247f1
YQ
7199}
7200
32603266
TT
7201static notif_event_up
7202remote_notif_stop_alloc_reply ()
722247f1 7203{
32603266 7204 return notif_event_up (new struct stop_reply ());
722247f1
YQ
7205}
7206
7207/* A client of notification Stop. */
7208
7209struct notif_client notif_client_stop =
7210{
7211 "Stop",
7212 "vStopped",
7213 remote_notif_stop_parse,
7214 remote_notif_stop_ack,
7215 remote_notif_stop_can_get_pending_events,
7216 remote_notif_stop_alloc_reply,
f48ff2a7 7217 REMOTE_NOTIF_STOP,
722247f1
YQ
7218};
7219
85ad3aaf 7220/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
7221 the pid of the process that owns the threads we want to check, or
7222 -1 if we want to check all threads. */
7223
7224static int
1edb66d8 7225is_pending_fork_parent (const target_waitstatus *ws, int event_pid,
cbb8991c
DB
7226 ptid_t thread_ptid)
7227{
7228 if (ws->kind == TARGET_WAITKIND_FORKED
7229 || ws->kind == TARGET_WAITKIND_VFORKED)
7230 {
e99b03dc 7231 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
7232 return 1;
7233 }
7234
7235 return 0;
7236}
7237
85ad3aaf
PA
7238/* Return the thread's pending status used to determine whether the
7239 thread is a fork parent stopped at a fork event. */
7240
1edb66d8 7241static const target_waitstatus *
85ad3aaf
PA
7242thread_pending_fork_status (struct thread_info *thread)
7243{
1edb66d8
SM
7244 if (thread->has_pending_waitstatus ())
7245 return &thread->pending_waitstatus ();
85ad3aaf
PA
7246 else
7247 return &thread->pending_follow;
7248}
7249
7250/* Determine if THREAD is a pending fork parent thread. */
7251
7252static int
7253is_pending_fork_parent_thread (struct thread_info *thread)
7254{
1edb66d8 7255 const target_waitstatus *ws = thread_pending_fork_status (thread);
85ad3aaf
PA
7256 int pid = -1;
7257
7258 return is_pending_fork_parent (ws, pid, thread->ptid);
7259}
7260
cbb8991c
DB
7261/* If CONTEXT contains any fork child threads that have not been
7262 reported yet, remove them from the CONTEXT list. If such a
7263 thread exists it is because we are stopped at a fork catchpoint
7264 and have not yet called follow_fork, which will set up the
7265 host-side data structures for the new process. */
7266
6b8edb51
PA
7267void
7268remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 7269{
cbb8991c
DB
7270 int pid = -1;
7271 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
7272
7273 /* For any threads stopped at a fork event, remove the corresponding
7274 fork child threads from the CONTEXT list. */
5b6d1e4f 7275 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c 7276 {
1edb66d8 7277 const target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7278
7279 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7280 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7281 }
7282
7283 /* Check for any pending fork events (not reported or processed yet)
7284 in process PID and remove those fork child threads from the
7285 CONTEXT list as well. */
7286 remote_notif_get_pending_events (notif);
953edf2b
TT
7287 for (auto &event : get_remote_state ()->stop_reply_queue)
7288 if (event->ws.kind == TARGET_WAITKIND_FORKED
7289 || event->ws.kind == TARGET_WAITKIND_VFORKED
7290 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7291 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7292}
7293
2f63ec5c
AB
7294/* Check whether any event pending in the vStopped queue would prevent a
7295 global or process wildcard vCont action. Set *may_global_wildcard to
7296 false if we can't do a global wildcard (vCont;c), and clear the event
7297 inferior's may_wildcard_vcont flag if we can't do a process-wide
7298 wildcard resume (vCont;c:pPID.-1). */
85ad3aaf 7299
6b8edb51
PA
7300void
7301remote_target::check_pending_events_prevent_wildcard_vcont
2f63ec5c 7302 (bool *may_global_wildcard)
85ad3aaf
PA
7303{
7304 struct notif_client *notif = &notif_client_stop;
7305
7306 remote_notif_get_pending_events (notif);
953edf2b
TT
7307 for (auto &event : get_remote_state ()->stop_reply_queue)
7308 {
7309 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7310 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7311 continue;
85ad3aaf 7312
953edf2b
TT
7313 if (event->ws.kind == TARGET_WAITKIND_FORKED
7314 || event->ws.kind == TARGET_WAITKIND_VFORKED)
2f63ec5c 7315 *may_global_wildcard = false;
722247f1 7316
953edf2b
TT
7317 /* This may be the first time we heard about this process.
7318 Regardless, we must not do a global wildcard resume, otherwise
7319 we'd resume this process too. */
2f63ec5c 7320 *may_global_wildcard = false;
323fd5b9
PA
7321 if (event->ptid != null_ptid)
7322 {
7323 inferior *inf = find_inferior_ptid (this, event->ptid);
7324 if (inf != NULL)
7325 get_remote_inferior (inf)->may_wildcard_vcont = false;
7326 }
722247f1 7327 }
722247f1
YQ
7328}
7329
f48ff2a7 7330/* Discard all pending stop replies of inferior INF. */
c906108c 7331
6b8edb51
PA
7332void
7333remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7334{
f48ff2a7
YQ
7335 struct stop_reply *reply;
7336 struct remote_state *rs = get_remote_state ();
7337 struct remote_notif_state *rns = rs->notif_state;
7338
7339 /* This function can be notified when an inferior exists. When the
7340 target is not remote, the notification state is NULL. */
7341 if (rs->remote_desc == NULL)
7342 return;
7343
7344 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7345
74531fed 7346 /* Discard the in-flight notification. */
e99b03dc 7347 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7348 {
b0083dd7
PA
7349 /* Leave the notification pending, since the server expects that
7350 we acknowledge it with vStopped. But clear its contents, so
7351 that later on when we acknowledge it, we also discard it. */
7352 reply->ws.kind = TARGET_WAITKIND_IGNORE;
7353
7354 if (remote_debug)
7355 fprintf_unfiltered (gdb_stdlog,
7356 "discarded in-flight notification\n");
74531fed 7357 }
c906108c 7358
74531fed
PA
7359 /* Discard the stop replies we have already pulled with
7360 vStopped. */
953edf2b
TT
7361 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7362 rs->stop_reply_queue.end (),
7363 [=] (const stop_reply_up &event)
7364 {
7365 return event->ptid.pid () == inf->pid;
7366 });
7367 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7368}
7369
7370/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7371
6b8edb51
PA
7372void
7373remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7374{
6b8edb51 7375 remote_state *rs = get_remote_state ();
f48ff2a7 7376
f48ff2a7
YQ
7377 /* Discard the stop replies we have already pulled with
7378 vStopped. */
953edf2b
TT
7379 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7380 rs->stop_reply_queue.end (),
7381 [=] (const stop_reply_up &event)
7382 {
7383 return event->rs == rs;
7384 });
7385 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7386}
43ff13b4 7387
722247f1
YQ
7388/* Remove the first reply in 'stop_reply_queue' which matches
7389 PTID. */
2e9f7625 7390
6b8edb51
PA
7391struct stop_reply *
7392remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7393{
953edf2b 7394 remote_state *rs = get_remote_state ();
722247f1 7395
953edf2b
TT
7396 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7397 rs->stop_reply_queue.end (),
7398 [=] (const stop_reply_up &event)
7399 {
7400 return event->ptid.matches (ptid);
7401 });
7402 struct stop_reply *result;
7403 if (iter == rs->stop_reply_queue.end ())
7404 result = nullptr;
7405 else
7406 {
7407 result = iter->release ();
7408 rs->stop_reply_queue.erase (iter);
7409 }
722247f1 7410
722247f1
YQ
7411 if (notif_debug)
7412 fprintf_unfiltered (gdb_stdlog,
7413 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7414 target_pid_to_str (ptid).c_str ());
a744cf53 7415
953edf2b 7416 return result;
74531fed 7417}
75c99385 7418
74531fed
PA
7419/* Look for a queued stop reply belonging to PTID. If one is found,
7420 remove it from the queue, and return it. Returns NULL if none is
7421 found. If there are still queued events left to process, tell the
7422 event loop to get back to target_wait soon. */
e24a49d8 7423
6b8edb51
PA
7424struct stop_reply *
7425remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7426{
953edf2b 7427 remote_state *rs = get_remote_state ();
722247f1 7428 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7429
953edf2b 7430 if (!rs->stop_reply_queue.empty ())
6b8edb51 7431 {
6b8edb51
PA
7432 /* There's still at least an event left. */
7433 mark_async_event_handler (rs->remote_async_inferior_event_token);
7434 }
74531fed 7435
722247f1 7436 return r;
74531fed
PA
7437}
7438
7439/* Push a fully parsed stop reply in the stop reply queue. Since we
7440 know that we now have at least one queued event left to pass to the
7441 core side, tell the event loop to get back to target_wait soon. */
7442
6b8edb51
PA
7443void
7444remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7445{
6b8edb51 7446 remote_state *rs = get_remote_state ();
953edf2b 7447 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7448
722247f1
YQ
7449 if (notif_debug)
7450 fprintf_unfiltered (gdb_stdlog,
7451 "notif: push 'Stop' %s to queue %d\n",
a068643d 7452 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7453 int (rs->stop_reply_queue.size ()));
74531fed 7454
6b8edb51 7455 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7456}
7457
7458/* Returns true if we have a stop reply for PTID. */
7459
6b8edb51
PA
7460int
7461remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7462{
6b8edb51 7463 remote_state *rs = get_remote_state ();
953edf2b
TT
7464 for (auto &event : rs->stop_reply_queue)
7465 if (ptid == event->ptid
7466 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7467 return 1;
7468 return 0;
74531fed
PA
7469}
7470
26d56a93
SL
7471/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7472 starting with P and ending with PEND matches PREFIX. */
7473
7474static int
7475strprefix (const char *p, const char *pend, const char *prefix)
7476{
7477 for ( ; p < pend; p++, prefix++)
7478 if (*p != *prefix)
7479 return 0;
7480 return *prefix == '\0';
7481}
7482
74531fed
PA
7483/* Parse the stop reply in BUF. Either the function succeeds, and the
7484 result is stored in EVENT, or throws an error. */
7485
6b8edb51 7486void
bb277751 7487remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7488{
5cd63fda 7489 remote_arch_state *rsa = NULL;
74531fed 7490 ULONGEST addr;
256642e8 7491 const char *p;
94585166 7492 int skipregs = 0;
74531fed
PA
7493
7494 event->ptid = null_ptid;
bcc75809 7495 event->rs = get_remote_state ();
74531fed
PA
7496 event->ws.kind = TARGET_WAITKIND_IGNORE;
7497 event->ws.value.integer = 0;
f7e6eed5 7498 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7499 event->regcache.clear ();
dc146f7c 7500 event->core = -1;
74531fed
PA
7501
7502 switch (buf[0])
7503 {
7504 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7505 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7506 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7507 ss = signal number
7508 n... = register number
7509 r... = register contents
7510 */
7511
7512 p = &buf[3]; /* after Txx */
7513 while (*p)
7514 {
256642e8 7515 const char *p1;
cea39f65 7516 int fieldsize;
43ff13b4 7517
1f10ba14
PA
7518 p1 = strchr (p, ':');
7519 if (p1 == NULL)
7520 error (_("Malformed packet(a) (missing colon): %s\n\
7521Packet: '%s'\n"),
7522 p, buf);
7523 if (p == p1)
7524 error (_("Malformed packet(a) (missing register number): %s\n\
7525Packet: '%s'\n"),
7526 p, buf);
3c3bea1c 7527
1f10ba14
PA
7528 /* Some "registers" are actually extended stop information.
7529 Note if you're adding a new entry here: GDB 7.9 and
7530 earlier assume that all register "numbers" that start
7531 with an hex digit are real register numbers. Make sure
7532 the server only sends such a packet if it knows the
7533 client understands it. */
c8e38a49 7534
26d56a93 7535 if (strprefix (p, p1, "thread"))
1f10ba14 7536 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7537 else if (strprefix (p, p1, "syscall_entry"))
7538 {
7539 ULONGEST sysno;
7540
7541 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7542 p = unpack_varlen_hex (++p1, &sysno);
7543 event->ws.value.syscall_number = (int) sysno;
7544 }
7545 else if (strprefix (p, p1, "syscall_return"))
7546 {
7547 ULONGEST sysno;
7548
7549 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7550 p = unpack_varlen_hex (++p1, &sysno);
7551 event->ws.value.syscall_number = (int) sysno;
7552 }
26d56a93
SL
7553 else if (strprefix (p, p1, "watch")
7554 || strprefix (p, p1, "rwatch")
7555 || strprefix (p, p1, "awatch"))
cea39f65 7556 {
f7e6eed5 7557 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7558 p = unpack_varlen_hex (++p1, &addr);
7559 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7560 }
26d56a93 7561 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7562 {
7563 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7564
7565 /* Make sure the stub doesn't forget to indicate support
7566 with qSupported. */
7567 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7568 error (_("Unexpected swbreak stop reason"));
7569
7570 /* The value part is documented as "must be empty",
7571 though we ignore it, in case we ever decide to make
7572 use of it in a backward compatible way. */
8424cc97 7573 p = strchrnul (p1 + 1, ';');
f7e6eed5 7574 }
26d56a93 7575 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7576 {
7577 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7578
7579 /* Make sure the stub doesn't forget to indicate support
7580 with qSupported. */
7581 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7582 error (_("Unexpected hwbreak stop reason"));
7583
7584 /* See above. */
8424cc97 7585 p = strchrnul (p1 + 1, ';');
f7e6eed5 7586 }
26d56a93 7587 else if (strprefix (p, p1, "library"))
cea39f65 7588 {
1f10ba14 7589 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7590 p = strchrnul (p1 + 1, ';');
1f10ba14 7591 }
26d56a93 7592 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7593 {
7594 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7595 /* p1 will indicate "begin" or "end", but it makes
7596 no difference for now, so ignore it. */
8424cc97 7597 p = strchrnul (p1 + 1, ';');
1f10ba14 7598 }
26d56a93 7599 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7600 {
7601 ULONGEST c;
a744cf53 7602
1f10ba14
PA
7603 p = unpack_varlen_hex (++p1, &c);
7604 event->core = c;
cea39f65 7605 }
26d56a93 7606 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7607 {
7608 event->ws.value.related_pid = read_ptid (++p1, &p);
7609 event->ws.kind = TARGET_WAITKIND_FORKED;
7610 }
26d56a93 7611 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7612 {
7613 event->ws.value.related_pid = read_ptid (++p1, &p);
7614 event->ws.kind = TARGET_WAITKIND_VFORKED;
7615 }
26d56a93 7616 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7617 {
7618 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7619 p = strchrnul (p1 + 1, ';');
c269dbdb 7620 }
6ab24463 7621 else if (strprefix (p, p1, "exec"))
94585166
DB
7622 {
7623 ULONGEST ignored;
94585166
DB
7624 int pathlen;
7625
7626 /* Determine the length of the execd pathname. */
7627 p = unpack_varlen_hex (++p1, &ignored);
7628 pathlen = (p - p1) / 2;
7629
7630 /* Save the pathname for event reporting and for
7631 the next run command. */
c6321f19
TT
7632 gdb::unique_xmalloc_ptr<char[]> pathname
7633 ((char *) xmalloc (pathlen + 1));
7634 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7635 pathname[pathlen] = '\0';
7636
7637 /* This is freed during event handling. */
c6321f19 7638 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7639 event->ws.kind = TARGET_WAITKIND_EXECD;
7640
7641 /* Skip the registers included in this packet, since
7642 they may be for an architecture different from the
7643 one used by the original program. */
7644 skipregs = 1;
7645 }
65706a29
PA
7646 else if (strprefix (p, p1, "create"))
7647 {
7648 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7649 p = strchrnul (p1 + 1, ';');
65706a29 7650 }
cea39f65
MS
7651 else
7652 {
1f10ba14 7653 ULONGEST pnum;
256642e8 7654 const char *p_temp;
1f10ba14 7655
94585166
DB
7656 if (skipregs)
7657 {
8424cc97 7658 p = strchrnul (p1 + 1, ';');
94585166
DB
7659 p++;
7660 continue;
7661 }
7662
1f10ba14
PA
7663 /* Maybe a real ``P'' register number. */
7664 p_temp = unpack_varlen_hex (p, &pnum);
7665 /* If the first invalid character is the colon, we got a
7666 register number. Otherwise, it's an unknown stop
7667 reason. */
7668 if (p_temp == p1)
7669 {
5cd63fda
PA
7670 /* If we haven't parsed the event's thread yet, find
7671 it now, in order to find the architecture of the
7672 reported expedited registers. */
7673 if (event->ptid == null_ptid)
7674 {
24ed6739
AB
7675 /* If there is no thread-id information then leave
7676 the event->ptid as null_ptid. Later in
7677 process_stop_reply we will pick a suitable
7678 thread. */
5cd63fda
PA
7679 const char *thr = strstr (p1 + 1, ";thread:");
7680 if (thr != NULL)
7681 event->ptid = read_ptid (thr + strlen (";thread:"),
7682 NULL);
5cd63fda
PA
7683 }
7684
7685 if (rsa == NULL)
7686 {
5b6d1e4f
PA
7687 inferior *inf
7688 = (event->ptid == null_ptid
7689 ? NULL
7690 : find_inferior_ptid (this, event->ptid));
5cd63fda
PA
7691 /* If this is the first time we learn anything
7692 about this process, skip the registers
7693 included in this packet, since we don't yet
7694 know which architecture to use to parse them.
7695 We'll determine the architecture later when
7696 we process the stop reply and retrieve the
7697 target description, via
7698 remote_notice_new_inferior ->
7699 post_create_inferior. */
7700 if (inf == NULL)
7701 {
7702 p = strchrnul (p1 + 1, ';');
7703 p++;
7704 continue;
7705 }
7706
7707 event->arch = inf->gdbarch;
9d6eea31 7708 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7709 }
7710
7711 packet_reg *reg
7712 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7713 cached_reg_t cached_reg;
43ff13b4 7714
1f10ba14
PA
7715 if (reg == NULL)
7716 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7717Packet: '%s'\n"),
1f10ba14 7718 hex_string (pnum), p, buf);
c8e38a49 7719
1f10ba14 7720 cached_reg.num = reg->regnum;
d1dff226 7721 cached_reg.data = (gdb_byte *)
5cd63fda 7722 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7723
1f10ba14
PA
7724 p = p1 + 1;
7725 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7726 register_size (event->arch, reg->regnum));
1f10ba14 7727 p += 2 * fieldsize;
5cd63fda 7728 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7729 warning (_("Remote reply is too short: %s"), buf);
74531fed 7730
32603266 7731 event->regcache.push_back (cached_reg);
1f10ba14
PA
7732 }
7733 else
7734 {
7735 /* Not a number. Silently skip unknown optional
7736 info. */
8424cc97 7737 p = strchrnul (p1 + 1, ';');
1f10ba14 7738 }
cea39f65 7739 }
c8e38a49 7740
cea39f65
MS
7741 if (*p != ';')
7742 error (_("Remote register badly formatted: %s\nhere: %s"),
7743 buf, p);
7744 ++p;
7745 }
5b5596ff
PA
7746
7747 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7748 break;
7749
c8e38a49
PA
7750 /* fall through */
7751 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7752 {
7753 int sig;
7754
7755 event->ws.kind = TARGET_WAITKIND_STOPPED;
7756 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7757 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7758 event->ws.value.sig = (enum gdb_signal) sig;
7759 else
7760 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7761 }
c8e38a49 7762 break;
65706a29
PA
7763 case 'w': /* Thread exited. */
7764 {
65706a29
PA
7765 ULONGEST value;
7766
7767 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7768 p = unpack_varlen_hex (&buf[1], &value);
7769 event->ws.value.integer = value;
7770 if (*p != ';')
7771 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7772 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7773 break;
7774 }
c8e38a49
PA
7775 case 'W': /* Target exited. */
7776 case 'X':
7777 {
c8e38a49 7778 ULONGEST value;
82f73884 7779
c8e38a49
PA
7780 /* GDB used to accept only 2 hex chars here. Stubs should
7781 only send more if they detect GDB supports multi-process
7782 support. */
7783 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7784
c8e38a49
PA
7785 if (buf[0] == 'W')
7786 {
7787 /* The remote process exited. */
74531fed
PA
7788 event->ws.kind = TARGET_WAITKIND_EXITED;
7789 event->ws.value.integer = value;
c8e38a49
PA
7790 }
7791 else
7792 {
7793 /* The remote process exited with a signal. */
74531fed 7794 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7795 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7796 event->ws.value.sig = (enum gdb_signal) value;
7797 else
7798 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7799 }
82f73884 7800
e7af6c70
TBA
7801 /* If no process is specified, return null_ptid, and let the
7802 caller figure out the right process to use. */
7803 int pid = 0;
c8e38a49
PA
7804 if (*p == '\0')
7805 ;
7806 else if (*p == ';')
7807 {
7808 p++;
7809
0b24eb2d 7810 if (*p == '\0')
82f73884 7811 ;
61012eef 7812 else if (startswith (p, "process:"))
82f73884 7813 {
c8e38a49 7814 ULONGEST upid;
a744cf53 7815
c8e38a49
PA
7816 p += sizeof ("process:") - 1;
7817 unpack_varlen_hex (p, &upid);
7818 pid = upid;
82f73884
PA
7819 }
7820 else
7821 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7822 }
c8e38a49
PA
7823 else
7824 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7825 event->ptid = ptid_t (pid);
74531fed
PA
7826 }
7827 break;
f2faf941
PA
7828 case 'N':
7829 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7830 event->ptid = minus_one_ptid;
7831 break;
74531fed 7832 }
74531fed
PA
7833}
7834
722247f1
YQ
7835/* When the stub wants to tell GDB about a new notification reply, it
7836 sends a notification (%Stop, for example). Those can come it at
7837 any time, hence, we have to make sure that any pending
7838 putpkt/getpkt sequence we're making is finished, before querying
7839 the stub for more events with the corresponding ack command
7840 (vStopped, for example). E.g., if we started a vStopped sequence
7841 immediately upon receiving the notification, something like this
7842 could happen:
74531fed
PA
7843
7844 1.1) --> Hg 1
7845 1.2) <-- OK
7846 1.3) --> g
7847 1.4) <-- %Stop
7848 1.5) --> vStopped
7849 1.6) <-- (registers reply to step #1.3)
7850
7851 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7852 query.
7853
796cb314 7854 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7855 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7856 doing whatever we were doing:
7857
7858 2.1) --> Hg 1
7859 2.2) <-- OK
7860 2.3) --> g
7861 2.4) <-- %Stop
7862 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7863 2.5) <-- (registers reply to step #2.3)
7864
85102364 7865 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7866 notices there's an event on the
7867 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7868 associated callback --- the function below. At this point, we're
7869 always safe to start a vStopped sequence. :
7870
7871 2.6) --> vStopped
7872 2.7) <-- T05 thread:2
7873 2.8) --> vStopped
7874 2.9) --> OK
7875*/
7876
722247f1 7877void
6b8edb51 7878remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7879{
7880 struct remote_state *rs = get_remote_state ();
74531fed 7881
f48ff2a7 7882 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7883 {
722247f1
YQ
7884 if (notif_debug)
7885 fprintf_unfiltered (gdb_stdlog,
7886 "notif: process: '%s' ack pending event\n",
7887 nc->name);
74531fed 7888
722247f1 7889 /* acknowledge */
8d64371b
TT
7890 nc->ack (this, nc, rs->buf.data (),
7891 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7892 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7893
7894 while (1)
7895 {
8d64371b
TT
7896 getpkt (&rs->buf, 0);
7897 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7898 break;
7899 else
8d64371b 7900 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7901 }
7902 }
722247f1
YQ
7903 else
7904 {
7905 if (notif_debug)
7906 fprintf_unfiltered (gdb_stdlog,
7907 "notif: process: '%s' no pending reply\n",
7908 nc->name);
7909 }
74531fed
PA
7910}
7911
6b8edb51
PA
7912/* Wrapper around remote_target::remote_notif_get_pending_events to
7913 avoid having to export the whole remote_target class. */
7914
7915void
7916remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7917{
7918 remote->remote_notif_get_pending_events (nc);
7919}
7920
8f66807b
AB
7921/* Called from process_stop_reply when the stop packet we are responding
7922 to didn't include a process-id or thread-id. STATUS is the stop event
7923 we are responding to.
7924
7925 It is the task of this function to select a suitable thread (or process)
7926 and return its ptid, this is the thread (or process) we will assume the
7927 stop event came from.
7928
7929 In some cases there isn't really any choice about which thread (or
7930 process) is selected, a basic remote with a single process containing a
7931 single thread might choose not to send any process-id or thread-id in
7932 its stop packets, this function will select and return the one and only
7933 thread.
7934
7935 However, if a target supports multiple threads (or processes) and still
7936 doesn't include a thread-id (or process-id) in its stop packet then
7937 first, this is a badly behaving target, and second, we're going to have
7938 to select a thread (or process) at random and use that. This function
7939 will print a warning to the user if it detects that there is the
7940 possibility that GDB is guessing which thread (or process) to
7941 report.
7942
7943 Note that this is called before GDB fetches the updated thread list from the
7944 target. So it's possible for the stop reply to be ambiguous and for GDB to
7945 not realize it. For example, if there's initially one thread, the target
7946 spawns a second thread, and then sends a stop reply without an id that
7947 concerns the first thread. GDB will assume the stop reply is about the
7948 first thread - the only thread it knows about - without printing a warning.
7949 Anyway, if the remote meant for the stop reply to be about the second thread,
7950 then it would be really broken, because GDB doesn't know about that thread
7951 yet. */
74531fed 7952
6b8edb51 7953ptid_t
8f66807b
AB
7954remote_target::select_thread_for_ambiguous_stop_reply
7955 (const struct target_waitstatus *status)
74531fed 7956{
4351271e
AB
7957 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7958
8f66807b
AB
7959 /* Some stop events apply to all threads in an inferior, while others
7960 only apply to a single thread. */
7961 bool process_wide_stop
7962 = (status->kind == TARGET_WAITKIND_EXITED
7963 || status->kind == TARGET_WAITKIND_SIGNALLED);
74531fed 7964
4351271e
AB
7965 remote_debug_printf ("process_wide_stop = %d", process_wide_stop);
7966
8f66807b
AB
7967 thread_info *first_resumed_thread = nullptr;
7968 bool ambiguous = false;
74531fed 7969
8f66807b
AB
7970 /* Consider all non-exited threads of the target, find the first resumed
7971 one. */
7972 for (thread_info *thr : all_non_exited_threads (this))
24ed6739 7973 {
8f66807b 7974 remote_thread_info *remote_thr = get_remote_thread_info (thr);
cada5fc9 7975
a6c11cbb 7976 if (remote_thr->get_resume_state () != resume_state::RESUMED)
8f66807b 7977 continue;
24ed6739 7978
8f66807b
AB
7979 if (first_resumed_thread == nullptr)
7980 first_resumed_thread = thr;
7981 else if (!process_wide_stop
7982 || first_resumed_thread->ptid.pid () != thr->ptid.pid ())
7983 ambiguous = true;
7984 }
7985
4351271e
AB
7986 remote_debug_printf ("first resumed thread is %s",
7987 pid_to_str (first_resumed_thread->ptid).c_str ());
7988 remote_debug_printf ("is this guess ambiguous? = %d", ambiguous);
7989
8f66807b 7990 gdb_assert (first_resumed_thread != nullptr);
cada5fc9 7991
8f66807b
AB
7992 /* Warn if the remote target is sending ambiguous stop replies. */
7993 if (ambiguous)
7994 {
7995 static bool warned = false;
7996
7997 if (!warned)
7998 {
7999 /* If you are seeing this warning then the remote target has
8000 stopped without specifying a thread-id, but the target
8001 does have multiple threads (or inferiors), and so GDB is
8002 having to guess which thread stopped.
8003
8004 Examples of what might cause this are the target sending
8005 and 'S' stop packet, or a 'T' stop packet and not
8006 including a thread-id.
8007
8008 Additionally, the target might send a 'W' or 'X packet
8009 without including a process-id, when the target has
8010 multiple running inferiors. */
8011 if (process_wide_stop)
8012 warning (_("multi-inferior target stopped without "
8013 "sending a process-id, using first "
8014 "non-exited inferior"));
cada5fc9 8015 else
8f66807b
AB
8016 warning (_("multi-threaded target stopped without "
8017 "sending a thread-id, using first "
8018 "non-exited thread"));
8019 warned = true;
24ed6739 8020 }
24ed6739 8021 }
74531fed 8022
8f66807b
AB
8023 /* If this is a stop for all threads then don't use a particular threads
8024 ptid, instead create a new ptid where only the pid field is set. */
8025 if (process_wide_stop)
8026 return ptid_t (first_resumed_thread->ptid.pid ());
8027 else
8028 return first_resumed_thread->ptid;
8029}
8030
8031/* Called when it is decided that STOP_REPLY holds the info of the
8032 event that is to be returned to the core. This function always
8033 destroys STOP_REPLY. */
8034
8035ptid_t
8036remote_target::process_stop_reply (struct stop_reply *stop_reply,
8037 struct target_waitstatus *status)
8038{
8039 *status = stop_reply->ws;
8040 ptid_t ptid = stop_reply->ptid;
8041
8042 /* If no thread/process was reported by the stub then select a suitable
8043 thread/process. */
8044 if (ptid == null_ptid)
8045 ptid = select_thread_for_ambiguous_stop_reply (status);
8046 gdb_assert (ptid != null_ptid);
8047
5f3563ea 8048 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
8049 && status->kind != TARGET_WAITKIND_SIGNALLED
8050 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 8051 {
5f3563ea 8052 /* Expedited registers. */
32603266 8053 if (!stop_reply->regcache.empty ())
5f3563ea 8054 {
217f1f79 8055 struct regcache *regcache
5b6d1e4f 8056 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
5f3563ea 8057
32603266
TT
8058 for (cached_reg_t &reg : stop_reply->regcache)
8059 {
8060 regcache->raw_supply (reg.num, reg.data);
8061 xfree (reg.data);
8062 }
d1dff226 8063
32603266 8064 stop_reply->regcache.clear ();
5f3563ea 8065 }
74531fed 8066
8a82de58 8067 remote_notice_new_inferior (ptid, false);
5b6d1e4f 8068 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
799a2abe
PA
8069 remote_thr->core = stop_reply->core;
8070 remote_thr->stop_reason = stop_reply->stop_reason;
8071 remote_thr->watch_data_address = stop_reply->watch_data_address;
c9d22089
SM
8072
8073 if (target_is_non_stop_p ())
8074 {
8075 /* If the target works in non-stop mode, a stop-reply indicates that
8076 only this thread stopped. */
8077 remote_thr->set_not_resumed ();
8078 }
8079 else
8080 {
8081 /* If the target works in all-stop mode, a stop-reply indicates that
8082 all the target's threads stopped. */
8083 for (thread_info *tp : all_non_exited_threads (this))
8084 get_remote_thread_info (tp)->set_not_resumed ();
8085 }
74531fed
PA
8086 }
8087
32603266 8088 delete stop_reply;
74531fed
PA
8089 return ptid;
8090}
8091
8092/* The non-stop mode version of target_wait. */
8093
6b8edb51 8094ptid_t
b60cea74
TT
8095remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status,
8096 target_wait_flags options)
74531fed
PA
8097{
8098 struct remote_state *rs = get_remote_state ();
74531fed
PA
8099 struct stop_reply *stop_reply;
8100 int ret;
fee9eda9 8101 int is_notif = 0;
74531fed
PA
8102
8103 /* If in non-stop mode, get out of getpkt even if a
8104 notification is received. */
8105
8d64371b 8106 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
8107 while (1)
8108 {
fee9eda9 8109 if (ret != -1 && !is_notif)
74531fed
PA
8110 switch (rs->buf[0])
8111 {
8112 case 'E': /* Error of some sort. */
8113 /* We're out of sync with the target now. Did it continue
8114 or not? We can't tell which thread it was in non-stop,
8115 so just ignore this. */
8d64371b 8116 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
8117 break;
8118 case 'O': /* Console output. */
8d64371b 8119 remote_console_output (&rs->buf[1]);
74531fed
PA
8120 break;
8121 default:
8d64371b 8122 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
8123 break;
8124 }
8125
8126 /* Acknowledge a pending stop reply that may have arrived in the
8127 mean time. */
f48ff2a7 8128 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 8129 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
8130
8131 /* If indeed we noticed a stop reply, we're done. */
8132 stop_reply = queued_stop_reply (ptid);
8133 if (stop_reply != NULL)
8134 return process_stop_reply (stop_reply, status);
8135
47608cb1 8136 /* Still no event. If we're just polling for an event, then
74531fed 8137 return to the event loop. */
47608cb1 8138 if (options & TARGET_WNOHANG)
74531fed
PA
8139 {
8140 status->kind = TARGET_WAITKIND_IGNORE;
8141 return minus_one_ptid;
8142 }
8143
47608cb1 8144 /* Otherwise do a blocking wait. */
8d64371b 8145 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
8146 }
8147}
8148
31ba933e
PA
8149/* Return the first resumed thread. */
8150
8151static ptid_t
5b6d1e4f 8152first_remote_resumed_thread (remote_target *target)
31ba933e 8153{
5b6d1e4f 8154 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
7846f3aa 8155 if (tp->resumed ())
31ba933e
PA
8156 return tp->ptid;
8157 return null_ptid;
8158}
8159
74531fed
PA
8160/* Wait until the remote machine stops, then return, storing status in
8161 STATUS just as `wait' would. */
8162
6b8edb51 8163ptid_t
b60cea74
TT
8164remote_target::wait_as (ptid_t ptid, target_waitstatus *status,
8165 target_wait_flags options)
74531fed
PA
8166{
8167 struct remote_state *rs = get_remote_state ();
74531fed 8168 ptid_t event_ptid = null_ptid;
cea39f65 8169 char *buf;
74531fed
PA
8170 struct stop_reply *stop_reply;
8171
47608cb1
PA
8172 again:
8173
74531fed
PA
8174 status->kind = TARGET_WAITKIND_IGNORE;
8175 status->value.integer = 0;
8176
8177 stop_reply = queued_stop_reply (ptid);
8178 if (stop_reply != NULL)
8179 return process_stop_reply (stop_reply, status);
8180
8181 if (rs->cached_wait_status)
8182 /* Use the cached wait status, but only once. */
8183 rs->cached_wait_status = 0;
8184 else
8185 {
8186 int ret;
722247f1 8187 int is_notif;
567420d1 8188 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 8189 && rs->wait_forever_enabled_p);
567420d1
PA
8190
8191 if (!rs->waiting_for_stop_reply)
8192 {
8193 status->kind = TARGET_WAITKIND_NO_RESUMED;
8194 return minus_one_ptid;
8195 }
74531fed 8196
74531fed
PA
8197 /* FIXME: cagney/1999-09-27: If we're in async mode we should
8198 _never_ wait for ever -> test on target_is_async_p().
8199 However, before we do that we need to ensure that the caller
8200 knows how to take the target into/out of async mode. */
8d64371b 8201 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
8202
8203 /* GDB gets a notification. Return to core as this event is
8204 not interesting. */
8205 if (ret != -1 && is_notif)
8206 return minus_one_ptid;
567420d1
PA
8207
8208 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
8209 return minus_one_ptid;
74531fed
PA
8210 }
8211
8d64371b 8212 buf = rs->buf.data ();
74531fed 8213
3a29589a
DJ
8214 /* Assume that the target has acknowledged Ctrl-C unless we receive
8215 an 'F' or 'O' packet. */
8216 if (buf[0] != 'F' && buf[0] != 'O')
8217 rs->ctrlc_pending_p = 0;
8218
74531fed
PA
8219 switch (buf[0])
8220 {
8221 case 'E': /* Error of some sort. */
8222 /* We're out of sync with the target now. Did it continue or
8223 not? Not is more likely, so report a stop. */
29090fb6
LM
8224 rs->waiting_for_stop_reply = 0;
8225
74531fed
PA
8226 warning (_("Remote failure reply: %s"), buf);
8227 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 8228 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
8229 break;
8230 case 'F': /* File-I/O request. */
e42e5352
YQ
8231 /* GDB may access the inferior memory while handling the File-I/O
8232 request, but we don't want GDB accessing memory while waiting
8233 for a stop reply. See the comments in putpkt_binary. Set
8234 waiting_for_stop_reply to 0 temporarily. */
8235 rs->waiting_for_stop_reply = 0;
6b8edb51 8236 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 8237 rs->ctrlc_pending_p = 0;
e42e5352
YQ
8238 /* GDB handled the File-I/O request, and the target is running
8239 again. Keep waiting for events. */
8240 rs->waiting_for_stop_reply = 1;
74531fed 8241 break;
f2faf941 8242 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 8243 {
29090fb6
LM
8244 /* There is a stop reply to handle. */
8245 rs->waiting_for_stop_reply = 0;
8246
8247 stop_reply
6b8edb51
PA
8248 = (struct stop_reply *) remote_notif_parse (this,
8249 &notif_client_stop,
8d64371b 8250 rs->buf.data ());
74531fed 8251
74531fed 8252 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
8253 break;
8254 }
8255 case 'O': /* Console output. */
8256 remote_console_output (buf + 1);
c8e38a49
PA
8257 break;
8258 case '\0':
b73be471 8259 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
8260 {
8261 /* Zero length reply means that we tried 'S' or 'C' and the
8262 remote system doesn't support it. */
223ffa71 8263 target_terminal::ours_for_output ();
c8e38a49
PA
8264 printf_filtered
8265 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
8266 gdb_signal_to_name (rs->last_sent_signal));
8267 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 8268 target_terminal::inferior ();
c8e38a49 8269
f5c4fcd9
TT
8270 strcpy (buf, rs->last_sent_step ? "s" : "c");
8271 putpkt (buf);
c8e38a49 8272 break;
43ff13b4 8273 }
86a73007 8274 /* fallthrough */
c8e38a49
PA
8275 default:
8276 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 8277 break;
43ff13b4 8278 }
c8e38a49 8279
f2faf941
PA
8280 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
8281 return minus_one_ptid;
8282 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
8283 {
8284 /* Nothing interesting happened. If we're doing a non-blocking
8285 poll, we're done. Otherwise, go back to waiting. */
8286 if (options & TARGET_WNOHANG)
8287 return minus_one_ptid;
8288 else
8289 goto again;
8290 }
74531fed
PA
8291 else if (status->kind != TARGET_WAITKIND_EXITED
8292 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 8293 {
d7e15655 8294 if (event_ptid != null_ptid)
47f8a51d 8295 record_currthread (rs, event_ptid);
82f73884 8296 else
5b6d1e4f 8297 event_ptid = first_remote_resumed_thread (this);
43ff13b4 8298 }
74531fed 8299 else
e7af6c70
TBA
8300 {
8301 /* A process exit. Invalidate our notion of current thread. */
8302 record_currthread (rs, minus_one_ptid);
8303 /* It's possible that the packet did not include a pid. */
8304 if (event_ptid == null_ptid)
5b6d1e4f 8305 event_ptid = first_remote_resumed_thread (this);
e7af6c70
TBA
8306 /* EVENT_PTID could still be NULL_PTID. Double-check. */
8307 if (event_ptid == null_ptid)
8308 event_ptid = magic_null_ptid;
8309 }
79d7f229 8310
82f73884 8311 return event_ptid;
43ff13b4
JM
8312}
8313
74531fed
PA
8314/* Wait until the remote machine stops, then return, storing status in
8315 STATUS just as `wait' would. */
8316
f6ac5f3d 8317ptid_t
b60cea74
TT
8318remote_target::wait (ptid_t ptid, struct target_waitstatus *status,
8319 target_wait_flags options)
c8e38a49 8320{
2189c312
SM
8321 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
8322
baa8575b
SM
8323 remote_state *rs = get_remote_state ();
8324
8325 /* Start by clearing the flag that asks for our wait method to be called,
8326 we'll mark it again at the end if needed. */
8327 if (target_is_async_p ())
8328 clear_async_event_handler (rs->remote_async_inferior_event_token);
8329
c8e38a49
PA
8330 ptid_t event_ptid;
8331
6efcd9a8 8332 if (target_is_non_stop_p ())
6b8edb51 8333 event_ptid = wait_ns (ptid, status, options);
74531fed 8334 else
6b8edb51 8335 event_ptid = wait_as (ptid, status, options);
c8e38a49 8336
d9d41e78 8337 if (target_is_async_p ())
c8e38a49 8338 {
baa8575b
SM
8339 /* If there are events left in the queue, or unacknowledged
8340 notifications, then tell the event loop to call us again. */
8341 if (!rs->stop_reply_queue.empty ()
8342 || rs->notif_state->pending_event[notif_client_stop.id] != nullptr)
6b8edb51 8343 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 8344 }
c8e38a49
PA
8345
8346 return event_ptid;
8347}
8348
74ca34ce 8349/* Fetch a single register using a 'p' packet. */
c906108c 8350
6b8edb51
PA
8351int
8352remote_target::fetch_register_using_p (struct regcache *regcache,
8353 packet_reg *reg)
b96ec7ac 8354{
ac7936df 8355 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 8356 struct remote_state *rs = get_remote_state ();
2e9f7625 8357 char *buf, *p;
9890e433 8358 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
8359 int i;
8360
4082afcc 8361 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
8362 return 0;
8363
8364 if (reg->pnum == -1)
8365 return 0;
8366
8d64371b 8367 p = rs->buf.data ();
fcad0fa4 8368 *p++ = 'p';
74ca34ce 8369 p += hexnumstr (p, reg->pnum);
fcad0fa4 8370 *p++ = '\0';
1f4437a4 8371 putpkt (rs->buf);
8d64371b 8372 getpkt (&rs->buf, 0);
3f9a994c 8373
8d64371b 8374 buf = rs->buf.data ();
2e9f7625 8375
8d64371b 8376 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
8377 {
8378 case PACKET_OK:
8379 break;
8380 case PACKET_UNKNOWN:
8381 return 0;
8382 case PACKET_ERROR:
27a9c0bf 8383 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 8384 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
8385 reg->regnum),
8386 buf);
74ca34ce 8387 }
3f9a994c
JB
8388
8389 /* If this register is unfetchable, tell the regcache. */
8390 if (buf[0] == 'x')
8480adf2 8391 {
73e1c03f 8392 regcache->raw_supply (reg->regnum, NULL);
8480adf2 8393 return 1;
b96ec7ac 8394 }
b96ec7ac 8395
3f9a994c
JB
8396 /* Otherwise, parse and supply the value. */
8397 p = buf;
8398 i = 0;
8399 while (p[0] != 0)
8400 {
8401 if (p[1] == 0)
74ca34ce 8402 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
8403
8404 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8405 p += 2;
8406 }
73e1c03f 8407 regcache->raw_supply (reg->regnum, regp);
3f9a994c 8408 return 1;
b96ec7ac
AC
8409}
8410
74ca34ce
DJ
8411/* Fetch the registers included in the target's 'g' packet. */
8412
6b8edb51
PA
8413int
8414remote_target::send_g_packet ()
c906108c 8415{
d01949b6 8416 struct remote_state *rs = get_remote_state ();
cea39f65 8417 int buf_len;
c906108c 8418
8d64371b 8419 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 8420 putpkt (rs->buf);
8d64371b 8421 getpkt (&rs->buf, 0);
b75abf5b
AK
8422 if (packet_check_result (rs->buf) == PACKET_ERROR)
8423 error (_("Could not read registers; remote failure reply '%s'"),
dda83cd7 8424 rs->buf.data ());
c906108c 8425
29709017
DJ
8426 /* We can get out of synch in various cases. If the first character
8427 in the buffer is not a hex character, assume that has happened
8428 and try to fetch another packet to read. */
8429 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8430 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8431 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8432 && rs->buf[0] != 'x') /* New: unavailable register value. */
8433 {
2189c312 8434 remote_debug_printf ("Bad register packet; fetching a new packet");
8d64371b 8435 getpkt (&rs->buf, 0);
29709017
DJ
8436 }
8437
8d64371b 8438 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8439
8440 /* Sanity check the received packet. */
8441 if (buf_len % 2 != 0)
8d64371b 8442 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8443
8444 return buf_len / 2;
8445}
8446
6b8edb51
PA
8447void
8448remote_target::process_g_packet (struct regcache *regcache)
29709017 8449{
ac7936df 8450 struct gdbarch *gdbarch = regcache->arch ();
29709017 8451 struct remote_state *rs = get_remote_state ();
9d6eea31 8452 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8453 int i, buf_len;
8454 char *p;
8455 char *regs;
8456
8d64371b 8457 buf_len = strlen (rs->buf.data ());
29709017
DJ
8458
8459 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8460 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8461 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8462 "bytes): %s"),
8463 rsa->sizeof_g_packet, buf_len / 2,
8464 rs->buf.data ());
74ca34ce
DJ
8465
8466 /* Save the size of the packet sent to us by the target. It is used
8467 as a heuristic when determining the max size of packets that the
8468 target can safely receive. */
8469 if (rsa->actual_register_packet_size == 0)
8470 rsa->actual_register_packet_size = buf_len;
8471
8472 /* If this is smaller than we guessed the 'g' packet would be,
8473 update our records. A 'g' reply that doesn't include a register's
8474 value implies either that the register is not available, or that
8475 the 'p' packet must be used. */
8476 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8477 {
9dc193c3 8478 long sizeof_g_packet = buf_len / 2;
74ca34ce 8479
4a22f64d 8480 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8481 {
9dc193c3
LF
8482 long offset = rsa->regs[i].offset;
8483 long reg_size = register_size (gdbarch, i);
8484
74ca34ce
DJ
8485 if (rsa->regs[i].pnum == -1)
8486 continue;
8487
9dc193c3 8488 if (offset >= sizeof_g_packet)
74ca34ce 8489 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8490 else if (offset + reg_size > sizeof_g_packet)
8491 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8492 else
74ca34ce 8493 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8494 }
9dc193c3
LF
8495
8496 /* Looks valid enough, we can assume this is the correct length
dda83cd7
SM
8497 for a 'g' packet. It's important not to adjust
8498 rsa->sizeof_g_packet if we have truncated registers otherwise
8499 this "if" won't be run the next time the method is called
8500 with a packet of the same size and one of the internal errors
8501 below will trigger instead. */
9dc193c3 8502 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8503 }
b323314b 8504
224c3ddb 8505 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8506
8507 /* Unimplemented registers read as all bits zero. */
ea9c271d 8508 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8509
c906108c
SS
8510 /* Reply describes registers byte by byte, each byte encoded as two
8511 hex characters. Suck them all up, then supply them to the
8512 register cacheing/storage mechanism. */
8513
8d64371b 8514 p = rs->buf.data ();
ea9c271d 8515 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8516 {
74ca34ce
DJ
8517 if (p[0] == 0 || p[1] == 0)
8518 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8519 internal_error (__FILE__, __LINE__,
9b20d036 8520 _("unexpected end of 'g' packet reply"));
74ca34ce 8521
c906108c 8522 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8523 regs[i] = 0; /* 'x' */
c906108c
SS
8524 else
8525 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8526 p += 2;
8527 }
8528
a744cf53
MS
8529 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8530 {
8531 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8532 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8533
8534 if (r->in_g_packet)
8535 {
8d64371b 8536 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8537 /* This shouldn't happen - we adjusted in_g_packet above. */
8538 internal_error (__FILE__, __LINE__,
9b20d036 8539 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8540 else if (rs->buf[r->offset * 2] == 'x')
8541 {
8d64371b 8542 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8543 /* The register isn't available, mark it as such (at
8544 the same time setting the value to zero). */
73e1c03f 8545 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8546 }
8547 else
73e1c03f 8548 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8549 }
8550 }
c906108c
SS
8551}
8552
6b8edb51
PA
8553void
8554remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8555{
8556 send_g_packet ();
56be3814 8557 process_g_packet (regcache);
29709017
DJ
8558}
8559
e6e4e701
PA
8560/* Make the remote selected traceframe match GDB's selected
8561 traceframe. */
8562
6b8edb51
PA
8563void
8564remote_target::set_remote_traceframe ()
e6e4e701
PA
8565{
8566 int newnum;
262e1174 8567 struct remote_state *rs = get_remote_state ();
e6e4e701 8568
262e1174 8569 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8570 return;
8571
8572 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8573 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8574
8575 newnum = target_trace_find (tfind_number,
8576 get_traceframe_number (), 0, 0, NULL);
8577
8578 /* Should not happen. If it does, all bets are off. */
8579 if (newnum != get_traceframe_number ())
8580 warning (_("could not set remote traceframe"));
8581}
8582
f6ac5f3d
PA
8583void
8584remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8585{
ac7936df 8586 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8587 struct remote_state *rs = get_remote_state ();
8588 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8589 int i;
8590
e6e4e701 8591 set_remote_traceframe ();
222312d3 8592 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8593
8594 if (regnum >= 0)
8595 {
5cd63fda 8596 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8597
74ca34ce
DJ
8598 gdb_assert (reg != NULL);
8599
8600 /* If this register might be in the 'g' packet, try that first -
8601 we are likely to read more than one register. If this is the
8602 first 'g' packet, we might be overly optimistic about its
8603 contents, so fall back to 'p'. */
8604 if (reg->in_g_packet)
8605 {
56be3814 8606 fetch_registers_using_g (regcache);
74ca34ce
DJ
8607 if (reg->in_g_packet)
8608 return;
8609 }
8610
56be3814 8611 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8612 return;
8613
8614 /* This register is not available. */
73e1c03f 8615 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8616
8617 return;
8618 }
8619
56be3814 8620 fetch_registers_using_g (regcache);
74ca34ce 8621
5cd63fda 8622 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8623 if (!rsa->regs[i].in_g_packet)
56be3814 8624 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8625 {
8626 /* This register is not available. */
73e1c03f 8627 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8628 }
8629}
8630
c906108c
SS
8631/* Prepare to store registers. Since we may send them all (using a
8632 'G' request), we have to read out the ones we don't want to change
8633 first. */
8634
f6ac5f3d
PA
8635void
8636remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8637{
9d6eea31
PA
8638 struct remote_state *rs = get_remote_state ();
8639 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8640 int i;
cf0e1e0d 8641
c906108c 8642 /* Make sure the entire registers array is valid. */
4082afcc 8643 switch (packet_support (PACKET_P))
5a2468f5
JM
8644 {
8645 case PACKET_DISABLE:
8646 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8647 /* Make sure all the necessary registers are cached. */
ac7936df 8648 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8649 if (rsa->regs[i].in_g_packet)
0b47d985 8650 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8651 break;
8652 case PACKET_ENABLE:
8653 break;
8654 }
8655}
8656
ad10f812 8657/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8658 packet was not recognized. */
5a2468f5 8659
6b8edb51
PA
8660int
8661remote_target::store_register_using_P (const struct regcache *regcache,
8662 packet_reg *reg)
5a2468f5 8663{
ac7936df 8664 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8665 struct remote_state *rs = get_remote_state ();
5a2468f5 8666 /* Try storing a single register. */
8d64371b 8667 char *buf = rs->buf.data ();
9890e433 8668 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8669 char *p;
5a2468f5 8670
4082afcc 8671 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8672 return 0;
8673
8674 if (reg->pnum == -1)
8675 return 0;
8676
ea9c271d 8677 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8678 p = buf + strlen (buf);
34a79281 8679 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8680 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8681 putpkt (rs->buf);
8d64371b 8682 getpkt (&rs->buf, 0);
5a2468f5 8683
74ca34ce
DJ
8684 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8685 {
8686 case PACKET_OK:
8687 return 1;
8688 case PACKET_ERROR:
27a9c0bf 8689 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8690 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8691 case PACKET_UNKNOWN:
8692 return 0;
8693 default:
8694 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8695 }
c906108c
SS
8696}
8697
23860348
MS
8698/* Store register REGNUM, or all registers if REGNUM == -1, from the
8699 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8700
6b8edb51
PA
8701void
8702remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8703{
d01949b6 8704 struct remote_state *rs = get_remote_state ();
9d6eea31 8705 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8706 gdb_byte *regs;
c906108c
SS
8707 char *p;
8708
193cb69f
AC
8709 /* Extract all the registers in the regcache copying them into a
8710 local buffer. */
8711 {
b323314b 8712 int i;
a744cf53 8713
224c3ddb 8714 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8715 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8716 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8717 {
ea9c271d 8718 struct packet_reg *r = &rsa->regs[i];
a744cf53 8719
b323314b 8720 if (r->in_g_packet)
34a79281 8721 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8722 }
8723 }
c906108c
SS
8724
8725 /* Command describes registers byte by byte,
8726 each byte encoded as two hex characters. */
8d64371b 8727 p = rs->buf.data ();
193cb69f 8728 *p++ = 'G';
74ca34ce 8729 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8730 putpkt (rs->buf);
8d64371b 8731 getpkt (&rs->buf, 0);
1f4437a4 8732 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8733 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8734 rs->buf.data ());
c906108c 8735}
74ca34ce
DJ
8736
8737/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8738 of the register cache buffer. FIXME: ignores errors. */
8739
f6ac5f3d
PA
8740void
8741remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8742{
5cd63fda 8743 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8744 struct remote_state *rs = get_remote_state ();
8745 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8746 int i;
8747
e6e4e701 8748 set_remote_traceframe ();
222312d3 8749 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8750
8751 if (regnum >= 0)
8752 {
5cd63fda 8753 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8754
74ca34ce
DJ
8755 gdb_assert (reg != NULL);
8756
8757 /* Always prefer to store registers using the 'P' packet if
8758 possible; we often change only a small number of registers.
8759 Sometimes we change a larger number; we'd need help from a
8760 higher layer to know to use 'G'. */
56be3814 8761 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8762 return;
8763
8764 /* For now, don't complain if we have no way to write the
8765 register. GDB loses track of unavailable registers too
8766 easily. Some day, this may be an error. We don't have
0df8b418 8767 any way to read the register, either... */
74ca34ce
DJ
8768 if (!reg->in_g_packet)
8769 return;
8770
56be3814 8771 store_registers_using_G (regcache);
74ca34ce
DJ
8772 return;
8773 }
8774
56be3814 8775 store_registers_using_G (regcache);
74ca34ce 8776
5cd63fda 8777 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8778 if (!rsa->regs[i].in_g_packet)
56be3814 8779 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8780 /* See above for why we do not issue an error here. */
8781 continue;
8782}
c906108c
SS
8783\f
8784
8785/* Return the number of hex digits in num. */
8786
8787static int
fba45db2 8788hexnumlen (ULONGEST num)
c906108c
SS
8789{
8790 int i;
8791
8792 for (i = 0; num != 0; i++)
8793 num >>= 4;
8794
325fac50 8795 return std::max (i, 1);
c906108c
SS
8796}
8797
2df3850c 8798/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8799
8800static int
fba45db2 8801hexnumstr (char *buf, ULONGEST num)
c906108c 8802{
c906108c 8803 int len = hexnumlen (num);
a744cf53 8804
2df3850c
JM
8805 return hexnumnstr (buf, num, len);
8806}
8807
c906108c 8808
2df3850c 8809/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8810
2df3850c 8811static int
fba45db2 8812hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8813{
8814 int i;
8815
8816 buf[width] = '\0';
8817
8818 for (i = width - 1; i >= 0; i--)
c906108c 8819 {
c5aa993b 8820 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8821 num >>= 4;
8822 }
8823
2df3850c 8824 return width;
c906108c
SS
8825}
8826
23860348 8827/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8828
8829static CORE_ADDR
fba45db2 8830remote_address_masked (CORE_ADDR addr)
c906108c 8831{
883b9c6c 8832 unsigned int address_size = remote_address_size;
a744cf53 8833
911c95a5
UW
8834 /* If "remoteaddresssize" was not set, default to target address size. */
8835 if (!address_size)
f5656ead 8836 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8837
8838 if (address_size > 0
8839 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8840 {
8841 /* Only create a mask when that mask can safely be constructed
dda83cd7 8842 in a ULONGEST variable. */
c906108c 8843 ULONGEST mask = 1;
a744cf53 8844
911c95a5 8845 mask = (mask << address_size) - 1;
c906108c
SS
8846 addr &= mask;
8847 }
8848 return addr;
8849}
8850
8851/* Determine whether the remote target supports binary downloading.
8852 This is accomplished by sending a no-op memory write of zero length
8853 to the target at the specified address. It does not suffice to send
23860348
MS
8854 the whole packet, since many stubs strip the eighth bit and
8855 subsequently compute a wrong checksum, which causes real havoc with
8856 remote_write_bytes.
7a292a7a 8857
96baa820 8858 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8859 clean. In cases like this, the user should clear "remote
23860348 8860 X-packet". */
96baa820 8861
6b8edb51
PA
8862void
8863remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8864{
d01949b6 8865 struct remote_state *rs = get_remote_state ();
24b06219 8866
4082afcc 8867 switch (packet_support (PACKET_X))
c906108c 8868 {
96baa820
JM
8869 case PACKET_DISABLE:
8870 break;
8871 case PACKET_ENABLE:
8872 break;
8873 case PACKET_SUPPORT_UNKNOWN:
8874 {
96baa820 8875 char *p;
802188a7 8876
8d64371b 8877 p = rs->buf.data ();
96baa820
JM
8878 *p++ = 'X';
8879 p += hexnumstr (p, (ULONGEST) addr);
8880 *p++ = ',';
8881 p += hexnumstr (p, (ULONGEST) 0);
8882 *p++ = ':';
8883 *p = '\0';
802188a7 8884
8d64371b
TT
8885 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8886 getpkt (&rs->buf, 0);
c906108c 8887
2e9f7625 8888 if (rs->buf[0] == '\0')
96baa820 8889 {
2189c312 8890 remote_debug_printf ("binary downloading NOT supported by target");
444abaca 8891 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8892 }
8893 else
8894 {
2189c312 8895 remote_debug_printf ("binary downloading supported by target");
444abaca 8896 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8897 }
8898 break;
8899 }
c906108c
SS
8900 }
8901}
8902
124e13d9
SM
8903/* Helper function to resize the payload in order to try to get a good
8904 alignment. We try to write an amount of data such that the next write will
8905 start on an address aligned on REMOTE_ALIGN_WRITES. */
8906
8907static int
8908align_for_efficient_write (int todo, CORE_ADDR memaddr)
8909{
8910 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8911}
8912
c906108c
SS
8913/* Write memory data directly to the remote machine.
8914 This does not inform the data cache; the data cache uses this.
a76d924d 8915 HEADER is the starting part of the packet.
c906108c
SS
8916 MEMADDR is the address in the remote memory space.
8917 MYADDR is the address of the buffer in our space.
124e13d9
SM
8918 LEN_UNITS is the number of addressable units to write.
8919 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8920 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8921 should send data as binary ('X'), or hex-encoded ('M').
8922
8923 The function creates packet of the form
8924 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8925
124e13d9 8926 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8927
8928 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8929 are omitted.
8930
9b409511 8931 Return the transferred status, error or OK (an
124e13d9
SM
8932 'enum target_xfer_status' value). Save the number of addressable units
8933 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8934
8935 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8936 exchange between gdb and the stub could look like (?? in place of the
8937 checksum):
8938
8939 -> $m1000,4#??
8940 <- aaaabbbbccccdddd
8941
8942 -> $M1000,3:eeeeffffeeee#??
8943 <- OK
8944
8945 -> $m1000,4#??
8946 <- eeeeffffeeeedddd */
c906108c 8947
6b8edb51
PA
8948target_xfer_status
8949remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8950 const gdb_byte *myaddr,
8951 ULONGEST len_units,
8952 int unit_size,
8953 ULONGEST *xfered_len_units,
8954 char packet_format, int use_length)
c906108c 8955{
6d820c5c 8956 struct remote_state *rs = get_remote_state ();
cfd77fa1 8957 char *p;
a76d924d
DJ
8958 char *plen = NULL;
8959 int plenlen = 0;
124e13d9
SM
8960 int todo_units;
8961 int units_written;
8962 int payload_capacity_bytes;
8963 int payload_length_bytes;
a76d924d
DJ
8964
8965 if (packet_format != 'X' && packet_format != 'M')
8966 internal_error (__FILE__, __LINE__,
9b20d036 8967 _("remote_write_bytes_aux: bad packet format"));
c906108c 8968
124e13d9 8969 if (len_units == 0)
9b409511 8970 return TARGET_XFER_EOF;
b2182ed2 8971
124e13d9 8972 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8973
6d820c5c
DJ
8974 /* The packet buffer will be large enough for the payload;
8975 get_memory_packet_size ensures this. */
a76d924d 8976 rs->buf[0] = '\0';
c906108c 8977
a257b5bb 8978 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8979 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8980
124e13d9 8981 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8982 if (!use_length)
0df8b418 8983 /* The comma won't be used. */
124e13d9
SM
8984 payload_capacity_bytes += 1;
8985 payload_capacity_bytes -= strlen (header);
8986 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8987
a76d924d 8988 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8989
8d64371b
TT
8990 strcat (rs->buf.data (), header);
8991 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8992
8993 /* Compute a best guess of the number of bytes actually transfered. */
8994 if (packet_format == 'X')
c906108c 8995 {
23860348 8996 /* Best guess at number of bytes that will fit. */
325fac50
PA
8997 todo_units = std::min (len_units,
8998 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8999 if (use_length)
124e13d9 9000 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 9001 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
9002 }
9003 else
9004 {
124e13d9 9005 /* Number of bytes that will fit. */
325fac50
PA
9006 todo_units
9007 = std::min (len_units,
9008 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 9009 if (use_length)
124e13d9 9010 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
9011 todo_units = std::min (todo_units,
9012 (payload_capacity_bytes / unit_size) / 2);
917317f4 9013 }
a76d924d 9014
124e13d9 9015 if (todo_units <= 0)
3de11b2e 9016 internal_error (__FILE__, __LINE__,
405f8e94 9017 _("minimum packet size too small to write data"));
802188a7 9018
6765f3e5
DJ
9019 /* If we already need another packet, then try to align the end
9020 of this packet to a useful boundary. */
124e13d9
SM
9021 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
9022 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 9023
a257b5bb 9024 /* Append "<memaddr>". */
917317f4
JM
9025 memaddr = remote_address_masked (memaddr);
9026 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 9027
a76d924d
DJ
9028 if (use_length)
9029 {
9030 /* Append ",". */
9031 *p++ = ',';
802188a7 9032
124e13d9 9033 /* Append the length and retain its location and size. It may need to be
dda83cd7 9034 adjusted once the packet body has been created. */
a76d924d 9035 plen = p;
124e13d9 9036 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
9037 p += plenlen;
9038 }
a257b5bb
AC
9039
9040 /* Append ":". */
917317f4
JM
9041 *p++ = ':';
9042 *p = '\0';
802188a7 9043
a257b5bb 9044 /* Append the packet body. */
a76d924d 9045 if (packet_format == 'X')
917317f4 9046 {
917317f4
JM
9047 /* Binary mode. Send target system values byte by byte, in
9048 increasing byte addresses. Only escape certain critical
9049 characters. */
124e13d9
SM
9050 payload_length_bytes =
9051 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
9052 &units_written, payload_capacity_bytes);
6765f3e5 9053
124e13d9 9054 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
9055 a second try to keep the end of the packet aligned. Don't do
9056 this if the packet is tiny. */
124e13d9 9057 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 9058 {
124e13d9
SM
9059 int new_todo_units;
9060
9061 new_todo_units = align_for_efficient_write (units_written, memaddr);
9062
9063 if (new_todo_units != units_written)
9064 payload_length_bytes =
9065 remote_escape_output (myaddr, new_todo_units, unit_size,
9066 (gdb_byte *) p, &units_written,
9067 payload_capacity_bytes);
6765f3e5
DJ
9068 }
9069
124e13d9
SM
9070 p += payload_length_bytes;
9071 if (use_length && units_written < todo_units)
c906108c 9072 {
802188a7 9073 /* Escape chars have filled up the buffer prematurely,
124e13d9 9074 and we have actually sent fewer units than planned.
917317f4
JM
9075 Fix-up the length field of the packet. Use the same
9076 number of characters as before. */
124e13d9
SM
9077 plen += hexnumnstr (plen, (ULONGEST) units_written,
9078 plenlen);
917317f4 9079 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 9080 }
a76d924d
DJ
9081 }
9082 else
9083 {
917317f4
JM
9084 /* Normal mode: Send target system values byte by byte, in
9085 increasing byte addresses. Each byte is encoded as a two hex
9086 value. */
124e13d9
SM
9087 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
9088 units_written = todo_units;
c906108c 9089 }
802188a7 9090
8d64371b
TT
9091 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
9092 getpkt (&rs->buf, 0);
802188a7 9093
2e9f7625 9094 if (rs->buf[0] == 'E')
00d84524 9095 return TARGET_XFER_E_IO;
802188a7 9096
124e13d9
SM
9097 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
9098 send fewer units than we'd planned. */
9099 *xfered_len_units = (ULONGEST) units_written;
92ffd475 9100 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
9101}
9102
a76d924d
DJ
9103/* Write memory data directly to the remote machine.
9104 This does not inform the data cache; the data cache uses this.
9105 MEMADDR is the address in the remote memory space.
9106 MYADDR is the address of the buffer in our space.
9107 LEN is the number of bytes.
9108
9b409511
YQ
9109 Return the transferred status, error or OK (an
9110 'enum target_xfer_status' value). Save the number of bytes
9111 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 9112
6b8edb51
PA
9113target_xfer_status
9114remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
9115 ULONGEST len, int unit_size,
9116 ULONGEST *xfered_len)
a76d924d 9117{
a121b7c1 9118 const char *packet_format = NULL;
a76d924d
DJ
9119
9120 /* Check whether the target supports binary download. */
9121 check_binary_download (memaddr);
9122
4082afcc 9123 switch (packet_support (PACKET_X))
a76d924d
DJ
9124 {
9125 case PACKET_ENABLE:
9126 packet_format = "X";
9127 break;
9128 case PACKET_DISABLE:
9129 packet_format = "M";
9130 break;
9131 case PACKET_SUPPORT_UNKNOWN:
9132 internal_error (__FILE__, __LINE__,
9133 _("remote_write_bytes: bad internal state"));
9134 default:
9135 internal_error (__FILE__, __LINE__, _("bad switch"));
9136 }
9137
9138 return remote_write_bytes_aux (packet_format,
124e13d9 9139 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 9140 packet_format[0], 1);
a76d924d
DJ
9141}
9142
9217e74e
YQ
9143/* Read memory data directly from the remote machine.
9144 This does not use the data cache; the data cache uses this.
9145 MEMADDR is the address in the remote memory space.
9146 MYADDR is the address of the buffer in our space.
124e13d9
SM
9147 LEN_UNITS is the number of addressable memory units to read..
9148 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
9149
9150 Return the transferred status, error or OK (an
9151 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
9152 transferred in *XFERED_LEN_UNITS.
9153
9154 See the comment of remote_write_bytes_aux for an example of
9155 memory read/write exchange between gdb and the stub. */
9217e74e 9156
6b8edb51
PA
9157target_xfer_status
9158remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
9159 ULONGEST len_units,
9160 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
9161{
9162 struct remote_state *rs = get_remote_state ();
124e13d9 9163 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 9164 char *p;
124e13d9
SM
9165 int todo_units;
9166 int decoded_bytes;
9217e74e 9167
124e13d9 9168 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
9169 /* The packet buffer will be large enough for the payload;
9170 get_memory_packet_size ensures this. */
9171
124e13d9 9172 /* Number of units that will fit. */
325fac50
PA
9173 todo_units = std::min (len_units,
9174 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
9175
9176 /* Construct "m"<memaddr>","<len>". */
9177 memaddr = remote_address_masked (memaddr);
8d64371b 9178 p = rs->buf.data ();
9217e74e
YQ
9179 *p++ = 'm';
9180 p += hexnumstr (p, (ULONGEST) memaddr);
9181 *p++ = ',';
124e13d9 9182 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
9183 *p = '\0';
9184 putpkt (rs->buf);
8d64371b 9185 getpkt (&rs->buf, 0);
9217e74e
YQ
9186 if (rs->buf[0] == 'E'
9187 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
9188 && rs->buf[3] == '\0')
9189 return TARGET_XFER_E_IO;
9190 /* Reply describes memory byte by byte, each byte encoded as two hex
9191 characters. */
8d64371b 9192 p = rs->buf.data ();
124e13d9 9193 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 9194 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 9195 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 9196 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
9197}
9198
b55fbac4
YQ
9199/* Using the set of read-only target sections of remote, read live
9200 read-only memory.
8acf9577
YQ
9201
9202 For interface/parameters/return description see target.h,
9203 to_xfer_partial. */
9204
6b8edb51
PA
9205target_xfer_status
9206remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
9207 ULONGEST memaddr,
9208 ULONGEST len,
9209 int unit_size,
9210 ULONGEST *xfered_len)
8acf9577 9211{
19cf757a 9212 const struct target_section *secp;
8acf9577 9213
6b8edb51 9214 secp = target_section_by_addr (this, memaddr);
8acf9577 9215 if (secp != NULL
fd361982 9216 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577 9217 {
8acf9577
YQ
9218 ULONGEST memend = memaddr + len;
9219
19cf757a
AB
9220 const target_section_table *table = target_get_section_table (this);
9221 for (const target_section &p : *table)
8acf9577 9222 {
bb2a6777 9223 if (memaddr >= p.addr)
8acf9577 9224 {
bb2a6777 9225 if (memend <= p.endaddr)
8acf9577
YQ
9226 {
9227 /* Entire transfer is within this section. */
124e13d9 9228 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 9229 xfered_len);
8acf9577 9230 }
bb2a6777 9231 else if (memaddr >= p.endaddr)
8acf9577
YQ
9232 {
9233 /* This section ends before the transfer starts. */
9234 continue;
9235 }
9236 else
9237 {
9238 /* This section overlaps the transfer. Just do half. */
bb2a6777 9239 len = p.endaddr - memaddr;
124e13d9 9240 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 9241 xfered_len);
8acf9577
YQ
9242 }
9243 }
9244 }
9245 }
9246
9247 return TARGET_XFER_EOF;
9248}
9249
9217e74e
YQ
9250/* Similar to remote_read_bytes_1, but it reads from the remote stub
9251 first if the requested memory is unavailable in traceframe.
9252 Otherwise, fall back to remote_read_bytes_1. */
c906108c 9253
6b8edb51
PA
9254target_xfer_status
9255remote_target::remote_read_bytes (CORE_ADDR memaddr,
9256 gdb_byte *myaddr, ULONGEST len, int unit_size,
9257 ULONGEST *xfered_len)
c906108c 9258{
6b6aa828 9259 if (len == 0)
96c4f946 9260 return TARGET_XFER_EOF;
b2182ed2 9261
8acf9577
YQ
9262 if (get_traceframe_number () != -1)
9263 {
a79b1bc6 9264 std::vector<mem_range> available;
8acf9577
YQ
9265
9266 /* If we fail to get the set of available memory, then the
9267 target does not support querying traceframe info, and so we
9268 attempt reading from the traceframe anyway (assuming the
9269 target implements the old QTro packet then). */
9270 if (traceframe_available_memory (&available, memaddr, len))
9271 {
a79b1bc6 9272 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
9273 {
9274 enum target_xfer_status res;
9275
9276 /* Don't read into the traceframe's available
9277 memory. */
a79b1bc6 9278 if (!available.empty ())
8acf9577
YQ
9279 {
9280 LONGEST oldlen = len;
9281
a79b1bc6 9282 len = available[0].start - memaddr;
8acf9577
YQ
9283 gdb_assert (len <= oldlen);
9284 }
9285
8acf9577 9286 /* This goes through the topmost target again. */
6b8edb51 9287 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 9288 len, unit_size, xfered_len);
8acf9577
YQ
9289 if (res == TARGET_XFER_OK)
9290 return TARGET_XFER_OK;
9291 else
9292 {
9293 /* No use trying further, we know some memory starting
9294 at MEMADDR isn't available. */
9295 *xfered_len = len;
92ffd475
PC
9296 return (*xfered_len != 0) ?
9297 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
9298 }
9299 }
9300
9301 /* Don't try to read more than how much is available, in
9302 case the target implements the deprecated QTro packet to
9303 cater for older GDBs (the target's knowledge of read-only
9304 sections may be outdated by now). */
a79b1bc6 9305 len = available[0].length;
8acf9577
YQ
9306 }
9307 }
9308
124e13d9 9309 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 9310}
74531fed 9311
c906108c 9312\f
c906108c 9313
a76d924d
DJ
9314/* Sends a packet with content determined by the printf format string
9315 FORMAT and the remaining arguments, then gets the reply. Returns
9316 whether the packet was a success, a failure, or unknown. */
9317
6b8edb51
PA
9318packet_result
9319remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
9320{
9321 struct remote_state *rs = get_remote_state ();
9322 int max_size = get_remote_packet_size ();
a76d924d 9323 va_list ap;
a744cf53 9324
a76d924d
DJ
9325 va_start (ap, format);
9326
9327 rs->buf[0] = '\0';
8d64371b 9328 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
9329
9330 va_end (ap);
9331
9332 if (size >= max_size)
9b20d036 9333 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
9334
9335 if (putpkt (rs->buf) < 0)
9336 error (_("Communication problem with target."));
9337
9338 rs->buf[0] = '\0';
8d64371b 9339 getpkt (&rs->buf, 0);
a76d924d
DJ
9340
9341 return packet_check_result (rs->buf);
9342}
9343
a76d924d
DJ
9344/* Flash writing can take quite some time. We'll set
9345 effectively infinite timeout for flash operations.
9346 In future, we'll need to decide on a better approach. */
9347static const int remote_flash_timeout = 1000;
9348
f6ac5f3d
PA
9349void
9350remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 9351{
f5656ead 9352 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 9353 enum packet_result ret;
2ec845e7
TT
9354 scoped_restore restore_timeout
9355 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
9356
9357 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 9358 phex (address, addr_size),
a76d924d
DJ
9359 phex (length, 4));
9360 switch (ret)
9361 {
9362 case PACKET_UNKNOWN:
9363 error (_("Remote target does not support flash erase"));
9364 case PACKET_ERROR:
9365 error (_("Error erasing flash with vFlashErase packet"));
9366 default:
9367 break;
9368 }
a76d924d
DJ
9369}
9370
6b8edb51
PA
9371target_xfer_status
9372remote_target::remote_flash_write (ULONGEST address,
9373 ULONGEST length, ULONGEST *xfered_len,
9374 const gdb_byte *data)
a76d924d 9375{
2ec845e7
TT
9376 scoped_restore restore_timeout
9377 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9378 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9379 xfered_len,'X', 0);
a76d924d
DJ
9380}
9381
f6ac5f3d
PA
9382void
9383remote_target::flash_done ()
a76d924d 9384{
a76d924d 9385 int ret;
a76d924d 9386
2ec845e7
TT
9387 scoped_restore restore_timeout
9388 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9389
a76d924d 9390 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
9391
9392 switch (ret)
9393 {
9394 case PACKET_UNKNOWN:
9395 error (_("Remote target does not support vFlashDone"));
9396 case PACKET_ERROR:
9397 error (_("Error finishing flash operation"));
9398 default:
9399 break;
9400 }
9401}
9402
f6ac5f3d
PA
9403void
9404remote_target::files_info ()
c906108c
SS
9405{
9406 puts_filtered ("Debugging a target over a serial line.\n");
9407}
9408\f
9409/* Stuff for dealing with the packets which are part of this protocol.
9410 See comment at top of file for details. */
9411
1927e618
PA
9412/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9413 error to higher layers. Called when a serial error is detected.
9414 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9415 the system error message for errno at function entry and final dot
9416 for output compatibility with throw_perror_with_name. */
1927e618
PA
9417
9418static void
5b6d1e4f 9419unpush_and_perror (remote_target *target, const char *string)
1927e618 9420{
d6cb50a2 9421 int saved_errno = errno;
1927e618 9422
5b6d1e4f 9423 remote_unpush_target (target);
d6cb50a2
JK
9424 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9425 safe_strerror (saved_errno));
1927e618
PA
9426}
9427
048094ac
PA
9428/* Read a single character from the remote end. The current quit
9429 handler is overridden to avoid quitting in the middle of packet
9430 sequence, as that would break communication with the remote server.
9431 See remote_serial_quit_handler for more detail. */
c906108c 9432
6b8edb51
PA
9433int
9434remote_target::readchar (int timeout)
c906108c
SS
9435{
9436 int ch;
5d93a237 9437 struct remote_state *rs = get_remote_state ();
048094ac 9438
2ec845e7 9439 {
6b8edb51
PA
9440 scoped_restore restore_quit_target
9441 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9442 scoped_restore restore_quit
6b8edb51 9443 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9444
2ec845e7 9445 rs->got_ctrlc_during_io = 0;
c906108c 9446
2ec845e7 9447 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9448
2ec845e7
TT
9449 if (rs->got_ctrlc_during_io)
9450 set_quit_flag ();
9451 }
048094ac 9452
2acceee2 9453 if (ch >= 0)
0876f84a 9454 return ch;
2acceee2
JM
9455
9456 switch ((enum serial_rc) ch)
c906108c
SS
9457 {
9458 case SERIAL_EOF:
5b6d1e4f 9459 remote_unpush_target (this);
598d3636 9460 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9461 /* no return */
c906108c 9462 case SERIAL_ERROR:
5b6d1e4f
PA
9463 unpush_and_perror (this, _("Remote communication error. "
9464 "Target disconnected."));
2acceee2 9465 /* no return */
c906108c 9466 case SERIAL_TIMEOUT:
2acceee2 9467 break;
c906108c 9468 }
2acceee2 9469 return ch;
c906108c
SS
9470}
9471
c33e31fd 9472/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9473 writing fails. The current quit handler is overridden to avoid
9474 quitting in the middle of packet sequence, as that would break
9475 communication with the remote server. See
9476 remote_serial_quit_handler for more detail. */
c33e31fd 9477
6b8edb51
PA
9478void
9479remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9480{
5d93a237 9481 struct remote_state *rs = get_remote_state ();
048094ac 9482
6b8edb51
PA
9483 scoped_restore restore_quit_target
9484 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9485 scoped_restore restore_quit
6b8edb51 9486 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9487
9488 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9489
9490 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9491 {
5b6d1e4f
PA
9492 unpush_and_perror (this, _("Remote communication error. "
9493 "Target disconnected."));
c33e31fd 9494 }
048094ac
PA
9495
9496 if (rs->got_ctrlc_during_io)
9497 set_quit_flag ();
c33e31fd
PA
9498}
9499
b3ced9ba
PA
9500/* Return a string representing an escaped version of BUF, of len N.
9501 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9502
b3ced9ba 9503static std::string
6e5abd65
PA
9504escape_buffer (const char *buf, int n)
9505{
d7e74731 9506 string_file stb;
6e5abd65 9507
d7e74731
PA
9508 stb.putstrn (buf, n, '\\');
9509 return std::move (stb.string ());
6e5abd65
PA
9510}
9511
c906108c
SS
9512/* Display a null-terminated packet on stdout, for debugging, using C
9513 string notation. */
9514
9515static void
baa336ce 9516print_packet (const char *buf)
c906108c
SS
9517{
9518 puts_filtered ("\"");
43e526b9 9519 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9520 puts_filtered ("\"");
9521}
9522
9523int
6b8edb51 9524remote_target::putpkt (const char *buf)
c906108c
SS
9525{
9526 return putpkt_binary (buf, strlen (buf));
9527}
9528
6b8edb51
PA
9529/* Wrapper around remote_target::putpkt to avoid exporting
9530 remote_target. */
9531
9532int
9533putpkt (remote_target *remote, const char *buf)
9534{
9535 return remote->putpkt (buf);
9536}
9537
c906108c 9538/* Send a packet to the remote machine, with error checking. The data
23860348 9539 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9540 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9541 and for a possible /0 if we are debugging (remote_debug) and want
9542 to print the sent packet as a string. */
c906108c 9543
6b8edb51
PA
9544int
9545remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9546{
2d717e4f 9547 struct remote_state *rs = get_remote_state ();
c906108c
SS
9548 int i;
9549 unsigned char csum = 0;
b80406ac
TT
9550 gdb::def_vector<char> data (cnt + 6);
9551 char *buf2 = data.data ();
085dd6e6 9552
c906108c
SS
9553 int ch;
9554 int tcount = 0;
9555 char *p;
9556
e24a49d8
PA
9557 /* Catch cases like trying to read memory or listing threads while
9558 we're waiting for a stop reply. The remote server wouldn't be
9559 ready to handle this request, so we'd hang and timeout. We don't
9560 have to worry about this in synchronous mode, because in that
9561 case it's not possible to issue a command while the target is
74531fed
PA
9562 running. This is not a problem in non-stop mode, because in that
9563 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9564 if (!target_is_non_stop_p ()
9565 && target_is_async_p ()
9566 && rs->waiting_for_stop_reply)
9597b22a
DE
9567 {
9568 error (_("Cannot execute this command while the target is running.\n"
9569 "Use the \"interrupt\" command to stop the target\n"
9570 "and then try again."));
9571 }
e24a49d8 9572
2d717e4f
DJ
9573 /* We're sending out a new packet. Make sure we don't look at a
9574 stale cached response. */
9575 rs->cached_wait_status = 0;
9576
c906108c
SS
9577 /* Copy the packet into buffer BUF2, encapsulating it
9578 and giving it a checksum. */
9579
c906108c
SS
9580 p = buf2;
9581 *p++ = '$';
9582
9583 for (i = 0; i < cnt; i++)
9584 {
9585 csum += buf[i];
9586 *p++ = buf[i];
9587 }
9588 *p++ = '#';
9589 *p++ = tohex ((csum >> 4) & 0xf);
9590 *p++ = tohex (csum & 0xf);
9591
9592 /* Send it over and over until we get a positive ack. */
9593
9594 while (1)
9595 {
c906108c
SS
9596 if (remote_debug)
9597 {
9598 *p = '\0';
b3ced9ba 9599
6f8976bf 9600 int len = (int) (p - buf2);
6cc8564b
LM
9601 int max_chars;
9602
9603 if (remote_packet_max_chars < 0)
9604 max_chars = len;
9605 else
9606 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9607
9608 std::string str
6cc8564b 9609 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf 9610
6cc8564b 9611 if (len > max_chars)
2189c312
SM
9612 remote_debug_printf_nofunc
9613 ("Sending packet: %s [%d bytes omitted]", str.c_str (),
9614 len - max_chars);
9615 else
9616 remote_debug_printf_nofunc ("Sending packet: %s", str.c_str ());
c906108c 9617 }
c33e31fd 9618 remote_serial_write (buf2, p - buf2);
c906108c 9619
a6f3e723
SL
9620 /* If this is a no acks version of the remote protocol, send the
9621 packet and move on. */
9622 if (rs->noack_mode)
dda83cd7 9623 break;
a6f3e723 9624
74531fed
PA
9625 /* Read until either a timeout occurs (-2) or '+' is read.
9626 Handle any notification that arrives in the mean time. */
c906108c
SS
9627 while (1)
9628 {
9629 ch = readchar (remote_timeout);
9630
c906108c
SS
9631 switch (ch)
9632 {
9633 case '+':
2189c312 9634 remote_debug_printf_nofunc ("Received Ack");
c906108c 9635 return 1;
1216fa2c 9636 case '-':
2189c312 9637 remote_debug_printf_nofunc ("Received Nak");
a17d146e 9638 /* FALLTHROUGH */
c906108c 9639 case SERIAL_TIMEOUT:
c5aa993b 9640 tcount++;
c906108c 9641 if (tcount > 3)
b80406ac 9642 return 0;
23860348 9643 break; /* Retransmit buffer. */
c906108c
SS
9644 case '$':
9645 {
2189c312 9646 remote_debug_printf ("Packet instead of Ack, ignoring it");
d6f7abdf
AC
9647 /* It's probably an old response sent because an ACK
9648 was lost. Gobble up the packet and ack it so it
9649 doesn't get retransmitted when we resend this
9650 packet. */
6d820c5c 9651 skip_frame ();
c33e31fd 9652 remote_serial_write ("+", 1);
23860348 9653 continue; /* Now, go look for +. */
c906108c 9654 }
74531fed
PA
9655
9656 case '%':
9657 {
9658 int val;
9659
9660 /* If we got a notification, handle it, and go back to looking
9661 for an ack. */
9662 /* We've found the start of a notification. Now
9663 collect the data. */
8d64371b 9664 val = read_frame (&rs->buf);
74531fed
PA
9665 if (val >= 0)
9666 {
2189c312
SM
9667 remote_debug_printf_nofunc
9668 (" Notification received: %s",
9669 escape_buffer (rs->buf.data (), val).c_str ());
6e5abd65 9670
8d64371b 9671 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9672 /* We're in sync now, rewait for the ack. */
9673 tcount = 0;
9674 }
9675 else
2189c312
SM
9676 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9677 rs->buf.data ());
74531fed
PA
9678 continue;
9679 }
9680 /* fall-through */
c906108c 9681 default:
2189c312
SM
9682 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9683 rs->buf.data ());
c906108c
SS
9684 continue;
9685 }
23860348 9686 break; /* Here to retransmit. */
c906108c
SS
9687 }
9688
9689#if 0
9690 /* This is wrong. If doing a long backtrace, the user should be
dda83cd7
SM
9691 able to get out next time we call QUIT, without anything as
9692 violent as interrupt_query. If we want to provide a way out of
9693 here without getting to the next QUIT, it should be based on
9694 hitting ^C twice as in remote_wait. */
c906108c
SS
9695 if (quit_flag)
9696 {
9697 quit_flag = 0;
9698 interrupt_query ();
9699 }
9700#endif
9701 }
a5c0808e 9702
a6f3e723 9703 return 0;
c906108c
SS
9704}
9705
6d820c5c
DJ
9706/* Come here after finding the start of a frame when we expected an
9707 ack. Do our best to discard the rest of this packet. */
9708
6b8edb51
PA
9709void
9710remote_target::skip_frame ()
6d820c5c
DJ
9711{
9712 int c;
9713
9714 while (1)
9715 {
9716 c = readchar (remote_timeout);
9717 switch (c)
9718 {
9719 case SERIAL_TIMEOUT:
9720 /* Nothing we can do. */
9721 return;
9722 case '#':
9723 /* Discard the two bytes of checksum and stop. */
9724 c = readchar (remote_timeout);
9725 if (c >= 0)
9726 c = readchar (remote_timeout);
9727
9728 return;
9729 case '*': /* Run length encoding. */
9730 /* Discard the repeat count. */
9731 c = readchar (remote_timeout);
9732 if (c < 0)
9733 return;
9734 break;
9735 default:
9736 /* A regular character. */
9737 break;
9738 }
9739 }
9740}
9741
c906108c 9742/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9743 into *BUF, verifying the checksum, length, and handling run-length
9744 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9745 expand *BUF.
c906108c 9746
c2d11a7d
JM
9747 Returns -1 on error, number of characters in buffer (ignoring the
9748 trailing NULL) on success. (could be extended to return one of the
23860348 9749 SERIAL status indications). */
c2d11a7d 9750
6b8edb51 9751long
8d64371b 9752remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9753{
9754 unsigned char csum;
c2d11a7d 9755 long bc;
c906108c 9756 int c;
8d64371b 9757 char *buf = buf_p->data ();
a6f3e723 9758 struct remote_state *rs = get_remote_state ();
c906108c
SS
9759
9760 csum = 0;
c2d11a7d 9761 bc = 0;
c906108c
SS
9762
9763 while (1)
9764 {
9765 c = readchar (remote_timeout);
c906108c
SS
9766 switch (c)
9767 {
9768 case SERIAL_TIMEOUT:
2189c312 9769 remote_debug_printf ("Timeout in mid-packet, retrying");
c2d11a7d 9770 return -1;
2189c312 9771
c906108c 9772 case '$':
2189c312 9773 remote_debug_printf ("Saw new packet start in middle of old one");
23860348 9774 return -1; /* Start a new packet, count retries. */
2189c312 9775
c906108c
SS
9776 case '#':
9777 {
9778 unsigned char pktcsum;
e1b09194
AC
9779 int check_0 = 0;
9780 int check_1 = 0;
c906108c 9781
c2d11a7d 9782 buf[bc] = '\0';
c906108c 9783
e1b09194
AC
9784 check_0 = readchar (remote_timeout);
9785 if (check_0 >= 0)
9786 check_1 = readchar (remote_timeout);
802188a7 9787
e1b09194
AC
9788 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9789 {
2189c312 9790 remote_debug_printf ("Timeout in checksum, retrying");
e1b09194
AC
9791 return -1;
9792 }
9793 else if (check_0 < 0 || check_1 < 0)
40e3f985 9794 {
2189c312 9795 remote_debug_printf ("Communication error in checksum");
40e3f985
FN
9796 return -1;
9797 }
c906108c 9798
a6f3e723
SL
9799 /* Don't recompute the checksum; with no ack packets we
9800 don't have any way to indicate a packet retransmission
9801 is necessary. */
9802 if (rs->noack_mode)
9803 return bc;
9804
e1b09194 9805 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9806 if (csum == pktcsum)
dda83cd7 9807 return bc;
c906108c 9808
2189c312
SM
9809 remote_debug_printf
9810 ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s",
9811 pktcsum, csum, escape_buffer (buf, bc).c_str ());
6e5abd65 9812
c2d11a7d 9813 /* Number of characters in buffer ignoring trailing
dda83cd7 9814 NULL. */
c2d11a7d 9815 return -1;
c906108c 9816 }
23860348 9817 case '*': /* Run length encoding. */
dda83cd7 9818 {
c2c6d25f 9819 int repeat;
c906108c 9820
24b21115 9821 csum += c;
b4501125
AC
9822 c = readchar (remote_timeout);
9823 csum += c;
23860348 9824 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9825
23860348 9826 /* The character before ``*'' is repeated. */
c2d11a7d 9827
6d820c5c 9828 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9829 {
8d64371b 9830 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9831 {
9832 /* Make some more room in the buffer. */
8d64371b
TT
9833 buf_p->resize (buf_p->size () + repeat);
9834 buf = buf_p->data ();
6d820c5c
DJ
9835 }
9836
c2d11a7d
JM
9837 memset (&buf[bc], buf[bc - 1], repeat);
9838 bc += repeat;
c2c6d25f
JM
9839 continue;
9840 }
9841
c2d11a7d 9842 buf[bc] = '\0';
6d820c5c 9843 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9844 return -1;
c2c6d25f 9845 }
c906108c 9846 default:
8d64371b 9847 if (bc >= buf_p->size () - 1)
c906108c 9848 {
6d820c5c 9849 /* Make some more room in the buffer. */
8d64371b
TT
9850 buf_p->resize (buf_p->size () * 2);
9851 buf = buf_p->data ();
c906108c
SS
9852 }
9853
6d820c5c
DJ
9854 buf[bc++] = c;
9855 csum += c;
9856 continue;
c906108c
SS
9857 }
9858 }
9859}
9860
ed2b7c17
TT
9861/* Set this to the maximum number of seconds to wait instead of waiting forever
9862 in target_wait(). If this timer times out, then it generates an error and
9863 the command is aborted. This replaces most of the need for timeouts in the
9864 GDB test suite, and makes it possible to distinguish between a hung target
9865 and one with slow communications. */
9866
9867static int watchdog = 0;
9868static void
9869show_watchdog (struct ui_file *file, int from_tty,
9870 struct cmd_list_element *c, const char *value)
9871{
9872 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9873}
9874
c906108c 9875/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9876 store it in *BUF. Resize *BUF if necessary to hold the result. If
9877 FOREVER, wait forever rather than timing out; this is used (in
9878 synchronous mode) to wait for a target that is is executing user
9879 code to stop. */
d9fcf2fb
JM
9880/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9881 don't have to change all the calls to getpkt to deal with the
9882 return value, because at the moment I don't know what the right
23860348 9883 thing to do it for those. */
6b8edb51 9884
c906108c 9885void
8d64371b 9886remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9887{
8d64371b 9888 getpkt_sane (buf, forever);
d9fcf2fb
JM
9889}
9890
9891
9892/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9893 store it in *BUF. Resize *BUF if necessary to hold the result. If
9894 FOREVER, wait forever rather than timing out; this is used (in
9895 synchronous mode) to wait for a target that is is executing user
9896 code to stop. If FOREVER == 0, this function is allowed to time
9897 out gracefully and return an indication of this to the caller.
9898 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9899 consider receiving a notification enough reason to return to the
9900 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9901 holds a notification or not (a regular packet). */
74531fed 9902
6b8edb51 9903int
8d64371b 9904remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9905 int forever, int expecting_notif,
9906 int *is_notif)
c906108c 9907{
2d717e4f 9908 struct remote_state *rs = get_remote_state ();
c906108c
SS
9909 int c;
9910 int tries;
9911 int timeout;
df4b58fe 9912 int val = -1;
c906108c 9913
2d717e4f
DJ
9914 /* We're reading a new response. Make sure we don't look at a
9915 previously cached response. */
9916 rs->cached_wait_status = 0;
9917
8d64371b 9918 strcpy (buf->data (), "timeout");
c906108c
SS
9919
9920 if (forever)
74531fed
PA
9921 timeout = watchdog > 0 ? watchdog : -1;
9922 else if (expecting_notif)
9923 timeout = 0; /* There should already be a char in the buffer. If
9924 not, bail out. */
c906108c
SS
9925 else
9926 timeout = remote_timeout;
9927
9928#define MAX_TRIES 3
9929
74531fed
PA
9930 /* Process any number of notifications, and then return when
9931 we get a packet. */
9932 for (;;)
c906108c 9933 {
d9c43928 9934 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9935 times. */
9936 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9937 {
74531fed
PA
9938 /* This can loop forever if the remote side sends us
9939 characters continuously, but if it pauses, we'll get
9940 SERIAL_TIMEOUT from readchar because of timeout. Then
9941 we'll count that as a retry.
9942
9943 Note that even when forever is set, we will only wait
9944 forever prior to the start of a packet. After that, we
9945 expect characters to arrive at a brisk pace. They should
9946 show up within remote_timeout intervals. */
9947 do
9948 c = readchar (timeout);
9949 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9950
9951 if (c == SERIAL_TIMEOUT)
9952 {
74531fed
PA
9953 if (expecting_notif)
9954 return -1; /* Don't complain, it's normal to not get
9955 anything in this case. */
9956
23860348 9957 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9958 {
5b6d1e4f 9959 remote_unpush_target (this);
598d3636
JK
9960 throw_error (TARGET_CLOSE_ERROR,
9961 _("Watchdog timeout has expired. "
9962 "Target detached."));
c906108c 9963 }
2189c312
SM
9964
9965 remote_debug_printf ("Timed out.");
c906108c 9966 }
74531fed
PA
9967 else
9968 {
9969 /* We've found the start of a packet or notification.
9970 Now collect the data. */
8d64371b 9971 val = read_frame (buf);
74531fed
PA
9972 if (val >= 0)
9973 break;
9974 }
9975
c33e31fd 9976 remote_serial_write ("-", 1);
c906108c 9977 }
c906108c 9978
74531fed
PA
9979 if (tries > MAX_TRIES)
9980 {
9981 /* We have tried hard enough, and just can't receive the
9982 packet/notification. Give up. */
9983 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9984
74531fed
PA
9985 /* Skip the ack char if we're in no-ack mode. */
9986 if (!rs->noack_mode)
c33e31fd 9987 remote_serial_write ("+", 1);
74531fed
PA
9988 return -1;
9989 }
c906108c 9990
74531fed
PA
9991 /* If we got an ordinary packet, return that to our caller. */
9992 if (c == '$')
c906108c
SS
9993 {
9994 if (remote_debug)
43e526b9 9995 {
6cc8564b
LM
9996 int max_chars;
9997
9998 if (remote_packet_max_chars < 0)
9999 max_chars = val;
10000 else
10001 max_chars = remote_packet_max_chars;
10002
6f8976bf 10003 std::string str
8d64371b 10004 = escape_buffer (buf->data (),
6cc8564b 10005 std::min (val, max_chars));
6f8976bf 10006
6cc8564b 10007 if (val > max_chars)
2189c312
SM
10008 remote_debug_printf_nofunc
10009 ("Packet received: %s [%d bytes omitted]", str.c_str (),
10010 val - max_chars);
10011 else
10012 remote_debug_printf_nofunc ("Packet received: %s",
10013 str.c_str ());
43e526b9 10014 }
a6f3e723
SL
10015
10016 /* Skip the ack char if we're in no-ack mode. */
10017 if (!rs->noack_mode)
c33e31fd 10018 remote_serial_write ("+", 1);
fee9eda9
YQ
10019 if (is_notif != NULL)
10020 *is_notif = 0;
0876f84a 10021 return val;
c906108c
SS
10022 }
10023
74531fed
PA
10024 /* If we got a notification, handle it, and go back to looking
10025 for a packet. */
10026 else
10027 {
10028 gdb_assert (c == '%');
10029
2189c312
SM
10030 remote_debug_printf_nofunc
10031 (" Notification received: %s",
10032 escape_buffer (buf->data (), val).c_str ());
6e5abd65 10033
fee9eda9
YQ
10034 if (is_notif != NULL)
10035 *is_notif = 1;
c906108c 10036
8d64371b 10037 handle_notification (rs->notif_state, buf->data ());
c906108c 10038
74531fed 10039 /* Notifications require no acknowledgement. */
a6f3e723 10040
74531fed 10041 if (expecting_notif)
fee9eda9 10042 return val;
74531fed
PA
10043 }
10044 }
10045}
10046
6b8edb51 10047int
8d64371b 10048remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 10049{
8d64371b 10050 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
10051}
10052
6b8edb51 10053int
8d64371b 10054remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 10055 int *is_notif)
74531fed 10056{
8d64371b 10057 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 10058}
74531fed 10059
cbb8991c
DB
10060/* Kill any new fork children of process PID that haven't been
10061 processed by follow_fork. */
10062
6b8edb51
PA
10063void
10064remote_target::kill_new_fork_children (int pid)
cbb8991c 10065{
6b8edb51 10066 remote_state *rs = get_remote_state ();
cbb8991c 10067 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
10068
10069 /* Kill the fork child threads of any threads in process PID
10070 that are stopped at a fork event. */
5b6d1e4f 10071 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c
DB
10072 {
10073 struct target_waitstatus *ws = &thread->pending_follow;
10074
10075 if (is_pending_fork_parent (ws, pid, thread->ptid))
10076 {
953edf2b 10077 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
10078 int res;
10079
6b8edb51 10080 res = remote_vkill (child_pid);
cbb8991c
DB
10081 if (res != 0)
10082 error (_("Can't kill fork child process %d"), child_pid);
10083 }
10084 }
10085
10086 /* Check for any pending fork events (not reported or processed yet)
10087 in process PID and kill those fork child threads as well. */
10088 remote_notif_get_pending_events (notif);
953edf2b
TT
10089 for (auto &event : rs->stop_reply_queue)
10090 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
10091 {
10092 int child_pid = event->ws.value.related_pid.pid ();
10093 int res;
10094
10095 res = remote_vkill (child_pid);
10096 if (res != 0)
10097 error (_("Can't kill fork child process %d"), child_pid);
10098 }
cbb8991c
DB
10099}
10100
c906108c 10101\f
8020350c
DB
10102/* Target hook to kill the current inferior. */
10103
f6ac5f3d
PA
10104void
10105remote_target::kill ()
43ff13b4 10106{
8020350c 10107 int res = -1;
e99b03dc 10108 int pid = inferior_ptid.pid ();
8020350c 10109 struct remote_state *rs = get_remote_state ();
0fdf84ca 10110
8020350c 10111 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 10112 {
8020350c
DB
10113 /* If we're stopped while forking and we haven't followed yet,
10114 kill the child task. We need to do this before killing the
10115 parent task because if this is a vfork then the parent will
10116 be sleeping. */
6b8edb51 10117 kill_new_fork_children (pid);
8020350c 10118
6b8edb51 10119 res = remote_vkill (pid);
8020350c 10120 if (res == 0)
0fdf84ca 10121 {
bc1e6c81 10122 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
10123 return;
10124 }
8020350c 10125 }
0fdf84ca 10126
8020350c
DB
10127 /* If we are in 'target remote' mode and we are killing the only
10128 inferior, then we will tell gdbserver to exit and unpush the
10129 target. */
10130 if (res == -1 && !remote_multi_process_p (rs)
5b6d1e4f 10131 && number_of_live_inferiors (this) == 1)
8020350c
DB
10132 {
10133 remote_kill_k ();
10134
10135 /* We've killed the remote end, we get to mourn it. If we are
10136 not in extended mode, mourning the inferior also unpushes
10137 remote_ops from the target stack, which closes the remote
10138 connection. */
bc1e6c81 10139 target_mourn_inferior (inferior_ptid);
8020350c
DB
10140
10141 return;
0fdf84ca 10142 }
43ff13b4 10143
8020350c 10144 error (_("Can't kill process"));
43ff13b4
JM
10145}
10146
8020350c
DB
10147/* Send a kill request to the target using the 'vKill' packet. */
10148
6b8edb51
PA
10149int
10150remote_target::remote_vkill (int pid)
82f73884 10151{
4082afcc 10152 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
10153 return -1;
10154
6b8edb51
PA
10155 remote_state *rs = get_remote_state ();
10156
82f73884 10157 /* Tell the remote target to detach. */
8d64371b 10158 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 10159 putpkt (rs->buf);
8d64371b 10160 getpkt (&rs->buf, 0);
82f73884 10161
4082afcc
PA
10162 switch (packet_ok (rs->buf,
10163 &remote_protocol_packets[PACKET_vKill]))
10164 {
10165 case PACKET_OK:
10166 return 0;
10167 case PACKET_ERROR:
10168 return 1;
10169 case PACKET_UNKNOWN:
10170 return -1;
10171 default:
10172 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
10173 }
82f73884
PA
10174}
10175
8020350c
DB
10176/* Send a kill request to the target using the 'k' packet. */
10177
6b8edb51
PA
10178void
10179remote_target::remote_kill_k ()
82f73884 10180{
8020350c
DB
10181 /* Catch errors so the user can quit from gdb even when we
10182 aren't on speaking terms with the remote system. */
a70b8144 10183 try
82f73884 10184 {
82f73884 10185 putpkt ("k");
82f73884 10186 }
230d2906 10187 catch (const gdb_exception_error &ex)
8020350c
DB
10188 {
10189 if (ex.error == TARGET_CLOSE_ERROR)
10190 {
10191 /* If we got an (EOF) error that caused the target
10192 to go away, then we're done, that's what we wanted.
10193 "k" is susceptible to cause a premature EOF, given
10194 that the remote server isn't actually required to
10195 reply to "k", and it can happen that it doesn't
10196 even get to reply ACK to the "k". */
10197 return;
10198 }
82f73884 10199
8020350c
DB
10200 /* Otherwise, something went wrong. We didn't actually kill
10201 the target. Just propagate the exception, and let the
10202 user or higher layers decide what to do. */
eedc3f4f 10203 throw;
8020350c 10204 }
82f73884
PA
10205}
10206
f6ac5f3d
PA
10207void
10208remote_target::mourn_inferior ()
c906108c 10209{
8020350c 10210 struct remote_state *rs = get_remote_state ();
ce5ce7ed 10211
9607784a
PA
10212 /* We're no longer interested in notification events of an inferior
10213 that exited or was killed/detached. */
10214 discard_pending_stop_replies (current_inferior ());
10215
8020350c 10216 /* In 'target remote' mode with one inferior, we close the connection. */
5b6d1e4f 10217 if (!rs->extended && number_of_live_inferiors (this) <= 1)
8020350c 10218 {
5b6d1e4f 10219 remote_unpush_target (this);
8020350c
DB
10220 return;
10221 }
c906108c 10222
e24a49d8
PA
10223 /* In case we got here due to an error, but we're going to stay
10224 connected. */
10225 rs->waiting_for_stop_reply = 0;
10226
dc1981d7
PA
10227 /* If the current general thread belonged to the process we just
10228 detached from or has exited, the remote side current general
10229 thread becomes undefined. Considering a case like this:
10230
10231 - We just got here due to a detach.
10232 - The process that we're detaching from happens to immediately
10233 report a global breakpoint being hit in non-stop mode, in the
10234 same thread we had selected before.
10235 - GDB attaches to this process again.
10236 - This event happens to be the next event we handle.
10237
10238 GDB would consider that the current general thread didn't need to
10239 be set on the stub side (with Hg), since for all it knew,
10240 GENERAL_THREAD hadn't changed.
10241
10242 Notice that although in all-stop mode, the remote server always
10243 sets the current thread to the thread reporting the stop event,
10244 that doesn't happen in non-stop mode; in non-stop, the stub *must
10245 not* change the current thread when reporting a breakpoint hit,
10246 due to the decoupling of event reporting and event handling.
10247
10248 To keep things simple, we always invalidate our notion of the
10249 current thread. */
47f8a51d 10250 record_currthread (rs, minus_one_ptid);
dc1981d7 10251
8020350c 10252 /* Call common code to mark the inferior as not running. */
48aa3c27 10253 generic_mourn_inferior ();
2d717e4f 10254}
c906108c 10255
57810aa7 10256bool
f6ac5f3d 10257extended_remote_target::supports_disable_randomization ()
03583c20 10258{
4082afcc 10259 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
10260}
10261
6b8edb51
PA
10262void
10263remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
10264{
10265 struct remote_state *rs = get_remote_state ();
10266 char *reply;
10267
8d64371b
TT
10268 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10269 "QDisableRandomization:%x", val);
03583c20 10270 putpkt (rs->buf);
b6bb3468 10271 reply = remote_get_noisy_reply ();
03583c20
UW
10272 if (*reply == '\0')
10273 error (_("Target does not support QDisableRandomization."));
10274 if (strcmp (reply, "OK") != 0)
10275 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10276}
10277
6b8edb51
PA
10278int
10279remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
10280{
10281 struct remote_state *rs = get_remote_state ();
2d717e4f 10282 int len;
94585166 10283 const char *remote_exec_file = get_remote_exec_file ();
c906108c 10284
2d717e4f
DJ
10285 /* If the user has disabled vRun support, or we have detected that
10286 support is not available, do not try it. */
4082afcc 10287 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 10288 return -1;
424163ea 10289
8d64371b
TT
10290 strcpy (rs->buf.data (), "vRun;");
10291 len = strlen (rs->buf.data ());
c906108c 10292
2d717e4f
DJ
10293 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10294 error (_("Remote file name too long for run packet"));
8d64371b 10295 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 10296 strlen (remote_exec_file));
2d717e4f 10297
7c5ded6a 10298 if (!args.empty ())
2d717e4f 10299 {
2d717e4f 10300 int i;
2d717e4f 10301
773a1edc 10302 gdb_argv argv (args.c_str ());
2d717e4f
DJ
10303 for (i = 0; argv[i] != NULL; i++)
10304 {
10305 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10306 error (_("Argument list too long for run packet"));
10307 rs->buf[len++] = ';';
8d64371b 10308 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 10309 strlen (argv[i]));
2d717e4f 10310 }
2d717e4f
DJ
10311 }
10312
10313 rs->buf[len++] = '\0';
10314
10315 putpkt (rs->buf);
8d64371b 10316 getpkt (&rs->buf, 0);
2d717e4f 10317
4082afcc 10318 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 10319 {
4082afcc 10320 case PACKET_OK:
3405876a 10321 /* We have a wait response. All is well. */
2d717e4f 10322 return 0;
4082afcc
PA
10323 case PACKET_UNKNOWN:
10324 return -1;
10325 case PACKET_ERROR:
2d717e4f
DJ
10326 if (remote_exec_file[0] == '\0')
10327 error (_("Running the default executable on the remote target failed; "
10328 "try \"set remote exec-file\"?"));
10329 else
10330 error (_("Running \"%s\" on the remote target failed"),
10331 remote_exec_file);
4082afcc
PA
10332 default:
10333 gdb_assert_not_reached (_("bad switch"));
2d717e4f 10334 }
c906108c
SS
10335}
10336
0a2dde4a
SDJ
10337/* Helper function to send set/unset environment packets. ACTION is
10338 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10339 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10340 sent. */
10341
6b8edb51
PA
10342void
10343remote_target::send_environment_packet (const char *action,
10344 const char *packet,
10345 const char *value)
0a2dde4a 10346{
6b8edb51
PA
10347 remote_state *rs = get_remote_state ();
10348
0a2dde4a
SDJ
10349 /* Convert the environment variable to an hex string, which
10350 is the best format to be transmitted over the wire. */
10351 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10352 strlen (value));
10353
8d64371b 10354 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10355 "%s:%s", packet, encoded_value.c_str ());
10356
10357 putpkt (rs->buf);
8d64371b
TT
10358 getpkt (&rs->buf, 0);
10359 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10360 warning (_("Unable to %s environment variable '%s' on remote."),
10361 action, value);
10362}
10363
10364/* Helper function to handle the QEnvironment* packets. */
10365
6b8edb51
PA
10366void
10367remote_target::extended_remote_environment_support ()
0a2dde4a 10368{
6b8edb51
PA
10369 remote_state *rs = get_remote_state ();
10370
0a2dde4a
SDJ
10371 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10372 {
10373 putpkt ("QEnvironmentReset");
8d64371b
TT
10374 getpkt (&rs->buf, 0);
10375 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10376 warning (_("Unable to reset environment on remote."));
10377 }
10378
10379 gdb_environ *e = &current_inferior ()->environment;
10380
10381 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10382 for (const std::string &el : e->user_set_env ())
6b8edb51 10383 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10384 el.c_str ());
10385
10386 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10387 for (const std::string &el : e->user_unset_env ())
6b8edb51 10388 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10389}
10390
bc3b087d
SDJ
10391/* Helper function to set the current working directory for the
10392 inferior in the remote target. */
10393
6b8edb51
PA
10394void
10395remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10396{
10397 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10398 {
11bd012e 10399 const std::string &inferior_cwd = current_inferior ()->cwd ();
6b8edb51 10400 remote_state *rs = get_remote_state ();
bc3b087d 10401
11bd012e 10402 if (!inferior_cwd.empty ())
bc3b087d 10403 {
11bd012e
SM
10404 std::string hexpath
10405 = bin2hex ((const gdb_byte *) inferior_cwd.data (),
10406 inferior_cwd.size ());
bc3b087d 10407
8d64371b 10408 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10409 "QSetWorkingDir:%s", hexpath.c_str ());
10410 }
10411 else
10412 {
10413 /* An empty inferior_cwd means that the user wants us to
10414 reset the remote server's inferior's cwd. */
8d64371b 10415 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10416 "QSetWorkingDir:");
10417 }
10418
10419 putpkt (rs->buf);
8d64371b 10420 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10421 if (packet_ok (rs->buf,
10422 &remote_protocol_packets[PACKET_QSetWorkingDir])
10423 != PACKET_OK)
10424 error (_("\
10425Remote replied unexpectedly while setting the inferior's working\n\
10426directory: %s"),
8d64371b 10427 rs->buf.data ());
bc3b087d
SDJ
10428
10429 }
10430}
10431
2d717e4f
DJ
10432/* In the extended protocol we want to be able to do things like
10433 "run" and have them basically work as expected. So we need
10434 a special create_inferior function. We support changing the
10435 executable file and the command line arguments, but not the
10436 environment. */
10437
f6ac5f3d
PA
10438void
10439extended_remote_target::create_inferior (const char *exec_file,
10440 const std::string &args,
10441 char **env, int from_tty)
43ff13b4 10442{
3405876a
PA
10443 int run_worked;
10444 char *stop_reply;
10445 struct remote_state *rs = get_remote_state ();
94585166 10446 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10447
43ff13b4 10448 /* If running asynchronously, register the target file descriptor
23860348 10449 with the event loop. */
75c99385 10450 if (target_can_async_p ())
6a3753b3 10451 target_async (1);
43ff13b4 10452
03583c20 10453 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10454 if (supports_disable_randomization ())
03583c20
UW
10455 extended_remote_disable_randomization (disable_randomization);
10456
aefd8b33
SDJ
10457 /* If startup-with-shell is on, we inform gdbserver to start the
10458 remote inferior using a shell. */
10459 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10460 {
8d64371b 10461 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10462 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10463 putpkt (rs->buf);
8d64371b
TT
10464 getpkt (&rs->buf, 0);
10465 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10466 error (_("\
10467Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10468 rs->buf.data ());
aefd8b33
SDJ
10469 }
10470
6b8edb51 10471 extended_remote_environment_support ();
0a2dde4a 10472
6b8edb51 10473 extended_remote_set_inferior_cwd ();
bc3b087d 10474
43ff13b4 10475 /* Now restart the remote server. */
3405876a
PA
10476 run_worked = extended_remote_run (args) != -1;
10477 if (!run_worked)
2d717e4f
DJ
10478 {
10479 /* vRun was not supported. Fail if we need it to do what the
10480 user requested. */
10481 if (remote_exec_file[0])
10482 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10483 if (!args.empty ())
65e65158 10484 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10485
2d717e4f
DJ
10486 /* Fall back to "R". */
10487 extended_remote_restart ();
10488 }
424163ea 10489
3405876a 10490 /* vRun's success return is a stop reply. */
8d64371b 10491 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10492 add_current_inferior_and_thread (stop_reply);
c0a2216e 10493
2d717e4f
DJ
10494 /* Get updated offsets, if the stub uses qOffsets. */
10495 get_offsets ();
2d717e4f 10496}
c906108c 10497\f
c5aa993b 10498
b775012e
LM
10499/* Given a location's target info BP_TGT and the packet buffer BUF, output
10500 the list of conditions (in agent expression bytecode format), if any, the
10501 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10502 started from BUF and ended at BUF_END. */
b775012e
LM
10503
10504static int
10505remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10506 struct bp_target_info *bp_tgt, char *buf,
10507 char *buf_end)
b775012e 10508{
3cde5c42 10509 if (bp_tgt->conditions.empty ())
b775012e
LM
10510 return 0;
10511
10512 buf += strlen (buf);
bba74b36 10513 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10514 buf++;
10515
83621223 10516 /* Send conditions to the target. */
d538e36d 10517 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10518 {
bba74b36 10519 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10520 buf += strlen (buf);
3cde5c42 10521 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10522 buf = pack_hex_byte (buf, aexpr->buf[i]);
10523 *buf = '\0';
10524 }
b775012e
LM
10525 return 0;
10526}
10527
d3ce09f5
SS
10528static void
10529remote_add_target_side_commands (struct gdbarch *gdbarch,
10530 struct bp_target_info *bp_tgt, char *buf)
10531{
3cde5c42 10532 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10533 return;
10534
10535 buf += strlen (buf);
10536
10537 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10538 buf += strlen (buf);
10539
10540 /* Concatenate all the agent expressions that are commands into the
10541 cmds parameter. */
df97be55 10542 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10543 {
10544 sprintf (buf, "X%x,", aexpr->len);
10545 buf += strlen (buf);
3cde5c42 10546 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10547 buf = pack_hex_byte (buf, aexpr->buf[i]);
10548 *buf = '\0';
10549 }
d3ce09f5
SS
10550}
10551
8181d85f
DJ
10552/* Insert a breakpoint. On targets that have software breakpoint
10553 support, we ask the remote target to do the work; on targets
10554 which don't, we insert a traditional memory breakpoint. */
c906108c 10555
f6ac5f3d
PA
10556int
10557remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10558 struct bp_target_info *bp_tgt)
c906108c 10559{
d471ea57
AC
10560 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10561 If it succeeds, then set the support to PACKET_ENABLE. If it
10562 fails, and the user has explicitly requested the Z support then
23860348 10563 report an error, otherwise, mark it disabled and go on. */
802188a7 10564
4082afcc 10565 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10566 {
0d5ed153 10567 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10568 struct remote_state *rs;
bba74b36 10569 char *p, *endbuf;
4fff2411 10570
28439a30
PA
10571 /* Make sure the remote is pointing at the right process, if
10572 necessary. */
10573 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10574 set_general_process ();
10575
4fff2411 10576 rs = get_remote_state ();
8d64371b
TT
10577 p = rs->buf.data ();
10578 endbuf = p + get_remote_packet_size ();
802188a7 10579
96baa820
JM
10580 *(p++) = 'Z';
10581 *(p++) = '0';
10582 *(p++) = ',';
7c0f6dcc 10583 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10584 p += hexnumstr (p, addr);
579c6ad9 10585 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10586
f6ac5f3d 10587 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10588 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10589
f6ac5f3d 10590 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10591 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10592
6d820c5c 10593 putpkt (rs->buf);
8d64371b 10594 getpkt (&rs->buf, 0);
96baa820 10595
6d820c5c 10596 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10597 {
d471ea57
AC
10598 case PACKET_ERROR:
10599 return -1;
10600 case PACKET_OK:
10601 return 0;
10602 case PACKET_UNKNOWN:
10603 break;
96baa820
JM
10604 }
10605 }
c906108c 10606
0000e5cc
PA
10607 /* If this breakpoint has target-side commands but this stub doesn't
10608 support Z0 packets, throw error. */
3cde5c42 10609 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10610 throw_error (NOT_SUPPORTED_ERROR, _("\
10611Target doesn't support breakpoints that have target side commands."));
10612
f6ac5f3d 10613 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10614}
10615
f6ac5f3d
PA
10616int
10617remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10618 struct bp_target_info *bp_tgt,
10619 enum remove_bp_reason reason)
c906108c 10620{
8181d85f 10621 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10622 struct remote_state *rs = get_remote_state ();
96baa820 10623
4082afcc 10624 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10625 {
8d64371b
TT
10626 char *p = rs->buf.data ();
10627 char *endbuf = p + get_remote_packet_size ();
802188a7 10628
28439a30
PA
10629 /* Make sure the remote is pointing at the right process, if
10630 necessary. */
10631 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10632 set_general_process ();
10633
96baa820
JM
10634 *(p++) = 'z';
10635 *(p++) = '0';
10636 *(p++) = ',';
10637
8181d85f
DJ
10638 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10639 p += hexnumstr (p, addr);
579c6ad9 10640 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10641
6d820c5c 10642 putpkt (rs->buf);
8d64371b 10643 getpkt (&rs->buf, 0);
96baa820 10644
6d820c5c 10645 return (rs->buf[0] == 'E');
96baa820
JM
10646 }
10647
f6ac5f3d 10648 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10649}
10650
f486487f 10651static enum Z_packet_type
d471ea57
AC
10652watchpoint_to_Z_packet (int type)
10653{
10654 switch (type)
10655 {
10656 case hw_write:
bb858e6a 10657 return Z_PACKET_WRITE_WP;
d471ea57
AC
10658 break;
10659 case hw_read:
bb858e6a 10660 return Z_PACKET_READ_WP;
d471ea57
AC
10661 break;
10662 case hw_access:
bb858e6a 10663 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10664 break;
10665 default:
8e65ff28 10666 internal_error (__FILE__, __LINE__,
e2e0b3e5 10667 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10668 }
10669}
10670
f6ac5f3d
PA
10671int
10672remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10673 enum target_hw_bp_type type, struct expression *cond)
96baa820 10674{
d01949b6 10675 struct remote_state *rs = get_remote_state ();
8d64371b 10676 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10677 char *p;
d471ea57 10678 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10679
4082afcc 10680 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10681 return 1;
802188a7 10682
28439a30
PA
10683 /* Make sure the remote is pointing at the right process, if
10684 necessary. */
10685 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10686 set_general_process ();
10687
8d64371b
TT
10688 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10689 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10690 addr = remote_address_masked (addr);
10691 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10692 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10693
6d820c5c 10694 putpkt (rs->buf);
8d64371b 10695 getpkt (&rs->buf, 0);
96baa820 10696
6d820c5c 10697 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10698 {
10699 case PACKET_ERROR:
d471ea57 10700 return -1;
85d721b8
PA
10701 case PACKET_UNKNOWN:
10702 return 1;
d471ea57
AC
10703 case PACKET_OK:
10704 return 0;
10705 }
8e65ff28 10706 internal_error (__FILE__, __LINE__,
e2e0b3e5 10707 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10708}
10709
57810aa7 10710bool
f6ac5f3d
PA
10711remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10712 CORE_ADDR start, int length)
283002cf
MR
10713{
10714 CORE_ADDR diff = remote_address_masked (addr - start);
10715
10716 return diff < length;
10717}
10718
d471ea57 10719
f6ac5f3d
PA
10720int
10721remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10722 enum target_hw_bp_type type, struct expression *cond)
96baa820 10723{
d01949b6 10724 struct remote_state *rs = get_remote_state ();
8d64371b 10725 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10726 char *p;
d471ea57
AC
10727 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10728
4082afcc 10729 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10730 return -1;
802188a7 10731
28439a30
PA
10732 /* Make sure the remote is pointing at the right process, if
10733 necessary. */
10734 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10735 set_general_process ();
10736
8d64371b
TT
10737 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10738 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10739 addr = remote_address_masked (addr);
10740 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10741 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10742 putpkt (rs->buf);
8d64371b 10743 getpkt (&rs->buf, 0);
96baa820 10744
6d820c5c 10745 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10746 {
10747 case PACKET_ERROR:
10748 case PACKET_UNKNOWN:
10749 return -1;
10750 case PACKET_OK:
10751 return 0;
10752 }
8e65ff28 10753 internal_error (__FILE__, __LINE__,
e2e0b3e5 10754 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10755}
10756
3c3bea1c 10757
60fcc1c3
TT
10758static int remote_hw_watchpoint_limit = -1;
10759static int remote_hw_watchpoint_length_limit = -1;
10760static int remote_hw_breakpoint_limit = -1;
d471ea57 10761
f6ac5f3d
PA
10762int
10763remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10764{
10765 if (remote_hw_watchpoint_length_limit == 0)
10766 return 0;
10767 else if (remote_hw_watchpoint_length_limit < 0)
10768 return 1;
10769 else if (len <= remote_hw_watchpoint_length_limit)
10770 return 1;
10771 else
10772 return 0;
10773}
10774
f6ac5f3d
PA
10775int
10776remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10777{
3c3bea1c
GS
10778 if (type == bp_hardware_breakpoint)
10779 {
10780 if (remote_hw_breakpoint_limit == 0)
10781 return 0;
501eef12
AC
10782 else if (remote_hw_breakpoint_limit < 0)
10783 return 1;
3c3bea1c
GS
10784 else if (cnt <= remote_hw_breakpoint_limit)
10785 return 1;
10786 }
10787 else
10788 {
10789 if (remote_hw_watchpoint_limit == 0)
10790 return 0;
501eef12
AC
10791 else if (remote_hw_watchpoint_limit < 0)
10792 return 1;
3c3bea1c
GS
10793 else if (ot)
10794 return -1;
10795 else if (cnt <= remote_hw_watchpoint_limit)
10796 return 1;
10797 }
10798 return -1;
10799}
10800
f7e6eed5
PA
10801/* The to_stopped_by_sw_breakpoint method of target remote. */
10802
57810aa7 10803bool
f6ac5f3d 10804remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10805{
799a2abe 10806 struct thread_info *thread = inferior_thread ();
f7e6eed5 10807
799a2abe 10808 return (thread->priv != NULL
7aabaf9d
SM
10809 && (get_remote_thread_info (thread)->stop_reason
10810 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10811}
10812
10813/* The to_supports_stopped_by_sw_breakpoint method of target
10814 remote. */
10815
57810aa7 10816bool
f6ac5f3d 10817remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10818{
f7e6eed5
PA
10819 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10820}
10821
10822/* The to_stopped_by_hw_breakpoint method of target remote. */
10823
57810aa7 10824bool
f6ac5f3d 10825remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10826{
799a2abe 10827 struct thread_info *thread = inferior_thread ();
f7e6eed5 10828
799a2abe 10829 return (thread->priv != NULL
7aabaf9d
SM
10830 && (get_remote_thread_info (thread)->stop_reason
10831 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10832}
10833
10834/* The to_supports_stopped_by_hw_breakpoint method of target
10835 remote. */
10836
57810aa7 10837bool
f6ac5f3d 10838remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10839{
f7e6eed5
PA
10840 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10841}
10842
57810aa7 10843bool
f6ac5f3d 10844remote_target::stopped_by_watchpoint ()
3c3bea1c 10845{
799a2abe 10846 struct thread_info *thread = inferior_thread ();
ee154bee 10847
799a2abe 10848 return (thread->priv != NULL
7aabaf9d
SM
10849 && (get_remote_thread_info (thread)->stop_reason
10850 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10851}
10852
57810aa7 10853bool
f6ac5f3d 10854remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10855{
799a2abe 10856 struct thread_info *thread = inferior_thread ();
a744cf53 10857
799a2abe 10858 if (thread->priv != NULL
7aabaf9d
SM
10859 && (get_remote_thread_info (thread)->stop_reason
10860 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10861 {
7aabaf9d 10862 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10863 return true;
4aa7a7f5
JJ
10864 }
10865
57810aa7 10866 return false;
3c3bea1c
GS
10867}
10868
10869
f6ac5f3d
PA
10870int
10871remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10872 struct bp_target_info *bp_tgt)
3c3bea1c 10873{
0d5ed153 10874 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10875 struct remote_state *rs;
bba74b36 10876 char *p, *endbuf;
dd61ec5c 10877 char *message;
3c3bea1c 10878
4082afcc 10879 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10880 return -1;
2bc416ba 10881
28439a30
PA
10882 /* Make sure the remote is pointing at the right process, if
10883 necessary. */
10884 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10885 set_general_process ();
10886
4fff2411 10887 rs = get_remote_state ();
8d64371b
TT
10888 p = rs->buf.data ();
10889 endbuf = p + get_remote_packet_size ();
4fff2411 10890
96baa820
JM
10891 *(p++) = 'Z';
10892 *(p++) = '1';
10893 *(p++) = ',';
802188a7 10894
0d5ed153 10895 addr = remote_address_masked (addr);
96baa820 10896 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10897 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10898
f6ac5f3d 10899 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10900 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10901
f6ac5f3d 10902 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10903 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10904
6d820c5c 10905 putpkt (rs->buf);
8d64371b 10906 getpkt (&rs->buf, 0);
96baa820 10907
6d820c5c 10908 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10909 {
10910 case PACKET_ERROR:
dd61ec5c 10911 if (rs->buf[1] == '.')
dda83cd7
SM
10912 {
10913 message = strchr (&rs->buf[2], '.');
10914 if (message)
10915 error (_("Remote failure reply: %s"), message + 1);
10916 }
dd61ec5c 10917 return -1;
d471ea57
AC
10918 case PACKET_UNKNOWN:
10919 return -1;
10920 case PACKET_OK:
10921 return 0;
10922 }
8e65ff28 10923 internal_error (__FILE__, __LINE__,
e2e0b3e5 10924 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10925}
10926
d471ea57 10927
f6ac5f3d
PA
10928int
10929remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10930 struct bp_target_info *bp_tgt)
96baa820 10931{
8181d85f 10932 CORE_ADDR addr;
d01949b6 10933 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10934 char *p = rs->buf.data ();
10935 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10936
4082afcc 10937 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10938 return -1;
802188a7 10939
28439a30
PA
10940 /* Make sure the remote is pointing at the right process, if
10941 necessary. */
10942 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10943 set_general_process ();
10944
96baa820
JM
10945 *(p++) = 'z';
10946 *(p++) = '1';
10947 *(p++) = ',';
802188a7 10948
8181d85f 10949 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10950 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10951 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10952
6d820c5c 10953 putpkt (rs->buf);
8d64371b 10954 getpkt (&rs->buf, 0);
802188a7 10955
6d820c5c 10956 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10957 {
10958 case PACKET_ERROR:
10959 case PACKET_UNKNOWN:
10960 return -1;
10961 case PACKET_OK:
10962 return 0;
10963 }
8e65ff28 10964 internal_error (__FILE__, __LINE__,
e2e0b3e5 10965 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10966}
96baa820 10967
4a5e7a5b
PA
10968/* Verify memory using the "qCRC:" request. */
10969
f6ac5f3d
PA
10970int
10971remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10972{
10973 struct remote_state *rs = get_remote_state ();
10974 unsigned long host_crc, target_crc;
10975 char *tmp;
10976
936d2992
PA
10977 /* It doesn't make sense to use qCRC if the remote target is
10978 connected but not running. */
55f6301a
TT
10979 if (target_has_execution ()
10980 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
936d2992
PA
10981 {
10982 enum packet_result result;
28439a30 10983
936d2992
PA
10984 /* Make sure the remote is pointing at the right process. */
10985 set_general_process ();
4a5e7a5b 10986
936d2992 10987 /* FIXME: assumes lma can fit into long. */
8d64371b 10988 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10989 (long) lma, (long) size);
10990 putpkt (rs->buf);
4a5e7a5b 10991
936d2992
PA
10992 /* Be clever; compute the host_crc before waiting for target
10993 reply. */
10994 host_crc = xcrc32 (data, size, 0xffffffff);
10995
8d64371b 10996 getpkt (&rs->buf, 0);
4a5e7a5b 10997
936d2992
PA
10998 result = packet_ok (rs->buf,
10999 &remote_protocol_packets[PACKET_qCRC]);
11000 if (result == PACKET_ERROR)
11001 return -1;
11002 else if (result == PACKET_OK)
11003 {
11004 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
11005 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 11006
936d2992
PA
11007 return (host_crc == target_crc);
11008 }
11009 }
4a5e7a5b 11010
f6ac5f3d 11011 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
11012}
11013
c906108c
SS
11014/* compare-sections command
11015
11016 With no arguments, compares each loadable section in the exec bfd
11017 with the same memory range on the target, and reports mismatches.
4a5e7a5b 11018 Useful for verifying the image on the target against the exec file. */
e514a9d6 11019
c906108c 11020static void
ac88e2de 11021compare_sections_command (const char *args, int from_tty)
c906108c
SS
11022{
11023 asection *s;
ce359b09 11024 const char *sectname;
c906108c
SS
11025 bfd_size_type size;
11026 bfd_vma lma;
11027 int matched = 0;
11028 int mismatched = 0;
4a5e7a5b 11029 int res;
95cf3b38 11030 int read_only = 0;
c906108c 11031
7e10abd1 11032 if (!current_program_space->exec_bfd ())
8a3fe4f8 11033 error (_("command cannot be used without an exec file"));
c906108c 11034
95cf3b38
DT
11035 if (args != NULL && strcmp (args, "-r") == 0)
11036 {
11037 read_only = 1;
11038 args = NULL;
11039 }
11040
7e10abd1 11041 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
c906108c
SS
11042 {
11043 if (!(s->flags & SEC_LOAD))
0df8b418 11044 continue; /* Skip non-loadable section. */
c906108c 11045
95cf3b38
DT
11046 if (read_only && (s->flags & SEC_READONLY) == 0)
11047 continue; /* Skip writeable sections */
11048
fd361982 11049 size = bfd_section_size (s);
c906108c 11050 if (size == 0)
0df8b418 11051 continue; /* Skip zero-length section. */
c906108c 11052
fd361982 11053 sectname = bfd_section_name (s);
c906108c 11054 if (args && strcmp (args, sectname) != 0)
0df8b418 11055 continue; /* Not the section selected by user. */
c906108c 11056
0df8b418 11057 matched = 1; /* Do this section. */
c906108c 11058 lma = s->lma;
c906108c 11059
b80406ac 11060 gdb::byte_vector sectdata (size);
7e10abd1
TT
11061 bfd_get_section_contents (current_program_space->exec_bfd (), s,
11062 sectdata.data (), 0, size);
c906108c 11063
b80406ac 11064 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
11065
11066 if (res == -1)
5af949e3 11067 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
11068 paddress (target_gdbarch (), lma),
11069 paddress (target_gdbarch (), lma + size));
c906108c 11070
5af949e3 11071 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
11072 paddress (target_gdbarch (), lma),
11073 paddress (target_gdbarch (), lma + size));
4a5e7a5b 11074 if (res)
c906108c
SS
11075 printf_filtered ("matched.\n");
11076 else
c5aa993b
JM
11077 {
11078 printf_filtered ("MIS-MATCHED!\n");
11079 mismatched++;
11080 }
c906108c
SS
11081 }
11082 if (mismatched > 0)
936d2992 11083 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 11084the loaded file\n"));
c906108c 11085 if (args && !matched)
a3f17187 11086 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
11087}
11088
0e7f50da
UW
11089/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
11090 into remote target. The number of bytes written to the remote
11091 target is returned, or -1 for error. */
11092
6b8edb51
PA
11093target_xfer_status
11094remote_target::remote_write_qxfer (const char *object_name,
11095 const char *annex, const gdb_byte *writebuf,
11096 ULONGEST offset, LONGEST len,
11097 ULONGEST *xfered_len,
11098 struct packet_config *packet)
0e7f50da
UW
11099{
11100 int i, buf_len;
11101 ULONGEST n;
0e7f50da
UW
11102 struct remote_state *rs = get_remote_state ();
11103 int max_size = get_memory_write_packet_size ();
11104
7cc244de 11105 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 11106 return TARGET_XFER_E_IO;
0e7f50da
UW
11107
11108 /* Insert header. */
8d64371b 11109 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
11110 "qXfer:%s:write:%s:%s:",
11111 object_name, annex ? annex : "",
11112 phex_nz (offset, sizeof offset));
11113 max_size -= (i + 1);
11114
11115 /* Escape as much data as fits into rs->buf. */
11116 buf_len = remote_escape_output
8d64371b 11117 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 11118
8d64371b
TT
11119 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
11120 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 11121 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 11122 return TARGET_XFER_E_IO;
0e7f50da 11123
8d64371b 11124 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
11125
11126 *xfered_len = n;
92ffd475 11127 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
11128}
11129
0876f84a
DJ
11130/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
11131 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
11132 number of bytes read is returned, or 0 for EOF, or -1 for error.
11133 The number of bytes read may be less than LEN without indicating an
11134 EOF. PACKET is checked and updated to indicate whether the remote
11135 target supports this object. */
11136
6b8edb51
PA
11137target_xfer_status
11138remote_target::remote_read_qxfer (const char *object_name,
11139 const char *annex,
11140 gdb_byte *readbuf, ULONGEST offset,
11141 LONGEST len,
11142 ULONGEST *xfered_len,
11143 struct packet_config *packet)
0876f84a 11144{
0876f84a 11145 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
11146 LONGEST i, n, packet_len;
11147
7cc244de 11148 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 11149 return TARGET_XFER_E_IO;
0876f84a
DJ
11150
11151 /* Check whether we've cached an end-of-object packet that matches
11152 this request. */
8e88304f 11153 if (rs->finished_object)
0876f84a 11154 {
8e88304f
TT
11155 if (strcmp (object_name, rs->finished_object) == 0
11156 && strcmp (annex ? annex : "", rs->finished_annex) == 0
11157 && offset == rs->finished_offset)
9b409511
YQ
11158 return TARGET_XFER_EOF;
11159
0876f84a
DJ
11160
11161 /* Otherwise, we're now reading something different. Discard
11162 the cache. */
8e88304f
TT
11163 xfree (rs->finished_object);
11164 xfree (rs->finished_annex);
11165 rs->finished_object = NULL;
11166 rs->finished_annex = NULL;
0876f84a
DJ
11167 }
11168
11169 /* Request only enough to fit in a single packet. The actual data
11170 may not, since we don't know how much of it will need to be escaped;
11171 the target is free to respond with slightly less data. We subtract
11172 five to account for the response type and the protocol frame. */
768adc05 11173 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
11174 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
11175 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
11176 object_name, annex ? annex : "",
11177 phex_nz (offset, sizeof offset),
11178 phex_nz (n, sizeof n));
11179 i = putpkt (rs->buf);
11180 if (i < 0)
2ed4b548 11181 return TARGET_XFER_E_IO;
0876f84a
DJ
11182
11183 rs->buf[0] = '\0';
8d64371b 11184 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 11185 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 11186 return TARGET_XFER_E_IO;
0876f84a
DJ
11187
11188 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 11189 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
11190
11191 /* 'm' means there is (or at least might be) more data after this
11192 batch. That does not make sense unless there's at least one byte
11193 of data in this reply. */
11194 if (rs->buf[0] == 'm' && packet_len == 1)
11195 error (_("Remote qXfer reply contained no data."));
11196
11197 /* Got some data. */
8d64371b 11198 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 11199 packet_len - 1, readbuf, n);
0876f84a
DJ
11200
11201 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
11202 or possibly empty. If we have the final block of a non-empty
11203 object, record this fact to bypass a subsequent partial read. */
11204 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 11205 {
8e88304f
TT
11206 rs->finished_object = xstrdup (object_name);
11207 rs->finished_annex = xstrdup (annex ? annex : "");
11208 rs->finished_offset = offset + i;
0876f84a
DJ
11209 }
11210
9b409511
YQ
11211 if (i == 0)
11212 return TARGET_XFER_EOF;
11213 else
11214 {
11215 *xfered_len = i;
11216 return TARGET_XFER_OK;
11217 }
0876f84a
DJ
11218}
11219
f6ac5f3d
PA
11220enum target_xfer_status
11221remote_target::xfer_partial (enum target_object object,
11222 const char *annex, gdb_byte *readbuf,
11223 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
11224 ULONGEST *xfered_len)
c906108c 11225{
82f73884 11226 struct remote_state *rs;
c906108c 11227 int i;
6d820c5c 11228 char *p2;
1e3ff5ad 11229 char query_type;
124e13d9 11230 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 11231
e6e4e701 11232 set_remote_traceframe ();
82f73884
PA
11233 set_general_thread (inferior_ptid);
11234
11235 rs = get_remote_state ();
11236
b2182ed2 11237 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
11238 if (object == TARGET_OBJECT_MEMORY)
11239 {
2d717e4f
DJ
11240 /* If the remote target is connected but not running, we should
11241 pass this request down to a lower stratum (e.g. the executable
11242 file). */
55f6301a 11243 if (!target_has_execution ())
9b409511 11244 return TARGET_XFER_EOF;
2d717e4f 11245
21e3b9b9 11246 if (writebuf != NULL)
124e13d9
SM
11247 return remote_write_bytes (offset, writebuf, len, unit_size,
11248 xfered_len);
21e3b9b9 11249 else
6b8edb51 11250 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 11251 xfered_len);
21e3b9b9
DJ
11252 }
11253
4aa995e1
PA
11254 /* Handle extra signal info using qxfer packets. */
11255 if (object == TARGET_OBJECT_SIGNAL_INFO)
11256 {
11257 if (readbuf)
f6ac5f3d 11258 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 11259 xfered_len, &remote_protocol_packets
4aa995e1
PA
11260 [PACKET_qXfer_siginfo_read]);
11261 else
f6ac5f3d 11262 return remote_write_qxfer ("siginfo", annex,
9b409511 11263 writebuf, offset, len, xfered_len,
4aa995e1
PA
11264 &remote_protocol_packets
11265 [PACKET_qXfer_siginfo_write]);
11266 }
11267
0fb4aa4b
PA
11268 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11269 {
11270 if (readbuf)
f6ac5f3d 11271 return remote_read_qxfer ("statictrace", annex,
9b409511 11272 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
11273 &remote_protocol_packets
11274 [PACKET_qXfer_statictrace_read]);
11275 else
2ed4b548 11276 return TARGET_XFER_E_IO;
0fb4aa4b
PA
11277 }
11278
a76d924d
DJ
11279 /* Only handle flash writes. */
11280 if (writebuf != NULL)
11281 {
a76d924d
DJ
11282 switch (object)
11283 {
11284 case TARGET_OBJECT_FLASH:
6b8edb51 11285 return remote_flash_write (offset, len, xfered_len,
9b409511 11286 writebuf);
a76d924d
DJ
11287
11288 default:
2ed4b548 11289 return TARGET_XFER_E_IO;
a76d924d
DJ
11290 }
11291 }
4b8a223f 11292
1e3ff5ad
AC
11293 /* Map pre-existing objects onto letters. DO NOT do this for new
11294 objects!!! Instead specify new query packets. */
11295 switch (object)
c906108c 11296 {
1e3ff5ad
AC
11297 case TARGET_OBJECT_AVR:
11298 query_type = 'R';
11299 break;
802188a7
RM
11300
11301 case TARGET_OBJECT_AUXV:
0876f84a 11302 gdb_assert (annex == NULL);
f6ac5f3d 11303 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 11304 xfered_len,
0876f84a 11305 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 11306
23181151
DJ
11307 case TARGET_OBJECT_AVAILABLE_FEATURES:
11308 return remote_read_qxfer
f6ac5f3d 11309 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
11310 &remote_protocol_packets[PACKET_qXfer_features]);
11311
cfa9d6d9
DJ
11312 case TARGET_OBJECT_LIBRARIES:
11313 return remote_read_qxfer
f6ac5f3d 11314 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
11315 &remote_protocol_packets[PACKET_qXfer_libraries]);
11316
2268b414
JK
11317 case TARGET_OBJECT_LIBRARIES_SVR4:
11318 return remote_read_qxfer
f6ac5f3d 11319 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
11320 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11321
fd79ecee
DJ
11322 case TARGET_OBJECT_MEMORY_MAP:
11323 gdb_assert (annex == NULL);
f6ac5f3d 11324 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 11325 xfered_len,
fd79ecee
DJ
11326 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11327
07e059b5
VP
11328 case TARGET_OBJECT_OSDATA:
11329 /* Should only get here if we're connected. */
5d93a237 11330 gdb_assert (rs->remote_desc);
07e059b5 11331 return remote_read_qxfer
f6ac5f3d 11332 ("osdata", annex, readbuf, offset, len, xfered_len,
dda83cd7 11333 &remote_protocol_packets[PACKET_qXfer_osdata]);
07e059b5 11334
dc146f7c
VP
11335 case TARGET_OBJECT_THREADS:
11336 gdb_assert (annex == NULL);
f6ac5f3d 11337 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 11338 xfered_len,
dc146f7c
VP
11339 &remote_protocol_packets[PACKET_qXfer_threads]);
11340
b3b9301e
PA
11341 case TARGET_OBJECT_TRACEFRAME_INFO:
11342 gdb_assert (annex == NULL);
11343 return remote_read_qxfer
f6ac5f3d 11344 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11345 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11346
11347 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11348 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11349 xfered_len,
78d85199 11350 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11351
11352 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11353 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11354 xfered_len,
169081d0
TG
11355 &remote_protocol_packets[PACKET_qXfer_uib]);
11356
9accd112 11357 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11358 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11359 xfered_len,
dda83cd7 11360 &remote_protocol_packets[PACKET_qXfer_btrace]);
9accd112 11361
f4abbc16 11362 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11363 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11364 len, xfered_len,
11365 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11366
c78fa86a 11367 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11368 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11369 len, xfered_len,
11370 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11371
1e3ff5ad 11372 default:
2ed4b548 11373 return TARGET_XFER_E_IO;
c906108c
SS
11374 }
11375
0df8b418 11376 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11377 large enough let the caller deal with it. */
ea9c271d 11378 if (len < get_remote_packet_size ())
2ed4b548 11379 return TARGET_XFER_E_IO;
ea9c271d 11380 len = get_remote_packet_size ();
1e3ff5ad 11381
23860348 11382 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11383 if (!rs->remote_desc)
8a3fe4f8 11384 error (_("remote query is only available after target open"));
c906108c 11385
1e3ff5ad 11386 gdb_assert (annex != NULL);
4b8a223f 11387 gdb_assert (readbuf != NULL);
c906108c 11388
8d64371b 11389 p2 = rs->buf.data ();
c906108c
SS
11390 *p2++ = 'q';
11391 *p2++ = query_type;
11392
23860348
MS
11393 /* We used one buffer char for the remote protocol q command and
11394 another for the query type. As the remote protocol encapsulation
11395 uses 4 chars plus one extra in case we are debugging
11396 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11397 string. */
c906108c 11398 i = 0;
ea9c271d 11399 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11400 {
1e3ff5ad
AC
11401 /* Bad caller may have sent forbidden characters. */
11402 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11403 *p2++ = annex[i];
c906108c
SS
11404 i++;
11405 }
1e3ff5ad
AC
11406 *p2 = '\0';
11407 gdb_assert (annex[i] == '\0');
c906108c 11408
6d820c5c 11409 i = putpkt (rs->buf);
c5aa993b 11410 if (i < 0)
2ed4b548 11411 return TARGET_XFER_E_IO;
c906108c 11412
8d64371b
TT
11413 getpkt (&rs->buf, 0);
11414 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11415
9b409511 11416 *xfered_len = strlen ((char *) readbuf);
92ffd475 11417 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11418}
11419
09c98b44
DB
11420/* Implementation of to_get_memory_xfer_limit. */
11421
f6ac5f3d
PA
11422ULONGEST
11423remote_target::get_memory_xfer_limit ()
09c98b44
DB
11424{
11425 return get_memory_write_packet_size ();
11426}
11427
f6ac5f3d
PA
11428int
11429remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11430 const gdb_byte *pattern, ULONGEST pattern_len,
11431 CORE_ADDR *found_addrp)
08388c79 11432{
f5656ead 11433 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11434 struct remote_state *rs = get_remote_state ();
11435 int max_size = get_memory_write_packet_size ();
11436 struct packet_config *packet =
11437 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11438 /* Number of packet bytes used to encode the pattern;
11439 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11440 int escaped_pattern_len;
0df8b418 11441 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11442 int used_pattern_len;
11443 int i;
11444 int found;
11445 ULONGEST found_addr;
11446
4a72de73
TT
11447 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
11448 {
11449 return (target_read (this, TARGET_OBJECT_MEMORY, NULL, result, addr, len)
11450 == len);
11451 };
11452
7cc244de
PA
11453 /* Don't go to the target if we don't have to. This is done before
11454 checking packet_config_support to avoid the possibility that a
11455 success for this edge case means the facility works in
11456 general. */
08388c79
DE
11457 if (pattern_len > search_space_len)
11458 return 0;
11459 if (pattern_len == 0)
11460 {
11461 *found_addrp = start_addr;
11462 return 1;
11463 }
11464
11465 /* If we already know the packet isn't supported, fall back to the simple
11466 way of searching memory. */
11467
4082afcc 11468 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11469 {
11470 /* Target doesn't provided special support, fall back and use the
11471 standard support (copy memory and do the search here). */
4a72de73 11472 return simple_search_memory (read_memory, start_addr, search_space_len,
08388c79
DE
11473 pattern, pattern_len, found_addrp);
11474 }
11475
28439a30
PA
11476 /* Make sure the remote is pointing at the right process. */
11477 set_general_process ();
11478
08388c79 11479 /* Insert header. */
8d64371b 11480 i = snprintf (rs->buf.data (), max_size,
08388c79 11481 "qSearch:memory:%s;%s;",
5af949e3 11482 phex_nz (start_addr, addr_size),
08388c79
DE
11483 phex_nz (search_space_len, sizeof (search_space_len)));
11484 max_size -= (i + 1);
11485
11486 /* Escape as much data as fits into rs->buf. */
11487 escaped_pattern_len =
8d64371b
TT
11488 remote_escape_output (pattern, pattern_len, 1,
11489 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11490 &used_pattern_len, max_size);
11491
11492 /* Bail if the pattern is too large. */
11493 if (used_pattern_len != pattern_len)
9b20d036 11494 error (_("Pattern is too large to transmit to remote target."));
08388c79 11495
8d64371b
TT
11496 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11497 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11498 || packet_ok (rs->buf, packet) != PACKET_OK)
11499 {
11500 /* The request may not have worked because the command is not
11501 supported. If so, fall back to the simple way. */
7cc244de 11502 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11503 {
4a72de73 11504 return simple_search_memory (read_memory, start_addr, search_space_len,
08388c79
DE
11505 pattern, pattern_len, found_addrp);
11506 }
11507 return -1;
11508 }
11509
11510 if (rs->buf[0] == '0')
11511 found = 0;
11512 else if (rs->buf[0] == '1')
11513 {
11514 found = 1;
11515 if (rs->buf[1] != ',')
8d64371b
TT
11516 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11517 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11518 *found_addrp = found_addr;
11519 }
11520 else
8d64371b 11521 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11522
11523 return found;
11524}
11525
f6ac5f3d
PA
11526void
11527remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11528{
d01949b6 11529 struct remote_state *rs = get_remote_state ();
8d64371b 11530 char *p = rs->buf.data ();
96baa820 11531
5d93a237 11532 if (!rs->remote_desc)
8a3fe4f8 11533 error (_("remote rcmd is only available after target open"));
96baa820 11534
23860348 11535 /* Send a NULL command across as an empty command. */
7be570e7
JM
11536 if (command == NULL)
11537 command = "";
11538
23860348 11539 /* The query prefix. */
8d64371b
TT
11540 strcpy (rs->buf.data (), "qRcmd,");
11541 p = strchr (rs->buf.data (), '\0');
96baa820 11542
8d64371b 11543 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11544 > get_remote_packet_size ())
8a3fe4f8 11545 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11546
23860348 11547 /* Encode the actual command. */
a30bf1f1 11548 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11549
6d820c5c 11550 if (putpkt (rs->buf) < 0)
8a3fe4f8 11551 error (_("Communication problem with target."));
96baa820
JM
11552
11553 /* get/display the response */
11554 while (1)
11555 {
2e9f7625
DJ
11556 char *buf;
11557
00bf0b85 11558 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11559 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11560 rs->buf[0] = '\0';
8d64371b 11561 if (getpkt_sane (&rs->buf, 0) == -1)
dda83cd7
SM
11562 {
11563 /* Timeout. Continue to (try to) read responses.
11564 This is better than stopping with an error, assuming the stub
11565 is still executing the (long) monitor command.
11566 If needed, the user can interrupt gdb using C-c, obtaining
11567 an effect similar to stop on timeout. */
11568 continue;
11569 }
8d64371b 11570 buf = rs->buf.data ();
96baa820 11571 if (buf[0] == '\0')
8a3fe4f8 11572 error (_("Target does not support this command."));
96baa820
JM
11573 if (buf[0] == 'O' && buf[1] != 'K')
11574 {
23860348 11575 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11576 continue;
11577 }
11578 if (strcmp (buf, "OK") == 0)
11579 break;
7be570e7
JM
11580 if (strlen (buf) == 3 && buf[0] == 'E'
11581 && isdigit (buf[1]) && isdigit (buf[2]))
11582 {
8a3fe4f8 11583 error (_("Protocol error with Rcmd"));
7be570e7 11584 }
96baa820
JM
11585 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11586 {
11587 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11588
96baa820
JM
11589 fputc_unfiltered (c, outbuf);
11590 }
11591 break;
11592 }
11593}
11594
f6ac5f3d
PA
11595std::vector<mem_region>
11596remote_target::memory_map ()
fd79ecee 11597{
a664f67e 11598 std::vector<mem_region> result;
9018be22 11599 gdb::optional<gdb::char_vector> text
328d42d8
SM
11600 = target_read_stralloc (current_inferior ()->top_target (),
11601 TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11602
11603 if (text)
9018be22 11604 result = parse_memory_map (text->data ());
fd79ecee
DJ
11605
11606 return result;
11607}
11608
c906108c 11609static void
ac88e2de 11610packet_command (const char *args, int from_tty)
c906108c 11611{
6b8edb51 11612 remote_target *remote = get_current_remote_target ();
c906108c 11613
6b8edb51 11614 if (remote == nullptr)
8a3fe4f8 11615 error (_("command can only be used with remote target"));
c906108c 11616
6b8edb51
PA
11617 remote->packet_command (args, from_tty);
11618}
11619
11620void
11621remote_target::packet_command (const char *args, int from_tty)
11622{
c5aa993b 11623 if (!args)
8a3fe4f8 11624 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11625
11626 puts_filtered ("sending: ");
11627 print_packet (args);
11628 puts_filtered ("\n");
11629 putpkt (args);
11630
6b8edb51
PA
11631 remote_state *rs = get_remote_state ();
11632
8d64371b 11633 getpkt (&rs->buf, 0);
c906108c 11634 puts_filtered ("received: ");
8d64371b 11635 print_packet (rs->buf.data ());
c906108c
SS
11636 puts_filtered ("\n");
11637}
11638
11639#if 0
23860348 11640/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11641
a14ed312 11642static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11643
a14ed312 11644static void threadset_test_cmd (char *cmd, int tty);
c906108c 11645
a14ed312 11646static void threadalive_test (char *cmd, int tty);
c906108c 11647
a14ed312 11648static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11649
23860348 11650int get_and_display_threadinfo (threadref *ref);
c906108c 11651
a14ed312 11652static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11653
23860348 11654static int thread_display_step (threadref *ref, void *context);
c906108c 11655
a14ed312 11656static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11657
a14ed312 11658static void init_remote_threadtests (void);
c906108c 11659
23860348 11660#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11661
11662static void
0b39b52e 11663threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11664{
11665 int sample_thread = SAMPLE_THREAD;
11666
a3f17187 11667 printf_filtered (_("Remote threadset test\n"));
79d7f229 11668 set_general_thread (sample_thread);
c906108c
SS
11669}
11670
11671
11672static void
0b39b52e 11673threadalive_test (const char *cmd, int tty)
c906108c
SS
11674{
11675 int sample_thread = SAMPLE_THREAD;
e99b03dc 11676 int pid = inferior_ptid.pid ();
fd79271b 11677 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11678
79d7f229 11679 if (remote_thread_alive (ptid))
c906108c
SS
11680 printf_filtered ("PASS: Thread alive test\n");
11681 else
11682 printf_filtered ("FAIL: Thread alive test\n");
11683}
11684
23860348 11685void output_threadid (char *title, threadref *ref);
c906108c
SS
11686
11687void
fba45db2 11688output_threadid (char *title, threadref *ref)
c906108c
SS
11689{
11690 char hexid[20];
11691
405feb71 11692 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11693 hexid[16] = 0;
11694 printf_filtered ("%s %s\n", title, (&hexid[0]));
11695}
11696
11697static void
0b39b52e 11698threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11699{
11700 int startflag = 1;
11701 threadref nextthread;
11702 int done, result_count;
11703 threadref threadlist[3];
11704
11705 printf_filtered ("Remote Threadlist test\n");
11706 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11707 &result_count, &threadlist[0]))
11708 printf_filtered ("FAIL: threadlist test\n");
11709 else
11710 {
11711 threadref *scan = threadlist;
11712 threadref *limit = scan + result_count;
11713
11714 while (scan < limit)
11715 output_threadid (" thread ", scan++);
11716 }
11717}
11718
11719void
fba45db2 11720display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11721{
11722 output_threadid ("Threadid: ", &info->threadid);
11723 printf_filtered ("Name: %s\n ", info->shortname);
11724 printf_filtered ("State: %s\n", info->display);
11725 printf_filtered ("other: %s\n\n", info->more_display);
11726}
11727
11728int
fba45db2 11729get_and_display_threadinfo (threadref *ref)
c906108c
SS
11730{
11731 int result;
11732 int set;
11733 struct gdb_ext_thread_info threadinfo;
11734
11735 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11736 | TAG_MOREDISPLAY | TAG_DISPLAY;
11737 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11738 display_thread_info (&threadinfo);
11739 return result;
11740}
11741
11742static void
0b39b52e 11743threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11744{
11745 int athread = SAMPLE_THREAD;
11746 threadref thread;
11747 int set;
11748
11749 int_to_threadref (&thread, athread);
11750 printf_filtered ("Remote Threadinfo test\n");
11751 if (!get_and_display_threadinfo (&thread))
11752 printf_filtered ("FAIL cannot get thread info\n");
11753}
11754
11755static int
fba45db2 11756thread_display_step (threadref *ref, void *context)
c906108c
SS
11757{
11758 /* output_threadid(" threadstep ",ref); *//* simple test */
11759 return get_and_display_threadinfo (ref);
11760}
11761
11762static void
0b39b52e 11763threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11764{
11765 printf_filtered ("Remote Threadlist update test\n");
11766 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11767}
11768
11769static void
11770init_remote_threadtests (void)
11771{
3e43a32a
MS
11772 add_com ("tlist", class_obscure, threadlist_test_cmd,
11773 _("Fetch and print the remote list of "
590042fc 11774 "thread identifiers, one pkt only."));
c906108c 11775 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11776 _("Fetch and display info about one thread."));
c906108c 11777 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11778 _("Test setting to a different thread."));
c906108c 11779 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11780 _("Iterate through updating all remote thread info."));
c906108c 11781 add_com ("talive", class_obscure, threadalive_test,
590042fc 11782 _("Remote thread alive test."));
c906108c
SS
11783}
11784
11785#endif /* 0 */
11786
a068643d 11787/* Convert a thread ID to a string. */
f3fb8c85 11788
a068643d 11789std::string
f6ac5f3d 11790remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11791{
82f73884 11792 struct remote_state *rs = get_remote_state ();
f3fb8c85 11793
d7e15655 11794 if (ptid == null_ptid)
7cee1e54 11795 return normal_pid_to_str (ptid);
0e998d96 11796 else if (ptid.is_pid ())
ecd0ada5
PA
11797 {
11798 /* Printing an inferior target id. */
11799
11800 /* When multi-process extensions are off, there's no way in the
11801 remote protocol to know the remote process id, if there's any
11802 at all. There's one exception --- when we're connected with
11803 target extended-remote, and we manually attached to a process
11804 with "attach PID". We don't record anywhere a flag that
11805 allows us to distinguish that case from the case of
11806 connecting with extended-remote and the stub already being
11807 attached to a process, and reporting yes to qAttached, hence
11808 no smart special casing here. */
11809 if (!remote_multi_process_p (rs))
a068643d 11810 return "Remote target";
ecd0ada5
PA
11811
11812 return normal_pid_to_str (ptid);
82f73884 11813 }
ecd0ada5 11814 else
79d7f229 11815 {
d7e15655 11816 if (magic_null_ptid == ptid)
a068643d 11817 return "Thread <main>";
8020350c 11818 else if (remote_multi_process_p (rs))
e38504b3 11819 if (ptid.lwp () == 0)
de0d863e
DB
11820 return normal_pid_to_str (ptid);
11821 else
a068643d
TT
11822 return string_printf ("Thread %d.%ld",
11823 ptid.pid (), ptid.lwp ());
ecd0ada5 11824 else
a068643d 11825 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11826 }
f3fb8c85
MS
11827}
11828
38691318
KB
11829/* Get the address of the thread local variable in OBJFILE which is
11830 stored at OFFSET within the thread local storage for thread PTID. */
11831
f6ac5f3d
PA
11832CORE_ADDR
11833remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11834 CORE_ADDR offset)
38691318 11835{
4082afcc 11836 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11837 {
11838 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11839 char *p = rs->buf.data ();
11840 char *endp = p + get_remote_packet_size ();
571dd617 11841 enum packet_result result;
38691318
KB
11842
11843 strcpy (p, "qGetTLSAddr:");
11844 p += strlen (p);
82f73884 11845 p = write_ptid (p, endp, ptid);
38691318
KB
11846 *p++ = ',';
11847 p += hexnumstr (p, offset);
11848 *p++ = ',';
11849 p += hexnumstr (p, lm);
11850 *p++ = '\0';
11851
6d820c5c 11852 putpkt (rs->buf);
8d64371b 11853 getpkt (&rs->buf, 0);
3e43a32a
MS
11854 result = packet_ok (rs->buf,
11855 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11856 if (result == PACKET_OK)
38691318 11857 {
b926417a 11858 ULONGEST addr;
38691318 11859
8d64371b 11860 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11861 return addr;
38691318 11862 }
571dd617 11863 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11864 throw_error (TLS_GENERIC_ERROR,
11865 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11866 else
109c3e39
AC
11867 throw_error (TLS_GENERIC_ERROR,
11868 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11869 }
11870 else
109c3e39
AC
11871 throw_error (TLS_GENERIC_ERROR,
11872 _("TLS not supported or disabled on this target"));
38691318
KB
11873 /* Not reached. */
11874 return 0;
11875}
11876
711e434b
PM
11877/* Provide thread local base, i.e. Thread Information Block address.
11878 Returns 1 if ptid is found and thread_local_base is non zero. */
11879
57810aa7 11880bool
f6ac5f3d 11881remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11882{
4082afcc 11883 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11884 {
11885 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11886 char *p = rs->buf.data ();
11887 char *endp = p + get_remote_packet_size ();
711e434b
PM
11888 enum packet_result result;
11889
11890 strcpy (p, "qGetTIBAddr:");
11891 p += strlen (p);
11892 p = write_ptid (p, endp, ptid);
11893 *p++ = '\0';
11894
11895 putpkt (rs->buf);
8d64371b 11896 getpkt (&rs->buf, 0);
711e434b
PM
11897 result = packet_ok (rs->buf,
11898 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11899 if (result == PACKET_OK)
11900 {
b926417a 11901 ULONGEST val;
8d64371b 11902 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11903 if (addr)
b926417a 11904 *addr = (CORE_ADDR) val;
57810aa7 11905 return true;
711e434b
PM
11906 }
11907 else if (result == PACKET_UNKNOWN)
11908 error (_("Remote target doesn't support qGetTIBAddr packet"));
11909 else
11910 error (_("Remote target failed to process qGetTIBAddr request"));
11911 }
11912 else
11913 error (_("qGetTIBAddr not supported or disabled on this target"));
11914 /* Not reached. */
57810aa7 11915 return false;
711e434b
PM
11916}
11917
29709017
DJ
11918/* Support for inferring a target description based on the current
11919 architecture and the size of a 'g' packet. While the 'g' packet
11920 can have any size (since optional registers can be left off the
11921 end), some sizes are easily recognizable given knowledge of the
11922 approximate architecture. */
11923
11924struct remote_g_packet_guess
11925{
eefce37f
TT
11926 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11927 : bytes (bytes_),
11928 tdesc (tdesc_)
11929 {
11930 }
11931
29709017
DJ
11932 int bytes;
11933 const struct target_desc *tdesc;
11934};
29709017 11935
eefce37f 11936struct remote_g_packet_data : public allocate_on_obstack
29709017 11937{
eefce37f 11938 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11939};
11940
11941static struct gdbarch_data *remote_g_packet_data_handle;
11942
11943static void *
11944remote_g_packet_data_init (struct obstack *obstack)
11945{
eefce37f 11946 return new (obstack) remote_g_packet_data;
29709017
DJ
11947}
11948
11949void
11950register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11951 const struct target_desc *tdesc)
11952{
11953 struct remote_g_packet_data *data
19ba03f4
SM
11954 = ((struct remote_g_packet_data *)
11955 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11956
11957 gdb_assert (tdesc != NULL);
11958
eefce37f
TT
11959 for (const remote_g_packet_guess &guess : data->guesses)
11960 if (guess.bytes == bytes)
29709017 11961 internal_error (__FILE__, __LINE__,
9b20d036 11962 _("Duplicate g packet description added for size %d"),
29709017
DJ
11963 bytes);
11964
eefce37f 11965 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11966}
11967
eefce37f
TT
11968/* Return true if remote_read_description would do anything on this target
11969 and architecture, false otherwise. */
d962ef82 11970
eefce37f 11971static bool
d962ef82
DJ
11972remote_read_description_p (struct target_ops *target)
11973{
11974 struct remote_g_packet_data *data
19ba03f4
SM
11975 = ((struct remote_g_packet_data *)
11976 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11977
eefce37f 11978 return !data->guesses.empty ();
d962ef82
DJ
11979}
11980
f6ac5f3d
PA
11981const struct target_desc *
11982remote_target::read_description ()
29709017
DJ
11983{
11984 struct remote_g_packet_data *data
19ba03f4
SM
11985 = ((struct remote_g_packet_data *)
11986 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11987
d962ef82
DJ
11988 /* Do not try this during initial connection, when we do not know
11989 whether there is a running but stopped thread. */
55f6301a 11990 if (!target_has_execution () || inferior_ptid == null_ptid)
b6a8c27b 11991 return beneath ()->read_description ();
d962ef82 11992
eefce37f 11993 if (!data->guesses.empty ())
29709017 11994 {
29709017
DJ
11995 int bytes = send_g_packet ();
11996
eefce37f
TT
11997 for (const remote_g_packet_guess &guess : data->guesses)
11998 if (guess.bytes == bytes)
11999 return guess.tdesc;
29709017
DJ
12000
12001 /* We discard the g packet. A minor optimization would be to
12002 hold on to it, and fill the register cache once we have selected
12003 an architecture, but it's too tricky to do safely. */
12004 }
12005
b6a8c27b 12006 return beneath ()->read_description ();
29709017
DJ
12007}
12008
a6b151f1
DJ
12009/* Remote file transfer support. This is host-initiated I/O, not
12010 target-initiated; for target-initiated, see remote-fileio.c. */
12011
12012/* If *LEFT is at least the length of STRING, copy STRING to
12013 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12014 decrease *LEFT. Otherwise raise an error. */
12015
12016static void
a121b7c1 12017remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
12018{
12019 int len = strlen (string);
12020
12021 if (len > *left)
12022 error (_("Packet too long for target."));
12023
12024 memcpy (*buffer, string, len);
12025 *buffer += len;
12026 *left -= len;
12027
12028 /* NUL-terminate the buffer as a convenience, if there is
12029 room. */
12030 if (*left)
12031 **buffer = '\0';
12032}
12033
12034/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
12035 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12036 decrease *LEFT. Otherwise raise an error. */
12037
12038static void
12039remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
12040 int len)
12041{
12042 if (2 * len > *left)
12043 error (_("Packet too long for target."));
12044
12045 bin2hex (bytes, *buffer, len);
12046 *buffer += 2 * len;
12047 *left -= 2 * len;
12048
12049 /* NUL-terminate the buffer as a convenience, if there is
12050 room. */
12051 if (*left)
12052 **buffer = '\0';
12053}
12054
12055/* If *LEFT is large enough, convert VALUE to hex and add it to
12056 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12057 decrease *LEFT. Otherwise raise an error. */
12058
12059static void
12060remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
12061{
12062 int len = hexnumlen (value);
12063
12064 if (len > *left)
12065 error (_("Packet too long for target."));
12066
12067 hexnumstr (*buffer, value);
12068 *buffer += len;
12069 *left -= len;
12070
12071 /* NUL-terminate the buffer as a convenience, if there is
12072 room. */
12073 if (*left)
12074 **buffer = '\0';
12075}
12076
12077/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
12078 value, *REMOTE_ERRNO to the remote error number or zero if none
12079 was included, and *ATTACHMENT to point to the start of the annex
12080 if any. The length of the packet isn't needed here; there may
12081 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
12082
12083 Return 0 if the packet could be parsed, -1 if it could not. If
12084 -1 is returned, the other variables may not be initialized. */
12085
12086static int
aa2838cc
SM
12087remote_hostio_parse_result (const char *buffer, int *retcode,
12088 int *remote_errno, const char **attachment)
a6b151f1
DJ
12089{
12090 char *p, *p2;
12091
12092 *remote_errno = 0;
12093 *attachment = NULL;
12094
12095 if (buffer[0] != 'F')
12096 return -1;
12097
12098 errno = 0;
12099 *retcode = strtol (&buffer[1], &p, 16);
12100 if (errno != 0 || p == &buffer[1])
12101 return -1;
12102
12103 /* Check for ",errno". */
12104 if (*p == ',')
12105 {
12106 errno = 0;
12107 *remote_errno = strtol (p + 1, &p2, 16);
12108 if (errno != 0 || p + 1 == p2)
12109 return -1;
12110 p = p2;
12111 }
12112
12113 /* Check for ";attachment". If there is no attachment, the
12114 packet should end here. */
12115 if (*p == ';')
12116 {
12117 *attachment = p + 1;
12118 return 0;
12119 }
12120 else if (*p == '\0')
12121 return 0;
12122 else
12123 return -1;
12124}
12125
12126/* Send a prepared I/O packet to the target and read its response.
12127 The prepared packet is in the global RS->BUF before this function
12128 is called, and the answer is there when we return.
12129
12130 COMMAND_BYTES is the length of the request to send, which may include
12131 binary data. WHICH_PACKET is the packet configuration to check
12132 before attempting a packet. If an error occurs, *REMOTE_ERRNO
12133 is set to the error number and -1 is returned. Otherwise the value
12134 returned by the function is returned.
12135
12136 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
12137 attachment is expected; an error will be reported if there's a
12138 mismatch. If one is found, *ATTACHMENT will be set to point into
12139 the packet buffer and *ATTACHMENT_LEN will be set to the
12140 attachment's length. */
12141
6b8edb51
PA
12142int
12143remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
aa2838cc 12144 int *remote_errno, const char **attachment,
6b8edb51 12145 int *attachment_len)
a6b151f1
DJ
12146{
12147 struct remote_state *rs = get_remote_state ();
12148 int ret, bytes_read;
aa2838cc 12149 const char *attachment_tmp;
a6b151f1 12150
20db9c52 12151 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
12152 {
12153 *remote_errno = FILEIO_ENOSYS;
12154 return -1;
12155 }
12156
8d64371b
TT
12157 putpkt_binary (rs->buf.data (), command_bytes);
12158 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
12159
12160 /* If it timed out, something is wrong. Don't try to parse the
12161 buffer. */
12162 if (bytes_read < 0)
12163 {
12164 *remote_errno = FILEIO_EINVAL;
12165 return -1;
12166 }
12167
12168 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
12169 {
12170 case PACKET_ERROR:
12171 *remote_errno = FILEIO_EINVAL;
12172 return -1;
12173 case PACKET_UNKNOWN:
12174 *remote_errno = FILEIO_ENOSYS;
12175 return -1;
12176 case PACKET_OK:
12177 break;
12178 }
12179
8d64371b 12180 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
12181 &attachment_tmp))
12182 {
12183 *remote_errno = FILEIO_EINVAL;
12184 return -1;
12185 }
12186
12187 /* Make sure we saw an attachment if and only if we expected one. */
12188 if ((attachment_tmp == NULL && attachment != NULL)
12189 || (attachment_tmp != NULL && attachment == NULL))
12190 {
12191 *remote_errno = FILEIO_EINVAL;
12192 return -1;
12193 }
12194
12195 /* If an attachment was found, it must point into the packet buffer;
12196 work out how many bytes there were. */
12197 if (attachment_tmp != NULL)
12198 {
12199 *attachment = attachment_tmp;
8d64371b 12200 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
12201 }
12202
12203 return ret;
12204}
12205
dd194f6b 12206/* See declaration.h. */
80152258 12207
dd194f6b
PA
12208void
12209readahead_cache::invalidate ()
80152258 12210{
dd194f6b 12211 this->fd = -1;
80152258
PA
12212}
12213
dd194f6b 12214/* See declaration.h. */
80152258 12215
dd194f6b
PA
12216void
12217readahead_cache::invalidate_fd (int fd)
80152258 12218{
dd194f6b
PA
12219 if (this->fd == fd)
12220 this->fd = -1;
80152258
PA
12221}
12222
15a201c8
GB
12223/* Set the filesystem remote_hostio functions that take FILENAME
12224 arguments will use. Return 0 on success, or -1 if an error
12225 occurs (and set *REMOTE_ERRNO). */
12226
6b8edb51
PA
12227int
12228remote_target::remote_hostio_set_filesystem (struct inferior *inf,
12229 int *remote_errno)
15a201c8
GB
12230{
12231 struct remote_state *rs = get_remote_state ();
12232 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 12233 char *p = rs->buf.data ();
15a201c8
GB
12234 int left = get_remote_packet_size () - 1;
12235 char arg[9];
12236 int ret;
12237
12238 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12239 return 0;
12240
12241 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
12242 return 0;
12243
12244 remote_buffer_add_string (&p, &left, "vFile:setfs:");
12245
12246 xsnprintf (arg, sizeof (arg), "%x", required_pid);
12247 remote_buffer_add_string (&p, &left, arg);
12248
8d64371b 12249 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
12250 remote_errno, NULL, NULL);
12251
12252 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12253 return 0;
12254
12255 if (ret == 0)
12256 rs->fs_pid = required_pid;
12257
12258 return ret;
12259}
12260
12e2a5fd 12261/* Implementation of to_fileio_open. */
a6b151f1 12262
6b8edb51
PA
12263int
12264remote_target::remote_hostio_open (inferior *inf, const char *filename,
12265 int flags, int mode, int warn_if_slow,
12266 int *remote_errno)
a6b151f1
DJ
12267{
12268 struct remote_state *rs = get_remote_state ();
8d64371b 12269 char *p = rs->buf.data ();
a6b151f1
DJ
12270 int left = get_remote_packet_size () - 1;
12271
4313b8c0
GB
12272 if (warn_if_slow)
12273 {
12274 static int warning_issued = 0;
12275
12276 printf_unfiltered (_("Reading %s from remote target...\n"),
12277 filename);
12278
12279 if (!warning_issued)
12280 {
12281 warning (_("File transfers from remote targets can be slow."
12282 " Use \"set sysroot\" to access files locally"
12283 " instead."));
12284 warning_issued = 1;
12285 }
12286 }
12287
15a201c8
GB
12288 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12289 return -1;
12290
a6b151f1
DJ
12291 remote_buffer_add_string (&p, &left, "vFile:open:");
12292
12293 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12294 strlen (filename));
12295 remote_buffer_add_string (&p, &left, ",");
12296
12297 remote_buffer_add_int (&p, &left, flags);
12298 remote_buffer_add_string (&p, &left, ",");
12299
12300 remote_buffer_add_int (&p, &left, mode);
12301
8d64371b 12302 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
12303 remote_errno, NULL, NULL);
12304}
12305
f6ac5f3d
PA
12306int
12307remote_target::fileio_open (struct inferior *inf, const char *filename,
12308 int flags, int mode, int warn_if_slow,
12309 int *remote_errno)
12310{
6b8edb51 12311 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
12312 remote_errno);
12313}
12314
12e2a5fd 12315/* Implementation of to_fileio_pwrite. */
a6b151f1 12316
6b8edb51
PA
12317int
12318remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12319 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12320{
12321 struct remote_state *rs = get_remote_state ();
8d64371b 12322 char *p = rs->buf.data ();
a6b151f1
DJ
12323 int left = get_remote_packet_size ();
12324 int out_len;
12325
dd194f6b 12326 rs->readahead_cache.invalidate_fd (fd);
80152258 12327
a6b151f1
DJ
12328 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12329
12330 remote_buffer_add_int (&p, &left, fd);
12331 remote_buffer_add_string (&p, &left, ",");
12332
12333 remote_buffer_add_int (&p, &left, offset);
12334 remote_buffer_add_string (&p, &left, ",");
12335
124e13d9 12336 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
12337 (get_remote_packet_size ()
12338 - (p - rs->buf.data ())));
a6b151f1 12339
8d64371b 12340 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
12341 remote_errno, NULL, NULL);
12342}
12343
f6ac5f3d
PA
12344int
12345remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12346 ULONGEST offset, int *remote_errno)
12347{
6b8edb51 12348 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12349}
12350
80152258
PA
12351/* Helper for the implementation of to_fileio_pread. Read the file
12352 from the remote side with vFile:pread. */
a6b151f1 12353
6b8edb51
PA
12354int
12355remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12356 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12357{
12358 struct remote_state *rs = get_remote_state ();
8d64371b 12359 char *p = rs->buf.data ();
aa2838cc 12360 const char *attachment;
a6b151f1
DJ
12361 int left = get_remote_packet_size ();
12362 int ret, attachment_len;
12363 int read_len;
12364
12365 remote_buffer_add_string (&p, &left, "vFile:pread:");
12366
12367 remote_buffer_add_int (&p, &left, fd);
12368 remote_buffer_add_string (&p, &left, ",");
12369
12370 remote_buffer_add_int (&p, &left, len);
12371 remote_buffer_add_string (&p, &left, ",");
12372
12373 remote_buffer_add_int (&p, &left, offset);
12374
8d64371b 12375 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12376 remote_errno, &attachment,
12377 &attachment_len);
12378
12379 if (ret < 0)
12380 return ret;
12381
bc20a4af 12382 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12383 read_buf, len);
12384 if (read_len != ret)
12385 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12386
12387 return ret;
12388}
12389
dd194f6b 12390/* See declaration.h. */
80152258 12391
dd194f6b
PA
12392int
12393readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12394 ULONGEST offset)
80152258 12395{
dd194f6b
PA
12396 if (this->fd == fd
12397 && this->offset <= offset
12398 && offset < this->offset + this->bufsize)
80152258 12399 {
dd194f6b 12400 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12401
12402 if (offset + len > max)
12403 len = max - offset;
12404
dd194f6b 12405 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12406 return len;
12407 }
12408
12409 return 0;
12410}
12411
12412/* Implementation of to_fileio_pread. */
12413
6b8edb51
PA
12414int
12415remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12416 ULONGEST offset, int *remote_errno)
80152258
PA
12417{
12418 int ret;
12419 struct remote_state *rs = get_remote_state ();
dd194f6b 12420 readahead_cache *cache = &rs->readahead_cache;
80152258 12421
dd194f6b 12422 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12423 if (ret > 0)
12424 {
12425 cache->hit_count++;
12426
2189c312
SM
12427 remote_debug_printf ("readahead cache hit %s",
12428 pulongest (cache->hit_count));
80152258
PA
12429 return ret;
12430 }
12431
12432 cache->miss_count++;
2189c312
SM
12433
12434 remote_debug_printf ("readahead cache miss %s",
12435 pulongest (cache->miss_count));
80152258
PA
12436
12437 cache->fd = fd;
12438 cache->offset = offset;
12439 cache->bufsize = get_remote_packet_size ();
224c3ddb 12440 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12441
6b8edb51 12442 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12443 cache->offset, remote_errno);
12444 if (ret <= 0)
12445 {
dd194f6b 12446 cache->invalidate_fd (fd);
80152258
PA
12447 return ret;
12448 }
12449
12450 cache->bufsize = ret;
dd194f6b 12451 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12452}
12453
f6ac5f3d
PA
12454int
12455remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12456 ULONGEST offset, int *remote_errno)
12457{
6b8edb51 12458 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12459}
12460
12e2a5fd 12461/* Implementation of to_fileio_close. */
a6b151f1 12462
6b8edb51
PA
12463int
12464remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12465{
12466 struct remote_state *rs = get_remote_state ();
8d64371b 12467 char *p = rs->buf.data ();
a6b151f1
DJ
12468 int left = get_remote_packet_size () - 1;
12469
dd194f6b 12470 rs->readahead_cache.invalidate_fd (fd);
80152258 12471
a6b151f1
DJ
12472 remote_buffer_add_string (&p, &left, "vFile:close:");
12473
12474 remote_buffer_add_int (&p, &left, fd);
12475
8d64371b 12476 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12477 remote_errno, NULL, NULL);
12478}
12479
f6ac5f3d
PA
12480int
12481remote_target::fileio_close (int fd, int *remote_errno)
12482{
6b8edb51 12483 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12484}
12485
12e2a5fd 12486/* Implementation of to_fileio_unlink. */
a6b151f1 12487
6b8edb51
PA
12488int
12489remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12490 int *remote_errno)
a6b151f1
DJ
12491{
12492 struct remote_state *rs = get_remote_state ();
8d64371b 12493 char *p = rs->buf.data ();
a6b151f1
DJ
12494 int left = get_remote_packet_size () - 1;
12495
15a201c8
GB
12496 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12497 return -1;
12498
a6b151f1
DJ
12499 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12500
12501 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12502 strlen (filename));
12503
8d64371b 12504 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12505 remote_errno, NULL, NULL);
12506}
12507
f6ac5f3d
PA
12508int
12509remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12510 int *remote_errno)
12511{
6b8edb51 12512 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12513}
12514
12e2a5fd 12515/* Implementation of to_fileio_readlink. */
b9e7b9c3 12516
f6ac5f3d
PA
12517gdb::optional<std::string>
12518remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12519 int *remote_errno)
b9e7b9c3
UW
12520{
12521 struct remote_state *rs = get_remote_state ();
8d64371b 12522 char *p = rs->buf.data ();
aa2838cc 12523 const char *attachment;
b9e7b9c3
UW
12524 int left = get_remote_packet_size ();
12525 int len, attachment_len;
12526 int read_len;
b9e7b9c3 12527
15a201c8 12528 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12529 return {};
15a201c8 12530
b9e7b9c3
UW
12531 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12532
12533 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12534 strlen (filename));
12535
8d64371b 12536 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12537 remote_errno, &attachment,
12538 &attachment_len);
12539
12540 if (len < 0)
e0d3522b 12541 return {};
b9e7b9c3 12542
e0d3522b 12543 std::string ret (len, '\0');
b9e7b9c3 12544
bc20a4af 12545 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12546 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12547 if (read_len != len)
12548 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12549
b9e7b9c3
UW
12550 return ret;
12551}
12552
12e2a5fd 12553/* Implementation of to_fileio_fstat. */
0a93529c 12554
f6ac5f3d
PA
12555int
12556remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12557{
12558 struct remote_state *rs = get_remote_state ();
8d64371b 12559 char *p = rs->buf.data ();
0a93529c
GB
12560 int left = get_remote_packet_size ();
12561 int attachment_len, ret;
aa2838cc 12562 const char *attachment;
0a93529c
GB
12563 struct fio_stat fst;
12564 int read_len;
12565
464b0089
GB
12566 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12567
12568 remote_buffer_add_int (&p, &left, fd);
12569
8d64371b 12570 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12571 remote_errno, &attachment,
12572 &attachment_len);
12573 if (ret < 0)
0a93529c 12574 {
464b0089
GB
12575 if (*remote_errno != FILEIO_ENOSYS)
12576 return ret;
12577
0a93529c
GB
12578 /* Strictly we should return -1, ENOSYS here, but when
12579 "set sysroot remote:" was implemented in August 2008
12580 BFD's need for a stat function was sidestepped with
12581 this hack. This was not remedied until March 2015
12582 so we retain the previous behavior to avoid breaking
12583 compatibility.
12584
12585 Note that the memset is a March 2015 addition; older
12586 GDBs set st_size *and nothing else* so the structure
12587 would have garbage in all other fields. This might
12588 break something but retaining the previous behavior
12589 here would be just too wrong. */
12590
12591 memset (st, 0, sizeof (struct stat));
12592 st->st_size = INT_MAX;
12593 return 0;
12594 }
12595
0a93529c
GB
12596 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12597 (gdb_byte *) &fst, sizeof (fst));
12598
12599 if (read_len != ret)
12600 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12601
12602 if (read_len != sizeof (fst))
12603 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12604 read_len, (int) sizeof (fst));
12605
12606 remote_fileio_to_host_stat (&fst, st);
12607
12608 return 0;
12609}
12610
12e2a5fd 12611/* Implementation of to_filesystem_is_local. */
e3dd7556 12612
57810aa7 12613bool
f6ac5f3d 12614remote_target::filesystem_is_local ()
e3dd7556
GB
12615{
12616 /* Valgrind GDB presents itself as a remote target but works
12617 on the local filesystem: it does not implement remote get
12618 and users are not expected to set a sysroot. To handle
12619 this case we treat the remote filesystem as local if the
12620 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12621 does not support vFile:open. */
a3be80c3 12622 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12623 {
12624 enum packet_support ps = packet_support (PACKET_vFile_open);
12625
12626 if (ps == PACKET_SUPPORT_UNKNOWN)
12627 {
12628 int fd, remote_errno;
12629
12630 /* Try opening a file to probe support. The supplied
12631 filename is irrelevant, we only care about whether
12632 the stub recognizes the packet or not. */
6b8edb51 12633 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12634 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12635 &remote_errno);
12636
12637 if (fd >= 0)
6b8edb51 12638 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12639
12640 ps = packet_support (PACKET_vFile_open);
12641 }
12642
12643 if (ps == PACKET_DISABLE)
12644 {
12645 static int warning_issued = 0;
12646
12647 if (!warning_issued)
12648 {
12649 warning (_("remote target does not support file"
12650 " transfer, attempting to access files"
12651 " from local filesystem."));
12652 warning_issued = 1;
12653 }
12654
57810aa7 12655 return true;
e3dd7556
GB
12656 }
12657 }
12658
57810aa7 12659 return false;
e3dd7556
GB
12660}
12661
a6b151f1
DJ
12662static int
12663remote_fileio_errno_to_host (int errnum)
12664{
12665 switch (errnum)
12666 {
12667 case FILEIO_EPERM:
dda83cd7 12668 return EPERM;
a6b151f1 12669 case FILEIO_ENOENT:
dda83cd7 12670 return ENOENT;
a6b151f1 12671 case FILEIO_EINTR:
dda83cd7 12672 return EINTR;
a6b151f1 12673 case FILEIO_EIO:
dda83cd7 12674 return EIO;
a6b151f1 12675 case FILEIO_EBADF:
dda83cd7 12676 return EBADF;
a6b151f1 12677 case FILEIO_EACCES:
dda83cd7 12678 return EACCES;
a6b151f1 12679 case FILEIO_EFAULT:
dda83cd7 12680 return EFAULT;
a6b151f1 12681 case FILEIO_EBUSY:
dda83cd7 12682 return EBUSY;
a6b151f1 12683 case FILEIO_EEXIST:
dda83cd7 12684 return EEXIST;
a6b151f1 12685 case FILEIO_ENODEV:
dda83cd7 12686 return ENODEV;
a6b151f1 12687 case FILEIO_ENOTDIR:
dda83cd7 12688 return ENOTDIR;
a6b151f1 12689 case FILEIO_EISDIR:
dda83cd7 12690 return EISDIR;
a6b151f1 12691 case FILEIO_EINVAL:
dda83cd7 12692 return EINVAL;
a6b151f1 12693 case FILEIO_ENFILE:
dda83cd7 12694 return ENFILE;
a6b151f1 12695 case FILEIO_EMFILE:
dda83cd7 12696 return EMFILE;
a6b151f1 12697 case FILEIO_EFBIG:
dda83cd7 12698 return EFBIG;
a6b151f1 12699 case FILEIO_ENOSPC:
dda83cd7 12700 return ENOSPC;
a6b151f1 12701 case FILEIO_ESPIPE:
dda83cd7 12702 return ESPIPE;
a6b151f1 12703 case FILEIO_EROFS:
dda83cd7 12704 return EROFS;
a6b151f1 12705 case FILEIO_ENOSYS:
dda83cd7 12706 return ENOSYS;
a6b151f1 12707 case FILEIO_ENAMETOOLONG:
dda83cd7 12708 return ENAMETOOLONG;
a6b151f1
DJ
12709 }
12710 return -1;
12711}
12712
12713static char *
12714remote_hostio_error (int errnum)
12715{
12716 int host_error = remote_fileio_errno_to_host (errnum);
12717
12718 if (host_error == -1)
12719 error (_("Unknown remote I/O error %d"), errnum);
12720 else
12721 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12722}
12723
440b7aec
PA
12724/* A RAII wrapper around a remote file descriptor. */
12725
12726class scoped_remote_fd
a6b151f1 12727{
440b7aec 12728public:
6b8edb51
PA
12729 scoped_remote_fd (remote_target *remote, int fd)
12730 : m_remote (remote), m_fd (fd)
440b7aec
PA
12731 {
12732 }
a6b151f1 12733
440b7aec
PA
12734 ~scoped_remote_fd ()
12735 {
12736 if (m_fd != -1)
12737 {
12738 try
12739 {
12740 int remote_errno;
6b8edb51 12741 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12742 }
12743 catch (...)
12744 {
12745 /* Swallow exception before it escapes the dtor. If
12746 something goes wrong, likely the connection is gone,
12747 and there's nothing else that can be done. */
12748 }
12749 }
12750 }
12751
12752 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12753
12754 /* Release ownership of the file descriptor, and return it. */
88a774b9 12755 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12756 {
12757 int fd = m_fd;
12758 m_fd = -1;
12759 return fd;
12760 }
12761
12762 /* Return the owned file descriptor. */
12763 int get () const noexcept
12764 {
12765 return m_fd;
12766 }
12767
12768private:
6b8edb51
PA
12769 /* The remote target. */
12770 remote_target *m_remote;
12771
440b7aec
PA
12772 /* The owned remote I/O file descriptor. */
12773 int m_fd;
12774};
a6b151f1
DJ
12775
12776void
12777remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12778{
12779 remote_target *remote = get_current_remote_target ();
12780
12781 if (remote == nullptr)
12782 error (_("command can only be used with remote target"));
12783
12784 remote->remote_file_put (local_file, remote_file, from_tty);
12785}
12786
12787void
12788remote_target::remote_file_put (const char *local_file, const char *remote_file,
12789 int from_tty)
a6b151f1 12790{
440b7aec 12791 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12792 int bytes_in_buffer;
12793 int saw_eof;
12794 ULONGEST offset;
a6b151f1 12795
d419f42d 12796 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12797 if (file == NULL)
12798 perror_with_name (local_file);
a6b151f1 12799
440b7aec 12800 scoped_remote_fd fd
6b8edb51
PA
12801 (this, remote_hostio_open (NULL,
12802 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12803 | FILEIO_O_TRUNC),
12804 0700, 0, &remote_errno));
440b7aec 12805 if (fd.get () == -1)
a6b151f1
DJ
12806 remote_hostio_error (remote_errno);
12807
12808 /* Send up to this many bytes at once. They won't all fit in the
12809 remote packet limit, so we'll transfer slightly fewer. */
12810 io_size = get_remote_packet_size ();
5ca3b260 12811 gdb::byte_vector buffer (io_size);
a6b151f1 12812
a6b151f1
DJ
12813 bytes_in_buffer = 0;
12814 saw_eof = 0;
12815 offset = 0;
12816 while (bytes_in_buffer || !saw_eof)
12817 {
12818 if (!saw_eof)
12819 {
5ca3b260 12820 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12821 io_size - bytes_in_buffer,
d419f42d 12822 file.get ());
a6b151f1
DJ
12823 if (bytes == 0)
12824 {
d419f42d 12825 if (ferror (file.get ()))
a6b151f1
DJ
12826 error (_("Error reading %s."), local_file);
12827 else
12828 {
12829 /* EOF. Unless there is something still in the
12830 buffer from the last iteration, we are done. */
12831 saw_eof = 1;
12832 if (bytes_in_buffer == 0)
12833 break;
12834 }
12835 }
12836 }
12837 else
12838 bytes = 0;
12839
12840 bytes += bytes_in_buffer;
12841 bytes_in_buffer = 0;
12842
5ca3b260 12843 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12844 offset, &remote_errno);
a6b151f1
DJ
12845
12846 if (retcode < 0)
12847 remote_hostio_error (remote_errno);
12848 else if (retcode == 0)
12849 error (_("Remote write of %d bytes returned 0!"), bytes);
12850 else if (retcode < bytes)
12851 {
12852 /* Short write. Save the rest of the read data for the next
12853 write. */
12854 bytes_in_buffer = bytes - retcode;
5ca3b260 12855 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12856 }
12857
12858 offset += retcode;
12859 }
12860
6b8edb51 12861 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12862 remote_hostio_error (remote_errno);
12863
12864 if (from_tty)
12865 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12866}
12867
12868void
12869remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12870{
12871 remote_target *remote = get_current_remote_target ();
12872
12873 if (remote == nullptr)
12874 error (_("command can only be used with remote target"));
12875
12876 remote->remote_file_get (remote_file, local_file, from_tty);
12877}
12878
12879void
12880remote_target::remote_file_get (const char *remote_file, const char *local_file,
12881 int from_tty)
a6b151f1 12882{
440b7aec 12883 int remote_errno, bytes, io_size;
a6b151f1 12884 ULONGEST offset;
a6b151f1 12885
440b7aec 12886 scoped_remote_fd fd
6b8edb51
PA
12887 (this, remote_hostio_open (NULL,
12888 remote_file, FILEIO_O_RDONLY, 0, 0,
12889 &remote_errno));
440b7aec 12890 if (fd.get () == -1)
a6b151f1
DJ
12891 remote_hostio_error (remote_errno);
12892
d419f42d 12893 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12894 if (file == NULL)
12895 perror_with_name (local_file);
a6b151f1
DJ
12896
12897 /* Send up to this many bytes at once. They won't all fit in the
12898 remote packet limit, so we'll transfer slightly fewer. */
12899 io_size = get_remote_packet_size ();
5ca3b260 12900 gdb::byte_vector buffer (io_size);
a6b151f1 12901
a6b151f1
DJ
12902 offset = 0;
12903 while (1)
12904 {
5ca3b260 12905 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12906 &remote_errno);
a6b151f1
DJ
12907 if (bytes == 0)
12908 /* Success, but no bytes, means end-of-file. */
12909 break;
12910 if (bytes == -1)
12911 remote_hostio_error (remote_errno);
12912
12913 offset += bytes;
12914
5ca3b260 12915 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12916 if (bytes == 0)
12917 perror_with_name (local_file);
12918 }
12919
6b8edb51 12920 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12921 remote_hostio_error (remote_errno);
12922
12923 if (from_tty)
12924 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12925}
12926
12927void
12928remote_file_delete (const char *remote_file, int from_tty)
12929{
6b8edb51 12930 remote_target *remote = get_current_remote_target ();
a6b151f1 12931
6b8edb51 12932 if (remote == nullptr)
a6b151f1
DJ
12933 error (_("command can only be used with remote target"));
12934
6b8edb51
PA
12935 remote->remote_file_delete (remote_file, from_tty);
12936}
12937
12938void
12939remote_target::remote_file_delete (const char *remote_file, int from_tty)
12940{
12941 int retcode, remote_errno;
12942
12943 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12944 if (retcode == -1)
12945 remote_hostio_error (remote_errno);
12946
12947 if (from_tty)
12948 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12949}
12950
12951static void
ac88e2de 12952remote_put_command (const char *args, int from_tty)
a6b151f1 12953{
d1a41061
PP
12954 if (args == NULL)
12955 error_no_arg (_("file to put"));
12956
773a1edc 12957 gdb_argv argv (args);
a6b151f1
DJ
12958 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12959 error (_("Invalid parameters to remote put"));
12960
12961 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12962}
12963
12964static void
ac88e2de 12965remote_get_command (const char *args, int from_tty)
a6b151f1 12966{
d1a41061
PP
12967 if (args == NULL)
12968 error_no_arg (_("file to get"));
12969
773a1edc 12970 gdb_argv argv (args);
a6b151f1
DJ
12971 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12972 error (_("Invalid parameters to remote get"));
12973
12974 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12975}
12976
12977static void
ac88e2de 12978remote_delete_command (const char *args, int from_tty)
a6b151f1 12979{
d1a41061
PP
12980 if (args == NULL)
12981 error_no_arg (_("file to delete"));
12982
773a1edc 12983 gdb_argv argv (args);
a6b151f1
DJ
12984 if (argv[0] == NULL || argv[1] != NULL)
12985 error (_("Invalid parameters to remote delete"));
12986
12987 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12988}
12989
57810aa7 12990bool
f6ac5f3d 12991remote_target::can_execute_reverse ()
b2175913 12992{
4082afcc
PA
12993 if (packet_support (PACKET_bs) == PACKET_ENABLE
12994 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12995 return true;
40ab02ce 12996 else
57810aa7 12997 return false;
b2175913
MS
12998}
12999
57810aa7 13000bool
f6ac5f3d 13001remote_target::supports_non_stop ()
74531fed 13002{
57810aa7 13003 return true;
74531fed
PA
13004}
13005
57810aa7 13006bool
f6ac5f3d 13007remote_target::supports_disable_randomization ()
03583c20
UW
13008{
13009 /* Only supported in extended mode. */
57810aa7 13010 return false;
03583c20
UW
13011}
13012
57810aa7 13013bool
f6ac5f3d 13014remote_target::supports_multi_process ()
8a305172
PA
13015{
13016 struct remote_state *rs = get_remote_state ();
a744cf53 13017
8020350c 13018 return remote_multi_process_p (rs);
8a305172
PA
13019}
13020
70221824 13021static int
f6ac5f3d 13022remote_supports_cond_tracepoints ()
782b2b07 13023{
4082afcc 13024 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
13025}
13026
57810aa7 13027bool
f6ac5f3d 13028remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 13029{
4082afcc 13030 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
13031}
13032
70221824 13033static int
f6ac5f3d 13034remote_supports_fast_tracepoints ()
7a697b8d 13035{
4082afcc 13036 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
13037}
13038
0fb4aa4b 13039static int
f6ac5f3d 13040remote_supports_static_tracepoints ()
0fb4aa4b 13041{
4082afcc 13042 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
13043}
13044
1e4d1764 13045static int
f6ac5f3d 13046remote_supports_install_in_trace ()
1e4d1764 13047{
4082afcc 13048 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
13049}
13050
57810aa7 13051bool
f6ac5f3d 13052remote_target::supports_enable_disable_tracepoint ()
d248b706 13053{
4082afcc
PA
13054 return (packet_support (PACKET_EnableDisableTracepoints_feature)
13055 == PACKET_ENABLE);
d248b706
KY
13056}
13057
57810aa7 13058bool
f6ac5f3d 13059remote_target::supports_string_tracing ()
3065dfb6 13060{
4082afcc 13061 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
13062}
13063
57810aa7 13064bool
f6ac5f3d 13065remote_target::can_run_breakpoint_commands ()
d3ce09f5 13066{
4082afcc 13067 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
13068}
13069
f6ac5f3d
PA
13070void
13071remote_target::trace_init ()
35b1e5cc 13072{
b6bb3468
PA
13073 struct remote_state *rs = get_remote_state ();
13074
35b1e5cc 13075 putpkt ("QTinit");
b6bb3468 13076 remote_get_noisy_reply ();
8d64371b 13077 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
13078 error (_("Target does not support this command."));
13079}
13080
409873ef
SS
13081/* Recursive routine to walk through command list including loops, and
13082 download packets for each command. */
13083
6b8edb51
PA
13084void
13085remote_target::remote_download_command_source (int num, ULONGEST addr,
13086 struct command_line *cmds)
409873ef
SS
13087{
13088 struct remote_state *rs = get_remote_state ();
13089 struct command_line *cmd;
13090
13091 for (cmd = cmds; cmd; cmd = cmd->next)
13092 {
0df8b418 13093 QUIT; /* Allow user to bail out with ^C. */
8d64371b 13094 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 13095 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
13096 rs->buf.data () + strlen (rs->buf.data ()),
13097 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 13098 putpkt (rs->buf);
b6bb3468 13099 remote_get_noisy_reply ();
8d64371b 13100 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
13101 warning (_("Target does not support source download."));
13102
13103 if (cmd->control_type == while_control
13104 || cmd->control_type == while_stepping_control)
13105 {
12973681 13106 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 13107
0df8b418 13108 QUIT; /* Allow user to bail out with ^C. */
8d64371b 13109 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 13110 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
13111 rs->buf.data () + strlen (rs->buf.data ()),
13112 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 13113 putpkt (rs->buf);
b6bb3468 13114 remote_get_noisy_reply ();
8d64371b 13115 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
13116 warning (_("Target does not support source download."));
13117 }
13118 }
13119}
13120
f6ac5f3d
PA
13121void
13122remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
13123{
13124 CORE_ADDR tpaddr;
409873ef 13125 char addrbuf[40];
b44ec619
SM
13126 std::vector<std::string> tdp_actions;
13127 std::vector<std::string> stepping_actions;
35b1e5cc 13128 char *pkt;
e8ba3115 13129 struct breakpoint *b = loc->owner;
d9b3f62e 13130 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 13131 struct remote_state *rs = get_remote_state ();
3df3a985 13132 int ret;
ff36536c 13133 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
13134 size_t size_left;
13135
13136 /* We use a buffer other than rs->buf because we'll build strings
13137 across multiple statements, and other statements in between could
13138 modify rs->buf. */
13139 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 13140
dc673c81 13141 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
13142
13143 tpaddr = loc->address;
53807e9f 13144 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
3df3a985
PFC
13145 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
13146 b->number, addrbuf, /* address */
13147 (b->enable_state == bp_enabled ? 'E' : 'D'),
13148 t->step_count, t->pass_count);
13149
13150 if (ret < 0 || ret >= buf.size ())
a7f25a84 13151 error ("%s", err_msg);
3df3a985 13152
e8ba3115
YQ
13153 /* Fast tracepoints are mostly handled by the target, but we can
13154 tell the target how big of an instruction block should be moved
13155 around. */
13156 if (b->type == bp_fast_tracepoint)
13157 {
13158 /* Only test for support at download time; we may not know
13159 target capabilities at definition time. */
13160 if (remote_supports_fast_tracepoints ())
35b1e5cc 13161 {
6b940e6a
PL
13162 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
13163 NULL))
3df3a985
PFC
13164 {
13165 size_left = buf.size () - strlen (buf.data ());
13166 ret = snprintf (buf.data () + strlen (buf.data ()),
13167 size_left, ":F%x",
13168 gdb_insn_length (loc->gdbarch, tpaddr));
13169
13170 if (ret < 0 || ret >= size_left)
a7f25a84 13171 error ("%s", err_msg);
3df3a985 13172 }
35b1e5cc 13173 else
e8ba3115
YQ
13174 /* If it passed validation at definition but fails now,
13175 something is very wrong. */
13176 internal_error (__FILE__, __LINE__,
13177 _("Fast tracepoint not "
13178 "valid during download"));
35b1e5cc 13179 }
e8ba3115
YQ
13180 else
13181 /* Fast tracepoints are functionally identical to regular
13182 tracepoints, so don't take lack of support as a reason to
13183 give up on the trace run. */
13184 warning (_("Target does not support fast tracepoints, "
13185 "downloading %d as regular tracepoint"), b->number);
13186 }
13187 else if (b->type == bp_static_tracepoint)
13188 {
13189 /* Only test for support at download time; we may not know
13190 target capabilities at definition time. */
13191 if (remote_supports_static_tracepoints ())
0fb4aa4b 13192 {
e8ba3115 13193 struct static_tracepoint_marker marker;
0fb4aa4b 13194
e8ba3115 13195 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
13196 {
13197 size_left = buf.size () - strlen (buf.data ());
13198 ret = snprintf (buf.data () + strlen (buf.data ()),
13199 size_left, ":S");
13200
13201 if (ret < 0 || ret >= size_left)
a7f25a84 13202 error ("%s", err_msg);
3df3a985 13203 }
0fb4aa4b 13204 else
e8ba3115 13205 error (_("Static tracepoint not valid during download"));
0fb4aa4b 13206 }
e8ba3115
YQ
13207 else
13208 /* Fast tracepoints are functionally identical to regular
13209 tracepoints, so don't take lack of support as a reason
13210 to give up on the trace run. */
13211 error (_("Target does not support static tracepoints"));
13212 }
13213 /* If the tracepoint has a conditional, make it into an agent
13214 expression and append to the definition. */
13215 if (loc->cond)
13216 {
13217 /* Only test support at download time, we may not know target
13218 capabilities at definition time. */
13219 if (remote_supports_cond_tracepoints ())
35b1e5cc 13220 {
3df3a985
PFC
13221 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
13222 loc->cond.get ());
13223
13224 size_left = buf.size () - strlen (buf.data ());
13225
13226 ret = snprintf (buf.data () + strlen (buf.data ()),
13227 size_left, ":X%x,", aexpr->len);
13228
13229 if (ret < 0 || ret >= size_left)
a7f25a84 13230 error ("%s", err_msg);
3df3a985
PFC
13231
13232 size_left = buf.size () - strlen (buf.data ());
13233
13234 /* Two bytes to encode each aexpr byte, plus the terminating
13235 null byte. */
13236 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 13237 error ("%s", err_msg);
3df3a985
PFC
13238
13239 pkt = buf.data () + strlen (buf.data ());
13240
b44ec619 13241 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
13242 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
13243 *pkt = '\0';
35b1e5cc 13244 }
e8ba3115
YQ
13245 else
13246 warning (_("Target does not support conditional tracepoints, "
13247 "ignoring tp %d cond"), b->number);
13248 }
35b1e5cc 13249
d9b3f62e 13250 if (b->commands || *default_collect)
3df3a985
PFC
13251 {
13252 size_left = buf.size () - strlen (buf.data ());
13253
13254 ret = snprintf (buf.data () + strlen (buf.data ()),
13255 size_left, "-");
13256
13257 if (ret < 0 || ret >= size_left)
a7f25a84 13258 error ("%s", err_msg);
3df3a985
PFC
13259 }
13260
13261 putpkt (buf.data ());
b6bb3468 13262 remote_get_noisy_reply ();
8d64371b 13263 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13264 error (_("Target does not support tracepoints."));
35b1e5cc 13265
e8ba3115 13266 /* do_single_steps (t); */
b44ec619
SM
13267 for (auto action_it = tdp_actions.begin ();
13268 action_it != tdp_actions.end (); action_it++)
e8ba3115 13269 {
b44ec619
SM
13270 QUIT; /* Allow user to bail out with ^C. */
13271
aa6f3694 13272 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
13273 || !stepping_actions.empty ());
13274
3df3a985
PFC
13275 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13276 b->number, addrbuf, /* address */
13277 action_it->c_str (),
13278 has_more ? '-' : 0);
13279
13280 if (ret < 0 || ret >= buf.size ())
a7f25a84 13281 error ("%s", err_msg);
3df3a985
PFC
13282
13283 putpkt (buf.data ());
b44ec619 13284 remote_get_noisy_reply ();
8d64371b 13285 if (strcmp (rs->buf.data (), "OK"))
b44ec619 13286 error (_("Error on target while setting tracepoints."));
e8ba3115 13287 }
409873ef 13288
05abfc39
PFC
13289 for (auto action_it = stepping_actions.begin ();
13290 action_it != stepping_actions.end (); action_it++)
13291 {
13292 QUIT; /* Allow user to bail out with ^C. */
13293
13294 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 13295 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 13296
3df3a985
PFC
13297 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13298 b->number, addrbuf, /* address */
13299 is_first ? "S" : "",
13300 action_it->c_str (),
13301 has_more ? "-" : "");
13302
13303 if (ret < 0 || ret >= buf.size ())
a7f25a84 13304 error ("%s", err_msg);
3df3a985
PFC
13305
13306 putpkt (buf.data ());
05abfc39 13307 remote_get_noisy_reply ();
8d64371b 13308 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
13309 error (_("Error on target while setting tracepoints."));
13310 }
b44ec619 13311
4082afcc 13312 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 13313 {
f00aae0f 13314 if (b->location != NULL)
409873ef 13315 {
3df3a985
PFC
13316 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13317
13318 if (ret < 0 || ret >= buf.size ())
a7f25a84 13319 error ("%s", err_msg);
3df3a985 13320
f00aae0f 13321 encode_source_string (b->number, loc->address, "at",
d28cd78a 13322 event_location_to_string (b->location.get ()),
3df3a985
PFC
13323 buf.data () + strlen (buf.data ()),
13324 buf.size () - strlen (buf.data ()));
13325 putpkt (buf.data ());
b6bb3468 13326 remote_get_noisy_reply ();
8d64371b 13327 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13328 warning (_("Target does not support source download."));
409873ef 13329 }
e8ba3115
YQ
13330 if (b->cond_string)
13331 {
3df3a985
PFC
13332 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13333
13334 if (ret < 0 || ret >= buf.size ())
a7f25a84 13335 error ("%s", err_msg);
3df3a985 13336
e8ba3115 13337 encode_source_string (b->number, loc->address,
3df3a985
PFC
13338 "cond", b->cond_string,
13339 buf.data () + strlen (buf.data ()),
13340 buf.size () - strlen (buf.data ()));
13341 putpkt (buf.data ());
b6bb3468 13342 remote_get_noisy_reply ();
8d64371b 13343 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13344 warning (_("Target does not support source download."));
13345 }
13346 remote_download_command_source (b->number, loc->address,
13347 breakpoint_commands (b));
35b1e5cc 13348 }
35b1e5cc
SS
13349}
13350
57810aa7 13351bool
f6ac5f3d 13352remote_target::can_download_tracepoint ()
1e4d1764 13353{
1e51243a
PA
13354 struct remote_state *rs = get_remote_state ();
13355 struct trace_status *ts;
13356 int status;
13357
13358 /* Don't try to install tracepoints until we've relocated our
13359 symbols, and fetched and merged the target's tracepoint list with
13360 ours. */
13361 if (rs->starting_up)
57810aa7 13362 return false;
1e51243a
PA
13363
13364 ts = current_trace_status ();
f6ac5f3d 13365 status = get_trace_status (ts);
1e4d1764
YQ
13366
13367 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13368 return false;
1e4d1764
YQ
13369
13370 /* If we are in a tracing experiment, but remote stub doesn't support
13371 installing tracepoint in trace, we have to return. */
13372 if (!remote_supports_install_in_trace ())
57810aa7 13373 return false;
1e4d1764 13374
57810aa7 13375 return true;
1e4d1764
YQ
13376}
13377
13378
f6ac5f3d
PA
13379void
13380remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13381{
13382 struct remote_state *rs = get_remote_state ();
00bf0b85 13383 char *p;
35b1e5cc 13384
8d64371b 13385 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13386 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13387 tsv.builtin);
8d64371b
TT
13388 p = rs->buf.data () + strlen (rs->buf.data ());
13389 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13390 >= get_remote_packet_size ())
00bf0b85 13391 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13392 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13393 *p++ = '\0';
35b1e5cc 13394 putpkt (rs->buf);
b6bb3468 13395 remote_get_noisy_reply ();
8d64371b 13396 if (rs->buf[0] == '\0')
ad91cd99 13397 error (_("Target does not support this command."));
8d64371b 13398 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13399 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13400}
13401
f6ac5f3d
PA
13402void
13403remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13404{
13405 struct remote_state *rs = get_remote_state ();
d248b706 13406
8d64371b 13407 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
53807e9f
TT
13408 location->owner->number,
13409 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13410 putpkt (rs->buf);
b6bb3468 13411 remote_get_noisy_reply ();
8d64371b 13412 if (rs->buf[0] == '\0')
d248b706 13413 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13414 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13415 error (_("Error on target while enabling tracepoint."));
13416}
13417
f6ac5f3d
PA
13418void
13419remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13420{
13421 struct remote_state *rs = get_remote_state ();
d248b706 13422
8d64371b 13423 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
53807e9f
TT
13424 location->owner->number,
13425 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13426 putpkt (rs->buf);
b6bb3468 13427 remote_get_noisy_reply ();
8d64371b 13428 if (rs->buf[0] == '\0')
d248b706 13429 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13430 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13431 error (_("Error on target while disabling tracepoint."));
13432}
13433
f6ac5f3d
PA
13434void
13435remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13436{
13437 asection *s;
13438 bfd_size_type size;
608bcef2 13439 bfd_vma vma;
35b1e5cc 13440 int anysecs = 0;
c2fa21f1 13441 int offset = 0;
35b1e5cc 13442
7e10abd1 13443 if (!current_program_space->exec_bfd ())
35b1e5cc
SS
13444 return; /* No information to give. */
13445
b6bb3468
PA
13446 struct remote_state *rs = get_remote_state ();
13447
8d64371b
TT
13448 strcpy (rs->buf.data (), "QTro");
13449 offset = strlen (rs->buf.data ());
7e10abd1 13450 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
35b1e5cc
SS
13451 {
13452 char tmp1[40], tmp2[40];
c2fa21f1 13453 int sec_length;
35b1e5cc
SS
13454
13455 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13456 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13457 (s->flags & SEC_READONLY) == 0)
13458 continue;
13459
13460 anysecs = 1;
fd361982
AM
13461 vma = bfd_section_vma (s);
13462 size = bfd_section_size (s);
608bcef2
HZ
13463 sprintf_vma (tmp1, vma);
13464 sprintf_vma (tmp2, vma + size);
c2fa21f1 13465 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13466 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13467 {
4082afcc 13468 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13469 warning (_("\
c2fa21f1
HZ
13470Too many sections for read-only sections definition packet."));
13471 break;
13472 }
8d64371b 13473 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13474 tmp1, tmp2);
c2fa21f1 13475 offset += sec_length;
35b1e5cc
SS
13476 }
13477 if (anysecs)
13478 {
b6bb3468 13479 putpkt (rs->buf);
8d64371b 13480 getpkt (&rs->buf, 0);
35b1e5cc
SS
13481 }
13482}
13483
f6ac5f3d
PA
13484void
13485remote_target::trace_start ()
35b1e5cc 13486{
b6bb3468
PA
13487 struct remote_state *rs = get_remote_state ();
13488
35b1e5cc 13489 putpkt ("QTStart");
b6bb3468 13490 remote_get_noisy_reply ();
8d64371b 13491 if (rs->buf[0] == '\0')
ad91cd99 13492 error (_("Target does not support this command."));
8d64371b
TT
13493 if (strcmp (rs->buf.data (), "OK") != 0)
13494 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13495}
13496
f6ac5f3d
PA
13497int
13498remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13499{
953b98d1 13500 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13501 char *p = NULL;
bd3eecc3 13502 enum packet_result result;
b6bb3468 13503 struct remote_state *rs = get_remote_state ();
bd3eecc3 13504
4082afcc 13505 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13506 return -1;
a744cf53 13507
7b9a15e1 13508 /* FIXME we need to get register block size some other way. */
5cd63fda 13509 trace_regblock_size
9d6eea31 13510 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13511
049dc89b
JK
13512 putpkt ("qTStatus");
13513
a70b8144 13514 try
67f41397 13515 {
b6bb3468 13516 p = remote_get_noisy_reply ();
67f41397 13517 }
230d2906 13518 catch (const gdb_exception_error &ex)
67f41397 13519 {
598d3636
JK
13520 if (ex.error != TARGET_CLOSE_ERROR)
13521 {
13522 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13523 return -1;
13524 }
eedc3f4f 13525 throw;
67f41397 13526 }
00bf0b85 13527
bd3eecc3
PA
13528 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13529
00bf0b85 13530 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13531 if (result == PACKET_UNKNOWN)
00bf0b85 13532 return -1;
35b1e5cc 13533
00bf0b85 13534 /* We're working with a live target. */
f5911ea1 13535 ts->filename = NULL;
00bf0b85 13536
00bf0b85 13537 if (*p++ != 'T')
8d64371b 13538 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13539
84cebc4a
YQ
13540 /* Function 'parse_trace_status' sets default value of each field of
13541 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13542 parse_trace_status (p, ts);
13543
13544 return ts->running;
35b1e5cc
SS
13545}
13546
f6ac5f3d
PA
13547void
13548remote_target::get_tracepoint_status (struct breakpoint *bp,
13549 struct uploaded_tp *utp)
f196051f
SS
13550{
13551 struct remote_state *rs = get_remote_state ();
f196051f 13552 char *reply;
f196051f 13553 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13554 size_t size = get_remote_packet_size ();
f196051f
SS
13555
13556 if (tp)
13557 {
c1fc2657 13558 tp->hit_count = 0;
f196051f 13559 tp->traceframe_usage = 0;
40cb8ca5 13560 for (bp_location *loc : tp->locations ())
f196051f
SS
13561 {
13562 /* If the tracepoint was never downloaded, don't go asking for
13563 any status. */
13564 if (tp->number_on_target == 0)
13565 continue;
8d64371b 13566 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13567 phex_nz (loc->address, 0));
f196051f 13568 putpkt (rs->buf);
b6bb3468 13569 reply = remote_get_noisy_reply ();
f196051f
SS
13570 if (reply && *reply)
13571 {
13572 if (*reply == 'V')
13573 parse_tracepoint_status (reply + 1, bp, utp);
13574 }
13575 }
13576 }
13577 else if (utp)
13578 {
13579 utp->hit_count = 0;
13580 utp->traceframe_usage = 0;
8d64371b 13581 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13582 phex_nz (utp->addr, 0));
f196051f 13583 putpkt (rs->buf);
b6bb3468 13584 reply = remote_get_noisy_reply ();
f196051f
SS
13585 if (reply && *reply)
13586 {
13587 if (*reply == 'V')
13588 parse_tracepoint_status (reply + 1, bp, utp);
13589 }
13590 }
13591}
13592
f6ac5f3d
PA
13593void
13594remote_target::trace_stop ()
35b1e5cc 13595{
b6bb3468
PA
13596 struct remote_state *rs = get_remote_state ();
13597
35b1e5cc 13598 putpkt ("QTStop");
b6bb3468 13599 remote_get_noisy_reply ();
8d64371b 13600 if (rs->buf[0] == '\0')
ad91cd99 13601 error (_("Target does not support this command."));
8d64371b
TT
13602 if (strcmp (rs->buf.data (), "OK") != 0)
13603 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13604}
13605
f6ac5f3d
PA
13606int
13607remote_target::trace_find (enum trace_find_type type, int num,
13608 CORE_ADDR addr1, CORE_ADDR addr2,
13609 int *tpp)
35b1e5cc
SS
13610{
13611 struct remote_state *rs = get_remote_state ();
8d64371b 13612 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13613 char *p, *reply;
13614 int target_frameno = -1, target_tracept = -1;
13615
e6e4e701
PA
13616 /* Lookups other than by absolute frame number depend on the current
13617 trace selected, so make sure it is correct on the remote end
13618 first. */
13619 if (type != tfind_number)
13620 set_remote_traceframe ();
13621
8d64371b 13622 p = rs->buf.data ();
35b1e5cc
SS
13623 strcpy (p, "QTFrame:");
13624 p = strchr (p, '\0');
13625 switch (type)
13626 {
13627 case tfind_number:
bba74b36 13628 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13629 break;
13630 case tfind_pc:
bba74b36 13631 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13632 break;
13633 case tfind_tp:
bba74b36 13634 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13635 break;
13636 case tfind_range:
bba74b36
YQ
13637 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13638 phex_nz (addr2, 0));
35b1e5cc
SS
13639 break;
13640 case tfind_outside:
bba74b36
YQ
13641 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13642 phex_nz (addr2, 0));
35b1e5cc
SS
13643 break;
13644 default:
9b20d036 13645 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13646 }
13647
13648 putpkt (rs->buf);
b6bb3468 13649 reply = remote_get_noisy_reply ();
ad91cd99
PA
13650 if (*reply == '\0')
13651 error (_("Target does not support this command."));
35b1e5cc
SS
13652
13653 while (reply && *reply)
13654 switch (*reply)
13655 {
13656 case 'F':
f197e0f1
VP
13657 p = ++reply;
13658 target_frameno = (int) strtol (p, &reply, 16);
13659 if (reply == p)
13660 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13661 /* Don't update our remote traceframe number cache on failure
13662 to select a remote traceframe. */
f197e0f1
VP
13663 if (target_frameno == -1)
13664 return -1;
35b1e5cc
SS
13665 break;
13666 case 'T':
f197e0f1
VP
13667 p = ++reply;
13668 target_tracept = (int) strtol (p, &reply, 16);
13669 if (reply == p)
13670 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13671 break;
13672 case 'O': /* "OK"? */
13673 if (reply[1] == 'K' && reply[2] == '\0')
13674 reply += 2;
13675 else
13676 error (_("Bogus reply from target: %s"), reply);
13677 break;
13678 default:
13679 error (_("Bogus reply from target: %s"), reply);
13680 }
13681 if (tpp)
13682 *tpp = target_tracept;
e6e4e701 13683
262e1174 13684 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13685 return target_frameno;
13686}
13687
57810aa7 13688bool
f6ac5f3d 13689remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13690{
13691 struct remote_state *rs = get_remote_state ();
13692 char *reply;
13693 ULONGEST uval;
13694
e6e4e701
PA
13695 set_remote_traceframe ();
13696
8d64371b 13697 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13698 putpkt (rs->buf);
b6bb3468 13699 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13700 if (reply && *reply)
13701 {
13702 if (*reply == 'V')
13703 {
13704 unpack_varlen_hex (reply + 1, &uval);
13705 *val = (LONGEST) uval;
57810aa7 13706 return true;
35b1e5cc
SS
13707 }
13708 }
57810aa7 13709 return false;
35b1e5cc
SS
13710}
13711
f6ac5f3d
PA
13712int
13713remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13714{
13715 struct remote_state *rs = get_remote_state ();
13716 char *p, *reply;
13717
8d64371b 13718 p = rs->buf.data ();
00bf0b85
SS
13719 strcpy (p, "QTSave:");
13720 p += strlen (p);
8d64371b
TT
13721 if ((p - rs->buf.data ()) + strlen (filename) * 2
13722 >= get_remote_packet_size ())
00bf0b85 13723 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13724 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13725 *p++ = '\0';
13726 putpkt (rs->buf);
b6bb3468 13727 reply = remote_get_noisy_reply ();
d6c5869f 13728 if (*reply == '\0')
ad91cd99
PA
13729 error (_("Target does not support this command."));
13730 if (strcmp (reply, "OK") != 0)
13731 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13732 return 0;
13733}
13734
13735/* This is basically a memory transfer, but needs to be its own packet
13736 because we don't know how the target actually organizes its trace
13737 memory, plus we want to be able to ask for as much as possible, but
13738 not be unhappy if we don't get as much as we ask for. */
13739
f6ac5f3d
PA
13740LONGEST
13741remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13742{
13743 struct remote_state *rs = get_remote_state ();
13744 char *reply;
13745 char *p;
13746 int rslt;
13747
8d64371b 13748 p = rs->buf.data ();
00bf0b85
SS
13749 strcpy (p, "qTBuffer:");
13750 p += strlen (p);
13751 p += hexnumstr (p, offset);
13752 *p++ = ',';
13753 p += hexnumstr (p, len);
13754 *p++ = '\0';
13755
13756 putpkt (rs->buf);
b6bb3468 13757 reply = remote_get_noisy_reply ();
00bf0b85
SS
13758 if (reply && *reply)
13759 {
13760 /* 'l' by itself means we're at the end of the buffer and
13761 there is nothing more to get. */
13762 if (*reply == 'l')
13763 return 0;
13764
13765 /* Convert the reply into binary. Limit the number of bytes to
13766 convert according to our passed-in buffer size, rather than
13767 what was returned in the packet; if the target is
13768 unexpectedly generous and gives us a bigger reply than we
13769 asked for, we don't want to crash. */
b6bb3468 13770 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13771 return rslt;
13772 }
13773
13774 /* Something went wrong, flag as an error. */
13775 return -1;
13776}
13777
f6ac5f3d
PA
13778void
13779remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13780{
13781 struct remote_state *rs = get_remote_state ();
13782
4082afcc 13783 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13784 {
ad91cd99
PA
13785 char *reply;
13786
8d64371b
TT
13787 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13788 "QTDisconnected:%x", val);
33da3f1c 13789 putpkt (rs->buf);
b6bb3468 13790 reply = remote_get_noisy_reply ();
ad91cd99 13791 if (*reply == '\0')
33da3f1c 13792 error (_("Target does not support this command."));
ad91cd99 13793 if (strcmp (reply, "OK") != 0)
dda83cd7 13794 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13795 }
13796 else if (val)
13797 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13798}
13799
f6ac5f3d
PA
13800int
13801remote_target::core_of_thread (ptid_t ptid)
dc146f7c 13802{
5b6d1e4f 13803 thread_info *info = find_thread_ptid (this, ptid);
a744cf53 13804
7aabaf9d
SM
13805 if (info != NULL && info->priv != NULL)
13806 return get_remote_thread_info (info)->core;
13807
dc146f7c
VP
13808 return -1;
13809}
13810
f6ac5f3d
PA
13811void
13812remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13813{
13814 struct remote_state *rs = get_remote_state ();
ad91cd99 13815 char *reply;
4daf5ac0 13816
8d64371b
TT
13817 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13818 "QTBuffer:circular:%x", val);
4daf5ac0 13819 putpkt (rs->buf);
b6bb3468 13820 reply = remote_get_noisy_reply ();
ad91cd99 13821 if (*reply == '\0')
4daf5ac0 13822 error (_("Target does not support this command."));
ad91cd99
PA
13823 if (strcmp (reply, "OK") != 0)
13824 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13825}
13826
f6ac5f3d
PA
13827traceframe_info_up
13828remote_target::traceframe_info ()
b3b9301e 13829{
9018be22 13830 gdb::optional<gdb::char_vector> text
328d42d8
SM
13831 = target_read_stralloc (current_inferior ()->top_target (),
13832 TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13833 NULL);
9018be22
SM
13834 if (text)
13835 return parse_traceframe_info (text->data ());
b3b9301e
PA
13836
13837 return NULL;
13838}
13839
405f8e94
SS
13840/* Handle the qTMinFTPILen packet. Returns the minimum length of
13841 instruction on which a fast tracepoint may be placed. Returns -1
13842 if the packet is not supported, and 0 if the minimum instruction
13843 length is unknown. */
13844
f6ac5f3d
PA
13845int
13846remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13847{
13848 struct remote_state *rs = get_remote_state ();
13849 char *reply;
13850
e886a173
PA
13851 /* If we're not debugging a process yet, the IPA can't be
13852 loaded. */
55f6301a 13853 if (!target_has_execution ())
e886a173
PA
13854 return 0;
13855
13856 /* Make sure the remote is pointing at the right process. */
13857 set_general_process ();
13858
8d64371b 13859 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13860 putpkt (rs->buf);
b6bb3468 13861 reply = remote_get_noisy_reply ();
405f8e94
SS
13862 if (*reply == '\0')
13863 return -1;
13864 else
13865 {
13866 ULONGEST min_insn_len;
13867
13868 unpack_varlen_hex (reply, &min_insn_len);
13869
13870 return (int) min_insn_len;
13871 }
13872}
13873
f6ac5f3d
PA
13874void
13875remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13876{
4082afcc 13877 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13878 {
13879 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13880 char *buf = rs->buf.data ();
13881 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13882 enum packet_result result;
13883
13884 gdb_assert (val >= 0 || val == -1);
13885 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13886 /* Send -1 as literal "-1" to avoid host size dependency. */
13887 if (val < 0)
13888 {
13889 *buf++ = '-';
dda83cd7 13890 buf += hexnumstr (buf, (ULONGEST) -val);
f6f899bf
HAQ
13891 }
13892 else
13893 buf += hexnumstr (buf, (ULONGEST) val);
13894
13895 putpkt (rs->buf);
b6bb3468 13896 remote_get_noisy_reply ();
f6f899bf
HAQ
13897 result = packet_ok (rs->buf,
13898 &remote_protocol_packets[PACKET_QTBuffer_size]);
13899
13900 if (result != PACKET_OK)
8d64371b 13901 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13902 }
13903}
13904
57810aa7 13905bool
f6ac5f3d
PA
13906remote_target::set_trace_notes (const char *user, const char *notes,
13907 const char *stop_notes)
f196051f
SS
13908{
13909 struct remote_state *rs = get_remote_state ();
13910 char *reply;
8d64371b
TT
13911 char *buf = rs->buf.data ();
13912 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13913 int nbytes;
13914
13915 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13916 if (user)
13917 {
13918 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13919 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13920 buf += 2 * nbytes;
13921 *buf++ = ';';
13922 }
13923 if (notes)
13924 {
13925 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13926 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13927 buf += 2 * nbytes;
13928 *buf++ = ';';
13929 }
13930 if (stop_notes)
13931 {
13932 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13933 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13934 buf += 2 * nbytes;
13935 *buf++ = ';';
13936 }
13937 /* Ensure the buffer is terminated. */
13938 *buf = '\0';
13939
13940 putpkt (rs->buf);
b6bb3468 13941 reply = remote_get_noisy_reply ();
f196051f 13942 if (*reply == '\0')
57810aa7 13943 return false;
f196051f
SS
13944
13945 if (strcmp (reply, "OK") != 0)
13946 error (_("Bogus reply from target: %s"), reply);
13947
57810aa7 13948 return true;
f196051f
SS
13949}
13950
57810aa7
PA
13951bool
13952remote_target::use_agent (bool use)
d1feda86 13953{
4082afcc 13954 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13955 {
13956 struct remote_state *rs = get_remote_state ();
13957
13958 /* If the stub supports QAgent. */
8d64371b 13959 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13960 putpkt (rs->buf);
8d64371b 13961 getpkt (&rs->buf, 0);
d1feda86 13962
8d64371b 13963 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13964 {
f6ac5f3d 13965 ::use_agent = use;
57810aa7 13966 return true;
d1feda86
YQ
13967 }
13968 }
13969
57810aa7 13970 return false;
d1feda86
YQ
13971}
13972
57810aa7 13973bool
f6ac5f3d 13974remote_target::can_use_agent ()
d1feda86 13975{
4082afcc 13976 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13977}
13978
9accd112
MM
13979struct btrace_target_info
13980{
13981 /* The ptid of the traced thread. */
13982 ptid_t ptid;
f4abbc16
MM
13983
13984 /* The obtained branch trace configuration. */
13985 struct btrace_config conf;
9accd112
MM
13986};
13987
f4abbc16
MM
13988/* Reset our idea of our target's btrace configuration. */
13989
13990static void
6b8edb51 13991remote_btrace_reset (remote_state *rs)
f4abbc16 13992{
f4abbc16
MM
13993 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13994}
13995
f4abbc16
MM
13996/* Synchronize the configuration with the target. */
13997
6b8edb51
PA
13998void
13999remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 14000{
d33501a5
MM
14001 struct packet_config *packet;
14002 struct remote_state *rs;
14003 char *buf, *pos, *endbuf;
14004
14005 rs = get_remote_state ();
8d64371b 14006 buf = rs->buf.data ();
d33501a5
MM
14007 endbuf = buf + get_remote_packet_size ();
14008
14009 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
14010 if (packet_config_support (packet) == PACKET_ENABLE
14011 && conf->bts.size != rs->btrace_config.bts.size)
14012 {
14013 pos = buf;
14014 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
dda83cd7 14015 conf->bts.size);
d33501a5
MM
14016
14017 putpkt (buf);
8d64371b 14018 getpkt (&rs->buf, 0);
d33501a5
MM
14019
14020 if (packet_ok (buf, packet) == PACKET_ERROR)
14021 {
14022 if (buf[0] == 'E' && buf[1] == '.')
14023 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
14024 else
14025 error (_("Failed to configure the BTS buffer size."));
14026 }
14027
14028 rs->btrace_config.bts.size = conf->bts.size;
14029 }
b20a6524
MM
14030
14031 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
14032 if (packet_config_support (packet) == PACKET_ENABLE
14033 && conf->pt.size != rs->btrace_config.pt.size)
14034 {
14035 pos = buf;
14036 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
dda83cd7 14037 conf->pt.size);
b20a6524
MM
14038
14039 putpkt (buf);
8d64371b 14040 getpkt (&rs->buf, 0);
b20a6524
MM
14041
14042 if (packet_ok (buf, packet) == PACKET_ERROR)
14043 {
14044 if (buf[0] == 'E' && buf[1] == '.')
14045 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
14046 else
14047 error (_("Failed to configure the trace buffer size."));
14048 }
14049
14050 rs->btrace_config.pt.size = conf->pt.size;
14051 }
f4abbc16
MM
14052}
14053
14054/* Read the current thread's btrace configuration from the target and
14055 store it into CONF. */
14056
14057static void
14058btrace_read_config (struct btrace_config *conf)
14059{
9018be22 14060 gdb::optional<gdb::char_vector> xml
328d42d8
SM
14061 = target_read_stralloc (current_inferior ()->top_target (),
14062 TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
14063 if (xml)
14064 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
14065}
14066
c0272db5
TW
14067/* Maybe reopen target btrace. */
14068
6b8edb51
PA
14069void
14070remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
14071{
14072 struct remote_state *rs = get_remote_state ();
c0272db5 14073 int btrace_target_pushed = 0;
15766370 14074#if !defined (HAVE_LIBIPT)
c0272db5 14075 int warned = 0;
15766370 14076#endif
c0272db5 14077
aedbe3bb
CM
14078 /* Don't bother walking the entirety of the remote thread list when
14079 we know the feature isn't supported by the remote. */
14080 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
14081 return;
14082
5ed8105e
PA
14083 scoped_restore_current_thread restore_thread;
14084
5b6d1e4f 14085 for (thread_info *tp : all_non_exited_threads (this))
c0272db5
TW
14086 {
14087 set_general_thread (tp->ptid);
14088
14089 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
14090 btrace_read_config (&rs->btrace_config);
14091
14092 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
14093 continue;
14094
14095#if !defined (HAVE_LIBIPT)
14096 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
14097 {
14098 if (!warned)
14099 {
14100 warned = 1;
c4e12631
MM
14101 warning (_("Target is recording using Intel Processor Trace "
14102 "but support was disabled at compile time."));
c0272db5
TW
14103 }
14104
14105 continue;
14106 }
14107#endif /* !defined (HAVE_LIBIPT) */
14108
14109 /* Push target, once, but before anything else happens. This way our
14110 changes to the threads will be cleaned up by unpushing the target
14111 in case btrace_read_config () throws. */
14112 if (!btrace_target_pushed)
14113 {
14114 btrace_target_pushed = 1;
14115 record_btrace_push_target ();
14116 printf_filtered (_("Target is recording using %s.\n"),
14117 btrace_format_string (rs->btrace_config.format));
14118 }
14119
14120 tp->btrace.target = XCNEW (struct btrace_target_info);
14121 tp->btrace.target->ptid = tp->ptid;
14122 tp->btrace.target->conf = rs->btrace_config;
14123 }
c0272db5
TW
14124}
14125
9accd112
MM
14126/* Enable branch tracing. */
14127
f6ac5f3d
PA
14128struct btrace_target_info *
14129remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
14130{
14131 struct btrace_target_info *tinfo = NULL;
b20a6524 14132 struct packet_config *packet = NULL;
9accd112 14133 struct remote_state *rs = get_remote_state ();
8d64371b
TT
14134 char *buf = rs->buf.data ();
14135 char *endbuf = buf + get_remote_packet_size ();
9accd112 14136
b20a6524
MM
14137 switch (conf->format)
14138 {
14139 case BTRACE_FORMAT_BTS:
14140 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
14141 break;
14142
14143 case BTRACE_FORMAT_PT:
14144 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
14145 break;
14146 }
14147
14148 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14149 error (_("Target does not support branch tracing."));
14150
f4abbc16
MM
14151 btrace_sync_conf (conf);
14152
9accd112
MM
14153 set_general_thread (ptid);
14154
14155 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14156 putpkt (rs->buf);
8d64371b 14157 getpkt (&rs->buf, 0);
9accd112
MM
14158
14159 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14160 {
14161 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14162 error (_("Could not enable branch tracing for %s: %s"),
a068643d 14163 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
14164 else
14165 error (_("Could not enable branch tracing for %s."),
a068643d 14166 target_pid_to_str (ptid).c_str ());
9accd112
MM
14167 }
14168
8d749320 14169 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
14170 tinfo->ptid = ptid;
14171
f4abbc16
MM
14172 /* If we fail to read the configuration, we lose some information, but the
14173 tracing itself is not impacted. */
a70b8144 14174 try
492d29ea
PA
14175 {
14176 btrace_read_config (&tinfo->conf);
14177 }
230d2906 14178 catch (const gdb_exception_error &err)
492d29ea
PA
14179 {
14180 if (err.message != NULL)
3d6e9d23 14181 warning ("%s", err.what ());
492d29ea 14182 }
f4abbc16 14183
9accd112
MM
14184 return tinfo;
14185}
14186
14187/* Disable branch tracing. */
14188
f6ac5f3d
PA
14189void
14190remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
14191{
14192 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
14193 struct remote_state *rs = get_remote_state ();
8d64371b
TT
14194 char *buf = rs->buf.data ();
14195 char *endbuf = buf + get_remote_packet_size ();
9accd112 14196
4082afcc 14197 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14198 error (_("Target does not support branch tracing."));
14199
14200 set_general_thread (tinfo->ptid);
14201
14202 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14203 putpkt (rs->buf);
8d64371b 14204 getpkt (&rs->buf, 0);
9accd112
MM
14205
14206 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14207 {
14208 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14209 error (_("Could not disable branch tracing for %s: %s"),
a068643d 14210 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
14211 else
14212 error (_("Could not disable branch tracing for %s."),
a068643d 14213 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
14214 }
14215
14216 xfree (tinfo);
14217}
14218
14219/* Teardown branch tracing. */
14220
f6ac5f3d
PA
14221void
14222remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
14223{
14224 /* We must not talk to the target during teardown. */
14225 xfree (tinfo);
14226}
14227
14228/* Read the branch trace. */
14229
f6ac5f3d
PA
14230enum btrace_error
14231remote_target::read_btrace (struct btrace_data *btrace,
14232 struct btrace_target_info *tinfo,
14233 enum btrace_read_type type)
9accd112
MM
14234{
14235 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 14236 const char *annex;
9accd112 14237
4082afcc 14238 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14239 error (_("Target does not support branch tracing."));
14240
14241#if !defined(HAVE_LIBEXPAT)
14242 error (_("Cannot process branch tracing result. XML parsing not supported."));
14243#endif
14244
14245 switch (type)
14246 {
864089d2 14247 case BTRACE_READ_ALL:
9accd112
MM
14248 annex = "all";
14249 break;
864089d2 14250 case BTRACE_READ_NEW:
9accd112
MM
14251 annex = "new";
14252 break;
969c39fb
MM
14253 case BTRACE_READ_DELTA:
14254 annex = "delta";
14255 break;
9accd112
MM
14256 default:
14257 internal_error (__FILE__, __LINE__,
14258 _("Bad branch tracing read type: %u."),
14259 (unsigned int) type);
14260 }
14261
9018be22 14262 gdb::optional<gdb::char_vector> xml
328d42d8
SM
14263 = target_read_stralloc (current_inferior ()->top_target (),
14264 TARGET_OBJECT_BTRACE, annex);
9018be22 14265 if (!xml)
969c39fb 14266 return BTRACE_ERR_UNKNOWN;
9accd112 14267
9018be22 14268 parse_xml_btrace (btrace, xml->data ());
9accd112 14269
969c39fb 14270 return BTRACE_ERR_NONE;
9accd112
MM
14271}
14272
f6ac5f3d
PA
14273const struct btrace_config *
14274remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
14275{
14276 return &tinfo->conf;
14277}
14278
57810aa7 14279bool
f6ac5f3d 14280remote_target::augmented_libraries_svr4_read ()
ced63ec0 14281{
4082afcc
PA
14282 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14283 == PACKET_ENABLE);
ced63ec0
GB
14284}
14285
9dd130a0
TT
14286/* Implementation of to_load. */
14287
f6ac5f3d
PA
14288void
14289remote_target::load (const char *name, int from_tty)
9dd130a0
TT
14290{
14291 generic_load (name, from_tty);
14292}
14293
c78fa86a
GB
14294/* Accepts an integer PID; returns a string representing a file that
14295 can be opened on the remote side to get the symbols for the child
14296 process. Returns NULL if the operation is not supported. */
14297
f6ac5f3d
PA
14298char *
14299remote_target::pid_to_exec_file (int pid)
c78fa86a 14300{
9018be22 14301 static gdb::optional<gdb::char_vector> filename;
835205d0 14302 char *annex = NULL;
c78fa86a
GB
14303
14304 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14305 return NULL;
14306
5b6d1e4f 14307 inferior *inf = find_inferior_pid (this, pid);
835205d0
GB
14308 if (inf == NULL)
14309 internal_error (__FILE__, __LINE__,
14310 _("not currently attached to process %d"), pid);
14311
14312 if (!inf->fake_pid_p)
14313 {
14314 const int annex_size = 9;
14315
224c3ddb 14316 annex = (char *) alloca (annex_size);
835205d0
GB
14317 xsnprintf (annex, annex_size, "%x", pid);
14318 }
14319
328d42d8 14320 filename = target_read_stralloc (current_inferior ()->top_target (),
c78fa86a
GB
14321 TARGET_OBJECT_EXEC_FILE, annex);
14322
9018be22 14323 return filename ? filename->data () : nullptr;
c78fa86a
GB
14324}
14325
750ce8d1
YQ
14326/* Implement the to_can_do_single_step target_ops method. */
14327
f6ac5f3d
PA
14328int
14329remote_target::can_do_single_step ()
750ce8d1
YQ
14330{
14331 /* We can only tell whether target supports single step or not by
14332 supported s and S vCont actions if the stub supports vContSupported
14333 feature. If the stub doesn't support vContSupported feature,
14334 we have conservatively to think target doesn't supports single
14335 step. */
14336 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14337 {
14338 struct remote_state *rs = get_remote_state ();
14339
14340 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14341 remote_vcont_probe ();
750ce8d1
YQ
14342
14343 return rs->supports_vCont.s && rs->supports_vCont.S;
14344 }
14345 else
14346 return 0;
14347}
14348
3a00c802
PA
14349/* Implementation of the to_execution_direction method for the remote
14350 target. */
14351
f6ac5f3d
PA
14352enum exec_direction_kind
14353remote_target::execution_direction ()
3a00c802
PA
14354{
14355 struct remote_state *rs = get_remote_state ();
14356
14357 return rs->last_resume_exec_dir;
14358}
14359
f6327dcb
KB
14360/* Return pointer to the thread_info struct which corresponds to
14361 THREAD_HANDLE (having length HANDLE_LEN). */
14362
f6ac5f3d
PA
14363thread_info *
14364remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14365 int handle_len,
14366 inferior *inf)
f6327dcb 14367{
5b6d1e4f 14368 for (thread_info *tp : all_non_exited_threads (this))
f6327dcb 14369 {
7aabaf9d 14370 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14371
14372 if (tp->inf == inf && priv != NULL)
dda83cd7 14373 {
7aabaf9d 14374 if (handle_len != priv->thread_handle.size ())
f6327dcb 14375 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
dda83cd7 14376 handle_len, priv->thread_handle.size ());
7aabaf9d 14377 if (memcmp (thread_handle, priv->thread_handle.data (),
dda83cd7 14378 handle_len) == 0)
f6327dcb
KB
14379 return tp;
14380 }
14381 }
14382
14383 return NULL;
14384}
14385
3d6c6204
KB
14386gdb::byte_vector
14387remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14388{
14389 remote_thread_info *priv = get_remote_thread_info (tp);
14390 return priv->thread_handle;
14391}
14392
57810aa7 14393bool
f6ac5f3d 14394remote_target::can_async_p ()
6426a772 14395{
5d93a237
TT
14396 struct remote_state *rs = get_remote_state ();
14397
3015c064
SM
14398 /* We don't go async if the user has explicitly prevented it with the
14399 "maint set target-async" command. */
c6ebd6cf 14400 if (!target_async_permitted)
57810aa7 14401 return false;
75c99385 14402
23860348 14403 /* We're async whenever the serial device is. */
5d93a237 14404 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14405}
14406
57810aa7 14407bool
f6ac5f3d 14408remote_target::is_async_p ()
6426a772 14409{
5d93a237
TT
14410 struct remote_state *rs = get_remote_state ();
14411
c6ebd6cf 14412 if (!target_async_permitted)
75c99385 14413 /* We only enable async when the user specifically asks for it. */
57810aa7 14414 return false;
75c99385 14415
23860348 14416 /* We're async whenever the serial device is. */
5d93a237 14417 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14418}
14419
2acceee2
JM
14420/* Pass the SERIAL event on and up to the client. One day this code
14421 will be able to delay notifying the client of an event until the
23860348 14422 point where an entire packet has been received. */
2acceee2 14423
2acceee2
JM
14424static serial_event_ftype remote_async_serial_handler;
14425
6426a772 14426static void
819cc324 14427remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14428{
2acceee2
JM
14429 /* Don't propogate error information up to the client. Instead let
14430 the client find out about the error by querying the target. */
b1a35af2 14431 inferior_event_handler (INF_REG_EVENT);
2acceee2
JM
14432}
14433
74531fed
PA
14434static void
14435remote_async_inferior_event_handler (gdb_client_data data)
14436{
6b36ddeb 14437 inferior_event_handler (INF_REG_EVENT);
74531fed
PA
14438}
14439
5b6d1e4f
PA
14440int
14441remote_target::async_wait_fd ()
14442{
14443 struct remote_state *rs = get_remote_state ();
14444 return rs->remote_desc->fd;
14445}
14446
f6ac5f3d
PA
14447void
14448remote_target::async (int enable)
2acceee2 14449{
5d93a237
TT
14450 struct remote_state *rs = get_remote_state ();
14451
6a3753b3 14452 if (enable)
2acceee2 14453 {
88b496c3 14454 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14455
14456 /* If there are pending events in the stop reply queue tell the
14457 event loop to process them. */
953edf2b 14458 if (!rs->stop_reply_queue.empty ())
6b8edb51 14459 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14460 /* For simplicity, below we clear the pending events token
14461 without remembering whether it is marked, so here we always
14462 mark it. If there's actually no pending notification to
14463 process, this ends up being a no-op (other than a spurious
14464 event-loop wakeup). */
14465 if (target_is_non_stop_p ())
14466 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14467 }
14468 else
b7d2e916
PA
14469 {
14470 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14471 /* If the core is disabling async, it doesn't want to be
14472 disturbed with target events. Clear all async event sources
14473 too. */
6b8edb51 14474 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14475 if (target_is_non_stop_p ())
14476 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14477 }
6426a772
JM
14478}
14479
65706a29
PA
14480/* Implementation of the to_thread_events method. */
14481
f6ac5f3d
PA
14482void
14483remote_target::thread_events (int enable)
65706a29
PA
14484{
14485 struct remote_state *rs = get_remote_state ();
14486 size_t size = get_remote_packet_size ();
65706a29
PA
14487
14488 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14489 return;
14490
8d64371b 14491 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14492 putpkt (rs->buf);
8d64371b 14493 getpkt (&rs->buf, 0);
65706a29
PA
14494
14495 switch (packet_ok (rs->buf,
14496 &remote_protocol_packets[PACKET_QThreadEvents]))
14497 {
14498 case PACKET_OK:
8d64371b
TT
14499 if (strcmp (rs->buf.data (), "OK") != 0)
14500 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14501 break;
14502 case PACKET_ERROR:
8d64371b 14503 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14504 break;
14505 case PACKET_UNKNOWN:
14506 break;
14507 }
14508}
14509
d471ea57 14510static void
981a3fb3 14511show_remote_cmd (const char *args, int from_tty)
d471ea57 14512{
37a105a1 14513 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14514 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14515 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14516 struct ui_out *uiout = current_uiout;
37a105a1 14517
2e783024 14518 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14519 for (; list != NULL; list = list->next)
14520 if (strcmp (list->name, "Z-packet") == 0)
14521 continue;
427c3a89
DJ
14522 else if (list->type == not_set_cmd)
14523 /* Alias commands are exactly like the original, except they
14524 don't have the normal type. */
14525 continue;
14526 else
37a105a1 14527 {
2e783024 14528 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14529
112e8700
SM
14530 uiout->field_string ("name", list->name);
14531 uiout->text (": ");
427c3a89 14532 if (list->type == show_cmd)
f5c4fcd9 14533 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14534 else
14535 cmd_func (list, NULL, from_tty);
37a105a1 14536 }
d471ea57 14537}
5a2468f5 14538
0f71a2f6 14539
23860348 14540/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14541static void
14542remote_new_objfile (struct objfile *objfile)
14543{
6b8edb51 14544 remote_target *remote = get_current_remote_target ();
5d93a237 14545
122373f7
SM
14546 /* First, check whether the current inferior's process target is a remote
14547 target. */
14548 if (remote == nullptr)
14549 return;
14550
14551 /* When we are attaching or handling a fork child and the shared library
14552 subsystem reads the list of loaded libraries, we receive new objfile
14553 events in between each found library. The libraries are read in an
14554 undefined order, so if we gave the remote side a chance to look up
14555 symbols between each objfile, we might give it an inconsistent picture
14556 of the inferior. It could appear that a library A appears loaded but
14557 a library B does not, even though library A requires library B. That
14558 would present a state that couldn't normally exist in the inferior.
14559
14560 So, skip these events, we'll give the remote a chance to look up symbols
14561 once all the loaded libraries and their symbols are known to GDB. */
d424629d
JB
14562 if (current_inferior ()->in_initial_library_scan)
14563 return;
122373f7
SM
14564
14565 remote->remote_check_symbols ();
dc8acb97
MS
14566}
14567
00bf0b85
SS
14568/* Pull all the tracepoints defined on the target and create local
14569 data structures representing them. We don't want to create real
14570 tracepoints yet, we don't want to mess up the user's existing
14571 collection. */
14572
f6ac5f3d
PA
14573int
14574remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14575{
00bf0b85
SS
14576 struct remote_state *rs = get_remote_state ();
14577 char *p;
d5551862 14578
00bf0b85
SS
14579 /* Ask for a first packet of tracepoint definition. */
14580 putpkt ("qTfP");
8d64371b
TT
14581 getpkt (&rs->buf, 0);
14582 p = rs->buf.data ();
00bf0b85 14583 while (*p && *p != 'l')
d5551862 14584 {
00bf0b85
SS
14585 parse_tracepoint_definition (p, utpp);
14586 /* Ask for another packet of tracepoint definition. */
14587 putpkt ("qTsP");
8d64371b
TT
14588 getpkt (&rs->buf, 0);
14589 p = rs->buf.data ();
d5551862 14590 }
00bf0b85 14591 return 0;
d5551862
SS
14592}
14593
f6ac5f3d
PA
14594int
14595remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14596{
00bf0b85 14597 struct remote_state *rs = get_remote_state ();
d5551862 14598 char *p;
d5551862 14599
00bf0b85
SS
14600 /* Ask for a first packet of variable definition. */
14601 putpkt ("qTfV");
8d64371b
TT
14602 getpkt (&rs->buf, 0);
14603 p = rs->buf.data ();
00bf0b85 14604 while (*p && *p != 'l')
d5551862 14605 {
00bf0b85
SS
14606 parse_tsv_definition (p, utsvp);
14607 /* Ask for another packet of variable definition. */
14608 putpkt ("qTsV");
8d64371b
TT
14609 getpkt (&rs->buf, 0);
14610 p = rs->buf.data ();
d5551862 14611 }
00bf0b85 14612 return 0;
d5551862
SS
14613}
14614
c1e36e3e
PA
14615/* The "set/show range-stepping" show hook. */
14616
14617static void
14618show_range_stepping (struct ui_file *file, int from_tty,
14619 struct cmd_list_element *c,
14620 const char *value)
14621{
14622 fprintf_filtered (file,
14623 _("Debugger's willingness to use range stepping "
14624 "is %s.\n"), value);
14625}
14626
6b8edb51
PA
14627/* Return true if the vCont;r action is supported by the remote
14628 stub. */
14629
14630bool
14631remote_target::vcont_r_supported ()
14632{
14633 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14634 remote_vcont_probe ();
14635
14636 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14637 && get_remote_state ()->supports_vCont.r);
14638}
14639
c1e36e3e
PA
14640/* The "set/show range-stepping" set hook. */
14641
14642static void
eb4c3f4a 14643set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14644 struct cmd_list_element *c)
14645{
6b8edb51
PA
14646 /* When enabling, check whether range stepping is actually supported
14647 by the target, and warn if not. */
c1e36e3e
PA
14648 if (use_range_stepping)
14649 {
6b8edb51
PA
14650 remote_target *remote = get_current_remote_target ();
14651 if (remote == NULL
14652 || !remote->vcont_r_supported ())
14653 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14654 }
14655}
14656
baf2b57f
SM
14657static void
14658show_remote_debug (struct ui_file *file, int from_tty,
14659 struct cmd_list_element *c, const char *value)
14660{
14661 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
14662 value);
14663}
14664
14665static void
14666show_remote_timeout (struct ui_file *file, int from_tty,
14667 struct cmd_list_element *c, const char *value)
14668{
14669 fprintf_filtered (file,
14670 _("Timeout limit to wait for target to respond is %s.\n"),
14671 value);
14672}
14673
dbe692af
LM
14674/* Implement the "supports_memory_tagging" target_ops method. */
14675
14676bool
14677remote_target::supports_memory_tagging ()
14678{
2c2e7f87
LM
14679 return remote_memory_tagging_p ();
14680}
14681
14682/* Create the qMemTags packet given ADDRESS, LEN and TYPE. */
14683
14684static void
14685create_fetch_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14686 size_t len, int type)
14687{
14688 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14689
14690 std::string request = string_printf ("qMemTags:%s,%s:%s",
14691 phex_nz (address, addr_size),
14692 phex_nz (len, sizeof (len)),
14693 phex_nz (type, sizeof (type)));
14694
14695 strcpy (packet.data (), request.c_str ());
14696}
14697
14698/* Parse the qMemTags packet reply into TAGS.
14699
14700 Return true if successful, false otherwise. */
14701
14702static bool
14703parse_fetch_memtags_reply (const gdb::char_vector &reply,
14704 gdb::byte_vector &tags)
14705{
14706 if (reply.empty () || reply[0] == 'E' || reply[0] != 'm')
14707 return false;
14708
14709 /* Copy the tag data. */
14710 tags = hex2bin (reply.data () + 1);
14711
14712 return true;
14713}
14714
14715/* Create the QMemTags packet given ADDRESS, LEN, TYPE and TAGS. */
14716
14717static void
14718create_store_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14719 size_t len, int type,
14720 const gdb::byte_vector &tags)
14721{
14722 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14723
14724 /* Put together the main packet, address and length. */
14725 std::string request = string_printf ("QMemTags:%s,%s:%s:",
14726 phex_nz (address, addr_size),
14727 phex_nz (len, sizeof (len)),
14728 phex_nz (type, sizeof (type)));
14729 request += bin2hex (tags.data (), tags.size ());
14730
14731 /* Check if we have exceeded the maximum packet size. */
14732 if (packet.size () < request.length ())
14733 error (_("Contents too big for packet QMemTags."));
14734
14735 strcpy (packet.data (), request.c_str ());
dbe692af
LM
14736}
14737
14738/* Implement the "fetch_memtags" target_ops method. */
14739
14740bool
14741remote_target::fetch_memtags (CORE_ADDR address, size_t len,
14742 gdb::byte_vector &tags, int type)
14743{
2c2e7f87
LM
14744 /* Make sure the qMemTags packet is supported. */
14745 if (!remote_memory_tagging_p ())
14746 gdb_assert_not_reached ("remote fetch_memtags called with packet disabled");
14747
14748 struct remote_state *rs = get_remote_state ();
14749
14750 create_fetch_memtags_request (rs->buf, address, len, type);
14751
14752 putpkt (rs->buf);
14753 getpkt (&rs->buf, 0);
14754
14755 return parse_fetch_memtags_reply (rs->buf, tags);
dbe692af
LM
14756}
14757
14758/* Implement the "store_memtags" target_ops method. */
14759
14760bool
14761remote_target::store_memtags (CORE_ADDR address, size_t len,
14762 const gdb::byte_vector &tags, int type)
14763{
2c2e7f87
LM
14764 /* Make sure the QMemTags packet is supported. */
14765 if (!remote_memory_tagging_p ())
14766 gdb_assert_not_reached ("remote store_memtags called with packet disabled");
14767
14768 struct remote_state *rs = get_remote_state ();
14769
14770 create_store_memtags_request (rs->buf, address, len, type, tags);
14771
14772 putpkt (rs->buf);
14773 getpkt (&rs->buf, 0);
14774
14775 /* Verify if the request was successful. */
14776 return packet_check_result (rs->buf.data ()) == PACKET_OK;
dbe692af
LM
14777}
14778
c39ebbf4
TV
14779/* Return true if remote target T is non-stop. */
14780
14781bool
14782remote_target_is_non_stop_p (remote_target *t)
14783{
14784 scoped_restore_current_thread restore_thread;
14785 switch_to_target_no_thread (t);
14786
14787 return target_is_non_stop_p ();
14788}
14789
754487e2
LM
14790#if GDB_SELF_TEST
14791
14792namespace selftests {
14793
14794static void
14795test_memory_tagging_functions ()
14796{
14797 remote_target remote;
14798
14799 struct packet_config *config
14800 = &remote_protocol_packets[PACKET_memory_tagging_feature];
14801
14802 scoped_restore restore_memtag_support_
14803 = make_scoped_restore (&config->support);
14804
14805 /* Test memory tagging packet support. */
14806 config->support = PACKET_SUPPORT_UNKNOWN;
14807 SELF_CHECK (remote.supports_memory_tagging () == false);
14808 config->support = PACKET_DISABLE;
14809 SELF_CHECK (remote.supports_memory_tagging () == false);
14810 config->support = PACKET_ENABLE;
14811 SELF_CHECK (remote.supports_memory_tagging () == true);
14812
14813 /* Setup testing. */
14814 gdb::char_vector packet;
14815 gdb::byte_vector tags, bv;
14816 std::string expected, reply;
14817 packet.resize (32000);
14818
14819 /* Test creating a qMemTags request. */
14820
14821 expected = "qMemTags:0,0:0";
14822 create_fetch_memtags_request (packet, 0x0, 0x0, 0);
14823 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14824
14825 expected = "qMemTags:deadbeef,10:1";
14826 create_fetch_memtags_request (packet, 0xdeadbeef, 16, 1);
14827 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14828
14829 /* Test parsing a qMemTags reply. */
14830
14831 /* Error reply, tags vector unmodified. */
14832 reply = "E00";
14833 strcpy (packet.data (), reply.c_str ());
14834 tags.resize (0);
14835 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == false);
14836 SELF_CHECK (tags.size () == 0);
14837
14838 /* Valid reply, tags vector updated. */
14839 tags.resize (0);
14840 bv.resize (0);
14841
14842 for (int i = 0; i < 5; i++)
14843 bv.push_back (i);
14844
14845 reply = "m" + bin2hex (bv.data (), bv.size ());
14846 strcpy (packet.data (), reply.c_str ());
14847
14848 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == true);
14849 SELF_CHECK (tags.size () == 5);
14850
14851 for (int i = 0; i < 5; i++)
14852 SELF_CHECK (tags[i] == i);
14853
14854 /* Test creating a QMemTags request. */
14855
14856 /* Empty tag data. */
14857 tags.resize (0);
14858 expected = "QMemTags:0,0:0:";
14859 create_store_memtags_request (packet, 0x0, 0x0, 0, tags);
14860 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14861 expected.length ()) == 0);
14862
14863 /* Non-empty tag data. */
14864 tags.resize (0);
14865 for (int i = 0; i < 5; i++)
14866 tags.push_back (i);
14867 expected = "QMemTags:deadbeef,ff:1:0001020304";
14868 create_store_memtags_request (packet, 0xdeadbeef, 255, 1, tags);
14869 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14870 expected.length ()) == 0);
14871}
14872
14873} // namespace selftests
14874#endif /* GDB_SELF_TEST */
14875
6c265988 14876void _initialize_remote ();
c906108c 14877void
6c265988 14878_initialize_remote ()
c906108c 14879{
0f71a2f6 14880 /* architecture specific data */
29709017
DJ
14881 remote_g_packet_data_handle =
14882 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14883
d9f719f1
PA
14884 add_target (remote_target_info, remote_target::open);
14885 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14886
dc8acb97 14887 /* Hook into new objfile notification. */
c90e7d63 14888 gdb::observers::new_objfile.attach (remote_new_objfile, "remote");
dc8acb97 14889
c906108c
SS
14890#if 0
14891 init_remote_threadtests ();
14892#endif
14893
23860348 14894 /* set/show remote ... */
d471ea57 14895
0743fc83 14896 add_basic_prefix_cmd ("remote", class_maintenance, _("\
590042fc 14897Remote protocol specific variables.\n\
5a2468f5 14898Configure various remote-protocol specific variables such as\n\
590042fc 14899the packets being used."),
2f822da5 14900 &remote_set_cmdlist,
0743fc83 14901 0 /* allow-unknown */, &setlist);
1bedd215 14902 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14903Remote protocol specific variables.\n\
5a2468f5 14904Configure various remote-protocol specific variables such as\n\
590042fc 14905the packets being used."),
2f822da5 14906 &remote_show_cmdlist,
23860348 14907 0 /* allow-unknown */, &showlist);
5a2468f5 14908
1a966eab
AC
14909 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14910Compare section data on target to the exec file.\n\
95cf3b38
DT
14911Argument is a single section name (default: all loaded sections).\n\
14912To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14913 &cmdlist);
14914
1a966eab
AC
14915 add_cmd ("packet", class_maintenance, packet_command, _("\
14916Send an arbitrary packet to a remote target.\n\
c906108c
SS
14917 maintenance packet TEXT\n\
14918If GDB is talking to an inferior via the GDB serial protocol, then\n\
14919this command sends the string TEXT to the inferior, and displays the\n\
14920response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14921terminating `#' character and checksum."),
c906108c
SS
14922 &maintenancelist);
14923
9f260536
SM
14924 set_show_commands remotebreak_cmds
14925 = add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
7915a72c
AC
14926Set whether to send break if interrupted."), _("\
14927Show whether to send break if interrupted."), _("\
14928If set, a break, instead of a cntrl-c, is sent to the remote target."),
9f260536
SM
14929 set_remotebreak, show_remotebreak,
14930 &setlist, &showlist);
14931 deprecate_cmd (remotebreak_cmds.set, "set remote interrupt-sequence");
14932 deprecate_cmd (remotebreak_cmds.show, "show remote interrupt-sequence");
9a7071a8
JB
14933
14934 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14935 interrupt_sequence_modes, &interrupt_sequence_mode,
14936 _("\
9a7071a8
JB
14937Set interrupt sequence to remote target."), _("\
14938Show interrupt sequence to remote target."), _("\
14939Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14940 NULL, show_interrupt_sequence,
14941 &remote_set_cmdlist,
14942 &remote_show_cmdlist);
14943
14944 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14945 &interrupt_on_connect, _("\
590042fc
PW
14946Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14947Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14948If set, interrupt sequence is sent to remote target."),
14949 NULL, NULL,
14950 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14951
23860348 14952 /* Install commands for configuring memory read/write packets. */
11cf8741 14953
1a966eab
AC
14954 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14955Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14956 &setlist);
1a966eab
AC
14957 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14958Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14959 &showlist);
14960 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14961 set_memory_write_packet_size, _("\
14962Set the maximum number of bytes per memory-write packet.\n\
14963Specify the number of bytes in a packet or 0 (zero) for the\n\
14964default packet size. The actual limit is further reduced\n\
14965dependent on the target. Specify ``fixed'' to disable the\n\
14966further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14967 &remote_set_cmdlist);
14968 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14969 set_memory_read_packet_size, _("\
14970Set the maximum number of bytes per memory-read packet.\n\
14971Specify the number of bytes in a packet or 0 (zero) for the\n\
14972default packet size. The actual limit is further reduced\n\
14973dependent on the target. Specify ``fixed'' to disable the\n\
14974further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14975 &remote_set_cmdlist);
14976 add_cmd ("memory-write-packet-size", no_class,
14977 show_memory_write_packet_size,
1a966eab 14978 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14979 &remote_show_cmdlist);
14980 add_cmd ("memory-read-packet-size", no_class,
14981 show_memory_read_packet_size,
1a966eab 14982 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14983 &remote_show_cmdlist);
c906108c 14984
055303e2 14985 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14986 &remote_hw_watchpoint_limit, _("\
14987Set the maximum number of target hardware watchpoints."), _("\
14988Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14989Specify \"unlimited\" for unlimited hardware watchpoints."),
14990 NULL, show_hardware_watchpoint_limit,
14991 &remote_set_cmdlist,
14992 &remote_show_cmdlist);
14993 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14994 no_class,
480a3f21
PW
14995 &remote_hw_watchpoint_length_limit, _("\
14996Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14997Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14998Specify \"unlimited\" to allow watchpoints of unlimited size."),
14999 NULL, show_hardware_watchpoint_length_limit,
480a3f21 15000 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 15001 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
15002 &remote_hw_breakpoint_limit, _("\
15003Set the maximum number of target hardware breakpoints."), _("\
15004Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
15005Specify \"unlimited\" for unlimited hardware breakpoints."),
15006 NULL, show_hardware_breakpoint_limit,
b3f42336 15007 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 15008
1b493192
PA
15009 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
15010 &remote_address_size, _("\
4d28ad1e
AC
15011Set the maximum size of the address (in bits) in a memory packet."), _("\
15012Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
15013 NULL,
15014 NULL, /* FIXME: i18n: */
15015 &setlist, &showlist);
c906108c 15016
ca4f7f8b
PA
15017 init_all_packet_configs ();
15018
444abaca 15019 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 15020 "X", "binary-download", 1);
0f71a2f6 15021
444abaca 15022 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 15023 "vCont", "verbose-resume", 0);
506fb367 15024
89be2091
DJ
15025 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
15026 "QPassSignals", "pass-signals", 0);
15027
82075af2
JS
15028 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
15029 "QCatchSyscalls", "catch-syscalls", 0);
15030
9b224c5e
PA
15031 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
15032 "QProgramSignals", "program-signals", 0);
15033
bc3b087d
SDJ
15034 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
15035 "QSetWorkingDir", "set-working-dir", 0);
15036
aefd8b33
SDJ
15037 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
15038 "QStartupWithShell", "startup-with-shell", 0);
15039
0a2dde4a
SDJ
15040 add_packet_config_cmd (&remote_protocol_packets
15041 [PACKET_QEnvironmentHexEncoded],
15042 "QEnvironmentHexEncoded", "environment-hex-encoded",
15043 0);
15044
15045 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
15046 "QEnvironmentReset", "environment-reset",
15047 0);
15048
15049 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
15050 "QEnvironmentUnset", "environment-unset",
15051 0);
15052
444abaca 15053 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 15054 "qSymbol", "symbol-lookup", 0);
dc8acb97 15055
444abaca 15056 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 15057 "P", "set-register", 1);
d471ea57 15058
444abaca 15059 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 15060 "p", "fetch-register", 1);
b96ec7ac 15061
444abaca 15062 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 15063 "Z0", "software-breakpoint", 0);
d471ea57 15064
444abaca 15065 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 15066 "Z1", "hardware-breakpoint", 0);
d471ea57 15067
444abaca 15068 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 15069 "Z2", "write-watchpoint", 0);
d471ea57 15070
444abaca 15071 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 15072 "Z3", "read-watchpoint", 0);
d471ea57 15073
444abaca 15074 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 15075 "Z4", "access-watchpoint", 0);
d471ea57 15076
0876f84a
DJ
15077 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
15078 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 15079
c78fa86a
GB
15080 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
15081 "qXfer:exec-file:read", "pid-to-exec-file", 0);
15082
23181151
DJ
15083 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
15084 "qXfer:features:read", "target-features", 0);
15085
cfa9d6d9
DJ
15086 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
15087 "qXfer:libraries:read", "library-info", 0);
15088
2268b414
JK
15089 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
15090 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
15091
fd79ecee
DJ
15092 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
15093 "qXfer:memory-map:read", "memory-map", 0);
15094
07e059b5 15095 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
dda83cd7 15096 "qXfer:osdata:read", "osdata", 0);
07e059b5 15097
dc146f7c
VP
15098 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
15099 "qXfer:threads:read", "threads", 0);
15100
4aa995e1 15101 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
dda83cd7 15102 "qXfer:siginfo:read", "read-siginfo-object", 0);
4aa995e1
PA
15103
15104 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
dda83cd7 15105 "qXfer:siginfo:write", "write-siginfo-object", 0);
4aa995e1 15106
b3b9301e
PA
15107 add_packet_config_cmd
15108 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 15109 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 15110
169081d0
TG
15111 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
15112 "qXfer:uib:read", "unwind-info-block", 0);
15113
444abaca 15114 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 15115 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
15116 0);
15117
711e434b
PM
15118 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
15119 "qGetTIBAddr", "get-thread-information-block-address",
15120 0);
15121
40ab02ce
MS
15122 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
15123 "bc", "reverse-continue", 0);
15124
15125 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
15126 "bs", "reverse-step", 0);
15127
be2a5f71
DJ
15128 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
15129 "qSupported", "supported-packets", 0);
15130
08388c79
DE
15131 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
15132 "qSearch:memory", "search-memory", 0);
15133
bd3eecc3
PA
15134 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
15135 "qTStatus", "trace-status", 0);
15136
15a201c8
GB
15137 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
15138 "vFile:setfs", "hostio-setfs", 0);
15139
a6b151f1
DJ
15140 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
15141 "vFile:open", "hostio-open", 0);
15142
15143 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
15144 "vFile:pread", "hostio-pread", 0);
15145
15146 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
15147 "vFile:pwrite", "hostio-pwrite", 0);
15148
15149 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
15150 "vFile:close", "hostio-close", 0);
15151
15152 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
15153 "vFile:unlink", "hostio-unlink", 0);
15154
b9e7b9c3
UW
15155 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
15156 "vFile:readlink", "hostio-readlink", 0);
15157
0a93529c
GB
15158 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
15159 "vFile:fstat", "hostio-fstat", 0);
15160
2d717e4f
DJ
15161 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
15162 "vAttach", "attach", 0);
15163
15164 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
15165 "vRun", "run", 0);
15166
a6f3e723
SL
15167 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
15168 "QStartNoAckMode", "noack", 0);
15169
82f73884
PA
15170 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
15171 "vKill", "kill", 0);
15172
0b16c5cf
PA
15173 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
15174 "qAttached", "query-attached", 0);
15175
782b2b07 15176 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
15177 "ConditionalTracepoints",
15178 "conditional-tracepoints", 0);
3788aec7
LM
15179
15180 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
15181 "ConditionalBreakpoints",
15182 "conditional-breakpoints", 0);
15183
d3ce09f5
SS
15184 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
15185 "BreakpointCommands",
15186 "breakpoint-commands", 0);
15187
7a697b8d
SS
15188 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
15189 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 15190
409873ef
SS
15191 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
15192 "TracepointSource", "TracepointSource", 0);
15193
d914c394
SS
15194 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
15195 "QAllow", "allow", 0);
15196
0fb4aa4b
PA
15197 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
15198 "StaticTracepoints", "static-tracepoints", 0);
15199
1e4d1764
YQ
15200 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
15201 "InstallInTrace", "install-in-trace", 0);
15202
0fb4aa4b 15203 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
dda83cd7 15204 "qXfer:statictrace:read", "read-sdata-object", 0);
0fb4aa4b 15205
78d85199
YQ
15206 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
15207 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
15208
03583c20
UW
15209 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
15210 "QDisableRandomization", "disable-randomization", 0);
15211
d1feda86
YQ
15212 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
15213 "QAgent", "agent", 0);
15214
f6f899bf
HAQ
15215 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
15216 "QTBuffer:size", "trace-buffer-size", 0);
15217
9accd112
MM
15218 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
15219 "Qbtrace:off", "disable-btrace", 0);
15220
15221 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
15222 "Qbtrace:bts", "enable-btrace-bts", 0);
15223
15224 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
15225 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
15226
15227 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
15228 "qXfer:btrace", "read-btrace", 0);
15229
f4abbc16
MM
15230 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
15231 "qXfer:btrace-conf", "read-btrace-conf", 0);
15232
d33501a5
MM
15233 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
15234 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
15235
73b8c1fd
PA
15236 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
15237 "multiprocess-feature", "multiprocess-feature", 0);
15238
f7e6eed5 15239 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
dda83cd7 15240 "swbreak-feature", "swbreak-feature", 0);
f7e6eed5
PA
15241
15242 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
dda83cd7 15243 "hwbreak-feature", "hwbreak-feature", 0);
f7e6eed5 15244
89245bc0
DB
15245 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
15246 "fork-event-feature", "fork-event-feature", 0);
15247
15248 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
15249 "vfork-event-feature", "vfork-event-feature", 0);
15250
b20a6524
MM
15251 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
15252 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
15253
750ce8d1
YQ
15254 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
15255 "vContSupported", "verbose-resume-supported", 0);
15256
94585166
DB
15257 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
15258 "exec-event-feature", "exec-event-feature", 0);
15259
de979965
PA
15260 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
15261 "vCtrlC", "ctrl-c", 0);
15262
65706a29
PA
15263 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
15264 "QThreadEvents", "thread-events", 0);
15265
f2faf941
PA
15266 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
15267 "N stop reply", "no-resumed-stop-reply", 0);
15268
2c2e7f87
LM
15269 add_packet_config_cmd (&remote_protocol_packets[PACKET_memory_tagging_feature],
15270 "memory-tagging-feature", "memory-tagging-feature", 0);
15271
0b736949
DB
15272 /* Assert that we've registered "set remote foo-packet" commands
15273 for all packet configs. */
ca4f7f8b
PA
15274 {
15275 int i;
15276
15277 for (i = 0; i < PACKET_MAX; i++)
15278 {
15279 /* Ideally all configs would have a command associated. Some
15280 still don't though. */
15281 int excepted;
15282
15283 switch (i)
15284 {
15285 case PACKET_QNonStop:
ca4f7f8b
PA
15286 case PACKET_EnableDisableTracepoints_feature:
15287 case PACKET_tracenz_feature:
15288 case PACKET_DisconnectedTracing_feature:
15289 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
15290 case PACKET_qCRC:
15291 /* Additions to this list need to be well justified:
15292 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
15293 excepted = 1;
15294 break;
15295 default:
15296 excepted = 0;
15297 break;
15298 }
15299
15300 /* This catches both forgetting to add a config command, and
15301 forgetting to remove a packet from the exception list. */
15302 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
15303 }
15304 }
15305
37a105a1
DJ
15306 /* Keep the old ``set remote Z-packet ...'' working. Each individual
15307 Z sub-packet has its own set and show commands, but users may
15308 have sets to this variable in their .gdbinit files (or in their
15309 documentation). */
e9e68a56 15310 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 15311 &remote_Z_packet_detect, _("\
590042fc
PW
15312Set use of remote protocol `Z' packets."), _("\
15313Show use of remote protocol `Z' packets."), _("\
3b64bf98 15314When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 15315packets."),
e9e68a56 15316 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
15317 show_remote_protocol_Z_packet_cmd,
15318 /* FIXME: i18n: Use of remote protocol
15319 `Z' packets is %s. */
e9e68a56 15320 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 15321
0743fc83 15322 add_basic_prefix_cmd ("remote", class_files, _("\
590042fc 15323Manipulate files on the remote system.\n\
a6b151f1 15324Transfer files to and from the remote target system."),
2f822da5 15325 &remote_cmdlist,
0743fc83 15326 0 /* allow-unknown */, &cmdlist);
a6b151f1
DJ
15327
15328 add_cmd ("put", class_files, remote_put_command,
15329 _("Copy a local file to the remote system."),
15330 &remote_cmdlist);
15331
15332 add_cmd ("get", class_files, remote_get_command,
15333 _("Copy a remote file to the local system."),
15334 &remote_cmdlist);
15335
15336 add_cmd ("delete", class_files, remote_delete_command,
15337 _("Delete a remote file."),
15338 &remote_cmdlist);
15339
2d717e4f 15340 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 15341 &remote_exec_file_var, _("\
590042fc
PW
15342Set the remote pathname for \"run\"."), _("\
15343Show the remote pathname for \"run\"."), NULL,
94585166
DB
15344 set_remote_exec_file,
15345 show_remote_exec_file,
15346 &remote_set_cmdlist,
15347 &remote_show_cmdlist);
2d717e4f 15348
c1e36e3e
PA
15349 add_setshow_boolean_cmd ("range-stepping", class_run,
15350 &use_range_stepping, _("\
15351Enable or disable range stepping."), _("\
15352Show whether target-assisted range stepping is enabled."), _("\
15353If on, and the target supports it, when stepping a source line, GDB\n\
15354tells the target to step the corresponding range of addresses itself instead\n\
15355of issuing multiple single-steps. This speeds up source level\n\
15356stepping. If off, GDB always issues single-steps, even if range\n\
15357stepping is supported by the target. The default is on."),
15358 set_range_stepping,
15359 show_range_stepping,
15360 &setlist,
15361 &showlist);
15362
ed2b7c17
TT
15363 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
15364Set watchdog timer."), _("\
15365Show watchdog timer."), _("\
15366When non-zero, this timeout is used instead of waiting forever for a target\n\
15367to finish a low-level step or continue operation. If the specified amount\n\
15368of time passes without a response from the target, an error occurs."),
15369 NULL,
15370 show_watchdog,
15371 &setlist, &showlist);
15372
6cc8564b
LM
15373 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
15374 &remote_packet_max_chars, _("\
15375Set the maximum number of characters to display for each remote packet."), _("\
15376Show the maximum number of characters to display for each remote packet."), _("\
15377Specify \"unlimited\" to display all the characters."),
15378 NULL, show_remote_packet_max_chars,
15379 &setdebuglist, &showdebuglist);
15380
02349803
SM
15381 add_setshow_boolean_cmd ("remote", no_class, &remote_debug,
15382 _("Set debugging of remote protocol."),
15383 _("Show debugging of remote protocol."),
15384 _("\
baf2b57f
SM
15385When enabled, each packet sent or received with the remote target\n\
15386is displayed."),
02349803
SM
15387 NULL,
15388 show_remote_debug,
15389 &setdebuglist, &showdebuglist);
baf2b57f
SM
15390
15391 add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
15392 &remote_timeout, _("\
15393Set timeout limit to wait for target to respond."), _("\
15394Show timeout limit to wait for target to respond."), _("\
15395This value is used to set the time limit for gdb to wait for a response\n\
15396from the target."),
15397 NULL,
15398 show_remote_timeout,
15399 &setlist, &showlist);
15400
449092f6 15401 /* Eventually initialize fileio. See fileio.c */
3f4d92eb 15402 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
754487e2
LM
15403
15404#if GDB_SELF_TEST
15405 selftests::register_test ("remote_memory_tagging",
15406 selftests::test_memory_tagging_functions);
15407#endif
c906108c 15408}