gdb: give names to event loop file handlers
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
b811d2c2 3 Copyright (C) 1988-2020 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
6240bebf
MS
59#include "gdbcore.h" /* for exec_bfd */
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"
39ef2f62 78#include <algorithm>
9d6eea31 79#include <unordered_map>
93b54c8e 80#include "async-event.h"
35b1e5cc 81
f6ac5f3d
PA
82/* The remote target. */
83
d9f719f1
PA
84static const char remote_doc[] = N_("\
85Use a remote computer via a serial line, using a gdb-specific protocol.\n\
86Specify the serial device it is connected to\n\
87(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
88
6b8edb51
PA
89#define OPAQUETHREADBYTES 8
90
91/* a 64 bit opaque identifier */
92typedef unsigned char threadref[OPAQUETHREADBYTES];
93
94struct gdb_ext_thread_info;
95struct threads_listing_context;
96typedef int (*rmt_thread_action) (threadref *ref, void *context);
97struct protocol_feature;
98struct packet_reg;
99
100struct stop_reply;
32603266 101typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
102
103/* Generic configuration support for packets the stub optionally
104 supports. Allows the user to specify the use of the packet as well
105 as allowing GDB to auto-detect support in the remote stub. */
106
107enum packet_support
108 {
109 PACKET_SUPPORT_UNKNOWN = 0,
110 PACKET_ENABLE,
111 PACKET_DISABLE
112 };
113
114/* Analyze a packet's return value and update the packet config
115 accordingly. */
116
117enum packet_result
118{
119 PACKET_ERROR,
120 PACKET_OK,
121 PACKET_UNKNOWN
122};
123
124struct threads_listing_context;
3c69da40
PA
125
126/* Stub vCont actions support.
127
128 Each field is a boolean flag indicating whether the stub reports
129 support for the corresponding action. */
130
131struct vCont_action_support
132{
133 /* vCont;t */
134 bool t = false;
135
136 /* vCont;r */
137 bool r = false;
138
139 /* vCont;s */
140 bool s = false;
141
142 /* vCont;S */
143 bool S = false;
144};
145
405feb71 146/* About this many threadids fit in a packet. */
3c69da40
PA
147
148#define MAXTHREADLISTRESULTS 32
149
150/* Data for the vFile:pread readahead cache. */
151
152struct readahead_cache
153{
154 /* Invalidate the readahead cache. */
155 void invalidate ();
156
157 /* Invalidate the readahead cache if it is holding data for FD. */
158 void invalidate_fd (int fd);
159
160 /* Serve pread from the readahead cache. Returns number of bytes
161 read, or 0 if the request can't be served from the cache. */
162 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
163
164 /* The file descriptor for the file that is being cached. -1 if the
165 cache is invalid. */
166 int fd = -1;
167
168 /* The offset into the file that the cache buffer corresponds
169 to. */
170 ULONGEST offset = 0;
171
172 /* The buffer holding the cache contents. */
173 gdb_byte *buf = nullptr;
174 /* The buffer's size. We try to read as much as fits into a packet
175 at a time. */
176 size_t bufsize = 0;
177
178 /* Cache hit and miss counters. */
179 ULONGEST hit_count = 0;
180 ULONGEST miss_count = 0;
181};
182
183/* Description of the remote protocol for a given architecture. */
184
185struct packet_reg
186{
187 long offset; /* Offset into G packet. */
188 long regnum; /* GDB's internal register number. */
189 LONGEST pnum; /* Remote protocol register number. */
190 int in_g_packet; /* Always part of G packet. */
191 /* long size in bytes; == register_size (target_gdbarch (), regnum);
192 at present. */
193 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
194 at present. */
195};
196
197struct remote_arch_state
198{
199 explicit remote_arch_state (struct gdbarch *gdbarch);
200
201 /* Description of the remote protocol registers. */
202 long sizeof_g_packet;
203
204 /* Description of the remote protocol registers indexed by REGNUM
205 (making an array gdbarch_num_regs in size). */
206 std::unique_ptr<packet_reg[]> regs;
207
208 /* This is the size (in chars) of the first response to the ``g''
209 packet. It is used as a heuristic when determining the maximum
210 size of memory-read and memory-write packets. A target will
211 typically only reserve a buffer large enough to hold the ``g''
212 packet. The size does not include packet overhead (headers and
213 trailers). */
214 long actual_register_packet_size;
215
216 /* This is the maximum size (in chars) of a non read/write packet.
217 It is also used as a cap on the size of read/write packets. */
218 long remote_packet_size;
219};
220
221/* Description of the remote protocol state for the currently
222 connected target. This is per-target state, and independent of the
223 selected architecture. */
224
225class remote_state
226{
227public:
228
229 remote_state ();
230 ~remote_state ();
231
232 /* Get the remote arch state for GDBARCH. */
233 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
234
235public: /* data */
236
237 /* A buffer to use for incoming packets, and its current size. The
238 buffer is grown dynamically for larger incoming packets.
239 Outgoing packets may also be constructed in this buffer.
8d64371b 240 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
241 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
242 packets. */
8d64371b 243 gdb::char_vector buf;
3c69da40
PA
244
245 /* True if we're going through initial connection setup (finding out
246 about the remote side's threads, relocating symbols, etc.). */
247 bool starting_up = false;
248
249 /* If we negotiated packet size explicitly (and thus can bypass
250 heuristics for the largest packet size that will not overflow
251 a buffer in the stub), this will be set to that packet size.
252 Otherwise zero, meaning to use the guessed size. */
253 long explicit_packet_size = 0;
254
255 /* remote_wait is normally called when the target is running and
256 waits for a stop reply packet. But sometimes we need to call it
257 when the target is already stopped. We can send a "?" packet
258 and have remote_wait read the response. Or, if we already have
259 the response, we can stash it in BUF and tell remote_wait to
260 skip calling getpkt. This flag is set when BUF contains a
261 stop reply packet and the target is not waiting. */
262 int cached_wait_status = 0;
263
264 /* True, if in no ack mode. That is, neither GDB nor the stub will
265 expect acks from each other. The connection is assumed to be
266 reliable. */
267 bool noack_mode = false;
268
269 /* True if we're connected in extended remote mode. */
270 bool extended = false;
271
272 /* True if we resumed the target and we're waiting for the target to
273 stop. In the mean time, we can't start another command/query.
274 The remote server wouldn't be ready to process it, so we'd
275 timeout waiting for a reply that would never come and eventually
276 we'd close the connection. This can happen in asynchronous mode
277 because we allow GDB commands while the target is running. */
278 bool waiting_for_stop_reply = false;
279
280 /* The status of the stub support for the various vCont actions. */
281 vCont_action_support supports_vCont;
5b6d1e4f
PA
282 /* Whether vCont support was probed already. This is a workaround
283 until packet_support is per-connection. */
284 bool supports_vCont_probed;
3c69da40
PA
285
286 /* True if the user has pressed Ctrl-C, but the target hasn't
287 responded to that. */
288 bool ctrlc_pending_p = false;
289
290 /* True if we saw a Ctrl-C while reading or writing from/to the
291 remote descriptor. At that point it is not safe to send a remote
292 interrupt packet, so we instead remember we saw the Ctrl-C and
293 process it once we're done with sending/receiving the current
294 packet, which should be shortly. If however that takes too long,
295 and the user presses Ctrl-C again, we offer to disconnect. */
296 bool got_ctrlc_during_io = false;
297
298 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
299 remote_open knows that we don't have a file open when the program
300 starts. */
301 struct serial *remote_desc = nullptr;
302
303 /* These are the threads which we last sent to the remote system. The
304 TID member will be -1 for all or -2 for not sent yet. */
305 ptid_t general_thread = null_ptid;
306 ptid_t continue_thread = null_ptid;
307
308 /* This is the traceframe which we last selected on the remote system.
309 It will be -1 if no traceframe is selected. */
310 int remote_traceframe_number = -1;
311
312 char *last_pass_packet = nullptr;
313
314 /* The last QProgramSignals packet sent to the target. We bypass
315 sending a new program signals list down to the target if the new
316 packet is exactly the same as the last we sent. IOW, we only let
317 the target know about program signals list changes. */
318 char *last_program_signals_packet = nullptr;
319
320 gdb_signal last_sent_signal = GDB_SIGNAL_0;
321
322 bool last_sent_step = false;
323
324 /* The execution direction of the last resume we got. */
325 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
326
327 char *finished_object = nullptr;
328 char *finished_annex = nullptr;
329 ULONGEST finished_offset = 0;
330
331 /* Should we try the 'ThreadInfo' query packet?
332
333 This variable (NOT available to the user: auto-detect only!)
334 determines whether GDB will use the new, simpler "ThreadInfo"
335 query or the older, more complex syntax for thread queries.
336 This is an auto-detect variable (set to true at each connect,
337 and set to false when the target fails to recognize it). */
338 bool use_threadinfo_query = false;
339 bool use_threadextra_query = false;
340
341 threadref echo_nextthread {};
342 threadref nextthread {};
343 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
344
345 /* The state of remote notification. */
346 struct remote_notif_state *notif_state = nullptr;
347
348 /* The branch trace configuration. */
349 struct btrace_config btrace_config {};
350
351 /* The argument to the last "vFile:setfs:" packet we sent, used
352 to avoid sending repeated unnecessary "vFile:setfs:" packets.
353 Initialized to -1 to indicate that no "vFile:setfs:" packet
354 has yet been sent. */
355 int fs_pid = -1;
356
357 /* A readahead cache for vFile:pread. Often, reading a binary
358 involves a sequence of small reads. E.g., when parsing an ELF
359 file. A readahead cache helps mostly the case of remote
360 debugging on a connection with higher latency, due to the
361 request/reply nature of the RSP. We only cache data for a single
362 file descriptor at a time. */
363 struct readahead_cache readahead_cache;
364
365 /* The list of already fetched and acknowledged stop events. This
366 queue is used for notification Stop, and other notifications
367 don't need queue for their events, because the notification
368 events of Stop can't be consumed immediately, so that events
369 should be queued first, and be consumed by remote_wait_{ns,as}
370 one per time. Other notifications can consume their events
371 immediately, so queue is not needed for them. */
953edf2b 372 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
373
374 /* Asynchronous signal handle registered as event loop source for
375 when we have pending events ready to be passed to the core. */
376 struct async_event_handler *remote_async_inferior_event_token = nullptr;
377
378 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
379 ``forever'' still use the normal timeout mechanism. This is
380 currently used by the ASYNC code to guarentee that target reads
381 during the initial connect always time-out. Once getpkt has been
382 modified to return a timeout indication and, in turn
383 remote_wait()/wait_for_inferior() have gained a timeout parameter
384 this can go away. */
385 int wait_forever_enabled_p = 1;
386
387private:
388 /* Mapping of remote protocol data for each gdbarch. Usually there
389 is only one entry here, though we may see more with stubs that
390 support multi-process. */
391 std::unordered_map<struct gdbarch *, remote_arch_state>
392 m_arch_states;
393};
6b8edb51 394
d9f719f1
PA
395static const target_info remote_target_info = {
396 "remote",
397 N_("Remote serial target in gdb-specific protocol"),
398 remote_doc
399};
400
3b3dac9b 401class remote_target : public process_stratum_target
f6ac5f3d
PA
402{
403public:
3b3dac9b 404 remote_target () = default;
6b8edb51 405 ~remote_target () override;
f6ac5f3d 406
d9f719f1
PA
407 const target_info &info () const override
408 { return remote_target_info; }
f6ac5f3d 409
121b3efd
PA
410 const char *connection_string () override;
411
f6ac5f3d
PA
412 thread_control_capabilities get_thread_control_capabilities () override
413 { return tc_schedlock; }
414
d9f719f1
PA
415 /* Open a remote connection. */
416 static void open (const char *, int);
417
f6ac5f3d
PA
418 void close () override;
419
420 void detach (inferior *, int) override;
421 void disconnect (const char *, int) override;
422
423 void commit_resume () override;
424 void resume (ptid_t, int, enum gdb_signal) override;
b60cea74 425 ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
f6ac5f3d
PA
426
427 void fetch_registers (struct regcache *, int) override;
428 void store_registers (struct regcache *, int) override;
429 void prepare_to_store (struct regcache *) override;
430
431 void files_info () override;
432
433 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
434
435 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
436 enum remove_bp_reason) override;
437
438
57810aa7
PA
439 bool stopped_by_sw_breakpoint () override;
440 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 441
57810aa7 442 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 443
57810aa7 444 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 445
57810aa7 446 bool stopped_by_watchpoint () override;
f6ac5f3d 447
57810aa7 448 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 449
57810aa7 450 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
451
452 int can_use_hw_breakpoint (enum bptype, int, int) override;
453
454 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
455
456 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
457
458 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
459
460 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
461 struct expression *) override;
462
463 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
464 struct expression *) override;
465
466 void kill () override;
467
468 void load (const char *, int) override;
469
470 void mourn_inferior () override;
471
adc6a863 472 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
473
474 int set_syscall_catchpoint (int, bool, int,
475 gdb::array_view<const int>) override;
476
adc6a863 477 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 478
57810aa7 479 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
480
481 const char *thread_name (struct thread_info *) override;
482
483 void update_thread_list () override;
484
a068643d 485 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
486
487 const char *extra_thread_info (struct thread_info *) override;
488
489 ptid_t get_ada_task_ptid (long lwp, long thread) override;
490
491 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
492 int handle_len,
493 inferior *inf) override;
494
3d6c6204
KB
495 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
496 override;
497
f6ac5f3d
PA
498 void stop (ptid_t) override;
499
500 void interrupt () override;
501
502 void pass_ctrlc () override;
503
504 enum target_xfer_status xfer_partial (enum target_object object,
505 const char *annex,
506 gdb_byte *readbuf,
507 const gdb_byte *writebuf,
508 ULONGEST offset, ULONGEST len,
509 ULONGEST *xfered_len) override;
510
511 ULONGEST get_memory_xfer_limit () override;
512
513 void rcmd (const char *command, struct ui_file *output) override;
514
515 char *pid_to_exec_file (int pid) override;
516
517 void log_command (const char *cmd) override
518 {
519 serial_log_command (this, cmd);
520 }
521
522 CORE_ADDR get_thread_local_address (ptid_t ptid,
523 CORE_ADDR load_module_addr,
524 CORE_ADDR offset) override;
525
57810aa7 526 bool can_execute_reverse () override;
f6ac5f3d
PA
527
528 std::vector<mem_region> memory_map () override;
529
530 void flash_erase (ULONGEST address, LONGEST length) override;
531
532 void flash_done () override;
533
534 const struct target_desc *read_description () override;
535
536 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
537 const gdb_byte *pattern, ULONGEST pattern_len,
538 CORE_ADDR *found_addrp) override;
539
57810aa7 540 bool can_async_p () override;
f6ac5f3d 541
57810aa7 542 bool is_async_p () override;
f6ac5f3d
PA
543
544 void async (int) override;
545
5b6d1e4f
PA
546 int async_wait_fd () override;
547
f6ac5f3d
PA
548 void thread_events (int) override;
549
550 int can_do_single_step () override;
551
552 void terminal_inferior () override;
553
554 void terminal_ours () override;
555
57810aa7 556 bool supports_non_stop () override;
f6ac5f3d 557
57810aa7 558 bool supports_multi_process () override;
f6ac5f3d 559
57810aa7 560 bool supports_disable_randomization () override;
f6ac5f3d 561
57810aa7 562 bool filesystem_is_local () override;
f6ac5f3d
PA
563
564
565 int fileio_open (struct inferior *inf, const char *filename,
566 int flags, int mode, int warn_if_slow,
567 int *target_errno) override;
568
569 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
570 ULONGEST offset, int *target_errno) override;
571
572 int fileio_pread (int fd, gdb_byte *read_buf, int len,
573 ULONGEST offset, int *target_errno) override;
574
575 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
576
577 int fileio_close (int fd, int *target_errno) override;
578
579 int fileio_unlink (struct inferior *inf,
580 const char *filename,
581 int *target_errno) override;
582
583 gdb::optional<std::string>
584 fileio_readlink (struct inferior *inf,
585 const char *filename,
586 int *target_errno) override;
587
57810aa7 588 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 589
57810aa7 590 bool supports_string_tracing () override;
f6ac5f3d 591
57810aa7 592 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 593
57810aa7 594 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
595
596 void trace_init () override;
597
598 void download_tracepoint (struct bp_location *location) override;
599
57810aa7 600 bool can_download_tracepoint () override;
f6ac5f3d
PA
601
602 void download_trace_state_variable (const trace_state_variable &tsv) override;
603
604 void enable_tracepoint (struct bp_location *location) override;
605
606 void disable_tracepoint (struct bp_location *location) override;
607
608 void trace_set_readonly_regions () override;
609
610 void trace_start () override;
611
612 int get_trace_status (struct trace_status *ts) override;
613
614 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
615 override;
616
617 void trace_stop () override;
618
619 int trace_find (enum trace_find_type type, int num,
620 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
621
57810aa7 622 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
623
624 int save_trace_data (const char *filename) override;
625
626 int upload_tracepoints (struct uploaded_tp **utpp) override;
627
628 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
629
630 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
631
632 int get_min_fast_tracepoint_insn_len () override;
633
634 void set_disconnected_tracing (int val) override;
635
636 void set_circular_trace_buffer (int val) override;
637
638 void set_trace_buffer_size (LONGEST val) override;
639
57810aa7
PA
640 bool set_trace_notes (const char *user, const char *notes,
641 const char *stopnotes) override;
f6ac5f3d
PA
642
643 int core_of_thread (ptid_t ptid) override;
644
645 int verify_memory (const gdb_byte *data,
646 CORE_ADDR memaddr, ULONGEST size) override;
647
648
57810aa7 649 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
650
651 void set_permissions () override;
652
653 bool static_tracepoint_marker_at (CORE_ADDR,
654 struct static_tracepoint_marker *marker)
655 override;
656
657 std::vector<static_tracepoint_marker>
658 static_tracepoint_markers_by_strid (const char *id) override;
659
660 traceframe_info_up traceframe_info () override;
661
57810aa7
PA
662 bool use_agent (bool use) override;
663 bool can_use_agent () override;
f6ac5f3d
PA
664
665 struct btrace_target_info *enable_btrace (ptid_t ptid,
666 const struct btrace_config *conf) override;
667
668 void disable_btrace (struct btrace_target_info *tinfo) override;
669
670 void teardown_btrace (struct btrace_target_info *tinfo) override;
671
672 enum btrace_error read_btrace (struct btrace_data *data,
673 struct btrace_target_info *btinfo,
674 enum btrace_read_type type) override;
675
676 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 677 bool augmented_libraries_svr4_read () override;
5ab2fbf1 678 bool follow_fork (bool, bool) override;
4ca51187 679 void follow_exec (struct inferior *, const char *) override;
f6ac5f3d
PA
680 int insert_fork_catchpoint (int) override;
681 int remove_fork_catchpoint (int) override;
682 int insert_vfork_catchpoint (int) override;
683 int remove_vfork_catchpoint (int) override;
684 int insert_exec_catchpoint (int) override;
685 int remove_exec_catchpoint (int) override;
686 enum exec_direction_kind execution_direction () override;
687
6b8edb51
PA
688public: /* Remote specific methods. */
689
690 void remote_download_command_source (int num, ULONGEST addr,
691 struct command_line *cmds);
692
693 void remote_file_put (const char *local_file, const char *remote_file,
694 int from_tty);
695 void remote_file_get (const char *remote_file, const char *local_file,
696 int from_tty);
697 void remote_file_delete (const char *remote_file, int from_tty);
698
699 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
700 ULONGEST offset, int *remote_errno);
701 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
702 ULONGEST offset, int *remote_errno);
703 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
704 ULONGEST offset, int *remote_errno);
705
706 int remote_hostio_send_command (int command_bytes, int which_packet,
707 int *remote_errno, char **attachment,
708 int *attachment_len);
709 int remote_hostio_set_filesystem (struct inferior *inf,
710 int *remote_errno);
711 /* We should get rid of this and use fileio_open directly. */
712 int remote_hostio_open (struct inferior *inf, const char *filename,
713 int flags, int mode, int warn_if_slow,
714 int *remote_errno);
715 int remote_hostio_close (int fd, int *remote_errno);
716
717 int remote_hostio_unlink (inferior *inf, const char *filename,
718 int *remote_errno);
719
720 struct remote_state *get_remote_state ();
721
722 long get_remote_packet_size (void);
723 long get_memory_packet_size (struct memory_packet_config *config);
724
725 long get_memory_write_packet_size ();
726 long get_memory_read_packet_size ();
727
728 char *append_pending_thread_resumptions (char *p, char *endp,
729 ptid_t ptid);
d9f719f1 730 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 731 void start_remote (int from_tty, int extended_p);
00431a78 732 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
733
734 char *append_resumption (char *p, char *endp,
735 ptid_t ptid, int step, gdb_signal siggnal);
736 int remote_resume_with_vcont (ptid_t ptid, int step,
737 gdb_signal siggnal);
738
739 void add_current_inferior_and_thread (char *wait_status);
740
741 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
b60cea74 742 target_wait_flags options);
6b8edb51 743 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
b60cea74 744 target_wait_flags options);
6b8edb51
PA
745
746 ptid_t process_stop_reply (struct stop_reply *stop_reply,
747 target_waitstatus *status);
748
749 void remote_notice_new_inferior (ptid_t currthread, int executing);
750
751 void process_initial_stop_replies (int from_tty);
752
00431a78 753 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
754
755 void btrace_sync_conf (const btrace_config *conf);
756
757 void remote_btrace_maybe_reopen ();
758
759 void remove_new_fork_children (threads_listing_context *context);
760 void kill_new_fork_children (int pid);
761 void discard_pending_stop_replies (struct inferior *inf);
762 int stop_reply_queue_length ();
763
764 void check_pending_events_prevent_wildcard_vcont
765 (int *may_global_wildcard_vcont);
766
767 void discard_pending_stop_replies_in_queue ();
768 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
769 struct stop_reply *queued_stop_reply (ptid_t ptid);
770 int peek_stop_reply (ptid_t ptid);
bb277751 771 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
772
773 void remote_stop_ns (ptid_t ptid);
774 void remote_interrupt_as ();
775 void remote_interrupt_ns ();
776
777 char *remote_get_noisy_reply ();
778 int remote_query_attached (int pid);
9ab8741a 779 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51
PA
780 int try_open_exec);
781
782 ptid_t remote_current_thread (ptid_t oldpid);
783 ptid_t get_current_thread (char *wait_status);
784
785 void set_thread (ptid_t ptid, int gen);
786 void set_general_thread (ptid_t ptid);
787 void set_continue_thread (ptid_t ptid);
788 void set_general_process ();
789
790 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
791
792 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
793 gdb_ext_thread_info *info);
794 int remote_get_threadinfo (threadref *threadid, int fieldset,
795 gdb_ext_thread_info *info);
796
797 int parse_threadlist_response (char *pkt, int result_limit,
798 threadref *original_echo,
799 threadref *resultlist,
800 int *doneflag);
801 int remote_get_threadlist (int startflag, threadref *nextthread,
802 int result_limit, int *done, int *result_count,
803 threadref *threadlist);
804
805 int remote_threadlist_iterator (rmt_thread_action stepfunction,
806 void *context, int looplimit);
807
808 int remote_get_threads_with_ql (threads_listing_context *context);
809 int remote_get_threads_with_qxfer (threads_listing_context *context);
810 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
811
812 void extended_remote_restart ();
813
814 void get_offsets ();
815
816 void remote_check_symbols ();
817
818 void remote_supported_packet (const struct protocol_feature *feature,
819 enum packet_support support,
820 const char *argument);
821
822 void remote_query_supported ();
823
824 void remote_packet_size (const protocol_feature *feature,
825 packet_support support, const char *value);
826
827 void remote_serial_quit_handler ();
828
829 void remote_detach_pid (int pid);
830
831 void remote_vcont_probe ();
832
833 void remote_resume_with_hc (ptid_t ptid, int step,
834 gdb_signal siggnal);
835
836 void send_interrupt_sequence ();
837 void interrupt_query ();
838
839 void remote_notif_get_pending_events (notif_client *nc);
840
841 int fetch_register_using_p (struct regcache *regcache,
842 packet_reg *reg);
843 int send_g_packet ();
844 void process_g_packet (struct regcache *regcache);
845 void fetch_registers_using_g (struct regcache *regcache);
846 int store_register_using_P (const struct regcache *regcache,
847 packet_reg *reg);
848 void store_registers_using_G (const struct regcache *regcache);
849
850 void set_remote_traceframe ();
851
852 void check_binary_download (CORE_ADDR addr);
853
854 target_xfer_status remote_write_bytes_aux (const char *header,
855 CORE_ADDR memaddr,
856 const gdb_byte *myaddr,
857 ULONGEST len_units,
858 int unit_size,
859 ULONGEST *xfered_len_units,
860 char packet_format,
861 int use_length);
862
863 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
864 const gdb_byte *myaddr, ULONGEST len,
865 int unit_size, ULONGEST *xfered_len);
866
867 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
868 ULONGEST len_units,
869 int unit_size, ULONGEST *xfered_len_units);
870
871 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
872 ULONGEST memaddr,
873 ULONGEST len,
874 int unit_size,
875 ULONGEST *xfered_len);
876
877 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
878 gdb_byte *myaddr, ULONGEST len,
879 int unit_size,
880 ULONGEST *xfered_len);
881
882 packet_result remote_send_printf (const char *format, ...)
883 ATTRIBUTE_PRINTF (2, 3);
884
885 target_xfer_status remote_flash_write (ULONGEST address,
886 ULONGEST length, ULONGEST *xfered_len,
887 const gdb_byte *data);
888
889 int readchar (int timeout);
890
891 void remote_serial_write (const char *str, int len);
892
893 int putpkt (const char *buf);
894 int putpkt_binary (const char *buf, int cnt);
895
8d64371b
TT
896 int putpkt (const gdb::char_vector &buf)
897 {
898 return putpkt (buf.data ());
899 }
900
6b8edb51 901 void skip_frame ();
8d64371b
TT
902 long read_frame (gdb::char_vector *buf_p);
903 void getpkt (gdb::char_vector *buf, int forever);
904 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 905 int expecting_notif, int *is_notif);
8d64371b
TT
906 int getpkt_sane (gdb::char_vector *buf, int forever);
907 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
908 int *is_notif);
909 int remote_vkill (int pid);
910 void remote_kill_k ();
911
912 void extended_remote_disable_randomization (int val);
913 int extended_remote_run (const std::string &args);
914
915 void send_environment_packet (const char *action,
916 const char *packet,
917 const char *value);
918
919 void extended_remote_environment_support ();
3c69da40 920 void extended_remote_set_inferior_cwd ();
80152258 921
3c69da40
PA
922 target_xfer_status remote_write_qxfer (const char *object_name,
923 const char *annex,
924 const gdb_byte *writebuf,
925 ULONGEST offset, LONGEST len,
926 ULONGEST *xfered_len,
927 struct packet_config *packet);
43c3a0e4 928
3c69da40
PA
929 target_xfer_status remote_read_qxfer (const char *object_name,
930 const char *annex,
931 gdb_byte *readbuf, ULONGEST offset,
932 LONGEST len,
933 ULONGEST *xfered_len,
934 struct packet_config *packet);
43c3a0e4 935
3c69da40 936 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 937
3c69da40 938 bool vcont_r_supported ();
43c3a0e4 939
3c69da40 940 void packet_command (const char *args, int from_tty);
43c3a0e4 941
3c69da40 942private: /* data fields */
43c3a0e4 943
3c69da40
PA
944 /* The remote state. Don't reference this directly. Use the
945 get_remote_state method instead. */
946 remote_state m_remote_state;
43c3a0e4
PA
947};
948
3c69da40
PA
949static const target_info extended_remote_target_info = {
950 "extended-remote",
951 N_("Extended remote serial target in gdb-specific protocol"),
952 remote_doc
953};
ea9c271d 954
3c69da40
PA
955/* Set up the extended remote target by extending the standard remote
956 target and adding to it. */
957
958class extended_remote_target final : public remote_target
ea9c271d 959{
9d6eea31 960public:
3c69da40
PA
961 const target_info &info () const override
962 { return extended_remote_target_info; }
9d6eea31 963
3c69da40
PA
964 /* Open an extended-remote connection. */
965 static void open (const char *, int);
de44f5a7 966
3c69da40
PA
967 bool can_create_inferior () override { return true; }
968 void create_inferior (const char *, const std::string &,
969 char **, int) override;
9d6eea31 970
3c69da40 971 void detach (inferior *, int) override;
9d6eea31 972
3c69da40
PA
973 bool can_attach () override { return true; }
974 void attach (const char *, int) override;
be2a5f71 975
3c69da40
PA
976 void post_attach (int) override;
977 bool supports_disable_randomization () override;
978};
1e51243a 979
3c69da40 980/* Per-program-space data key. */
7b4a314f
TT
981static const struct program_space_key<char, gdb::xfree_deleter<char>>
982 remote_pspace_data;
2d717e4f 983
3c69da40
PA
984/* The variable registered as the control variable used by the
985 remote exec-file commands. While the remote exec-file setting is
986 per-program-space, the set/show machinery uses this as the
987 location of the remote exec-file value. */
988static char *remote_exec_file_var;
a6f3e723 989
3c69da40
PA
990/* The size to align memory write packets, when practical. The protocol
991 does not guarantee any alignment, and gdb will generate short
992 writes and unaligned writes, but even as a best-effort attempt this
993 can improve bulk transfers. For instance, if a write is misaligned
994 relative to the target's data bus, the stub may need to make an extra
995 round trip fetching data from the target. This doesn't make a
996 huge difference, but it's easy to do, so we try to be helpful.
82f73884 997
3c69da40
PA
998 The alignment chosen is arbitrary; usually data bus width is
999 important here, not the possibly larger cache line size. */
1000enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 1001
3c69da40 1002/* Prototypes for local functions. */
74531fed 1003
3c69da40 1004static int hexnumlen (ULONGEST num);
782b2b07 1005
3c69da40 1006static int stubhex (int ch);
5d93a237 1007
3c69da40 1008static int hexnumstr (char *, ULONGEST);
048094ac 1009
3c69da40 1010static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1011
3c69da40 1012static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1013
3c69da40 1014static void print_packet (const char *);
747dc59d 1015
3c69da40 1016static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1017
3c69da40 1018struct packet_config;
b73be471 1019
3c69da40 1020static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1021
3c69da40
PA
1022static void show_remote_protocol_packet_cmd (struct ui_file *file,
1023 int from_tty,
1024 struct cmd_list_element *c,
1025 const char *value);
8e88304f 1026
3c69da40 1027static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1028
3c69da40 1029static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1030
eefce37f 1031static bool remote_read_description_p (struct target_ops *target);
88b496c3 1032
05be00a8 1033static void remote_console_output (const char *msg);
5965e028 1034
3c69da40 1035static void remote_btrace_reset (remote_state *rs);
f4abbc16 1036
5b6d1e4f 1037static void remote_unpush_and_throw (remote_target *target);
15a201c8 1038
3c69da40 1039/* For "remote". */
80152258 1040
3c69da40 1041static struct cmd_list_element *remote_cmdlist;
9d6eea31 1042
3c69da40 1043/* For "set remote" and "show remote". */
6b8edb51 1044
3c69da40
PA
1045static struct cmd_list_element *remote_set_cmdlist;
1046static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1047
3c69da40 1048/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1049
491144b5 1050static bool use_range_stepping = true;
3c69da40 1051
7aabaf9d
SM
1052/* Private data that we'll store in (struct thread_info)->priv. */
1053struct remote_thread_info : public private_thread_info
dc146f7c 1054{
7aabaf9d
SM
1055 std::string extra;
1056 std::string name;
1057 int core = -1;
799a2abe 1058
f6327dcb
KB
1059 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1060 sequence of bytes. */
7aabaf9d 1061 gdb::byte_vector thread_handle;
f6327dcb 1062
799a2abe 1063 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1064 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1065
1066 /* This is set to the data address of the access causing the target
1067 to stop for a watchpoint. */
7aabaf9d 1068 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1069
1070 /* Fields used by the vCont action coalescing implemented in
1071 remote_resume / remote_commit_resume. remote_resume stores each
1072 thread's last resume request in these fields, so that a later
1073 remote_commit_resume knows which is the proper action for this
1074 thread to include in the vCont packet. */
1075
1076 /* True if the last target_resume call for this thread was a step
1077 request, false if a continue request. */
7aabaf9d 1078 int last_resume_step = 0;
85ad3aaf
PA
1079
1080 /* The signal specified in the last target_resume call for this
1081 thread. */
7aabaf9d 1082 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1083
1084 /* Whether this thread was already vCont-resumed on the remote
1085 side. */
7aabaf9d 1086 int vcont_resumed = 0;
dc146f7c
VP
1087};
1088
de44f5a7 1089remote_state::remote_state ()
8d64371b 1090 : buf (400)
de44f5a7 1091{
de44f5a7
PA
1092}
1093
1094remote_state::~remote_state ()
1095{
1096 xfree (this->last_pass_packet);
1097 xfree (this->last_program_signals_packet);
de44f5a7
PA
1098 xfree (this->finished_object);
1099 xfree (this->finished_annex);
cf792862
TT
1100}
1101
35b1e5cc
SS
1102/* Utility: generate error from an incoming stub packet. */
1103static void
1104trace_error (char *buf)
1105{
1106 if (*buf++ != 'E')
1107 return; /* not an error msg */
1108 switch (*buf)
1109 {
1110 case '1': /* malformed packet error */
1111 if (*++buf == '0') /* general case: */
1112 error (_("remote.c: error in outgoing packet."));
1113 else
1114 error (_("remote.c: error in outgoing packet at field #%ld."),
1115 strtol (buf, NULL, 16));
35b1e5cc
SS
1116 default:
1117 error (_("Target returns error code '%s'."), buf);
1118 }
1119}
1120
1121/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1122
6b8edb51
PA
1123char *
1124remote_target::remote_get_noisy_reply ()
35b1e5cc 1125{
b6bb3468
PA
1126 struct remote_state *rs = get_remote_state ();
1127
35b1e5cc
SS
1128 do /* Loop on reply from remote stub. */
1129 {
1130 char *buf;
a744cf53 1131
0df8b418 1132 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1133 getpkt (&rs->buf, 0);
1134 buf = rs->buf.data ();
ad91cd99 1135 if (buf[0] == 'E')
35b1e5cc 1136 trace_error (buf);
61012eef 1137 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1138 {
1139 ULONGEST ul;
1140 CORE_ADDR from, to, org_to;
256642e8 1141 const char *p, *pp;
dde08ee1 1142 int adjusted_size = 0;
7556d4a4 1143 int relocated = 0;
dde08ee1
PA
1144
1145 p = buf + strlen ("qRelocInsn:");
1146 pp = unpack_varlen_hex (p, &ul);
1147 if (*pp != ';')
cb91c06a 1148 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1149 from = ul;
1150
1151 p = pp + 1;
a9cbf802 1152 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1153 to = ul;
1154
1155 org_to = to;
1156
a70b8144 1157 try
dde08ee1 1158 {
f5656ead 1159 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1160 relocated = 1;
dde08ee1 1161 }
230d2906 1162 catch (const gdb_exception &ex)
7556d4a4
PA
1163 {
1164 if (ex.error == MEMORY_ERROR)
1165 {
1166 /* Propagate memory errors silently back to the
1167 target. The stub may have limited the range of
1168 addresses we can write to, for example. */
1169 }
1170 else
1171 {
1172 /* Something unexpectedly bad happened. Be verbose
1173 so we can tell what, and propagate the error back
1174 to the stub, so it doesn't get stuck waiting for
1175 a response. */
1176 exception_fprintf (gdb_stderr, ex,
1177 _("warning: relocating instruction: "));
1178 }
1179 putpkt ("E01");
1180 }
1181
1182 if (relocated)
dde08ee1
PA
1183 {
1184 adjusted_size = to - org_to;
1185
8d64371b 1186 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1187 putpkt (buf);
1188 }
dde08ee1 1189 }
ad91cd99 1190 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1191 remote_console_output (buf + 1); /* 'O' message from stub */
1192 else
0df8b418 1193 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1194 }
1195 while (1);
1196}
3c3bea1c 1197
9d6eea31
PA
1198struct remote_arch_state *
1199remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1200{
43c3a0e4
PA
1201 remote_arch_state *rsa;
1202
1203 auto it = this->m_arch_states.find (gdbarch);
1204 if (it == this->m_arch_states.end ())
9d6eea31 1205 {
43c3a0e4
PA
1206 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1207 std::forward_as_tuple (gdbarch),
1208 std::forward_as_tuple (gdbarch));
1209 rsa = &p.first->second;
9d6eea31
PA
1210
1211 /* Make sure that the packet buffer is plenty big enough for
1212 this architecture. */
8d64371b
TT
1213 if (this->buf.size () < rsa->remote_packet_size)
1214 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1215 }
43c3a0e4
PA
1216 else
1217 rsa = &it->second;
1218
1219 return rsa;
d01949b6
AC
1220}
1221
0b83947e
DJ
1222/* Fetch the global remote target state. */
1223
6b8edb51
PA
1224remote_state *
1225remote_target::get_remote_state ()
0b83947e
DJ
1226{
1227 /* Make sure that the remote architecture state has been
1228 initialized, because doing so might reallocate rs->buf. Any
1229 function which calls getpkt also needs to be mindful of changes
1230 to rs->buf, but this call limits the number of places which run
1231 into trouble. */
3c69da40 1232 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1233
3c69da40 1234 return &m_remote_state;
0b83947e
DJ
1235}
1236
94585166
DB
1237/* Fetch the remote exec-file from the current program space. */
1238
1239static const char *
1240get_remote_exec_file (void)
1241{
1242 char *remote_exec_file;
1243
7b4a314f 1244 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1245 if (remote_exec_file == NULL)
1246 return "";
1247
1248 return remote_exec_file;
1249}
1250
1251/* Set the remote exec file for PSPACE. */
1252
1253static void
1254set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1255 const char *remote_exec_file)
94585166 1256{
7b4a314f 1257 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1258
1259 xfree (old_file);
7b4a314f 1260 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1261}
1262
1263/* The "set/show remote exec-file" set command hook. */
1264
1265static void
eb4c3f4a 1266set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1267 struct cmd_list_element *c)
1268{
1269 gdb_assert (remote_exec_file_var != NULL);
1270 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1271}
1272
1273/* The "set/show remote exec-file" show command hook. */
1274
1275static void
1276show_remote_exec_file (struct ui_file *file, int from_tty,
1277 struct cmd_list_element *cmd, const char *value)
1278{
acdf84a6 1279 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
94585166
DB
1280}
1281
c21236dc
PA
1282static int
1283map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1284{
74ca34ce 1285 int regnum, num_remote_regs, offset;
74ca34ce 1286 struct packet_reg **remote_regs;
ea9c271d 1287
4a22f64d 1288 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1289 {
c21236dc 1290 struct packet_reg *r = &regs[regnum];
baef701f 1291
4a22f64d 1292 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1293 /* Do not try to fetch zero-sized (placeholder) registers. */
1294 r->pnum = -1;
1295 else
1296 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1297
b323314b 1298 r->regnum = regnum;
74ca34ce
DJ
1299 }
1300
1301 /* Define the g/G packet format as the contents of each register
1302 with a remote protocol number, in order of ascending protocol
1303 number. */
1304
224c3ddb 1305 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1306 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1307 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1308 regnum++)
c21236dc
PA
1309 if (regs[regnum].pnum != -1)
1310 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1311
39ef2f62
CB
1312 std::sort (remote_regs, remote_regs + num_remote_regs,
1313 [] (const packet_reg *a, const packet_reg *b)
1314 { return a->pnum < b->pnum; });
74ca34ce
DJ
1315
1316 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1317 {
1318 remote_regs[regnum]->in_g_packet = 1;
1319 remote_regs[regnum]->offset = offset;
4a22f64d 1320 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1321 }
1322
c21236dc
PA
1323 return offset;
1324}
1325
1326/* Given the architecture described by GDBARCH, return the remote
1327 protocol register's number and the register's offset in the g/G
1328 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1329 If the target does not have a mapping for REGNUM, return false,
1330 otherwise, return true. */
1331
1332int
1333remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1334 int *pnum, int *poffset)
1335{
c21236dc
PA
1336 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1337
b80406ac 1338 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1339
b80406ac 1340 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1341
1342 *pnum = regs[regnum].pnum;
1343 *poffset = regs[regnum].offset;
1344
c21236dc
PA
1345 return *pnum != -1;
1346}
1347
9d6eea31 1348remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1349{
c21236dc
PA
1350 /* Use the architecture to build a regnum<->pnum table, which will be
1351 1:1 unless a feature set specifies otherwise. */
9d6eea31 1352 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1353
74ca34ce
DJ
1354 /* Record the maximum possible size of the g packet - it may turn out
1355 to be smaller. */
9d6eea31
PA
1356 this->sizeof_g_packet
1357 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1358
0df8b418 1359 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1360 remote stubs have a hardwired buffer size of 400 bytes
1361 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1362 as the maximum packet-size to ensure that the packet and an extra
1363 NUL character can always fit in the buffer. This stops GDB
1364 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1365 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1366 this->remote_packet_size = 400 - 1;
d01949b6 1367
ea9c271d 1368 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1369 this->actual_register_packet_size = 0;
ea9c271d
DJ
1370
1371 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1372 default, adjust the size accordingly. Remember that each byte is
1373 encoded as two characters. 32 is the overhead for the packet
1374 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1375 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1376 little. */
9d6eea31
PA
1377 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1378 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1379}
1380
6b8edb51
PA
1381/* Get a pointer to the current remote target. If not connected to a
1382 remote target, return NULL. */
1383
1384static remote_target *
1385get_current_remote_target ()
1386{
5b6d1e4f 1387 target_ops *proc_target = current_inferior ()->process_target ();
6b8edb51
PA
1388 return dynamic_cast<remote_target *> (proc_target);
1389}
1390
ea9c271d
DJ
1391/* Return the current allowed size of a remote packet. This is
1392 inferred from the current architecture, and should be used to
1393 limit the length of outgoing packets. */
6b8edb51
PA
1394long
1395remote_target::get_remote_packet_size ()
ea9c271d 1396{
be2a5f71 1397 struct remote_state *rs = get_remote_state ();
9d6eea31 1398 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1399
be2a5f71
DJ
1400 if (rs->explicit_packet_size)
1401 return rs->explicit_packet_size;
1402
ea9c271d 1403 return rsa->remote_packet_size;
d01949b6
AC
1404}
1405
ad10f812 1406static struct packet_reg *
5cd63fda
PA
1407packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1408 long regnum)
ad10f812 1409{
5cd63fda 1410 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1411 return NULL;
1412 else
ad10f812 1413 {
ea9c271d 1414 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1415
b323314b
AC
1416 gdb_assert (r->regnum == regnum);
1417 return r;
ad10f812 1418 }
ad10f812
AC
1419}
1420
1421static struct packet_reg *
5cd63fda
PA
1422packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1423 LONGEST pnum)
ad10f812 1424{
b323314b 1425 int i;
a744cf53 1426
5cd63fda 1427 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1428 {
ea9c271d 1429 struct packet_reg *r = &rsa->regs[i];
a744cf53 1430
b323314b
AC
1431 if (r->pnum == pnum)
1432 return r;
ad10f812
AC
1433 }
1434 return NULL;
d01949b6
AC
1435}
1436
9a7071a8
JB
1437/* Allow the user to specify what sequence to send to the remote
1438 when he requests a program interruption: Although ^C is usually
1439 what remote systems expect (this is the default, here), it is
1440 sometimes preferable to send a break. On other systems such
1441 as the Linux kernel, a break followed by g, which is Magic SysRq g
1442 is required in order to interrupt the execution. */
1443const char interrupt_sequence_control_c[] = "Ctrl-C";
1444const char interrupt_sequence_break[] = "BREAK";
1445const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1446static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1447 {
1448 interrupt_sequence_control_c,
1449 interrupt_sequence_break,
1450 interrupt_sequence_break_g,
1451 NULL
1452 };
1453static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1454
1455static void
1456show_interrupt_sequence (struct ui_file *file, int from_tty,
1457 struct cmd_list_element *c,
1458 const char *value)
1459{
1460 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1461 fprintf_filtered (file,
1462 _("Send the ASCII ETX character (Ctrl-c) "
1463 "to the remote target to interrupt the "
1464 "execution of the program.\n"));
1465 else if (interrupt_sequence_mode == interrupt_sequence_break)
1466 fprintf_filtered (file,
1467 _("send a break signal to the remote target "
1468 "to interrupt the execution of the program.\n"));
1469 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1470 fprintf_filtered (file,
1471 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1472 "the remote target to interrupt the execution "
1473 "of Linux kernel.\n"));
1474 else
1475 internal_error (__FILE__, __LINE__,
1476 _("Invalid value for interrupt_sequence_mode: %s."),
1477 interrupt_sequence_mode);
1478}
6426a772 1479
9a7071a8
JB
1480/* This boolean variable specifies whether interrupt_sequence is sent
1481 to the remote target when gdb connects to it.
1482 This is mostly needed when you debug the Linux kernel: The Linux kernel
1483 expects BREAK g which is Magic SysRq g for connecting gdb. */
491144b5 1484static bool interrupt_on_connect = false;
c906108c 1485
9a7071a8
JB
1486/* This variable is used to implement the "set/show remotebreak" commands.
1487 Since these commands are now deprecated in favor of "set/show remote
1488 interrupt-sequence", it no longer has any effect on the code. */
491144b5 1489static bool remote_break;
c906108c 1490
9a7071a8 1491static void
eb4c3f4a 1492set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1493{
1494 if (remote_break)
1495 interrupt_sequence_mode = interrupt_sequence_break;
1496 else
1497 interrupt_sequence_mode = interrupt_sequence_control_c;
1498}
1499
1500static void
1501show_remotebreak (struct ui_file *file, int from_tty,
1502 struct cmd_list_element *c,
1503 const char *value)
1504{
1505}
1506
c906108c
SS
1507/* This variable sets the number of bits in an address that are to be
1508 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1509 leading zeros, the entire address would be sent. This variable
c906108c
SS
1510 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1511 initial implementation of remote.c restricted the address sent in
1512 memory packets to ``host::sizeof long'' bytes - (typically 32
1513 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1514 address was never sent. Since fixing this bug may cause a break in
85102364 1515 some remote targets this variable is principally provided to
23860348 1516 facilitate backward compatibility. */
c906108c 1517
883b9c6c 1518static unsigned int remote_address_size;
c906108c 1519
11cf8741 1520\f
11cf8741 1521/* User configurable variables for the number of characters in a
ea9c271d
DJ
1522 memory read/write packet. MIN (rsa->remote_packet_size,
1523 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1524 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1525 (speed up transfers). The variables ``preferred_*'' (the user
1526 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1527 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1528
1529struct memory_packet_config
1530{
a121b7c1 1531 const char *name;
11cf8741
JM
1532 long size;
1533 int fixed_p;
1534};
1535
cc0be08f
PA
1536/* The default max memory-write-packet-size, when the setting is
1537 "fixed". The 16k is historical. (It came from older GDB's using
1538 alloca for buffers and the knowledge (folklore?) that some hosts
1539 don't cope very well with large alloca calls.) */
1540#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1541
1542/* The minimum remote packet size for memory transfers. Ensures we
1543 can write at least one byte. */
1544#define MIN_MEMORY_PACKET_SIZE 20
1545
cc0be08f
PA
1546/* Get the memory packet size, assuming it is fixed. */
1547
1548static long
1549get_fixed_memory_packet_size (struct memory_packet_config *config)
1550{
1551 gdb_assert (config->fixed_p);
1552
1553 if (config->size <= 0)
1554 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1555 else
1556 return config->size;
1557}
1558
11cf8741
JM
1559/* Compute the current size of a read/write packet. Since this makes
1560 use of ``actual_register_packet_size'' the computation is dynamic. */
1561
6b8edb51
PA
1562long
1563remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1564{
d01949b6 1565 struct remote_state *rs = get_remote_state ();
9d6eea31 1566 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1567
11cf8741
JM
1568 long what_they_get;
1569 if (config->fixed_p)
cc0be08f 1570 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1571 else
1572 {
ea9c271d 1573 what_they_get = get_remote_packet_size ();
23860348 1574 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1575 if (config->size > 0
1576 && what_they_get > config->size)
1577 what_they_get = config->size;
be2a5f71
DJ
1578
1579 /* Limit it to the size of the targets ``g'' response unless we have
1580 permission from the stub to use a larger packet size. */
1581 if (rs->explicit_packet_size == 0
1582 && rsa->actual_register_packet_size > 0
1583 && what_they_get > rsa->actual_register_packet_size)
1584 what_they_get = rsa->actual_register_packet_size;
11cf8741 1585 }
a5c0808e
PA
1586 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1587 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1588
1589 /* Make sure there is room in the global buffer for this packet
1590 (including its trailing NUL byte). */
8d64371b
TT
1591 if (rs->buf.size () < what_they_get + 1)
1592 rs->buf.resize (2 * what_they_get);
6d820c5c 1593
11cf8741
JM
1594 return what_they_get;
1595}
1596
0df8b418 1597/* Update the size of a read/write packet. If they user wants
23860348 1598 something really big then do a sanity check. */
11cf8741
JM
1599
1600static void
ac88e2de 1601set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1602{
1603 int fixed_p = config->fixed_p;
1604 long size = config->size;
a744cf53 1605
11cf8741 1606 if (args == NULL)
8a3fe4f8 1607 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1608 else if (strcmp (args, "hard") == 0
1609 || strcmp (args, "fixed") == 0)
1610 fixed_p = 1;
1611 else if (strcmp (args, "soft") == 0
1612 || strcmp (args, "limit") == 0)
1613 fixed_p = 0;
1614 else
1615 {
1616 char *end;
a744cf53 1617
11cf8741
JM
1618 size = strtoul (args, &end, 0);
1619 if (args == end)
8a3fe4f8 1620 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1621
1622 /* Instead of explicitly capping the size of a packet to or
1623 disallowing it, the user is allowed to set the size to
1624 something arbitrarily large. */
11cf8741 1625 }
a5c0808e 1626
23860348 1627 /* Extra checks? */
11cf8741
JM
1628 if (fixed_p && !config->fixed_p)
1629 {
cc0be08f
PA
1630 /* So that the query shows the correct value. */
1631 long query_size = (size <= 0
1632 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1633 : size);
1634
e2e0b3e5
AC
1635 if (! query (_("The target may not be able to correctly handle a %s\n"
1636 "of %ld bytes. Change the packet size? "),
cc0be08f 1637 config->name, query_size))
8a3fe4f8 1638 error (_("Packet size not changed."));
11cf8741 1639 }
23860348 1640 /* Update the config. */
11cf8741
JM
1641 config->fixed_p = fixed_p;
1642 config->size = size;
1643}
1644
1645static void
1646show_memory_packet_size (struct memory_packet_config *config)
1647{
cc0be08f
PA
1648 if (config->size == 0)
1649 printf_filtered (_("The %s is 0 (default). "), config->name);
1650 else
1651 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1652 if (config->fixed_p)
a3f17187 1653 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1654 get_fixed_memory_packet_size (config));
11cf8741 1655 else
cc0be08f 1656 {
6b8edb51 1657 remote_target *remote = get_current_remote_target ();
cc0be08f 1658
6b8edb51 1659 if (remote != NULL)
cc0be08f 1660 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1661 remote->get_memory_packet_size (config));
cc0be08f
PA
1662 else
1663 puts_filtered ("The actual limit will be further reduced "
1664 "dependent on the target.\n");
1665 }
11cf8741
JM
1666}
1667
5b6d1e4f 1668/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1669static struct memory_packet_config memory_write_packet_config =
1670{
1671 "memory-write-packet-size",
1672};
1673
1674static void
ac88e2de 1675set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1676{
1677 set_memory_packet_size (args, &memory_write_packet_config);
1678}
1679
1680static void
ac88e2de 1681show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1682{
1683 show_memory_packet_size (&memory_write_packet_config);
1684}
1685
055303e2
AB
1686/* Show the number of hardware watchpoints that can be used. */
1687
1688static void
1689show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1690 struct cmd_list_element *c,
1691 const char *value)
1692{
1693 fprintf_filtered (file, _("The maximum number of target hardware "
1694 "watchpoints is %s.\n"), value);
1695}
1696
1697/* Show the length limit (in bytes) for hardware watchpoints. */
1698
1699static void
1700show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1701 struct cmd_list_element *c,
1702 const char *value)
1703{
1704 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1705 "hardware watchpoint is %s.\n"), value);
1706}
1707
1708/* Show the number of hardware breakpoints that can be used. */
1709
1710static void
1711show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1712 struct cmd_list_element *c,
1713 const char *value)
1714{
1715 fprintf_filtered (file, _("The maximum number of target hardware "
1716 "breakpoints is %s.\n"), value);
1717}
1718
6cc8564b
LM
1719/* Controls the maximum number of characters to display in the debug output
1720 for each remote packet. The remaining characters are omitted. */
1721
1722static int remote_packet_max_chars = 512;
1723
1724/* Show the maximum number of characters to display for each remote packet
1725 when remote debugging is enabled. */
1726
1727static void
1728show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1729 struct cmd_list_element *c,
1730 const char *value)
1731{
1732 fprintf_filtered (file, _("Number of remote packet characters to "
1733 "display is %s.\n"), value);
1734}
1735
6b8edb51
PA
1736long
1737remote_target::get_memory_write_packet_size ()
11cf8741
JM
1738{
1739 return get_memory_packet_size (&memory_write_packet_config);
1740}
1741
5b6d1e4f 1742/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1743static struct memory_packet_config memory_read_packet_config =
1744{
1745 "memory-read-packet-size",
1746};
1747
1748static void
ac88e2de 1749set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1750{
1751 set_memory_packet_size (args, &memory_read_packet_config);
1752}
1753
1754static void
ac88e2de 1755show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1756{
1757 show_memory_packet_size (&memory_read_packet_config);
1758}
1759
6b8edb51
PA
1760long
1761remote_target::get_memory_read_packet_size ()
11cf8741
JM
1762{
1763 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1764
11cf8741
JM
1765 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1766 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1767 increased beyond this. */
1768 if (size > get_remote_packet_size ())
1769 size = get_remote_packet_size ();
11cf8741
JM
1770 return size;
1771}
1772
11cf8741 1773\f
5a2468f5 1774
5a2468f5
JM
1775struct packet_config
1776 {
bb572ddd
DJ
1777 const char *name;
1778 const char *title;
4082afcc
PA
1779
1780 /* If auto, GDB auto-detects support for this packet or feature,
1781 either through qSupported, or by trying the packet and looking
1782 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1783 packet. If false, the packet is disabled. Configs that don't
1784 have an associated command always have this set to auto. */
7f19b9a2 1785 enum auto_boolean detect;
4082afcc
PA
1786
1787 /* Does the target support this packet? */
5a2468f5
JM
1788 enum packet_support support;
1789 };
1790
4082afcc
PA
1791static enum packet_support packet_config_support (struct packet_config *config);
1792static enum packet_support packet_support (int packet);
5a2468f5
JM
1793
1794static void
fba45db2 1795show_packet_config_cmd (struct packet_config *config)
5a2468f5 1796{
a121b7c1 1797 const char *support = "internal-error";
a744cf53 1798
4082afcc 1799 switch (packet_config_support (config))
5a2468f5
JM
1800 {
1801 case PACKET_ENABLE:
1802 support = "enabled";
1803 break;
1804 case PACKET_DISABLE:
1805 support = "disabled";
1806 break;
1807 case PACKET_SUPPORT_UNKNOWN:
1808 support = "unknown";
1809 break;
1810 }
1811 switch (config->detect)
1812 {
7f19b9a2 1813 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1814 printf_filtered (_("Support for the `%s' packet "
1815 "is auto-detected, currently %s.\n"),
37a105a1 1816 config->name, support);
5a2468f5 1817 break;
7f19b9a2
AC
1818 case AUTO_BOOLEAN_TRUE:
1819 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1820 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1821 config->name, support);
8e248173 1822 break;
5a2468f5
JM
1823 }
1824}
1825
1826static void
bb572ddd
DJ
1827add_packet_config_cmd (struct packet_config *config, const char *name,
1828 const char *title, int legacy)
d471ea57 1829{
5a2468f5
JM
1830 char *set_doc;
1831 char *show_doc;
d471ea57 1832 char *cmd_name;
3ed07be4 1833
5a2468f5
JM
1834 config->name = name;
1835 config->title = title;
590042fc 1836 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
b435e160 1837 name, title);
3e43a32a 1838 show_doc = xstrprintf ("Show current use of remote "
590042fc 1839 "protocol `%s' (%s) packet.",
b435e160 1840 name, title);
d471ea57 1841 /* set/show TITLE-packet {auto,on,off} */
b435e160 1842 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1843 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1844 &config->detect, set_doc,
1845 show_doc, NULL, /* help_doc */
4082afcc 1846 NULL,
bb572ddd
DJ
1847 show_remote_protocol_packet_cmd,
1848 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1849 /* The command code copies the documentation strings. */
1850 xfree (set_doc);
1851 xfree (show_doc);
23860348 1852 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1853 if (legacy)
1854 {
1855 char *legacy_name;
a744cf53 1856
b435e160 1857 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1858 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1859 &remote_set_cmdlist);
d471ea57 1860 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1861 &remote_show_cmdlist);
d471ea57 1862 }
5a2468f5
JM
1863}
1864
d471ea57 1865static enum packet_result
a76d924d 1866packet_check_result (const char *buf)
5a2468f5 1867{
d471ea57 1868 if (buf[0] != '\0')
5a2468f5 1869 {
d471ea57 1870 /* The stub recognized the packet request. Check that the
23860348 1871 operation succeeded. */
a76d924d
DJ
1872 if (buf[0] == 'E'
1873 && isxdigit (buf[1]) && isxdigit (buf[2])
1874 && buf[3] == '\0')
85102364 1875 /* "Enn" - definitely an error. */
a76d924d
DJ
1876 return PACKET_ERROR;
1877
1878 /* Always treat "E." as an error. This will be used for
1879 more verbose error messages, such as E.memtypes. */
1880 if (buf[0] == 'E' && buf[1] == '.')
1881 return PACKET_ERROR;
1882
1883 /* The packet may or may not be OK. Just assume it is. */
1884 return PACKET_OK;
1885 }
1886 else
1887 /* The stub does not support the packet. */
1888 return PACKET_UNKNOWN;
1889}
1890
8d64371b
TT
1891static enum packet_result
1892packet_check_result (const gdb::char_vector &buf)
1893{
1894 return packet_check_result (buf.data ());
1895}
1896
a76d924d
DJ
1897static enum packet_result
1898packet_ok (const char *buf, struct packet_config *config)
1899{
1900 enum packet_result result;
1901
4082afcc
PA
1902 if (config->detect != AUTO_BOOLEAN_TRUE
1903 && config->support == PACKET_DISABLE)
1904 internal_error (__FILE__, __LINE__,
1905 _("packet_ok: attempt to use a disabled packet"));
1906
a76d924d
DJ
1907 result = packet_check_result (buf);
1908 switch (result)
1909 {
1910 case PACKET_OK:
1911 case PACKET_ERROR:
1912 /* The stub recognized the packet request. */
4082afcc 1913 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1914 {
d471ea57
AC
1915 if (remote_debug)
1916 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1917 "Packet %s (%s) is supported\n",
1918 config->name, config->title);
d471ea57 1919 config->support = PACKET_ENABLE;
d471ea57 1920 }
a76d924d
DJ
1921 break;
1922 case PACKET_UNKNOWN:
23860348 1923 /* The stub does not support the packet. */
4082afcc
PA
1924 if (config->detect == AUTO_BOOLEAN_AUTO
1925 && config->support == PACKET_ENABLE)
d471ea57 1926 {
4082afcc
PA
1927 /* If the stub previously indicated that the packet was
1928 supported then there is a protocol error. */
1929 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1930 config->name, config->title);
1931 }
1932 else if (config->detect == AUTO_BOOLEAN_TRUE)
1933 {
1934 /* The user set it wrong. */
1935 error (_("Enabled packet %s (%s) not recognized by stub"),
1936 config->name, config->title);
d471ea57 1937 }
4082afcc
PA
1938
1939 if (remote_debug)
1940 fprintf_unfiltered (gdb_stdlog,
1941 "Packet %s (%s) is NOT supported\n",
1942 config->name, config->title);
1943 config->support = PACKET_DISABLE;
a76d924d 1944 break;
5a2468f5 1945 }
a76d924d
DJ
1946
1947 return result;
5a2468f5
JM
1948}
1949
8d64371b
TT
1950static enum packet_result
1951packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1952{
1953 return packet_ok (buf.data (), config);
1954}
1955
444abaca
DJ
1956enum {
1957 PACKET_vCont = 0,
1958 PACKET_X,
1959 PACKET_qSymbol,
1960 PACKET_P,
1961 PACKET_p,
1962 PACKET_Z0,
1963 PACKET_Z1,
1964 PACKET_Z2,
1965 PACKET_Z3,
1966 PACKET_Z4,
15a201c8 1967 PACKET_vFile_setfs,
a6b151f1
DJ
1968 PACKET_vFile_open,
1969 PACKET_vFile_pread,
1970 PACKET_vFile_pwrite,
1971 PACKET_vFile_close,
1972 PACKET_vFile_unlink,
b9e7b9c3 1973 PACKET_vFile_readlink,
0a93529c 1974 PACKET_vFile_fstat,
0876f84a 1975 PACKET_qXfer_auxv,
23181151 1976 PACKET_qXfer_features,
c78fa86a 1977 PACKET_qXfer_exec_file,
cfa9d6d9 1978 PACKET_qXfer_libraries,
2268b414 1979 PACKET_qXfer_libraries_svr4,
fd79ecee 1980 PACKET_qXfer_memory_map,
07e059b5 1981 PACKET_qXfer_osdata,
dc146f7c 1982 PACKET_qXfer_threads,
0fb4aa4b 1983 PACKET_qXfer_statictrace_read,
b3b9301e 1984 PACKET_qXfer_traceframe_info,
169081d0 1985 PACKET_qXfer_uib,
711e434b 1986 PACKET_qGetTIBAddr,
444abaca 1987 PACKET_qGetTLSAddr,
be2a5f71 1988 PACKET_qSupported,
bd3eecc3 1989 PACKET_qTStatus,
89be2091 1990 PACKET_QPassSignals,
82075af2 1991 PACKET_QCatchSyscalls,
9b224c5e 1992 PACKET_QProgramSignals,
bc3b087d 1993 PACKET_QSetWorkingDir,
aefd8b33 1994 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1995 PACKET_QEnvironmentHexEncoded,
1996 PACKET_QEnvironmentReset,
1997 PACKET_QEnvironmentUnset,
936d2992 1998 PACKET_qCRC,
08388c79 1999 PACKET_qSearch_memory,
2d717e4f
DJ
2000 PACKET_vAttach,
2001 PACKET_vRun,
a6f3e723 2002 PACKET_QStartNoAckMode,
82f73884 2003 PACKET_vKill,
4aa995e1
PA
2004 PACKET_qXfer_siginfo_read,
2005 PACKET_qXfer_siginfo_write,
0b16c5cf 2006 PACKET_qAttached,
4082afcc
PA
2007
2008 /* Support for conditional tracepoints. */
782b2b07 2009 PACKET_ConditionalTracepoints,
4082afcc
PA
2010
2011 /* Support for target-side breakpoint conditions. */
3788aec7 2012 PACKET_ConditionalBreakpoints,
4082afcc
PA
2013
2014 /* Support for target-side breakpoint commands. */
d3ce09f5 2015 PACKET_BreakpointCommands,
4082afcc
PA
2016
2017 /* Support for fast tracepoints. */
7a697b8d 2018 PACKET_FastTracepoints,
4082afcc
PA
2019
2020 /* Support for static tracepoints. */
0fb4aa4b 2021 PACKET_StaticTracepoints,
4082afcc
PA
2022
2023 /* Support for installing tracepoints while a trace experiment is
2024 running. */
1e4d1764 2025 PACKET_InstallInTrace,
4082afcc 2026
40ab02ce
MS
2027 PACKET_bc,
2028 PACKET_bs,
409873ef 2029 PACKET_TracepointSource,
d914c394 2030 PACKET_QAllow,
78d85199 2031 PACKET_qXfer_fdpic,
03583c20 2032 PACKET_QDisableRandomization,
d1feda86 2033 PACKET_QAgent,
f6f899bf 2034 PACKET_QTBuffer_size,
9accd112
MM
2035 PACKET_Qbtrace_off,
2036 PACKET_Qbtrace_bts,
b20a6524 2037 PACKET_Qbtrace_pt,
9accd112 2038 PACKET_qXfer_btrace,
4082afcc
PA
2039
2040 /* Support for the QNonStop packet. */
2041 PACKET_QNonStop,
2042
65706a29
PA
2043 /* Support for the QThreadEvents packet. */
2044 PACKET_QThreadEvents,
2045
4082afcc
PA
2046 /* Support for multi-process extensions. */
2047 PACKET_multiprocess_feature,
2048
2049 /* Support for enabling and disabling tracepoints while a trace
2050 experiment is running. */
2051 PACKET_EnableDisableTracepoints_feature,
2052
2053 /* Support for collecting strings using the tracenz bytecode. */
2054 PACKET_tracenz_feature,
2055
2056 /* Support for continuing to run a trace experiment while GDB is
2057 disconnected. */
2058 PACKET_DisconnectedTracing_feature,
2059
2060 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2061 PACKET_augmented_libraries_svr4_read_feature,
2062
f4abbc16
MM
2063 /* Support for the qXfer:btrace-conf:read packet. */
2064 PACKET_qXfer_btrace_conf,
2065
d33501a5
MM
2066 /* Support for the Qbtrace-conf:bts:size packet. */
2067 PACKET_Qbtrace_conf_bts_size,
2068
f7e6eed5
PA
2069 /* Support for swbreak+ feature. */
2070 PACKET_swbreak_feature,
2071
2072 /* Support for hwbreak+ feature. */
2073 PACKET_hwbreak_feature,
2074
89245bc0
DB
2075 /* Support for fork events. */
2076 PACKET_fork_event_feature,
2077
2078 /* Support for vfork events. */
2079 PACKET_vfork_event_feature,
2080
b20a6524
MM
2081 /* Support for the Qbtrace-conf:pt:size packet. */
2082 PACKET_Qbtrace_conf_pt_size,
2083
94585166
DB
2084 /* Support for exec events. */
2085 PACKET_exec_event_feature,
2086
750ce8d1
YQ
2087 /* Support for query supported vCont actions. */
2088 PACKET_vContSupported,
2089
de979965
PA
2090 /* Support remote CTRL-C. */
2091 PACKET_vCtrlC,
2092
f2faf941
PA
2093 /* Support TARGET_WAITKIND_NO_RESUMED. */
2094 PACKET_no_resumed,
2095
444abaca
DJ
2096 PACKET_MAX
2097};
506fb367 2098
5b6d1e4f
PA
2099/* FIXME: needs to be per-remote-target. Ignoring this for now,
2100 assuming all remote targets are the same server (thus all support
2101 the same packets). */
444abaca 2102static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2103
f7e6eed5
PA
2104/* Returns the packet's corresponding "set remote foo-packet" command
2105 state. See struct packet_config for more details. */
2106
2107static enum auto_boolean
2108packet_set_cmd_state (int packet)
2109{
2110 return remote_protocol_packets[packet].detect;
2111}
2112
4082afcc
PA
2113/* Returns whether a given packet or feature is supported. This takes
2114 into account the state of the corresponding "set remote foo-packet"
2115 command, which may be used to bypass auto-detection. */
dc8acb97 2116
4082afcc
PA
2117static enum packet_support
2118packet_config_support (struct packet_config *config)
2119{
2120 switch (config->detect)
444abaca 2121 {
4082afcc
PA
2122 case AUTO_BOOLEAN_TRUE:
2123 return PACKET_ENABLE;
2124 case AUTO_BOOLEAN_FALSE:
2125 return PACKET_DISABLE;
2126 case AUTO_BOOLEAN_AUTO:
2127 return config->support;
2128 default:
2129 gdb_assert_not_reached (_("bad switch"));
444abaca 2130 }
4082afcc
PA
2131}
2132
2133/* Same as packet_config_support, but takes the packet's enum value as
2134 argument. */
2135
2136static enum packet_support
2137packet_support (int packet)
2138{
2139 struct packet_config *config = &remote_protocol_packets[packet];
2140
2141 return packet_config_support (config);
dc8acb97
MS
2142}
2143
5a2468f5 2144static void
444abaca
DJ
2145show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2146 struct cmd_list_element *c,
2147 const char *value)
5a2468f5 2148{
444abaca 2149 struct packet_config *packet;
5a2468f5 2150
444abaca
DJ
2151 for (packet = remote_protocol_packets;
2152 packet < &remote_protocol_packets[PACKET_MAX];
2153 packet++)
2154 {
2155 if (&packet->detect == c->var)
2156 {
2157 show_packet_config_cmd (packet);
2158 return;
2159 }
2160 }
9b20d036 2161 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2162 c->name);
5a2468f5
JM
2163}
2164
d471ea57
AC
2165/* Should we try one of the 'Z' requests? */
2166
2167enum Z_packet_type
2168{
2169 Z_PACKET_SOFTWARE_BP,
2170 Z_PACKET_HARDWARE_BP,
2171 Z_PACKET_WRITE_WP,
2172 Z_PACKET_READ_WP,
2173 Z_PACKET_ACCESS_WP,
2174 NR_Z_PACKET_TYPES
2175};
96baa820 2176
d471ea57 2177/* For compatibility with older distributions. Provide a ``set remote
23860348 2178 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2179
7f19b9a2 2180static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2181
2182static void
eb4c3f4a 2183set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2184 struct cmd_list_element *c)
96baa820 2185{
d471ea57 2186 int i;
a744cf53 2187
d471ea57 2188 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2189 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2190}
2191
2192static void
08546159
AC
2193show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2194 struct cmd_list_element *c,
2195 const char *value)
96baa820 2196{
d471ea57 2197 int i;
a744cf53 2198
d471ea57
AC
2199 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2200 {
444abaca 2201 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2202 }
96baa820
JM
2203}
2204
4082afcc
PA
2205/* Returns true if the multi-process extensions are in effect. */
2206
2207static int
2208remote_multi_process_p (struct remote_state *rs)
2209{
2210 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2211}
2212
de0d863e
DB
2213/* Returns true if fork events are supported. */
2214
2215static int
2216remote_fork_event_p (struct remote_state *rs)
2217{
2218 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2219}
2220
c269dbdb
DB
2221/* Returns true if vfork events are supported. */
2222
2223static int
2224remote_vfork_event_p (struct remote_state *rs)
2225{
2226 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2227}
2228
d46addbb
DB
2229/* Returns true if exec events are supported. */
2230
2231static int
2232remote_exec_event_p (struct remote_state *rs)
2233{
2234 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2235}
2236
cbb8991c
DB
2237/* Insert fork catchpoint target routine. If fork events are enabled
2238 then return success, nothing more to do. */
2239
f6ac5f3d
PA
2240int
2241remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2242{
2243 struct remote_state *rs = get_remote_state ();
2244
2245 return !remote_fork_event_p (rs);
2246}
2247
2248/* Remove fork catchpoint target routine. Nothing to do, just
2249 return success. */
2250
f6ac5f3d
PA
2251int
2252remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2253{
2254 return 0;
2255}
2256
2257/* Insert vfork catchpoint target routine. If vfork events are enabled
2258 then return success, nothing more to do. */
2259
f6ac5f3d
PA
2260int
2261remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2262{
2263 struct remote_state *rs = get_remote_state ();
2264
2265 return !remote_vfork_event_p (rs);
2266}
2267
2268/* Remove vfork catchpoint target routine. Nothing to do, just
2269 return success. */
2270
f6ac5f3d
PA
2271int
2272remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2273{
2274 return 0;
2275}
2276
d46addbb
DB
2277/* Insert exec catchpoint target routine. If exec events are
2278 enabled, just return success. */
2279
f6ac5f3d
PA
2280int
2281remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2282{
2283 struct remote_state *rs = get_remote_state ();
2284
2285 return !remote_exec_event_p (rs);
2286}
2287
2288/* Remove exec catchpoint target routine. Nothing to do, just
2289 return success. */
2290
f6ac5f3d
PA
2291int
2292remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2293{
2294 return 0;
2295}
2296
c906108c
SS
2297\f
2298
ffdd69cf
TT
2299/* Take advantage of the fact that the TID field is not used, to tag
2300 special ptids with it set to != 0. */
2301static const ptid_t magic_null_ptid (42000, -1, 1);
2302static const ptid_t not_sent_ptid (42000, -2, 1);
2303static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2304
0b16c5cf
PA
2305/* Find out if the stub attached to PID (and hence GDB should offer to
2306 detach instead of killing it when bailing out). */
2307
6b8edb51
PA
2308int
2309remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2310{
2311 struct remote_state *rs = get_remote_state ();
bba74b36 2312 size_t size = get_remote_packet_size ();
0b16c5cf 2313
4082afcc 2314 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2315 return 0;
2316
2317 if (remote_multi_process_p (rs))
8d64371b 2318 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2319 else
8d64371b 2320 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2321
2322 putpkt (rs->buf);
8d64371b 2323 getpkt (&rs->buf, 0);
0b16c5cf
PA
2324
2325 switch (packet_ok (rs->buf,
1554e9be 2326 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2327 {
2328 case PACKET_OK:
8d64371b 2329 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2330 return 1;
2331 break;
2332 case PACKET_ERROR:
8d64371b 2333 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2334 break;
2335 case PACKET_UNKNOWN:
2336 break;
2337 }
2338
2339 return 0;
2340}
2341
49c62f2e
PA
2342/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2343 has been invented by GDB, instead of reported by the target. Since
2344 we can be connected to a remote system before before knowing about
2345 any inferior, mark the target with execution when we find the first
2346 inferior. If ATTACHED is 1, then we had just attached to this
2347 inferior. If it is 0, then we just created this inferior. If it
2348 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2349 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2350 attempt to open this inferior's executable as the main executable
2351 if no main executable is open already. */
1941c569 2352
6b8edb51 2353inferior *
9ab8741a 2354remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2355 int try_open_exec)
1941c569 2356{
1941c569
PA
2357 struct inferior *inf;
2358
0b16c5cf
PA
2359 /* Check whether this process we're learning about is to be
2360 considered attached, or if is to be considered to have been
2361 spawned by the stub. */
2362 if (attached == -1)
2363 attached = remote_query_attached (pid);
2364
f5656ead 2365 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2366 {
2367 /* If the target shares code across all inferiors, then every
2368 attach adds a new inferior. */
2369 inf = add_inferior (pid);
2370
2371 /* ... and every inferior is bound to the same program space.
2372 However, each inferior may still have its own address
2373 space. */
2374 inf->aspace = maybe_new_address_space ();
2375 inf->pspace = current_program_space;
2376 }
2377 else
2378 {
2379 /* In the traditional debugging scenario, there's a 1-1 match
2380 between program/address spaces. We simply bind the inferior
2381 to the program space's address space. */
2382 inf = current_inferior ();
78f2c40a
PA
2383
2384 /* However, if the current inferior is already bound to a
2385 process, find some other empty inferior. */
2386 if (inf->pid != 0)
2387 {
2388 inf = nullptr;
2389 for (inferior *it : all_inferiors ())
2390 if (it->pid == 0)
2391 {
2392 inf = it;
2393 break;
2394 }
2395 }
2396 if (inf == nullptr)
2397 {
2398 /* Since all inferiors were already bound to a process, add
2399 a new inferior. */
2400 inf = add_inferior_with_spaces ();
2401 }
2402 switch_to_inferior_no_thread (inf);
5b6d1e4f 2403 push_target (this);
6c95b8df
PA
2404 inferior_appeared (inf, pid);
2405 }
1941c569 2406
0b16c5cf 2407 inf->attach_flag = attached;
49c62f2e 2408 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2409
1b6e6f5c
GB
2410 /* If no main executable is currently open then attempt to
2411 open the file that was executed to create this inferior. */
835205d0 2412 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2413 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2414
a2fedca9
PW
2415 /* Check for exec file mismatch, and let the user solve it. */
2416 validate_exec_file (1);
2417
1941c569
PA
2418 return inf;
2419}
2420
7aabaf9d 2421static remote_thread_info *get_remote_thread_info (thread_info *thread);
5b6d1e4f
PA
2422static remote_thread_info *get_remote_thread_info (remote_target *target,
2423 ptid_t ptid);
85ad3aaf 2424
1941c569
PA
2425/* Add thread PTID to GDB's thread list. Tag it as executing/running
2426 according to RUNNING. */
2427
00431a78 2428thread_info *
6b8edb51 2429remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2430{
b7ea362b 2431 struct remote_state *rs = get_remote_state ();
85ad3aaf 2432 struct thread_info *thread;
b7ea362b
PA
2433
2434 /* GDB historically didn't pull threads in the initial connection
2435 setup. If the remote target doesn't even have a concept of
2436 threads (e.g., a bare-metal target), even if internally we
2437 consider that a single-threaded target, mentioning a new thread
2438 might be confusing to the user. Be silent then, preserving the
2439 age old behavior. */
2440 if (rs->starting_up)
5b6d1e4f 2441 thread = add_thread_silent (this, ptid);
b7ea362b 2442 else
5b6d1e4f 2443 thread = add_thread (this, ptid);
1941c569 2444
7aabaf9d 2445 get_remote_thread_info (thread)->vcont_resumed = executing;
5b6d1e4f
PA
2446 set_executing (this, ptid, executing);
2447 set_running (this, ptid, running);
00431a78
PA
2448
2449 return thread;
1941c569
PA
2450}
2451
2452/* Come here when we learn about a thread id from the remote target.
2453 It may be the first time we hear about such thread, so take the
2454 opportunity to add it to GDB's thread list. In case this is the
2455 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2456 GDB's inferior list as well. EXECUTING indicates whether the
2457 thread is (internally) executing or stopped. */
1941c569 2458
6b8edb51
PA
2459void
2460remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2461{
0d5b594f
PA
2462 /* In non-stop mode, we assume new found threads are (externally)
2463 running until proven otherwise with a stop reply. In all-stop,
2464 we can only get here if all threads are stopped. */
2465 int running = target_is_non_stop_p () ? 1 : 0;
2466
c906108c
SS
2467 /* If this is a new thread, add it to GDB's thread list.
2468 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2469
5b6d1e4f 2470 thread_info *tp = find_thread_ptid (this, currthread);
00431a78 2471 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2472 {
2473 /* We're seeing an event on a thread id we knew had exited.
2474 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2475 remote_add_thread (currthread, running, executing);
82f73884
PA
2476 return;
2477 }
2478
5b6d1e4f 2479 if (!in_thread_list (this, currthread))
c0a2216e 2480 {
1941c569 2481 struct inferior *inf = NULL;
e99b03dc 2482 int pid = currthread.pid ();
1941c569 2483
0e998d96 2484 if (inferior_ptid.is_pid ()
e99b03dc 2485 && pid == inferior_ptid.pid ())
c0a2216e
PA
2486 {
2487 /* inferior_ptid has no thread member yet. This can happen
2488 with the vAttach -> remote_wait,"TAAthread:" path if the
2489 stub doesn't support qC. This is the first stop reported
2490 after an attach, so this is the main thread. Update the
2491 ptid in the thread list. */
5b6d1e4f
PA
2492 if (in_thread_list (this, ptid_t (pid)))
2493 thread_change_ptid (this, inferior_ptid, currthread);
bad34192
PA
2494 else
2495 {
0ac55310
PA
2496 thread_info *thr
2497 = remote_add_thread (currthread, running, executing);
2498 switch_to_thread (thr);
bad34192 2499 }
dc146f7c 2500 return;
c0a2216e 2501 }
82f73884 2502
d7e15655 2503 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2504 {
2505 /* inferior_ptid is not set yet. This can happen with the
2506 vRun -> remote_wait,"TAAthread:" path if the stub
2507 doesn't support qC. This is the first stop reported
2508 after an attach, so this is the main thread. Update the
2509 ptid in the thread list. */
5b6d1e4f 2510 thread_change_ptid (this, inferior_ptid, currthread);
82f73884 2511 return;
c0a2216e 2512 }
82f73884 2513
29c87f7f
PA
2514 /* When connecting to a target remote, or to a target
2515 extended-remote which already was debugging an inferior, we
2516 may not know about it yet. Add it before adding its child
2517 thread, so notifications are emitted in a sensible order. */
5b6d1e4f 2518 if (find_inferior_pid (this, currthread.pid ()) == NULL)
49c62f2e
PA
2519 {
2520 struct remote_state *rs = get_remote_state ();
9ab8741a 2521 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2522
2523 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2524 currthread.pid (), -1, 1);
49c62f2e 2525 }
29c87f7f 2526
82f73884 2527 /* This is really a new thread. Add it. */
00431a78
PA
2528 thread_info *new_thr
2529 = remote_add_thread (currthread, running, executing);
1941c569
PA
2530
2531 /* If we found a new inferior, let the common code do whatever
2532 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2533 breakpoints), unless we're just setting up an all-stop
2534 connection. */
1941c569 2535 if (inf != NULL)
b7ea362b
PA
2536 {
2537 struct remote_state *rs = get_remote_state ();
2538
6efcd9a8 2539 if (!rs->starting_up)
00431a78 2540 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2541 }
c0a2216e 2542 }
c906108c
SS
2543}
2544
85ad3aaf 2545/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2546
7aabaf9d
SM
2547static remote_thread_info *
2548get_remote_thread_info (thread_info *thread)
dc146f7c 2549{
85ad3aaf 2550 gdb_assert (thread != NULL);
dc146f7c 2551
85ad3aaf 2552 if (thread->priv == NULL)
7aabaf9d 2553 thread->priv.reset (new remote_thread_info);
dc146f7c 2554
7aabaf9d 2555 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2556}
2557
5b6d1e4f
PA
2558/* Return PTID's private thread data, creating it if necessary. */
2559
7aabaf9d 2560static remote_thread_info *
5b6d1e4f 2561get_remote_thread_info (remote_target *target, ptid_t ptid)
85ad3aaf 2562{
5b6d1e4f 2563 thread_info *thr = find_thread_ptid (target, ptid);
00431a78 2564 return get_remote_thread_info (thr);
dc146f7c
VP
2565}
2566
74531fed
PA
2567/* Call this function as a result of
2568 1) A halt indication (T packet) containing a thread id
2569 2) A direct query of currthread
0df8b418 2570 3) Successful execution of set thread */
74531fed
PA
2571
2572static void
47f8a51d 2573record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2574{
47f8a51d 2575 rs->general_thread = currthread;
74531fed
PA
2576}
2577
89be2091
DJ
2578/* If 'QPassSignals' is supported, tell the remote stub what signals
2579 it can simply pass through to the inferior without reporting. */
2580
f6ac5f3d 2581void
adc6a863 2582remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2583{
4082afcc 2584 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2585 {
2586 char *pass_packet, *p;
adc6a863 2587 int count = 0;
747dc59d 2588 struct remote_state *rs = get_remote_state ();
89be2091 2589
adc6a863
PA
2590 gdb_assert (pass_signals.size () < 256);
2591 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2592 {
2455069d 2593 if (pass_signals[i])
89be2091
DJ
2594 count++;
2595 }
224c3ddb 2596 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2597 strcpy (pass_packet, "QPassSignals:");
2598 p = pass_packet + strlen (pass_packet);
adc6a863 2599 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2600 {
2455069d 2601 if (pass_signals[i])
89be2091
DJ
2602 {
2603 if (i >= 16)
2604 *p++ = tohex (i >> 4);
2605 *p++ = tohex (i & 15);
2606 if (count)
2607 *p++ = ';';
2608 else
2609 break;
2610 count--;
2611 }
2612 }
2613 *p = 0;
747dc59d 2614 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2615 {
89be2091 2616 putpkt (pass_packet);
8d64371b 2617 getpkt (&rs->buf, 0);
8dc5b319 2618 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
84d53fa9 2619 xfree (rs->last_pass_packet);
747dc59d 2620 rs->last_pass_packet = pass_packet;
89be2091
DJ
2621 }
2622 else
2623 xfree (pass_packet);
2624 }
2625}
2626
82075af2
JS
2627/* If 'QCatchSyscalls' is supported, tell the remote stub
2628 to report syscalls to GDB. */
2629
f6ac5f3d
PA
2630int
2631remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2632 gdb::array_view<const int> syscall_counts)
82075af2 2633{
b80406ac 2634 const char *catch_packet;
82075af2
JS
2635 enum packet_result result;
2636 int n_sysno = 0;
2637
2638 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2639 {
2640 /* Not supported. */
2641 return 1;
2642 }
2643
649a140c 2644 if (needed && any_count == 0)
82075af2 2645 {
649a140c
PA
2646 /* Count how many syscalls are to be caught. */
2647 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2648 {
649a140c 2649 if (syscall_counts[i] != 0)
82075af2
JS
2650 n_sysno++;
2651 }
2652 }
2653
2654 if (remote_debug)
2655 {
2656 fprintf_unfiltered (gdb_stdlog,
2657 "remote_set_syscall_catchpoint "
2658 "pid %d needed %d any_count %d n_sysno %d\n",
2659 pid, needed, any_count, n_sysno);
2660 }
2661
1b81856f 2662 std::string built_packet;
82075af2
JS
2663 if (needed)
2664 {
2665 /* Prepare a packet with the sysno list, assuming max 8+1
2666 characters for a sysno. If the resulting packet size is too
2667 big, fallback on the non-selective packet. */
2668 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2669 built_packet.reserve (maxpktsz);
2670 built_packet = "QCatchSyscalls:1";
649a140c 2671 if (any_count == 0)
82075af2 2672 {
649a140c
PA
2673 /* Add in each syscall to be caught. */
2674 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2675 {
649a140c
PA
2676 if (syscall_counts[i] != 0)
2677 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2678 }
2679 }
1b81856f 2680 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2681 {
2682 /* catch_packet too big. Fallback to less efficient
2683 non selective mode, with GDB doing the filtering. */
b80406ac 2684 catch_packet = "QCatchSyscalls:1";
82075af2 2685 }
b80406ac 2686 else
1b81856f 2687 catch_packet = built_packet.c_str ();
82075af2
JS
2688 }
2689 else
b80406ac 2690 catch_packet = "QCatchSyscalls:0";
82075af2 2691
b80406ac 2692 struct remote_state *rs = get_remote_state ();
82075af2 2693
b80406ac 2694 putpkt (catch_packet);
8d64371b 2695 getpkt (&rs->buf, 0);
b80406ac
TT
2696 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2697 if (result == PACKET_OK)
2698 return 0;
2699 else
2700 return -1;
82075af2
JS
2701}
2702
9b224c5e
PA
2703/* If 'QProgramSignals' is supported, tell the remote stub what
2704 signals it should pass through to the inferior when detaching. */
2705
f6ac5f3d 2706void
adc6a863 2707remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2708{
4082afcc 2709 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2710 {
2711 char *packet, *p;
adc6a863 2712 int count = 0;
5e4a05c4 2713 struct remote_state *rs = get_remote_state ();
9b224c5e 2714
adc6a863
PA
2715 gdb_assert (signals.size () < 256);
2716 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2717 {
2718 if (signals[i])
2719 count++;
2720 }
224c3ddb 2721 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2722 strcpy (packet, "QProgramSignals:");
2723 p = packet + strlen (packet);
adc6a863 2724 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2725 {
2726 if (signal_pass_state (i))
2727 {
2728 if (i >= 16)
2729 *p++ = tohex (i >> 4);
2730 *p++ = tohex (i & 15);
2731 if (count)
2732 *p++ = ';';
2733 else
2734 break;
2735 count--;
2736 }
2737 }
2738 *p = 0;
5e4a05c4
TT
2739 if (!rs->last_program_signals_packet
2740 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2741 {
9b224c5e 2742 putpkt (packet);
8d64371b 2743 getpkt (&rs->buf, 0);
8dc5b319 2744 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2745 xfree (rs->last_program_signals_packet);
2746 rs->last_program_signals_packet = packet;
9b224c5e
PA
2747 }
2748 else
2749 xfree (packet);
2750 }
2751}
2752
79d7f229
PA
2753/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2754 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2755 thread. If GEN is set, set the general thread, if not, then set
2756 the step/continue thread. */
6b8edb51
PA
2757void
2758remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2759{
d01949b6 2760 struct remote_state *rs = get_remote_state ();
47f8a51d 2761 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2762 char *buf = rs->buf.data ();
2763 char *endbuf = buf + get_remote_packet_size ();
c906108c 2764
d7e15655 2765 if (state == ptid)
c906108c
SS
2766 return;
2767
79d7f229
PA
2768 *buf++ = 'H';
2769 *buf++ = gen ? 'g' : 'c';
d7e15655 2770 if (ptid == magic_null_ptid)
79d7f229 2771 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2772 else if (ptid == any_thread_ptid)
79d7f229 2773 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2774 else if (ptid == minus_one_ptid)
79d7f229
PA
2775 xsnprintf (buf, endbuf - buf, "-1");
2776 else
82f73884 2777 write_ptid (buf, endbuf, ptid);
79d7f229 2778 putpkt (rs->buf);
8d64371b 2779 getpkt (&rs->buf, 0);
c906108c 2780 if (gen)
47f8a51d 2781 rs->general_thread = ptid;
c906108c 2782 else
47f8a51d 2783 rs->continue_thread = ptid;
c906108c 2784}
79d7f229 2785
6b8edb51
PA
2786void
2787remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2788{
2789 set_thread (ptid, 1);
2790}
2791
6b8edb51
PA
2792void
2793remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2794{
2795 set_thread (ptid, 0);
2796}
2797
3c9c4b83
PA
2798/* Change the remote current process. Which thread within the process
2799 ends up selected isn't important, as long as it is the same process
2800 as what INFERIOR_PTID points to.
2801
2802 This comes from that fact that there is no explicit notion of
2803 "selected process" in the protocol. The selected process for
2804 general operations is the process the selected general thread
2805 belongs to. */
2806
6b8edb51
PA
2807void
2808remote_target::set_general_process ()
3c9c4b83
PA
2809{
2810 struct remote_state *rs = get_remote_state ();
2811
2812 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2813 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2814 return;
2815
2816 /* We only need to change the remote current thread if it's pointing
2817 at some other process. */
e99b03dc 2818 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2819 set_general_thread (inferior_ptid);
2820}
2821
c906108c 2822\f
7d1a114c
PA
2823/* Return nonzero if this is the main thread that we made up ourselves
2824 to model non-threaded targets as single-threaded. */
c906108c
SS
2825
2826static int
f6ac5f3d 2827remote_thread_always_alive (ptid_t ptid)
c906108c 2828{
d7e15655 2829 if (ptid == magic_null_ptid)
c0a2216e
PA
2830 /* The main thread is always alive. */
2831 return 1;
2832
e38504b3 2833 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2834 /* The main thread is always alive. This can happen after a
2835 vAttach, if the remote side doesn't support
2836 multi-threading. */
2837 return 1;
2838
7d1a114c
PA
2839 return 0;
2840}
2841
2842/* Return nonzero if the thread PTID is still alive on the remote
2843 system. */
2844
57810aa7 2845bool
f6ac5f3d 2846remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2847{
2848 struct remote_state *rs = get_remote_state ();
2849 char *p, *endp;
2850
2851 /* Check if this is a thread that we made up ourselves to model
2852 non-threaded targets as single-threaded. */
f6ac5f3d 2853 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2854 return 1;
2855
8d64371b
TT
2856 p = rs->buf.data ();
2857 endp = p + get_remote_packet_size ();
82f73884
PA
2858
2859 *p++ = 'T';
2860 write_ptid (p, endp, ptid);
2861
2e9f7625 2862 putpkt (rs->buf);
8d64371b 2863 getpkt (&rs->buf, 0);
2e9f7625 2864 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2865}
2866
79efa585
SM
2867/* Return a pointer to a thread name if we know it and NULL otherwise.
2868 The thread_info object owns the memory for the name. */
2869
f6ac5f3d
PA
2870const char *
2871remote_target::thread_name (struct thread_info *info)
79efa585
SM
2872{
2873 if (info->priv != NULL)
a9334058
SM
2874 {
2875 const std::string &name = get_remote_thread_info (info)->name;
2876 return !name.empty () ? name.c_str () : NULL;
2877 }
79efa585
SM
2878
2879 return NULL;
2880}
2881
c906108c
SS
2882/* About these extended threadlist and threadinfo packets. They are
2883 variable length packets but, the fields within them are often fixed
30baf67b 2884 length. They are redundant enough to send over UDP as is the
c906108c
SS
2885 remote protocol in general. There is a matching unit test module
2886 in libstub. */
2887
23860348 2888/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2889 libstub protocol encoding, and remote.c. It is not particularly
23860348 2890 changable. */
cce74817
JM
2891
2892/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2893 Plan to fix this. */
cce74817 2894
23860348 2895typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2896
9d1f7ab2 2897/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2898 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2899
2900struct gdb_ext_thread_info
c5aa993b 2901 {
23860348 2902 threadref threadid; /* External form of thread reference. */
2bc416ba 2903 int active; /* Has state interesting to GDB?
23860348 2904 regs, stack. */
2bc416ba 2905 char display[256]; /* Brief state display, name,
cedea757 2906 blocked/suspended. */
23860348 2907 char shortname[32]; /* To be used to name threads. */
2bc416ba 2908 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2909 whatever. */
c5aa993b 2910 };
cce74817
JM
2911
2912/* The volume of remote transfers can be limited by submitting
2913 a mask containing bits specifying the desired information.
2914 Use a union of these values as the 'selection' parameter to
0df8b418 2915 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2916
2917#define TAG_THREADID 1
2918#define TAG_EXISTS 2
2919#define TAG_DISPLAY 4
2920#define TAG_THREADNAME 8
c5aa993b 2921#define TAG_MOREDISPLAY 16
cce74817 2922
23860348 2923#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2924
a14ed312 2925static char *unpack_nibble (char *buf, int *val);
cce74817 2926
a14ed312 2927static char *unpack_byte (char *buf, int *value);
cce74817 2928
a14ed312 2929static char *pack_int (char *buf, int value);
cce74817 2930
a14ed312 2931static char *unpack_int (char *buf, int *value);
cce74817 2932
a14ed312 2933static char *unpack_string (char *src, char *dest, int length);
cce74817 2934
23860348 2935static char *pack_threadid (char *pkt, threadref *id);
cce74817 2936
23860348 2937static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2938
23860348 2939void int_to_threadref (threadref *id, int value);
cce74817 2940
23860348 2941static int threadref_to_int (threadref *ref);
cce74817 2942
23860348 2943static void copy_threadref (threadref *dest, threadref *src);
cce74817 2944
23860348 2945static int threadmatch (threadref *dest, threadref *src);
cce74817 2946
2bc416ba 2947static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2948 threadref *id);
cce74817 2949
a14ed312
KB
2950static char *pack_threadlist_request (char *pkt, int startflag,
2951 int threadcount,
23860348 2952 threadref *nextthread);
cce74817 2953
23860348 2954static int remote_newthread_step (threadref *ref, void *context);
cce74817 2955
82f73884
PA
2956
2957/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2958 buffer we're allowed to write to. Returns
2959 BUF+CHARACTERS_WRITTEN. */
2960
6b8edb51
PA
2961char *
2962remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2963{
2964 int pid, tid;
2965 struct remote_state *rs = get_remote_state ();
2966
2967 if (remote_multi_process_p (rs))
2968 {
e99b03dc 2969 pid = ptid.pid ();
82f73884
PA
2970 if (pid < 0)
2971 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2972 else
2973 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2974 }
e38504b3 2975 tid = ptid.lwp ();
82f73884
PA
2976 if (tid < 0)
2977 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2978 else
2979 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2980
2981 return buf;
2982}
2983
256642e8
PA
2984/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2985 last parsed char. Returns null_ptid if no thread id is found, and
2986 throws an error if the thread id has an invalid format. */
82f73884
PA
2987
2988static ptid_t
256642e8 2989read_ptid (const char *buf, const char **obuf)
82f73884 2990{
256642e8
PA
2991 const char *p = buf;
2992 const char *pp;
82f73884 2993 ULONGEST pid = 0, tid = 0;
82f73884
PA
2994
2995 if (*p == 'p')
2996 {
2997 /* Multi-process ptid. */
2998 pp = unpack_varlen_hex (p + 1, &pid);
2999 if (*pp != '.')
b37520b6 3000 error (_("invalid remote ptid: %s"), p);
82f73884
PA
3001
3002 p = pp;
3003 pp = unpack_varlen_hex (p + 1, &tid);
3004 if (obuf)
3005 *obuf = pp;
fd79271b 3006 return ptid_t (pid, tid, 0);
82f73884
PA
3007 }
3008
3009 /* No multi-process. Just a tid. */
3010 pp = unpack_varlen_hex (p, &tid);
3011
c9f35b34
KB
3012 /* Return null_ptid when no thread id is found. */
3013 if (p == pp)
3014 {
3015 if (obuf)
3016 *obuf = pp;
3017 return null_ptid;
3018 }
3019
82f73884 3020 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3021 what's in inferior_ptid, unless it's null at this point. If so,
3022 then since there's no way to know the pid of the reported
3023 threads, use the magic number. */
d7e15655 3024 if (inferior_ptid == null_ptid)
e99b03dc 3025 pid = magic_null_ptid.pid ();
ca19bf23 3026 else
e99b03dc 3027 pid = inferior_ptid.pid ();
82f73884
PA
3028
3029 if (obuf)
3030 *obuf = pp;
fd79271b 3031 return ptid_t (pid, tid, 0);
82f73884
PA
3032}
3033
c906108c 3034static int
fba45db2 3035stubhex (int ch)
c906108c
SS
3036{
3037 if (ch >= 'a' && ch <= 'f')
3038 return ch - 'a' + 10;
3039 if (ch >= '0' && ch <= '9')
3040 return ch - '0';
3041 if (ch >= 'A' && ch <= 'F')
3042 return ch - 'A' + 10;
3043 return -1;
3044}
3045
3046static int
fba45db2 3047stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3048{
3049 int nibble;
3050 int retval = 0;
3051
3052 while (fieldlength)
3053 {
3054 nibble = stubhex (*buff++);
3055 retval |= nibble;
3056 fieldlength--;
3057 if (fieldlength)
3058 retval = retval << 4;
3059 }
3060 return retval;
3061}
3062
c906108c 3063static char *
fba45db2 3064unpack_nibble (char *buf, int *val)
c906108c 3065{
b7589f7d 3066 *val = fromhex (*buf++);
c906108c
SS
3067 return buf;
3068}
3069
c906108c 3070static char *
fba45db2 3071unpack_byte (char *buf, int *value)
c906108c
SS
3072{
3073 *value = stub_unpack_int (buf, 2);
3074 return buf + 2;
3075}
3076
3077static char *
fba45db2 3078pack_int (char *buf, int value)
c906108c
SS
3079{
3080 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3081 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3082 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3083 buf = pack_hex_byte (buf, (value & 0xff));
3084 return buf;
3085}
3086
3087static char *
fba45db2 3088unpack_int (char *buf, int *value)
c906108c
SS
3089{
3090 *value = stub_unpack_int (buf, 8);
3091 return buf + 8;
3092}
3093
23860348 3094#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3095static char *pack_string (char *pkt, char *string);
c906108c
SS
3096
3097static char *
fba45db2 3098pack_string (char *pkt, char *string)
c906108c
SS
3099{
3100 char ch;
3101 int len;
3102
3103 len = strlen (string);
3104 if (len > 200)
23860348 3105 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3106 pkt = pack_hex_byte (pkt, len);
3107 while (len-- > 0)
3108 {
3109 ch = *string++;
3110 if ((ch == '\0') || (ch == '#'))
23860348 3111 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3112 *pkt++ = ch;
3113 }
3114 return pkt;
3115}
3116#endif /* 0 (unused) */
3117
3118static char *
fba45db2 3119unpack_string (char *src, char *dest, int length)
c906108c
SS
3120{
3121 while (length--)
3122 *dest++ = *src++;
3123 *dest = '\0';
3124 return src;
3125}
3126
3127static char *
fba45db2 3128pack_threadid (char *pkt, threadref *id)
c906108c
SS
3129{
3130 char *limit;
3131 unsigned char *altid;
3132
3133 altid = (unsigned char *) id;
3134 limit = pkt + BUF_THREAD_ID_SIZE;
3135 while (pkt < limit)
3136 pkt = pack_hex_byte (pkt, *altid++);
3137 return pkt;
3138}
3139
3140
3141static char *
fba45db2 3142unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3143{
3144 char *altref;
3145 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3146 int x, y;
3147
3148 altref = (char *) id;
3149
3150 while (inbuf < limit)
3151 {
3152 x = stubhex (*inbuf++);
3153 y = stubhex (*inbuf++);
3154 *altref++ = (x << 4) | y;
3155 }
3156 return inbuf;
3157}
3158
3159/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3160 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3161 to use 64bit thread references internally. This is an adapter
3162 function. */
3163
3164void
fba45db2 3165int_to_threadref (threadref *id, int value)
c906108c
SS
3166{
3167 unsigned char *scan;
3168
3169 scan = (unsigned char *) id;
3170 {
3171 int i = 4;
3172 while (i--)
3173 *scan++ = 0;
3174 }
3175 *scan++ = (value >> 24) & 0xff;
3176 *scan++ = (value >> 16) & 0xff;
3177 *scan++ = (value >> 8) & 0xff;
3178 *scan++ = (value & 0xff);
3179}
3180
3181static int
fba45db2 3182threadref_to_int (threadref *ref)
c906108c
SS
3183{
3184 int i, value = 0;
3185 unsigned char *scan;
3186
cfd77fa1 3187 scan = *ref;
c906108c
SS
3188 scan += 4;
3189 i = 4;
3190 while (i-- > 0)
3191 value = (value << 8) | ((*scan++) & 0xff);
3192 return value;
3193}
3194
3195static void
fba45db2 3196copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3197{
3198 int i;
3199 unsigned char *csrc, *cdest;
3200
3201 csrc = (unsigned char *) src;
3202 cdest = (unsigned char *) dest;
3203 i = 8;
3204 while (i--)
3205 *cdest++ = *csrc++;
3206}
3207
3208static int
fba45db2 3209threadmatch (threadref *dest, threadref *src)
c906108c 3210{
23860348 3211 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3212#if 0
3213 unsigned char *srcp, *destp;
3214 int i, result;
3215 srcp = (char *) src;
3216 destp = (char *) dest;
3217
3218 result = 1;
3219 while (i-- > 0)
3220 result &= (*srcp++ == *destp++) ? 1 : 0;
3221 return result;
3222#endif
3223 return 1;
3224}
3225
3226/*
c5aa993b
JM
3227 threadid:1, # always request threadid
3228 context_exists:2,
3229 display:4,
3230 unique_name:8,
3231 more_display:16
3232 */
c906108c
SS
3233
3234/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3235
3236static char *
fba45db2 3237pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3238{
23860348
MS
3239 *pkt++ = 'q'; /* Info Query */
3240 *pkt++ = 'P'; /* process or thread info */
3241 pkt = pack_int (pkt, mode); /* mode */
c906108c 3242 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3243 *pkt = '\0'; /* terminate */
c906108c
SS
3244 return pkt;
3245}
3246
23860348 3247/* These values tag the fields in a thread info response packet. */
c906108c 3248/* Tagging the fields allows us to request specific fields and to
23860348 3249 add more fields as time goes by. */
c906108c 3250
23860348 3251#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3252#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3253 fetch registers and its stack? */
c5aa993b 3254#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3255#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3256#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3257 the process. */
c906108c 3258
6b8edb51
PA
3259int
3260remote_target::remote_unpack_thread_info_response (char *pkt,
3261 threadref *expectedref,
3262 gdb_ext_thread_info *info)
c906108c 3263{
d01949b6 3264 struct remote_state *rs = get_remote_state ();
c906108c 3265 int mask, length;
cfd77fa1 3266 int tag;
c906108c 3267 threadref ref;
8d64371b 3268 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3269 int retval = 1;
3270
23860348 3271 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3272 info->active = 0;
3273 info->display[0] = '\0';
3274 info->shortname[0] = '\0';
3275 info->more_display[0] = '\0';
3276
23860348
MS
3277 /* Assume the characters indicating the packet type have been
3278 stripped. */
c906108c
SS
3279 pkt = unpack_int (pkt, &mask); /* arg mask */
3280 pkt = unpack_threadid (pkt, &ref);
3281
3282 if (mask == 0)
8a3fe4f8 3283 warning (_("Incomplete response to threadinfo request."));
c906108c 3284 if (!threadmatch (&ref, expectedref))
23860348 3285 { /* This is an answer to a different request. */
8a3fe4f8 3286 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3287 return 0;
3288 }
3289 copy_threadref (&info->threadid, &ref);
3290
405feb71 3291 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3292
23860348
MS
3293 /* Packets are terminated with nulls. */
3294 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3295 {
3296 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3297 pkt = unpack_byte (pkt, &length); /* length */
3298 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3299 {
8a3fe4f8 3300 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3301 retval = 0;
3302 break;
3303 }
3304 if (tag == TAG_THREADID)
3305 {
3306 if (length != 16)
3307 {
8a3fe4f8 3308 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3309 retval = 0;
3310 break;
3311 }
3312 pkt = unpack_threadid (pkt, &ref);
3313 mask = mask & ~TAG_THREADID;
3314 continue;
3315 }
3316 if (tag == TAG_EXISTS)
3317 {
3318 info->active = stub_unpack_int (pkt, length);
3319 pkt += length;
3320 mask = mask & ~(TAG_EXISTS);
3321 if (length > 8)
3322 {
8a3fe4f8 3323 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3324 retval = 0;
3325 break;
3326 }
3327 continue;
3328 }
3329 if (tag == TAG_THREADNAME)
3330 {
3331 pkt = unpack_string (pkt, &info->shortname[0], length);
3332 mask = mask & ~TAG_THREADNAME;
3333 continue;
3334 }
3335 if (tag == TAG_DISPLAY)
3336 {
3337 pkt = unpack_string (pkt, &info->display[0], length);
3338 mask = mask & ~TAG_DISPLAY;
3339 continue;
3340 }
3341 if (tag == TAG_MOREDISPLAY)
3342 {
3343 pkt = unpack_string (pkt, &info->more_display[0], length);
3344 mask = mask & ~TAG_MOREDISPLAY;
3345 continue;
3346 }
8a3fe4f8 3347 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3348 break; /* Not a tag we know about. */
c906108c
SS
3349 }
3350 return retval;
3351}
3352
6b8edb51
PA
3353int
3354remote_target::remote_get_threadinfo (threadref *threadid,
3355 int fieldset,
3356 gdb_ext_thread_info *info)
c906108c 3357{
d01949b6 3358 struct remote_state *rs = get_remote_state ();
c906108c 3359 int result;
c906108c 3360
8d64371b 3361 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3362 putpkt (rs->buf);
8d64371b 3363 getpkt (&rs->buf, 0);
3084dd77
PA
3364
3365 if (rs->buf[0] == '\0')
3366 return 0;
3367
8d64371b 3368 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3369 threadid, info);
c906108c
SS
3370 return result;
3371}
3372
c906108c
SS
3373/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3374
3375static char *
fba45db2
KB
3376pack_threadlist_request (char *pkt, int startflag, int threadcount,
3377 threadref *nextthread)
c906108c
SS
3378{
3379 *pkt++ = 'q'; /* info query packet */
3380 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3381 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3382 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3383 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3384 *pkt = '\0';
3385 return pkt;
3386}
3387
3388/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3389
6b8edb51
PA
3390int
3391remote_target::parse_threadlist_response (char *pkt, int result_limit,
3392 threadref *original_echo,
3393 threadref *resultlist,
3394 int *doneflag)
c906108c 3395{
d01949b6 3396 struct remote_state *rs = get_remote_state ();
c906108c
SS
3397 char *limit;
3398 int count, resultcount, done;
3399
3400 resultcount = 0;
3401 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3402 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3403 /* done parse past here */
c906108c
SS
3404 pkt = unpack_byte (pkt, &count); /* count field */
3405 pkt = unpack_nibble (pkt, &done);
3406 /* The first threadid is the argument threadid. */
3407 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3408 while ((count-- > 0) && (pkt < limit))
3409 {
3410 pkt = unpack_threadid (pkt, resultlist++);
3411 if (resultcount++ >= result_limit)
3412 break;
3413 }
3414 if (doneflag)
3415 *doneflag = done;
3416 return resultcount;
3417}
3418
6dc54d91
PA
3419/* Fetch the next batch of threads from the remote. Returns -1 if the
3420 qL packet is not supported, 0 on error and 1 on success. */
3421
6b8edb51
PA
3422int
3423remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3424 int result_limit, int *done, int *result_count,
3425 threadref *threadlist)
c906108c 3426{
d01949b6 3427 struct remote_state *rs = get_remote_state ();
c906108c
SS
3428 int result = 1;
3429
405feb71 3430 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3431 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3432 >= get_remote_packet_size ())
ea9c271d 3433 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3434
8d64371b
TT
3435 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3436 nextthread);
6d820c5c 3437 putpkt (rs->buf);
8d64371b
TT
3438 getpkt (&rs->buf, 0);
3439 if (rs->buf[0] == '\0')
6dc54d91
PA
3440 {
3441 /* Packet not supported. */
3442 return -1;
3443 }
3444
3445 *result_count =
8d64371b 3446 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3447 &rs->echo_nextthread, threadlist, done);
c906108c 3448
0d031856 3449 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3450 {
23860348 3451 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3452 /* Possibly, there is a duplicate response. */
3453 /* Possibilities :
c906108c
SS
3454 retransmit immediatly - race conditions
3455 retransmit after timeout - yes
3456 exit
3457 wait for packet, then exit
3458 */
8a3fe4f8 3459 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3460 return 0; /* I choose simply exiting. */
c906108c
SS
3461 }
3462 if (*result_count <= 0)
3463 {
3464 if (*done != 1)
3465 {
8a3fe4f8 3466 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3467 result = 0;
3468 }
3469 return result; /* break; */
3470 }
3471 if (*result_count > result_limit)
3472 {
3473 *result_count = 0;
8a3fe4f8 3474 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3475 return 0;
3476 }
3477 return result;
3478}
3479
6dc54d91
PA
3480/* Fetch the list of remote threads, with the qL packet, and call
3481 STEPFUNCTION for each thread found. Stops iterating and returns 1
3482 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3483 STEPFUNCTION returns false. If the packet is not supported,
3484 returns -1. */
c906108c 3485
6b8edb51
PA
3486int
3487remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3488 void *context, int looplimit)
c906108c 3489{
0d031856 3490 struct remote_state *rs = get_remote_state ();
c906108c
SS
3491 int done, i, result_count;
3492 int startflag = 1;
3493 int result = 1;
3494 int loopcount = 0;
c906108c
SS
3495
3496 done = 0;
3497 while (!done)
3498 {
3499 if (loopcount++ > looplimit)
3500 {
3501 result = 0;
8a3fe4f8 3502 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3503 break;
3504 }
6dc54d91
PA
3505 result = remote_get_threadlist (startflag, &rs->nextthread,
3506 MAXTHREADLISTRESULTS,
3507 &done, &result_count,
3508 rs->resultthreadlist);
3509 if (result <= 0)
3510 break;
23860348 3511 /* Clear for later iterations. */
c906108c
SS
3512 startflag = 0;
3513 /* Setup to resume next batch of thread references, set nextthread. */
3514 if (result_count >= 1)
0d031856
TT
3515 copy_threadref (&rs->nextthread,
3516 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3517 i = 0;
3518 while (result_count--)
6dc54d91
PA
3519 {
3520 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3521 {
3522 result = 0;
3523 break;
3524 }
3525 }
c906108c
SS
3526 }
3527 return result;
3528}
3529
6dc54d91
PA
3530/* A thread found on the remote target. */
3531
21fe1c75 3532struct thread_item
6dc54d91 3533{
21fe1c75
SM
3534 explicit thread_item (ptid_t ptid_)
3535 : ptid (ptid_)
3536 {}
3537
3538 thread_item (thread_item &&other) = default;
3539 thread_item &operator= (thread_item &&other) = default;
3540
3541 DISABLE_COPY_AND_ASSIGN (thread_item);
3542
6dc54d91
PA
3543 /* The thread's PTID. */
3544 ptid_t ptid;
3545
21fe1c75
SM
3546 /* The thread's extra info. */
3547 std::string extra;
6dc54d91 3548
21fe1c75
SM
3549 /* The thread's name. */
3550 std::string name;
79efa585 3551
6dc54d91 3552 /* The core the thread was running on. -1 if not known. */
21fe1c75 3553 int core = -1;
f6327dcb
KB
3554
3555 /* The thread handle associated with the thread. */
21fe1c75 3556 gdb::byte_vector thread_handle;
21fe1c75 3557};
6dc54d91
PA
3558
3559/* Context passed around to the various methods listing remote
3560 threads. As new threads are found, they're added to the ITEMS
3561 vector. */
3562
3563struct threads_listing_context
3564{
21fe1c75
SM
3565 /* Return true if this object contains an entry for a thread with ptid
3566 PTID. */
6dc54d91 3567
21fe1c75
SM
3568 bool contains_thread (ptid_t ptid) const
3569 {
3570 auto match_ptid = [&] (const thread_item &item)
3571 {
3572 return item.ptid == ptid;
3573 };
80134cf5 3574
21fe1c75
SM
3575 auto it = std::find_if (this->items.begin (),
3576 this->items.end (),
3577 match_ptid);
80134cf5 3578
21fe1c75
SM
3579 return it != this->items.end ();
3580 }
80134cf5 3581
21fe1c75 3582 /* Remove the thread with ptid PTID. */
80134cf5 3583
21fe1c75
SM
3584 void remove_thread (ptid_t ptid)
3585 {
3586 auto match_ptid = [&] (const thread_item &item)
3587 {
3588 return item.ptid == ptid;
3589 };
cbb8991c 3590
21fe1c75
SM
3591 auto it = std::remove_if (this->items.begin (),
3592 this->items.end (),
3593 match_ptid);
cbb8991c 3594
21fe1c75
SM
3595 if (it != this->items.end ())
3596 this->items.erase (it);
3597 }
3598
3599 /* The threads found on the remote target. */
3600 std::vector<thread_item> items;
3601};
cbb8991c 3602
c906108c 3603static int
6dc54d91 3604remote_newthread_step (threadref *ref, void *data)
c906108c 3605{
19ba03f4
SM
3606 struct threads_listing_context *context
3607 = (struct threads_listing_context *) data;
21fe1c75
SM
3608 int pid = inferior_ptid.pid ();
3609 int lwp = threadref_to_int (ref);
3610 ptid_t ptid (pid, lwp);
6dc54d91 3611
21fe1c75 3612 context->items.emplace_back (ptid);
6dc54d91 3613
c906108c
SS
3614 return 1; /* continue iterator */
3615}
3616
3617#define CRAZY_MAX_THREADS 1000
3618
6b8edb51
PA
3619ptid_t
3620remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3621{
d01949b6 3622 struct remote_state *rs = get_remote_state ();
c906108c
SS
3623
3624 putpkt ("qC");
8d64371b 3625 getpkt (&rs->buf, 0);
2e9f7625 3626 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3627 {
256642e8 3628 const char *obuf;
c9f35b34
KB
3629 ptid_t result;
3630
3631 result = read_ptid (&rs->buf[2], &obuf);
3632 if (*obuf != '\0' && remote_debug)
3633 fprintf_unfiltered (gdb_stdlog,
3634 "warning: garbage in qC reply\n");
3635
3636 return result;
3637 }
c906108c
SS
3638 else
3639 return oldpid;
3640}
3641
6dc54d91 3642/* List remote threads using the deprecated qL packet. */
cce74817 3643
6b8edb51
PA
3644int
3645remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3646{
6dc54d91
PA
3647 if (remote_threadlist_iterator (remote_newthread_step, context,
3648 CRAZY_MAX_THREADS) >= 0)
3649 return 1;
3650
3651 return 0;
c906108c
SS
3652}
3653
dc146f7c
VP
3654#if defined(HAVE_LIBEXPAT)
3655
dc146f7c
VP
3656static void
3657start_thread (struct gdb_xml_parser *parser,
3658 const struct gdb_xml_element *element,
4d0fdd9b
SM
3659 void *user_data,
3660 std::vector<gdb_xml_value> &attributes)
dc146f7c 3661{
19ba03f4
SM
3662 struct threads_listing_context *data
3663 = (struct threads_listing_context *) user_data;
3d2c1d41 3664 struct gdb_xml_value *attr;
dc146f7c 3665
4d0fdd9b 3666 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3667 ptid_t ptid = read_ptid (id, NULL);
3668
3669 data->items.emplace_back (ptid);
3670 thread_item &item = data->items.back ();
dc146f7c 3671
3d2c1d41
PA
3672 attr = xml_find_attribute (attributes, "core");
3673 if (attr != NULL)
4d0fdd9b 3674 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3675
79efa585 3676 attr = xml_find_attribute (attributes, "name");
21fe1c75 3677 if (attr != NULL)
4d0fdd9b 3678 item.name = (const char *) attr->value.get ();
79efa585 3679
f6327dcb
KB
3680 attr = xml_find_attribute (attributes, "handle");
3681 if (attr != NULL)
4d0fdd9b 3682 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3683}
3684
3685static void
3686end_thread (struct gdb_xml_parser *parser,
3687 const struct gdb_xml_element *element,
3688 void *user_data, const char *body_text)
3689{
19ba03f4
SM
3690 struct threads_listing_context *data
3691 = (struct threads_listing_context *) user_data;
dc146f7c 3692
21fe1c75
SM
3693 if (body_text != NULL && *body_text != '\0')
3694 data->items.back ().extra = body_text;
dc146f7c
VP
3695}
3696
3697const struct gdb_xml_attribute thread_attributes[] = {
3698 { "id", GDB_XML_AF_NONE, NULL, NULL },
3699 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3700 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3701 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3702 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3703};
3704
3705const struct gdb_xml_element thread_children[] = {
3706 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3707};
3708
3709const struct gdb_xml_element threads_children[] = {
3710 { "thread", thread_attributes, thread_children,
3711 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3712 start_thread, end_thread },
3713 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3714};
3715
3716const struct gdb_xml_element threads_elements[] = {
3717 { "threads", NULL, threads_children,
3718 GDB_XML_EF_NONE, NULL, NULL },
3719 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3720};
3721
3722#endif
3723
6dc54d91 3724/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3725
6b8edb51
PA
3726int
3727remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3728{
dc146f7c 3729#if defined(HAVE_LIBEXPAT)
4082afcc 3730 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3731 {
9018be22 3732 gdb::optional<gdb::char_vector> xml
6b8edb51 3733 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3734
9018be22 3735 if (xml && (*xml)[0] != '\0')
dc146f7c 3736 {
6dc54d91 3737 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3738 threads_elements, xml->data (), context);
dc146f7c
VP
3739 }
3740
6dc54d91 3741 return 1;
dc146f7c
VP
3742 }
3743#endif
3744
6dc54d91
PA
3745 return 0;
3746}
3747
3748/* List remote threads using qfThreadInfo/qsThreadInfo. */
3749
6b8edb51
PA
3750int
3751remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3752{
3753 struct remote_state *rs = get_remote_state ();
3754
b80fafe3 3755 if (rs->use_threadinfo_query)
9d1f7ab2 3756 {
256642e8 3757 const char *bufp;
6dc54d91 3758
9d1f7ab2 3759 putpkt ("qfThreadInfo");
8d64371b
TT
3760 getpkt (&rs->buf, 0);
3761 bufp = rs->buf.data ();
9d1f7ab2 3762 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3763 {
9d1f7ab2
MS
3764 while (*bufp++ == 'm') /* reply contains one or more TID */
3765 {
3766 do
3767 {
21fe1c75
SM
3768 ptid_t ptid = read_ptid (bufp, &bufp);
3769 context->items.emplace_back (ptid);
9d1f7ab2
MS
3770 }
3771 while (*bufp++ == ','); /* comma-separated list */
3772 putpkt ("qsThreadInfo");
8d64371b
TT
3773 getpkt (&rs->buf, 0);
3774 bufp = rs->buf.data ();
9d1f7ab2 3775 }
6dc54d91
PA
3776 return 1;
3777 }
3778 else
3779 {
3780 /* Packet not recognized. */
3781 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3782 }
3783 }
3784
6dc54d91
PA
3785 return 0;
3786}
3787
a05575d3
TBA
3788/* Return true if INF only has one non-exited thread. */
3789
3790static bool
3791has_single_non_exited_thread (inferior *inf)
3792{
3793 int count = 0;
3794 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3795 if (++count > 1)
3796 break;
3797 return count == 1;
3798}
3799
e8032dde 3800/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3801 targets. */
3802
f6ac5f3d
PA
3803void
3804remote_target::update_thread_list ()
6dc54d91 3805{
6dc54d91 3806 struct threads_listing_context context;
ab970af1 3807 int got_list = 0;
e8032dde 3808
6dc54d91
PA
3809 /* We have a few different mechanisms to fetch the thread list. Try
3810 them all, starting with the most preferred one first, falling
3811 back to older methods. */
6b8edb51
PA
3812 if (remote_get_threads_with_qxfer (&context)
3813 || remote_get_threads_with_qthreadinfo (&context)
3814 || remote_get_threads_with_ql (&context))
6dc54d91 3815 {
ab970af1
PA
3816 got_list = 1;
3817
21fe1c75 3818 if (context.items.empty ()
f6ac5f3d 3819 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3820 {
3821 /* Some targets don't really support threads, but still
3822 reply an (empty) thread list in response to the thread
3823 listing packets, instead of replying "packet not
3824 supported". Exit early so we don't delete the main
3825 thread. */
7d1a114c
PA
3826 return;
3827 }
3828
ab970af1
PA
3829 /* CONTEXT now holds the current thread list on the remote
3830 target end. Delete GDB-side threads no longer found on the
3831 target. */
08036331 3832 for (thread_info *tp : all_threads_safe ())
cbb8991c 3833 {
5b6d1e4f
PA
3834 if (tp->inf->process_target () != this)
3835 continue;
3836
21fe1c75 3837 if (!context.contains_thread (tp->ptid))
ab970af1 3838 {
a05575d3
TBA
3839 /* Do not remove the thread if it is the last thread in
3840 the inferior. This situation happens when we have a
3841 pending exit process status to process. Otherwise we
3842 may end up with a seemingly live inferior (i.e. pid
3843 != 0) that has no threads. */
3844 if (has_single_non_exited_thread (tp->inf))
3845 continue;
3846
ab970af1 3847 /* Not found. */
00431a78 3848 delete_thread (tp);
ab970af1 3849 }
cbb8991c
DB
3850 }
3851
3852 /* Remove any unreported fork child threads from CONTEXT so
3853 that we don't interfere with follow fork, which is where
3854 creation of such threads is handled. */
3855 remove_new_fork_children (&context);
74531fed 3856
ab970af1 3857 /* And now add threads we don't know about yet to our list. */
21fe1c75 3858 for (thread_item &item : context.items)
6dc54d91 3859 {
21fe1c75 3860 if (item.ptid != null_ptid)
6dc54d91 3861 {
6dc54d91 3862 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3863 executing until proven otherwise with a stop reply.
3864 In all-stop, we can only get here if all threads are
6dc54d91 3865 stopped. */
0d5b594f 3866 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3867
21fe1c75 3868 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3869
5b6d1e4f 3870 thread_info *tp = find_thread_ptid (this, item.ptid);
00431a78 3871 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3872 info->core = item.core;
7aabaf9d
SM
3873 info->extra = std::move (item.extra);
3874 info->name = std::move (item.name);
3875 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3876 }
3877 }
3878 }
3879
ab970af1
PA
3880 if (!got_list)
3881 {
3882 /* If no thread listing method is supported, then query whether
3883 each known thread is alive, one by one, with the T packet.
3884 If the target doesn't support threads at all, then this is a
3885 no-op. See remote_thread_alive. */
3886 prune_threads ();
3887 }
9d1f7ab2
MS
3888}
3889
802188a7 3890/*
9d1f7ab2
MS
3891 * Collect a descriptive string about the given thread.
3892 * The target may say anything it wants to about the thread
3893 * (typically info about its blocked / runnable state, name, etc.).
3894 * This string will appear in the info threads display.
802188a7 3895 *
9d1f7ab2
MS
3896 * Optional: targets are not required to implement this function.
3897 */
3898
f6ac5f3d
PA
3899const char *
3900remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3901{
d01949b6 3902 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3903 int set;
3904 threadref id;
3905 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3906
5d93a237 3907 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3908 internal_error (__FILE__, __LINE__,
e2e0b3e5 3909 _("remote_threads_extra_info"));
9d1f7ab2 3910
d7e15655 3911 if (tp->ptid == magic_null_ptid
e38504b3 3912 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3913 /* This is the main thread which was added by GDB. The remote
3914 server doesn't know about it. */
3915 return NULL;
3916
c76a8ea3
PA
3917 std::string &extra = get_remote_thread_info (tp)->extra;
3918
3919 /* If already have cached info, use it. */
3920 if (!extra.empty ())
3921 return extra.c_str ();
3922
4082afcc 3923 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3924 {
c76a8ea3
PA
3925 /* If we're using qXfer:threads:read, then the extra info is
3926 included in the XML. So if we didn't have anything cached,
3927 it's because there's really no extra info. */
3928 return NULL;
dc146f7c
VP
3929 }
3930
b80fafe3 3931 if (rs->use_threadextra_query)
9d1f7ab2 3932 {
8d64371b
TT
3933 char *b = rs->buf.data ();
3934 char *endb = b + get_remote_packet_size ();
82f73884
PA
3935
3936 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3937 b += strlen (b);
3938 write_ptid (b, endb, tp->ptid);
3939
2e9f7625 3940 putpkt (rs->buf);
8d64371b 3941 getpkt (&rs->buf, 0);
2e9f7625 3942 if (rs->buf[0] != 0)
9d1f7ab2 3943 {
8d64371b
TT
3944 extra.resize (strlen (rs->buf.data ()) / 2);
3945 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3946 return extra.c_str ();
9d1f7ab2 3947 }
0f71a2f6 3948 }
9d1f7ab2
MS
3949
3950 /* If the above query fails, fall back to the old method. */
b80fafe3 3951 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3952 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3953 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3954 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3955 if (remote_get_threadinfo (&id, set, &threadinfo))
3956 if (threadinfo.active)
0f71a2f6 3957 {
9d1f7ab2 3958 if (*threadinfo.shortname)
c76a8ea3 3959 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3960 if (*threadinfo.display)
c76a8ea3
PA
3961 {
3962 if (!extra.empty ())
3963 extra += ',';
3964 string_appendf (extra, " State: %s", threadinfo.display);
3965 }
9d1f7ab2 3966 if (*threadinfo.more_display)
c5aa993b 3967 {
c76a8ea3
PA
3968 if (!extra.empty ())
3969 extra += ',';
3970 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3971 }
c76a8ea3 3972 return extra.c_str ();
0f71a2f6 3973 }
9d1f7ab2 3974 return NULL;
0f71a2f6 3975}
c906108c 3976\f
c5aa993b 3977
f6ac5f3d
PA
3978bool
3979remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3980 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3981{
3982 struct remote_state *rs = get_remote_state ();
8d64371b 3983 char *p = rs->buf.data ();
0fb4aa4b 3984
bba74b36 3985 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3986 p += strlen (p);
3987 p += hexnumstr (p, addr);
3988 putpkt (rs->buf);
8d64371b
TT
3989 getpkt (&rs->buf, 0);
3990 p = rs->buf.data ();
0fb4aa4b
PA
3991
3992 if (*p == 'E')
3993 error (_("Remote failure reply: %s"), p);
3994
3995 if (*p++ == 'm')
3996 {
256642e8 3997 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3998 return true;
0fb4aa4b
PA
3999 }
4000
5d9310c4 4001 return false;
0fb4aa4b
PA
4002}
4003
f6ac5f3d
PA
4004std::vector<static_tracepoint_marker>
4005remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
4006{
4007 struct remote_state *rs = get_remote_state ();
5d9310c4 4008 std::vector<static_tracepoint_marker> markers;
256642e8 4009 const char *p;
5d9310c4 4010 static_tracepoint_marker marker;
0fb4aa4b
PA
4011
4012 /* Ask for a first packet of static tracepoint marker
4013 definition. */
4014 putpkt ("qTfSTM");
8d64371b
TT
4015 getpkt (&rs->buf, 0);
4016 p = rs->buf.data ();
0fb4aa4b
PA
4017 if (*p == 'E')
4018 error (_("Remote failure reply: %s"), p);
4019
0fb4aa4b
PA
4020 while (*p++ == 'm')
4021 {
0fb4aa4b
PA
4022 do
4023 {
5d9310c4 4024 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 4025
5d9310c4
SM
4026 if (strid == NULL || marker.str_id == strid)
4027 markers.push_back (std::move (marker));
0fb4aa4b
PA
4028 }
4029 while (*p++ == ','); /* comma-separated list */
4030 /* Ask for another packet of static tracepoint definition. */
4031 putpkt ("qTsSTM");
8d64371b
TT
4032 getpkt (&rs->buf, 0);
4033 p = rs->buf.data ();
0fb4aa4b
PA
4034 }
4035
0fb4aa4b
PA
4036 return markers;
4037}
4038
4039\f
10760264
JB
4040/* Implement the to_get_ada_task_ptid function for the remote targets. */
4041
f6ac5f3d
PA
4042ptid_t
4043remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4044{
e99b03dc 4045 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
4046}
4047\f
4048
24b06219 4049/* Restart the remote side; this is an extended protocol operation. */
c906108c 4050
6b8edb51
PA
4051void
4052remote_target::extended_remote_restart ()
c906108c 4053{
d01949b6 4054 struct remote_state *rs = get_remote_state ();
c906108c
SS
4055
4056 /* Send the restart command; for reasons I don't understand the
4057 remote side really expects a number after the "R". */
8d64371b 4058 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4059 putpkt (rs->buf);
c906108c 4060
ad9a8f3f 4061 remote_fileio_reset ();
c906108c
SS
4062}
4063\f
4064/* Clean up connection to a remote debugger. */
4065
f6ac5f3d
PA
4066void
4067remote_target::close ()
c906108c 4068{
048094ac 4069 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4070 terminal_ours ();
ce5ce7ed 4071
6b8edb51
PA
4072 trace_reset_local_state ();
4073
4074 delete this;
4075}
4076
4077remote_target::~remote_target ()
4078{
4079 struct remote_state *rs = get_remote_state ();
4080
4081 /* Check for NULL because we may get here with a partially
4082 constructed target/connection. */
4083 if (rs->remote_desc == nullptr)
4084 return;
4085
4086 serial_close (rs->remote_desc);
4087
4088 /* We are destroying the remote target, so we should discard
f48ff2a7 4089 everything of this target. */
6b8edb51 4090 discard_pending_stop_replies_in_queue ();
74531fed 4091
6b8edb51
PA
4092 if (rs->remote_async_inferior_event_token)
4093 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4094
97dfbadd 4095 delete rs->notif_state;
c906108c
SS
4096}
4097
23860348 4098/* Query the remote side for the text, data and bss offsets. */
c906108c 4099
6b8edb51
PA
4100void
4101remote_target::get_offsets ()
c906108c 4102{
d01949b6 4103 struct remote_state *rs = get_remote_state ();
2e9f7625 4104 char *buf;
085dd6e6 4105 char *ptr;
31d99776
DJ
4106 int lose, num_segments = 0, do_sections, do_segments;
4107 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776
DJ
4108
4109 if (symfile_objfile == NULL)
4110 return;
c906108c
SS
4111
4112 putpkt ("qOffsets");
8d64371b
TT
4113 getpkt (&rs->buf, 0);
4114 buf = rs->buf.data ();
c906108c
SS
4115
4116 if (buf[0] == '\000')
4117 return; /* Return silently. Stub doesn't support
23860348 4118 this command. */
c906108c
SS
4119 if (buf[0] == 'E')
4120 {
8a3fe4f8 4121 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4122 return;
4123 }
4124
4125 /* Pick up each field in turn. This used to be done with scanf, but
4126 scanf will make trouble if CORE_ADDR size doesn't match
4127 conversion directives correctly. The following code will work
4128 with any size of CORE_ADDR. */
4129 text_addr = data_addr = bss_addr = 0;
4130 ptr = buf;
4131 lose = 0;
4132
61012eef 4133 if (startswith (ptr, "Text="))
c906108c
SS
4134 {
4135 ptr += 5;
4136 /* Don't use strtol, could lose on big values. */
4137 while (*ptr && *ptr != ';')
4138 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4139
61012eef 4140 if (startswith (ptr, ";Data="))
31d99776
DJ
4141 {
4142 ptr += 6;
4143 while (*ptr && *ptr != ';')
4144 data_addr = (data_addr << 4) + fromhex (*ptr++);
4145 }
4146 else
4147 lose = 1;
4148
61012eef 4149 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4150 {
4151 ptr += 5;
4152 while (*ptr && *ptr != ';')
4153 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4154
31d99776
DJ
4155 if (bss_addr != data_addr)
4156 warning (_("Target reported unsupported offsets: %s"), buf);
4157 }
4158 else
4159 lose = 1;
4160 }
61012eef 4161 else if (startswith (ptr, "TextSeg="))
c906108c 4162 {
31d99776
DJ
4163 ptr += 8;
4164 /* Don't use strtol, could lose on big values. */
c906108c 4165 while (*ptr && *ptr != ';')
31d99776
DJ
4166 text_addr = (text_addr << 4) + fromhex (*ptr++);
4167 num_segments = 1;
4168
61012eef 4169 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4170 {
4171 ptr += 9;
4172 while (*ptr && *ptr != ';')
4173 data_addr = (data_addr << 4) + fromhex (*ptr++);
4174 num_segments++;
4175 }
c906108c
SS
4176 }
4177 else
4178 lose = 1;
4179
4180 if (lose)
8a3fe4f8 4181 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4182 else if (*ptr != '\0')
4183 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4184
6a053cb1 4185 section_offsets offs = symfile_objfile->section_offsets;
c906108c 4186
62982abd
SM
4187 symfile_segment_data_up data
4188 = get_symfile_segment_data (symfile_objfile->obfd);
31d99776
DJ
4189 do_segments = (data != NULL);
4190 do_sections = num_segments == 0;
c906108c 4191
28c32713 4192 if (num_segments > 0)
31d99776 4193 {
31d99776
DJ
4194 segments[0] = text_addr;
4195 segments[1] = data_addr;
4196 }
28c32713
JB
4197 /* If we have two segments, we can still try to relocate everything
4198 by assuming that the .text and .data offsets apply to the whole
4199 text and data segments. Convert the offsets given in the packet
4200 to base addresses for symfile_map_offsets_to_segments. */
68b888ff 4201 else if (data != nullptr && data->segments.size () == 2)
28c32713 4202 {
68b888ff
SM
4203 segments[0] = data->segments[0].base + text_addr;
4204 segments[1] = data->segments[1].base + data_addr;
28c32713
JB
4205 num_segments = 2;
4206 }
8d385431
DJ
4207 /* If the object file has only one segment, assume that it is text
4208 rather than data; main programs with no writable data are rare,
4209 but programs with no code are useless. Of course the code might
4210 have ended up in the data segment... to detect that we would need
4211 the permissions here. */
68b888ff 4212 else if (data && data->segments.size () == 1)
8d385431 4213 {
68b888ff 4214 segments[0] = data->segments[0].base + text_addr;
8d385431
DJ
4215 num_segments = 1;
4216 }
28c32713
JB
4217 /* There's no way to relocate by segment. */
4218 else
4219 do_segments = 0;
31d99776
DJ
4220
4221 if (do_segments)
4222 {
62982abd
SM
4223 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd,
4224 data.get (), offs,
4225 num_segments, segments);
31d99776
DJ
4226
4227 if (ret == 0 && !do_sections)
3e43a32a
MS
4228 error (_("Can not handle qOffsets TextSeg "
4229 "response with this symbol file"));
31d99776
DJ
4230
4231 if (ret > 0)
4232 do_sections = 0;
4233 }
c906108c 4234
31d99776
DJ
4235 if (do_sections)
4236 {
6a053cb1 4237 offs[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
31d99776 4238
3e43a32a
MS
4239 /* This is a temporary kludge to force data and bss to use the
4240 same offsets because that's what nlmconv does now. The real
4241 solution requires changes to the stub and remote.c that I
4242 don't have time to do right now. */
31d99776 4243
6a053cb1
TT
4244 offs[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4245 offs[SECT_OFF_BSS (symfile_objfile)] = data_addr;
31d99776 4246 }
c906108c
SS
4247
4248 objfile_relocate (symfile_objfile, offs);
4249}
4250
9a7071a8 4251/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4252
4253void
4254remote_target::send_interrupt_sequence ()
9a7071a8 4255{
5d93a237
TT
4256 struct remote_state *rs = get_remote_state ();
4257
9a7071a8 4258 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4259 remote_serial_write ("\x03", 1);
9a7071a8 4260 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4261 serial_send_break (rs->remote_desc);
9a7071a8
JB
4262 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4263 {
5d93a237 4264 serial_send_break (rs->remote_desc);
c33e31fd 4265 remote_serial_write ("g", 1);
9a7071a8
JB
4266 }
4267 else
4268 internal_error (__FILE__, __LINE__,
4269 _("Invalid value for interrupt_sequence_mode: %s."),
4270 interrupt_sequence_mode);
4271}
4272
3405876a
PA
4273
4274/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4275 and extract the PTID. Returns NULL_PTID if not found. */
4276
4277static ptid_t
4278stop_reply_extract_thread (char *stop_reply)
4279{
4280 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4281 {
256642e8 4282 const char *p;
3405876a
PA
4283
4284 /* Txx r:val ; r:val (...) */
4285 p = &stop_reply[3];
4286
4287 /* Look for "register" named "thread". */
4288 while (*p != '\0')
4289 {
256642e8 4290 const char *p1;
3405876a
PA
4291
4292 p1 = strchr (p, ':');
4293 if (p1 == NULL)
4294 return null_ptid;
4295
4296 if (strncmp (p, "thread", p1 - p) == 0)
4297 return read_ptid (++p1, &p);
4298
4299 p1 = strchr (p, ';');
4300 if (p1 == NULL)
4301 return null_ptid;
4302 p1++;
4303
4304 p = p1;
4305 }
4306 }
4307
4308 return null_ptid;
4309}
4310
b7ea362b
PA
4311/* Determine the remote side's current thread. If we have a stop
4312 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4313 "thread" register we can extract the current thread from. If not,
4314 ask the remote which is the current thread with qC. The former
4315 method avoids a roundtrip. */
4316
6b8edb51
PA
4317ptid_t
4318remote_target::get_current_thread (char *wait_status)
b7ea362b 4319{
6a49a997 4320 ptid_t ptid = null_ptid;
b7ea362b
PA
4321
4322 /* Note we don't use remote_parse_stop_reply as that makes use of
4323 the target architecture, which we haven't yet fully determined at
4324 this point. */
4325 if (wait_status != NULL)
4326 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4327 if (ptid == null_ptid)
b7ea362b
PA
4328 ptid = remote_current_thread (inferior_ptid);
4329
4330 return ptid;
4331}
4332
49c62f2e
PA
4333/* Query the remote target for which is the current thread/process,
4334 add it to our tables, and update INFERIOR_PTID. The caller is
4335 responsible for setting the state such that the remote end is ready
3405876a
PA
4336 to return the current thread.
4337
4338 This function is called after handling the '?' or 'vRun' packets,
4339 whose response is a stop reply from which we can also try
4340 extracting the thread. If the target doesn't support the explicit
4341 qC query, we infer the current thread from that stop reply, passed
4342 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4343
6b8edb51
PA
4344void
4345remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4346{
4347 struct remote_state *rs = get_remote_state ();
9ab8741a 4348 bool fake_pid_p = false;
49c62f2e 4349
0ac55310 4350 switch_to_no_thread ();
49c62f2e 4351
0ac55310
PA
4352 /* Now, if we have thread information, update the current thread's
4353 ptid. */
87215ad1 4354 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4355
87215ad1 4356 if (curr_ptid != null_ptid)
49c62f2e
PA
4357 {
4358 if (!remote_multi_process_p (rs))
9ab8741a 4359 fake_pid_p = true;
49c62f2e
PA
4360 }
4361 else
4362 {
4363 /* Without this, some commands which require an active target
4364 (such as kill) won't work. This variable serves (at least)
4365 double duty as both the pid of the target process (if it has
4366 such), and as a flag indicating that a target is active. */
87215ad1 4367 curr_ptid = magic_null_ptid;
9ab8741a 4368 fake_pid_p = true;
49c62f2e
PA
4369 }
4370
e99b03dc 4371 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4372
87215ad1
SDJ
4373 /* Add the main thread and switch to it. Don't try reading
4374 registers yet, since we haven't fetched the target description
4375 yet. */
5b6d1e4f 4376 thread_info *tp = add_thread_silent (this, curr_ptid);
87215ad1 4377 switch_to_thread_no_regs (tp);
49c62f2e
PA
4378}
4379
6efcd9a8
PA
4380/* Print info about a thread that was found already stopped on
4381 connection. */
4382
4383static void
4384print_one_stopped_thread (struct thread_info *thread)
4385{
4386 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4387
00431a78 4388 switch_to_thread (thread);
f2ffa92b 4389 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4390 set_current_sal_from_frame (get_current_frame ());
4391
4392 thread->suspend.waitstatus_pending_p = 0;
4393
4394 if (ws->kind == TARGET_WAITKIND_STOPPED)
4395 {
4396 enum gdb_signal sig = ws->value.sig;
4397
4398 if (signal_print_state (sig))
76727919 4399 gdb::observers::signal_received.notify (sig);
6efcd9a8 4400 }
76727919 4401 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4402}
4403
221e1a37
PA
4404/* Process all initial stop replies the remote side sent in response
4405 to the ? packet. These indicate threads that were already stopped
4406 on initial connection. We mark these threads as stopped and print
4407 their current frame before giving the user the prompt. */
4408
6b8edb51
PA
4409void
4410remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4411{
4412 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4413 struct thread_info *selected = NULL;
4414 struct thread_info *lowest_stopped = NULL;
4415 struct thread_info *first = NULL;
221e1a37
PA
4416
4417 /* Consume the initial pending events. */
4418 while (pending_stop_replies-- > 0)
4419 {
4420 ptid_t waiton_ptid = minus_one_ptid;
4421 ptid_t event_ptid;
4422 struct target_waitstatus ws;
4423 int ignore_event = 0;
4424
4425 memset (&ws, 0, sizeof (ws));
4426 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4427 if (remote_debug)
4428 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4429
4430 switch (ws.kind)
4431 {
4432 case TARGET_WAITKIND_IGNORE:
4433 case TARGET_WAITKIND_NO_RESUMED:
4434 case TARGET_WAITKIND_SIGNALLED:
4435 case TARGET_WAITKIND_EXITED:
4436 /* We shouldn't see these, but if we do, just ignore. */
4437 if (remote_debug)
4438 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4439 ignore_event = 1;
4440 break;
4441
4442 case TARGET_WAITKIND_EXECD:
4443 xfree (ws.value.execd_pathname);
4444 break;
4445 default:
4446 break;
4447 }
4448
4449 if (ignore_event)
4450 continue;
4451
5b6d1e4f 4452 thread_info *evthread = find_thread_ptid (this, event_ptid);
221e1a37
PA
4453
4454 if (ws.kind == TARGET_WAITKIND_STOPPED)
4455 {
4456 enum gdb_signal sig = ws.value.sig;
4457
4458 /* Stubs traditionally report SIGTRAP as initial signal,
4459 instead of signal 0. Suppress it. */
4460 if (sig == GDB_SIGNAL_TRAP)
4461 sig = GDB_SIGNAL_0;
b926417a 4462 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4463 ws.value.sig = sig;
4464 }
221e1a37 4465
b926417a 4466 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4467
4468 if (ws.kind != TARGET_WAITKIND_STOPPED
4469 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4470 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8 4471
719546c4
SM
4472 set_executing (this, event_ptid, false);
4473 set_running (this, event_ptid, false);
b926417a 4474 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4475 }
4476
4477 /* "Notice" the new inferiors before anything related to
4478 registers/memory. */
5b6d1e4f 4479 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4480 {
6efcd9a8
PA
4481 inf->needs_setup = 1;
4482
4483 if (non_stop)
4484 {
08036331 4485 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4486 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4487 from_tty);
4488 }
4489 }
4490
4491 /* If all-stop on top of non-stop, pause all threads. Note this
4492 records the threads' stop pc, so must be done after "noticing"
4493 the inferiors. */
4494 if (!non_stop)
4495 {
4496 stop_all_threads ();
4497
4498 /* If all threads of an inferior were already stopped, we
4499 haven't setup the inferior yet. */
5b6d1e4f 4500 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4501 {
6efcd9a8
PA
4502 if (inf->needs_setup)
4503 {
08036331 4504 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4505 switch_to_thread_no_regs (thread);
4506 setup_inferior (0);
4507 }
4508 }
221e1a37 4509 }
6efcd9a8
PA
4510
4511 /* Now go over all threads that are stopped, and print their current
4512 frame. If all-stop, then if there's a signalled thread, pick
4513 that as current. */
5b6d1e4f 4514 for (thread_info *thread : all_non_exited_threads (this))
6efcd9a8 4515 {
6efcd9a8
PA
4516 if (first == NULL)
4517 first = thread;
4518
4519 if (!non_stop)
00431a78 4520 thread->set_running (false);
6efcd9a8
PA
4521 else if (thread->state != THREAD_STOPPED)
4522 continue;
4523
6efcd9a8
PA
4524 if (selected == NULL
4525 && thread->suspend.waitstatus_pending_p)
4526 selected = thread;
4527
5d5658a1
PA
4528 if (lowest_stopped == NULL
4529 || thread->inf->num < lowest_stopped->inf->num
4530 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4531 lowest_stopped = thread;
4532
4533 if (non_stop)
4534 print_one_stopped_thread (thread);
4535 }
4536
4537 /* In all-stop, we only print the status of one thread, and leave
4538 others with their status pending. */
4539 if (!non_stop)
4540 {
08036331 4541 thread_info *thread = selected;
6efcd9a8
PA
4542 if (thread == NULL)
4543 thread = lowest_stopped;
4544 if (thread == NULL)
4545 thread = first;
4546
4547 print_one_stopped_thread (thread);
4548 }
4549
4550 /* For "info program". */
08036331 4551 thread_info *thread = inferior_thread ();
6efcd9a8 4552 if (thread->state == THREAD_STOPPED)
5b6d1e4f 4553 set_last_target_status (this, inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4554}
4555
048094ac
PA
4556/* Start the remote connection and sync state. */
4557
f6ac5f3d
PA
4558void
4559remote_target::start_remote (int from_tty, int extended_p)
c906108c 4560{
c8d104ad
PA
4561 struct remote_state *rs = get_remote_state ();
4562 struct packet_config *noack_config;
2d717e4f 4563 char *wait_status = NULL;
8621d6a9 4564
048094ac
PA
4565 /* Signal other parts that we're going through the initial setup,
4566 and so things may not be stable yet. E.g., we don't try to
4567 install tracepoints until we've relocated symbols. Also, a
4568 Ctrl-C before we're connected and synced up can't interrupt the
4569 target. Instead, it offers to drop the (potentially wedged)
4570 connection. */
4571 rs->starting_up = 1;
4572
522002f9 4573 QUIT;
c906108c 4574
9a7071a8
JB
4575 if (interrupt_on_connect)
4576 send_interrupt_sequence ();
4577
57e12211 4578 /* Ack any packet which the remote side has already sent. */
048094ac 4579 remote_serial_write ("+", 1);
1e51243a 4580
c8d104ad
PA
4581 /* The first packet we send to the target is the optional "supported
4582 packets" request. If the target can answer this, it will tell us
4583 which later probes to skip. */
4584 remote_query_supported ();
4585
d914c394 4586 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4587 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4588 set_permissions ();
d914c394 4589
57809e5e
JK
4590 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4591 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4592 as a reply to known packet. For packet "vFile:setfs:" it is an
4593 invalid reply and GDB would return error in
4594 remote_hostio_set_filesystem, making remote files access impossible.
4595 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4596 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4597 {
4598 const char v_mustreplyempty[] = "vMustReplyEmpty";
4599
4600 putpkt (v_mustreplyempty);
8d64371b
TT
4601 getpkt (&rs->buf, 0);
4602 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4603 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4604 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4605 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4606 rs->buf.data ());
57809e5e
JK
4607 }
4608
c8d104ad
PA
4609 /* Next, we possibly activate noack mode.
4610
4611 If the QStartNoAckMode packet configuration is set to AUTO,
4612 enable noack mode if the stub reported a wish for it with
4613 qSupported.
4614
4615 If set to TRUE, then enable noack mode even if the stub didn't
4616 report it in qSupported. If the stub doesn't reply OK, the
4617 session ends with an error.
4618
4619 If FALSE, then don't activate noack mode, regardless of what the
4620 stub claimed should be the default with qSupported. */
4621
4622 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4623 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4624 {
4625 putpkt ("QStartNoAckMode");
8d64371b 4626 getpkt (&rs->buf, 0);
c8d104ad
PA
4627 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4628 rs->noack_mode = 1;
4629 }
4630
04bd08de 4631 if (extended_p)
5fe04517
PA
4632 {
4633 /* Tell the remote that we are using the extended protocol. */
4634 putpkt ("!");
8d64371b 4635 getpkt (&rs->buf, 0);
5fe04517
PA
4636 }
4637
9b224c5e
PA
4638 /* Let the target know which signals it is allowed to pass down to
4639 the program. */
4640 update_signals_program_target ();
4641
d962ef82
DJ
4642 /* Next, if the target can specify a description, read it. We do
4643 this before anything involving memory or registers. */
4644 target_find_description ();
4645
6c95b8df
PA
4646 /* Next, now that we know something about the target, update the
4647 address spaces in the program spaces. */
4648 update_address_spaces ();
4649
50c71eaf
PA
4650 /* On OSs where the list of libraries is global to all
4651 processes, we fetch them early. */
f5656ead 4652 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4653 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4654
6efcd9a8 4655 if (target_is_non_stop_p ())
74531fed 4656 {
4082afcc 4657 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4658 error (_("Non-stop mode requested, but remote "
4659 "does not support non-stop"));
74531fed
PA
4660
4661 putpkt ("QNonStop:1");
8d64371b 4662 getpkt (&rs->buf, 0);
74531fed 4663
8d64371b
TT
4664 if (strcmp (rs->buf.data (), "OK") != 0)
4665 error (_("Remote refused setting non-stop mode with: %s"),
4666 rs->buf.data ());
74531fed
PA
4667
4668 /* Find about threads and processes the stub is already
4669 controlling. We default to adding them in the running state.
4670 The '?' query below will then tell us about which threads are
4671 stopped. */
f6ac5f3d 4672 this->update_thread_list ();
74531fed 4673 }
4082afcc 4674 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4675 {
4676 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4677 Request it explicitly. */
74531fed 4678 putpkt ("QNonStop:0");
8d64371b 4679 getpkt (&rs->buf, 0);
74531fed 4680
8d64371b
TT
4681 if (strcmp (rs->buf.data (), "OK") != 0)
4682 error (_("Remote refused setting all-stop mode with: %s"),
4683 rs->buf.data ());
74531fed
PA
4684 }
4685
a0743c90
YQ
4686 /* Upload TSVs regardless of whether the target is running or not. The
4687 remote stub, such as GDBserver, may have some predefined or builtin
4688 TSVs, even if the target is not running. */
f6ac5f3d 4689 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4690 {
4691 struct uploaded_tsv *uploaded_tsvs = NULL;
4692
f6ac5f3d 4693 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4694 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4695 }
4696
2d717e4f
DJ
4697 /* Check whether the target is running now. */
4698 putpkt ("?");
8d64371b 4699 getpkt (&rs->buf, 0);
2d717e4f 4700
6efcd9a8 4701 if (!target_is_non_stop_p ())
2d717e4f 4702 {
74531fed 4703 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4704 {
04bd08de 4705 if (!extended_p)
74531fed 4706 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4707
4708 /* We're connected, but not running. Drop out before we
4709 call start_remote. */
e278ad5b 4710 rs->starting_up = 0;
c35b1492 4711 return;
2d717e4f
DJ
4712 }
4713 else
74531fed 4714 {
74531fed 4715 /* Save the reply for later. */
8d64371b
TT
4716 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4717 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4718 }
4719
b7ea362b 4720 /* Fetch thread list. */
e8032dde 4721 target_update_thread_list ();
b7ea362b 4722
74531fed
PA
4723 /* Let the stub know that we want it to return the thread. */
4724 set_continue_thread (minus_one_ptid);
4725
5b6d1e4f 4726 if (thread_count (this) == 0)
b7ea362b
PA
4727 {
4728 /* Target has no concept of threads at all. GDB treats
4729 non-threaded target as single-threaded; add a main
4730 thread. */
4731 add_current_inferior_and_thread (wait_status);
4732 }
4733 else
4734 {
4735 /* We have thread information; select the thread the target
4736 says should be current. If we're reconnecting to a
4737 multi-threaded program, this will ideally be the thread
4738 that last reported an event before GDB disconnected. */
75c6c844
PA
4739 ptid_t curr_thread = get_current_thread (wait_status);
4740 if (curr_thread == null_ptid)
b7ea362b
PA
4741 {
4742 /* Odd... The target was able to list threads, but not
4743 tell us which thread was current (no "thread"
4744 register in T stop reply?). Just pick the first
4745 thread in the thread list then. */
c9f35b34
KB
4746
4747 if (remote_debug)
4748 fprintf_unfiltered (gdb_stdlog,
4749 "warning: couldn't determine remote "
4750 "current thread; picking first in list.\n");
4751
5b6d1e4f
PA
4752 for (thread_info *tp : all_non_exited_threads (this,
4753 minus_one_ptid))
75c6c844
PA
4754 {
4755 switch_to_thread (tp);
4756 break;
4757 }
b7ea362b 4758 }
75c6c844 4759 else
5b6d1e4f 4760 switch_to_thread (find_thread_ptid (this, curr_thread));
b7ea362b 4761 }
74531fed 4762
6e586cc5
YQ
4763 /* init_wait_for_inferior should be called before get_offsets in order
4764 to manage `inserted' flag in bp loc in a correct state.
4765 breakpoint_init_inferior, called from init_wait_for_inferior, set
4766 `inserted' flag to 0, while before breakpoint_re_set, called from
4767 start_remote, set `inserted' flag to 1. In the initialization of
4768 inferior, breakpoint_init_inferior should be called first, and then
4769 breakpoint_re_set can be called. If this order is broken, state of
4770 `inserted' flag is wrong, and cause some problems on breakpoint
4771 manipulation. */
4772 init_wait_for_inferior ();
4773
74531fed
PA
4774 get_offsets (); /* Get text, data & bss offsets. */
4775
d962ef82
DJ
4776 /* If we could not find a description using qXfer, and we know
4777 how to do it some other way, try again. This is not
4778 supported for non-stop; it could be, but it is tricky if
4779 there are no stopped threads when we connect. */
f6ac5f3d 4780 if (remote_read_description_p (this)
f5656ead 4781 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4782 {
4783 target_clear_description ();
4784 target_find_description ();
4785 }
4786
74531fed
PA
4787 /* Use the previously fetched status. */
4788 gdb_assert (wait_status != NULL);
8d64371b 4789 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4790 rs->cached_wait_status = 1;
4791
f6ac5f3d 4792 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4793 }
4794 else
4795 {
68c97600
PA
4796 /* Clear WFI global state. Do this before finding about new
4797 threads and inferiors, and setting the current inferior.
4798 Otherwise we would clear the proceed status of the current
4799 inferior when we want its stop_soon state to be preserved
4800 (see notice_new_inferior). */
4801 init_wait_for_inferior ();
4802
74531fed
PA
4803 /* In non-stop, we will either get an "OK", meaning that there
4804 are no stopped threads at this time; or, a regular stop
4805 reply. In the latter case, there may be more than one thread
4806 stopped --- we pull them all out using the vStopped
4807 mechanism. */
8d64371b 4808 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4809 {
722247f1 4810 struct notif_client *notif = &notif_client_stop;
2d717e4f 4811
722247f1
YQ
4812 /* remote_notif_get_pending_replies acks this one, and gets
4813 the rest out. */
f48ff2a7 4814 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4815 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4816 remote_notif_get_pending_events (notif);
74531fed 4817 }
2d717e4f 4818
5b6d1e4f 4819 if (thread_count (this) == 0)
74531fed 4820 {
04bd08de 4821 if (!extended_p)
74531fed 4822 error (_("The target is not running (try extended-remote?)"));
82f73884 4823
c35b1492
PA
4824 /* We're connected, but not running. Drop out before we
4825 call start_remote. */
e278ad5b 4826 rs->starting_up = 0;
c35b1492
PA
4827 return;
4828 }
74531fed 4829
74531fed
PA
4830 /* In non-stop mode, any cached wait status will be stored in
4831 the stop reply queue. */
4832 gdb_assert (wait_status == NULL);
f0223081 4833
2455069d 4834 /* Report all signals during attach/startup. */
adc6a863 4835 pass_signals ({});
221e1a37
PA
4836
4837 /* If there are already stopped threads, mark them stopped and
4838 report their stops before giving the prompt to the user. */
6efcd9a8 4839 process_initial_stop_replies (from_tty);
221e1a37
PA
4840
4841 if (target_can_async_p ())
4842 target_async (1);
74531fed 4843 }
c8d104ad 4844
c8d104ad 4845 /* If we connected to a live target, do some additional setup. */
55f6301a 4846 if (target_has_execution ())
c8d104ad 4847 {
f4ccffad 4848 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4849 remote_check_symbols ();
c8d104ad 4850 }
50c71eaf 4851
d5551862
SS
4852 /* Possibly the target has been engaged in a trace run started
4853 previously; find out where things are at. */
f6ac5f3d 4854 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4855 {
00bf0b85 4856 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4857
00bf0b85
SS
4858 if (current_trace_status ()->running)
4859 printf_filtered (_("Trace is already running on the target.\n"));
4860
f6ac5f3d 4861 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4862
4863 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4864 }
4865
c0272db5
TW
4866 /* Possibly the target has been engaged in a btrace record started
4867 previously; find out where things are at. */
4868 remote_btrace_maybe_reopen ();
4869
1e51243a
PA
4870 /* The thread and inferior lists are now synchronized with the
4871 target, our symbols have been relocated, and we're merged the
4872 target's tracepoints with ours. We're done with basic start
4873 up. */
4874 rs->starting_up = 0;
4875
a25a5a45
PA
4876 /* Maybe breakpoints are global and need to be inserted now. */
4877 if (breakpoints_should_be_inserted_now ())
50c71eaf 4878 insert_breakpoints ();
c906108c
SS
4879}
4880
121b3efd
PA
4881const char *
4882remote_target::connection_string ()
4883{
4884 remote_state *rs = get_remote_state ();
4885
4886 if (rs->remote_desc->name != NULL)
4887 return rs->remote_desc->name;
4888 else
4889 return NULL;
4890}
4891
c906108c
SS
4892/* Open a connection to a remote debugger.
4893 NAME is the filename used for communication. */
4894
f6ac5f3d
PA
4895void
4896remote_target::open (const char *name, int from_tty)
c906108c 4897{
f6ac5f3d 4898 open_1 (name, from_tty, 0);
43ff13b4
JM
4899}
4900
c906108c
SS
4901/* Open a connection to a remote debugger using the extended
4902 remote gdb protocol. NAME is the filename used for communication. */
4903
f6ac5f3d
PA
4904void
4905extended_remote_target::open (const char *name, int from_tty)
c906108c 4906{
f6ac5f3d 4907 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4908}
4909
ca4f7f8b
PA
4910/* Reset all packets back to "unknown support". Called when opening a
4911 new connection to a remote target. */
c906108c 4912
d471ea57 4913static void
ca4f7f8b 4914reset_all_packet_configs_support (void)
d471ea57
AC
4915{
4916 int i;
a744cf53 4917
444abaca 4918 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4919 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4920}
4921
ca4f7f8b
PA
4922/* Initialize all packet configs. */
4923
4924static void
4925init_all_packet_configs (void)
4926{
4927 int i;
4928
4929 for (i = 0; i < PACKET_MAX; i++)
4930 {
4931 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4932 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4933 }
4934}
4935
23860348 4936/* Symbol look-up. */
dc8acb97 4937
6b8edb51
PA
4938void
4939remote_target::remote_check_symbols ()
dc8acb97 4940{
8d64371b 4941 char *tmp;
dc8acb97
MS
4942 int end;
4943
63154eca
PA
4944 /* The remote side has no concept of inferiors that aren't running
4945 yet, it only knows about running processes. If we're connected
4946 but our current inferior is not running, we should not invite the
4947 remote target to request symbol lookups related to its
4948 (unrelated) current process. */
55f6301a 4949 if (!target_has_execution ())
63154eca
PA
4950 return;
4951
4082afcc 4952 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4953 return;
4954
63154eca
PA
4955 /* Make sure the remote is pointing at the right process. Note
4956 there's no way to select "no process". */
3c9c4b83
PA
4957 set_general_process ();
4958
6d820c5c
DJ
4959 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4960 because we need both at the same time. */
66644cd3 4961 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4962 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4963
23860348 4964 /* Invite target to request symbol lookups. */
dc8acb97
MS
4965
4966 putpkt ("qSymbol::");
8d64371b 4967 getpkt (&reply, 0);
28170b88 4968 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4969
8d64371b 4970 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4971 {
77e371c0
TT
4972 struct bound_minimal_symbol sym;
4973
dc8acb97 4974 tmp = &reply[8];
66644cd3
AB
4975 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4976 strlen (tmp) / 2);
dc8acb97 4977 msg[end] = '\0';
66644cd3 4978 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4979 if (sym.minsym == NULL)
66644cd3
AB
4980 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4981 &reply[8]);
dc8acb97 4982 else
2bbe3cc1 4983 {
f5656ead 4984 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4985 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4986
4987 /* If this is a function address, return the start of code
4988 instead of any data function descriptor. */
f5656ead 4989 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4990 sym_addr,
8b88a78e 4991 current_top_target ());
2bbe3cc1 4992
66644cd3 4993 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4994 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4995 }
66644cd3
AB
4996
4997 putpkt (msg.data ());
8d64371b 4998 getpkt (&reply, 0);
dc8acb97
MS
4999 }
5000}
5001
9db8d71f 5002static struct serial *
baa336ce 5003remote_serial_open (const char *name)
9db8d71f
DJ
5004{
5005 static int udp_warning = 0;
5006
5007 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
5008 of in ser-tcp.c, because it is the remote protocol assuming that the
5009 serial connection is reliable and not the serial connection promising
5010 to be. */
61012eef 5011 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 5012 {
3e43a32a
MS
5013 warning (_("The remote protocol may be unreliable over UDP.\n"
5014 "Some events may be lost, rendering further debugging "
5015 "impossible."));
9db8d71f
DJ
5016 udp_warning = 1;
5017 }
5018
5019 return serial_open (name);
5020}
5021
d914c394
SS
5022/* Inform the target of our permission settings. The permission flags
5023 work without this, but if the target knows the settings, it can do
5024 a couple things. First, it can add its own check, to catch cases
5025 that somehow manage to get by the permissions checks in target
5026 methods. Second, if the target is wired to disallow particular
5027 settings (for instance, a system in the field that is not set up to
5028 be able to stop at a breakpoint), it can object to any unavailable
5029 permissions. */
5030
5031void
f6ac5f3d 5032remote_target::set_permissions ()
d914c394
SS
5033{
5034 struct remote_state *rs = get_remote_state ();
5035
8d64371b 5036 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
5037 "WriteReg:%x;WriteMem:%x;"
5038 "InsertBreak:%x;InsertTrace:%x;"
5039 "InsertFastTrace:%x;Stop:%x",
5040 may_write_registers, may_write_memory,
5041 may_insert_breakpoints, may_insert_tracepoints,
5042 may_insert_fast_tracepoints, may_stop);
d914c394 5043 putpkt (rs->buf);
8d64371b 5044 getpkt (&rs->buf, 0);
d914c394
SS
5045
5046 /* If the target didn't like the packet, warn the user. Do not try
5047 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5048 if (strcmp (rs->buf.data (), "OK") != 0)
5049 warning (_("Remote refused setting permissions with: %s"),
5050 rs->buf.data ());
d914c394
SS
5051}
5052
be2a5f71
DJ
5053/* This type describes each known response to the qSupported
5054 packet. */
5055struct protocol_feature
5056{
5057 /* The name of this protocol feature. */
5058 const char *name;
5059
5060 /* The default for this protocol feature. */
5061 enum packet_support default_support;
5062
5063 /* The function to call when this feature is reported, or after
5064 qSupported processing if the feature is not supported.
5065 The first argument points to this structure. The second
5066 argument indicates whether the packet requested support be
5067 enabled, disabled, or probed (or the default, if this function
5068 is being called at the end of processing and this feature was
5069 not reported). The third argument may be NULL; if not NULL, it
5070 is a NUL-terminated string taken from the packet following
5071 this feature's name and an equals sign. */
6b8edb51
PA
5072 void (*func) (remote_target *remote, const struct protocol_feature *,
5073 enum packet_support, const char *);
be2a5f71
DJ
5074
5075 /* The corresponding packet for this feature. Only used if
5076 FUNC is remote_supported_packet. */
5077 int packet;
5078};
5079
be2a5f71 5080static void
6b8edb51
PA
5081remote_supported_packet (remote_target *remote,
5082 const struct protocol_feature *feature,
be2a5f71
DJ
5083 enum packet_support support,
5084 const char *argument)
5085{
5086 if (argument)
5087 {
5088 warning (_("Remote qSupported response supplied an unexpected value for"
5089 " \"%s\"."), feature->name);
5090 return;
5091 }
5092
4082afcc 5093 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5094}
be2a5f71 5095
6b8edb51
PA
5096void
5097remote_target::remote_packet_size (const protocol_feature *feature,
5098 enum packet_support support, const char *value)
be2a5f71
DJ
5099{
5100 struct remote_state *rs = get_remote_state ();
5101
5102 int packet_size;
5103 char *value_end;
5104
5105 if (support != PACKET_ENABLE)
5106 return;
5107
5108 if (value == NULL || *value == '\0')
5109 {
5110 warning (_("Remote target reported \"%s\" without a size."),
5111 feature->name);
5112 return;
5113 }
5114
5115 errno = 0;
5116 packet_size = strtol (value, &value_end, 16);
5117 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5118 {
5119 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5120 feature->name, value);
5121 return;
5122 }
5123
be2a5f71
DJ
5124 /* Record the new maximum packet size. */
5125 rs->explicit_packet_size = packet_size;
5126}
5127
cb8c24b6 5128static void
6b8edb51
PA
5129remote_packet_size (remote_target *remote, const protocol_feature *feature,
5130 enum packet_support support, const char *value)
5131{
5132 remote->remote_packet_size (feature, support, value);
5133}
5134
dc473cfb 5135static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5136 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5137 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5138 PACKET_qXfer_auxv },
c78fa86a
GB
5139 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5140 PACKET_qXfer_exec_file },
23181151
DJ
5141 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5142 PACKET_qXfer_features },
cfa9d6d9
DJ
5143 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5144 PACKET_qXfer_libraries },
2268b414
JK
5145 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5146 PACKET_qXfer_libraries_svr4 },
ced63ec0 5147 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5148 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5149 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5150 PACKET_qXfer_memory_map },
07e059b5
VP
5151 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5152 PACKET_qXfer_osdata },
dc146f7c
VP
5153 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5154 PACKET_qXfer_threads },
b3b9301e
PA
5155 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5156 PACKET_qXfer_traceframe_info },
89be2091
DJ
5157 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5158 PACKET_QPassSignals },
82075af2
JS
5159 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5160 PACKET_QCatchSyscalls },
9b224c5e
PA
5161 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5162 PACKET_QProgramSignals },
bc3b087d
SDJ
5163 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5164 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5165 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5166 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5167 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5168 PACKET_QEnvironmentHexEncoded },
5169 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5170 PACKET_QEnvironmentReset },
5171 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5172 PACKET_QEnvironmentUnset },
a6f3e723
SL
5173 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5174 PACKET_QStartNoAckMode },
4082afcc
PA
5175 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5176 PACKET_multiprocess_feature },
5177 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5178 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5179 PACKET_qXfer_siginfo_read },
5180 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5181 PACKET_qXfer_siginfo_write },
4082afcc 5182 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5183 PACKET_ConditionalTracepoints },
4082afcc 5184 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5185 PACKET_ConditionalBreakpoints },
4082afcc 5186 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5187 PACKET_BreakpointCommands },
4082afcc 5188 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5189 PACKET_FastTracepoints },
4082afcc 5190 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5191 PACKET_StaticTracepoints },
4082afcc 5192 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5193 PACKET_InstallInTrace},
4082afcc
PA
5194 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5195 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5196 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5197 PACKET_bc },
5198 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5199 PACKET_bs },
409873ef
SS
5200 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5201 PACKET_TracepointSource },
d914c394
SS
5202 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5203 PACKET_QAllow },
4082afcc
PA
5204 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5205 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5206 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5207 PACKET_qXfer_fdpic },
169081d0
TG
5208 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5209 PACKET_qXfer_uib },
03583c20
UW
5210 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5211 PACKET_QDisableRandomization },
d1feda86 5212 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5213 { "QTBuffer:size", PACKET_DISABLE,
5214 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5215 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5216 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5217 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5218 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5219 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5220 PACKET_qXfer_btrace },
5221 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5222 PACKET_qXfer_btrace_conf },
5223 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5224 PACKET_Qbtrace_conf_bts_size },
5225 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5226 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5227 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5228 PACKET_fork_event_feature },
5229 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5230 PACKET_vfork_event_feature },
94585166
DB
5231 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5232 PACKET_exec_event_feature },
b20a6524 5233 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5234 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5235 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5236 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5237 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5238};
5239
c8d5aac9
L
5240static char *remote_support_xml;
5241
5242/* Register string appended to "xmlRegisters=" in qSupported query. */
5243
5244void
6e39997a 5245register_remote_support_xml (const char *xml)
c8d5aac9
L
5246{
5247#if defined(HAVE_LIBEXPAT)
5248 if (remote_support_xml == NULL)
c4f7c687 5249 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5250 else
5251 {
5252 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5253 char *saveptr;
5254 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5255
5256 do
5257 {
5258 if (strcmp (p, xml) == 0)
5259 {
5260 /* already there */
5261 xfree (copy);
5262 return;
5263 }
5264 }
ca3a04f6 5265 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5266 xfree (copy);
5267
94b0dee1
PA
5268 remote_support_xml = reconcat (remote_support_xml,
5269 remote_support_xml, ",", xml,
5270 (char *) NULL);
c8d5aac9
L
5271 }
5272#endif
5273}
5274
69b6ecb0
TT
5275static void
5276remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5277{
69b6ecb0
TT
5278 if (!msg->empty ())
5279 msg->append (";");
5280 msg->append (append);
c8d5aac9
L
5281}
5282
6b8edb51
PA
5283void
5284remote_target::remote_query_supported ()
be2a5f71
DJ
5285{
5286 struct remote_state *rs = get_remote_state ();
5287 char *next;
5288 int i;
5289 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5290
5291 /* The packet support flags are handled differently for this packet
5292 than for most others. We treat an error, a disabled packet, and
5293 an empty response identically: any features which must be reported
5294 to be used will be automatically disabled. An empty buffer
5295 accomplishes this, since that is also the representation for a list
5296 containing no features. */
5297
5298 rs->buf[0] = 0;
4082afcc 5299 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5300 {
69b6ecb0 5301 std::string q;
c8d5aac9 5302
73b8c1fd 5303 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5304 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5305
f7e6eed5 5306 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5307 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5308 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5309 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5310
69b6ecb0 5311 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5312
8020350c
DB
5313 if (packet_set_cmd_state (PACKET_fork_event_feature)
5314 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5315 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5316 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5317 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5318 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5319 if (packet_set_cmd_state (PACKET_exec_event_feature)
5320 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5321 remote_query_supported_append (&q, "exec-events+");
89245bc0 5322
750ce8d1 5323 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5324 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5325
65706a29 5326 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5327 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5328
f2faf941 5329 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5330 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5331
b35d5edb
PA
5332 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5333 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5334 if (remote_support_xml != NULL
5335 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5336 remote_query_supported_append (&q, remote_support_xml);
82f73884 5337
69b6ecb0
TT
5338 q = "qSupported:" + q;
5339 putpkt (q.c_str ());
94b0dee1 5340
8d64371b 5341 getpkt (&rs->buf, 0);
be2a5f71
DJ
5342
5343 /* If an error occured, warn, but do not return - just reset the
5344 buffer to empty and go on to disable features. */
5345 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5346 == PACKET_ERROR)
5347 {
8d64371b 5348 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5349 rs->buf[0] = 0;
5350 }
5351 }
5352
5353 memset (seen, 0, sizeof (seen));
5354
8d64371b 5355 next = rs->buf.data ();
be2a5f71
DJ
5356 while (*next)
5357 {
5358 enum packet_support is_supported;
5359 char *p, *end, *name_end, *value;
5360
5361 /* First separate out this item from the rest of the packet. If
5362 there's another item after this, we overwrite the separator
5363 (terminated strings are much easier to work with). */
5364 p = next;
5365 end = strchr (p, ';');
5366 if (end == NULL)
5367 {
5368 end = p + strlen (p);
5369 next = end;
5370 }
5371 else
5372 {
89be2091
DJ
5373 *end = '\0';
5374 next = end + 1;
5375
be2a5f71
DJ
5376 if (end == p)
5377 {
5378 warning (_("empty item in \"qSupported\" response"));
5379 continue;
5380 }
be2a5f71
DJ
5381 }
5382
5383 name_end = strchr (p, '=');
5384 if (name_end)
5385 {
5386 /* This is a name=value entry. */
5387 is_supported = PACKET_ENABLE;
5388 value = name_end + 1;
5389 *name_end = '\0';
5390 }
5391 else
5392 {
5393 value = NULL;
5394 switch (end[-1])
5395 {
5396 case '+':
5397 is_supported = PACKET_ENABLE;
5398 break;
5399
5400 case '-':
5401 is_supported = PACKET_DISABLE;
5402 break;
5403
5404 case '?':
5405 is_supported = PACKET_SUPPORT_UNKNOWN;
5406 break;
5407
5408 default:
3e43a32a
MS
5409 warning (_("unrecognized item \"%s\" "
5410 "in \"qSupported\" response"), p);
be2a5f71
DJ
5411 continue;
5412 }
5413 end[-1] = '\0';
5414 }
5415
5416 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5417 if (strcmp (remote_protocol_features[i].name, p) == 0)
5418 {
5419 const struct protocol_feature *feature;
5420
5421 seen[i] = 1;
5422 feature = &remote_protocol_features[i];
6b8edb51 5423 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5424 break;
5425 }
5426 }
5427
5428 /* If we increased the packet size, make sure to increase the global
5429 buffer size also. We delay this until after parsing the entire
5430 qSupported packet, because this is the same buffer we were
5431 parsing. */
8d64371b
TT
5432 if (rs->buf.size () < rs->explicit_packet_size)
5433 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5434
5435 /* Handle the defaults for unmentioned features. */
5436 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5437 if (!seen[i])
5438 {
5439 const struct protocol_feature *feature;
5440
5441 feature = &remote_protocol_features[i];
6b8edb51 5442 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5443 }
5444}
5445
048094ac
PA
5446/* Serial QUIT handler for the remote serial descriptor.
5447
5448 Defers handling a Ctrl-C until we're done with the current
5449 command/response packet sequence, unless:
5450
5451 - We're setting up the connection. Don't send a remote interrupt
5452 request, as we're not fully synced yet. Quit immediately
5453 instead.
5454
5455 - The target has been resumed in the foreground
223ffa71 5456 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5457 packet, and we're blocked waiting for the stop reply, thus a
5458 Ctrl-C should be immediately sent to the target.
5459
5460 - We get a second Ctrl-C while still within the same serial read or
5461 write. In that case the serial is seemingly wedged --- offer to
5462 quit/disconnect.
5463
5464 - We see a second Ctrl-C without target response, after having
5465 previously interrupted the target. In that case the target/stub
5466 is probably wedged --- offer to quit/disconnect.
5467*/
5468
6b8edb51
PA
5469void
5470remote_target::remote_serial_quit_handler ()
048094ac
PA
5471{
5472 struct remote_state *rs = get_remote_state ();
5473
5474 if (check_quit_flag ())
5475 {
5476 /* If we're starting up, we're not fully synced yet. Quit
5477 immediately. */
5478 if (rs->starting_up)
5479 quit ();
5480 else if (rs->got_ctrlc_during_io)
5481 {
5482 if (query (_("The target is not responding to GDB commands.\n"
5483 "Stop debugging it? ")))
5b6d1e4f 5484 remote_unpush_and_throw (this);
048094ac
PA
5485 }
5486 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5487 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5488 interrupt_query ();
5489 /* All-stop protocol, and blocked waiting for stop reply. Send
5490 an interrupt request. */
223ffa71 5491 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5492 target_interrupt ();
048094ac
PA
5493 else
5494 rs->got_ctrlc_during_io = 1;
5495 }
5496}
5497
6b8edb51
PA
5498/* The remote_target that is current while the quit handler is
5499 overridden with remote_serial_quit_handler. */
5500static remote_target *curr_quit_handler_target;
5501
5502static void
5503remote_serial_quit_handler ()
5504{
5505 curr_quit_handler_target->remote_serial_quit_handler ();
5506}
5507
5b6d1e4f
PA
5508/* Remove the remote target from the target stack of each inferior
5509 that is using it. Upper targets depend on it so remove them
5510 first. */
78a095c3
JK
5511
5512static void
5b6d1e4f 5513remote_unpush_target (remote_target *target)
78a095c3 5514{
5b6d1e4f
PA
5515 /* We have to unpush the target from all inferiors, even those that
5516 aren't running. */
5517 scoped_restore_current_inferior restore_current_inferior;
5518
5519 for (inferior *inf : all_inferiors (target))
5520 {
5521 switch_to_inferior_no_thread (inf);
5522 pop_all_targets_at_and_above (process_stratum);
5523 generic_mourn_inferior ();
5524 }
78a095c3 5525}
be2a5f71 5526
048094ac 5527static void
5b6d1e4f 5528remote_unpush_and_throw (remote_target *target)
048094ac 5529{
5b6d1e4f 5530 remote_unpush_target (target);
048094ac
PA
5531 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5532}
5533
f6ac5f3d
PA
5534void
5535remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5536{
6b8edb51 5537 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5538
c906108c 5539 if (name == 0)
8a3fe4f8 5540 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5541 "serial device is attached to the remote system\n"
8a3fe4f8 5542 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5543
2d717e4f 5544 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5545 Ask this question first, before target_preopen has a chance to kill
5546 anything. */
55f6301a 5547 if (curr_remote != NULL && !target_has_execution ())
2d717e4f 5548 {
78a095c3
JK
5549 if (from_tty
5550 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5551 error (_("Still connected."));
5552 }
5553
78a095c3 5554 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5555 target_preopen (from_tty);
5556
ad9a8f3f 5557 remote_fileio_reset ();
1dd41f16
NS
5558 reopen_exec_file ();
5559 reread_symbols ();
5560
6b8edb51
PA
5561 remote_target *remote
5562 = (extended_p ? new extended_remote_target () : new remote_target ());
5563 target_ops_up target_holder (remote);
5564
5565 remote_state *rs = remote->get_remote_state ();
5566
5567 /* See FIXME above. */
5568 if (!target_async_permitted)
5569 rs->wait_forever_enabled_p = 1;
5570
5d93a237
TT
5571 rs->remote_desc = remote_serial_open (name);
5572 if (!rs->remote_desc)
c906108c
SS
5573 perror_with_name (name);
5574
5575 if (baud_rate != -1)
5576 {
5d93a237 5577 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5578 {
9b74d5d3
KB
5579 /* The requested speed could not be set. Error out to
5580 top level after closing remote_desc. Take care to
5581 set remote_desc to NULL to avoid closing remote_desc
5582 more than once. */
5d93a237
TT
5583 serial_close (rs->remote_desc);
5584 rs->remote_desc = NULL;
c906108c
SS
5585 perror_with_name (name);
5586 }
5587 }
5588
236af5e3 5589 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5590 serial_raw (rs->remote_desc);
c906108c
SS
5591
5592 /* If there is something sitting in the buffer we might take it as a
5593 response to a command, which would be bad. */
5d93a237 5594 serial_flush_input (rs->remote_desc);
c906108c
SS
5595
5596 if (from_tty)
5597 {
5598 puts_filtered ("Remote debugging using ");
5599 puts_filtered (name);
5600 puts_filtered ("\n");
5601 }
d9f719f1 5602
6b8edb51 5603 /* Switch to using the remote target now. */
dea57a62 5604 push_target (std::move (target_holder));
c906108c 5605
74531fed 5606 /* Register extra event sources in the event loop. */
6b8edb51 5607 rs->remote_async_inferior_event_token
96118d11 5608 = create_async_event_handler (remote_async_inferior_event_handler, remote);
6b8edb51 5609 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5610
be2a5f71
DJ
5611 /* Reset the target state; these things will be queried either by
5612 remote_query_supported or as they are needed. */
ca4f7f8b 5613 reset_all_packet_configs_support ();
74531fed 5614 rs->cached_wait_status = 0;
be2a5f71 5615 rs->explicit_packet_size = 0;
a6f3e723 5616 rs->noack_mode = 0;
82f73884 5617 rs->extended = extended_p;
e24a49d8 5618 rs->waiting_for_stop_reply = 0;
3a29589a 5619 rs->ctrlc_pending_p = 0;
048094ac 5620 rs->got_ctrlc_during_io = 0;
802188a7 5621
47f8a51d
TT
5622 rs->general_thread = not_sent_ptid;
5623 rs->continue_thread = not_sent_ptid;
262e1174 5624 rs->remote_traceframe_number = -1;
c906108c 5625
3a00c802
PA
5626 rs->last_resume_exec_dir = EXEC_FORWARD;
5627
9d1f7ab2 5628 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5629 rs->use_threadinfo_query = 1;
5630 rs->use_threadextra_query = 1;
9d1f7ab2 5631
dd194f6b 5632 rs->readahead_cache.invalidate ();
80152258 5633
c6ebd6cf 5634 if (target_async_permitted)
92d1e331 5635 {
92d1e331
DJ
5636 /* FIXME: cagney/1999-09-23: During the initial connection it is
5637 assumed that the target is already ready and able to respond to
0df8b418 5638 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5639 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5640 around this. Eventually a mechanism that allows
92d1e331 5641 wait_for_inferior() to expect/get timeouts will be
23860348 5642 implemented. */
6b8edb51 5643 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5644 }
5645
23860348 5646 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5647 no_shared_libraries (NULL, 0);
f78f6cf1 5648
36918e70 5649 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5650 target (we'd otherwise be in an inconsistent state) and then
5651 propogate the error on up the exception chain. This ensures that
5652 the caller doesn't stumble along blindly assuming that the
5653 function succeeded. The CLI doesn't have this problem but other
5654 UI's, such as MI do.
36918e70
AC
5655
5656 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5657 this function should return an error indication letting the
ce2826aa 5658 caller restore the previous state. Unfortunately the command
36918e70
AC
5659 ``target remote'' is directly wired to this function making that
5660 impossible. On a positive note, the CLI side of this problem has
5661 been fixed - the function set_cmd_context() makes it possible for
5662 all the ``target ....'' commands to share a common callback
5663 function. See cli-dump.c. */
109c3e39 5664 {
2d717e4f 5665
a70b8144 5666 try
04bd08de 5667 {
6b8edb51 5668 remote->start_remote (from_tty, extended_p);
04bd08de 5669 }
230d2906 5670 catch (const gdb_exception &ex)
109c3e39 5671 {
c8d104ad
PA
5672 /* Pop the partially set up target - unless something else did
5673 already before throwing the exception. */
6b8edb51 5674 if (ex.error != TARGET_CLOSE_ERROR)
5b6d1e4f 5675 remote_unpush_target (remote);
eedc3f4f 5676 throw;
109c3e39
AC
5677 }
5678 }
c906108c 5679
6b8edb51 5680 remote_btrace_reset (rs);
f4abbc16 5681
c6ebd6cf 5682 if (target_async_permitted)
6b8edb51 5683 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5684}
5685
de0d863e
DB
5686/* Detach the specified process. */
5687
6b8edb51
PA
5688void
5689remote_target::remote_detach_pid (int pid)
de0d863e
DB
5690{
5691 struct remote_state *rs = get_remote_state ();
5692
4c7333b3
PA
5693 /* This should not be necessary, but the handling for D;PID in
5694 GDBserver versions prior to 8.2 incorrectly assumes that the
5695 selected process points to the same process we're detaching,
5696 leading to misbehavior (and possibly GDBserver crashing) when it
5697 does not. Since it's easy and cheap, work around it by forcing
5698 GDBserver to select GDB's current process. */
5699 set_general_process ();
5700
de0d863e 5701 if (remote_multi_process_p (rs))
8d64371b 5702 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5703 else
8d64371b 5704 strcpy (rs->buf.data (), "D");
de0d863e
DB
5705
5706 putpkt (rs->buf);
8d64371b 5707 getpkt (&rs->buf, 0);
de0d863e
DB
5708
5709 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5710 ;
5711 else if (rs->buf[0] == '\0')
5712 error (_("Remote doesn't know how to detach"));
5713 else
5714 error (_("Can't detach process."));
5715}
5716
5717/* This detaches a program to which we previously attached, using
5718 inferior_ptid to identify the process. After this is done, GDB
5719 can be used to debug some other program. We better not have left
5720 any breakpoints in the target program or it'll die when it hits
5721 one. */
c906108c 5722
6b8edb51 5723void
00431a78 5724remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5725{
e99b03dc 5726 int pid = inferior_ptid.pid ();
d01949b6 5727 struct remote_state *rs = get_remote_state ();
de0d863e 5728 int is_fork_parent;
c906108c 5729
55f6301a 5730 if (!target_has_execution ())
2d717e4f
DJ
5731 error (_("No process to detach from."));
5732
0f48b757 5733 target_announce_detach (from_tty);
7cee1e54 5734
c906108c 5735 /* Tell the remote target to detach. */
de0d863e 5736 remote_detach_pid (pid);
82f73884 5737
8020350c 5738 /* Exit only if this is the only active inferior. */
5b6d1e4f 5739 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
7cee1e54 5740 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5741
5b6d1e4f 5742 thread_info *tp = find_thread_ptid (this, inferior_ptid);
00431a78 5743
de0d863e
DB
5744 /* Check to see if we are detaching a fork parent. Note that if we
5745 are detaching a fork child, tp == NULL. */
5746 is_fork_parent = (tp != NULL
5747 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5748
5749 /* If doing detach-on-fork, we don't mourn, because that will delete
5750 breakpoints that should be available for the followed inferior. */
5751 if (!is_fork_parent)
f67c0c91 5752 {
249b5733
PA
5753 /* Save the pid as a string before mourning, since that will
5754 unpush the remote target, and we need the string after. */
f2907e49 5755 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5756
5757 target_mourn_inferior (inferior_ptid);
5758 if (print_inferior_events)
5759 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5760 inf->num, infpid.c_str ());
5761 }
de0d863e
DB
5762 else
5763 {
0ac55310 5764 switch_to_no_thread ();
00431a78 5765 detach_inferior (current_inferior ());
de0d863e 5766 }
2d717e4f
DJ
5767}
5768
f6ac5f3d
PA
5769void
5770remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5771{
00431a78 5772 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5773}
5774
f6ac5f3d
PA
5775void
5776extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5777{
00431a78 5778 remote_detach_1 (inf, from_tty);
de0d863e
DB
5779}
5780
5781/* Target follow-fork function for remote targets. On entry, and
5782 at return, the current inferior is the fork parent.
5783
5784 Note that although this is currently only used for extended-remote,
5785 it is named remote_follow_fork in anticipation of using it for the
5786 remote target as well. */
5787
5ab2fbf1
SM
5788bool
5789remote_target::follow_fork (bool follow_child, bool detach_fork)
de0d863e
DB
5790{
5791 struct remote_state *rs = get_remote_state ();
c269dbdb 5792 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5793
c269dbdb
DB
5794 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5795 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5796 {
5797 /* When following the parent and detaching the child, we detach
5798 the child here. For the case of following the child and
5799 detaching the parent, the detach is done in the target-
5800 independent follow fork code in infrun.c. We can't use
5801 target_detach when detaching an unfollowed child because
5802 the client side doesn't know anything about the child. */
5803 if (detach_fork && !follow_child)
5804 {
5805 /* Detach the fork child. */
5806 ptid_t child_ptid;
5807 pid_t child_pid;
5808
5809 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5810 child_pid = child_ptid.pid ();
de0d863e
DB
5811
5812 remote_detach_pid (child_pid);
de0d863e
DB
5813 }
5814 }
5ab2fbf1
SM
5815
5816 return false;
c906108c
SS
5817}
5818
94585166
DB
5819/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5820 in the program space of the new inferior. On entry and at return the
5821 current inferior is the exec'ing inferior. INF is the new exec'd
5822 inferior, which may be the same as the exec'ing inferior unless
5823 follow-exec-mode is "new". */
5824
f6ac5f3d 5825void
4ca51187 5826remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5827{
5828 /* We know that this is a target file name, so if it has the "target:"
5829 prefix we strip it off before saving it in the program space. */
5830 if (is_target_filename (execd_pathname))
5831 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5832
5833 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5834}
5835
6ad8ae5c
DJ
5836/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5837
f6ac5f3d
PA
5838void
5839remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5840{
43ff13b4 5841 if (args)
2d717e4f 5842 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5843
8020350c 5844 /* Make sure we unpush even the extended remote targets. Calling
5b6d1e4f
PA
5845 target_mourn_inferior won't unpush, and
5846 remote_target::mourn_inferior won't unpush if there is more than
5847 one inferior left. */
5848 remote_unpush_target (this);
2d717e4f 5849
43ff13b4
JM
5850 if (from_tty)
5851 puts_filtered ("Ending remote debugging.\n");
5852}
5853
2d717e4f
DJ
5854/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5855 be chatty about it. */
5856
f6ac5f3d
PA
5857void
5858extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5859{
5860 struct remote_state *rs = get_remote_state ();
be86555c 5861 int pid;
96ef3384 5862 char *wait_status = NULL;
2d717e4f 5863
74164c56 5864 pid = parse_pid_to_attach (args);
2d717e4f 5865
74164c56
JK
5866 /* Remote PID can be freely equal to getpid, do not check it here the same
5867 way as in other targets. */
2d717e4f 5868
4082afcc 5869 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5870 error (_("This target does not support attaching to a process"));
5871
7cee1e54
PA
5872 if (from_tty)
5873 {
d9fa87f4 5874 const char *exec_file = get_exec_file (0);
7cee1e54
PA
5875
5876 if (exec_file)
5877 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5878 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5879 else
5880 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5881 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5882 }
5883
8d64371b 5884 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5885 putpkt (rs->buf);
8d64371b 5886 getpkt (&rs->buf, 0);
2d717e4f 5887
4082afcc
PA
5888 switch (packet_ok (rs->buf,
5889 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5890 {
4082afcc 5891 case PACKET_OK:
6efcd9a8 5892 if (!target_is_non_stop_p ())
74531fed
PA
5893 {
5894 /* Save the reply for later. */
8d64371b
TT
5895 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5896 strcpy (wait_status, rs->buf.data ());
74531fed 5897 }
8d64371b 5898 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5899 error (_("Attaching to %s failed with: %s"),
a068643d 5900 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5901 rs->buf.data ());
4082afcc
PA
5902 break;
5903 case PACKET_UNKNOWN:
5904 error (_("This target does not support attaching to a process"));
5905 default:
50fa3001
SDJ
5906 error (_("Attaching to %s failed"),
5907 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5908 }
2d717e4f 5909
0ac55310 5910 switch_to_inferior_no_thread (remote_add_inferior (false, pid, 1, 0));
bad34192 5911
f2907e49 5912 inferior_ptid = ptid_t (pid);
79d7f229 5913
6efcd9a8 5914 if (target_is_non_stop_p ())
bad34192 5915 {
bad34192 5916 /* Get list of threads. */
f6ac5f3d 5917 update_thread_list ();
82f73884 5918
0ac55310
PA
5919 thread_info *thread = first_thread_of_inferior (current_inferior ());
5920 if (thread != nullptr)
5921 switch_to_thread (thread);
bad34192
PA
5922
5923 /* Invalidate our notion of the remote current thread. */
47f8a51d 5924 record_currthread (rs, minus_one_ptid);
bad34192 5925 }
74531fed 5926 else
bad34192 5927 {
0ac55310
PA
5928 /* Now, if we have thread information, update the main thread's
5929 ptid. */
5930 ptid_t curr_ptid = remote_current_thread (ptid_t (pid));
bad34192
PA
5931
5932 /* Add the main thread to the thread list. */
0ac55310
PA
5933 thread_info *thr = add_thread_silent (this, curr_ptid);
5934
5935 switch_to_thread (thr);
5936
00aecdcf
PA
5937 /* Don't consider the thread stopped until we've processed the
5938 saved stop reply. */
5b6d1e4f 5939 set_executing (this, thr->ptid, true);
bad34192 5940 }
c0a2216e 5941
96ef3384
UW
5942 /* Next, if the target can specify a description, read it. We do
5943 this before anything involving memory or registers. */
5944 target_find_description ();
5945
6efcd9a8 5946 if (!target_is_non_stop_p ())
74531fed
PA
5947 {
5948 /* Use the previously fetched status. */
5949 gdb_assert (wait_status != NULL);
5950
5951 if (target_can_async_p ())
5952 {
722247f1 5953 struct notif_event *reply
6b8edb51 5954 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5955
722247f1 5956 push_stop_reply ((struct stop_reply *) reply);
74531fed 5957
6a3753b3 5958 target_async (1);
74531fed
PA
5959 }
5960 else
5961 {
5962 gdb_assert (wait_status != NULL);
8d64371b 5963 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5964 rs->cached_wait_status = 1;
5965 }
5966 }
5967 else
5968 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5969}
5970
b9c1d481
AS
5971/* Implementation of the to_post_attach method. */
5972
f6ac5f3d
PA
5973void
5974extended_remote_target::post_attach (int pid)
b9c1d481 5975{
6efcd9a8
PA
5976 /* Get text, data & bss offsets. */
5977 get_offsets ();
5978
b9c1d481
AS
5979 /* In certain cases GDB might not have had the chance to start
5980 symbol lookup up until now. This could happen if the debugged
5981 binary is not using shared libraries, the vsyscall page is not
5982 present (on Linux) and the binary itself hadn't changed since the
5983 debugging process was started. */
5984 if (symfile_objfile != NULL)
5985 remote_check_symbols();
5986}
5987
c906108c 5988\f
506fb367
DJ
5989/* Check for the availability of vCont. This function should also check
5990 the response. */
c906108c 5991
6b8edb51
PA
5992void
5993remote_target::remote_vcont_probe ()
c906108c 5994{
6b8edb51 5995 remote_state *rs = get_remote_state ();
2e9f7625 5996 char *buf;
6d820c5c 5997
8d64371b 5998 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5999 putpkt (rs->buf);
8d64371b
TT
6000 getpkt (&rs->buf, 0);
6001 buf = rs->buf.data ();
c906108c 6002
506fb367 6003 /* Make sure that the features we assume are supported. */
61012eef 6004 if (startswith (buf, "vCont"))
506fb367
DJ
6005 {
6006 char *p = &buf[5];
750ce8d1 6007 int support_c, support_C;
506fb367 6008
750ce8d1
YQ
6009 rs->supports_vCont.s = 0;
6010 rs->supports_vCont.S = 0;
506fb367
DJ
6011 support_c = 0;
6012 support_C = 0;
d458bd84 6013 rs->supports_vCont.t = 0;
c1e36e3e 6014 rs->supports_vCont.r = 0;
506fb367
DJ
6015 while (p && *p == ';')
6016 {
6017 p++;
6018 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6019 rs->supports_vCont.s = 1;
506fb367 6020 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6021 rs->supports_vCont.S = 1;
506fb367
DJ
6022 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
6023 support_c = 1;
6024 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
6025 support_C = 1;
74531fed 6026 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 6027 rs->supports_vCont.t = 1;
c1e36e3e
PA
6028 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
6029 rs->supports_vCont.r = 1;
506fb367
DJ
6030
6031 p = strchr (p, ';');
6032 }
c906108c 6033
750ce8d1
YQ
6034 /* If c, and C are not all supported, we can't use vCont. Clearing
6035 BUF will make packet_ok disable the packet. */
6036 if (!support_c || !support_C)
506fb367
DJ
6037 buf[0] = 0;
6038 }
c906108c 6039
8d64371b 6040 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5b6d1e4f 6041 rs->supports_vCont_probed = true;
506fb367 6042}
c906108c 6043
0d8f58ca
PA
6044/* Helper function for building "vCont" resumptions. Write a
6045 resumption to P. ENDP points to one-passed-the-end of the buffer
6046 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6047 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6048 resumed thread should be single-stepped and/or signalled. If PTID
6049 equals minus_one_ptid, then all threads are resumed; if PTID
6050 represents a process, then all threads of the process are resumed;
6051 the thread to be stepped and/or signalled is given in the global
6052 INFERIOR_PTID. */
6053
6b8edb51
PA
6054char *
6055remote_target::append_resumption (char *p, char *endp,
6056 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6057{
6058 struct remote_state *rs = get_remote_state ();
6059
a493e3e2 6060 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6061 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6062 else if (step
6063 /* GDB is willing to range step. */
6064 && use_range_stepping
6065 /* Target supports range stepping. */
6066 && rs->supports_vCont.r
6067 /* We don't currently support range stepping multiple
6068 threads with a wildcard (though the protocol allows it,
6069 so stubs shouldn't make an active effort to forbid
6070 it). */
0e998d96 6071 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6072 {
6073 struct thread_info *tp;
6074
d7e15655 6075 if (ptid == minus_one_ptid)
c1e36e3e
PA
6076 {
6077 /* If we don't know about the target thread's tid, then
6078 we're resuming magic_null_ptid (see caller). */
5b6d1e4f 6079 tp = find_thread_ptid (this, magic_null_ptid);
c1e36e3e
PA
6080 }
6081 else
5b6d1e4f 6082 tp = find_thread_ptid (this, ptid);
c1e36e3e
PA
6083 gdb_assert (tp != NULL);
6084
6085 if (tp->control.may_range_step)
6086 {
6087 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6088
6089 p += xsnprintf (p, endp - p, ";r%s,%s",
6090 phex_nz (tp->control.step_range_start,
6091 addr_size),
6092 phex_nz (tp->control.step_range_end,
6093 addr_size));
6094 }
6095 else
6096 p += xsnprintf (p, endp - p, ";s");
6097 }
0d8f58ca
PA
6098 else if (step)
6099 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6100 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6101 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6102 else
6103 p += xsnprintf (p, endp - p, ";c");
6104
0e998d96 6105 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6106 {
6107 ptid_t nptid;
6108
6109 /* All (-1) threads of process. */
e99b03dc 6110 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6111
6112 p += xsnprintf (p, endp - p, ":");
6113 p = write_ptid (p, endp, nptid);
6114 }
d7e15655 6115 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6116 {
6117 p += xsnprintf (p, endp - p, ":");
6118 p = write_ptid (p, endp, ptid);
6119 }
6120
6121 return p;
6122}
6123
799a2abe
PA
6124/* Clear the thread's private info on resume. */
6125
6126static void
6127resume_clear_thread_private_info (struct thread_info *thread)
6128{
6129 if (thread->priv != NULL)
6130 {
7aabaf9d
SM
6131 remote_thread_info *priv = get_remote_thread_info (thread);
6132
6133 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6134 priv->watch_data_address = 0;
799a2abe
PA
6135 }
6136}
6137
e5ef252a
PA
6138/* Append a vCont continue-with-signal action for threads that have a
6139 non-zero stop signal. */
6140
6b8edb51
PA
6141char *
6142remote_target::append_pending_thread_resumptions (char *p, char *endp,
6143 ptid_t ptid)
e5ef252a 6144{
5b6d1e4f 6145 for (thread_info *thread : all_non_exited_threads (this, ptid))
08036331 6146 if (inferior_ptid != thread->ptid
70509625 6147 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6148 {
6149 p = append_resumption (p, endp, thread->ptid,
6150 0, thread->suspend.stop_signal);
6151 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6152 resume_clear_thread_private_info (thread);
e5ef252a
PA
6153 }
6154
6155 return p;
6156}
6157
7b68ffbb
PA
6158/* Set the target running, using the packets that use Hc
6159 (c/s/C/S). */
6160
6b8edb51
PA
6161void
6162remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6163 gdb_signal siggnal)
7b68ffbb
PA
6164{
6165 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6166 char *buf;
6167
6168 rs->last_sent_signal = siggnal;
6169 rs->last_sent_step = step;
6170
6171 /* The c/s/C/S resume packets use Hc, so set the continue
6172 thread. */
d7e15655 6173 if (ptid == minus_one_ptid)
7b68ffbb
PA
6174 set_continue_thread (any_thread_ptid);
6175 else
6176 set_continue_thread (ptid);
6177
5b6d1e4f 6178 for (thread_info *thread : all_non_exited_threads (this))
7b68ffbb
PA
6179 resume_clear_thread_private_info (thread);
6180
8d64371b 6181 buf = rs->buf.data ();
6b8edb51 6182 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6183 {
6184 /* We don't pass signals to the target in reverse exec mode. */
6185 if (info_verbose && siggnal != GDB_SIGNAL_0)
6186 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6187 siggnal);
6188
6189 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6190 error (_("Remote reverse-step not supported."));
6191 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6192 error (_("Remote reverse-continue not supported."));
6193
6194 strcpy (buf, step ? "bs" : "bc");
6195 }
6196 else if (siggnal != GDB_SIGNAL_0)
6197 {
6198 buf[0] = step ? 'S' : 'C';
6199 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6200 buf[2] = tohex (((int) siggnal) & 0xf);
6201 buf[3] = '\0';
6202 }
6203 else
6204 strcpy (buf, step ? "s" : "c");
6205
6206 putpkt (buf);
6207}
6208
506fb367
DJ
6209/* Resume the remote inferior by using a "vCont" packet. The thread
6210 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6211 resumed thread should be single-stepped and/or signalled. If PTID
6212 equals minus_one_ptid, then all threads are resumed; the thread to
6213 be stepped and/or signalled is given in the global INFERIOR_PTID.
6214 This function returns non-zero iff it resumes the inferior.
44eaed12 6215
7b68ffbb
PA
6216 This function issues a strict subset of all possible vCont commands
6217 at the moment. */
44eaed12 6218
6b8edb51
PA
6219int
6220remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6221 enum gdb_signal siggnal)
506fb367
DJ
6222{
6223 struct remote_state *rs = get_remote_state ();
82f73884
PA
6224 char *p;
6225 char *endp;
44eaed12 6226
7b68ffbb 6227 /* No reverse execution actions defined for vCont. */
6b8edb51 6228 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6229 return 0;
6230
4082afcc 6231 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6232 remote_vcont_probe ();
44eaed12 6233
4082afcc 6234 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6235 return 0;
44eaed12 6236
8d64371b
TT
6237 p = rs->buf.data ();
6238 endp = p + get_remote_packet_size ();
82f73884 6239
506fb367
DJ
6240 /* If we could generate a wider range of packets, we'd have to worry
6241 about overflowing BUF. Should there be a generic
6242 "multi-part-packet" packet? */
6243
0d8f58ca
PA
6244 p += xsnprintf (p, endp - p, "vCont");
6245
d7e15655 6246 if (ptid == magic_null_ptid)
c906108c 6247 {
79d7f229
PA
6248 /* MAGIC_NULL_PTID means that we don't have any active threads,
6249 so we don't have any TID numbers the inferior will
6250 understand. Make sure to only send forms that do not specify
6251 a TID. */
a9cbf802 6252 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6253 }
d7e15655 6254 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6255 {
0d8f58ca
PA
6256 /* Resume all threads (of all processes, or of a single
6257 process), with preference for INFERIOR_PTID. This assumes
6258 inferior_ptid belongs to the set of all threads we are about
6259 to resume. */
a493e3e2 6260 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6261 {
0d8f58ca
PA
6262 /* Step inferior_ptid, with or without signal. */
6263 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6264 }
0d8f58ca 6265
e5ef252a
PA
6266 /* Also pass down any pending signaled resumption for other
6267 threads not the current. */
6268 p = append_pending_thread_resumptions (p, endp, ptid);
6269
0d8f58ca 6270 /* And continue others without a signal. */
a493e3e2 6271 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6272 }
6273 else
506fb367
DJ
6274 {
6275 /* Scheduler locking; resume only PTID. */
a9cbf802 6276 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6277 }
c906108c 6278
8d64371b 6279 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6280 putpkt (rs->buf);
506fb367 6281
6efcd9a8 6282 if (target_is_non_stop_p ())
74531fed
PA
6283 {
6284 /* In non-stop, the stub replies to vCont with "OK". The stop
6285 reply will be reported asynchronously by means of a `%Stop'
6286 notification. */
8d64371b
TT
6287 getpkt (&rs->buf, 0);
6288 if (strcmp (rs->buf.data (), "OK") != 0)
6289 error (_("Unexpected vCont reply in non-stop mode: %s"),
6290 rs->buf.data ());
74531fed
PA
6291 }
6292
506fb367 6293 return 1;
c906108c 6294}
43ff13b4 6295
506fb367
DJ
6296/* Tell the remote machine to resume. */
6297
f6ac5f3d
PA
6298void
6299remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6300{
d01949b6 6301 struct remote_state *rs = get_remote_state ();
43ff13b4 6302
85ad3aaf
PA
6303 /* When connected in non-stop mode, the core resumes threads
6304 individually. Resuming remote threads directly in target_resume
6305 would thus result in sending one packet per thread. Instead, to
6306 minimize roundtrip latency, here we just store the resume
6307 request; the actual remote resumption will be done in
6308 target_commit_resume / remote_commit_resume, where we'll be able
6309 to do vCont action coalescing. */
f6ac5f3d 6310 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6311 {
7aabaf9d 6312 remote_thread_info *remote_thr;
85ad3aaf 6313
d7e15655 6314 if (minus_one_ptid == ptid || ptid.is_pid ())
5b6d1e4f 6315 remote_thr = get_remote_thread_info (this, inferior_ptid);
85ad3aaf 6316 else
5b6d1e4f 6317 remote_thr = get_remote_thread_info (this, ptid);
7aabaf9d 6318
85ad3aaf
PA
6319 remote_thr->last_resume_step = step;
6320 remote_thr->last_resume_sig = siggnal;
6321 return;
6322 }
6323
722247f1
YQ
6324 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6325 (explained in remote-notif.c:handle_notification) so
6326 remote_notif_process is not called. We need find a place where
6327 it is safe to start a 'vNotif' sequence. It is good to do it
6328 before resuming inferior, because inferior was stopped and no RSP
6329 traffic at that moment. */
6efcd9a8 6330 if (!target_is_non_stop_p ())
5965e028 6331 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6332
f6ac5f3d 6333 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6334
7b68ffbb
PA
6335 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6336 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6337 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6338
2acceee2 6339 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6340 with the event loop. NOTE: this is the one place where all the
6341 execution commands end up. We could alternatively do this in each
23860348 6342 of the execution commands in infcmd.c. */
2acceee2
JM
6343 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6344 into infcmd.c in order to allow inferior function calls to work
23860348 6345 NOT asynchronously. */
362646f5 6346 if (target_can_async_p ())
6a3753b3 6347 target_async (1);
e24a49d8
PA
6348
6349 /* We've just told the target to resume. The remote server will
6350 wait for the inferior to stop, and then send a stop reply. In
6351 the mean time, we can't start another command/query ourselves
74531fed
PA
6352 because the stub wouldn't be ready to process it. This applies
6353 only to the base all-stop protocol, however. In non-stop (which
6354 only supports vCont), the stub replies with an "OK", and is
6355 immediate able to process further serial input. */
6efcd9a8 6356 if (!target_is_non_stop_p ())
74531fed 6357 rs->waiting_for_stop_reply = 1;
43ff13b4 6358}
85ad3aaf 6359
85ad3aaf
PA
6360static int is_pending_fork_parent_thread (struct thread_info *thread);
6361
6362/* Private per-inferior info for target remote processes. */
6363
089354bb 6364struct remote_inferior : public private_inferior
85ad3aaf
PA
6365{
6366 /* Whether we can send a wildcard vCont for this process. */
089354bb 6367 bool may_wildcard_vcont = true;
85ad3aaf
PA
6368};
6369
089354bb
SM
6370/* Get the remote private inferior data associated to INF. */
6371
6372static remote_inferior *
6373get_remote_inferior (inferior *inf)
6374{
6375 if (inf->priv == NULL)
6376 inf->priv.reset (new remote_inferior);
6377
6378 return static_cast<remote_inferior *> (inf->priv.get ());
6379}
6380
f5db4863 6381/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6382 outgoing packet buffer. This is used to send multiple vCont
6383 packets if we have more actions than would fit a single packet. */
6384
f5db4863 6385class vcont_builder
85ad3aaf 6386{
f5db4863 6387public:
6b8edb51
PA
6388 explicit vcont_builder (remote_target *remote)
6389 : m_remote (remote)
f5db4863
PA
6390 {
6391 restart ();
6392 }
6393
6394 void flush ();
6395 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6396
6397private:
6398 void restart ();
6399
6b8edb51
PA
6400 /* The remote target. */
6401 remote_target *m_remote;
6402
85ad3aaf
PA
6403 /* Pointer to the first action. P points here if no action has been
6404 appended yet. */
f5db4863 6405 char *m_first_action;
85ad3aaf
PA
6406
6407 /* Where the next action will be appended. */
f5db4863 6408 char *m_p;
85ad3aaf
PA
6409
6410 /* The end of the buffer. Must never write past this. */
f5db4863 6411 char *m_endp;
85ad3aaf
PA
6412};
6413
6414/* Prepare the outgoing buffer for a new vCont packet. */
6415
f5db4863
PA
6416void
6417vcont_builder::restart ()
85ad3aaf 6418{
6b8edb51 6419 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6420
8d64371b
TT
6421 m_p = rs->buf.data ();
6422 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6423 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6424 m_first_action = m_p;
85ad3aaf
PA
6425}
6426
6427/* If the vCont packet being built has any action, send it to the
6428 remote end. */
6429
f5db4863
PA
6430void
6431vcont_builder::flush ()
85ad3aaf
PA
6432{
6433 struct remote_state *rs;
6434
f5db4863 6435 if (m_p == m_first_action)
85ad3aaf
PA
6436 return;
6437
6b8edb51
PA
6438 rs = m_remote->get_remote_state ();
6439 m_remote->putpkt (rs->buf);
8d64371b
TT
6440 m_remote->getpkt (&rs->buf, 0);
6441 if (strcmp (rs->buf.data (), "OK") != 0)
6442 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6443}
6444
6445/* The largest action is range-stepping, with its two addresses. This
6446 is more than sufficient. If a new, bigger action is created, it'll
6447 quickly trigger a failed assertion in append_resumption (and we'll
6448 just bump this). */
6449#define MAX_ACTION_SIZE 200
6450
6451/* Append a new vCont action in the outgoing packet being built. If
6452 the action doesn't fit the packet along with previous actions, push
6453 what we've got so far to the remote end and start over a new vCont
6454 packet (with the new action). */
6455
f5db4863
PA
6456void
6457vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6458{
6459 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6460
6b8edb51
PA
6461 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6462 ptid, step, siggnal);
85ad3aaf
PA
6463
6464 /* Check whether this new action would fit in the vCont packet along
6465 with previous actions. If not, send what we've got so far and
6466 start a new vCont packet. */
f5db4863
PA
6467 size_t rsize = endp - buf;
6468 if (rsize > m_endp - m_p)
85ad3aaf 6469 {
f5db4863
PA
6470 flush ();
6471 restart ();
85ad3aaf
PA
6472
6473 /* Should now fit. */
f5db4863 6474 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6475 }
6476
f5db4863
PA
6477 memcpy (m_p, buf, rsize);
6478 m_p += rsize;
6479 *m_p = '\0';
85ad3aaf
PA
6480}
6481
6482/* to_commit_resume implementation. */
6483
f6ac5f3d
PA
6484void
6485remote_target::commit_resume ()
85ad3aaf 6486{
85ad3aaf
PA
6487 int any_process_wildcard;
6488 int may_global_wildcard_vcont;
85ad3aaf
PA
6489
6490 /* If connected in all-stop mode, we'd send the remote resume
6491 request directly from remote_resume. Likewise if
6492 reverse-debugging, as there are no defined vCont actions for
6493 reverse execution. */
f6ac5f3d 6494 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6495 return;
6496
6497 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6498 instead of resuming all threads of each process individually.
6499 However, if any thread of a process must remain halted, we can't
6500 send wildcard resumes and must send one action per thread.
6501
6502 Care must be taken to not resume threads/processes the server
6503 side already told us are stopped, but the core doesn't know about
6504 yet, because the events are still in the vStopped notification
6505 queue. For example:
6506
6507 #1 => vCont s:p1.1;c
6508 #2 <= OK
6509 #3 <= %Stopped T05 p1.1
6510 #4 => vStopped
6511 #5 <= T05 p1.2
6512 #6 => vStopped
6513 #7 <= OK
6514 #8 (infrun handles the stop for p1.1 and continues stepping)
6515 #9 => vCont s:p1.1;c
6516
6517 The last vCont above would resume thread p1.2 by mistake, because
6518 the server has no idea that the event for p1.2 had not been
6519 handled yet.
6520
6521 The server side must similarly ignore resume actions for the
6522 thread that has a pending %Stopped notification (and any other
6523 threads with events pending), until GDB acks the notification
6524 with vStopped. Otherwise, e.g., the following case is
6525 mishandled:
6526
6527 #1 => g (or any other packet)
6528 #2 <= [registers]
6529 #3 <= %Stopped T05 p1.2
6530 #4 => vCont s:p1.1;c
6531 #5 <= OK
6532
6533 Above, the server must not resume thread p1.2. GDB can't know
6534 that p1.2 stopped until it acks the %Stopped notification, and
6535 since from GDB's perspective all threads should be running, it
6536 sends a "c" action.
6537
6538 Finally, special care must also be given to handling fork/vfork
6539 events. A (v)fork event actually tells us that two processes
6540 stopped -- the parent and the child. Until we follow the fork,
6541 we must not resume the child. Therefore, if we have a pending
6542 fork follow, we must not send a global wildcard resume action
6543 (vCont;c). We can still send process-wide wildcards though. */
6544
6545 /* Start by assuming a global wildcard (vCont;c) is possible. */
6546 may_global_wildcard_vcont = 1;
6547
6548 /* And assume every process is individually wildcard-able too. */
5b6d1e4f 6549 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6550 {
089354bb
SM
6551 remote_inferior *priv = get_remote_inferior (inf);
6552
6553 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6554 }
6555
6556 /* Check for any pending events (not reported or processed yet) and
6557 disable process and global wildcard resumes appropriately. */
6558 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6559
5b6d1e4f 6560 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf
PA
6561 {
6562 /* If a thread of a process is not meant to be resumed, then we
6563 can't wildcard that process. */
6564 if (!tp->executing)
6565 {
089354bb 6566 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6567
6568 /* And if we can't wildcard a process, we can't wildcard
6569 everything either. */
6570 may_global_wildcard_vcont = 0;
6571 continue;
6572 }
6573
6574 /* If a thread is the parent of an unfollowed fork, then we
6575 can't do a global wildcard, as that would resume the fork
6576 child. */
6577 if (is_pending_fork_parent_thread (tp))
6578 may_global_wildcard_vcont = 0;
6579 }
6580
6581 /* Now let's build the vCont packet(s). Actions must be appended
6582 from narrower to wider scopes (thread -> process -> global). If
6583 we end up with too many actions for a single packet vcont_builder
6584 flushes the current vCont packet to the remote side and starts a
6585 new one. */
6b8edb51 6586 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6587
6588 /* Threads first. */
5b6d1e4f 6589 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6590 {
7aabaf9d 6591 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6592
6593 if (!tp->executing || remote_thr->vcont_resumed)
6594 continue;
6595
6596 gdb_assert (!thread_is_in_step_over_chain (tp));
6597
6598 if (!remote_thr->last_resume_step
6599 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6600 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6601 {
6602 /* We'll send a wildcard resume instead. */
6603 remote_thr->vcont_resumed = 1;
6604 continue;
6605 }
6606
f5db4863 6607 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6608 remote_thr->last_resume_step,
6609 remote_thr->last_resume_sig);
6610 remote_thr->vcont_resumed = 1;
6611 }
6612
6613 /* Now check whether we can send any process-wide wildcard. This is
6614 to avoid sending a global wildcard in the case nothing is
6615 supposed to be resumed. */
6616 any_process_wildcard = 0;
6617
5b6d1e4f 6618 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6619 {
089354bb 6620 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6621 {
6622 any_process_wildcard = 1;
6623 break;
6624 }
6625 }
6626
6627 if (any_process_wildcard)
6628 {
6629 /* If all processes are wildcard-able, then send a single "c"
6630 action, otherwise, send an "all (-1) threads of process"
6631 continue action for each running process, if any. */
6632 if (may_global_wildcard_vcont)
6633 {
f5db4863
PA
6634 vcont_builder.push_action (minus_one_ptid,
6635 false, GDB_SIGNAL_0);
85ad3aaf
PA
6636 }
6637 else
6638 {
5b6d1e4f 6639 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6640 {
089354bb 6641 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6642 {
f2907e49 6643 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6644 false, GDB_SIGNAL_0);
85ad3aaf
PA
6645 }
6646 }
6647 }
6648 }
6649
f5db4863 6650 vcont_builder.flush ();
85ad3aaf
PA
6651}
6652
c906108c 6653\f
43ff13b4 6654
74531fed
PA
6655/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6656 thread, all threads of a remote process, or all threads of all
6657 processes. */
6658
6b8edb51
PA
6659void
6660remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6661{
6662 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6663 char *p = rs->buf.data ();
6664 char *endp = p + get_remote_packet_size ();
74531fed 6665
5b6d1e4f
PA
6666 /* FIXME: This supports_vCont_probed check is a workaround until
6667 packet_support is per-connection. */
6668 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6669 || !rs->supports_vCont_probed)
6b8edb51 6670 remote_vcont_probe ();
74531fed 6671
d458bd84 6672 if (!rs->supports_vCont.t)
74531fed
PA
6673 error (_("Remote server does not support stopping threads"));
6674
d7e15655 6675 if (ptid == minus_one_ptid
0e998d96 6676 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6677 p += xsnprintf (p, endp - p, "vCont;t");
6678 else
6679 {
6680 ptid_t nptid;
6681
74531fed
PA
6682 p += xsnprintf (p, endp - p, "vCont;t:");
6683
0e998d96 6684 if (ptid.is_pid ())
74531fed 6685 /* All (-1) threads of process. */
e99b03dc 6686 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6687 else
6688 {
6689 /* Small optimization: if we already have a stop reply for
6690 this thread, no use in telling the stub we want this
6691 stopped. */
6692 if (peek_stop_reply (ptid))
6693 return;
6694
6695 nptid = ptid;
6696 }
6697
a9cbf802 6698 write_ptid (p, endp, nptid);
74531fed
PA
6699 }
6700
6701 /* In non-stop, we get an immediate OK reply. The stop reply will
6702 come in asynchronously by notification. */
6703 putpkt (rs->buf);
8d64371b
TT
6704 getpkt (&rs->buf, 0);
6705 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6706 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6707 rs->buf.data ());
74531fed
PA
6708}
6709
bfedc46a
PA
6710/* All-stop version of target_interrupt. Sends a break or a ^C to
6711 interrupt the remote target. It is undefined which thread of which
6712 process reports the interrupt. */
74531fed 6713
6b8edb51
PA
6714void
6715remote_target::remote_interrupt_as ()
74531fed
PA
6716{
6717 struct remote_state *rs = get_remote_state ();
6718
3a29589a
DJ
6719 rs->ctrlc_pending_p = 1;
6720
74531fed
PA
6721 /* If the inferior is stopped already, but the core didn't know
6722 about it yet, just ignore the request. The cached wait status
6723 will be collected in remote_wait. */
6724 if (rs->cached_wait_status)
6725 return;
6726
9a7071a8
JB
6727 /* Send interrupt_sequence to remote target. */
6728 send_interrupt_sequence ();
74531fed
PA
6729}
6730
de979965
PA
6731/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6732 the remote target. It is undefined which thread of which process
e42de8c7
PA
6733 reports the interrupt. Throws an error if the packet is not
6734 supported by the server. */
de979965 6735
6b8edb51
PA
6736void
6737remote_target::remote_interrupt_ns ()
de979965
PA
6738{
6739 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6740 char *p = rs->buf.data ();
6741 char *endp = p + get_remote_packet_size ();
de979965
PA
6742
6743 xsnprintf (p, endp - p, "vCtrlC");
6744
6745 /* In non-stop, we get an immediate OK reply. The stop reply will
6746 come in asynchronously by notification. */
6747 putpkt (rs->buf);
8d64371b 6748 getpkt (&rs->buf, 0);
de979965
PA
6749
6750 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6751 {
6752 case PACKET_OK:
6753 break;
6754 case PACKET_UNKNOWN:
e42de8c7 6755 error (_("No support for interrupting the remote target."));
de979965 6756 case PACKET_ERROR:
8d64371b 6757 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6758 }
de979965
PA
6759}
6760
bfedc46a 6761/* Implement the to_stop function for the remote targets. */
74531fed 6762
f6ac5f3d
PA
6763void
6764remote_target::stop (ptid_t ptid)
c906108c 6765{
7a292a7a 6766 if (remote_debug)
0f71a2f6 6767 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6768
6efcd9a8 6769 if (target_is_non_stop_p ())
74531fed 6770 remote_stop_ns (ptid);
c906108c 6771 else
bfedc46a
PA
6772 {
6773 /* We don't currently have a way to transparently pause the
6774 remote target in all-stop mode. Interrupt it instead. */
de979965 6775 remote_interrupt_as ();
bfedc46a
PA
6776 }
6777}
6778
6779/* Implement the to_interrupt function for the remote targets. */
6780
f6ac5f3d
PA
6781void
6782remote_target::interrupt ()
bfedc46a
PA
6783{
6784 if (remote_debug)
6785 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6786
e42de8c7
PA
6787 if (target_is_non_stop_p ())
6788 remote_interrupt_ns ();
bfedc46a 6789 else
e42de8c7 6790 remote_interrupt_as ();
c906108c
SS
6791}
6792
93692b58
PA
6793/* Implement the to_pass_ctrlc function for the remote targets. */
6794
f6ac5f3d
PA
6795void
6796remote_target::pass_ctrlc ()
93692b58
PA
6797{
6798 struct remote_state *rs = get_remote_state ();
6799
6800 if (remote_debug)
6801 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6802
6803 /* If we're starting up, we're not fully synced yet. Quit
6804 immediately. */
6805 if (rs->starting_up)
6806 quit ();
6807 /* If ^C has already been sent once, offer to disconnect. */
6808 else if (rs->ctrlc_pending_p)
6809 interrupt_query ();
6810 else
e671cd59 6811 target_interrupt ();
93692b58
PA
6812}
6813
c906108c
SS
6814/* Ask the user what to do when an interrupt is received. */
6815
6b8edb51
PA
6816void
6817remote_target::interrupt_query ()
c906108c 6818{
abc56d60 6819 struct remote_state *rs = get_remote_state ();
c906108c 6820
abc56d60 6821 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6822 {
abc56d60
PA
6823 if (query (_("The target is not responding to interrupt requests.\n"
6824 "Stop debugging it? ")))
74531fed 6825 {
5b6d1e4f 6826 remote_unpush_target (this);
abc56d60 6827 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6828 }
6829 }
abc56d60
PA
6830 else
6831 {
6832 if (query (_("Interrupted while waiting for the program.\n"
6833 "Give up waiting? ")))
6834 quit ();
6835 }
c906108c
SS
6836}
6837
6426a772
JM
6838/* Enable/disable target terminal ownership. Most targets can use
6839 terminal groups to control terminal ownership. Remote targets are
6840 different in that explicit transfer of ownership to/from GDB/target
23860348 6841 is required. */
6426a772 6842
f6ac5f3d
PA
6843void
6844remote_target::terminal_inferior ()
6426a772 6845{
6426a772
JM
6846 /* NOTE: At this point we could also register our selves as the
6847 recipient of all input. Any characters typed could then be
23860348 6848 passed on down to the target. */
6426a772
JM
6849}
6850
f6ac5f3d
PA
6851void
6852remote_target::terminal_ours ()
6426a772 6853{
6426a772
JM
6854}
6855
176a6961 6856static void
05be00a8 6857remote_console_output (const char *msg)
c906108c 6858{
05be00a8 6859 const char *p;
c906108c 6860
c5aa993b 6861 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6862 {
6863 char tb[2];
6864 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6865
c906108c
SS
6866 tb[0] = c;
6867 tb[1] = 0;
da5bd37e 6868 gdb_stdtarg->puts (tb);
c906108c 6869 }
da5bd37e 6870 gdb_stdtarg->flush ();
00db5b94 6871}
74531fed 6872
32603266 6873struct stop_reply : public notif_event
74531fed 6874{
32603266 6875 ~stop_reply ();
74531fed 6876
722247f1 6877 /* The identifier of the thread about this event */
74531fed
PA
6878 ptid_t ptid;
6879
340e3c99 6880 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6881 connection, represented by a remote_state object, is closed,
6882 all the associated stop_reply events should be released. */
6883 struct remote_state *rs;
6884
74531fed
PA
6885 struct target_waitstatus ws;
6886
5cd63fda
PA
6887 /* The architecture associated with the expedited registers. */
6888 gdbarch *arch;
6889
15148d6a
PA
6890 /* Expedited registers. This makes remote debugging a bit more
6891 efficient for those targets that provide critical registers as
6892 part of their normal status mechanism (as another roundtrip to
6893 fetch them is avoided). */
32603266 6894 std::vector<cached_reg_t> regcache;
74531fed 6895
f7e6eed5
PA
6896 enum target_stop_reason stop_reason;
6897
74531fed
PA
6898 CORE_ADDR watch_data_address;
6899
dc146f7c 6900 int core;
32603266 6901};
c906108c 6902
221e1a37
PA
6903/* Return the length of the stop reply queue. */
6904
6b8edb51
PA
6905int
6906remote_target::stop_reply_queue_length ()
221e1a37 6907{
6b8edb51 6908 remote_state *rs = get_remote_state ();
953edf2b 6909 return rs->stop_reply_queue.size ();
221e1a37
PA
6910}
6911
cb8c24b6 6912static void
6b8edb51 6913remote_notif_stop_parse (remote_target *remote,
bb277751 6914 struct notif_client *self, const char *buf,
722247f1
YQ
6915 struct notif_event *event)
6916{
6b8edb51 6917 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6918}
6919
6920static void
6b8edb51 6921remote_notif_stop_ack (remote_target *remote,
bb277751 6922 struct notif_client *self, const char *buf,
722247f1
YQ
6923 struct notif_event *event)
6924{
6925 struct stop_reply *stop_reply = (struct stop_reply *) event;
6926
6927 /* acknowledge */
6b8edb51 6928 putpkt (remote, self->ack_command);
722247f1
YQ
6929
6930 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6931 {
722247f1
YQ
6932 /* We got an unknown stop reply. */
6933 error (_("Unknown stop reply"));
6b8edb51 6934 }
722247f1 6935
6b8edb51 6936 remote->push_stop_reply (stop_reply);
722247f1
YQ
6937}
6938
6939static int
6b8edb51
PA
6940remote_notif_stop_can_get_pending_events (remote_target *remote,
6941 struct notif_client *self)
722247f1
YQ
6942{
6943 /* We can't get pending events in remote_notif_process for
6944 notification stop, and we have to do this in remote_wait_ns
6945 instead. If we fetch all queued events from stub, remote stub
6946 may exit and we have no chance to process them back in
6947 remote_wait_ns. */
6b8edb51
PA
6948 remote_state *rs = remote->get_remote_state ();
6949 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6950 return 0;
6951}
6952
32603266 6953stop_reply::~stop_reply ()
722247f1 6954{
32603266
TT
6955 for (cached_reg_t &reg : regcache)
6956 xfree (reg.data);
722247f1
YQ
6957}
6958
32603266
TT
6959static notif_event_up
6960remote_notif_stop_alloc_reply ()
722247f1 6961{
32603266 6962 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6963}
6964
6965/* A client of notification Stop. */
6966
6967struct notif_client notif_client_stop =
6968{
6969 "Stop",
6970 "vStopped",
6971 remote_notif_stop_parse,
6972 remote_notif_stop_ack,
6973 remote_notif_stop_can_get_pending_events,
6974 remote_notif_stop_alloc_reply,
f48ff2a7 6975 REMOTE_NOTIF_STOP,
722247f1
YQ
6976};
6977
85ad3aaf 6978/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6979 the pid of the process that owns the threads we want to check, or
6980 -1 if we want to check all threads. */
6981
6982static int
6983is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6984 ptid_t thread_ptid)
6985{
6986 if (ws->kind == TARGET_WAITKIND_FORKED
6987 || ws->kind == TARGET_WAITKIND_VFORKED)
6988 {
e99b03dc 6989 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6990 return 1;
6991 }
6992
6993 return 0;
6994}
6995
85ad3aaf
PA
6996/* Return the thread's pending status used to determine whether the
6997 thread is a fork parent stopped at a fork event. */
6998
6999static struct target_waitstatus *
7000thread_pending_fork_status (struct thread_info *thread)
7001{
7002 if (thread->suspend.waitstatus_pending_p)
7003 return &thread->suspend.waitstatus;
7004 else
7005 return &thread->pending_follow;
7006}
7007
7008/* Determine if THREAD is a pending fork parent thread. */
7009
7010static int
7011is_pending_fork_parent_thread (struct thread_info *thread)
7012{
7013 struct target_waitstatus *ws = thread_pending_fork_status (thread);
7014 int pid = -1;
7015
7016 return is_pending_fork_parent (ws, pid, thread->ptid);
7017}
7018
cbb8991c
DB
7019/* If CONTEXT contains any fork child threads that have not been
7020 reported yet, remove them from the CONTEXT list. If such a
7021 thread exists it is because we are stopped at a fork catchpoint
7022 and have not yet called follow_fork, which will set up the
7023 host-side data structures for the new process. */
7024
6b8edb51
PA
7025void
7026remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 7027{
cbb8991c
DB
7028 int pid = -1;
7029 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
7030
7031 /* For any threads stopped at a fork event, remove the corresponding
7032 fork child threads from the CONTEXT list. */
5b6d1e4f 7033 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c 7034 {
85ad3aaf 7035 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7036
7037 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7038 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7039 }
7040
7041 /* Check for any pending fork events (not reported or processed yet)
7042 in process PID and remove those fork child threads from the
7043 CONTEXT list as well. */
7044 remote_notif_get_pending_events (notif);
953edf2b
TT
7045 for (auto &event : get_remote_state ()->stop_reply_queue)
7046 if (event->ws.kind == TARGET_WAITKIND_FORKED
7047 || event->ws.kind == TARGET_WAITKIND_VFORKED
7048 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7049 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7050}
7051
7052/* Check whether any event pending in the vStopped queue would prevent
7053 a global or process wildcard vCont action. Clear
7054 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7055 and clear the event inferior's may_wildcard_vcont flag if we can't
7056 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7057
6b8edb51
PA
7058void
7059remote_target::check_pending_events_prevent_wildcard_vcont
7060 (int *may_global_wildcard)
85ad3aaf
PA
7061{
7062 struct notif_client *notif = &notif_client_stop;
7063
7064 remote_notif_get_pending_events (notif);
953edf2b
TT
7065 for (auto &event : get_remote_state ()->stop_reply_queue)
7066 {
7067 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7068 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7069 continue;
85ad3aaf 7070
953edf2b
TT
7071 if (event->ws.kind == TARGET_WAITKIND_FORKED
7072 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7073 *may_global_wildcard = 0;
722247f1 7074
5b6d1e4f 7075 struct inferior *inf = find_inferior_ptid (this, event->ptid);
722247f1 7076
953edf2b
TT
7077 /* This may be the first time we heard about this process.
7078 Regardless, we must not do a global wildcard resume, otherwise
7079 we'd resume this process too. */
7080 *may_global_wildcard = 0;
7081 if (inf != NULL)
7082 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7083 }
722247f1
YQ
7084}
7085
f48ff2a7 7086/* Discard all pending stop replies of inferior INF. */
c906108c 7087
6b8edb51
PA
7088void
7089remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7090{
f48ff2a7
YQ
7091 struct stop_reply *reply;
7092 struct remote_state *rs = get_remote_state ();
7093 struct remote_notif_state *rns = rs->notif_state;
7094
7095 /* This function can be notified when an inferior exists. When the
7096 target is not remote, the notification state is NULL. */
7097 if (rs->remote_desc == NULL)
7098 return;
7099
7100 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7101
74531fed 7102 /* Discard the in-flight notification. */
e99b03dc 7103 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7104 {
32603266 7105 delete reply;
f48ff2a7 7106 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7107 }
c906108c 7108
74531fed
PA
7109 /* Discard the stop replies we have already pulled with
7110 vStopped. */
953edf2b
TT
7111 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7112 rs->stop_reply_queue.end (),
7113 [=] (const stop_reply_up &event)
7114 {
7115 return event->ptid.pid () == inf->pid;
7116 });
7117 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7118}
7119
7120/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7121
6b8edb51
PA
7122void
7123remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7124{
6b8edb51 7125 remote_state *rs = get_remote_state ();
f48ff2a7 7126
f48ff2a7
YQ
7127 /* Discard the stop replies we have already pulled with
7128 vStopped. */
953edf2b
TT
7129 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7130 rs->stop_reply_queue.end (),
7131 [=] (const stop_reply_up &event)
7132 {
7133 return event->rs == rs;
7134 });
7135 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7136}
43ff13b4 7137
722247f1
YQ
7138/* Remove the first reply in 'stop_reply_queue' which matches
7139 PTID. */
2e9f7625 7140
6b8edb51
PA
7141struct stop_reply *
7142remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7143{
953edf2b 7144 remote_state *rs = get_remote_state ();
722247f1 7145
953edf2b
TT
7146 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7147 rs->stop_reply_queue.end (),
7148 [=] (const stop_reply_up &event)
7149 {
7150 return event->ptid.matches (ptid);
7151 });
7152 struct stop_reply *result;
7153 if (iter == rs->stop_reply_queue.end ())
7154 result = nullptr;
7155 else
7156 {
7157 result = iter->release ();
7158 rs->stop_reply_queue.erase (iter);
7159 }
722247f1 7160
722247f1
YQ
7161 if (notif_debug)
7162 fprintf_unfiltered (gdb_stdlog,
7163 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7164 target_pid_to_str (ptid).c_str ());
a744cf53 7165
953edf2b 7166 return result;
74531fed 7167}
75c99385 7168
74531fed
PA
7169/* Look for a queued stop reply belonging to PTID. If one is found,
7170 remove it from the queue, and return it. Returns NULL if none is
7171 found. If there are still queued events left to process, tell the
7172 event loop to get back to target_wait soon. */
e24a49d8 7173
6b8edb51
PA
7174struct stop_reply *
7175remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7176{
953edf2b 7177 remote_state *rs = get_remote_state ();
722247f1 7178 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7179
953edf2b 7180 if (!rs->stop_reply_queue.empty ())
6b8edb51 7181 {
6b8edb51
PA
7182 /* There's still at least an event left. */
7183 mark_async_event_handler (rs->remote_async_inferior_event_token);
7184 }
74531fed 7185
722247f1 7186 return r;
74531fed
PA
7187}
7188
7189/* Push a fully parsed stop reply in the stop reply queue. Since we
7190 know that we now have at least one queued event left to pass to the
7191 core side, tell the event loop to get back to target_wait soon. */
7192
6b8edb51
PA
7193void
7194remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7195{
6b8edb51 7196 remote_state *rs = get_remote_state ();
953edf2b 7197 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7198
722247f1
YQ
7199 if (notif_debug)
7200 fprintf_unfiltered (gdb_stdlog,
7201 "notif: push 'Stop' %s to queue %d\n",
a068643d 7202 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7203 int (rs->stop_reply_queue.size ()));
74531fed 7204
6b8edb51 7205 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7206}
7207
7208/* Returns true if we have a stop reply for PTID. */
7209
6b8edb51
PA
7210int
7211remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7212{
6b8edb51 7213 remote_state *rs = get_remote_state ();
953edf2b
TT
7214 for (auto &event : rs->stop_reply_queue)
7215 if (ptid == event->ptid
7216 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7217 return 1;
7218 return 0;
74531fed
PA
7219}
7220
26d56a93
SL
7221/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7222 starting with P and ending with PEND matches PREFIX. */
7223
7224static int
7225strprefix (const char *p, const char *pend, const char *prefix)
7226{
7227 for ( ; p < pend; p++, prefix++)
7228 if (*p != *prefix)
7229 return 0;
7230 return *prefix == '\0';
7231}
7232
74531fed
PA
7233/* Parse the stop reply in BUF. Either the function succeeds, and the
7234 result is stored in EVENT, or throws an error. */
7235
6b8edb51 7236void
bb277751 7237remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7238{
5cd63fda 7239 remote_arch_state *rsa = NULL;
74531fed 7240 ULONGEST addr;
256642e8 7241 const char *p;
94585166 7242 int skipregs = 0;
74531fed
PA
7243
7244 event->ptid = null_ptid;
bcc75809 7245 event->rs = get_remote_state ();
74531fed
PA
7246 event->ws.kind = TARGET_WAITKIND_IGNORE;
7247 event->ws.value.integer = 0;
f7e6eed5 7248 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7249 event->regcache.clear ();
dc146f7c 7250 event->core = -1;
74531fed
PA
7251
7252 switch (buf[0])
7253 {
7254 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7255 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7256 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7257 ss = signal number
7258 n... = register number
7259 r... = register contents
7260 */
7261
7262 p = &buf[3]; /* after Txx */
7263 while (*p)
7264 {
256642e8 7265 const char *p1;
cea39f65 7266 int fieldsize;
43ff13b4 7267
1f10ba14
PA
7268 p1 = strchr (p, ':');
7269 if (p1 == NULL)
7270 error (_("Malformed packet(a) (missing colon): %s\n\
7271Packet: '%s'\n"),
7272 p, buf);
7273 if (p == p1)
7274 error (_("Malformed packet(a) (missing register number): %s\n\
7275Packet: '%s'\n"),
7276 p, buf);
3c3bea1c 7277
1f10ba14
PA
7278 /* Some "registers" are actually extended stop information.
7279 Note if you're adding a new entry here: GDB 7.9 and
7280 earlier assume that all register "numbers" that start
7281 with an hex digit are real register numbers. Make sure
7282 the server only sends such a packet if it knows the
7283 client understands it. */
c8e38a49 7284
26d56a93 7285 if (strprefix (p, p1, "thread"))
1f10ba14 7286 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7287 else if (strprefix (p, p1, "syscall_entry"))
7288 {
7289 ULONGEST sysno;
7290
7291 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7292 p = unpack_varlen_hex (++p1, &sysno);
7293 event->ws.value.syscall_number = (int) sysno;
7294 }
7295 else if (strprefix (p, p1, "syscall_return"))
7296 {
7297 ULONGEST sysno;
7298
7299 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7300 p = unpack_varlen_hex (++p1, &sysno);
7301 event->ws.value.syscall_number = (int) sysno;
7302 }
26d56a93
SL
7303 else if (strprefix (p, p1, "watch")
7304 || strprefix (p, p1, "rwatch")
7305 || strprefix (p, p1, "awatch"))
cea39f65 7306 {
f7e6eed5 7307 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7308 p = unpack_varlen_hex (++p1, &addr);
7309 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7310 }
26d56a93 7311 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7312 {
7313 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7314
7315 /* Make sure the stub doesn't forget to indicate support
7316 with qSupported. */
7317 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7318 error (_("Unexpected swbreak stop reason"));
7319
7320 /* The value part is documented as "must be empty",
7321 though we ignore it, in case we ever decide to make
7322 use of it in a backward compatible way. */
8424cc97 7323 p = strchrnul (p1 + 1, ';');
f7e6eed5 7324 }
26d56a93 7325 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7326 {
7327 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7328
7329 /* Make sure the stub doesn't forget to indicate support
7330 with qSupported. */
7331 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7332 error (_("Unexpected hwbreak stop reason"));
7333
7334 /* See above. */
8424cc97 7335 p = strchrnul (p1 + 1, ';');
f7e6eed5 7336 }
26d56a93 7337 else if (strprefix (p, p1, "library"))
cea39f65 7338 {
1f10ba14 7339 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7340 p = strchrnul (p1 + 1, ';');
1f10ba14 7341 }
26d56a93 7342 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7343 {
7344 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7345 /* p1 will indicate "begin" or "end", but it makes
7346 no difference for now, so ignore it. */
8424cc97 7347 p = strchrnul (p1 + 1, ';');
1f10ba14 7348 }
26d56a93 7349 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7350 {
7351 ULONGEST c;
a744cf53 7352
1f10ba14
PA
7353 p = unpack_varlen_hex (++p1, &c);
7354 event->core = c;
cea39f65 7355 }
26d56a93 7356 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7357 {
7358 event->ws.value.related_pid = read_ptid (++p1, &p);
7359 event->ws.kind = TARGET_WAITKIND_FORKED;
7360 }
26d56a93 7361 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7362 {
7363 event->ws.value.related_pid = read_ptid (++p1, &p);
7364 event->ws.kind = TARGET_WAITKIND_VFORKED;
7365 }
26d56a93 7366 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7367 {
7368 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7369 p = strchrnul (p1 + 1, ';');
c269dbdb 7370 }
6ab24463 7371 else if (strprefix (p, p1, "exec"))
94585166
DB
7372 {
7373 ULONGEST ignored;
94585166
DB
7374 int pathlen;
7375
7376 /* Determine the length of the execd pathname. */
7377 p = unpack_varlen_hex (++p1, &ignored);
7378 pathlen = (p - p1) / 2;
7379
7380 /* Save the pathname for event reporting and for
7381 the next run command. */
c6321f19
TT
7382 gdb::unique_xmalloc_ptr<char[]> pathname
7383 ((char *) xmalloc (pathlen + 1));
7384 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7385 pathname[pathlen] = '\0';
7386
7387 /* This is freed during event handling. */
c6321f19 7388 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7389 event->ws.kind = TARGET_WAITKIND_EXECD;
7390
7391 /* Skip the registers included in this packet, since
7392 they may be for an architecture different from the
7393 one used by the original program. */
7394 skipregs = 1;
7395 }
65706a29
PA
7396 else if (strprefix (p, p1, "create"))
7397 {
7398 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7399 p = strchrnul (p1 + 1, ';');
65706a29 7400 }
cea39f65
MS
7401 else
7402 {
1f10ba14 7403 ULONGEST pnum;
256642e8 7404 const char *p_temp;
1f10ba14 7405
94585166
DB
7406 if (skipregs)
7407 {
8424cc97 7408 p = strchrnul (p1 + 1, ';');
94585166
DB
7409 p++;
7410 continue;
7411 }
7412
1f10ba14
PA
7413 /* Maybe a real ``P'' register number. */
7414 p_temp = unpack_varlen_hex (p, &pnum);
7415 /* If the first invalid character is the colon, we got a
7416 register number. Otherwise, it's an unknown stop
7417 reason. */
7418 if (p_temp == p1)
7419 {
5cd63fda
PA
7420 /* If we haven't parsed the event's thread yet, find
7421 it now, in order to find the architecture of the
7422 reported expedited registers. */
7423 if (event->ptid == null_ptid)
7424 {
24ed6739
AB
7425 /* If there is no thread-id information then leave
7426 the event->ptid as null_ptid. Later in
7427 process_stop_reply we will pick a suitable
7428 thread. */
5cd63fda
PA
7429 const char *thr = strstr (p1 + 1, ";thread:");
7430 if (thr != NULL)
7431 event->ptid = read_ptid (thr + strlen (";thread:"),
7432 NULL);
5cd63fda
PA
7433 }
7434
7435 if (rsa == NULL)
7436 {
5b6d1e4f
PA
7437 inferior *inf
7438 = (event->ptid == null_ptid
7439 ? NULL
7440 : find_inferior_ptid (this, event->ptid));
5cd63fda
PA
7441 /* If this is the first time we learn anything
7442 about this process, skip the registers
7443 included in this packet, since we don't yet
7444 know which architecture to use to parse them.
7445 We'll determine the architecture later when
7446 we process the stop reply and retrieve the
7447 target description, via
7448 remote_notice_new_inferior ->
7449 post_create_inferior. */
7450 if (inf == NULL)
7451 {
7452 p = strchrnul (p1 + 1, ';');
7453 p++;
7454 continue;
7455 }
7456
7457 event->arch = inf->gdbarch;
9d6eea31 7458 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7459 }
7460
7461 packet_reg *reg
7462 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7463 cached_reg_t cached_reg;
43ff13b4 7464
1f10ba14
PA
7465 if (reg == NULL)
7466 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7467Packet: '%s'\n"),
1f10ba14 7468 hex_string (pnum), p, buf);
c8e38a49 7469
1f10ba14 7470 cached_reg.num = reg->regnum;
d1dff226 7471 cached_reg.data = (gdb_byte *)
5cd63fda 7472 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7473
1f10ba14
PA
7474 p = p1 + 1;
7475 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7476 register_size (event->arch, reg->regnum));
1f10ba14 7477 p += 2 * fieldsize;
5cd63fda 7478 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7479 warning (_("Remote reply is too short: %s"), buf);
74531fed 7480
32603266 7481 event->regcache.push_back (cached_reg);
1f10ba14
PA
7482 }
7483 else
7484 {
7485 /* Not a number. Silently skip unknown optional
7486 info. */
8424cc97 7487 p = strchrnul (p1 + 1, ';');
1f10ba14 7488 }
cea39f65 7489 }
c8e38a49 7490
cea39f65
MS
7491 if (*p != ';')
7492 error (_("Remote register badly formatted: %s\nhere: %s"),
7493 buf, p);
7494 ++p;
7495 }
5b5596ff
PA
7496
7497 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7498 break;
7499
c8e38a49
PA
7500 /* fall through */
7501 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7502 {
7503 int sig;
7504
7505 event->ws.kind = TARGET_WAITKIND_STOPPED;
7506 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7507 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7508 event->ws.value.sig = (enum gdb_signal) sig;
7509 else
7510 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7511 }
c8e38a49 7512 break;
65706a29
PA
7513 case 'w': /* Thread exited. */
7514 {
65706a29
PA
7515 ULONGEST value;
7516
7517 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7518 p = unpack_varlen_hex (&buf[1], &value);
7519 event->ws.value.integer = value;
7520 if (*p != ';')
7521 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7522 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7523 break;
7524 }
c8e38a49
PA
7525 case 'W': /* Target exited. */
7526 case 'X':
7527 {
c8e38a49 7528 ULONGEST value;
82f73884 7529
c8e38a49
PA
7530 /* GDB used to accept only 2 hex chars here. Stubs should
7531 only send more if they detect GDB supports multi-process
7532 support. */
7533 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7534
c8e38a49
PA
7535 if (buf[0] == 'W')
7536 {
7537 /* The remote process exited. */
74531fed
PA
7538 event->ws.kind = TARGET_WAITKIND_EXITED;
7539 event->ws.value.integer = value;
c8e38a49
PA
7540 }
7541 else
7542 {
7543 /* The remote process exited with a signal. */
74531fed 7544 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7545 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7546 event->ws.value.sig = (enum gdb_signal) value;
7547 else
7548 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7549 }
82f73884 7550
e7af6c70
TBA
7551 /* If no process is specified, return null_ptid, and let the
7552 caller figure out the right process to use. */
7553 int pid = 0;
c8e38a49
PA
7554 if (*p == '\0')
7555 ;
7556 else if (*p == ';')
7557 {
7558 p++;
7559
0b24eb2d 7560 if (*p == '\0')
82f73884 7561 ;
61012eef 7562 else if (startswith (p, "process:"))
82f73884 7563 {
c8e38a49 7564 ULONGEST upid;
a744cf53 7565
c8e38a49
PA
7566 p += sizeof ("process:") - 1;
7567 unpack_varlen_hex (p, &upid);
7568 pid = upid;
82f73884
PA
7569 }
7570 else
7571 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7572 }
c8e38a49
PA
7573 else
7574 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7575 event->ptid = ptid_t (pid);
74531fed
PA
7576 }
7577 break;
f2faf941
PA
7578 case 'N':
7579 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7580 event->ptid = minus_one_ptid;
7581 break;
74531fed 7582 }
74531fed
PA
7583}
7584
722247f1
YQ
7585/* When the stub wants to tell GDB about a new notification reply, it
7586 sends a notification (%Stop, for example). Those can come it at
7587 any time, hence, we have to make sure that any pending
7588 putpkt/getpkt sequence we're making is finished, before querying
7589 the stub for more events with the corresponding ack command
7590 (vStopped, for example). E.g., if we started a vStopped sequence
7591 immediately upon receiving the notification, something like this
7592 could happen:
74531fed
PA
7593
7594 1.1) --> Hg 1
7595 1.2) <-- OK
7596 1.3) --> g
7597 1.4) <-- %Stop
7598 1.5) --> vStopped
7599 1.6) <-- (registers reply to step #1.3)
7600
7601 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7602 query.
7603
796cb314 7604 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7605 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7606 doing whatever we were doing:
7607
7608 2.1) --> Hg 1
7609 2.2) <-- OK
7610 2.3) --> g
7611 2.4) <-- %Stop
7612 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7613 2.5) <-- (registers reply to step #2.3)
7614
85102364 7615 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7616 notices there's an event on the
7617 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7618 associated callback --- the function below. At this point, we're
7619 always safe to start a vStopped sequence. :
7620
7621 2.6) --> vStopped
7622 2.7) <-- T05 thread:2
7623 2.8) --> vStopped
7624 2.9) --> OK
7625*/
7626
722247f1 7627void
6b8edb51 7628remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7629{
7630 struct remote_state *rs = get_remote_state ();
74531fed 7631
f48ff2a7 7632 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7633 {
722247f1
YQ
7634 if (notif_debug)
7635 fprintf_unfiltered (gdb_stdlog,
7636 "notif: process: '%s' ack pending event\n",
7637 nc->name);
74531fed 7638
722247f1 7639 /* acknowledge */
8d64371b
TT
7640 nc->ack (this, nc, rs->buf.data (),
7641 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7642 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7643
7644 while (1)
7645 {
8d64371b
TT
7646 getpkt (&rs->buf, 0);
7647 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7648 break;
7649 else
8d64371b 7650 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7651 }
7652 }
722247f1
YQ
7653 else
7654 {
7655 if (notif_debug)
7656 fprintf_unfiltered (gdb_stdlog,
7657 "notif: process: '%s' no pending reply\n",
7658 nc->name);
7659 }
74531fed
PA
7660}
7661
6b8edb51
PA
7662/* Wrapper around remote_target::remote_notif_get_pending_events to
7663 avoid having to export the whole remote_target class. */
7664
7665void
7666remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7667{
7668 remote->remote_notif_get_pending_events (nc);
7669}
7670
74531fed
PA
7671/* Called when it is decided that STOP_REPLY holds the info of the
7672 event that is to be returned to the core. This function always
7673 destroys STOP_REPLY. */
7674
6b8edb51
PA
7675ptid_t
7676remote_target::process_stop_reply (struct stop_reply *stop_reply,
7677 struct target_waitstatus *status)
74531fed
PA
7678{
7679 ptid_t ptid;
7680
7681 *status = stop_reply->ws;
7682 ptid = stop_reply->ptid;
7683
24ed6739
AB
7684 /* If no thread/process was reported by the stub then use the first
7685 non-exited thread in the current target. */
d7e15655 7686 if (ptid == null_ptid)
24ed6739 7687 {
cada5fc9
AB
7688 /* Some stop events apply to all threads in an inferior, while others
7689 only apply to a single thread. */
7690 bool is_stop_for_all_threads
7691 = (status->kind == TARGET_WAITKIND_EXITED
7692 || status->kind == TARGET_WAITKIND_SIGNALLED);
7693
24ed6739
AB
7694 for (thread_info *thr : all_non_exited_threads (this))
7695 {
cada5fc9
AB
7696 if (ptid != null_ptid
7697 && (!is_stop_for_all_threads
7698 || ptid.pid () != thr->ptid.pid ()))
24ed6739
AB
7699 {
7700 static bool warned = false;
7701
7702 if (!warned)
7703 {
7704 /* If you are seeing this warning then the remote target
cada5fc9
AB
7705 has stopped without specifying a thread-id, but the
7706 target does have multiple threads (or inferiors), and
7707 so GDB is having to guess which thread stopped.
7708
7709 Examples of what might cause this are the target
7710 sending and 'S' stop packet, or a 'T' stop packet and
7711 not including a thread-id.
7712
7713 Additionally, the target might send a 'W' or 'X
7714 packet without including a process-id, when the target
7715 has multiple running inferiors. */
7716 if (is_stop_for_all_threads)
7717 warning (_("multi-inferior target stopped without "
7718 "sending a process-id, using first "
7719 "non-exited inferior"));
7720 else
7721 warning (_("multi-threaded target stopped without "
7722 "sending a thread-id, using first "
7723 "non-exited thread"));
24ed6739
AB
7724 warned = true;
7725 }
7726 break;
7727 }
cada5fc9
AB
7728
7729 /* If this is a stop for all threads then don't use a particular
7730 threads ptid, instead create a new ptid where only the pid
7731 field is set. */
7732 if (is_stop_for_all_threads)
7733 ptid = ptid_t (thr->ptid.pid ());
7734 else
7735 ptid = thr->ptid;
24ed6739
AB
7736 }
7737 gdb_assert (ptid != null_ptid);
7738 }
74531fed 7739
5f3563ea 7740 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7741 && status->kind != TARGET_WAITKIND_SIGNALLED
7742 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7743 {
5f3563ea 7744 /* Expedited registers. */
32603266 7745 if (!stop_reply->regcache.empty ())
5f3563ea 7746 {
217f1f79 7747 struct regcache *regcache
5b6d1e4f 7748 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
5f3563ea 7749
32603266
TT
7750 for (cached_reg_t &reg : stop_reply->regcache)
7751 {
7752 regcache->raw_supply (reg.num, reg.data);
7753 xfree (reg.data);
7754 }
d1dff226 7755
32603266 7756 stop_reply->regcache.clear ();
5f3563ea 7757 }
74531fed 7758
1941c569 7759 remote_notice_new_inferior (ptid, 0);
5b6d1e4f 7760 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
799a2abe
PA
7761 remote_thr->core = stop_reply->core;
7762 remote_thr->stop_reason = stop_reply->stop_reason;
7763 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7764 remote_thr->vcont_resumed = 0;
74531fed
PA
7765 }
7766
32603266 7767 delete stop_reply;
74531fed
PA
7768 return ptid;
7769}
7770
7771/* The non-stop mode version of target_wait. */
7772
6b8edb51 7773ptid_t
b60cea74
TT
7774remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status,
7775 target_wait_flags options)
74531fed
PA
7776{
7777 struct remote_state *rs = get_remote_state ();
74531fed
PA
7778 struct stop_reply *stop_reply;
7779 int ret;
fee9eda9 7780 int is_notif = 0;
74531fed
PA
7781
7782 /* If in non-stop mode, get out of getpkt even if a
7783 notification is received. */
7784
8d64371b 7785 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7786 while (1)
7787 {
fee9eda9 7788 if (ret != -1 && !is_notif)
74531fed
PA
7789 switch (rs->buf[0])
7790 {
7791 case 'E': /* Error of some sort. */
7792 /* We're out of sync with the target now. Did it continue
7793 or not? We can't tell which thread it was in non-stop,
7794 so just ignore this. */
8d64371b 7795 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7796 break;
7797 case 'O': /* Console output. */
8d64371b 7798 remote_console_output (&rs->buf[1]);
74531fed
PA
7799 break;
7800 default:
8d64371b 7801 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7802 break;
7803 }
7804
7805 /* Acknowledge a pending stop reply that may have arrived in the
7806 mean time. */
f48ff2a7 7807 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7808 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7809
7810 /* If indeed we noticed a stop reply, we're done. */
7811 stop_reply = queued_stop_reply (ptid);
7812 if (stop_reply != NULL)
7813 return process_stop_reply (stop_reply, status);
7814
47608cb1 7815 /* Still no event. If we're just polling for an event, then
74531fed 7816 return to the event loop. */
47608cb1 7817 if (options & TARGET_WNOHANG)
74531fed
PA
7818 {
7819 status->kind = TARGET_WAITKIND_IGNORE;
7820 return minus_one_ptid;
7821 }
7822
47608cb1 7823 /* Otherwise do a blocking wait. */
8d64371b 7824 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7825 }
7826}
7827
31ba933e
PA
7828/* Return the first resumed thread. */
7829
7830static ptid_t
5b6d1e4f 7831first_remote_resumed_thread (remote_target *target)
31ba933e 7832{
5b6d1e4f 7833 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
31ba933e
PA
7834 if (tp->resumed)
7835 return tp->ptid;
7836 return null_ptid;
7837}
7838
74531fed
PA
7839/* Wait until the remote machine stops, then return, storing status in
7840 STATUS just as `wait' would. */
7841
6b8edb51 7842ptid_t
b60cea74
TT
7843remote_target::wait_as (ptid_t ptid, target_waitstatus *status,
7844 target_wait_flags options)
74531fed
PA
7845{
7846 struct remote_state *rs = get_remote_state ();
74531fed 7847 ptid_t event_ptid = null_ptid;
cea39f65 7848 char *buf;
74531fed
PA
7849 struct stop_reply *stop_reply;
7850
47608cb1
PA
7851 again:
7852
74531fed
PA
7853 status->kind = TARGET_WAITKIND_IGNORE;
7854 status->value.integer = 0;
7855
7856 stop_reply = queued_stop_reply (ptid);
7857 if (stop_reply != NULL)
7858 return process_stop_reply (stop_reply, status);
7859
7860 if (rs->cached_wait_status)
7861 /* Use the cached wait status, but only once. */
7862 rs->cached_wait_status = 0;
7863 else
7864 {
7865 int ret;
722247f1 7866 int is_notif;
567420d1 7867 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7868 && rs->wait_forever_enabled_p);
567420d1
PA
7869
7870 if (!rs->waiting_for_stop_reply)
7871 {
7872 status->kind = TARGET_WAITKIND_NO_RESUMED;
7873 return minus_one_ptid;
7874 }
74531fed 7875
74531fed
PA
7876 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7877 _never_ wait for ever -> test on target_is_async_p().
7878 However, before we do that we need to ensure that the caller
7879 knows how to take the target into/out of async mode. */
8d64371b 7880 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7881
7882 /* GDB gets a notification. Return to core as this event is
7883 not interesting. */
7884 if (ret != -1 && is_notif)
7885 return minus_one_ptid;
567420d1
PA
7886
7887 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7888 return minus_one_ptid;
74531fed
PA
7889 }
7890
8d64371b 7891 buf = rs->buf.data ();
74531fed 7892
3a29589a
DJ
7893 /* Assume that the target has acknowledged Ctrl-C unless we receive
7894 an 'F' or 'O' packet. */
7895 if (buf[0] != 'F' && buf[0] != 'O')
7896 rs->ctrlc_pending_p = 0;
7897
74531fed
PA
7898 switch (buf[0])
7899 {
7900 case 'E': /* Error of some sort. */
7901 /* We're out of sync with the target now. Did it continue or
7902 not? Not is more likely, so report a stop. */
29090fb6
LM
7903 rs->waiting_for_stop_reply = 0;
7904
74531fed
PA
7905 warning (_("Remote failure reply: %s"), buf);
7906 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7907 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7908 break;
7909 case 'F': /* File-I/O request. */
e42e5352
YQ
7910 /* GDB may access the inferior memory while handling the File-I/O
7911 request, but we don't want GDB accessing memory while waiting
7912 for a stop reply. See the comments in putpkt_binary. Set
7913 waiting_for_stop_reply to 0 temporarily. */
7914 rs->waiting_for_stop_reply = 0;
6b8edb51 7915 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7916 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7917 /* GDB handled the File-I/O request, and the target is running
7918 again. Keep waiting for events. */
7919 rs->waiting_for_stop_reply = 1;
74531fed 7920 break;
f2faf941 7921 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7922 {
29090fb6
LM
7923 /* There is a stop reply to handle. */
7924 rs->waiting_for_stop_reply = 0;
7925
7926 stop_reply
6b8edb51
PA
7927 = (struct stop_reply *) remote_notif_parse (this,
7928 &notif_client_stop,
8d64371b 7929 rs->buf.data ());
74531fed 7930
74531fed 7931 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7932 break;
7933 }
7934 case 'O': /* Console output. */
7935 remote_console_output (buf + 1);
c8e38a49
PA
7936 break;
7937 case '\0':
b73be471 7938 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7939 {
7940 /* Zero length reply means that we tried 'S' or 'C' and the
7941 remote system doesn't support it. */
223ffa71 7942 target_terminal::ours_for_output ();
c8e38a49
PA
7943 printf_filtered
7944 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7945 gdb_signal_to_name (rs->last_sent_signal));
7946 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7947 target_terminal::inferior ();
c8e38a49 7948
f5c4fcd9
TT
7949 strcpy (buf, rs->last_sent_step ? "s" : "c");
7950 putpkt (buf);
c8e38a49 7951 break;
43ff13b4 7952 }
86a73007 7953 /* fallthrough */
c8e38a49
PA
7954 default:
7955 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7956 break;
43ff13b4 7957 }
c8e38a49 7958
f2faf941
PA
7959 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7960 return minus_one_ptid;
7961 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7962 {
7963 /* Nothing interesting happened. If we're doing a non-blocking
7964 poll, we're done. Otherwise, go back to waiting. */
7965 if (options & TARGET_WNOHANG)
7966 return minus_one_ptid;
7967 else
7968 goto again;
7969 }
74531fed
PA
7970 else if (status->kind != TARGET_WAITKIND_EXITED
7971 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7972 {
d7e15655 7973 if (event_ptid != null_ptid)
47f8a51d 7974 record_currthread (rs, event_ptid);
82f73884 7975 else
5b6d1e4f 7976 event_ptid = first_remote_resumed_thread (this);
43ff13b4 7977 }
74531fed 7978 else
e7af6c70
TBA
7979 {
7980 /* A process exit. Invalidate our notion of current thread. */
7981 record_currthread (rs, minus_one_ptid);
7982 /* It's possible that the packet did not include a pid. */
7983 if (event_ptid == null_ptid)
5b6d1e4f 7984 event_ptid = first_remote_resumed_thread (this);
e7af6c70
TBA
7985 /* EVENT_PTID could still be NULL_PTID. Double-check. */
7986 if (event_ptid == null_ptid)
7987 event_ptid = magic_null_ptid;
7988 }
79d7f229 7989
82f73884 7990 return event_ptid;
43ff13b4
JM
7991}
7992
74531fed
PA
7993/* Wait until the remote machine stops, then return, storing status in
7994 STATUS just as `wait' would. */
7995
f6ac5f3d 7996ptid_t
b60cea74
TT
7997remote_target::wait (ptid_t ptid, struct target_waitstatus *status,
7998 target_wait_flags options)
c8e38a49
PA
7999{
8000 ptid_t event_ptid;
8001
6efcd9a8 8002 if (target_is_non_stop_p ())
6b8edb51 8003 event_ptid = wait_ns (ptid, status, options);
74531fed 8004 else
6b8edb51 8005 event_ptid = wait_as (ptid, status, options);
c8e38a49 8006
d9d41e78 8007 if (target_is_async_p ())
c8e38a49 8008 {
6b8edb51
PA
8009 remote_state *rs = get_remote_state ();
8010
74531fed
PA
8011 /* If there are are events left in the queue tell the event loop
8012 to return here. */
953edf2b 8013 if (!rs->stop_reply_queue.empty ())
6b8edb51 8014 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 8015 }
c8e38a49
PA
8016
8017 return event_ptid;
8018}
8019
74ca34ce 8020/* Fetch a single register using a 'p' packet. */
c906108c 8021
6b8edb51
PA
8022int
8023remote_target::fetch_register_using_p (struct regcache *regcache,
8024 packet_reg *reg)
b96ec7ac 8025{
ac7936df 8026 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 8027 struct remote_state *rs = get_remote_state ();
2e9f7625 8028 char *buf, *p;
9890e433 8029 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
8030 int i;
8031
4082afcc 8032 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
8033 return 0;
8034
8035 if (reg->pnum == -1)
8036 return 0;
8037
8d64371b 8038 p = rs->buf.data ();
fcad0fa4 8039 *p++ = 'p';
74ca34ce 8040 p += hexnumstr (p, reg->pnum);
fcad0fa4 8041 *p++ = '\0';
1f4437a4 8042 putpkt (rs->buf);
8d64371b 8043 getpkt (&rs->buf, 0);
3f9a994c 8044
8d64371b 8045 buf = rs->buf.data ();
2e9f7625 8046
8d64371b 8047 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
8048 {
8049 case PACKET_OK:
8050 break;
8051 case PACKET_UNKNOWN:
8052 return 0;
8053 case PACKET_ERROR:
27a9c0bf 8054 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 8055 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
8056 reg->regnum),
8057 buf);
74ca34ce 8058 }
3f9a994c
JB
8059
8060 /* If this register is unfetchable, tell the regcache. */
8061 if (buf[0] == 'x')
8480adf2 8062 {
73e1c03f 8063 regcache->raw_supply (reg->regnum, NULL);
8480adf2 8064 return 1;
b96ec7ac 8065 }
b96ec7ac 8066
3f9a994c
JB
8067 /* Otherwise, parse and supply the value. */
8068 p = buf;
8069 i = 0;
8070 while (p[0] != 0)
8071 {
8072 if (p[1] == 0)
74ca34ce 8073 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
8074
8075 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8076 p += 2;
8077 }
73e1c03f 8078 regcache->raw_supply (reg->regnum, regp);
3f9a994c 8079 return 1;
b96ec7ac
AC
8080}
8081
74ca34ce
DJ
8082/* Fetch the registers included in the target's 'g' packet. */
8083
6b8edb51
PA
8084int
8085remote_target::send_g_packet ()
c906108c 8086{
d01949b6 8087 struct remote_state *rs = get_remote_state ();
cea39f65 8088 int buf_len;
c906108c 8089
8d64371b 8090 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 8091 putpkt (rs->buf);
8d64371b 8092 getpkt (&rs->buf, 0);
b75abf5b
AK
8093 if (packet_check_result (rs->buf) == PACKET_ERROR)
8094 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 8095 rs->buf.data ());
c906108c 8096
29709017
DJ
8097 /* We can get out of synch in various cases. If the first character
8098 in the buffer is not a hex character, assume that has happened
8099 and try to fetch another packet to read. */
8100 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8101 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8102 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8103 && rs->buf[0] != 'x') /* New: unavailable register value. */
8104 {
8105 if (remote_debug)
8106 fprintf_unfiltered (gdb_stdlog,
8107 "Bad register packet; fetching a new packet\n");
8d64371b 8108 getpkt (&rs->buf, 0);
29709017
DJ
8109 }
8110
8d64371b 8111 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8112
8113 /* Sanity check the received packet. */
8114 if (buf_len % 2 != 0)
8d64371b 8115 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8116
8117 return buf_len / 2;
8118}
8119
6b8edb51
PA
8120void
8121remote_target::process_g_packet (struct regcache *regcache)
29709017 8122{
ac7936df 8123 struct gdbarch *gdbarch = regcache->arch ();
29709017 8124 struct remote_state *rs = get_remote_state ();
9d6eea31 8125 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8126 int i, buf_len;
8127 char *p;
8128 char *regs;
8129
8d64371b 8130 buf_len = strlen (rs->buf.data ());
29709017
DJ
8131
8132 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8133 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8134 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8135 "bytes): %s"),
8136 rsa->sizeof_g_packet, buf_len / 2,
8137 rs->buf.data ());
74ca34ce
DJ
8138
8139 /* Save the size of the packet sent to us by the target. It is used
8140 as a heuristic when determining the max size of packets that the
8141 target can safely receive. */
8142 if (rsa->actual_register_packet_size == 0)
8143 rsa->actual_register_packet_size = buf_len;
8144
8145 /* If this is smaller than we guessed the 'g' packet would be,
8146 update our records. A 'g' reply that doesn't include a register's
8147 value implies either that the register is not available, or that
8148 the 'p' packet must be used. */
8149 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8150 {
9dc193c3 8151 long sizeof_g_packet = buf_len / 2;
74ca34ce 8152
4a22f64d 8153 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8154 {
9dc193c3
LF
8155 long offset = rsa->regs[i].offset;
8156 long reg_size = register_size (gdbarch, i);
8157
74ca34ce
DJ
8158 if (rsa->regs[i].pnum == -1)
8159 continue;
8160
9dc193c3 8161 if (offset >= sizeof_g_packet)
74ca34ce 8162 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8163 else if (offset + reg_size > sizeof_g_packet)
8164 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8165 else
74ca34ce 8166 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8167 }
9dc193c3
LF
8168
8169 /* Looks valid enough, we can assume this is the correct length
8170 for a 'g' packet. It's important not to adjust
8171 rsa->sizeof_g_packet if we have truncated registers otherwise
8172 this "if" won't be run the next time the method is called
8173 with a packet of the same size and one of the internal errors
8174 below will trigger instead. */
8175 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8176 }
b323314b 8177
224c3ddb 8178 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8179
8180 /* Unimplemented registers read as all bits zero. */
ea9c271d 8181 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8182
c906108c
SS
8183 /* Reply describes registers byte by byte, each byte encoded as two
8184 hex characters. Suck them all up, then supply them to the
8185 register cacheing/storage mechanism. */
8186
8d64371b 8187 p = rs->buf.data ();
ea9c271d 8188 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8189 {
74ca34ce
DJ
8190 if (p[0] == 0 || p[1] == 0)
8191 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8192 internal_error (__FILE__, __LINE__,
9b20d036 8193 _("unexpected end of 'g' packet reply"));
74ca34ce 8194
c906108c 8195 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8196 regs[i] = 0; /* 'x' */
c906108c
SS
8197 else
8198 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8199 p += 2;
8200 }
8201
a744cf53
MS
8202 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8203 {
8204 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8205 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8206
8207 if (r->in_g_packet)
8208 {
8d64371b 8209 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8210 /* This shouldn't happen - we adjusted in_g_packet above. */
8211 internal_error (__FILE__, __LINE__,
9b20d036 8212 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8213 else if (rs->buf[r->offset * 2] == 'x')
8214 {
8d64371b 8215 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8216 /* The register isn't available, mark it as such (at
8217 the same time setting the value to zero). */
73e1c03f 8218 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8219 }
8220 else
73e1c03f 8221 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8222 }
8223 }
c906108c
SS
8224}
8225
6b8edb51
PA
8226void
8227remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8228{
8229 send_g_packet ();
56be3814 8230 process_g_packet (regcache);
29709017
DJ
8231}
8232
e6e4e701
PA
8233/* Make the remote selected traceframe match GDB's selected
8234 traceframe. */
8235
6b8edb51
PA
8236void
8237remote_target::set_remote_traceframe ()
e6e4e701
PA
8238{
8239 int newnum;
262e1174 8240 struct remote_state *rs = get_remote_state ();
e6e4e701 8241
262e1174 8242 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8243 return;
8244
8245 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8246 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8247
8248 newnum = target_trace_find (tfind_number,
8249 get_traceframe_number (), 0, 0, NULL);
8250
8251 /* Should not happen. If it does, all bets are off. */
8252 if (newnum != get_traceframe_number ())
8253 warning (_("could not set remote traceframe"));
8254}
8255
f6ac5f3d
PA
8256void
8257remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8258{
ac7936df 8259 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8260 struct remote_state *rs = get_remote_state ();
8261 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8262 int i;
8263
e6e4e701 8264 set_remote_traceframe ();
222312d3 8265 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8266
8267 if (regnum >= 0)
8268 {
5cd63fda 8269 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8270
74ca34ce
DJ
8271 gdb_assert (reg != NULL);
8272
8273 /* If this register might be in the 'g' packet, try that first -
8274 we are likely to read more than one register. If this is the
8275 first 'g' packet, we might be overly optimistic about its
8276 contents, so fall back to 'p'. */
8277 if (reg->in_g_packet)
8278 {
56be3814 8279 fetch_registers_using_g (regcache);
74ca34ce
DJ
8280 if (reg->in_g_packet)
8281 return;
8282 }
8283
56be3814 8284 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8285 return;
8286
8287 /* This register is not available. */
73e1c03f 8288 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8289
8290 return;
8291 }
8292
56be3814 8293 fetch_registers_using_g (regcache);
74ca34ce 8294
5cd63fda 8295 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8296 if (!rsa->regs[i].in_g_packet)
56be3814 8297 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8298 {
8299 /* This register is not available. */
73e1c03f 8300 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8301 }
8302}
8303
c906108c
SS
8304/* Prepare to store registers. Since we may send them all (using a
8305 'G' request), we have to read out the ones we don't want to change
8306 first. */
8307
f6ac5f3d
PA
8308void
8309remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8310{
9d6eea31
PA
8311 struct remote_state *rs = get_remote_state ();
8312 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8313 int i;
cf0e1e0d 8314
c906108c 8315 /* Make sure the entire registers array is valid. */
4082afcc 8316 switch (packet_support (PACKET_P))
5a2468f5
JM
8317 {
8318 case PACKET_DISABLE:
8319 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8320 /* Make sure all the necessary registers are cached. */
ac7936df 8321 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8322 if (rsa->regs[i].in_g_packet)
0b47d985 8323 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8324 break;
8325 case PACKET_ENABLE:
8326 break;
8327 }
8328}
8329
ad10f812 8330/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8331 packet was not recognized. */
5a2468f5 8332
6b8edb51
PA
8333int
8334remote_target::store_register_using_P (const struct regcache *regcache,
8335 packet_reg *reg)
5a2468f5 8336{
ac7936df 8337 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8338 struct remote_state *rs = get_remote_state ();
5a2468f5 8339 /* Try storing a single register. */
8d64371b 8340 char *buf = rs->buf.data ();
9890e433 8341 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8342 char *p;
5a2468f5 8343
4082afcc 8344 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8345 return 0;
8346
8347 if (reg->pnum == -1)
8348 return 0;
8349
ea9c271d 8350 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8351 p = buf + strlen (buf);
34a79281 8352 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8353 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8354 putpkt (rs->buf);
8d64371b 8355 getpkt (&rs->buf, 0);
5a2468f5 8356
74ca34ce
DJ
8357 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8358 {
8359 case PACKET_OK:
8360 return 1;
8361 case PACKET_ERROR:
27a9c0bf 8362 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8363 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8364 case PACKET_UNKNOWN:
8365 return 0;
8366 default:
8367 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8368 }
c906108c
SS
8369}
8370
23860348
MS
8371/* Store register REGNUM, or all registers if REGNUM == -1, from the
8372 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8373
6b8edb51
PA
8374void
8375remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8376{
d01949b6 8377 struct remote_state *rs = get_remote_state ();
9d6eea31 8378 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8379 gdb_byte *regs;
c906108c
SS
8380 char *p;
8381
193cb69f
AC
8382 /* Extract all the registers in the regcache copying them into a
8383 local buffer. */
8384 {
b323314b 8385 int i;
a744cf53 8386
224c3ddb 8387 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8388 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8389 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8390 {
ea9c271d 8391 struct packet_reg *r = &rsa->regs[i];
a744cf53 8392
b323314b 8393 if (r->in_g_packet)
34a79281 8394 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8395 }
8396 }
c906108c
SS
8397
8398 /* Command describes registers byte by byte,
8399 each byte encoded as two hex characters. */
8d64371b 8400 p = rs->buf.data ();
193cb69f 8401 *p++ = 'G';
74ca34ce 8402 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8403 putpkt (rs->buf);
8d64371b 8404 getpkt (&rs->buf, 0);
1f4437a4 8405 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8406 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8407 rs->buf.data ());
c906108c 8408}
74ca34ce
DJ
8409
8410/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8411 of the register cache buffer. FIXME: ignores errors. */
8412
f6ac5f3d
PA
8413void
8414remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8415{
5cd63fda 8416 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8417 struct remote_state *rs = get_remote_state ();
8418 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8419 int i;
8420
e6e4e701 8421 set_remote_traceframe ();
222312d3 8422 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8423
8424 if (regnum >= 0)
8425 {
5cd63fda 8426 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8427
74ca34ce
DJ
8428 gdb_assert (reg != NULL);
8429
8430 /* Always prefer to store registers using the 'P' packet if
8431 possible; we often change only a small number of registers.
8432 Sometimes we change a larger number; we'd need help from a
8433 higher layer to know to use 'G'. */
56be3814 8434 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8435 return;
8436
8437 /* For now, don't complain if we have no way to write the
8438 register. GDB loses track of unavailable registers too
8439 easily. Some day, this may be an error. We don't have
0df8b418 8440 any way to read the register, either... */
74ca34ce
DJ
8441 if (!reg->in_g_packet)
8442 return;
8443
56be3814 8444 store_registers_using_G (regcache);
74ca34ce
DJ
8445 return;
8446 }
8447
56be3814 8448 store_registers_using_G (regcache);
74ca34ce 8449
5cd63fda 8450 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8451 if (!rsa->regs[i].in_g_packet)
56be3814 8452 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8453 /* See above for why we do not issue an error here. */
8454 continue;
8455}
c906108c
SS
8456\f
8457
8458/* Return the number of hex digits in num. */
8459
8460static int
fba45db2 8461hexnumlen (ULONGEST num)
c906108c
SS
8462{
8463 int i;
8464
8465 for (i = 0; num != 0; i++)
8466 num >>= 4;
8467
325fac50 8468 return std::max (i, 1);
c906108c
SS
8469}
8470
2df3850c 8471/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8472
8473static int
fba45db2 8474hexnumstr (char *buf, ULONGEST num)
c906108c 8475{
c906108c 8476 int len = hexnumlen (num);
a744cf53 8477
2df3850c
JM
8478 return hexnumnstr (buf, num, len);
8479}
8480
c906108c 8481
2df3850c 8482/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8483
2df3850c 8484static int
fba45db2 8485hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8486{
8487 int i;
8488
8489 buf[width] = '\0';
8490
8491 for (i = width - 1; i >= 0; i--)
c906108c 8492 {
c5aa993b 8493 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8494 num >>= 4;
8495 }
8496
2df3850c 8497 return width;
c906108c
SS
8498}
8499
23860348 8500/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8501
8502static CORE_ADDR
fba45db2 8503remote_address_masked (CORE_ADDR addr)
c906108c 8504{
883b9c6c 8505 unsigned int address_size = remote_address_size;
a744cf53 8506
911c95a5
UW
8507 /* If "remoteaddresssize" was not set, default to target address size. */
8508 if (!address_size)
f5656ead 8509 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8510
8511 if (address_size > 0
8512 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8513 {
8514 /* Only create a mask when that mask can safely be constructed
23860348 8515 in a ULONGEST variable. */
c906108c 8516 ULONGEST mask = 1;
a744cf53 8517
911c95a5 8518 mask = (mask << address_size) - 1;
c906108c
SS
8519 addr &= mask;
8520 }
8521 return addr;
8522}
8523
8524/* Determine whether the remote target supports binary downloading.
8525 This is accomplished by sending a no-op memory write of zero length
8526 to the target at the specified address. It does not suffice to send
23860348
MS
8527 the whole packet, since many stubs strip the eighth bit and
8528 subsequently compute a wrong checksum, which causes real havoc with
8529 remote_write_bytes.
7a292a7a 8530
96baa820 8531 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8532 clean. In cases like this, the user should clear "remote
23860348 8533 X-packet". */
96baa820 8534
6b8edb51
PA
8535void
8536remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8537{
d01949b6 8538 struct remote_state *rs = get_remote_state ();
24b06219 8539
4082afcc 8540 switch (packet_support (PACKET_X))
c906108c 8541 {
96baa820
JM
8542 case PACKET_DISABLE:
8543 break;
8544 case PACKET_ENABLE:
8545 break;
8546 case PACKET_SUPPORT_UNKNOWN:
8547 {
96baa820 8548 char *p;
802188a7 8549
8d64371b 8550 p = rs->buf.data ();
96baa820
JM
8551 *p++ = 'X';
8552 p += hexnumstr (p, (ULONGEST) addr);
8553 *p++ = ',';
8554 p += hexnumstr (p, (ULONGEST) 0);
8555 *p++ = ':';
8556 *p = '\0';
802188a7 8557
8d64371b
TT
8558 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8559 getpkt (&rs->buf, 0);
c906108c 8560
2e9f7625 8561 if (rs->buf[0] == '\0')
96baa820
JM
8562 {
8563 if (remote_debug)
8564 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8565 "binary downloading NOT "
8566 "supported by target\n");
444abaca 8567 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8568 }
8569 else
8570 {
8571 if (remote_debug)
8572 fprintf_unfiltered (gdb_stdlog,
64b9b334 8573 "binary downloading supported by target\n");
444abaca 8574 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8575 }
8576 break;
8577 }
c906108c
SS
8578 }
8579}
8580
124e13d9
SM
8581/* Helper function to resize the payload in order to try to get a good
8582 alignment. We try to write an amount of data such that the next write will
8583 start on an address aligned on REMOTE_ALIGN_WRITES. */
8584
8585static int
8586align_for_efficient_write (int todo, CORE_ADDR memaddr)
8587{
8588 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8589}
8590
c906108c
SS
8591/* Write memory data directly to the remote machine.
8592 This does not inform the data cache; the data cache uses this.
a76d924d 8593 HEADER is the starting part of the packet.
c906108c
SS
8594 MEMADDR is the address in the remote memory space.
8595 MYADDR is the address of the buffer in our space.
124e13d9
SM
8596 LEN_UNITS is the number of addressable units to write.
8597 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8598 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8599 should send data as binary ('X'), or hex-encoded ('M').
8600
8601 The function creates packet of the form
8602 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8603
124e13d9 8604 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8605
8606 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8607 are omitted.
8608
9b409511 8609 Return the transferred status, error or OK (an
124e13d9
SM
8610 'enum target_xfer_status' value). Save the number of addressable units
8611 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8612
8613 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8614 exchange between gdb and the stub could look like (?? in place of the
8615 checksum):
8616
8617 -> $m1000,4#??
8618 <- aaaabbbbccccdddd
8619
8620 -> $M1000,3:eeeeffffeeee#??
8621 <- OK
8622
8623 -> $m1000,4#??
8624 <- eeeeffffeeeedddd */
c906108c 8625
6b8edb51
PA
8626target_xfer_status
8627remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8628 const gdb_byte *myaddr,
8629 ULONGEST len_units,
8630 int unit_size,
8631 ULONGEST *xfered_len_units,
8632 char packet_format, int use_length)
c906108c 8633{
6d820c5c 8634 struct remote_state *rs = get_remote_state ();
cfd77fa1 8635 char *p;
a76d924d
DJ
8636 char *plen = NULL;
8637 int plenlen = 0;
124e13d9
SM
8638 int todo_units;
8639 int units_written;
8640 int payload_capacity_bytes;
8641 int payload_length_bytes;
a76d924d
DJ
8642
8643 if (packet_format != 'X' && packet_format != 'M')
8644 internal_error (__FILE__, __LINE__,
9b20d036 8645 _("remote_write_bytes_aux: bad packet format"));
c906108c 8646
124e13d9 8647 if (len_units == 0)
9b409511 8648 return TARGET_XFER_EOF;
b2182ed2 8649
124e13d9 8650 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8651
6d820c5c
DJ
8652 /* The packet buffer will be large enough for the payload;
8653 get_memory_packet_size ensures this. */
a76d924d 8654 rs->buf[0] = '\0';
c906108c 8655
a257b5bb 8656 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8657 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8658
124e13d9 8659 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8660 if (!use_length)
0df8b418 8661 /* The comma won't be used. */
124e13d9
SM
8662 payload_capacity_bytes += 1;
8663 payload_capacity_bytes -= strlen (header);
8664 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8665
a76d924d 8666 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8667
8d64371b
TT
8668 strcat (rs->buf.data (), header);
8669 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8670
8671 /* Compute a best guess of the number of bytes actually transfered. */
8672 if (packet_format == 'X')
c906108c 8673 {
23860348 8674 /* Best guess at number of bytes that will fit. */
325fac50
PA
8675 todo_units = std::min (len_units,
8676 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8677 if (use_length)
124e13d9 8678 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8679 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8680 }
8681 else
8682 {
124e13d9 8683 /* Number of bytes that will fit. */
325fac50
PA
8684 todo_units
8685 = std::min (len_units,
8686 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8687 if (use_length)
124e13d9 8688 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8689 todo_units = std::min (todo_units,
8690 (payload_capacity_bytes / unit_size) / 2);
917317f4 8691 }
a76d924d 8692
124e13d9 8693 if (todo_units <= 0)
3de11b2e 8694 internal_error (__FILE__, __LINE__,
405f8e94 8695 _("minimum packet size too small to write data"));
802188a7 8696
6765f3e5
DJ
8697 /* If we already need another packet, then try to align the end
8698 of this packet to a useful boundary. */
124e13d9
SM
8699 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8700 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8701
a257b5bb 8702 /* Append "<memaddr>". */
917317f4
JM
8703 memaddr = remote_address_masked (memaddr);
8704 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8705
a76d924d
DJ
8706 if (use_length)
8707 {
8708 /* Append ",". */
8709 *p++ = ',';
802188a7 8710
124e13d9
SM
8711 /* Append the length and retain its location and size. It may need to be
8712 adjusted once the packet body has been created. */
a76d924d 8713 plen = p;
124e13d9 8714 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8715 p += plenlen;
8716 }
a257b5bb
AC
8717
8718 /* Append ":". */
917317f4
JM
8719 *p++ = ':';
8720 *p = '\0';
802188a7 8721
a257b5bb 8722 /* Append the packet body. */
a76d924d 8723 if (packet_format == 'X')
917317f4 8724 {
917317f4
JM
8725 /* Binary mode. Send target system values byte by byte, in
8726 increasing byte addresses. Only escape certain critical
8727 characters. */
124e13d9
SM
8728 payload_length_bytes =
8729 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8730 &units_written, payload_capacity_bytes);
6765f3e5 8731
124e13d9 8732 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8733 a second try to keep the end of the packet aligned. Don't do
8734 this if the packet is tiny. */
124e13d9 8735 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8736 {
124e13d9
SM
8737 int new_todo_units;
8738
8739 new_todo_units = align_for_efficient_write (units_written, memaddr);
8740
8741 if (new_todo_units != units_written)
8742 payload_length_bytes =
8743 remote_escape_output (myaddr, new_todo_units, unit_size,
8744 (gdb_byte *) p, &units_written,
8745 payload_capacity_bytes);
6765f3e5
DJ
8746 }
8747
124e13d9
SM
8748 p += payload_length_bytes;
8749 if (use_length && units_written < todo_units)
c906108c 8750 {
802188a7 8751 /* Escape chars have filled up the buffer prematurely,
124e13d9 8752 and we have actually sent fewer units than planned.
917317f4
JM
8753 Fix-up the length field of the packet. Use the same
8754 number of characters as before. */
124e13d9
SM
8755 plen += hexnumnstr (plen, (ULONGEST) units_written,
8756 plenlen);
917317f4 8757 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8758 }
a76d924d
DJ
8759 }
8760 else
8761 {
917317f4
JM
8762 /* Normal mode: Send target system values byte by byte, in
8763 increasing byte addresses. Each byte is encoded as a two hex
8764 value. */
124e13d9
SM
8765 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8766 units_written = todo_units;
c906108c 8767 }
802188a7 8768
8d64371b
TT
8769 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8770 getpkt (&rs->buf, 0);
802188a7 8771
2e9f7625 8772 if (rs->buf[0] == 'E')
00d84524 8773 return TARGET_XFER_E_IO;
802188a7 8774
124e13d9
SM
8775 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8776 send fewer units than we'd planned. */
8777 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8778 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8779}
8780
a76d924d
DJ
8781/* Write memory data directly to the remote machine.
8782 This does not inform the data cache; the data cache uses this.
8783 MEMADDR is the address in the remote memory space.
8784 MYADDR is the address of the buffer in our space.
8785 LEN is the number of bytes.
8786
9b409511
YQ
8787 Return the transferred status, error or OK (an
8788 'enum target_xfer_status' value). Save the number of bytes
8789 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8790
6b8edb51
PA
8791target_xfer_status
8792remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8793 ULONGEST len, int unit_size,
8794 ULONGEST *xfered_len)
a76d924d 8795{
a121b7c1 8796 const char *packet_format = NULL;
a76d924d
DJ
8797
8798 /* Check whether the target supports binary download. */
8799 check_binary_download (memaddr);
8800
4082afcc 8801 switch (packet_support (PACKET_X))
a76d924d
DJ
8802 {
8803 case PACKET_ENABLE:
8804 packet_format = "X";
8805 break;
8806 case PACKET_DISABLE:
8807 packet_format = "M";
8808 break;
8809 case PACKET_SUPPORT_UNKNOWN:
8810 internal_error (__FILE__, __LINE__,
8811 _("remote_write_bytes: bad internal state"));
8812 default:
8813 internal_error (__FILE__, __LINE__, _("bad switch"));
8814 }
8815
8816 return remote_write_bytes_aux (packet_format,
124e13d9 8817 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8818 packet_format[0], 1);
a76d924d
DJ
8819}
8820
9217e74e
YQ
8821/* Read memory data directly from the remote machine.
8822 This does not use the data cache; the data cache uses this.
8823 MEMADDR is the address in the remote memory space.
8824 MYADDR is the address of the buffer in our space.
124e13d9
SM
8825 LEN_UNITS is the number of addressable memory units to read..
8826 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8827
8828 Return the transferred status, error or OK (an
8829 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8830 transferred in *XFERED_LEN_UNITS.
8831
8832 See the comment of remote_write_bytes_aux for an example of
8833 memory read/write exchange between gdb and the stub. */
9217e74e 8834
6b8edb51
PA
8835target_xfer_status
8836remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8837 ULONGEST len_units,
8838 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8839{
8840 struct remote_state *rs = get_remote_state ();
124e13d9 8841 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8842 char *p;
124e13d9
SM
8843 int todo_units;
8844 int decoded_bytes;
9217e74e 8845
124e13d9 8846 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8847 /* The packet buffer will be large enough for the payload;
8848 get_memory_packet_size ensures this. */
8849
124e13d9 8850 /* Number of units that will fit. */
325fac50
PA
8851 todo_units = std::min (len_units,
8852 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8853
8854 /* Construct "m"<memaddr>","<len>". */
8855 memaddr = remote_address_masked (memaddr);
8d64371b 8856 p = rs->buf.data ();
9217e74e
YQ
8857 *p++ = 'm';
8858 p += hexnumstr (p, (ULONGEST) memaddr);
8859 *p++ = ',';
124e13d9 8860 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8861 *p = '\0';
8862 putpkt (rs->buf);
8d64371b 8863 getpkt (&rs->buf, 0);
9217e74e
YQ
8864 if (rs->buf[0] == 'E'
8865 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8866 && rs->buf[3] == '\0')
8867 return TARGET_XFER_E_IO;
8868 /* Reply describes memory byte by byte, each byte encoded as two hex
8869 characters. */
8d64371b 8870 p = rs->buf.data ();
124e13d9 8871 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8872 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8873 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8874 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8875}
8876
b55fbac4
YQ
8877/* Using the set of read-only target sections of remote, read live
8878 read-only memory.
8acf9577
YQ
8879
8880 For interface/parameters/return description see target.h,
8881 to_xfer_partial. */
8882
6b8edb51
PA
8883target_xfer_status
8884remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8885 ULONGEST memaddr,
8886 ULONGEST len,
8887 int unit_size,
8888 ULONGEST *xfered_len)
8acf9577
YQ
8889{
8890 struct target_section *secp;
8891 struct target_section_table *table;
8892
6b8edb51 8893 secp = target_section_by_addr (this, memaddr);
8acf9577 8894 if (secp != NULL
fd361982 8895 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577
YQ
8896 {
8897 struct target_section *p;
8898 ULONGEST memend = memaddr + len;
8899
6b8edb51 8900 table = target_get_section_table (this);
8acf9577
YQ
8901
8902 for (p = table->sections; p < table->sections_end; p++)
8903 {
8904 if (memaddr >= p->addr)
8905 {
8906 if (memend <= p->endaddr)
8907 {
8908 /* Entire transfer is within this section. */
124e13d9 8909 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8910 xfered_len);
8acf9577
YQ
8911 }
8912 else if (memaddr >= p->endaddr)
8913 {
8914 /* This section ends before the transfer starts. */
8915 continue;
8916 }
8917 else
8918 {
8919 /* This section overlaps the transfer. Just do half. */
8920 len = p->endaddr - memaddr;
124e13d9 8921 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8922 xfered_len);
8acf9577
YQ
8923 }
8924 }
8925 }
8926 }
8927
8928 return TARGET_XFER_EOF;
8929}
8930
9217e74e
YQ
8931/* Similar to remote_read_bytes_1, but it reads from the remote stub
8932 first if the requested memory is unavailable in traceframe.
8933 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8934
6b8edb51
PA
8935target_xfer_status
8936remote_target::remote_read_bytes (CORE_ADDR memaddr,
8937 gdb_byte *myaddr, ULONGEST len, int unit_size,
8938 ULONGEST *xfered_len)
c906108c 8939{
6b6aa828 8940 if (len == 0)
96c4f946 8941 return TARGET_XFER_EOF;
b2182ed2 8942
8acf9577
YQ
8943 if (get_traceframe_number () != -1)
8944 {
a79b1bc6 8945 std::vector<mem_range> available;
8acf9577
YQ
8946
8947 /* If we fail to get the set of available memory, then the
8948 target does not support querying traceframe info, and so we
8949 attempt reading from the traceframe anyway (assuming the
8950 target implements the old QTro packet then). */
8951 if (traceframe_available_memory (&available, memaddr, len))
8952 {
a79b1bc6 8953 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8954 {
8955 enum target_xfer_status res;
8956
8957 /* Don't read into the traceframe's available
8958 memory. */
a79b1bc6 8959 if (!available.empty ())
8acf9577
YQ
8960 {
8961 LONGEST oldlen = len;
8962
a79b1bc6 8963 len = available[0].start - memaddr;
8acf9577
YQ
8964 gdb_assert (len <= oldlen);
8965 }
8966
8acf9577 8967 /* This goes through the topmost target again. */
6b8edb51 8968 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8969 len, unit_size, xfered_len);
8acf9577
YQ
8970 if (res == TARGET_XFER_OK)
8971 return TARGET_XFER_OK;
8972 else
8973 {
8974 /* No use trying further, we know some memory starting
8975 at MEMADDR isn't available. */
8976 *xfered_len = len;
92ffd475
PC
8977 return (*xfered_len != 0) ?
8978 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8979 }
8980 }
8981
8982 /* Don't try to read more than how much is available, in
8983 case the target implements the deprecated QTro packet to
8984 cater for older GDBs (the target's knowledge of read-only
8985 sections may be outdated by now). */
a79b1bc6 8986 len = available[0].length;
8acf9577
YQ
8987 }
8988 }
8989
124e13d9 8990 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8991}
74531fed 8992
c906108c 8993\f
c906108c 8994
a76d924d
DJ
8995/* Sends a packet with content determined by the printf format string
8996 FORMAT and the remaining arguments, then gets the reply. Returns
8997 whether the packet was a success, a failure, or unknown. */
8998
6b8edb51
PA
8999packet_result
9000remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
9001{
9002 struct remote_state *rs = get_remote_state ();
9003 int max_size = get_remote_packet_size ();
a76d924d 9004 va_list ap;
a744cf53 9005
a76d924d
DJ
9006 va_start (ap, format);
9007
9008 rs->buf[0] = '\0';
8d64371b 9009 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
9010
9011 va_end (ap);
9012
9013 if (size >= max_size)
9b20d036 9014 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
9015
9016 if (putpkt (rs->buf) < 0)
9017 error (_("Communication problem with target."));
9018
9019 rs->buf[0] = '\0';
8d64371b 9020 getpkt (&rs->buf, 0);
a76d924d
DJ
9021
9022 return packet_check_result (rs->buf);
9023}
9024
a76d924d
DJ
9025/* Flash writing can take quite some time. We'll set
9026 effectively infinite timeout for flash operations.
9027 In future, we'll need to decide on a better approach. */
9028static const int remote_flash_timeout = 1000;
9029
f6ac5f3d
PA
9030void
9031remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 9032{
f5656ead 9033 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 9034 enum packet_result ret;
2ec845e7
TT
9035 scoped_restore restore_timeout
9036 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
9037
9038 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 9039 phex (address, addr_size),
a76d924d
DJ
9040 phex (length, 4));
9041 switch (ret)
9042 {
9043 case PACKET_UNKNOWN:
9044 error (_("Remote target does not support flash erase"));
9045 case PACKET_ERROR:
9046 error (_("Error erasing flash with vFlashErase packet"));
9047 default:
9048 break;
9049 }
a76d924d
DJ
9050}
9051
6b8edb51
PA
9052target_xfer_status
9053remote_target::remote_flash_write (ULONGEST address,
9054 ULONGEST length, ULONGEST *xfered_len,
9055 const gdb_byte *data)
a76d924d 9056{
2ec845e7
TT
9057 scoped_restore restore_timeout
9058 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9059 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9060 xfered_len,'X', 0);
a76d924d
DJ
9061}
9062
f6ac5f3d
PA
9063void
9064remote_target::flash_done ()
a76d924d 9065{
a76d924d 9066 int ret;
a76d924d 9067
2ec845e7
TT
9068 scoped_restore restore_timeout
9069 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9070
a76d924d 9071 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
9072
9073 switch (ret)
9074 {
9075 case PACKET_UNKNOWN:
9076 error (_("Remote target does not support vFlashDone"));
9077 case PACKET_ERROR:
9078 error (_("Error finishing flash operation"));
9079 default:
9080 break;
9081 }
9082}
9083
f6ac5f3d
PA
9084void
9085remote_target::files_info ()
c906108c
SS
9086{
9087 puts_filtered ("Debugging a target over a serial line.\n");
9088}
9089\f
9090/* Stuff for dealing with the packets which are part of this protocol.
9091 See comment at top of file for details. */
9092
1927e618
PA
9093/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9094 error to higher layers. Called when a serial error is detected.
9095 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9096 the system error message for errno at function entry and final dot
9097 for output compatibility with throw_perror_with_name. */
1927e618
PA
9098
9099static void
5b6d1e4f 9100unpush_and_perror (remote_target *target, const char *string)
1927e618 9101{
d6cb50a2 9102 int saved_errno = errno;
1927e618 9103
5b6d1e4f 9104 remote_unpush_target (target);
d6cb50a2
JK
9105 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9106 safe_strerror (saved_errno));
1927e618
PA
9107}
9108
048094ac
PA
9109/* Read a single character from the remote end. The current quit
9110 handler is overridden to avoid quitting in the middle of packet
9111 sequence, as that would break communication with the remote server.
9112 See remote_serial_quit_handler for more detail. */
c906108c 9113
6b8edb51
PA
9114int
9115remote_target::readchar (int timeout)
c906108c
SS
9116{
9117 int ch;
5d93a237 9118 struct remote_state *rs = get_remote_state ();
048094ac 9119
2ec845e7 9120 {
6b8edb51
PA
9121 scoped_restore restore_quit_target
9122 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9123 scoped_restore restore_quit
6b8edb51 9124 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9125
2ec845e7 9126 rs->got_ctrlc_during_io = 0;
c906108c 9127
2ec845e7 9128 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9129
2ec845e7
TT
9130 if (rs->got_ctrlc_during_io)
9131 set_quit_flag ();
9132 }
048094ac 9133
2acceee2 9134 if (ch >= 0)
0876f84a 9135 return ch;
2acceee2
JM
9136
9137 switch ((enum serial_rc) ch)
c906108c
SS
9138 {
9139 case SERIAL_EOF:
5b6d1e4f 9140 remote_unpush_target (this);
598d3636 9141 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9142 /* no return */
c906108c 9143 case SERIAL_ERROR:
5b6d1e4f
PA
9144 unpush_and_perror (this, _("Remote communication error. "
9145 "Target disconnected."));
2acceee2 9146 /* no return */
c906108c 9147 case SERIAL_TIMEOUT:
2acceee2 9148 break;
c906108c 9149 }
2acceee2 9150 return ch;
c906108c
SS
9151}
9152
c33e31fd 9153/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9154 writing fails. The current quit handler is overridden to avoid
9155 quitting in the middle of packet sequence, as that would break
9156 communication with the remote server. See
9157 remote_serial_quit_handler for more detail. */
c33e31fd 9158
6b8edb51
PA
9159void
9160remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9161{
5d93a237 9162 struct remote_state *rs = get_remote_state ();
048094ac 9163
6b8edb51
PA
9164 scoped_restore restore_quit_target
9165 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9166 scoped_restore restore_quit
6b8edb51 9167 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9168
9169 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9170
9171 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9172 {
5b6d1e4f
PA
9173 unpush_and_perror (this, _("Remote communication error. "
9174 "Target disconnected."));
c33e31fd 9175 }
048094ac
PA
9176
9177 if (rs->got_ctrlc_during_io)
9178 set_quit_flag ();
c33e31fd
PA
9179}
9180
b3ced9ba
PA
9181/* Return a string representing an escaped version of BUF, of len N.
9182 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9183
b3ced9ba 9184static std::string
6e5abd65
PA
9185escape_buffer (const char *buf, int n)
9186{
d7e74731 9187 string_file stb;
6e5abd65 9188
d7e74731
PA
9189 stb.putstrn (buf, n, '\\');
9190 return std::move (stb.string ());
6e5abd65
PA
9191}
9192
c906108c
SS
9193/* Display a null-terminated packet on stdout, for debugging, using C
9194 string notation. */
9195
9196static void
baa336ce 9197print_packet (const char *buf)
c906108c
SS
9198{
9199 puts_filtered ("\"");
43e526b9 9200 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9201 puts_filtered ("\"");
9202}
9203
9204int
6b8edb51 9205remote_target::putpkt (const char *buf)
c906108c
SS
9206{
9207 return putpkt_binary (buf, strlen (buf));
9208}
9209
6b8edb51
PA
9210/* Wrapper around remote_target::putpkt to avoid exporting
9211 remote_target. */
9212
9213int
9214putpkt (remote_target *remote, const char *buf)
9215{
9216 return remote->putpkt (buf);
9217}
9218
c906108c 9219/* Send a packet to the remote machine, with error checking. The data
23860348 9220 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9221 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9222 and for a possible /0 if we are debugging (remote_debug) and want
9223 to print the sent packet as a string. */
c906108c 9224
6b8edb51
PA
9225int
9226remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9227{
2d717e4f 9228 struct remote_state *rs = get_remote_state ();
c906108c
SS
9229 int i;
9230 unsigned char csum = 0;
b80406ac
TT
9231 gdb::def_vector<char> data (cnt + 6);
9232 char *buf2 = data.data ();
085dd6e6 9233
c906108c
SS
9234 int ch;
9235 int tcount = 0;
9236 char *p;
9237
e24a49d8
PA
9238 /* Catch cases like trying to read memory or listing threads while
9239 we're waiting for a stop reply. The remote server wouldn't be
9240 ready to handle this request, so we'd hang and timeout. We don't
9241 have to worry about this in synchronous mode, because in that
9242 case it's not possible to issue a command while the target is
74531fed
PA
9243 running. This is not a problem in non-stop mode, because in that
9244 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9245 if (!target_is_non_stop_p ()
9246 && target_is_async_p ()
9247 && rs->waiting_for_stop_reply)
9597b22a
DE
9248 {
9249 error (_("Cannot execute this command while the target is running.\n"
9250 "Use the \"interrupt\" command to stop the target\n"
9251 "and then try again."));
9252 }
e24a49d8 9253
2d717e4f
DJ
9254 /* We're sending out a new packet. Make sure we don't look at a
9255 stale cached response. */
9256 rs->cached_wait_status = 0;
9257
c906108c
SS
9258 /* Copy the packet into buffer BUF2, encapsulating it
9259 and giving it a checksum. */
9260
c906108c
SS
9261 p = buf2;
9262 *p++ = '$';
9263
9264 for (i = 0; i < cnt; i++)
9265 {
9266 csum += buf[i];
9267 *p++ = buf[i];
9268 }
9269 *p++ = '#';
9270 *p++ = tohex ((csum >> 4) & 0xf);
9271 *p++ = tohex (csum & 0xf);
9272
9273 /* Send it over and over until we get a positive ack. */
9274
9275 while (1)
9276 {
9277 int started_error_output = 0;
9278
9279 if (remote_debug)
9280 {
9281 *p = '\0';
b3ced9ba 9282
6f8976bf 9283 int len = (int) (p - buf2);
6cc8564b
LM
9284 int max_chars;
9285
9286 if (remote_packet_max_chars < 0)
9287 max_chars = len;
9288 else
9289 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9290
9291 std::string str
6cc8564b 9292 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf
YQ
9293
9294 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9295
6cc8564b 9296 if (len > max_chars)
567a3e54 9297 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9298 len - max_chars);
6f8976bf
YQ
9299
9300 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9301
0f71a2f6 9302 gdb_flush (gdb_stdlog);
c906108c 9303 }
c33e31fd 9304 remote_serial_write (buf2, p - buf2);
c906108c 9305
a6f3e723
SL
9306 /* If this is a no acks version of the remote protocol, send the
9307 packet and move on. */
9308 if (rs->noack_mode)
9309 break;
9310
74531fed
PA
9311 /* Read until either a timeout occurs (-2) or '+' is read.
9312 Handle any notification that arrives in the mean time. */
c906108c
SS
9313 while (1)
9314 {
9315 ch = readchar (remote_timeout);
9316
c5aa993b 9317 if (remote_debug)
c906108c
SS
9318 {
9319 switch (ch)
9320 {
9321 case '+':
1216fa2c 9322 case '-':
c906108c
SS
9323 case SERIAL_TIMEOUT:
9324 case '$':
74531fed 9325 case '%':
c906108c
SS
9326 if (started_error_output)
9327 {
9328 putchar_unfiltered ('\n');
9329 started_error_output = 0;
9330 }
9331 }
9332 }
9333
9334 switch (ch)
9335 {
9336 case '+':
9337 if (remote_debug)
0f71a2f6 9338 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9339 return 1;
1216fa2c
AC
9340 case '-':
9341 if (remote_debug)
9342 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9343 /* FALLTHROUGH */
c906108c 9344 case SERIAL_TIMEOUT:
c5aa993b 9345 tcount++;
c906108c 9346 if (tcount > 3)
b80406ac 9347 return 0;
23860348 9348 break; /* Retransmit buffer. */
c906108c
SS
9349 case '$':
9350 {
40e3f985 9351 if (remote_debug)
2bc416ba 9352 fprintf_unfiltered (gdb_stdlog,
23860348 9353 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9354 /* It's probably an old response sent because an ACK
9355 was lost. Gobble up the packet and ack it so it
9356 doesn't get retransmitted when we resend this
9357 packet. */
6d820c5c 9358 skip_frame ();
c33e31fd 9359 remote_serial_write ("+", 1);
23860348 9360 continue; /* Now, go look for +. */
c906108c 9361 }
74531fed
PA
9362
9363 case '%':
9364 {
9365 int val;
9366
9367 /* If we got a notification, handle it, and go back to looking
9368 for an ack. */
9369 /* We've found the start of a notification. Now
9370 collect the data. */
8d64371b 9371 val = read_frame (&rs->buf);
74531fed
PA
9372 if (val >= 0)
9373 {
9374 if (remote_debug)
9375 {
8d64371b 9376 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9377
6e5abd65
PA
9378 fprintf_unfiltered (gdb_stdlog,
9379 " Notification received: %s\n",
b3ced9ba 9380 str.c_str ());
74531fed 9381 }
8d64371b 9382 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9383 /* We're in sync now, rewait for the ack. */
9384 tcount = 0;
9385 }
9386 else
9387 {
9388 if (remote_debug)
9389 {
9390 if (!started_error_output)
9391 {
9392 started_error_output = 1;
9393 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9394 }
9395 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9396 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9397 }
9398 }
9399 continue;
9400 }
9401 /* fall-through */
c906108c
SS
9402 default:
9403 if (remote_debug)
9404 {
9405 if (!started_error_output)
9406 {
9407 started_error_output = 1;
0f71a2f6 9408 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9409 }
0f71a2f6 9410 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9411 }
9412 continue;
9413 }
23860348 9414 break; /* Here to retransmit. */
c906108c
SS
9415 }
9416
9417#if 0
9418 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9419 able to get out next time we call QUIT, without anything as
9420 violent as interrupt_query. If we want to provide a way out of
9421 here without getting to the next QUIT, it should be based on
9422 hitting ^C twice as in remote_wait. */
c906108c
SS
9423 if (quit_flag)
9424 {
9425 quit_flag = 0;
9426 interrupt_query ();
9427 }
9428#endif
9429 }
a5c0808e 9430
a6f3e723 9431 return 0;
c906108c
SS
9432}
9433
6d820c5c
DJ
9434/* Come here after finding the start of a frame when we expected an
9435 ack. Do our best to discard the rest of this packet. */
9436
6b8edb51
PA
9437void
9438remote_target::skip_frame ()
6d820c5c
DJ
9439{
9440 int c;
9441
9442 while (1)
9443 {
9444 c = readchar (remote_timeout);
9445 switch (c)
9446 {
9447 case SERIAL_TIMEOUT:
9448 /* Nothing we can do. */
9449 return;
9450 case '#':
9451 /* Discard the two bytes of checksum and stop. */
9452 c = readchar (remote_timeout);
9453 if (c >= 0)
9454 c = readchar (remote_timeout);
9455
9456 return;
9457 case '*': /* Run length encoding. */
9458 /* Discard the repeat count. */
9459 c = readchar (remote_timeout);
9460 if (c < 0)
9461 return;
9462 break;
9463 default:
9464 /* A regular character. */
9465 break;
9466 }
9467 }
9468}
9469
c906108c 9470/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9471 into *BUF, verifying the checksum, length, and handling run-length
9472 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9473 expand *BUF.
c906108c 9474
c2d11a7d
JM
9475 Returns -1 on error, number of characters in buffer (ignoring the
9476 trailing NULL) on success. (could be extended to return one of the
23860348 9477 SERIAL status indications). */
c2d11a7d 9478
6b8edb51 9479long
8d64371b 9480remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9481{
9482 unsigned char csum;
c2d11a7d 9483 long bc;
c906108c 9484 int c;
8d64371b 9485 char *buf = buf_p->data ();
a6f3e723 9486 struct remote_state *rs = get_remote_state ();
c906108c
SS
9487
9488 csum = 0;
c2d11a7d 9489 bc = 0;
c906108c
SS
9490
9491 while (1)
9492 {
9493 c = readchar (remote_timeout);
c906108c
SS
9494 switch (c)
9495 {
9496 case SERIAL_TIMEOUT:
9497 if (remote_debug)
0f71a2f6 9498 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9499 return -1;
c906108c
SS
9500 case '$':
9501 if (remote_debug)
0f71a2f6
JM
9502 fputs_filtered ("Saw new packet start in middle of old one\n",
9503 gdb_stdlog);
23860348 9504 return -1; /* Start a new packet, count retries. */
c906108c
SS
9505 case '#':
9506 {
9507 unsigned char pktcsum;
e1b09194
AC
9508 int check_0 = 0;
9509 int check_1 = 0;
c906108c 9510
c2d11a7d 9511 buf[bc] = '\0';
c906108c 9512
e1b09194
AC
9513 check_0 = readchar (remote_timeout);
9514 if (check_0 >= 0)
9515 check_1 = readchar (remote_timeout);
802188a7 9516
e1b09194
AC
9517 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9518 {
9519 if (remote_debug)
2bc416ba 9520 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9521 gdb_stdlog);
e1b09194
AC
9522 return -1;
9523 }
9524 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9525 {
9526 if (remote_debug)
2bc416ba 9527 fputs_filtered ("Communication error in checksum\n",
23860348 9528 gdb_stdlog);
40e3f985
FN
9529 return -1;
9530 }
c906108c 9531
a6f3e723
SL
9532 /* Don't recompute the checksum; with no ack packets we
9533 don't have any way to indicate a packet retransmission
9534 is necessary. */
9535 if (rs->noack_mode)
9536 return bc;
9537
e1b09194 9538 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9539 if (csum == pktcsum)
c2d11a7d 9540 return bc;
c906108c 9541
c5aa993b 9542 if (remote_debug)
c906108c 9543 {
b3ced9ba 9544 std::string str = escape_buffer (buf, bc);
6e5abd65 9545
6e5abd65 9546 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9547 "Bad checksum, sentsum=0x%x, "
9548 "csum=0x%x, buf=%s\n",
b3ced9ba 9549 pktcsum, csum, str.c_str ());
c906108c 9550 }
c2d11a7d 9551 /* Number of characters in buffer ignoring trailing
23860348 9552 NULL. */
c2d11a7d 9553 return -1;
c906108c 9554 }
23860348 9555 case '*': /* Run length encoding. */
c2c6d25f
JM
9556 {
9557 int repeat;
c906108c 9558
a744cf53 9559 csum += c;
b4501125
AC
9560 c = readchar (remote_timeout);
9561 csum += c;
23860348 9562 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9563
23860348 9564 /* The character before ``*'' is repeated. */
c2d11a7d 9565
6d820c5c 9566 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9567 {
8d64371b 9568 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9569 {
9570 /* Make some more room in the buffer. */
8d64371b
TT
9571 buf_p->resize (buf_p->size () + repeat);
9572 buf = buf_p->data ();
6d820c5c
DJ
9573 }
9574
c2d11a7d
JM
9575 memset (&buf[bc], buf[bc - 1], repeat);
9576 bc += repeat;
c2c6d25f
JM
9577 continue;
9578 }
9579
c2d11a7d 9580 buf[bc] = '\0';
6d820c5c 9581 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9582 return -1;
c2c6d25f 9583 }
c906108c 9584 default:
8d64371b 9585 if (bc >= buf_p->size () - 1)
c906108c 9586 {
6d820c5c 9587 /* Make some more room in the buffer. */
8d64371b
TT
9588 buf_p->resize (buf_p->size () * 2);
9589 buf = buf_p->data ();
c906108c
SS
9590 }
9591
6d820c5c
DJ
9592 buf[bc++] = c;
9593 csum += c;
9594 continue;
c906108c
SS
9595 }
9596 }
9597}
9598
ed2b7c17
TT
9599/* Set this to the maximum number of seconds to wait instead of waiting forever
9600 in target_wait(). If this timer times out, then it generates an error and
9601 the command is aborted. This replaces most of the need for timeouts in the
9602 GDB test suite, and makes it possible to distinguish between a hung target
9603 and one with slow communications. */
9604
9605static int watchdog = 0;
9606static void
9607show_watchdog (struct ui_file *file, int from_tty,
9608 struct cmd_list_element *c, const char *value)
9609{
9610 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9611}
9612
c906108c 9613/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9614 store it in *BUF. Resize *BUF if necessary to hold the result. If
9615 FOREVER, wait forever rather than timing out; this is used (in
9616 synchronous mode) to wait for a target that is is executing user
9617 code to stop. */
d9fcf2fb
JM
9618/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9619 don't have to change all the calls to getpkt to deal with the
9620 return value, because at the moment I don't know what the right
23860348 9621 thing to do it for those. */
6b8edb51 9622
c906108c 9623void
8d64371b 9624remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9625{
8d64371b 9626 getpkt_sane (buf, forever);
d9fcf2fb
JM
9627}
9628
9629
9630/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9631 store it in *BUF. Resize *BUF if necessary to hold the result. If
9632 FOREVER, wait forever rather than timing out; this is used (in
9633 synchronous mode) to wait for a target that is is executing user
9634 code to stop. If FOREVER == 0, this function is allowed to time
9635 out gracefully and return an indication of this to the caller.
9636 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9637 consider receiving a notification enough reason to return to the
9638 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9639 holds a notification or not (a regular packet). */
74531fed 9640
6b8edb51 9641int
8d64371b 9642remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9643 int forever, int expecting_notif,
9644 int *is_notif)
c906108c 9645{
2d717e4f 9646 struct remote_state *rs = get_remote_state ();
c906108c
SS
9647 int c;
9648 int tries;
9649 int timeout;
df4b58fe 9650 int val = -1;
c906108c 9651
2d717e4f
DJ
9652 /* We're reading a new response. Make sure we don't look at a
9653 previously cached response. */
9654 rs->cached_wait_status = 0;
9655
8d64371b 9656 strcpy (buf->data (), "timeout");
c906108c
SS
9657
9658 if (forever)
74531fed
PA
9659 timeout = watchdog > 0 ? watchdog : -1;
9660 else if (expecting_notif)
9661 timeout = 0; /* There should already be a char in the buffer. If
9662 not, bail out. */
c906108c
SS
9663 else
9664 timeout = remote_timeout;
9665
9666#define MAX_TRIES 3
9667
74531fed
PA
9668 /* Process any number of notifications, and then return when
9669 we get a packet. */
9670 for (;;)
c906108c 9671 {
d9c43928 9672 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9673 times. */
9674 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9675 {
74531fed
PA
9676 /* This can loop forever if the remote side sends us
9677 characters continuously, but if it pauses, we'll get
9678 SERIAL_TIMEOUT from readchar because of timeout. Then
9679 we'll count that as a retry.
9680
9681 Note that even when forever is set, we will only wait
9682 forever prior to the start of a packet. After that, we
9683 expect characters to arrive at a brisk pace. They should
9684 show up within remote_timeout intervals. */
9685 do
9686 c = readchar (timeout);
9687 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9688
9689 if (c == SERIAL_TIMEOUT)
9690 {
74531fed
PA
9691 if (expecting_notif)
9692 return -1; /* Don't complain, it's normal to not get
9693 anything in this case. */
9694
23860348 9695 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9696 {
5b6d1e4f 9697 remote_unpush_target (this);
598d3636
JK
9698 throw_error (TARGET_CLOSE_ERROR,
9699 _("Watchdog timeout has expired. "
9700 "Target detached."));
c906108c 9701 }
c906108c 9702 if (remote_debug)
0f71a2f6 9703 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9704 }
74531fed
PA
9705 else
9706 {
9707 /* We've found the start of a packet or notification.
9708 Now collect the data. */
8d64371b 9709 val = read_frame (buf);
74531fed
PA
9710 if (val >= 0)
9711 break;
9712 }
9713
c33e31fd 9714 remote_serial_write ("-", 1);
c906108c 9715 }
c906108c 9716
74531fed
PA
9717 if (tries > MAX_TRIES)
9718 {
9719 /* We have tried hard enough, and just can't receive the
9720 packet/notification. Give up. */
9721 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9722
74531fed
PA
9723 /* Skip the ack char if we're in no-ack mode. */
9724 if (!rs->noack_mode)
c33e31fd 9725 remote_serial_write ("+", 1);
74531fed
PA
9726 return -1;
9727 }
c906108c 9728
74531fed
PA
9729 /* If we got an ordinary packet, return that to our caller. */
9730 if (c == '$')
c906108c
SS
9731 {
9732 if (remote_debug)
43e526b9 9733 {
6cc8564b
LM
9734 int max_chars;
9735
9736 if (remote_packet_max_chars < 0)
9737 max_chars = val;
9738 else
9739 max_chars = remote_packet_max_chars;
9740
6f8976bf 9741 std::string str
8d64371b 9742 = escape_buffer (buf->data (),
6cc8564b 9743 std::min (val, max_chars));
6f8976bf
YQ
9744
9745 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9746 str.c_str ());
9747
6cc8564b 9748 if (val > max_chars)
567a3e54 9749 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9750 val - max_chars);
6e5abd65 9751
6f8976bf 9752 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9753 }
a6f3e723
SL
9754
9755 /* Skip the ack char if we're in no-ack mode. */
9756 if (!rs->noack_mode)
c33e31fd 9757 remote_serial_write ("+", 1);
fee9eda9
YQ
9758 if (is_notif != NULL)
9759 *is_notif = 0;
0876f84a 9760 return val;
c906108c
SS
9761 }
9762
74531fed
PA
9763 /* If we got a notification, handle it, and go back to looking
9764 for a packet. */
9765 else
9766 {
9767 gdb_assert (c == '%');
9768
9769 if (remote_debug)
9770 {
8d64371b 9771 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9772
6e5abd65
PA
9773 fprintf_unfiltered (gdb_stdlog,
9774 " Notification received: %s\n",
b3ced9ba 9775 str.c_str ());
74531fed 9776 }
fee9eda9
YQ
9777 if (is_notif != NULL)
9778 *is_notif = 1;
c906108c 9779
8d64371b 9780 handle_notification (rs->notif_state, buf->data ());
c906108c 9781
74531fed 9782 /* Notifications require no acknowledgement. */
a6f3e723 9783
74531fed 9784 if (expecting_notif)
fee9eda9 9785 return val;
74531fed
PA
9786 }
9787 }
9788}
9789
6b8edb51 9790int
8d64371b 9791remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9792{
8d64371b 9793 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9794}
9795
6b8edb51 9796int
8d64371b 9797remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9798 int *is_notif)
74531fed 9799{
8d64371b 9800 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9801}
74531fed 9802
cbb8991c
DB
9803/* Kill any new fork children of process PID that haven't been
9804 processed by follow_fork. */
9805
6b8edb51
PA
9806void
9807remote_target::kill_new_fork_children (int pid)
cbb8991c 9808{
6b8edb51 9809 remote_state *rs = get_remote_state ();
cbb8991c 9810 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9811
9812 /* Kill the fork child threads of any threads in process PID
9813 that are stopped at a fork event. */
5b6d1e4f 9814 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c
DB
9815 {
9816 struct target_waitstatus *ws = &thread->pending_follow;
9817
9818 if (is_pending_fork_parent (ws, pid, thread->ptid))
9819 {
953edf2b 9820 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9821 int res;
9822
6b8edb51 9823 res = remote_vkill (child_pid);
cbb8991c
DB
9824 if (res != 0)
9825 error (_("Can't kill fork child process %d"), child_pid);
9826 }
9827 }
9828
9829 /* Check for any pending fork events (not reported or processed yet)
9830 in process PID and kill those fork child threads as well. */
9831 remote_notif_get_pending_events (notif);
953edf2b
TT
9832 for (auto &event : rs->stop_reply_queue)
9833 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9834 {
9835 int child_pid = event->ws.value.related_pid.pid ();
9836 int res;
9837
9838 res = remote_vkill (child_pid);
9839 if (res != 0)
9840 error (_("Can't kill fork child process %d"), child_pid);
9841 }
cbb8991c
DB
9842}
9843
c906108c 9844\f
8020350c
DB
9845/* Target hook to kill the current inferior. */
9846
f6ac5f3d
PA
9847void
9848remote_target::kill ()
43ff13b4 9849{
8020350c 9850 int res = -1;
e99b03dc 9851 int pid = inferior_ptid.pid ();
8020350c 9852 struct remote_state *rs = get_remote_state ();
0fdf84ca 9853
8020350c 9854 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9855 {
8020350c
DB
9856 /* If we're stopped while forking and we haven't followed yet,
9857 kill the child task. We need to do this before killing the
9858 parent task because if this is a vfork then the parent will
9859 be sleeping. */
6b8edb51 9860 kill_new_fork_children (pid);
8020350c 9861
6b8edb51 9862 res = remote_vkill (pid);
8020350c 9863 if (res == 0)
0fdf84ca 9864 {
bc1e6c81 9865 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9866 return;
9867 }
8020350c 9868 }
0fdf84ca 9869
8020350c
DB
9870 /* If we are in 'target remote' mode and we are killing the only
9871 inferior, then we will tell gdbserver to exit and unpush the
9872 target. */
9873 if (res == -1 && !remote_multi_process_p (rs)
5b6d1e4f 9874 && number_of_live_inferiors (this) == 1)
8020350c
DB
9875 {
9876 remote_kill_k ();
9877
9878 /* We've killed the remote end, we get to mourn it. If we are
9879 not in extended mode, mourning the inferior also unpushes
9880 remote_ops from the target stack, which closes the remote
9881 connection. */
bc1e6c81 9882 target_mourn_inferior (inferior_ptid);
8020350c
DB
9883
9884 return;
0fdf84ca 9885 }
43ff13b4 9886
8020350c 9887 error (_("Can't kill process"));
43ff13b4
JM
9888}
9889
8020350c
DB
9890/* Send a kill request to the target using the 'vKill' packet. */
9891
6b8edb51
PA
9892int
9893remote_target::remote_vkill (int pid)
82f73884 9894{
4082afcc 9895 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9896 return -1;
9897
6b8edb51
PA
9898 remote_state *rs = get_remote_state ();
9899
82f73884 9900 /* Tell the remote target to detach. */
8d64371b 9901 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9902 putpkt (rs->buf);
8d64371b 9903 getpkt (&rs->buf, 0);
82f73884 9904
4082afcc
PA
9905 switch (packet_ok (rs->buf,
9906 &remote_protocol_packets[PACKET_vKill]))
9907 {
9908 case PACKET_OK:
9909 return 0;
9910 case PACKET_ERROR:
9911 return 1;
9912 case PACKET_UNKNOWN:
9913 return -1;
9914 default:
9915 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9916 }
82f73884
PA
9917}
9918
8020350c
DB
9919/* Send a kill request to the target using the 'k' packet. */
9920
6b8edb51
PA
9921void
9922remote_target::remote_kill_k ()
82f73884 9923{
8020350c
DB
9924 /* Catch errors so the user can quit from gdb even when we
9925 aren't on speaking terms with the remote system. */
a70b8144 9926 try
82f73884 9927 {
82f73884 9928 putpkt ("k");
82f73884 9929 }
230d2906 9930 catch (const gdb_exception_error &ex)
8020350c
DB
9931 {
9932 if (ex.error == TARGET_CLOSE_ERROR)
9933 {
9934 /* If we got an (EOF) error that caused the target
9935 to go away, then we're done, that's what we wanted.
9936 "k" is susceptible to cause a premature EOF, given
9937 that the remote server isn't actually required to
9938 reply to "k", and it can happen that it doesn't
9939 even get to reply ACK to the "k". */
9940 return;
9941 }
82f73884 9942
8020350c
DB
9943 /* Otherwise, something went wrong. We didn't actually kill
9944 the target. Just propagate the exception, and let the
9945 user or higher layers decide what to do. */
eedc3f4f 9946 throw;
8020350c 9947 }
82f73884
PA
9948}
9949
f6ac5f3d
PA
9950void
9951remote_target::mourn_inferior ()
c906108c 9952{
8020350c 9953 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9954
9607784a
PA
9955 /* We're no longer interested in notification events of an inferior
9956 that exited or was killed/detached. */
9957 discard_pending_stop_replies (current_inferior ());
9958
8020350c 9959 /* In 'target remote' mode with one inferior, we close the connection. */
5b6d1e4f 9960 if (!rs->extended && number_of_live_inferiors (this) <= 1)
8020350c 9961 {
5b6d1e4f 9962 remote_unpush_target (this);
8020350c
DB
9963 return;
9964 }
c906108c 9965
e24a49d8
PA
9966 /* In case we got here due to an error, but we're going to stay
9967 connected. */
9968 rs->waiting_for_stop_reply = 0;
9969
dc1981d7
PA
9970 /* If the current general thread belonged to the process we just
9971 detached from or has exited, the remote side current general
9972 thread becomes undefined. Considering a case like this:
9973
9974 - We just got here due to a detach.
9975 - The process that we're detaching from happens to immediately
9976 report a global breakpoint being hit in non-stop mode, in the
9977 same thread we had selected before.
9978 - GDB attaches to this process again.
9979 - This event happens to be the next event we handle.
9980
9981 GDB would consider that the current general thread didn't need to
9982 be set on the stub side (with Hg), since for all it knew,
9983 GENERAL_THREAD hadn't changed.
9984
9985 Notice that although in all-stop mode, the remote server always
9986 sets the current thread to the thread reporting the stop event,
9987 that doesn't happen in non-stop mode; in non-stop, the stub *must
9988 not* change the current thread when reporting a breakpoint hit,
9989 due to the decoupling of event reporting and event handling.
9990
9991 To keep things simple, we always invalidate our notion of the
9992 current thread. */
47f8a51d 9993 record_currthread (rs, minus_one_ptid);
dc1981d7 9994
8020350c 9995 /* Call common code to mark the inferior as not running. */
48aa3c27 9996 generic_mourn_inferior ();
2d717e4f 9997}
c906108c 9998
57810aa7 9999bool
f6ac5f3d 10000extended_remote_target::supports_disable_randomization ()
03583c20 10001{
4082afcc 10002 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
10003}
10004
6b8edb51
PA
10005void
10006remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
10007{
10008 struct remote_state *rs = get_remote_state ();
10009 char *reply;
10010
8d64371b
TT
10011 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10012 "QDisableRandomization:%x", val);
03583c20 10013 putpkt (rs->buf);
b6bb3468 10014 reply = remote_get_noisy_reply ();
03583c20
UW
10015 if (*reply == '\0')
10016 error (_("Target does not support QDisableRandomization."));
10017 if (strcmp (reply, "OK") != 0)
10018 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10019}
10020
6b8edb51
PA
10021int
10022remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
10023{
10024 struct remote_state *rs = get_remote_state ();
2d717e4f 10025 int len;
94585166 10026 const char *remote_exec_file = get_remote_exec_file ();
c906108c 10027
2d717e4f
DJ
10028 /* If the user has disabled vRun support, or we have detected that
10029 support is not available, do not try it. */
4082afcc 10030 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 10031 return -1;
424163ea 10032
8d64371b
TT
10033 strcpy (rs->buf.data (), "vRun;");
10034 len = strlen (rs->buf.data ());
c906108c 10035
2d717e4f
DJ
10036 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10037 error (_("Remote file name too long for run packet"));
8d64371b 10038 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 10039 strlen (remote_exec_file));
2d717e4f 10040
7c5ded6a 10041 if (!args.empty ())
2d717e4f 10042 {
2d717e4f 10043 int i;
2d717e4f 10044
773a1edc 10045 gdb_argv argv (args.c_str ());
2d717e4f
DJ
10046 for (i = 0; argv[i] != NULL; i++)
10047 {
10048 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10049 error (_("Argument list too long for run packet"));
10050 rs->buf[len++] = ';';
8d64371b 10051 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 10052 strlen (argv[i]));
2d717e4f 10053 }
2d717e4f
DJ
10054 }
10055
10056 rs->buf[len++] = '\0';
10057
10058 putpkt (rs->buf);
8d64371b 10059 getpkt (&rs->buf, 0);
2d717e4f 10060
4082afcc 10061 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 10062 {
4082afcc 10063 case PACKET_OK:
3405876a 10064 /* We have a wait response. All is well. */
2d717e4f 10065 return 0;
4082afcc
PA
10066 case PACKET_UNKNOWN:
10067 return -1;
10068 case PACKET_ERROR:
2d717e4f
DJ
10069 if (remote_exec_file[0] == '\0')
10070 error (_("Running the default executable on the remote target failed; "
10071 "try \"set remote exec-file\"?"));
10072 else
10073 error (_("Running \"%s\" on the remote target failed"),
10074 remote_exec_file);
4082afcc
PA
10075 default:
10076 gdb_assert_not_reached (_("bad switch"));
2d717e4f 10077 }
c906108c
SS
10078}
10079
0a2dde4a
SDJ
10080/* Helper function to send set/unset environment packets. ACTION is
10081 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10082 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10083 sent. */
10084
6b8edb51
PA
10085void
10086remote_target::send_environment_packet (const char *action,
10087 const char *packet,
10088 const char *value)
0a2dde4a 10089{
6b8edb51
PA
10090 remote_state *rs = get_remote_state ();
10091
0a2dde4a
SDJ
10092 /* Convert the environment variable to an hex string, which
10093 is the best format to be transmitted over the wire. */
10094 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10095 strlen (value));
10096
8d64371b 10097 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10098 "%s:%s", packet, encoded_value.c_str ());
10099
10100 putpkt (rs->buf);
8d64371b
TT
10101 getpkt (&rs->buf, 0);
10102 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10103 warning (_("Unable to %s environment variable '%s' on remote."),
10104 action, value);
10105}
10106
10107/* Helper function to handle the QEnvironment* packets. */
10108
6b8edb51
PA
10109void
10110remote_target::extended_remote_environment_support ()
0a2dde4a 10111{
6b8edb51
PA
10112 remote_state *rs = get_remote_state ();
10113
0a2dde4a
SDJ
10114 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10115 {
10116 putpkt ("QEnvironmentReset");
8d64371b
TT
10117 getpkt (&rs->buf, 0);
10118 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10119 warning (_("Unable to reset environment on remote."));
10120 }
10121
10122 gdb_environ *e = &current_inferior ()->environment;
10123
10124 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10125 for (const std::string &el : e->user_set_env ())
6b8edb51 10126 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10127 el.c_str ());
10128
10129 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10130 for (const std::string &el : e->user_unset_env ())
6b8edb51 10131 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10132}
10133
bc3b087d
SDJ
10134/* Helper function to set the current working directory for the
10135 inferior in the remote target. */
10136
6b8edb51
PA
10137void
10138remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10139{
10140 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10141 {
10142 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10143 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10144
10145 if (inferior_cwd != NULL)
10146 {
10147 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10148 strlen (inferior_cwd));
10149
8d64371b 10150 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10151 "QSetWorkingDir:%s", hexpath.c_str ());
10152 }
10153 else
10154 {
10155 /* An empty inferior_cwd means that the user wants us to
10156 reset the remote server's inferior's cwd. */
8d64371b 10157 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10158 "QSetWorkingDir:");
10159 }
10160
10161 putpkt (rs->buf);
8d64371b 10162 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10163 if (packet_ok (rs->buf,
10164 &remote_protocol_packets[PACKET_QSetWorkingDir])
10165 != PACKET_OK)
10166 error (_("\
10167Remote replied unexpectedly while setting the inferior's working\n\
10168directory: %s"),
8d64371b 10169 rs->buf.data ());
bc3b087d
SDJ
10170
10171 }
10172}
10173
2d717e4f
DJ
10174/* In the extended protocol we want to be able to do things like
10175 "run" and have them basically work as expected. So we need
10176 a special create_inferior function. We support changing the
10177 executable file and the command line arguments, but not the
10178 environment. */
10179
f6ac5f3d
PA
10180void
10181extended_remote_target::create_inferior (const char *exec_file,
10182 const std::string &args,
10183 char **env, int from_tty)
43ff13b4 10184{
3405876a
PA
10185 int run_worked;
10186 char *stop_reply;
10187 struct remote_state *rs = get_remote_state ();
94585166 10188 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10189
43ff13b4 10190 /* If running asynchronously, register the target file descriptor
23860348 10191 with the event loop. */
75c99385 10192 if (target_can_async_p ())
6a3753b3 10193 target_async (1);
43ff13b4 10194
03583c20 10195 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10196 if (supports_disable_randomization ())
03583c20
UW
10197 extended_remote_disable_randomization (disable_randomization);
10198
aefd8b33
SDJ
10199 /* If startup-with-shell is on, we inform gdbserver to start the
10200 remote inferior using a shell. */
10201 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10202 {
8d64371b 10203 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10204 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10205 putpkt (rs->buf);
8d64371b
TT
10206 getpkt (&rs->buf, 0);
10207 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10208 error (_("\
10209Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10210 rs->buf.data ());
aefd8b33
SDJ
10211 }
10212
6b8edb51 10213 extended_remote_environment_support ();
0a2dde4a 10214
6b8edb51 10215 extended_remote_set_inferior_cwd ();
bc3b087d 10216
43ff13b4 10217 /* Now restart the remote server. */
3405876a
PA
10218 run_worked = extended_remote_run (args) != -1;
10219 if (!run_worked)
2d717e4f
DJ
10220 {
10221 /* vRun was not supported. Fail if we need it to do what the
10222 user requested. */
10223 if (remote_exec_file[0])
10224 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10225 if (!args.empty ())
65e65158 10226 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10227
2d717e4f
DJ
10228 /* Fall back to "R". */
10229 extended_remote_restart ();
10230 }
424163ea 10231
3405876a 10232 /* vRun's success return is a stop reply. */
8d64371b 10233 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10234 add_current_inferior_and_thread (stop_reply);
c0a2216e 10235
2d717e4f
DJ
10236 /* Get updated offsets, if the stub uses qOffsets. */
10237 get_offsets ();
2d717e4f 10238}
c906108c 10239\f
c5aa993b 10240
b775012e
LM
10241/* Given a location's target info BP_TGT and the packet buffer BUF, output
10242 the list of conditions (in agent expression bytecode format), if any, the
10243 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10244 started from BUF and ended at BUF_END. */
b775012e
LM
10245
10246static int
10247remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10248 struct bp_target_info *bp_tgt, char *buf,
10249 char *buf_end)
b775012e 10250{
3cde5c42 10251 if (bp_tgt->conditions.empty ())
b775012e
LM
10252 return 0;
10253
10254 buf += strlen (buf);
bba74b36 10255 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10256 buf++;
10257
83621223 10258 /* Send conditions to the target. */
d538e36d 10259 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10260 {
bba74b36 10261 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10262 buf += strlen (buf);
3cde5c42 10263 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10264 buf = pack_hex_byte (buf, aexpr->buf[i]);
10265 *buf = '\0';
10266 }
b775012e
LM
10267 return 0;
10268}
10269
d3ce09f5
SS
10270static void
10271remote_add_target_side_commands (struct gdbarch *gdbarch,
10272 struct bp_target_info *bp_tgt, char *buf)
10273{
3cde5c42 10274 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10275 return;
10276
10277 buf += strlen (buf);
10278
10279 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10280 buf += strlen (buf);
10281
10282 /* Concatenate all the agent expressions that are commands into the
10283 cmds parameter. */
df97be55 10284 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10285 {
10286 sprintf (buf, "X%x,", aexpr->len);
10287 buf += strlen (buf);
3cde5c42 10288 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10289 buf = pack_hex_byte (buf, aexpr->buf[i]);
10290 *buf = '\0';
10291 }
d3ce09f5
SS
10292}
10293
8181d85f
DJ
10294/* Insert a breakpoint. On targets that have software breakpoint
10295 support, we ask the remote target to do the work; on targets
10296 which don't, we insert a traditional memory breakpoint. */
c906108c 10297
f6ac5f3d
PA
10298int
10299remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10300 struct bp_target_info *bp_tgt)
c906108c 10301{
d471ea57
AC
10302 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10303 If it succeeds, then set the support to PACKET_ENABLE. If it
10304 fails, and the user has explicitly requested the Z support then
23860348 10305 report an error, otherwise, mark it disabled and go on. */
802188a7 10306
4082afcc 10307 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10308 {
0d5ed153 10309 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10310 struct remote_state *rs;
bba74b36 10311 char *p, *endbuf;
4fff2411 10312
28439a30
PA
10313 /* Make sure the remote is pointing at the right process, if
10314 necessary. */
10315 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10316 set_general_process ();
10317
4fff2411 10318 rs = get_remote_state ();
8d64371b
TT
10319 p = rs->buf.data ();
10320 endbuf = p + get_remote_packet_size ();
802188a7 10321
96baa820
JM
10322 *(p++) = 'Z';
10323 *(p++) = '0';
10324 *(p++) = ',';
7c0f6dcc 10325 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10326 p += hexnumstr (p, addr);
579c6ad9 10327 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10328
f6ac5f3d 10329 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10330 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10331
f6ac5f3d 10332 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10333 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10334
6d820c5c 10335 putpkt (rs->buf);
8d64371b 10336 getpkt (&rs->buf, 0);
96baa820 10337
6d820c5c 10338 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10339 {
d471ea57
AC
10340 case PACKET_ERROR:
10341 return -1;
10342 case PACKET_OK:
10343 return 0;
10344 case PACKET_UNKNOWN:
10345 break;
96baa820
JM
10346 }
10347 }
c906108c 10348
0000e5cc
PA
10349 /* If this breakpoint has target-side commands but this stub doesn't
10350 support Z0 packets, throw error. */
3cde5c42 10351 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10352 throw_error (NOT_SUPPORTED_ERROR, _("\
10353Target doesn't support breakpoints that have target side commands."));
10354
f6ac5f3d 10355 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10356}
10357
f6ac5f3d
PA
10358int
10359remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10360 struct bp_target_info *bp_tgt,
10361 enum remove_bp_reason reason)
c906108c 10362{
8181d85f 10363 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10364 struct remote_state *rs = get_remote_state ();
96baa820 10365
4082afcc 10366 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10367 {
8d64371b
TT
10368 char *p = rs->buf.data ();
10369 char *endbuf = p + get_remote_packet_size ();
802188a7 10370
28439a30
PA
10371 /* Make sure the remote is pointing at the right process, if
10372 necessary. */
10373 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10374 set_general_process ();
10375
96baa820
JM
10376 *(p++) = 'z';
10377 *(p++) = '0';
10378 *(p++) = ',';
10379
8181d85f
DJ
10380 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10381 p += hexnumstr (p, addr);
579c6ad9 10382 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10383
6d820c5c 10384 putpkt (rs->buf);
8d64371b 10385 getpkt (&rs->buf, 0);
96baa820 10386
6d820c5c 10387 return (rs->buf[0] == 'E');
96baa820
JM
10388 }
10389
f6ac5f3d 10390 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10391}
10392
f486487f 10393static enum Z_packet_type
d471ea57
AC
10394watchpoint_to_Z_packet (int type)
10395{
10396 switch (type)
10397 {
10398 case hw_write:
bb858e6a 10399 return Z_PACKET_WRITE_WP;
d471ea57
AC
10400 break;
10401 case hw_read:
bb858e6a 10402 return Z_PACKET_READ_WP;
d471ea57
AC
10403 break;
10404 case hw_access:
bb858e6a 10405 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10406 break;
10407 default:
8e65ff28 10408 internal_error (__FILE__, __LINE__,
e2e0b3e5 10409 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10410 }
10411}
10412
f6ac5f3d
PA
10413int
10414remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10415 enum target_hw_bp_type type, struct expression *cond)
96baa820 10416{
d01949b6 10417 struct remote_state *rs = get_remote_state ();
8d64371b 10418 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10419 char *p;
d471ea57 10420 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10421
4082afcc 10422 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10423 return 1;
802188a7 10424
28439a30
PA
10425 /* Make sure the remote is pointing at the right process, if
10426 necessary. */
10427 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10428 set_general_process ();
10429
8d64371b
TT
10430 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10431 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10432 addr = remote_address_masked (addr);
10433 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10434 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10435
6d820c5c 10436 putpkt (rs->buf);
8d64371b 10437 getpkt (&rs->buf, 0);
96baa820 10438
6d820c5c 10439 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10440 {
10441 case PACKET_ERROR:
d471ea57 10442 return -1;
85d721b8
PA
10443 case PACKET_UNKNOWN:
10444 return 1;
d471ea57
AC
10445 case PACKET_OK:
10446 return 0;
10447 }
8e65ff28 10448 internal_error (__FILE__, __LINE__,
e2e0b3e5 10449 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10450}
10451
57810aa7 10452bool
f6ac5f3d
PA
10453remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10454 CORE_ADDR start, int length)
283002cf
MR
10455{
10456 CORE_ADDR diff = remote_address_masked (addr - start);
10457
10458 return diff < length;
10459}
10460
d471ea57 10461
f6ac5f3d
PA
10462int
10463remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10464 enum target_hw_bp_type type, struct expression *cond)
96baa820 10465{
d01949b6 10466 struct remote_state *rs = get_remote_state ();
8d64371b 10467 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10468 char *p;
d471ea57
AC
10469 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10470
4082afcc 10471 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10472 return -1;
802188a7 10473
28439a30
PA
10474 /* Make sure the remote is pointing at the right process, if
10475 necessary. */
10476 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10477 set_general_process ();
10478
8d64371b
TT
10479 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10480 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10481 addr = remote_address_masked (addr);
10482 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10483 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10484 putpkt (rs->buf);
8d64371b 10485 getpkt (&rs->buf, 0);
96baa820 10486
6d820c5c 10487 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10488 {
10489 case PACKET_ERROR:
10490 case PACKET_UNKNOWN:
10491 return -1;
10492 case PACKET_OK:
10493 return 0;
10494 }
8e65ff28 10495 internal_error (__FILE__, __LINE__,
e2e0b3e5 10496 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10497}
10498
3c3bea1c 10499
60fcc1c3
TT
10500static int remote_hw_watchpoint_limit = -1;
10501static int remote_hw_watchpoint_length_limit = -1;
10502static int remote_hw_breakpoint_limit = -1;
d471ea57 10503
f6ac5f3d
PA
10504int
10505remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10506{
10507 if (remote_hw_watchpoint_length_limit == 0)
10508 return 0;
10509 else if (remote_hw_watchpoint_length_limit < 0)
10510 return 1;
10511 else if (len <= remote_hw_watchpoint_length_limit)
10512 return 1;
10513 else
10514 return 0;
10515}
10516
f6ac5f3d
PA
10517int
10518remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10519{
3c3bea1c
GS
10520 if (type == bp_hardware_breakpoint)
10521 {
10522 if (remote_hw_breakpoint_limit == 0)
10523 return 0;
501eef12
AC
10524 else if (remote_hw_breakpoint_limit < 0)
10525 return 1;
3c3bea1c
GS
10526 else if (cnt <= remote_hw_breakpoint_limit)
10527 return 1;
10528 }
10529 else
10530 {
10531 if (remote_hw_watchpoint_limit == 0)
10532 return 0;
501eef12
AC
10533 else if (remote_hw_watchpoint_limit < 0)
10534 return 1;
3c3bea1c
GS
10535 else if (ot)
10536 return -1;
10537 else if (cnt <= remote_hw_watchpoint_limit)
10538 return 1;
10539 }
10540 return -1;
10541}
10542
f7e6eed5
PA
10543/* The to_stopped_by_sw_breakpoint method of target remote. */
10544
57810aa7 10545bool
f6ac5f3d 10546remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10547{
799a2abe 10548 struct thread_info *thread = inferior_thread ();
f7e6eed5 10549
799a2abe 10550 return (thread->priv != NULL
7aabaf9d
SM
10551 && (get_remote_thread_info (thread)->stop_reason
10552 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10553}
10554
10555/* The to_supports_stopped_by_sw_breakpoint method of target
10556 remote. */
10557
57810aa7 10558bool
f6ac5f3d 10559remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10560{
f7e6eed5
PA
10561 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10562}
10563
10564/* The to_stopped_by_hw_breakpoint method of target remote. */
10565
57810aa7 10566bool
f6ac5f3d 10567remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10568{
799a2abe 10569 struct thread_info *thread = inferior_thread ();
f7e6eed5 10570
799a2abe 10571 return (thread->priv != NULL
7aabaf9d
SM
10572 && (get_remote_thread_info (thread)->stop_reason
10573 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10574}
10575
10576/* The to_supports_stopped_by_hw_breakpoint method of target
10577 remote. */
10578
57810aa7 10579bool
f6ac5f3d 10580remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10581{
f7e6eed5
PA
10582 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10583}
10584
57810aa7 10585bool
f6ac5f3d 10586remote_target::stopped_by_watchpoint ()
3c3bea1c 10587{
799a2abe 10588 struct thread_info *thread = inferior_thread ();
ee154bee 10589
799a2abe 10590 return (thread->priv != NULL
7aabaf9d
SM
10591 && (get_remote_thread_info (thread)->stop_reason
10592 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10593}
10594
57810aa7 10595bool
f6ac5f3d 10596remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10597{
799a2abe 10598 struct thread_info *thread = inferior_thread ();
a744cf53 10599
799a2abe 10600 if (thread->priv != NULL
7aabaf9d
SM
10601 && (get_remote_thread_info (thread)->stop_reason
10602 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10603 {
7aabaf9d 10604 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10605 return true;
4aa7a7f5
JJ
10606 }
10607
57810aa7 10608 return false;
3c3bea1c
GS
10609}
10610
10611
f6ac5f3d
PA
10612int
10613remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10614 struct bp_target_info *bp_tgt)
3c3bea1c 10615{
0d5ed153 10616 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10617 struct remote_state *rs;
bba74b36 10618 char *p, *endbuf;
dd61ec5c 10619 char *message;
3c3bea1c 10620
4082afcc 10621 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10622 return -1;
2bc416ba 10623
28439a30
PA
10624 /* Make sure the remote is pointing at the right process, if
10625 necessary. */
10626 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10627 set_general_process ();
10628
4fff2411 10629 rs = get_remote_state ();
8d64371b
TT
10630 p = rs->buf.data ();
10631 endbuf = p + get_remote_packet_size ();
4fff2411 10632
96baa820
JM
10633 *(p++) = 'Z';
10634 *(p++) = '1';
10635 *(p++) = ',';
802188a7 10636
0d5ed153 10637 addr = remote_address_masked (addr);
96baa820 10638 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10639 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10640
f6ac5f3d 10641 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10642 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10643
f6ac5f3d 10644 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10645 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10646
6d820c5c 10647 putpkt (rs->buf);
8d64371b 10648 getpkt (&rs->buf, 0);
96baa820 10649
6d820c5c 10650 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10651 {
10652 case PACKET_ERROR:
dd61ec5c
MW
10653 if (rs->buf[1] == '.')
10654 {
8d64371b 10655 message = strchr (&rs->buf[2], '.');
dd61ec5c 10656 if (message)
0316657e 10657 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10658 }
10659 return -1;
d471ea57
AC
10660 case PACKET_UNKNOWN:
10661 return -1;
10662 case PACKET_OK:
10663 return 0;
10664 }
8e65ff28 10665 internal_error (__FILE__, __LINE__,
e2e0b3e5 10666 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10667}
10668
d471ea57 10669
f6ac5f3d
PA
10670int
10671remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10672 struct bp_target_info *bp_tgt)
96baa820 10673{
8181d85f 10674 CORE_ADDR addr;
d01949b6 10675 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10676 char *p = rs->buf.data ();
10677 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10678
4082afcc 10679 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10680 return -1;
802188a7 10681
28439a30
PA
10682 /* Make sure the remote is pointing at the right process, if
10683 necessary. */
10684 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10685 set_general_process ();
10686
96baa820
JM
10687 *(p++) = 'z';
10688 *(p++) = '1';
10689 *(p++) = ',';
802188a7 10690
8181d85f 10691 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10692 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10693 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10694
6d820c5c 10695 putpkt (rs->buf);
8d64371b 10696 getpkt (&rs->buf, 0);
802188a7 10697
6d820c5c 10698 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10699 {
10700 case PACKET_ERROR:
10701 case PACKET_UNKNOWN:
10702 return -1;
10703 case PACKET_OK:
10704 return 0;
10705 }
8e65ff28 10706 internal_error (__FILE__, __LINE__,
e2e0b3e5 10707 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10708}
96baa820 10709
4a5e7a5b
PA
10710/* Verify memory using the "qCRC:" request. */
10711
f6ac5f3d
PA
10712int
10713remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10714{
10715 struct remote_state *rs = get_remote_state ();
10716 unsigned long host_crc, target_crc;
10717 char *tmp;
10718
936d2992
PA
10719 /* It doesn't make sense to use qCRC if the remote target is
10720 connected but not running. */
55f6301a
TT
10721 if (target_has_execution ()
10722 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
936d2992
PA
10723 {
10724 enum packet_result result;
28439a30 10725
936d2992
PA
10726 /* Make sure the remote is pointing at the right process. */
10727 set_general_process ();
4a5e7a5b 10728
936d2992 10729 /* FIXME: assumes lma can fit into long. */
8d64371b 10730 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10731 (long) lma, (long) size);
10732 putpkt (rs->buf);
4a5e7a5b 10733
936d2992
PA
10734 /* Be clever; compute the host_crc before waiting for target
10735 reply. */
10736 host_crc = xcrc32 (data, size, 0xffffffff);
10737
8d64371b 10738 getpkt (&rs->buf, 0);
4a5e7a5b 10739
936d2992
PA
10740 result = packet_ok (rs->buf,
10741 &remote_protocol_packets[PACKET_qCRC]);
10742 if (result == PACKET_ERROR)
10743 return -1;
10744 else if (result == PACKET_OK)
10745 {
10746 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10747 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10748
936d2992
PA
10749 return (host_crc == target_crc);
10750 }
10751 }
4a5e7a5b 10752
f6ac5f3d 10753 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10754}
10755
c906108c
SS
10756/* compare-sections command
10757
10758 With no arguments, compares each loadable section in the exec bfd
10759 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10760 Useful for verifying the image on the target against the exec file. */
e514a9d6 10761
c906108c 10762static void
ac88e2de 10763compare_sections_command (const char *args, int from_tty)
c906108c
SS
10764{
10765 asection *s;
ce359b09 10766 const char *sectname;
c906108c
SS
10767 bfd_size_type size;
10768 bfd_vma lma;
10769 int matched = 0;
10770 int mismatched = 0;
4a5e7a5b 10771 int res;
95cf3b38 10772 int read_only = 0;
c906108c
SS
10773
10774 if (!exec_bfd)
8a3fe4f8 10775 error (_("command cannot be used without an exec file"));
c906108c 10776
95cf3b38
DT
10777 if (args != NULL && strcmp (args, "-r") == 0)
10778 {
10779 read_only = 1;
10780 args = NULL;
10781 }
10782
c5aa993b 10783 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10784 {
10785 if (!(s->flags & SEC_LOAD))
0df8b418 10786 continue; /* Skip non-loadable section. */
c906108c 10787
95cf3b38
DT
10788 if (read_only && (s->flags & SEC_READONLY) == 0)
10789 continue; /* Skip writeable sections */
10790
fd361982 10791 size = bfd_section_size (s);
c906108c 10792 if (size == 0)
0df8b418 10793 continue; /* Skip zero-length section. */
c906108c 10794
fd361982 10795 sectname = bfd_section_name (s);
c906108c 10796 if (args && strcmp (args, sectname) != 0)
0df8b418 10797 continue; /* Not the section selected by user. */
c906108c 10798
0df8b418 10799 matched = 1; /* Do this section. */
c906108c 10800 lma = s->lma;
c906108c 10801
b80406ac
TT
10802 gdb::byte_vector sectdata (size);
10803 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10804
b80406ac 10805 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10806
10807 if (res == -1)
5af949e3 10808 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10809 paddress (target_gdbarch (), lma),
10810 paddress (target_gdbarch (), lma + size));
c906108c 10811
5af949e3 10812 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10813 paddress (target_gdbarch (), lma),
10814 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10815 if (res)
c906108c
SS
10816 printf_filtered ("matched.\n");
10817 else
c5aa993b
JM
10818 {
10819 printf_filtered ("MIS-MATCHED!\n");
10820 mismatched++;
10821 }
c906108c
SS
10822 }
10823 if (mismatched > 0)
936d2992 10824 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10825the loaded file\n"));
c906108c 10826 if (args && !matched)
a3f17187 10827 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10828}
10829
0e7f50da
UW
10830/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10831 into remote target. The number of bytes written to the remote
10832 target is returned, or -1 for error. */
10833
6b8edb51
PA
10834target_xfer_status
10835remote_target::remote_write_qxfer (const char *object_name,
10836 const char *annex, const gdb_byte *writebuf,
10837 ULONGEST offset, LONGEST len,
10838 ULONGEST *xfered_len,
10839 struct packet_config *packet)
0e7f50da
UW
10840{
10841 int i, buf_len;
10842 ULONGEST n;
0e7f50da
UW
10843 struct remote_state *rs = get_remote_state ();
10844 int max_size = get_memory_write_packet_size ();
10845
7cc244de 10846 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10847 return TARGET_XFER_E_IO;
0e7f50da
UW
10848
10849 /* Insert header. */
8d64371b 10850 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10851 "qXfer:%s:write:%s:%s:",
10852 object_name, annex ? annex : "",
10853 phex_nz (offset, sizeof offset));
10854 max_size -= (i + 1);
10855
10856 /* Escape as much data as fits into rs->buf. */
10857 buf_len = remote_escape_output
8d64371b 10858 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10859
8d64371b
TT
10860 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10861 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10862 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10863 return TARGET_XFER_E_IO;
0e7f50da 10864
8d64371b 10865 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10866
10867 *xfered_len = n;
92ffd475 10868 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10869}
10870
0876f84a
DJ
10871/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10872 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10873 number of bytes read is returned, or 0 for EOF, or -1 for error.
10874 The number of bytes read may be less than LEN without indicating an
10875 EOF. PACKET is checked and updated to indicate whether the remote
10876 target supports this object. */
10877
6b8edb51
PA
10878target_xfer_status
10879remote_target::remote_read_qxfer (const char *object_name,
10880 const char *annex,
10881 gdb_byte *readbuf, ULONGEST offset,
10882 LONGEST len,
10883 ULONGEST *xfered_len,
10884 struct packet_config *packet)
0876f84a 10885{
0876f84a 10886 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10887 LONGEST i, n, packet_len;
10888
7cc244de 10889 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10890 return TARGET_XFER_E_IO;
0876f84a
DJ
10891
10892 /* Check whether we've cached an end-of-object packet that matches
10893 this request. */
8e88304f 10894 if (rs->finished_object)
0876f84a 10895 {
8e88304f
TT
10896 if (strcmp (object_name, rs->finished_object) == 0
10897 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10898 && offset == rs->finished_offset)
9b409511
YQ
10899 return TARGET_XFER_EOF;
10900
0876f84a
DJ
10901
10902 /* Otherwise, we're now reading something different. Discard
10903 the cache. */
8e88304f
TT
10904 xfree (rs->finished_object);
10905 xfree (rs->finished_annex);
10906 rs->finished_object = NULL;
10907 rs->finished_annex = NULL;
0876f84a
DJ
10908 }
10909
10910 /* Request only enough to fit in a single packet. The actual data
10911 may not, since we don't know how much of it will need to be escaped;
10912 the target is free to respond with slightly less data. We subtract
10913 five to account for the response type and the protocol frame. */
768adc05 10914 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10915 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10916 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10917 object_name, annex ? annex : "",
10918 phex_nz (offset, sizeof offset),
10919 phex_nz (n, sizeof n));
10920 i = putpkt (rs->buf);
10921 if (i < 0)
2ed4b548 10922 return TARGET_XFER_E_IO;
0876f84a
DJ
10923
10924 rs->buf[0] = '\0';
8d64371b 10925 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10926 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10927 return TARGET_XFER_E_IO;
0876f84a
DJ
10928
10929 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10930 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10931
10932 /* 'm' means there is (or at least might be) more data after this
10933 batch. That does not make sense unless there's at least one byte
10934 of data in this reply. */
10935 if (rs->buf[0] == 'm' && packet_len == 1)
10936 error (_("Remote qXfer reply contained no data."));
10937
10938 /* Got some data. */
8d64371b 10939 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10940 packet_len - 1, readbuf, n);
0876f84a
DJ
10941
10942 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10943 or possibly empty. If we have the final block of a non-empty
10944 object, record this fact to bypass a subsequent partial read. */
10945 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10946 {
8e88304f
TT
10947 rs->finished_object = xstrdup (object_name);
10948 rs->finished_annex = xstrdup (annex ? annex : "");
10949 rs->finished_offset = offset + i;
0876f84a
DJ
10950 }
10951
9b409511
YQ
10952 if (i == 0)
10953 return TARGET_XFER_EOF;
10954 else
10955 {
10956 *xfered_len = i;
10957 return TARGET_XFER_OK;
10958 }
0876f84a
DJ
10959}
10960
f6ac5f3d
PA
10961enum target_xfer_status
10962remote_target::xfer_partial (enum target_object object,
10963 const char *annex, gdb_byte *readbuf,
10964 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10965 ULONGEST *xfered_len)
c906108c 10966{
82f73884 10967 struct remote_state *rs;
c906108c 10968 int i;
6d820c5c 10969 char *p2;
1e3ff5ad 10970 char query_type;
124e13d9 10971 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10972
e6e4e701 10973 set_remote_traceframe ();
82f73884
PA
10974 set_general_thread (inferior_ptid);
10975
10976 rs = get_remote_state ();
10977
b2182ed2 10978 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10979 if (object == TARGET_OBJECT_MEMORY)
10980 {
2d717e4f
DJ
10981 /* If the remote target is connected but not running, we should
10982 pass this request down to a lower stratum (e.g. the executable
10983 file). */
55f6301a 10984 if (!target_has_execution ())
9b409511 10985 return TARGET_XFER_EOF;
2d717e4f 10986
21e3b9b9 10987 if (writebuf != NULL)
124e13d9
SM
10988 return remote_write_bytes (offset, writebuf, len, unit_size,
10989 xfered_len);
21e3b9b9 10990 else
6b8edb51 10991 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10992 xfered_len);
21e3b9b9
DJ
10993 }
10994
4aa995e1
PA
10995 /* Handle extra signal info using qxfer packets. */
10996 if (object == TARGET_OBJECT_SIGNAL_INFO)
10997 {
10998 if (readbuf)
f6ac5f3d 10999 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 11000 xfered_len, &remote_protocol_packets
4aa995e1
PA
11001 [PACKET_qXfer_siginfo_read]);
11002 else
f6ac5f3d 11003 return remote_write_qxfer ("siginfo", annex,
9b409511 11004 writebuf, offset, len, xfered_len,
4aa995e1
PA
11005 &remote_protocol_packets
11006 [PACKET_qXfer_siginfo_write]);
11007 }
11008
0fb4aa4b
PA
11009 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11010 {
11011 if (readbuf)
f6ac5f3d 11012 return remote_read_qxfer ("statictrace", annex,
9b409511 11013 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
11014 &remote_protocol_packets
11015 [PACKET_qXfer_statictrace_read]);
11016 else
2ed4b548 11017 return TARGET_XFER_E_IO;
0fb4aa4b
PA
11018 }
11019
a76d924d
DJ
11020 /* Only handle flash writes. */
11021 if (writebuf != NULL)
11022 {
a76d924d
DJ
11023 switch (object)
11024 {
11025 case TARGET_OBJECT_FLASH:
6b8edb51 11026 return remote_flash_write (offset, len, xfered_len,
9b409511 11027 writebuf);
a76d924d
DJ
11028
11029 default:
2ed4b548 11030 return TARGET_XFER_E_IO;
a76d924d
DJ
11031 }
11032 }
4b8a223f 11033
1e3ff5ad
AC
11034 /* Map pre-existing objects onto letters. DO NOT do this for new
11035 objects!!! Instead specify new query packets. */
11036 switch (object)
c906108c 11037 {
1e3ff5ad
AC
11038 case TARGET_OBJECT_AVR:
11039 query_type = 'R';
11040 break;
802188a7
RM
11041
11042 case TARGET_OBJECT_AUXV:
0876f84a 11043 gdb_assert (annex == NULL);
f6ac5f3d 11044 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 11045 xfered_len,
0876f84a 11046 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 11047
23181151
DJ
11048 case TARGET_OBJECT_AVAILABLE_FEATURES:
11049 return remote_read_qxfer
f6ac5f3d 11050 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
11051 &remote_protocol_packets[PACKET_qXfer_features]);
11052
cfa9d6d9
DJ
11053 case TARGET_OBJECT_LIBRARIES:
11054 return remote_read_qxfer
f6ac5f3d 11055 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
11056 &remote_protocol_packets[PACKET_qXfer_libraries]);
11057
2268b414
JK
11058 case TARGET_OBJECT_LIBRARIES_SVR4:
11059 return remote_read_qxfer
f6ac5f3d 11060 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
11061 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11062
fd79ecee
DJ
11063 case TARGET_OBJECT_MEMORY_MAP:
11064 gdb_assert (annex == NULL);
f6ac5f3d 11065 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 11066 xfered_len,
fd79ecee
DJ
11067 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11068
07e059b5
VP
11069 case TARGET_OBJECT_OSDATA:
11070 /* Should only get here if we're connected. */
5d93a237 11071 gdb_assert (rs->remote_desc);
07e059b5 11072 return remote_read_qxfer
f6ac5f3d 11073 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
11074 &remote_protocol_packets[PACKET_qXfer_osdata]);
11075
dc146f7c
VP
11076 case TARGET_OBJECT_THREADS:
11077 gdb_assert (annex == NULL);
f6ac5f3d 11078 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 11079 xfered_len,
dc146f7c
VP
11080 &remote_protocol_packets[PACKET_qXfer_threads]);
11081
b3b9301e
PA
11082 case TARGET_OBJECT_TRACEFRAME_INFO:
11083 gdb_assert (annex == NULL);
11084 return remote_read_qxfer
f6ac5f3d 11085 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11086 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11087
11088 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11089 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11090 xfered_len,
78d85199 11091 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11092
11093 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11094 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11095 xfered_len,
169081d0
TG
11096 &remote_protocol_packets[PACKET_qXfer_uib]);
11097
9accd112 11098 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11099 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11100 xfered_len,
9accd112
MM
11101 &remote_protocol_packets[PACKET_qXfer_btrace]);
11102
f4abbc16 11103 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11104 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11105 len, xfered_len,
11106 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11107
c78fa86a 11108 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11109 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11110 len, xfered_len,
11111 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11112
1e3ff5ad 11113 default:
2ed4b548 11114 return TARGET_XFER_E_IO;
c906108c
SS
11115 }
11116
0df8b418 11117 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11118 large enough let the caller deal with it. */
ea9c271d 11119 if (len < get_remote_packet_size ())
2ed4b548 11120 return TARGET_XFER_E_IO;
ea9c271d 11121 len = get_remote_packet_size ();
1e3ff5ad 11122
23860348 11123 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11124 if (!rs->remote_desc)
8a3fe4f8 11125 error (_("remote query is only available after target open"));
c906108c 11126
1e3ff5ad 11127 gdb_assert (annex != NULL);
4b8a223f 11128 gdb_assert (readbuf != NULL);
c906108c 11129
8d64371b 11130 p2 = rs->buf.data ();
c906108c
SS
11131 *p2++ = 'q';
11132 *p2++ = query_type;
11133
23860348
MS
11134 /* We used one buffer char for the remote protocol q command and
11135 another for the query type. As the remote protocol encapsulation
11136 uses 4 chars plus one extra in case we are debugging
11137 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11138 string. */
c906108c 11139 i = 0;
ea9c271d 11140 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11141 {
1e3ff5ad
AC
11142 /* Bad caller may have sent forbidden characters. */
11143 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11144 *p2++ = annex[i];
c906108c
SS
11145 i++;
11146 }
1e3ff5ad
AC
11147 *p2 = '\0';
11148 gdb_assert (annex[i] == '\0');
c906108c 11149
6d820c5c 11150 i = putpkt (rs->buf);
c5aa993b 11151 if (i < 0)
2ed4b548 11152 return TARGET_XFER_E_IO;
c906108c 11153
8d64371b
TT
11154 getpkt (&rs->buf, 0);
11155 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11156
9b409511 11157 *xfered_len = strlen ((char *) readbuf);
92ffd475 11158 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11159}
11160
09c98b44
DB
11161/* Implementation of to_get_memory_xfer_limit. */
11162
f6ac5f3d
PA
11163ULONGEST
11164remote_target::get_memory_xfer_limit ()
09c98b44
DB
11165{
11166 return get_memory_write_packet_size ();
11167}
11168
f6ac5f3d
PA
11169int
11170remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11171 const gdb_byte *pattern, ULONGEST pattern_len,
11172 CORE_ADDR *found_addrp)
08388c79 11173{
f5656ead 11174 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11175 struct remote_state *rs = get_remote_state ();
11176 int max_size = get_memory_write_packet_size ();
11177 struct packet_config *packet =
11178 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11179 /* Number of packet bytes used to encode the pattern;
11180 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11181 int escaped_pattern_len;
0df8b418 11182 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11183 int used_pattern_len;
11184 int i;
11185 int found;
11186 ULONGEST found_addr;
11187
7cc244de
PA
11188 /* Don't go to the target if we don't have to. This is done before
11189 checking packet_config_support to avoid the possibility that a
11190 success for this edge case means the facility works in
11191 general. */
08388c79
DE
11192 if (pattern_len > search_space_len)
11193 return 0;
11194 if (pattern_len == 0)
11195 {
11196 *found_addrp = start_addr;
11197 return 1;
11198 }
11199
11200 /* If we already know the packet isn't supported, fall back to the simple
11201 way of searching memory. */
11202
4082afcc 11203 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11204 {
11205 /* Target doesn't provided special support, fall back and use the
11206 standard support (copy memory and do the search here). */
f6ac5f3d 11207 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11208 pattern, pattern_len, found_addrp);
11209 }
11210
28439a30
PA
11211 /* Make sure the remote is pointing at the right process. */
11212 set_general_process ();
11213
08388c79 11214 /* Insert header. */
8d64371b 11215 i = snprintf (rs->buf.data (), max_size,
08388c79 11216 "qSearch:memory:%s;%s;",
5af949e3 11217 phex_nz (start_addr, addr_size),
08388c79
DE
11218 phex_nz (search_space_len, sizeof (search_space_len)));
11219 max_size -= (i + 1);
11220
11221 /* Escape as much data as fits into rs->buf. */
11222 escaped_pattern_len =
8d64371b
TT
11223 remote_escape_output (pattern, pattern_len, 1,
11224 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11225 &used_pattern_len, max_size);
11226
11227 /* Bail if the pattern is too large. */
11228 if (used_pattern_len != pattern_len)
9b20d036 11229 error (_("Pattern is too large to transmit to remote target."));
08388c79 11230
8d64371b
TT
11231 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11232 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11233 || packet_ok (rs->buf, packet) != PACKET_OK)
11234 {
11235 /* The request may not have worked because the command is not
11236 supported. If so, fall back to the simple way. */
7cc244de 11237 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11238 {
f6ac5f3d 11239 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11240 pattern, pattern_len, found_addrp);
11241 }
11242 return -1;
11243 }
11244
11245 if (rs->buf[0] == '0')
11246 found = 0;
11247 else if (rs->buf[0] == '1')
11248 {
11249 found = 1;
11250 if (rs->buf[1] != ',')
8d64371b
TT
11251 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11252 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11253 *found_addrp = found_addr;
11254 }
11255 else
8d64371b 11256 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11257
11258 return found;
11259}
11260
f6ac5f3d
PA
11261void
11262remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11263{
d01949b6 11264 struct remote_state *rs = get_remote_state ();
8d64371b 11265 char *p = rs->buf.data ();
96baa820 11266
5d93a237 11267 if (!rs->remote_desc)
8a3fe4f8 11268 error (_("remote rcmd is only available after target open"));
96baa820 11269
23860348 11270 /* Send a NULL command across as an empty command. */
7be570e7
JM
11271 if (command == NULL)
11272 command = "";
11273
23860348 11274 /* The query prefix. */
8d64371b
TT
11275 strcpy (rs->buf.data (), "qRcmd,");
11276 p = strchr (rs->buf.data (), '\0');
96baa820 11277
8d64371b 11278 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11279 > get_remote_packet_size ())
8a3fe4f8 11280 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11281
23860348 11282 /* Encode the actual command. */
a30bf1f1 11283 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11284
6d820c5c 11285 if (putpkt (rs->buf) < 0)
8a3fe4f8 11286 error (_("Communication problem with target."));
96baa820
JM
11287
11288 /* get/display the response */
11289 while (1)
11290 {
2e9f7625
DJ
11291 char *buf;
11292
00bf0b85 11293 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11294 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11295 rs->buf[0] = '\0';
8d64371b 11296 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11297 {
11298 /* Timeout. Continue to (try to) read responses.
11299 This is better than stopping with an error, assuming the stub
11300 is still executing the (long) monitor command.
11301 If needed, the user can interrupt gdb using C-c, obtaining
11302 an effect similar to stop on timeout. */
11303 continue;
11304 }
8d64371b 11305 buf = rs->buf.data ();
96baa820 11306 if (buf[0] == '\0')
8a3fe4f8 11307 error (_("Target does not support this command."));
96baa820
JM
11308 if (buf[0] == 'O' && buf[1] != 'K')
11309 {
23860348 11310 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11311 continue;
11312 }
11313 if (strcmp (buf, "OK") == 0)
11314 break;
7be570e7
JM
11315 if (strlen (buf) == 3 && buf[0] == 'E'
11316 && isdigit (buf[1]) && isdigit (buf[2]))
11317 {
8a3fe4f8 11318 error (_("Protocol error with Rcmd"));
7be570e7 11319 }
96baa820
JM
11320 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11321 {
11322 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11323
96baa820
JM
11324 fputc_unfiltered (c, outbuf);
11325 }
11326 break;
11327 }
11328}
11329
f6ac5f3d
PA
11330std::vector<mem_region>
11331remote_target::memory_map ()
fd79ecee 11332{
a664f67e 11333 std::vector<mem_region> result;
9018be22 11334 gdb::optional<gdb::char_vector> text
8b88a78e 11335 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11336
11337 if (text)
9018be22 11338 result = parse_memory_map (text->data ());
fd79ecee
DJ
11339
11340 return result;
11341}
11342
c906108c 11343static void
ac88e2de 11344packet_command (const char *args, int from_tty)
c906108c 11345{
6b8edb51 11346 remote_target *remote = get_current_remote_target ();
c906108c 11347
6b8edb51 11348 if (remote == nullptr)
8a3fe4f8 11349 error (_("command can only be used with remote target"));
c906108c 11350
6b8edb51
PA
11351 remote->packet_command (args, from_tty);
11352}
11353
11354void
11355remote_target::packet_command (const char *args, int from_tty)
11356{
c5aa993b 11357 if (!args)
8a3fe4f8 11358 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11359
11360 puts_filtered ("sending: ");
11361 print_packet (args);
11362 puts_filtered ("\n");
11363 putpkt (args);
11364
6b8edb51
PA
11365 remote_state *rs = get_remote_state ();
11366
8d64371b 11367 getpkt (&rs->buf, 0);
c906108c 11368 puts_filtered ("received: ");
8d64371b 11369 print_packet (rs->buf.data ());
c906108c
SS
11370 puts_filtered ("\n");
11371}
11372
11373#if 0
23860348 11374/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11375
a14ed312 11376static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11377
a14ed312 11378static void threadset_test_cmd (char *cmd, int tty);
c906108c 11379
a14ed312 11380static void threadalive_test (char *cmd, int tty);
c906108c 11381
a14ed312 11382static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11383
23860348 11384int get_and_display_threadinfo (threadref *ref);
c906108c 11385
a14ed312 11386static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11387
23860348 11388static int thread_display_step (threadref *ref, void *context);
c906108c 11389
a14ed312 11390static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11391
a14ed312 11392static void init_remote_threadtests (void);
c906108c 11393
23860348 11394#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11395
11396static void
0b39b52e 11397threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11398{
11399 int sample_thread = SAMPLE_THREAD;
11400
a3f17187 11401 printf_filtered (_("Remote threadset test\n"));
79d7f229 11402 set_general_thread (sample_thread);
c906108c
SS
11403}
11404
11405
11406static void
0b39b52e 11407threadalive_test (const char *cmd, int tty)
c906108c
SS
11408{
11409 int sample_thread = SAMPLE_THREAD;
e99b03dc 11410 int pid = inferior_ptid.pid ();
fd79271b 11411 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11412
79d7f229 11413 if (remote_thread_alive (ptid))
c906108c
SS
11414 printf_filtered ("PASS: Thread alive test\n");
11415 else
11416 printf_filtered ("FAIL: Thread alive test\n");
11417}
11418
23860348 11419void output_threadid (char *title, threadref *ref);
c906108c
SS
11420
11421void
fba45db2 11422output_threadid (char *title, threadref *ref)
c906108c
SS
11423{
11424 char hexid[20];
11425
405feb71 11426 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11427 hexid[16] = 0;
11428 printf_filtered ("%s %s\n", title, (&hexid[0]));
11429}
11430
11431static void
0b39b52e 11432threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11433{
11434 int startflag = 1;
11435 threadref nextthread;
11436 int done, result_count;
11437 threadref threadlist[3];
11438
11439 printf_filtered ("Remote Threadlist test\n");
11440 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11441 &result_count, &threadlist[0]))
11442 printf_filtered ("FAIL: threadlist test\n");
11443 else
11444 {
11445 threadref *scan = threadlist;
11446 threadref *limit = scan + result_count;
11447
11448 while (scan < limit)
11449 output_threadid (" thread ", scan++);
11450 }
11451}
11452
11453void
fba45db2 11454display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11455{
11456 output_threadid ("Threadid: ", &info->threadid);
11457 printf_filtered ("Name: %s\n ", info->shortname);
11458 printf_filtered ("State: %s\n", info->display);
11459 printf_filtered ("other: %s\n\n", info->more_display);
11460}
11461
11462int
fba45db2 11463get_and_display_threadinfo (threadref *ref)
c906108c
SS
11464{
11465 int result;
11466 int set;
11467 struct gdb_ext_thread_info threadinfo;
11468
11469 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11470 | TAG_MOREDISPLAY | TAG_DISPLAY;
11471 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11472 display_thread_info (&threadinfo);
11473 return result;
11474}
11475
11476static void
0b39b52e 11477threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11478{
11479 int athread = SAMPLE_THREAD;
11480 threadref thread;
11481 int set;
11482
11483 int_to_threadref (&thread, athread);
11484 printf_filtered ("Remote Threadinfo test\n");
11485 if (!get_and_display_threadinfo (&thread))
11486 printf_filtered ("FAIL cannot get thread info\n");
11487}
11488
11489static int
fba45db2 11490thread_display_step (threadref *ref, void *context)
c906108c
SS
11491{
11492 /* output_threadid(" threadstep ",ref); *//* simple test */
11493 return get_and_display_threadinfo (ref);
11494}
11495
11496static void
0b39b52e 11497threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11498{
11499 printf_filtered ("Remote Threadlist update test\n");
11500 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11501}
11502
11503static void
11504init_remote_threadtests (void)
11505{
3e43a32a
MS
11506 add_com ("tlist", class_obscure, threadlist_test_cmd,
11507 _("Fetch and print the remote list of "
590042fc 11508 "thread identifiers, one pkt only."));
c906108c 11509 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11510 _("Fetch and display info about one thread."));
c906108c 11511 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11512 _("Test setting to a different thread."));
c906108c 11513 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11514 _("Iterate through updating all remote thread info."));
c906108c 11515 add_com ("talive", class_obscure, threadalive_test,
590042fc 11516 _("Remote thread alive test."));
c906108c
SS
11517}
11518
11519#endif /* 0 */
11520
a068643d 11521/* Convert a thread ID to a string. */
f3fb8c85 11522
a068643d 11523std::string
f6ac5f3d 11524remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11525{
82f73884 11526 struct remote_state *rs = get_remote_state ();
f3fb8c85 11527
d7e15655 11528 if (ptid == null_ptid)
7cee1e54 11529 return normal_pid_to_str (ptid);
0e998d96 11530 else if (ptid.is_pid ())
ecd0ada5
PA
11531 {
11532 /* Printing an inferior target id. */
11533
11534 /* When multi-process extensions are off, there's no way in the
11535 remote protocol to know the remote process id, if there's any
11536 at all. There's one exception --- when we're connected with
11537 target extended-remote, and we manually attached to a process
11538 with "attach PID". We don't record anywhere a flag that
11539 allows us to distinguish that case from the case of
11540 connecting with extended-remote and the stub already being
11541 attached to a process, and reporting yes to qAttached, hence
11542 no smart special casing here. */
11543 if (!remote_multi_process_p (rs))
a068643d 11544 return "Remote target";
ecd0ada5
PA
11545
11546 return normal_pid_to_str (ptid);
82f73884 11547 }
ecd0ada5 11548 else
79d7f229 11549 {
d7e15655 11550 if (magic_null_ptid == ptid)
a068643d 11551 return "Thread <main>";
8020350c 11552 else if (remote_multi_process_p (rs))
e38504b3 11553 if (ptid.lwp () == 0)
de0d863e
DB
11554 return normal_pid_to_str (ptid);
11555 else
a068643d
TT
11556 return string_printf ("Thread %d.%ld",
11557 ptid.pid (), ptid.lwp ());
ecd0ada5 11558 else
a068643d 11559 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11560 }
f3fb8c85
MS
11561}
11562
38691318
KB
11563/* Get the address of the thread local variable in OBJFILE which is
11564 stored at OFFSET within the thread local storage for thread PTID. */
11565
f6ac5f3d
PA
11566CORE_ADDR
11567remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11568 CORE_ADDR offset)
38691318 11569{
4082afcc 11570 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11571 {
11572 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11573 char *p = rs->buf.data ();
11574 char *endp = p + get_remote_packet_size ();
571dd617 11575 enum packet_result result;
38691318
KB
11576
11577 strcpy (p, "qGetTLSAddr:");
11578 p += strlen (p);
82f73884 11579 p = write_ptid (p, endp, ptid);
38691318
KB
11580 *p++ = ',';
11581 p += hexnumstr (p, offset);
11582 *p++ = ',';
11583 p += hexnumstr (p, lm);
11584 *p++ = '\0';
11585
6d820c5c 11586 putpkt (rs->buf);
8d64371b 11587 getpkt (&rs->buf, 0);
3e43a32a
MS
11588 result = packet_ok (rs->buf,
11589 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11590 if (result == PACKET_OK)
38691318 11591 {
b926417a 11592 ULONGEST addr;
38691318 11593
8d64371b 11594 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11595 return addr;
38691318 11596 }
571dd617 11597 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11598 throw_error (TLS_GENERIC_ERROR,
11599 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11600 else
109c3e39
AC
11601 throw_error (TLS_GENERIC_ERROR,
11602 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11603 }
11604 else
109c3e39
AC
11605 throw_error (TLS_GENERIC_ERROR,
11606 _("TLS not supported or disabled on this target"));
38691318
KB
11607 /* Not reached. */
11608 return 0;
11609}
11610
711e434b
PM
11611/* Provide thread local base, i.e. Thread Information Block address.
11612 Returns 1 if ptid is found and thread_local_base is non zero. */
11613
57810aa7 11614bool
f6ac5f3d 11615remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11616{
4082afcc 11617 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11618 {
11619 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11620 char *p = rs->buf.data ();
11621 char *endp = p + get_remote_packet_size ();
711e434b
PM
11622 enum packet_result result;
11623
11624 strcpy (p, "qGetTIBAddr:");
11625 p += strlen (p);
11626 p = write_ptid (p, endp, ptid);
11627 *p++ = '\0';
11628
11629 putpkt (rs->buf);
8d64371b 11630 getpkt (&rs->buf, 0);
711e434b
PM
11631 result = packet_ok (rs->buf,
11632 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11633 if (result == PACKET_OK)
11634 {
b926417a 11635 ULONGEST val;
8d64371b 11636 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11637 if (addr)
b926417a 11638 *addr = (CORE_ADDR) val;
57810aa7 11639 return true;
711e434b
PM
11640 }
11641 else if (result == PACKET_UNKNOWN)
11642 error (_("Remote target doesn't support qGetTIBAddr packet"));
11643 else
11644 error (_("Remote target failed to process qGetTIBAddr request"));
11645 }
11646 else
11647 error (_("qGetTIBAddr not supported or disabled on this target"));
11648 /* Not reached. */
57810aa7 11649 return false;
711e434b
PM
11650}
11651
29709017
DJ
11652/* Support for inferring a target description based on the current
11653 architecture and the size of a 'g' packet. While the 'g' packet
11654 can have any size (since optional registers can be left off the
11655 end), some sizes are easily recognizable given knowledge of the
11656 approximate architecture. */
11657
11658struct remote_g_packet_guess
11659{
eefce37f
TT
11660 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11661 : bytes (bytes_),
11662 tdesc (tdesc_)
11663 {
11664 }
11665
29709017
DJ
11666 int bytes;
11667 const struct target_desc *tdesc;
11668};
29709017 11669
eefce37f 11670struct remote_g_packet_data : public allocate_on_obstack
29709017 11671{
eefce37f 11672 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11673};
11674
11675static struct gdbarch_data *remote_g_packet_data_handle;
11676
11677static void *
11678remote_g_packet_data_init (struct obstack *obstack)
11679{
eefce37f 11680 return new (obstack) remote_g_packet_data;
29709017
DJ
11681}
11682
11683void
11684register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11685 const struct target_desc *tdesc)
11686{
11687 struct remote_g_packet_data *data
19ba03f4
SM
11688 = ((struct remote_g_packet_data *)
11689 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11690
11691 gdb_assert (tdesc != NULL);
11692
eefce37f
TT
11693 for (const remote_g_packet_guess &guess : data->guesses)
11694 if (guess.bytes == bytes)
29709017 11695 internal_error (__FILE__, __LINE__,
9b20d036 11696 _("Duplicate g packet description added for size %d"),
29709017
DJ
11697 bytes);
11698
eefce37f 11699 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11700}
11701
eefce37f
TT
11702/* Return true if remote_read_description would do anything on this target
11703 and architecture, false otherwise. */
d962ef82 11704
eefce37f 11705static bool
d962ef82
DJ
11706remote_read_description_p (struct target_ops *target)
11707{
11708 struct remote_g_packet_data *data
19ba03f4
SM
11709 = ((struct remote_g_packet_data *)
11710 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11711
eefce37f 11712 return !data->guesses.empty ();
d962ef82
DJ
11713}
11714
f6ac5f3d
PA
11715const struct target_desc *
11716remote_target::read_description ()
29709017
DJ
11717{
11718 struct remote_g_packet_data *data
19ba03f4
SM
11719 = ((struct remote_g_packet_data *)
11720 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11721
d962ef82
DJ
11722 /* Do not try this during initial connection, when we do not know
11723 whether there is a running but stopped thread. */
55f6301a 11724 if (!target_has_execution () || inferior_ptid == null_ptid)
b6a8c27b 11725 return beneath ()->read_description ();
d962ef82 11726
eefce37f 11727 if (!data->guesses.empty ())
29709017 11728 {
29709017
DJ
11729 int bytes = send_g_packet ();
11730
eefce37f
TT
11731 for (const remote_g_packet_guess &guess : data->guesses)
11732 if (guess.bytes == bytes)
11733 return guess.tdesc;
29709017
DJ
11734
11735 /* We discard the g packet. A minor optimization would be to
11736 hold on to it, and fill the register cache once we have selected
11737 an architecture, but it's too tricky to do safely. */
11738 }
11739
b6a8c27b 11740 return beneath ()->read_description ();
29709017
DJ
11741}
11742
a6b151f1
DJ
11743/* Remote file transfer support. This is host-initiated I/O, not
11744 target-initiated; for target-initiated, see remote-fileio.c. */
11745
11746/* If *LEFT is at least the length of STRING, copy STRING to
11747 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11748 decrease *LEFT. Otherwise raise an error. */
11749
11750static void
a121b7c1 11751remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11752{
11753 int len = strlen (string);
11754
11755 if (len > *left)
11756 error (_("Packet too long for target."));
11757
11758 memcpy (*buffer, string, len);
11759 *buffer += len;
11760 *left -= len;
11761
11762 /* NUL-terminate the buffer as a convenience, if there is
11763 room. */
11764 if (*left)
11765 **buffer = '\0';
11766}
11767
11768/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11769 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11770 decrease *LEFT. Otherwise raise an error. */
11771
11772static void
11773remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11774 int len)
11775{
11776 if (2 * len > *left)
11777 error (_("Packet too long for target."));
11778
11779 bin2hex (bytes, *buffer, len);
11780 *buffer += 2 * len;
11781 *left -= 2 * len;
11782
11783 /* NUL-terminate the buffer as a convenience, if there is
11784 room. */
11785 if (*left)
11786 **buffer = '\0';
11787}
11788
11789/* If *LEFT is large enough, convert VALUE to hex and add it to
11790 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11791 decrease *LEFT. Otherwise raise an error. */
11792
11793static void
11794remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11795{
11796 int len = hexnumlen (value);
11797
11798 if (len > *left)
11799 error (_("Packet too long for target."));
11800
11801 hexnumstr (*buffer, value);
11802 *buffer += len;
11803 *left -= len;
11804
11805 /* NUL-terminate the buffer as a convenience, if there is
11806 room. */
11807 if (*left)
11808 **buffer = '\0';
11809}
11810
11811/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11812 value, *REMOTE_ERRNO to the remote error number or zero if none
11813 was included, and *ATTACHMENT to point to the start of the annex
11814 if any. The length of the packet isn't needed here; there may
11815 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11816
11817 Return 0 if the packet could be parsed, -1 if it could not. If
11818 -1 is returned, the other variables may not be initialized. */
11819
11820static int
11821remote_hostio_parse_result (char *buffer, int *retcode,
11822 int *remote_errno, char **attachment)
11823{
11824 char *p, *p2;
11825
11826 *remote_errno = 0;
11827 *attachment = NULL;
11828
11829 if (buffer[0] != 'F')
11830 return -1;
11831
11832 errno = 0;
11833 *retcode = strtol (&buffer[1], &p, 16);
11834 if (errno != 0 || p == &buffer[1])
11835 return -1;
11836
11837 /* Check for ",errno". */
11838 if (*p == ',')
11839 {
11840 errno = 0;
11841 *remote_errno = strtol (p + 1, &p2, 16);
11842 if (errno != 0 || p + 1 == p2)
11843 return -1;
11844 p = p2;
11845 }
11846
11847 /* Check for ";attachment". If there is no attachment, the
11848 packet should end here. */
11849 if (*p == ';')
11850 {
11851 *attachment = p + 1;
11852 return 0;
11853 }
11854 else if (*p == '\0')
11855 return 0;
11856 else
11857 return -1;
11858}
11859
11860/* Send a prepared I/O packet to the target and read its response.
11861 The prepared packet is in the global RS->BUF before this function
11862 is called, and the answer is there when we return.
11863
11864 COMMAND_BYTES is the length of the request to send, which may include
11865 binary data. WHICH_PACKET is the packet configuration to check
11866 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11867 is set to the error number and -1 is returned. Otherwise the value
11868 returned by the function is returned.
11869
11870 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11871 attachment is expected; an error will be reported if there's a
11872 mismatch. If one is found, *ATTACHMENT will be set to point into
11873 the packet buffer and *ATTACHMENT_LEN will be set to the
11874 attachment's length. */
11875
6b8edb51
PA
11876int
11877remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11878 int *remote_errno, char **attachment,
11879 int *attachment_len)
a6b151f1
DJ
11880{
11881 struct remote_state *rs = get_remote_state ();
11882 int ret, bytes_read;
11883 char *attachment_tmp;
11884
20db9c52 11885 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11886 {
11887 *remote_errno = FILEIO_ENOSYS;
11888 return -1;
11889 }
11890
8d64371b
TT
11891 putpkt_binary (rs->buf.data (), command_bytes);
11892 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11893
11894 /* If it timed out, something is wrong. Don't try to parse the
11895 buffer. */
11896 if (bytes_read < 0)
11897 {
11898 *remote_errno = FILEIO_EINVAL;
11899 return -1;
11900 }
11901
11902 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11903 {
11904 case PACKET_ERROR:
11905 *remote_errno = FILEIO_EINVAL;
11906 return -1;
11907 case PACKET_UNKNOWN:
11908 *remote_errno = FILEIO_ENOSYS;
11909 return -1;
11910 case PACKET_OK:
11911 break;
11912 }
11913
8d64371b 11914 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11915 &attachment_tmp))
11916 {
11917 *remote_errno = FILEIO_EINVAL;
11918 return -1;
11919 }
11920
11921 /* Make sure we saw an attachment if and only if we expected one. */
11922 if ((attachment_tmp == NULL && attachment != NULL)
11923 || (attachment_tmp != NULL && attachment == NULL))
11924 {
11925 *remote_errno = FILEIO_EINVAL;
11926 return -1;
11927 }
11928
11929 /* If an attachment was found, it must point into the packet buffer;
11930 work out how many bytes there were. */
11931 if (attachment_tmp != NULL)
11932 {
11933 *attachment = attachment_tmp;
8d64371b 11934 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11935 }
11936
11937 return ret;
11938}
11939
dd194f6b 11940/* See declaration.h. */
80152258 11941
dd194f6b
PA
11942void
11943readahead_cache::invalidate ()
80152258 11944{
dd194f6b 11945 this->fd = -1;
80152258
PA
11946}
11947
dd194f6b 11948/* See declaration.h. */
80152258 11949
dd194f6b
PA
11950void
11951readahead_cache::invalidate_fd (int fd)
80152258 11952{
dd194f6b
PA
11953 if (this->fd == fd)
11954 this->fd = -1;
80152258
PA
11955}
11956
15a201c8
GB
11957/* Set the filesystem remote_hostio functions that take FILENAME
11958 arguments will use. Return 0 on success, or -1 if an error
11959 occurs (and set *REMOTE_ERRNO). */
11960
6b8edb51
PA
11961int
11962remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11963 int *remote_errno)
15a201c8
GB
11964{
11965 struct remote_state *rs = get_remote_state ();
11966 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11967 char *p = rs->buf.data ();
15a201c8
GB
11968 int left = get_remote_packet_size () - 1;
11969 char arg[9];
11970 int ret;
11971
11972 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11973 return 0;
11974
11975 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11976 return 0;
11977
11978 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11979
11980 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11981 remote_buffer_add_string (&p, &left, arg);
11982
8d64371b 11983 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11984 remote_errno, NULL, NULL);
11985
11986 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11987 return 0;
11988
11989 if (ret == 0)
11990 rs->fs_pid = required_pid;
11991
11992 return ret;
11993}
11994
12e2a5fd 11995/* Implementation of to_fileio_open. */
a6b151f1 11996
6b8edb51
PA
11997int
11998remote_target::remote_hostio_open (inferior *inf, const char *filename,
11999 int flags, int mode, int warn_if_slow,
12000 int *remote_errno)
a6b151f1
DJ
12001{
12002 struct remote_state *rs = get_remote_state ();
8d64371b 12003 char *p = rs->buf.data ();
a6b151f1
DJ
12004 int left = get_remote_packet_size () - 1;
12005
4313b8c0
GB
12006 if (warn_if_slow)
12007 {
12008 static int warning_issued = 0;
12009
12010 printf_unfiltered (_("Reading %s from remote target...\n"),
12011 filename);
12012
12013 if (!warning_issued)
12014 {
12015 warning (_("File transfers from remote targets can be slow."
12016 " Use \"set sysroot\" to access files locally"
12017 " instead."));
12018 warning_issued = 1;
12019 }
12020 }
12021
15a201c8
GB
12022 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12023 return -1;
12024
a6b151f1
DJ
12025 remote_buffer_add_string (&p, &left, "vFile:open:");
12026
12027 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12028 strlen (filename));
12029 remote_buffer_add_string (&p, &left, ",");
12030
12031 remote_buffer_add_int (&p, &left, flags);
12032 remote_buffer_add_string (&p, &left, ",");
12033
12034 remote_buffer_add_int (&p, &left, mode);
12035
8d64371b 12036 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
12037 remote_errno, NULL, NULL);
12038}
12039
f6ac5f3d
PA
12040int
12041remote_target::fileio_open (struct inferior *inf, const char *filename,
12042 int flags, int mode, int warn_if_slow,
12043 int *remote_errno)
12044{
6b8edb51 12045 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
12046 remote_errno);
12047}
12048
12e2a5fd 12049/* Implementation of to_fileio_pwrite. */
a6b151f1 12050
6b8edb51
PA
12051int
12052remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12053 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12054{
12055 struct remote_state *rs = get_remote_state ();
8d64371b 12056 char *p = rs->buf.data ();
a6b151f1
DJ
12057 int left = get_remote_packet_size ();
12058 int out_len;
12059
dd194f6b 12060 rs->readahead_cache.invalidate_fd (fd);
80152258 12061
a6b151f1
DJ
12062 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12063
12064 remote_buffer_add_int (&p, &left, fd);
12065 remote_buffer_add_string (&p, &left, ",");
12066
12067 remote_buffer_add_int (&p, &left, offset);
12068 remote_buffer_add_string (&p, &left, ",");
12069
124e13d9 12070 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
12071 (get_remote_packet_size ()
12072 - (p - rs->buf.data ())));
a6b151f1 12073
8d64371b 12074 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
12075 remote_errno, NULL, NULL);
12076}
12077
f6ac5f3d
PA
12078int
12079remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12080 ULONGEST offset, int *remote_errno)
12081{
6b8edb51 12082 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12083}
12084
80152258
PA
12085/* Helper for the implementation of to_fileio_pread. Read the file
12086 from the remote side with vFile:pread. */
a6b151f1 12087
6b8edb51
PA
12088int
12089remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12090 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12091{
12092 struct remote_state *rs = get_remote_state ();
8d64371b 12093 char *p = rs->buf.data ();
a6b151f1
DJ
12094 char *attachment;
12095 int left = get_remote_packet_size ();
12096 int ret, attachment_len;
12097 int read_len;
12098
12099 remote_buffer_add_string (&p, &left, "vFile:pread:");
12100
12101 remote_buffer_add_int (&p, &left, fd);
12102 remote_buffer_add_string (&p, &left, ",");
12103
12104 remote_buffer_add_int (&p, &left, len);
12105 remote_buffer_add_string (&p, &left, ",");
12106
12107 remote_buffer_add_int (&p, &left, offset);
12108
8d64371b 12109 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12110 remote_errno, &attachment,
12111 &attachment_len);
12112
12113 if (ret < 0)
12114 return ret;
12115
bc20a4af 12116 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12117 read_buf, len);
12118 if (read_len != ret)
12119 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12120
12121 return ret;
12122}
12123
dd194f6b 12124/* See declaration.h. */
80152258 12125
dd194f6b
PA
12126int
12127readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12128 ULONGEST offset)
80152258 12129{
dd194f6b
PA
12130 if (this->fd == fd
12131 && this->offset <= offset
12132 && offset < this->offset + this->bufsize)
80152258 12133 {
dd194f6b 12134 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12135
12136 if (offset + len > max)
12137 len = max - offset;
12138
dd194f6b 12139 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12140 return len;
12141 }
12142
12143 return 0;
12144}
12145
12146/* Implementation of to_fileio_pread. */
12147
6b8edb51
PA
12148int
12149remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12150 ULONGEST offset, int *remote_errno)
80152258
PA
12151{
12152 int ret;
12153 struct remote_state *rs = get_remote_state ();
dd194f6b 12154 readahead_cache *cache = &rs->readahead_cache;
80152258 12155
dd194f6b 12156 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12157 if (ret > 0)
12158 {
12159 cache->hit_count++;
12160
12161 if (remote_debug)
12162 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12163 pulongest (cache->hit_count));
12164 return ret;
12165 }
12166
12167 cache->miss_count++;
12168 if (remote_debug)
12169 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12170 pulongest (cache->miss_count));
12171
12172 cache->fd = fd;
12173 cache->offset = offset;
12174 cache->bufsize = get_remote_packet_size ();
224c3ddb 12175 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12176
6b8edb51 12177 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12178 cache->offset, remote_errno);
12179 if (ret <= 0)
12180 {
dd194f6b 12181 cache->invalidate_fd (fd);
80152258
PA
12182 return ret;
12183 }
12184
12185 cache->bufsize = ret;
dd194f6b 12186 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12187}
12188
f6ac5f3d
PA
12189int
12190remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12191 ULONGEST offset, int *remote_errno)
12192{
6b8edb51 12193 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12194}
12195
12e2a5fd 12196/* Implementation of to_fileio_close. */
a6b151f1 12197
6b8edb51
PA
12198int
12199remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12200{
12201 struct remote_state *rs = get_remote_state ();
8d64371b 12202 char *p = rs->buf.data ();
a6b151f1
DJ
12203 int left = get_remote_packet_size () - 1;
12204
dd194f6b 12205 rs->readahead_cache.invalidate_fd (fd);
80152258 12206
a6b151f1
DJ
12207 remote_buffer_add_string (&p, &left, "vFile:close:");
12208
12209 remote_buffer_add_int (&p, &left, fd);
12210
8d64371b 12211 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12212 remote_errno, NULL, NULL);
12213}
12214
f6ac5f3d
PA
12215int
12216remote_target::fileio_close (int fd, int *remote_errno)
12217{
6b8edb51 12218 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12219}
12220
12e2a5fd 12221/* Implementation of to_fileio_unlink. */
a6b151f1 12222
6b8edb51
PA
12223int
12224remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12225 int *remote_errno)
a6b151f1
DJ
12226{
12227 struct remote_state *rs = get_remote_state ();
8d64371b 12228 char *p = rs->buf.data ();
a6b151f1
DJ
12229 int left = get_remote_packet_size () - 1;
12230
15a201c8
GB
12231 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12232 return -1;
12233
a6b151f1
DJ
12234 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12235
12236 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12237 strlen (filename));
12238
8d64371b 12239 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12240 remote_errno, NULL, NULL);
12241}
12242
f6ac5f3d
PA
12243int
12244remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12245 int *remote_errno)
12246{
6b8edb51 12247 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12248}
12249
12e2a5fd 12250/* Implementation of to_fileio_readlink. */
b9e7b9c3 12251
f6ac5f3d
PA
12252gdb::optional<std::string>
12253remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12254 int *remote_errno)
b9e7b9c3
UW
12255{
12256 struct remote_state *rs = get_remote_state ();
8d64371b 12257 char *p = rs->buf.data ();
b9e7b9c3
UW
12258 char *attachment;
12259 int left = get_remote_packet_size ();
12260 int len, attachment_len;
12261 int read_len;
b9e7b9c3 12262
15a201c8 12263 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12264 return {};
15a201c8 12265
b9e7b9c3
UW
12266 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12267
12268 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12269 strlen (filename));
12270
8d64371b 12271 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12272 remote_errno, &attachment,
12273 &attachment_len);
12274
12275 if (len < 0)
e0d3522b 12276 return {};
b9e7b9c3 12277
e0d3522b 12278 std::string ret (len, '\0');
b9e7b9c3 12279
bc20a4af 12280 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12281 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12282 if (read_len != len)
12283 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12284
b9e7b9c3
UW
12285 return ret;
12286}
12287
12e2a5fd 12288/* Implementation of to_fileio_fstat. */
0a93529c 12289
f6ac5f3d
PA
12290int
12291remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12292{
12293 struct remote_state *rs = get_remote_state ();
8d64371b 12294 char *p = rs->buf.data ();
0a93529c
GB
12295 int left = get_remote_packet_size ();
12296 int attachment_len, ret;
12297 char *attachment;
12298 struct fio_stat fst;
12299 int read_len;
12300
464b0089
GB
12301 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12302
12303 remote_buffer_add_int (&p, &left, fd);
12304
8d64371b 12305 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12306 remote_errno, &attachment,
12307 &attachment_len);
12308 if (ret < 0)
0a93529c 12309 {
464b0089
GB
12310 if (*remote_errno != FILEIO_ENOSYS)
12311 return ret;
12312
0a93529c
GB
12313 /* Strictly we should return -1, ENOSYS here, but when
12314 "set sysroot remote:" was implemented in August 2008
12315 BFD's need for a stat function was sidestepped with
12316 this hack. This was not remedied until March 2015
12317 so we retain the previous behavior to avoid breaking
12318 compatibility.
12319
12320 Note that the memset is a March 2015 addition; older
12321 GDBs set st_size *and nothing else* so the structure
12322 would have garbage in all other fields. This might
12323 break something but retaining the previous behavior
12324 here would be just too wrong. */
12325
12326 memset (st, 0, sizeof (struct stat));
12327 st->st_size = INT_MAX;
12328 return 0;
12329 }
12330
0a93529c
GB
12331 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12332 (gdb_byte *) &fst, sizeof (fst));
12333
12334 if (read_len != ret)
12335 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12336
12337 if (read_len != sizeof (fst))
12338 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12339 read_len, (int) sizeof (fst));
12340
12341 remote_fileio_to_host_stat (&fst, st);
12342
12343 return 0;
12344}
12345
12e2a5fd 12346/* Implementation of to_filesystem_is_local. */
e3dd7556 12347
57810aa7 12348bool
f6ac5f3d 12349remote_target::filesystem_is_local ()
e3dd7556
GB
12350{
12351 /* Valgrind GDB presents itself as a remote target but works
12352 on the local filesystem: it does not implement remote get
12353 and users are not expected to set a sysroot. To handle
12354 this case we treat the remote filesystem as local if the
12355 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12356 does not support vFile:open. */
a3be80c3 12357 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12358 {
12359 enum packet_support ps = packet_support (PACKET_vFile_open);
12360
12361 if (ps == PACKET_SUPPORT_UNKNOWN)
12362 {
12363 int fd, remote_errno;
12364
12365 /* Try opening a file to probe support. The supplied
12366 filename is irrelevant, we only care about whether
12367 the stub recognizes the packet or not. */
6b8edb51 12368 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12369 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12370 &remote_errno);
12371
12372 if (fd >= 0)
6b8edb51 12373 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12374
12375 ps = packet_support (PACKET_vFile_open);
12376 }
12377
12378 if (ps == PACKET_DISABLE)
12379 {
12380 static int warning_issued = 0;
12381
12382 if (!warning_issued)
12383 {
12384 warning (_("remote target does not support file"
12385 " transfer, attempting to access files"
12386 " from local filesystem."));
12387 warning_issued = 1;
12388 }
12389
57810aa7 12390 return true;
e3dd7556
GB
12391 }
12392 }
12393
57810aa7 12394 return false;
e3dd7556
GB
12395}
12396
a6b151f1
DJ
12397static int
12398remote_fileio_errno_to_host (int errnum)
12399{
12400 switch (errnum)
12401 {
12402 case FILEIO_EPERM:
12403 return EPERM;
12404 case FILEIO_ENOENT:
12405 return ENOENT;
12406 case FILEIO_EINTR:
12407 return EINTR;
12408 case FILEIO_EIO:
12409 return EIO;
12410 case FILEIO_EBADF:
12411 return EBADF;
12412 case FILEIO_EACCES:
12413 return EACCES;
12414 case FILEIO_EFAULT:
12415 return EFAULT;
12416 case FILEIO_EBUSY:
12417 return EBUSY;
12418 case FILEIO_EEXIST:
12419 return EEXIST;
12420 case FILEIO_ENODEV:
12421 return ENODEV;
12422 case FILEIO_ENOTDIR:
12423 return ENOTDIR;
12424 case FILEIO_EISDIR:
12425 return EISDIR;
12426 case FILEIO_EINVAL:
12427 return EINVAL;
12428 case FILEIO_ENFILE:
12429 return ENFILE;
12430 case FILEIO_EMFILE:
12431 return EMFILE;
12432 case FILEIO_EFBIG:
12433 return EFBIG;
12434 case FILEIO_ENOSPC:
12435 return ENOSPC;
12436 case FILEIO_ESPIPE:
12437 return ESPIPE;
12438 case FILEIO_EROFS:
12439 return EROFS;
12440 case FILEIO_ENOSYS:
12441 return ENOSYS;
12442 case FILEIO_ENAMETOOLONG:
12443 return ENAMETOOLONG;
12444 }
12445 return -1;
12446}
12447
12448static char *
12449remote_hostio_error (int errnum)
12450{
12451 int host_error = remote_fileio_errno_to_host (errnum);
12452
12453 if (host_error == -1)
12454 error (_("Unknown remote I/O error %d"), errnum);
12455 else
12456 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12457}
12458
440b7aec
PA
12459/* A RAII wrapper around a remote file descriptor. */
12460
12461class scoped_remote_fd
a6b151f1 12462{
440b7aec 12463public:
6b8edb51
PA
12464 scoped_remote_fd (remote_target *remote, int fd)
12465 : m_remote (remote), m_fd (fd)
440b7aec
PA
12466 {
12467 }
a6b151f1 12468
440b7aec
PA
12469 ~scoped_remote_fd ()
12470 {
12471 if (m_fd != -1)
12472 {
12473 try
12474 {
12475 int remote_errno;
6b8edb51 12476 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12477 }
12478 catch (...)
12479 {
12480 /* Swallow exception before it escapes the dtor. If
12481 something goes wrong, likely the connection is gone,
12482 and there's nothing else that can be done. */
12483 }
12484 }
12485 }
12486
12487 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12488
12489 /* Release ownership of the file descriptor, and return it. */
88a774b9 12490 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12491 {
12492 int fd = m_fd;
12493 m_fd = -1;
12494 return fd;
12495 }
12496
12497 /* Return the owned file descriptor. */
12498 int get () const noexcept
12499 {
12500 return m_fd;
12501 }
12502
12503private:
6b8edb51
PA
12504 /* The remote target. */
12505 remote_target *m_remote;
12506
440b7aec
PA
12507 /* The owned remote I/O file descriptor. */
12508 int m_fd;
12509};
a6b151f1
DJ
12510
12511void
12512remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12513{
12514 remote_target *remote = get_current_remote_target ();
12515
12516 if (remote == nullptr)
12517 error (_("command can only be used with remote target"));
12518
12519 remote->remote_file_put (local_file, remote_file, from_tty);
12520}
12521
12522void
12523remote_target::remote_file_put (const char *local_file, const char *remote_file,
12524 int from_tty)
a6b151f1 12525{
440b7aec 12526 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12527 int bytes_in_buffer;
12528 int saw_eof;
12529 ULONGEST offset;
a6b151f1 12530
d419f42d 12531 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12532 if (file == NULL)
12533 perror_with_name (local_file);
a6b151f1 12534
440b7aec 12535 scoped_remote_fd fd
6b8edb51
PA
12536 (this, remote_hostio_open (NULL,
12537 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12538 | FILEIO_O_TRUNC),
12539 0700, 0, &remote_errno));
440b7aec 12540 if (fd.get () == -1)
a6b151f1
DJ
12541 remote_hostio_error (remote_errno);
12542
12543 /* Send up to this many bytes at once. They won't all fit in the
12544 remote packet limit, so we'll transfer slightly fewer. */
12545 io_size = get_remote_packet_size ();
5ca3b260 12546 gdb::byte_vector buffer (io_size);
a6b151f1 12547
a6b151f1
DJ
12548 bytes_in_buffer = 0;
12549 saw_eof = 0;
12550 offset = 0;
12551 while (bytes_in_buffer || !saw_eof)
12552 {
12553 if (!saw_eof)
12554 {
5ca3b260 12555 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12556 io_size - bytes_in_buffer,
d419f42d 12557 file.get ());
a6b151f1
DJ
12558 if (bytes == 0)
12559 {
d419f42d 12560 if (ferror (file.get ()))
a6b151f1
DJ
12561 error (_("Error reading %s."), local_file);
12562 else
12563 {
12564 /* EOF. Unless there is something still in the
12565 buffer from the last iteration, we are done. */
12566 saw_eof = 1;
12567 if (bytes_in_buffer == 0)
12568 break;
12569 }
12570 }
12571 }
12572 else
12573 bytes = 0;
12574
12575 bytes += bytes_in_buffer;
12576 bytes_in_buffer = 0;
12577
5ca3b260 12578 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12579 offset, &remote_errno);
a6b151f1
DJ
12580
12581 if (retcode < 0)
12582 remote_hostio_error (remote_errno);
12583 else if (retcode == 0)
12584 error (_("Remote write of %d bytes returned 0!"), bytes);
12585 else if (retcode < bytes)
12586 {
12587 /* Short write. Save the rest of the read data for the next
12588 write. */
12589 bytes_in_buffer = bytes - retcode;
5ca3b260 12590 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12591 }
12592
12593 offset += retcode;
12594 }
12595
6b8edb51 12596 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12597 remote_hostio_error (remote_errno);
12598
12599 if (from_tty)
12600 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12601}
12602
12603void
12604remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12605{
12606 remote_target *remote = get_current_remote_target ();
12607
12608 if (remote == nullptr)
12609 error (_("command can only be used with remote target"));
12610
12611 remote->remote_file_get (remote_file, local_file, from_tty);
12612}
12613
12614void
12615remote_target::remote_file_get (const char *remote_file, const char *local_file,
12616 int from_tty)
a6b151f1 12617{
440b7aec 12618 int remote_errno, bytes, io_size;
a6b151f1 12619 ULONGEST offset;
a6b151f1 12620
440b7aec 12621 scoped_remote_fd fd
6b8edb51
PA
12622 (this, remote_hostio_open (NULL,
12623 remote_file, FILEIO_O_RDONLY, 0, 0,
12624 &remote_errno));
440b7aec 12625 if (fd.get () == -1)
a6b151f1
DJ
12626 remote_hostio_error (remote_errno);
12627
d419f42d 12628 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12629 if (file == NULL)
12630 perror_with_name (local_file);
a6b151f1
DJ
12631
12632 /* Send up to this many bytes at once. They won't all fit in the
12633 remote packet limit, so we'll transfer slightly fewer. */
12634 io_size = get_remote_packet_size ();
5ca3b260 12635 gdb::byte_vector buffer (io_size);
a6b151f1 12636
a6b151f1
DJ
12637 offset = 0;
12638 while (1)
12639 {
5ca3b260 12640 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12641 &remote_errno);
a6b151f1
DJ
12642 if (bytes == 0)
12643 /* Success, but no bytes, means end-of-file. */
12644 break;
12645 if (bytes == -1)
12646 remote_hostio_error (remote_errno);
12647
12648 offset += bytes;
12649
5ca3b260 12650 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12651 if (bytes == 0)
12652 perror_with_name (local_file);
12653 }
12654
6b8edb51 12655 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12656 remote_hostio_error (remote_errno);
12657
12658 if (from_tty)
12659 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12660}
12661
12662void
12663remote_file_delete (const char *remote_file, int from_tty)
12664{
6b8edb51 12665 remote_target *remote = get_current_remote_target ();
a6b151f1 12666
6b8edb51 12667 if (remote == nullptr)
a6b151f1
DJ
12668 error (_("command can only be used with remote target"));
12669
6b8edb51
PA
12670 remote->remote_file_delete (remote_file, from_tty);
12671}
12672
12673void
12674remote_target::remote_file_delete (const char *remote_file, int from_tty)
12675{
12676 int retcode, remote_errno;
12677
12678 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12679 if (retcode == -1)
12680 remote_hostio_error (remote_errno);
12681
12682 if (from_tty)
12683 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12684}
12685
12686static void
ac88e2de 12687remote_put_command (const char *args, int from_tty)
a6b151f1 12688{
d1a41061
PP
12689 if (args == NULL)
12690 error_no_arg (_("file to put"));
12691
773a1edc 12692 gdb_argv argv (args);
a6b151f1
DJ
12693 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12694 error (_("Invalid parameters to remote put"));
12695
12696 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12697}
12698
12699static void
ac88e2de 12700remote_get_command (const char *args, int from_tty)
a6b151f1 12701{
d1a41061
PP
12702 if (args == NULL)
12703 error_no_arg (_("file to get"));
12704
773a1edc 12705 gdb_argv argv (args);
a6b151f1
DJ
12706 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12707 error (_("Invalid parameters to remote get"));
12708
12709 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12710}
12711
12712static void
ac88e2de 12713remote_delete_command (const char *args, int from_tty)
a6b151f1 12714{
d1a41061
PP
12715 if (args == NULL)
12716 error_no_arg (_("file to delete"));
12717
773a1edc 12718 gdb_argv argv (args);
a6b151f1
DJ
12719 if (argv[0] == NULL || argv[1] != NULL)
12720 error (_("Invalid parameters to remote delete"));
12721
12722 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12723}
12724
57810aa7 12725bool
f6ac5f3d 12726remote_target::can_execute_reverse ()
b2175913 12727{
4082afcc
PA
12728 if (packet_support (PACKET_bs) == PACKET_ENABLE
12729 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12730 return true;
40ab02ce 12731 else
57810aa7 12732 return false;
b2175913
MS
12733}
12734
57810aa7 12735bool
f6ac5f3d 12736remote_target::supports_non_stop ()
74531fed 12737{
57810aa7 12738 return true;
74531fed
PA
12739}
12740
57810aa7 12741bool
f6ac5f3d 12742remote_target::supports_disable_randomization ()
03583c20
UW
12743{
12744 /* Only supported in extended mode. */
57810aa7 12745 return false;
03583c20
UW
12746}
12747
57810aa7 12748bool
f6ac5f3d 12749remote_target::supports_multi_process ()
8a305172
PA
12750{
12751 struct remote_state *rs = get_remote_state ();
a744cf53 12752
8020350c 12753 return remote_multi_process_p (rs);
8a305172
PA
12754}
12755
70221824 12756static int
f6ac5f3d 12757remote_supports_cond_tracepoints ()
782b2b07 12758{
4082afcc 12759 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12760}
12761
57810aa7 12762bool
f6ac5f3d 12763remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12764{
4082afcc 12765 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12766}
12767
70221824 12768static int
f6ac5f3d 12769remote_supports_fast_tracepoints ()
7a697b8d 12770{
4082afcc 12771 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12772}
12773
0fb4aa4b 12774static int
f6ac5f3d 12775remote_supports_static_tracepoints ()
0fb4aa4b 12776{
4082afcc 12777 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12778}
12779
1e4d1764 12780static int
f6ac5f3d 12781remote_supports_install_in_trace ()
1e4d1764 12782{
4082afcc 12783 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12784}
12785
57810aa7 12786bool
f6ac5f3d 12787remote_target::supports_enable_disable_tracepoint ()
d248b706 12788{
4082afcc
PA
12789 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12790 == PACKET_ENABLE);
d248b706
KY
12791}
12792
57810aa7 12793bool
f6ac5f3d 12794remote_target::supports_string_tracing ()
3065dfb6 12795{
4082afcc 12796 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12797}
12798
57810aa7 12799bool
f6ac5f3d 12800remote_target::can_run_breakpoint_commands ()
d3ce09f5 12801{
4082afcc 12802 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12803}
12804
f6ac5f3d
PA
12805void
12806remote_target::trace_init ()
35b1e5cc 12807{
b6bb3468
PA
12808 struct remote_state *rs = get_remote_state ();
12809
35b1e5cc 12810 putpkt ("QTinit");
b6bb3468 12811 remote_get_noisy_reply ();
8d64371b 12812 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12813 error (_("Target does not support this command."));
12814}
12815
409873ef
SS
12816/* Recursive routine to walk through command list including loops, and
12817 download packets for each command. */
12818
6b8edb51
PA
12819void
12820remote_target::remote_download_command_source (int num, ULONGEST addr,
12821 struct command_line *cmds)
409873ef
SS
12822{
12823 struct remote_state *rs = get_remote_state ();
12824 struct command_line *cmd;
12825
12826 for (cmd = cmds; cmd; cmd = cmd->next)
12827 {
0df8b418 12828 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12829 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12830 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12831 rs->buf.data () + strlen (rs->buf.data ()),
12832 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12833 putpkt (rs->buf);
b6bb3468 12834 remote_get_noisy_reply ();
8d64371b 12835 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12836 warning (_("Target does not support source download."));
12837
12838 if (cmd->control_type == while_control
12839 || cmd->control_type == while_stepping_control)
12840 {
12973681 12841 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12842
0df8b418 12843 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12844 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12845 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12846 rs->buf.data () + strlen (rs->buf.data ()),
12847 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12848 putpkt (rs->buf);
b6bb3468 12849 remote_get_noisy_reply ();
8d64371b 12850 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12851 warning (_("Target does not support source download."));
12852 }
12853 }
12854}
12855
f6ac5f3d
PA
12856void
12857remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12858{
12859 CORE_ADDR tpaddr;
409873ef 12860 char addrbuf[40];
b44ec619
SM
12861 std::vector<std::string> tdp_actions;
12862 std::vector<std::string> stepping_actions;
35b1e5cc 12863 char *pkt;
e8ba3115 12864 struct breakpoint *b = loc->owner;
d9b3f62e 12865 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12866 struct remote_state *rs = get_remote_state ();
3df3a985 12867 int ret;
ff36536c 12868 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12869 size_t size_left;
12870
12871 /* We use a buffer other than rs->buf because we'll build strings
12872 across multiple statements, and other statements in between could
12873 modify rs->buf. */
12874 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12875
dc673c81 12876 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12877
12878 tpaddr = loc->address;
53807e9f 12879 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
3df3a985
PFC
12880 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12881 b->number, addrbuf, /* address */
12882 (b->enable_state == bp_enabled ? 'E' : 'D'),
12883 t->step_count, t->pass_count);
12884
12885 if (ret < 0 || ret >= buf.size ())
a7f25a84 12886 error ("%s", err_msg);
3df3a985 12887
e8ba3115
YQ
12888 /* Fast tracepoints are mostly handled by the target, but we can
12889 tell the target how big of an instruction block should be moved
12890 around. */
12891 if (b->type == bp_fast_tracepoint)
12892 {
12893 /* Only test for support at download time; we may not know
12894 target capabilities at definition time. */
12895 if (remote_supports_fast_tracepoints ())
35b1e5cc 12896 {
6b940e6a
PL
12897 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12898 NULL))
3df3a985
PFC
12899 {
12900 size_left = buf.size () - strlen (buf.data ());
12901 ret = snprintf (buf.data () + strlen (buf.data ()),
12902 size_left, ":F%x",
12903 gdb_insn_length (loc->gdbarch, tpaddr));
12904
12905 if (ret < 0 || ret >= size_left)
a7f25a84 12906 error ("%s", err_msg);
3df3a985 12907 }
35b1e5cc 12908 else
e8ba3115
YQ
12909 /* If it passed validation at definition but fails now,
12910 something is very wrong. */
12911 internal_error (__FILE__, __LINE__,
12912 _("Fast tracepoint not "
12913 "valid during download"));
35b1e5cc 12914 }
e8ba3115
YQ
12915 else
12916 /* Fast tracepoints are functionally identical to regular
12917 tracepoints, so don't take lack of support as a reason to
12918 give up on the trace run. */
12919 warning (_("Target does not support fast tracepoints, "
12920 "downloading %d as regular tracepoint"), b->number);
12921 }
12922 else if (b->type == bp_static_tracepoint)
12923 {
12924 /* Only test for support at download time; we may not know
12925 target capabilities at definition time. */
12926 if (remote_supports_static_tracepoints ())
0fb4aa4b 12927 {
e8ba3115 12928 struct static_tracepoint_marker marker;
0fb4aa4b 12929
e8ba3115 12930 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12931 {
12932 size_left = buf.size () - strlen (buf.data ());
12933 ret = snprintf (buf.data () + strlen (buf.data ()),
12934 size_left, ":S");
12935
12936 if (ret < 0 || ret >= size_left)
a7f25a84 12937 error ("%s", err_msg);
3df3a985 12938 }
0fb4aa4b 12939 else
e8ba3115 12940 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12941 }
e8ba3115
YQ
12942 else
12943 /* Fast tracepoints are functionally identical to regular
12944 tracepoints, so don't take lack of support as a reason
12945 to give up on the trace run. */
12946 error (_("Target does not support static tracepoints"));
12947 }
12948 /* If the tracepoint has a conditional, make it into an agent
12949 expression and append to the definition. */
12950 if (loc->cond)
12951 {
12952 /* Only test support at download time, we may not know target
12953 capabilities at definition time. */
12954 if (remote_supports_cond_tracepoints ())
35b1e5cc 12955 {
3df3a985
PFC
12956 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12957 loc->cond.get ());
12958
12959 size_left = buf.size () - strlen (buf.data ());
12960
12961 ret = snprintf (buf.data () + strlen (buf.data ()),
12962 size_left, ":X%x,", aexpr->len);
12963
12964 if (ret < 0 || ret >= size_left)
a7f25a84 12965 error ("%s", err_msg);
3df3a985
PFC
12966
12967 size_left = buf.size () - strlen (buf.data ());
12968
12969 /* Two bytes to encode each aexpr byte, plus the terminating
12970 null byte. */
12971 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12972 error ("%s", err_msg);
3df3a985
PFC
12973
12974 pkt = buf.data () + strlen (buf.data ());
12975
b44ec619 12976 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12977 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12978 *pkt = '\0';
35b1e5cc 12979 }
e8ba3115
YQ
12980 else
12981 warning (_("Target does not support conditional tracepoints, "
12982 "ignoring tp %d cond"), b->number);
12983 }
35b1e5cc 12984
d9b3f62e 12985 if (b->commands || *default_collect)
3df3a985
PFC
12986 {
12987 size_left = buf.size () - strlen (buf.data ());
12988
12989 ret = snprintf (buf.data () + strlen (buf.data ()),
12990 size_left, "-");
12991
12992 if (ret < 0 || ret >= size_left)
a7f25a84 12993 error ("%s", err_msg);
3df3a985
PFC
12994 }
12995
12996 putpkt (buf.data ());
b6bb3468 12997 remote_get_noisy_reply ();
8d64371b 12998 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12999 error (_("Target does not support tracepoints."));
35b1e5cc 13000
e8ba3115 13001 /* do_single_steps (t); */
b44ec619
SM
13002 for (auto action_it = tdp_actions.begin ();
13003 action_it != tdp_actions.end (); action_it++)
e8ba3115 13004 {
b44ec619
SM
13005 QUIT; /* Allow user to bail out with ^C. */
13006
aa6f3694 13007 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
13008 || !stepping_actions.empty ());
13009
3df3a985
PFC
13010 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13011 b->number, addrbuf, /* address */
13012 action_it->c_str (),
13013 has_more ? '-' : 0);
13014
13015 if (ret < 0 || ret >= buf.size ())
a7f25a84 13016 error ("%s", err_msg);
3df3a985
PFC
13017
13018 putpkt (buf.data ());
b44ec619 13019 remote_get_noisy_reply ();
8d64371b 13020 if (strcmp (rs->buf.data (), "OK"))
b44ec619 13021 error (_("Error on target while setting tracepoints."));
e8ba3115 13022 }
409873ef 13023
05abfc39
PFC
13024 for (auto action_it = stepping_actions.begin ();
13025 action_it != stepping_actions.end (); action_it++)
13026 {
13027 QUIT; /* Allow user to bail out with ^C. */
13028
13029 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 13030 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 13031
3df3a985
PFC
13032 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13033 b->number, addrbuf, /* address */
13034 is_first ? "S" : "",
13035 action_it->c_str (),
13036 has_more ? "-" : "");
13037
13038 if (ret < 0 || ret >= buf.size ())
a7f25a84 13039 error ("%s", err_msg);
3df3a985
PFC
13040
13041 putpkt (buf.data ());
05abfc39 13042 remote_get_noisy_reply ();
8d64371b 13043 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
13044 error (_("Error on target while setting tracepoints."));
13045 }
b44ec619 13046
4082afcc 13047 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 13048 {
f00aae0f 13049 if (b->location != NULL)
409873ef 13050 {
3df3a985
PFC
13051 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13052
13053 if (ret < 0 || ret >= buf.size ())
a7f25a84 13054 error ("%s", err_msg);
3df3a985 13055
f00aae0f 13056 encode_source_string (b->number, loc->address, "at",
d28cd78a 13057 event_location_to_string (b->location.get ()),
3df3a985
PFC
13058 buf.data () + strlen (buf.data ()),
13059 buf.size () - strlen (buf.data ()));
13060 putpkt (buf.data ());
b6bb3468 13061 remote_get_noisy_reply ();
8d64371b 13062 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13063 warning (_("Target does not support source download."));
409873ef 13064 }
e8ba3115
YQ
13065 if (b->cond_string)
13066 {
3df3a985
PFC
13067 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13068
13069 if (ret < 0 || ret >= buf.size ())
a7f25a84 13070 error ("%s", err_msg);
3df3a985 13071
e8ba3115 13072 encode_source_string (b->number, loc->address,
3df3a985
PFC
13073 "cond", b->cond_string,
13074 buf.data () + strlen (buf.data ()),
13075 buf.size () - strlen (buf.data ()));
13076 putpkt (buf.data ());
b6bb3468 13077 remote_get_noisy_reply ();
8d64371b 13078 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13079 warning (_("Target does not support source download."));
13080 }
13081 remote_download_command_source (b->number, loc->address,
13082 breakpoint_commands (b));
35b1e5cc 13083 }
35b1e5cc
SS
13084}
13085
57810aa7 13086bool
f6ac5f3d 13087remote_target::can_download_tracepoint ()
1e4d1764 13088{
1e51243a
PA
13089 struct remote_state *rs = get_remote_state ();
13090 struct trace_status *ts;
13091 int status;
13092
13093 /* Don't try to install tracepoints until we've relocated our
13094 symbols, and fetched and merged the target's tracepoint list with
13095 ours. */
13096 if (rs->starting_up)
57810aa7 13097 return false;
1e51243a
PA
13098
13099 ts = current_trace_status ();
f6ac5f3d 13100 status = get_trace_status (ts);
1e4d1764
YQ
13101
13102 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13103 return false;
1e4d1764
YQ
13104
13105 /* If we are in a tracing experiment, but remote stub doesn't support
13106 installing tracepoint in trace, we have to return. */
13107 if (!remote_supports_install_in_trace ())
57810aa7 13108 return false;
1e4d1764 13109
57810aa7 13110 return true;
1e4d1764
YQ
13111}
13112
13113
f6ac5f3d
PA
13114void
13115remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13116{
13117 struct remote_state *rs = get_remote_state ();
00bf0b85 13118 char *p;
35b1e5cc 13119
8d64371b 13120 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13121 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13122 tsv.builtin);
8d64371b
TT
13123 p = rs->buf.data () + strlen (rs->buf.data ());
13124 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13125 >= get_remote_packet_size ())
00bf0b85 13126 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13127 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13128 *p++ = '\0';
35b1e5cc 13129 putpkt (rs->buf);
b6bb3468 13130 remote_get_noisy_reply ();
8d64371b 13131 if (rs->buf[0] == '\0')
ad91cd99 13132 error (_("Target does not support this command."));
8d64371b 13133 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13134 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13135}
13136
f6ac5f3d
PA
13137void
13138remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13139{
13140 struct remote_state *rs = get_remote_state ();
d248b706 13141
8d64371b 13142 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
53807e9f
TT
13143 location->owner->number,
13144 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13145 putpkt (rs->buf);
b6bb3468 13146 remote_get_noisy_reply ();
8d64371b 13147 if (rs->buf[0] == '\0')
d248b706 13148 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13149 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13150 error (_("Error on target while enabling tracepoint."));
13151}
13152
f6ac5f3d
PA
13153void
13154remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13155{
13156 struct remote_state *rs = get_remote_state ();
d248b706 13157
8d64371b 13158 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
53807e9f
TT
13159 location->owner->number,
13160 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13161 putpkt (rs->buf);
b6bb3468 13162 remote_get_noisy_reply ();
8d64371b 13163 if (rs->buf[0] == '\0')
d248b706 13164 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13165 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13166 error (_("Error on target while disabling tracepoint."));
13167}
13168
f6ac5f3d
PA
13169void
13170remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13171{
13172 asection *s;
13173 bfd_size_type size;
608bcef2 13174 bfd_vma vma;
35b1e5cc 13175 int anysecs = 0;
c2fa21f1 13176 int offset = 0;
35b1e5cc
SS
13177
13178 if (!exec_bfd)
13179 return; /* No information to give. */
13180
b6bb3468
PA
13181 struct remote_state *rs = get_remote_state ();
13182
8d64371b
TT
13183 strcpy (rs->buf.data (), "QTro");
13184 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13185 for (s = exec_bfd->sections; s; s = s->next)
13186 {
13187 char tmp1[40], tmp2[40];
c2fa21f1 13188 int sec_length;
35b1e5cc
SS
13189
13190 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13191 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13192 (s->flags & SEC_READONLY) == 0)
13193 continue;
13194
13195 anysecs = 1;
fd361982
AM
13196 vma = bfd_section_vma (s);
13197 size = bfd_section_size (s);
608bcef2
HZ
13198 sprintf_vma (tmp1, vma);
13199 sprintf_vma (tmp2, vma + size);
c2fa21f1 13200 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13201 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13202 {
4082afcc 13203 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13204 warning (_("\
c2fa21f1
HZ
13205Too many sections for read-only sections definition packet."));
13206 break;
13207 }
8d64371b 13208 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13209 tmp1, tmp2);
c2fa21f1 13210 offset += sec_length;
35b1e5cc
SS
13211 }
13212 if (anysecs)
13213 {
b6bb3468 13214 putpkt (rs->buf);
8d64371b 13215 getpkt (&rs->buf, 0);
35b1e5cc
SS
13216 }
13217}
13218
f6ac5f3d
PA
13219void
13220remote_target::trace_start ()
35b1e5cc 13221{
b6bb3468
PA
13222 struct remote_state *rs = get_remote_state ();
13223
35b1e5cc 13224 putpkt ("QTStart");
b6bb3468 13225 remote_get_noisy_reply ();
8d64371b 13226 if (rs->buf[0] == '\0')
ad91cd99 13227 error (_("Target does not support this command."));
8d64371b
TT
13228 if (strcmp (rs->buf.data (), "OK") != 0)
13229 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13230}
13231
f6ac5f3d
PA
13232int
13233remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13234{
953b98d1 13235 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13236 char *p = NULL;
bd3eecc3 13237 enum packet_result result;
b6bb3468 13238 struct remote_state *rs = get_remote_state ();
bd3eecc3 13239
4082afcc 13240 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13241 return -1;
a744cf53 13242
7b9a15e1 13243 /* FIXME we need to get register block size some other way. */
5cd63fda 13244 trace_regblock_size
9d6eea31 13245 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13246
049dc89b
JK
13247 putpkt ("qTStatus");
13248
a70b8144 13249 try
67f41397 13250 {
b6bb3468 13251 p = remote_get_noisy_reply ();
67f41397 13252 }
230d2906 13253 catch (const gdb_exception_error &ex)
67f41397 13254 {
598d3636
JK
13255 if (ex.error != TARGET_CLOSE_ERROR)
13256 {
13257 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13258 return -1;
13259 }
eedc3f4f 13260 throw;
67f41397 13261 }
00bf0b85 13262
bd3eecc3
PA
13263 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13264
00bf0b85 13265 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13266 if (result == PACKET_UNKNOWN)
00bf0b85 13267 return -1;
35b1e5cc 13268
00bf0b85 13269 /* We're working with a live target. */
f5911ea1 13270 ts->filename = NULL;
00bf0b85 13271
00bf0b85 13272 if (*p++ != 'T')
8d64371b 13273 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13274
84cebc4a
YQ
13275 /* Function 'parse_trace_status' sets default value of each field of
13276 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13277 parse_trace_status (p, ts);
13278
13279 return ts->running;
35b1e5cc
SS
13280}
13281
f6ac5f3d
PA
13282void
13283remote_target::get_tracepoint_status (struct breakpoint *bp,
13284 struct uploaded_tp *utp)
f196051f
SS
13285{
13286 struct remote_state *rs = get_remote_state ();
f196051f
SS
13287 char *reply;
13288 struct bp_location *loc;
13289 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13290 size_t size = get_remote_packet_size ();
f196051f
SS
13291
13292 if (tp)
13293 {
c1fc2657 13294 tp->hit_count = 0;
f196051f 13295 tp->traceframe_usage = 0;
c1fc2657 13296 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13297 {
13298 /* If the tracepoint was never downloaded, don't go asking for
13299 any status. */
13300 if (tp->number_on_target == 0)
13301 continue;
8d64371b 13302 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13303 phex_nz (loc->address, 0));
f196051f 13304 putpkt (rs->buf);
b6bb3468 13305 reply = remote_get_noisy_reply ();
f196051f
SS
13306 if (reply && *reply)
13307 {
13308 if (*reply == 'V')
13309 parse_tracepoint_status (reply + 1, bp, utp);
13310 }
13311 }
13312 }
13313 else if (utp)
13314 {
13315 utp->hit_count = 0;
13316 utp->traceframe_usage = 0;
8d64371b 13317 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13318 phex_nz (utp->addr, 0));
f196051f 13319 putpkt (rs->buf);
b6bb3468 13320 reply = remote_get_noisy_reply ();
f196051f
SS
13321 if (reply && *reply)
13322 {
13323 if (*reply == 'V')
13324 parse_tracepoint_status (reply + 1, bp, utp);
13325 }
13326 }
13327}
13328
f6ac5f3d
PA
13329void
13330remote_target::trace_stop ()
35b1e5cc 13331{
b6bb3468
PA
13332 struct remote_state *rs = get_remote_state ();
13333
35b1e5cc 13334 putpkt ("QTStop");
b6bb3468 13335 remote_get_noisy_reply ();
8d64371b 13336 if (rs->buf[0] == '\0')
ad91cd99 13337 error (_("Target does not support this command."));
8d64371b
TT
13338 if (strcmp (rs->buf.data (), "OK") != 0)
13339 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13340}
13341
f6ac5f3d
PA
13342int
13343remote_target::trace_find (enum trace_find_type type, int num,
13344 CORE_ADDR addr1, CORE_ADDR addr2,
13345 int *tpp)
35b1e5cc
SS
13346{
13347 struct remote_state *rs = get_remote_state ();
8d64371b 13348 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13349 char *p, *reply;
13350 int target_frameno = -1, target_tracept = -1;
13351
e6e4e701
PA
13352 /* Lookups other than by absolute frame number depend on the current
13353 trace selected, so make sure it is correct on the remote end
13354 first. */
13355 if (type != tfind_number)
13356 set_remote_traceframe ();
13357
8d64371b 13358 p = rs->buf.data ();
35b1e5cc
SS
13359 strcpy (p, "QTFrame:");
13360 p = strchr (p, '\0');
13361 switch (type)
13362 {
13363 case tfind_number:
bba74b36 13364 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13365 break;
13366 case tfind_pc:
bba74b36 13367 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13368 break;
13369 case tfind_tp:
bba74b36 13370 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13371 break;
13372 case tfind_range:
bba74b36
YQ
13373 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13374 phex_nz (addr2, 0));
35b1e5cc
SS
13375 break;
13376 case tfind_outside:
bba74b36
YQ
13377 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13378 phex_nz (addr2, 0));
35b1e5cc
SS
13379 break;
13380 default:
9b20d036 13381 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13382 }
13383
13384 putpkt (rs->buf);
b6bb3468 13385 reply = remote_get_noisy_reply ();
ad91cd99
PA
13386 if (*reply == '\0')
13387 error (_("Target does not support this command."));
35b1e5cc
SS
13388
13389 while (reply && *reply)
13390 switch (*reply)
13391 {
13392 case 'F':
f197e0f1
VP
13393 p = ++reply;
13394 target_frameno = (int) strtol (p, &reply, 16);
13395 if (reply == p)
13396 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13397 /* Don't update our remote traceframe number cache on failure
13398 to select a remote traceframe. */
f197e0f1
VP
13399 if (target_frameno == -1)
13400 return -1;
35b1e5cc
SS
13401 break;
13402 case 'T':
f197e0f1
VP
13403 p = ++reply;
13404 target_tracept = (int) strtol (p, &reply, 16);
13405 if (reply == p)
13406 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13407 break;
13408 case 'O': /* "OK"? */
13409 if (reply[1] == 'K' && reply[2] == '\0')
13410 reply += 2;
13411 else
13412 error (_("Bogus reply from target: %s"), reply);
13413 break;
13414 default:
13415 error (_("Bogus reply from target: %s"), reply);
13416 }
13417 if (tpp)
13418 *tpp = target_tracept;
e6e4e701 13419
262e1174 13420 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13421 return target_frameno;
13422}
13423
57810aa7 13424bool
f6ac5f3d 13425remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13426{
13427 struct remote_state *rs = get_remote_state ();
13428 char *reply;
13429 ULONGEST uval;
13430
e6e4e701
PA
13431 set_remote_traceframe ();
13432
8d64371b 13433 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13434 putpkt (rs->buf);
b6bb3468 13435 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13436 if (reply && *reply)
13437 {
13438 if (*reply == 'V')
13439 {
13440 unpack_varlen_hex (reply + 1, &uval);
13441 *val = (LONGEST) uval;
57810aa7 13442 return true;
35b1e5cc
SS
13443 }
13444 }
57810aa7 13445 return false;
35b1e5cc
SS
13446}
13447
f6ac5f3d
PA
13448int
13449remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13450{
13451 struct remote_state *rs = get_remote_state ();
13452 char *p, *reply;
13453
8d64371b 13454 p = rs->buf.data ();
00bf0b85
SS
13455 strcpy (p, "QTSave:");
13456 p += strlen (p);
8d64371b
TT
13457 if ((p - rs->buf.data ()) + strlen (filename) * 2
13458 >= get_remote_packet_size ())
00bf0b85 13459 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13460 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13461 *p++ = '\0';
13462 putpkt (rs->buf);
b6bb3468 13463 reply = remote_get_noisy_reply ();
d6c5869f 13464 if (*reply == '\0')
ad91cd99
PA
13465 error (_("Target does not support this command."));
13466 if (strcmp (reply, "OK") != 0)
13467 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13468 return 0;
13469}
13470
13471/* This is basically a memory transfer, but needs to be its own packet
13472 because we don't know how the target actually organizes its trace
13473 memory, plus we want to be able to ask for as much as possible, but
13474 not be unhappy if we don't get as much as we ask for. */
13475
f6ac5f3d
PA
13476LONGEST
13477remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13478{
13479 struct remote_state *rs = get_remote_state ();
13480 char *reply;
13481 char *p;
13482 int rslt;
13483
8d64371b 13484 p = rs->buf.data ();
00bf0b85
SS
13485 strcpy (p, "qTBuffer:");
13486 p += strlen (p);
13487 p += hexnumstr (p, offset);
13488 *p++ = ',';
13489 p += hexnumstr (p, len);
13490 *p++ = '\0';
13491
13492 putpkt (rs->buf);
b6bb3468 13493 reply = remote_get_noisy_reply ();
00bf0b85
SS
13494 if (reply && *reply)
13495 {
13496 /* 'l' by itself means we're at the end of the buffer and
13497 there is nothing more to get. */
13498 if (*reply == 'l')
13499 return 0;
13500
13501 /* Convert the reply into binary. Limit the number of bytes to
13502 convert according to our passed-in buffer size, rather than
13503 what was returned in the packet; if the target is
13504 unexpectedly generous and gives us a bigger reply than we
13505 asked for, we don't want to crash. */
b6bb3468 13506 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13507 return rslt;
13508 }
13509
13510 /* Something went wrong, flag as an error. */
13511 return -1;
13512}
13513
f6ac5f3d
PA
13514void
13515remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13516{
13517 struct remote_state *rs = get_remote_state ();
13518
4082afcc 13519 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13520 {
ad91cd99
PA
13521 char *reply;
13522
8d64371b
TT
13523 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13524 "QTDisconnected:%x", val);
33da3f1c 13525 putpkt (rs->buf);
b6bb3468 13526 reply = remote_get_noisy_reply ();
ad91cd99 13527 if (*reply == '\0')
33da3f1c 13528 error (_("Target does not support this command."));
ad91cd99
PA
13529 if (strcmp (reply, "OK") != 0)
13530 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13531 }
13532 else if (val)
13533 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13534}
13535
f6ac5f3d
PA
13536int
13537remote_target::core_of_thread (ptid_t ptid)
dc146f7c 13538{
5b6d1e4f 13539 thread_info *info = find_thread_ptid (this, ptid);
a744cf53 13540
7aabaf9d
SM
13541 if (info != NULL && info->priv != NULL)
13542 return get_remote_thread_info (info)->core;
13543
dc146f7c
VP
13544 return -1;
13545}
13546
f6ac5f3d
PA
13547void
13548remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13549{
13550 struct remote_state *rs = get_remote_state ();
ad91cd99 13551 char *reply;
4daf5ac0 13552
8d64371b
TT
13553 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13554 "QTBuffer:circular:%x", val);
4daf5ac0 13555 putpkt (rs->buf);
b6bb3468 13556 reply = remote_get_noisy_reply ();
ad91cd99 13557 if (*reply == '\0')
4daf5ac0 13558 error (_("Target does not support this command."));
ad91cd99
PA
13559 if (strcmp (reply, "OK") != 0)
13560 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13561}
13562
f6ac5f3d
PA
13563traceframe_info_up
13564remote_target::traceframe_info ()
b3b9301e 13565{
9018be22 13566 gdb::optional<gdb::char_vector> text
8b88a78e 13567 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13568 NULL);
9018be22
SM
13569 if (text)
13570 return parse_traceframe_info (text->data ());
b3b9301e
PA
13571
13572 return NULL;
13573}
13574
405f8e94
SS
13575/* Handle the qTMinFTPILen packet. Returns the minimum length of
13576 instruction on which a fast tracepoint may be placed. Returns -1
13577 if the packet is not supported, and 0 if the minimum instruction
13578 length is unknown. */
13579
f6ac5f3d
PA
13580int
13581remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13582{
13583 struct remote_state *rs = get_remote_state ();
13584 char *reply;
13585
e886a173
PA
13586 /* If we're not debugging a process yet, the IPA can't be
13587 loaded. */
55f6301a 13588 if (!target_has_execution ())
e886a173
PA
13589 return 0;
13590
13591 /* Make sure the remote is pointing at the right process. */
13592 set_general_process ();
13593
8d64371b 13594 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13595 putpkt (rs->buf);
b6bb3468 13596 reply = remote_get_noisy_reply ();
405f8e94
SS
13597 if (*reply == '\0')
13598 return -1;
13599 else
13600 {
13601 ULONGEST min_insn_len;
13602
13603 unpack_varlen_hex (reply, &min_insn_len);
13604
13605 return (int) min_insn_len;
13606 }
13607}
13608
f6ac5f3d
PA
13609void
13610remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13611{
4082afcc 13612 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13613 {
13614 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13615 char *buf = rs->buf.data ();
13616 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13617 enum packet_result result;
13618
13619 gdb_assert (val >= 0 || val == -1);
13620 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13621 /* Send -1 as literal "-1" to avoid host size dependency. */
13622 if (val < 0)
13623 {
13624 *buf++ = '-';
13625 buf += hexnumstr (buf, (ULONGEST) -val);
13626 }
13627 else
13628 buf += hexnumstr (buf, (ULONGEST) val);
13629
13630 putpkt (rs->buf);
b6bb3468 13631 remote_get_noisy_reply ();
f6f899bf
HAQ
13632 result = packet_ok (rs->buf,
13633 &remote_protocol_packets[PACKET_QTBuffer_size]);
13634
13635 if (result != PACKET_OK)
8d64371b 13636 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13637 }
13638}
13639
57810aa7 13640bool
f6ac5f3d
PA
13641remote_target::set_trace_notes (const char *user, const char *notes,
13642 const char *stop_notes)
f196051f
SS
13643{
13644 struct remote_state *rs = get_remote_state ();
13645 char *reply;
8d64371b
TT
13646 char *buf = rs->buf.data ();
13647 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13648 int nbytes;
13649
13650 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13651 if (user)
13652 {
13653 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13654 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13655 buf += 2 * nbytes;
13656 *buf++ = ';';
13657 }
13658 if (notes)
13659 {
13660 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13661 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13662 buf += 2 * nbytes;
13663 *buf++ = ';';
13664 }
13665 if (stop_notes)
13666 {
13667 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13668 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13669 buf += 2 * nbytes;
13670 *buf++ = ';';
13671 }
13672 /* Ensure the buffer is terminated. */
13673 *buf = '\0';
13674
13675 putpkt (rs->buf);
b6bb3468 13676 reply = remote_get_noisy_reply ();
f196051f 13677 if (*reply == '\0')
57810aa7 13678 return false;
f196051f
SS
13679
13680 if (strcmp (reply, "OK") != 0)
13681 error (_("Bogus reply from target: %s"), reply);
13682
57810aa7 13683 return true;
f196051f
SS
13684}
13685
57810aa7
PA
13686bool
13687remote_target::use_agent (bool use)
d1feda86 13688{
4082afcc 13689 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13690 {
13691 struct remote_state *rs = get_remote_state ();
13692
13693 /* If the stub supports QAgent. */
8d64371b 13694 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13695 putpkt (rs->buf);
8d64371b 13696 getpkt (&rs->buf, 0);
d1feda86 13697
8d64371b 13698 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13699 {
f6ac5f3d 13700 ::use_agent = use;
57810aa7 13701 return true;
d1feda86
YQ
13702 }
13703 }
13704
57810aa7 13705 return false;
d1feda86
YQ
13706}
13707
57810aa7 13708bool
f6ac5f3d 13709remote_target::can_use_agent ()
d1feda86 13710{
4082afcc 13711 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13712}
13713
9accd112
MM
13714struct btrace_target_info
13715{
13716 /* The ptid of the traced thread. */
13717 ptid_t ptid;
f4abbc16
MM
13718
13719 /* The obtained branch trace configuration. */
13720 struct btrace_config conf;
9accd112
MM
13721};
13722
f4abbc16
MM
13723/* Reset our idea of our target's btrace configuration. */
13724
13725static void
6b8edb51 13726remote_btrace_reset (remote_state *rs)
f4abbc16 13727{
f4abbc16
MM
13728 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13729}
13730
f4abbc16
MM
13731/* Synchronize the configuration with the target. */
13732
6b8edb51
PA
13733void
13734remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13735{
d33501a5
MM
13736 struct packet_config *packet;
13737 struct remote_state *rs;
13738 char *buf, *pos, *endbuf;
13739
13740 rs = get_remote_state ();
8d64371b 13741 buf = rs->buf.data ();
d33501a5
MM
13742 endbuf = buf + get_remote_packet_size ();
13743
13744 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13745 if (packet_config_support (packet) == PACKET_ENABLE
13746 && conf->bts.size != rs->btrace_config.bts.size)
13747 {
13748 pos = buf;
13749 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13750 conf->bts.size);
13751
13752 putpkt (buf);
8d64371b 13753 getpkt (&rs->buf, 0);
d33501a5
MM
13754
13755 if (packet_ok (buf, packet) == PACKET_ERROR)
13756 {
13757 if (buf[0] == 'E' && buf[1] == '.')
13758 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13759 else
13760 error (_("Failed to configure the BTS buffer size."));
13761 }
13762
13763 rs->btrace_config.bts.size = conf->bts.size;
13764 }
b20a6524
MM
13765
13766 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13767 if (packet_config_support (packet) == PACKET_ENABLE
13768 && conf->pt.size != rs->btrace_config.pt.size)
13769 {
13770 pos = buf;
13771 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13772 conf->pt.size);
13773
13774 putpkt (buf);
8d64371b 13775 getpkt (&rs->buf, 0);
b20a6524
MM
13776
13777 if (packet_ok (buf, packet) == PACKET_ERROR)
13778 {
13779 if (buf[0] == 'E' && buf[1] == '.')
13780 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13781 else
13782 error (_("Failed to configure the trace buffer size."));
13783 }
13784
13785 rs->btrace_config.pt.size = conf->pt.size;
13786 }
f4abbc16
MM
13787}
13788
13789/* Read the current thread's btrace configuration from the target and
13790 store it into CONF. */
13791
13792static void
13793btrace_read_config (struct btrace_config *conf)
13794{
9018be22 13795 gdb::optional<gdb::char_vector> xml
8b88a78e 13796 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13797 if (xml)
13798 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13799}
13800
c0272db5
TW
13801/* Maybe reopen target btrace. */
13802
6b8edb51
PA
13803void
13804remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13805{
13806 struct remote_state *rs = get_remote_state ();
c0272db5 13807 int btrace_target_pushed = 0;
15766370 13808#if !defined (HAVE_LIBIPT)
c0272db5 13809 int warned = 0;
15766370 13810#endif
c0272db5 13811
aedbe3bb
CM
13812 /* Don't bother walking the entirety of the remote thread list when
13813 we know the feature isn't supported by the remote. */
13814 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13815 return;
13816
5ed8105e
PA
13817 scoped_restore_current_thread restore_thread;
13818
5b6d1e4f 13819 for (thread_info *tp : all_non_exited_threads (this))
c0272db5
TW
13820 {
13821 set_general_thread (tp->ptid);
13822
13823 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13824 btrace_read_config (&rs->btrace_config);
13825
13826 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13827 continue;
13828
13829#if !defined (HAVE_LIBIPT)
13830 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13831 {
13832 if (!warned)
13833 {
13834 warned = 1;
c4e12631
MM
13835 warning (_("Target is recording using Intel Processor Trace "
13836 "but support was disabled at compile time."));
c0272db5
TW
13837 }
13838
13839 continue;
13840 }
13841#endif /* !defined (HAVE_LIBIPT) */
13842
13843 /* Push target, once, but before anything else happens. This way our
13844 changes to the threads will be cleaned up by unpushing the target
13845 in case btrace_read_config () throws. */
13846 if (!btrace_target_pushed)
13847 {
13848 btrace_target_pushed = 1;
13849 record_btrace_push_target ();
13850 printf_filtered (_("Target is recording using %s.\n"),
13851 btrace_format_string (rs->btrace_config.format));
13852 }
13853
13854 tp->btrace.target = XCNEW (struct btrace_target_info);
13855 tp->btrace.target->ptid = tp->ptid;
13856 tp->btrace.target->conf = rs->btrace_config;
13857 }
c0272db5
TW
13858}
13859
9accd112
MM
13860/* Enable branch tracing. */
13861
f6ac5f3d
PA
13862struct btrace_target_info *
13863remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13864{
13865 struct btrace_target_info *tinfo = NULL;
b20a6524 13866 struct packet_config *packet = NULL;
9accd112 13867 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13868 char *buf = rs->buf.data ();
13869 char *endbuf = buf + get_remote_packet_size ();
9accd112 13870
b20a6524
MM
13871 switch (conf->format)
13872 {
13873 case BTRACE_FORMAT_BTS:
13874 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13875 break;
13876
13877 case BTRACE_FORMAT_PT:
13878 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13879 break;
13880 }
13881
13882 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13883 error (_("Target does not support branch tracing."));
13884
f4abbc16
MM
13885 btrace_sync_conf (conf);
13886
9accd112
MM
13887 set_general_thread (ptid);
13888
13889 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13890 putpkt (rs->buf);
8d64371b 13891 getpkt (&rs->buf, 0);
9accd112
MM
13892
13893 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13894 {
13895 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13896 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13897 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13898 else
13899 error (_("Could not enable branch tracing for %s."),
a068643d 13900 target_pid_to_str (ptid).c_str ());
9accd112
MM
13901 }
13902
8d749320 13903 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13904 tinfo->ptid = ptid;
13905
f4abbc16
MM
13906 /* If we fail to read the configuration, we lose some information, but the
13907 tracing itself is not impacted. */
a70b8144 13908 try
492d29ea
PA
13909 {
13910 btrace_read_config (&tinfo->conf);
13911 }
230d2906 13912 catch (const gdb_exception_error &err)
492d29ea
PA
13913 {
13914 if (err.message != NULL)
3d6e9d23 13915 warning ("%s", err.what ());
492d29ea 13916 }
f4abbc16 13917
9accd112
MM
13918 return tinfo;
13919}
13920
13921/* Disable branch tracing. */
13922
f6ac5f3d
PA
13923void
13924remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13925{
13926 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13927 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13928 char *buf = rs->buf.data ();
13929 char *endbuf = buf + get_remote_packet_size ();
9accd112 13930
4082afcc 13931 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13932 error (_("Target does not support branch tracing."));
13933
13934 set_general_thread (tinfo->ptid);
13935
13936 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13937 putpkt (rs->buf);
8d64371b 13938 getpkt (&rs->buf, 0);
9accd112
MM
13939
13940 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13941 {
13942 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13943 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13944 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13945 else
13946 error (_("Could not disable branch tracing for %s."),
a068643d 13947 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13948 }
13949
13950 xfree (tinfo);
13951}
13952
13953/* Teardown branch tracing. */
13954
f6ac5f3d
PA
13955void
13956remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13957{
13958 /* We must not talk to the target during teardown. */
13959 xfree (tinfo);
13960}
13961
13962/* Read the branch trace. */
13963
f6ac5f3d
PA
13964enum btrace_error
13965remote_target::read_btrace (struct btrace_data *btrace,
13966 struct btrace_target_info *tinfo,
13967 enum btrace_read_type type)
9accd112
MM
13968{
13969 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13970 const char *annex;
9accd112 13971
4082afcc 13972 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13973 error (_("Target does not support branch tracing."));
13974
13975#if !defined(HAVE_LIBEXPAT)
13976 error (_("Cannot process branch tracing result. XML parsing not supported."));
13977#endif
13978
13979 switch (type)
13980 {
864089d2 13981 case BTRACE_READ_ALL:
9accd112
MM
13982 annex = "all";
13983 break;
864089d2 13984 case BTRACE_READ_NEW:
9accd112
MM
13985 annex = "new";
13986 break;
969c39fb
MM
13987 case BTRACE_READ_DELTA:
13988 annex = "delta";
13989 break;
9accd112
MM
13990 default:
13991 internal_error (__FILE__, __LINE__,
13992 _("Bad branch tracing read type: %u."),
13993 (unsigned int) type);
13994 }
13995
9018be22 13996 gdb::optional<gdb::char_vector> xml
8b88a78e 13997 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13998 if (!xml)
969c39fb 13999 return BTRACE_ERR_UNKNOWN;
9accd112 14000
9018be22 14001 parse_xml_btrace (btrace, xml->data ());
9accd112 14002
969c39fb 14003 return BTRACE_ERR_NONE;
9accd112
MM
14004}
14005
f6ac5f3d
PA
14006const struct btrace_config *
14007remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
14008{
14009 return &tinfo->conf;
14010}
14011
57810aa7 14012bool
f6ac5f3d 14013remote_target::augmented_libraries_svr4_read ()
ced63ec0 14014{
4082afcc
PA
14015 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14016 == PACKET_ENABLE);
ced63ec0
GB
14017}
14018
9dd130a0
TT
14019/* Implementation of to_load. */
14020
f6ac5f3d
PA
14021void
14022remote_target::load (const char *name, int from_tty)
9dd130a0
TT
14023{
14024 generic_load (name, from_tty);
14025}
14026
c78fa86a
GB
14027/* Accepts an integer PID; returns a string representing a file that
14028 can be opened on the remote side to get the symbols for the child
14029 process. Returns NULL if the operation is not supported. */
14030
f6ac5f3d
PA
14031char *
14032remote_target::pid_to_exec_file (int pid)
c78fa86a 14033{
9018be22 14034 static gdb::optional<gdb::char_vector> filename;
835205d0 14035 char *annex = NULL;
c78fa86a
GB
14036
14037 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14038 return NULL;
14039
5b6d1e4f 14040 inferior *inf = find_inferior_pid (this, pid);
835205d0
GB
14041 if (inf == NULL)
14042 internal_error (__FILE__, __LINE__,
14043 _("not currently attached to process %d"), pid);
14044
14045 if (!inf->fake_pid_p)
14046 {
14047 const int annex_size = 9;
14048
224c3ddb 14049 annex = (char *) alloca (annex_size);
835205d0
GB
14050 xsnprintf (annex, annex_size, "%x", pid);
14051 }
14052
8b88a78e 14053 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
14054 TARGET_OBJECT_EXEC_FILE, annex);
14055
9018be22 14056 return filename ? filename->data () : nullptr;
c78fa86a
GB
14057}
14058
750ce8d1
YQ
14059/* Implement the to_can_do_single_step target_ops method. */
14060
f6ac5f3d
PA
14061int
14062remote_target::can_do_single_step ()
750ce8d1
YQ
14063{
14064 /* We can only tell whether target supports single step or not by
14065 supported s and S vCont actions if the stub supports vContSupported
14066 feature. If the stub doesn't support vContSupported feature,
14067 we have conservatively to think target doesn't supports single
14068 step. */
14069 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14070 {
14071 struct remote_state *rs = get_remote_state ();
14072
14073 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14074 remote_vcont_probe ();
750ce8d1
YQ
14075
14076 return rs->supports_vCont.s && rs->supports_vCont.S;
14077 }
14078 else
14079 return 0;
14080}
14081
3a00c802
PA
14082/* Implementation of the to_execution_direction method for the remote
14083 target. */
14084
f6ac5f3d
PA
14085enum exec_direction_kind
14086remote_target::execution_direction ()
3a00c802
PA
14087{
14088 struct remote_state *rs = get_remote_state ();
14089
14090 return rs->last_resume_exec_dir;
14091}
14092
f6327dcb
KB
14093/* Return pointer to the thread_info struct which corresponds to
14094 THREAD_HANDLE (having length HANDLE_LEN). */
14095
f6ac5f3d
PA
14096thread_info *
14097remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14098 int handle_len,
14099 inferior *inf)
f6327dcb 14100{
5b6d1e4f 14101 for (thread_info *tp : all_non_exited_threads (this))
f6327dcb 14102 {
7aabaf9d 14103 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14104
14105 if (tp->inf == inf && priv != NULL)
14106 {
7aabaf9d 14107 if (handle_len != priv->thread_handle.size ())
f6327dcb 14108 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
14109 handle_len, priv->thread_handle.size ());
14110 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
14111 handle_len) == 0)
14112 return tp;
14113 }
14114 }
14115
14116 return NULL;
14117}
14118
3d6c6204
KB
14119gdb::byte_vector
14120remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14121{
14122 remote_thread_info *priv = get_remote_thread_info (tp);
14123 return priv->thread_handle;
14124}
14125
57810aa7 14126bool
f6ac5f3d 14127remote_target::can_async_p ()
6426a772 14128{
5d93a237
TT
14129 struct remote_state *rs = get_remote_state ();
14130
3015c064
SM
14131 /* We don't go async if the user has explicitly prevented it with the
14132 "maint set target-async" command. */
c6ebd6cf 14133 if (!target_async_permitted)
57810aa7 14134 return false;
75c99385 14135
23860348 14136 /* We're async whenever the serial device is. */
5d93a237 14137 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14138}
14139
57810aa7 14140bool
f6ac5f3d 14141remote_target::is_async_p ()
6426a772 14142{
5d93a237
TT
14143 struct remote_state *rs = get_remote_state ();
14144
c6ebd6cf 14145 if (!target_async_permitted)
75c99385 14146 /* We only enable async when the user specifically asks for it. */
57810aa7 14147 return false;
75c99385 14148
23860348 14149 /* We're async whenever the serial device is. */
5d93a237 14150 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14151}
14152
2acceee2
JM
14153/* Pass the SERIAL event on and up to the client. One day this code
14154 will be able to delay notifying the client of an event until the
23860348 14155 point where an entire packet has been received. */
2acceee2 14156
2acceee2
JM
14157static serial_event_ftype remote_async_serial_handler;
14158
6426a772 14159static void
819cc324 14160remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14161{
2acceee2
JM
14162 /* Don't propogate error information up to the client. Instead let
14163 the client find out about the error by querying the target. */
b1a35af2 14164 inferior_event_handler (INF_REG_EVENT);
2acceee2
JM
14165}
14166
74531fed
PA
14167static void
14168remote_async_inferior_event_handler (gdb_client_data data)
14169{
b1a35af2 14170 inferior_event_handler (INF_REG_EVENT);
96118d11
PA
14171
14172 remote_target *remote = (remote_target *) data;
14173 remote_state *rs = remote->get_remote_state ();
14174
14175 /* inferior_event_handler may have consumed an event pending on the
14176 infrun side without calling target_wait on the REMOTE target, or
14177 may have pulled an event out of a different target. Keep trying
14178 for this remote target as long it still has either pending events
14179 or unacknowledged notifications. */
14180
14181 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL
14182 || !rs->stop_reply_queue.empty ())
14183 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
14184}
14185
5b6d1e4f
PA
14186int
14187remote_target::async_wait_fd ()
14188{
14189 struct remote_state *rs = get_remote_state ();
14190 return rs->remote_desc->fd;
14191}
14192
f6ac5f3d
PA
14193void
14194remote_target::async (int enable)
2acceee2 14195{
5d93a237
TT
14196 struct remote_state *rs = get_remote_state ();
14197
6a3753b3 14198 if (enable)
2acceee2 14199 {
88b496c3 14200 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14201
14202 /* If there are pending events in the stop reply queue tell the
14203 event loop to process them. */
953edf2b 14204 if (!rs->stop_reply_queue.empty ())
6b8edb51 14205 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14206 /* For simplicity, below we clear the pending events token
14207 without remembering whether it is marked, so here we always
14208 mark it. If there's actually no pending notification to
14209 process, this ends up being a no-op (other than a spurious
14210 event-loop wakeup). */
14211 if (target_is_non_stop_p ())
14212 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14213 }
14214 else
b7d2e916
PA
14215 {
14216 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14217 /* If the core is disabling async, it doesn't want to be
14218 disturbed with target events. Clear all async event sources
14219 too. */
6b8edb51 14220 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14221 if (target_is_non_stop_p ())
14222 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14223 }
6426a772
JM
14224}
14225
65706a29
PA
14226/* Implementation of the to_thread_events method. */
14227
f6ac5f3d
PA
14228void
14229remote_target::thread_events (int enable)
65706a29
PA
14230{
14231 struct remote_state *rs = get_remote_state ();
14232 size_t size = get_remote_packet_size ();
65706a29
PA
14233
14234 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14235 return;
14236
8d64371b 14237 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14238 putpkt (rs->buf);
8d64371b 14239 getpkt (&rs->buf, 0);
65706a29
PA
14240
14241 switch (packet_ok (rs->buf,
14242 &remote_protocol_packets[PACKET_QThreadEvents]))
14243 {
14244 case PACKET_OK:
8d64371b
TT
14245 if (strcmp (rs->buf.data (), "OK") != 0)
14246 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14247 break;
14248 case PACKET_ERROR:
8d64371b 14249 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14250 break;
14251 case PACKET_UNKNOWN:
14252 break;
14253 }
14254}
14255
d471ea57 14256static void
981a3fb3 14257show_remote_cmd (const char *args, int from_tty)
d471ea57 14258{
37a105a1 14259 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14260 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14261 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14262 struct ui_out *uiout = current_uiout;
37a105a1 14263
2e783024 14264 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14265 for (; list != NULL; list = list->next)
14266 if (strcmp (list->name, "Z-packet") == 0)
14267 continue;
427c3a89
DJ
14268 else if (list->type == not_set_cmd)
14269 /* Alias commands are exactly like the original, except they
14270 don't have the normal type. */
14271 continue;
14272 else
37a105a1 14273 {
2e783024 14274 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14275
112e8700
SM
14276 uiout->field_string ("name", list->name);
14277 uiout->text (": ");
427c3a89 14278 if (list->type == show_cmd)
f5c4fcd9 14279 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14280 else
14281 cmd_func (list, NULL, from_tty);
37a105a1 14282 }
d471ea57 14283}
5a2468f5 14284
0f71a2f6 14285
23860348 14286/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14287static void
14288remote_new_objfile (struct objfile *objfile)
14289{
6b8edb51 14290 remote_target *remote = get_current_remote_target ();
5d93a237 14291
6b8edb51
PA
14292 if (remote != NULL) /* Have a remote connection. */
14293 remote->remote_check_symbols ();
dc8acb97
MS
14294}
14295
00bf0b85
SS
14296/* Pull all the tracepoints defined on the target and create local
14297 data structures representing them. We don't want to create real
14298 tracepoints yet, we don't want to mess up the user's existing
14299 collection. */
14300
f6ac5f3d
PA
14301int
14302remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14303{
00bf0b85
SS
14304 struct remote_state *rs = get_remote_state ();
14305 char *p;
d5551862 14306
00bf0b85
SS
14307 /* Ask for a first packet of tracepoint definition. */
14308 putpkt ("qTfP");
8d64371b
TT
14309 getpkt (&rs->buf, 0);
14310 p = rs->buf.data ();
00bf0b85 14311 while (*p && *p != 'l')
d5551862 14312 {
00bf0b85
SS
14313 parse_tracepoint_definition (p, utpp);
14314 /* Ask for another packet of tracepoint definition. */
14315 putpkt ("qTsP");
8d64371b
TT
14316 getpkt (&rs->buf, 0);
14317 p = rs->buf.data ();
d5551862 14318 }
00bf0b85 14319 return 0;
d5551862
SS
14320}
14321
f6ac5f3d
PA
14322int
14323remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14324{
00bf0b85 14325 struct remote_state *rs = get_remote_state ();
d5551862 14326 char *p;
d5551862 14327
00bf0b85
SS
14328 /* Ask for a first packet of variable definition. */
14329 putpkt ("qTfV");
8d64371b
TT
14330 getpkt (&rs->buf, 0);
14331 p = rs->buf.data ();
00bf0b85 14332 while (*p && *p != 'l')
d5551862 14333 {
00bf0b85
SS
14334 parse_tsv_definition (p, utsvp);
14335 /* Ask for another packet of variable definition. */
14336 putpkt ("qTsV");
8d64371b
TT
14337 getpkt (&rs->buf, 0);
14338 p = rs->buf.data ();
d5551862 14339 }
00bf0b85 14340 return 0;
d5551862
SS
14341}
14342
c1e36e3e
PA
14343/* The "set/show range-stepping" show hook. */
14344
14345static void
14346show_range_stepping (struct ui_file *file, int from_tty,
14347 struct cmd_list_element *c,
14348 const char *value)
14349{
14350 fprintf_filtered (file,
14351 _("Debugger's willingness to use range stepping "
14352 "is %s.\n"), value);
14353}
14354
6b8edb51
PA
14355/* Return true if the vCont;r action is supported by the remote
14356 stub. */
14357
14358bool
14359remote_target::vcont_r_supported ()
14360{
14361 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14362 remote_vcont_probe ();
14363
14364 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14365 && get_remote_state ()->supports_vCont.r);
14366}
14367
c1e36e3e
PA
14368/* The "set/show range-stepping" set hook. */
14369
14370static void
eb4c3f4a 14371set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14372 struct cmd_list_element *c)
14373{
6b8edb51
PA
14374 /* When enabling, check whether range stepping is actually supported
14375 by the target, and warn if not. */
c1e36e3e
PA
14376 if (use_range_stepping)
14377 {
6b8edb51
PA
14378 remote_target *remote = get_current_remote_target ();
14379 if (remote == NULL
14380 || !remote->vcont_r_supported ())
14381 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14382 }
14383}
14384
6c265988 14385void _initialize_remote ();
c906108c 14386void
6c265988 14387_initialize_remote ()
c906108c 14388{
9a7071a8 14389 struct cmd_list_element *cmd;
6f937416 14390 const char *cmd_name;
ea9c271d 14391
0f71a2f6 14392 /* architecture specific data */
29709017
DJ
14393 remote_g_packet_data_handle =
14394 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14395
d9f719f1
PA
14396 add_target (remote_target_info, remote_target::open);
14397 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14398
dc8acb97 14399 /* Hook into new objfile notification. */
76727919 14400 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14401
c906108c
SS
14402#if 0
14403 init_remote_threadtests ();
14404#endif
14405
23860348 14406 /* set/show remote ... */
d471ea57 14407
0743fc83 14408 add_basic_prefix_cmd ("remote", class_maintenance, _("\
590042fc 14409Remote protocol specific variables.\n\
5a2468f5 14410Configure various remote-protocol specific variables such as\n\
590042fc 14411the packets being used."),
0743fc83
TT
14412 &remote_set_cmdlist, "set remote ",
14413 0 /* allow-unknown */, &setlist);
1bedd215 14414 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14415Remote protocol specific variables.\n\
5a2468f5 14416Configure various remote-protocol specific variables such as\n\
590042fc 14417the packets being used."),
cff3e48b 14418 &remote_show_cmdlist, "show remote ",
23860348 14419 0 /* allow-unknown */, &showlist);
5a2468f5 14420
1a966eab
AC
14421 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14422Compare section data on target to the exec file.\n\
95cf3b38
DT
14423Argument is a single section name (default: all loaded sections).\n\
14424To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14425 &cmdlist);
14426
1a966eab
AC
14427 add_cmd ("packet", class_maintenance, packet_command, _("\
14428Send an arbitrary packet to a remote target.\n\
c906108c
SS
14429 maintenance packet TEXT\n\
14430If GDB is talking to an inferior via the GDB serial protocol, then\n\
14431this command sends the string TEXT to the inferior, and displays the\n\
14432response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14433terminating `#' character and checksum."),
c906108c
SS
14434 &maintenancelist);
14435
7915a72c
AC
14436 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14437Set whether to send break if interrupted."), _("\
14438Show whether to send break if interrupted."), _("\
14439If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14440 set_remotebreak, show_remotebreak,
e707bbc2 14441 &setlist, &showlist);
9a7071a8 14442 cmd_name = "remotebreak";
cf00cd6f 14443 cmd = lookup_cmd (&cmd_name, setlist, "", NULL, -1, 1);
9a7071a8
JB
14444 deprecate_cmd (cmd, "set remote interrupt-sequence");
14445 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
cf00cd6f 14446 cmd = lookup_cmd (&cmd_name, showlist, "", NULL, -1, 1);
9a7071a8
JB
14447 deprecate_cmd (cmd, "show remote interrupt-sequence");
14448
14449 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14450 interrupt_sequence_modes, &interrupt_sequence_mode,
14451 _("\
9a7071a8
JB
14452Set interrupt sequence to remote target."), _("\
14453Show interrupt sequence to remote target."), _("\
14454Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14455 NULL, show_interrupt_sequence,
14456 &remote_set_cmdlist,
14457 &remote_show_cmdlist);
14458
14459 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14460 &interrupt_on_connect, _("\
590042fc
PW
14461Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14462Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14463If set, interrupt sequence is sent to remote target."),
14464 NULL, NULL,
14465 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14466
23860348 14467 /* Install commands for configuring memory read/write packets. */
11cf8741 14468
1a966eab
AC
14469 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14470Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14471 &setlist);
1a966eab
AC
14472 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14473Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14474 &showlist);
14475 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14476 set_memory_write_packet_size, _("\
14477Set the maximum number of bytes per memory-write packet.\n\
14478Specify the number of bytes in a packet or 0 (zero) for the\n\
14479default packet size. The actual limit is further reduced\n\
14480dependent on the target. Specify ``fixed'' to disable the\n\
14481further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14482 &remote_set_cmdlist);
14483 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14484 set_memory_read_packet_size, _("\
14485Set the maximum number of bytes per memory-read packet.\n\
14486Specify the number of bytes in a packet or 0 (zero) for the\n\
14487default packet size. The actual limit is further reduced\n\
14488dependent on the target. Specify ``fixed'' to disable the\n\
14489further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14490 &remote_set_cmdlist);
14491 add_cmd ("memory-write-packet-size", no_class,
14492 show_memory_write_packet_size,
1a966eab 14493 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14494 &remote_show_cmdlist);
14495 add_cmd ("memory-read-packet-size", no_class,
14496 show_memory_read_packet_size,
1a966eab 14497 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14498 &remote_show_cmdlist);
c906108c 14499
055303e2 14500 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14501 &remote_hw_watchpoint_limit, _("\
14502Set the maximum number of target hardware watchpoints."), _("\
14503Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14504Specify \"unlimited\" for unlimited hardware watchpoints."),
14505 NULL, show_hardware_watchpoint_limit,
14506 &remote_set_cmdlist,
14507 &remote_show_cmdlist);
14508 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14509 no_class,
480a3f21
PW
14510 &remote_hw_watchpoint_length_limit, _("\
14511Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14512Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14513Specify \"unlimited\" to allow watchpoints of unlimited size."),
14514 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14515 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14516 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14517 &remote_hw_breakpoint_limit, _("\
14518Set the maximum number of target hardware breakpoints."), _("\
14519Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14520Specify \"unlimited\" for unlimited hardware breakpoints."),
14521 NULL, show_hardware_breakpoint_limit,
b3f42336 14522 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14523
1b493192
PA
14524 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14525 &remote_address_size, _("\
4d28ad1e
AC
14526Set the maximum size of the address (in bits) in a memory packet."), _("\
14527Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14528 NULL,
14529 NULL, /* FIXME: i18n: */
14530 &setlist, &showlist);
c906108c 14531
ca4f7f8b
PA
14532 init_all_packet_configs ();
14533
444abaca 14534 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14535 "X", "binary-download", 1);
0f71a2f6 14536
444abaca 14537 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14538 "vCont", "verbose-resume", 0);
506fb367 14539
89be2091
DJ
14540 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14541 "QPassSignals", "pass-signals", 0);
14542
82075af2
JS
14543 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14544 "QCatchSyscalls", "catch-syscalls", 0);
14545
9b224c5e
PA
14546 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14547 "QProgramSignals", "program-signals", 0);
14548
bc3b087d
SDJ
14549 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14550 "QSetWorkingDir", "set-working-dir", 0);
14551
aefd8b33
SDJ
14552 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14553 "QStartupWithShell", "startup-with-shell", 0);
14554
0a2dde4a
SDJ
14555 add_packet_config_cmd (&remote_protocol_packets
14556 [PACKET_QEnvironmentHexEncoded],
14557 "QEnvironmentHexEncoded", "environment-hex-encoded",
14558 0);
14559
14560 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14561 "QEnvironmentReset", "environment-reset",
14562 0);
14563
14564 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14565 "QEnvironmentUnset", "environment-unset",
14566 0);
14567
444abaca 14568 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14569 "qSymbol", "symbol-lookup", 0);
dc8acb97 14570
444abaca 14571 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14572 "P", "set-register", 1);
d471ea57 14573
444abaca 14574 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14575 "p", "fetch-register", 1);
b96ec7ac 14576
444abaca 14577 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14578 "Z0", "software-breakpoint", 0);
d471ea57 14579
444abaca 14580 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14581 "Z1", "hardware-breakpoint", 0);
d471ea57 14582
444abaca 14583 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14584 "Z2", "write-watchpoint", 0);
d471ea57 14585
444abaca 14586 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14587 "Z3", "read-watchpoint", 0);
d471ea57 14588
444abaca 14589 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14590 "Z4", "access-watchpoint", 0);
d471ea57 14591
0876f84a
DJ
14592 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14593 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14594
c78fa86a
GB
14595 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14596 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14597
23181151
DJ
14598 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14599 "qXfer:features:read", "target-features", 0);
14600
cfa9d6d9
DJ
14601 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14602 "qXfer:libraries:read", "library-info", 0);
14603
2268b414
JK
14604 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14605 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14606
fd79ecee
DJ
14607 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14608 "qXfer:memory-map:read", "memory-map", 0);
14609
07e059b5
VP
14610 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14611 "qXfer:osdata:read", "osdata", 0);
14612
dc146f7c
VP
14613 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14614 "qXfer:threads:read", "threads", 0);
14615
4aa995e1
PA
14616 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14617 "qXfer:siginfo:read", "read-siginfo-object", 0);
14618
14619 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14620 "qXfer:siginfo:write", "write-siginfo-object", 0);
14621
b3b9301e
PA
14622 add_packet_config_cmd
14623 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14624 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14625
169081d0
TG
14626 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14627 "qXfer:uib:read", "unwind-info-block", 0);
14628
444abaca 14629 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14630 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14631 0);
14632
711e434b
PM
14633 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14634 "qGetTIBAddr", "get-thread-information-block-address",
14635 0);
14636
40ab02ce
MS
14637 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14638 "bc", "reverse-continue", 0);
14639
14640 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14641 "bs", "reverse-step", 0);
14642
be2a5f71
DJ
14643 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14644 "qSupported", "supported-packets", 0);
14645
08388c79
DE
14646 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14647 "qSearch:memory", "search-memory", 0);
14648
bd3eecc3
PA
14649 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14650 "qTStatus", "trace-status", 0);
14651
15a201c8
GB
14652 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14653 "vFile:setfs", "hostio-setfs", 0);
14654
a6b151f1
DJ
14655 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14656 "vFile:open", "hostio-open", 0);
14657
14658 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14659 "vFile:pread", "hostio-pread", 0);
14660
14661 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14662 "vFile:pwrite", "hostio-pwrite", 0);
14663
14664 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14665 "vFile:close", "hostio-close", 0);
14666
14667 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14668 "vFile:unlink", "hostio-unlink", 0);
14669
b9e7b9c3
UW
14670 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14671 "vFile:readlink", "hostio-readlink", 0);
14672
0a93529c
GB
14673 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14674 "vFile:fstat", "hostio-fstat", 0);
14675
2d717e4f
DJ
14676 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14677 "vAttach", "attach", 0);
14678
14679 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14680 "vRun", "run", 0);
14681
a6f3e723
SL
14682 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14683 "QStartNoAckMode", "noack", 0);
14684
82f73884
PA
14685 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14686 "vKill", "kill", 0);
14687
0b16c5cf
PA
14688 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14689 "qAttached", "query-attached", 0);
14690
782b2b07 14691 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14692 "ConditionalTracepoints",
14693 "conditional-tracepoints", 0);
3788aec7
LM
14694
14695 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14696 "ConditionalBreakpoints",
14697 "conditional-breakpoints", 0);
14698
d3ce09f5
SS
14699 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14700 "BreakpointCommands",
14701 "breakpoint-commands", 0);
14702
7a697b8d
SS
14703 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14704 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14705
409873ef
SS
14706 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14707 "TracepointSource", "TracepointSource", 0);
14708
d914c394
SS
14709 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14710 "QAllow", "allow", 0);
14711
0fb4aa4b
PA
14712 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14713 "StaticTracepoints", "static-tracepoints", 0);
14714
1e4d1764
YQ
14715 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14716 "InstallInTrace", "install-in-trace", 0);
14717
0fb4aa4b
PA
14718 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14719 "qXfer:statictrace:read", "read-sdata-object", 0);
14720
78d85199
YQ
14721 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14722 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14723
03583c20
UW
14724 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14725 "QDisableRandomization", "disable-randomization", 0);
14726
d1feda86
YQ
14727 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14728 "QAgent", "agent", 0);
14729
f6f899bf
HAQ
14730 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14731 "QTBuffer:size", "trace-buffer-size", 0);
14732
9accd112
MM
14733 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14734 "Qbtrace:off", "disable-btrace", 0);
14735
14736 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14737 "Qbtrace:bts", "enable-btrace-bts", 0);
14738
14739 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14740 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14741
14742 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14743 "qXfer:btrace", "read-btrace", 0);
14744
f4abbc16
MM
14745 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14746 "qXfer:btrace-conf", "read-btrace-conf", 0);
14747
d33501a5
MM
14748 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14749 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14750
73b8c1fd
PA
14751 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14752 "multiprocess-feature", "multiprocess-feature", 0);
14753
f7e6eed5
PA
14754 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14755 "swbreak-feature", "swbreak-feature", 0);
14756
14757 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14758 "hwbreak-feature", "hwbreak-feature", 0);
14759
89245bc0
DB
14760 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14761 "fork-event-feature", "fork-event-feature", 0);
14762
14763 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14764 "vfork-event-feature", "vfork-event-feature", 0);
14765
b20a6524
MM
14766 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14767 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14768
750ce8d1
YQ
14769 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14770 "vContSupported", "verbose-resume-supported", 0);
14771
94585166
DB
14772 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14773 "exec-event-feature", "exec-event-feature", 0);
14774
de979965
PA
14775 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14776 "vCtrlC", "ctrl-c", 0);
14777
65706a29
PA
14778 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14779 "QThreadEvents", "thread-events", 0);
14780
f2faf941
PA
14781 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14782 "N stop reply", "no-resumed-stop-reply", 0);
14783
0b736949
DB
14784 /* Assert that we've registered "set remote foo-packet" commands
14785 for all packet configs. */
ca4f7f8b
PA
14786 {
14787 int i;
14788
14789 for (i = 0; i < PACKET_MAX; i++)
14790 {
14791 /* Ideally all configs would have a command associated. Some
14792 still don't though. */
14793 int excepted;
14794
14795 switch (i)
14796 {
14797 case PACKET_QNonStop:
ca4f7f8b
PA
14798 case PACKET_EnableDisableTracepoints_feature:
14799 case PACKET_tracenz_feature:
14800 case PACKET_DisconnectedTracing_feature:
14801 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14802 case PACKET_qCRC:
14803 /* Additions to this list need to be well justified:
14804 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14805 excepted = 1;
14806 break;
14807 default:
14808 excepted = 0;
14809 break;
14810 }
14811
14812 /* This catches both forgetting to add a config command, and
14813 forgetting to remove a packet from the exception list. */
14814 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14815 }
14816 }
14817
37a105a1
DJ
14818 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14819 Z sub-packet has its own set and show commands, but users may
14820 have sets to this variable in their .gdbinit files (or in their
14821 documentation). */
e9e68a56 14822 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14823 &remote_Z_packet_detect, _("\
590042fc
PW
14824Set use of remote protocol `Z' packets."), _("\
14825Show use of remote protocol `Z' packets."), _("\
3b64bf98 14826When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14827packets."),
e9e68a56 14828 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14829 show_remote_protocol_Z_packet_cmd,
14830 /* FIXME: i18n: Use of remote protocol
14831 `Z' packets is %s. */
e9e68a56 14832 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14833
0743fc83 14834 add_basic_prefix_cmd ("remote", class_files, _("\
590042fc 14835Manipulate files on the remote system.\n\
a6b151f1 14836Transfer files to and from the remote target system."),
0743fc83
TT
14837 &remote_cmdlist, "remote ",
14838 0 /* allow-unknown */, &cmdlist);
a6b151f1
DJ
14839
14840 add_cmd ("put", class_files, remote_put_command,
14841 _("Copy a local file to the remote system."),
14842 &remote_cmdlist);
14843
14844 add_cmd ("get", class_files, remote_get_command,
14845 _("Copy a remote file to the local system."),
14846 &remote_cmdlist);
14847
14848 add_cmd ("delete", class_files, remote_delete_command,
14849 _("Delete a remote file."),
14850 &remote_cmdlist);
14851
2d717e4f 14852 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14853 &remote_exec_file_var, _("\
590042fc
PW
14854Set the remote pathname for \"run\"."), _("\
14855Show the remote pathname for \"run\"."), NULL,
94585166
DB
14856 set_remote_exec_file,
14857 show_remote_exec_file,
14858 &remote_set_cmdlist,
14859 &remote_show_cmdlist);
2d717e4f 14860
c1e36e3e
PA
14861 add_setshow_boolean_cmd ("range-stepping", class_run,
14862 &use_range_stepping, _("\
14863Enable or disable range stepping."), _("\
14864Show whether target-assisted range stepping is enabled."), _("\
14865If on, and the target supports it, when stepping a source line, GDB\n\
14866tells the target to step the corresponding range of addresses itself instead\n\
14867of issuing multiple single-steps. This speeds up source level\n\
14868stepping. If off, GDB always issues single-steps, even if range\n\
14869stepping is supported by the target. The default is on."),
14870 set_range_stepping,
14871 show_range_stepping,
14872 &setlist,
14873 &showlist);
14874
ed2b7c17
TT
14875 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14876Set watchdog timer."), _("\
14877Show watchdog timer."), _("\
14878When non-zero, this timeout is used instead of waiting forever for a target\n\
14879to finish a low-level step or continue operation. If the specified amount\n\
14880of time passes without a response from the target, an error occurs."),
14881 NULL,
14882 show_watchdog,
14883 &setlist, &showlist);
14884
6cc8564b
LM
14885 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
14886 &remote_packet_max_chars, _("\
14887Set the maximum number of characters to display for each remote packet."), _("\
14888Show the maximum number of characters to display for each remote packet."), _("\
14889Specify \"unlimited\" to display all the characters."),
14890 NULL, show_remote_packet_max_chars,
14891 &setdebuglist, &showdebuglist);
14892
449092f6 14893 /* Eventually initialize fileio. See fileio.c */
3f4d92eb 14894 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14895}
This page took 3.866828 seconds and 4 git commands to generate.