gdb: add target_ops::supports_displaced_step
[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;
425 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
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,
742 int options);
743 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
744 int options);
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 {
0d5b594f 2496 remote_add_thread (currthread, running, executing);
bad34192
PA
2497 inferior_ptid = currthread;
2498 }
dc146f7c 2499 return;
c0a2216e 2500 }
82f73884 2501
d7e15655 2502 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2503 {
2504 /* inferior_ptid is not set yet. This can happen with the
2505 vRun -> remote_wait,"TAAthread:" path if the stub
2506 doesn't support qC. This is the first stop reported
2507 after an attach, so this is the main thread. Update the
2508 ptid in the thread list. */
5b6d1e4f 2509 thread_change_ptid (this, inferior_ptid, currthread);
82f73884 2510 return;
c0a2216e 2511 }
82f73884 2512
29c87f7f
PA
2513 /* When connecting to a target remote, or to a target
2514 extended-remote which already was debugging an inferior, we
2515 may not know about it yet. Add it before adding its child
2516 thread, so notifications are emitted in a sensible order. */
5b6d1e4f 2517 if (find_inferior_pid (this, currthread.pid ()) == NULL)
49c62f2e
PA
2518 {
2519 struct remote_state *rs = get_remote_state ();
9ab8741a 2520 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2521
2522 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2523 currthread.pid (), -1, 1);
49c62f2e 2524 }
29c87f7f 2525
82f73884 2526 /* This is really a new thread. Add it. */
00431a78
PA
2527 thread_info *new_thr
2528 = remote_add_thread (currthread, running, executing);
1941c569
PA
2529
2530 /* If we found a new inferior, let the common code do whatever
2531 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2532 breakpoints), unless we're just setting up an all-stop
2533 connection. */
1941c569 2534 if (inf != NULL)
b7ea362b
PA
2535 {
2536 struct remote_state *rs = get_remote_state ();
2537
6efcd9a8 2538 if (!rs->starting_up)
00431a78 2539 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2540 }
c0a2216e 2541 }
c906108c
SS
2542}
2543
85ad3aaf 2544/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2545
7aabaf9d
SM
2546static remote_thread_info *
2547get_remote_thread_info (thread_info *thread)
dc146f7c 2548{
85ad3aaf 2549 gdb_assert (thread != NULL);
dc146f7c 2550
85ad3aaf 2551 if (thread->priv == NULL)
7aabaf9d 2552 thread->priv.reset (new remote_thread_info);
dc146f7c 2553
7aabaf9d 2554 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2555}
2556
5b6d1e4f
PA
2557/* Return PTID's private thread data, creating it if necessary. */
2558
7aabaf9d 2559static remote_thread_info *
5b6d1e4f 2560get_remote_thread_info (remote_target *target, ptid_t ptid)
85ad3aaf 2561{
5b6d1e4f 2562 thread_info *thr = find_thread_ptid (target, ptid);
00431a78 2563 return get_remote_thread_info (thr);
dc146f7c
VP
2564}
2565
74531fed
PA
2566/* Call this function as a result of
2567 1) A halt indication (T packet) containing a thread id
2568 2) A direct query of currthread
0df8b418 2569 3) Successful execution of set thread */
74531fed
PA
2570
2571static void
47f8a51d 2572record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2573{
47f8a51d 2574 rs->general_thread = currthread;
74531fed
PA
2575}
2576
89be2091
DJ
2577/* If 'QPassSignals' is supported, tell the remote stub what signals
2578 it can simply pass through to the inferior without reporting. */
2579
f6ac5f3d 2580void
adc6a863 2581remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2582{
4082afcc 2583 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2584 {
2585 char *pass_packet, *p;
adc6a863 2586 int count = 0;
747dc59d 2587 struct remote_state *rs = get_remote_state ();
89be2091 2588
adc6a863
PA
2589 gdb_assert (pass_signals.size () < 256);
2590 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2591 {
2455069d 2592 if (pass_signals[i])
89be2091
DJ
2593 count++;
2594 }
224c3ddb 2595 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2596 strcpy (pass_packet, "QPassSignals:");
2597 p = pass_packet + strlen (pass_packet);
adc6a863 2598 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2599 {
2455069d 2600 if (pass_signals[i])
89be2091
DJ
2601 {
2602 if (i >= 16)
2603 *p++ = tohex (i >> 4);
2604 *p++ = tohex (i & 15);
2605 if (count)
2606 *p++ = ';';
2607 else
2608 break;
2609 count--;
2610 }
2611 }
2612 *p = 0;
747dc59d 2613 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2614 {
89be2091 2615 putpkt (pass_packet);
8d64371b 2616 getpkt (&rs->buf, 0);
8dc5b319 2617 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
84d53fa9 2618 xfree (rs->last_pass_packet);
747dc59d 2619 rs->last_pass_packet = pass_packet;
89be2091
DJ
2620 }
2621 else
2622 xfree (pass_packet);
2623 }
2624}
2625
82075af2
JS
2626/* If 'QCatchSyscalls' is supported, tell the remote stub
2627 to report syscalls to GDB. */
2628
f6ac5f3d
PA
2629int
2630remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2631 gdb::array_view<const int> syscall_counts)
82075af2 2632{
b80406ac 2633 const char *catch_packet;
82075af2
JS
2634 enum packet_result result;
2635 int n_sysno = 0;
2636
2637 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2638 {
2639 /* Not supported. */
2640 return 1;
2641 }
2642
649a140c 2643 if (needed && any_count == 0)
82075af2 2644 {
649a140c
PA
2645 /* Count how many syscalls are to be caught. */
2646 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2647 {
649a140c 2648 if (syscall_counts[i] != 0)
82075af2
JS
2649 n_sysno++;
2650 }
2651 }
2652
2653 if (remote_debug)
2654 {
2655 fprintf_unfiltered (gdb_stdlog,
2656 "remote_set_syscall_catchpoint "
2657 "pid %d needed %d any_count %d n_sysno %d\n",
2658 pid, needed, any_count, n_sysno);
2659 }
2660
1b81856f 2661 std::string built_packet;
82075af2
JS
2662 if (needed)
2663 {
2664 /* Prepare a packet with the sysno list, assuming max 8+1
2665 characters for a sysno. If the resulting packet size is too
2666 big, fallback on the non-selective packet. */
2667 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2668 built_packet.reserve (maxpktsz);
2669 built_packet = "QCatchSyscalls:1";
649a140c 2670 if (any_count == 0)
82075af2 2671 {
649a140c
PA
2672 /* Add in each syscall to be caught. */
2673 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2674 {
649a140c
PA
2675 if (syscall_counts[i] != 0)
2676 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2677 }
2678 }
1b81856f 2679 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2680 {
2681 /* catch_packet too big. Fallback to less efficient
2682 non selective mode, with GDB doing the filtering. */
b80406ac 2683 catch_packet = "QCatchSyscalls:1";
82075af2 2684 }
b80406ac 2685 else
1b81856f 2686 catch_packet = built_packet.c_str ();
82075af2
JS
2687 }
2688 else
b80406ac 2689 catch_packet = "QCatchSyscalls:0";
82075af2 2690
b80406ac 2691 struct remote_state *rs = get_remote_state ();
82075af2 2692
b80406ac 2693 putpkt (catch_packet);
8d64371b 2694 getpkt (&rs->buf, 0);
b80406ac
TT
2695 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2696 if (result == PACKET_OK)
2697 return 0;
2698 else
2699 return -1;
82075af2
JS
2700}
2701
9b224c5e
PA
2702/* If 'QProgramSignals' is supported, tell the remote stub what
2703 signals it should pass through to the inferior when detaching. */
2704
f6ac5f3d 2705void
adc6a863 2706remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2707{
4082afcc 2708 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2709 {
2710 char *packet, *p;
adc6a863 2711 int count = 0;
5e4a05c4 2712 struct remote_state *rs = get_remote_state ();
9b224c5e 2713
adc6a863
PA
2714 gdb_assert (signals.size () < 256);
2715 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2716 {
2717 if (signals[i])
2718 count++;
2719 }
224c3ddb 2720 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2721 strcpy (packet, "QProgramSignals:");
2722 p = packet + strlen (packet);
adc6a863 2723 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2724 {
2725 if (signal_pass_state (i))
2726 {
2727 if (i >= 16)
2728 *p++ = tohex (i >> 4);
2729 *p++ = tohex (i & 15);
2730 if (count)
2731 *p++ = ';';
2732 else
2733 break;
2734 count--;
2735 }
2736 }
2737 *p = 0;
5e4a05c4
TT
2738 if (!rs->last_program_signals_packet
2739 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2740 {
9b224c5e 2741 putpkt (packet);
8d64371b 2742 getpkt (&rs->buf, 0);
8dc5b319 2743 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2744 xfree (rs->last_program_signals_packet);
2745 rs->last_program_signals_packet = packet;
9b224c5e
PA
2746 }
2747 else
2748 xfree (packet);
2749 }
2750}
2751
79d7f229
PA
2752/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2753 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2754 thread. If GEN is set, set the general thread, if not, then set
2755 the step/continue thread. */
6b8edb51
PA
2756void
2757remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2758{
d01949b6 2759 struct remote_state *rs = get_remote_state ();
47f8a51d 2760 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2761 char *buf = rs->buf.data ();
2762 char *endbuf = buf + get_remote_packet_size ();
c906108c 2763
d7e15655 2764 if (state == ptid)
c906108c
SS
2765 return;
2766
79d7f229
PA
2767 *buf++ = 'H';
2768 *buf++ = gen ? 'g' : 'c';
d7e15655 2769 if (ptid == magic_null_ptid)
79d7f229 2770 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2771 else if (ptid == any_thread_ptid)
79d7f229 2772 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2773 else if (ptid == minus_one_ptid)
79d7f229
PA
2774 xsnprintf (buf, endbuf - buf, "-1");
2775 else
82f73884 2776 write_ptid (buf, endbuf, ptid);
79d7f229 2777 putpkt (rs->buf);
8d64371b 2778 getpkt (&rs->buf, 0);
c906108c 2779 if (gen)
47f8a51d 2780 rs->general_thread = ptid;
c906108c 2781 else
47f8a51d 2782 rs->continue_thread = ptid;
c906108c 2783}
79d7f229 2784
6b8edb51
PA
2785void
2786remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2787{
2788 set_thread (ptid, 1);
2789}
2790
6b8edb51
PA
2791void
2792remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2793{
2794 set_thread (ptid, 0);
2795}
2796
3c9c4b83
PA
2797/* Change the remote current process. Which thread within the process
2798 ends up selected isn't important, as long as it is the same process
2799 as what INFERIOR_PTID points to.
2800
2801 This comes from that fact that there is no explicit notion of
2802 "selected process" in the protocol. The selected process for
2803 general operations is the process the selected general thread
2804 belongs to. */
2805
6b8edb51
PA
2806void
2807remote_target::set_general_process ()
3c9c4b83
PA
2808{
2809 struct remote_state *rs = get_remote_state ();
2810
2811 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2812 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2813 return;
2814
2815 /* We only need to change the remote current thread if it's pointing
2816 at some other process. */
e99b03dc 2817 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2818 set_general_thread (inferior_ptid);
2819}
2820
c906108c 2821\f
7d1a114c
PA
2822/* Return nonzero if this is the main thread that we made up ourselves
2823 to model non-threaded targets as single-threaded. */
c906108c
SS
2824
2825static int
f6ac5f3d 2826remote_thread_always_alive (ptid_t ptid)
c906108c 2827{
d7e15655 2828 if (ptid == magic_null_ptid)
c0a2216e
PA
2829 /* The main thread is always alive. */
2830 return 1;
2831
e38504b3 2832 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2833 /* The main thread is always alive. This can happen after a
2834 vAttach, if the remote side doesn't support
2835 multi-threading. */
2836 return 1;
2837
7d1a114c
PA
2838 return 0;
2839}
2840
2841/* Return nonzero if the thread PTID is still alive on the remote
2842 system. */
2843
57810aa7 2844bool
f6ac5f3d 2845remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2846{
2847 struct remote_state *rs = get_remote_state ();
2848 char *p, *endp;
2849
2850 /* Check if this is a thread that we made up ourselves to model
2851 non-threaded targets as single-threaded. */
f6ac5f3d 2852 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2853 return 1;
2854
8d64371b
TT
2855 p = rs->buf.data ();
2856 endp = p + get_remote_packet_size ();
82f73884
PA
2857
2858 *p++ = 'T';
2859 write_ptid (p, endp, ptid);
2860
2e9f7625 2861 putpkt (rs->buf);
8d64371b 2862 getpkt (&rs->buf, 0);
2e9f7625 2863 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2864}
2865
79efa585
SM
2866/* Return a pointer to a thread name if we know it and NULL otherwise.
2867 The thread_info object owns the memory for the name. */
2868
f6ac5f3d
PA
2869const char *
2870remote_target::thread_name (struct thread_info *info)
79efa585
SM
2871{
2872 if (info->priv != NULL)
a9334058
SM
2873 {
2874 const std::string &name = get_remote_thread_info (info)->name;
2875 return !name.empty () ? name.c_str () : NULL;
2876 }
79efa585
SM
2877
2878 return NULL;
2879}
2880
c906108c
SS
2881/* About these extended threadlist and threadinfo packets. They are
2882 variable length packets but, the fields within them are often fixed
30baf67b 2883 length. They are redundant enough to send over UDP as is the
c906108c
SS
2884 remote protocol in general. There is a matching unit test module
2885 in libstub. */
2886
23860348 2887/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2888 libstub protocol encoding, and remote.c. It is not particularly
23860348 2889 changable. */
cce74817
JM
2890
2891/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2892 Plan to fix this. */
cce74817 2893
23860348 2894typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2895
9d1f7ab2 2896/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2897 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2898
2899struct gdb_ext_thread_info
c5aa993b 2900 {
23860348 2901 threadref threadid; /* External form of thread reference. */
2bc416ba 2902 int active; /* Has state interesting to GDB?
23860348 2903 regs, stack. */
2bc416ba 2904 char display[256]; /* Brief state display, name,
cedea757 2905 blocked/suspended. */
23860348 2906 char shortname[32]; /* To be used to name threads. */
2bc416ba 2907 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2908 whatever. */
c5aa993b 2909 };
cce74817
JM
2910
2911/* The volume of remote transfers can be limited by submitting
2912 a mask containing bits specifying the desired information.
2913 Use a union of these values as the 'selection' parameter to
0df8b418 2914 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2915
2916#define TAG_THREADID 1
2917#define TAG_EXISTS 2
2918#define TAG_DISPLAY 4
2919#define TAG_THREADNAME 8
c5aa993b 2920#define TAG_MOREDISPLAY 16
cce74817 2921
23860348 2922#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2923
a14ed312 2924static char *unpack_nibble (char *buf, int *val);
cce74817 2925
a14ed312 2926static char *unpack_byte (char *buf, int *value);
cce74817 2927
a14ed312 2928static char *pack_int (char *buf, int value);
cce74817 2929
a14ed312 2930static char *unpack_int (char *buf, int *value);
cce74817 2931
a14ed312 2932static char *unpack_string (char *src, char *dest, int length);
cce74817 2933
23860348 2934static char *pack_threadid (char *pkt, threadref *id);
cce74817 2935
23860348 2936static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2937
23860348 2938void int_to_threadref (threadref *id, int value);
cce74817 2939
23860348 2940static int threadref_to_int (threadref *ref);
cce74817 2941
23860348 2942static void copy_threadref (threadref *dest, threadref *src);
cce74817 2943
23860348 2944static int threadmatch (threadref *dest, threadref *src);
cce74817 2945
2bc416ba 2946static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2947 threadref *id);
cce74817 2948
a14ed312
KB
2949static char *pack_threadlist_request (char *pkt, int startflag,
2950 int threadcount,
23860348 2951 threadref *nextthread);
cce74817 2952
23860348 2953static int remote_newthread_step (threadref *ref, void *context);
cce74817 2954
82f73884
PA
2955
2956/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2957 buffer we're allowed to write to. Returns
2958 BUF+CHARACTERS_WRITTEN. */
2959
6b8edb51
PA
2960char *
2961remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2962{
2963 int pid, tid;
2964 struct remote_state *rs = get_remote_state ();
2965
2966 if (remote_multi_process_p (rs))
2967 {
e99b03dc 2968 pid = ptid.pid ();
82f73884
PA
2969 if (pid < 0)
2970 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2971 else
2972 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2973 }
e38504b3 2974 tid = ptid.lwp ();
82f73884
PA
2975 if (tid < 0)
2976 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2977 else
2978 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2979
2980 return buf;
2981}
2982
256642e8
PA
2983/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2984 last parsed char. Returns null_ptid if no thread id is found, and
2985 throws an error if the thread id has an invalid format. */
82f73884
PA
2986
2987static ptid_t
256642e8 2988read_ptid (const char *buf, const char **obuf)
82f73884 2989{
256642e8
PA
2990 const char *p = buf;
2991 const char *pp;
82f73884 2992 ULONGEST pid = 0, tid = 0;
82f73884
PA
2993
2994 if (*p == 'p')
2995 {
2996 /* Multi-process ptid. */
2997 pp = unpack_varlen_hex (p + 1, &pid);
2998 if (*pp != '.')
b37520b6 2999 error (_("invalid remote ptid: %s"), p);
82f73884
PA
3000
3001 p = pp;
3002 pp = unpack_varlen_hex (p + 1, &tid);
3003 if (obuf)
3004 *obuf = pp;
fd79271b 3005 return ptid_t (pid, tid, 0);
82f73884
PA
3006 }
3007
3008 /* No multi-process. Just a tid. */
3009 pp = unpack_varlen_hex (p, &tid);
3010
c9f35b34
KB
3011 /* Return null_ptid when no thread id is found. */
3012 if (p == pp)
3013 {
3014 if (obuf)
3015 *obuf = pp;
3016 return null_ptid;
3017 }
3018
82f73884 3019 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3020 what's in inferior_ptid, unless it's null at this point. If so,
3021 then since there's no way to know the pid of the reported
3022 threads, use the magic number. */
d7e15655 3023 if (inferior_ptid == null_ptid)
e99b03dc 3024 pid = magic_null_ptid.pid ();
ca19bf23 3025 else
e99b03dc 3026 pid = inferior_ptid.pid ();
82f73884
PA
3027
3028 if (obuf)
3029 *obuf = pp;
fd79271b 3030 return ptid_t (pid, tid, 0);
82f73884
PA
3031}
3032
c906108c 3033static int
fba45db2 3034stubhex (int ch)
c906108c
SS
3035{
3036 if (ch >= 'a' && ch <= 'f')
3037 return ch - 'a' + 10;
3038 if (ch >= '0' && ch <= '9')
3039 return ch - '0';
3040 if (ch >= 'A' && ch <= 'F')
3041 return ch - 'A' + 10;
3042 return -1;
3043}
3044
3045static int
fba45db2 3046stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3047{
3048 int nibble;
3049 int retval = 0;
3050
3051 while (fieldlength)
3052 {
3053 nibble = stubhex (*buff++);
3054 retval |= nibble;
3055 fieldlength--;
3056 if (fieldlength)
3057 retval = retval << 4;
3058 }
3059 return retval;
3060}
3061
c906108c 3062static char *
fba45db2 3063unpack_nibble (char *buf, int *val)
c906108c 3064{
b7589f7d 3065 *val = fromhex (*buf++);
c906108c
SS
3066 return buf;
3067}
3068
c906108c 3069static char *
fba45db2 3070unpack_byte (char *buf, int *value)
c906108c
SS
3071{
3072 *value = stub_unpack_int (buf, 2);
3073 return buf + 2;
3074}
3075
3076static char *
fba45db2 3077pack_int (char *buf, int value)
c906108c
SS
3078{
3079 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3080 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3081 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3082 buf = pack_hex_byte (buf, (value & 0xff));
3083 return buf;
3084}
3085
3086static char *
fba45db2 3087unpack_int (char *buf, int *value)
c906108c
SS
3088{
3089 *value = stub_unpack_int (buf, 8);
3090 return buf + 8;
3091}
3092
23860348 3093#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3094static char *pack_string (char *pkt, char *string);
c906108c
SS
3095
3096static char *
fba45db2 3097pack_string (char *pkt, char *string)
c906108c
SS
3098{
3099 char ch;
3100 int len;
3101
3102 len = strlen (string);
3103 if (len > 200)
23860348 3104 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3105 pkt = pack_hex_byte (pkt, len);
3106 while (len-- > 0)
3107 {
3108 ch = *string++;
3109 if ((ch == '\0') || (ch == '#'))
23860348 3110 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3111 *pkt++ = ch;
3112 }
3113 return pkt;
3114}
3115#endif /* 0 (unused) */
3116
3117static char *
fba45db2 3118unpack_string (char *src, char *dest, int length)
c906108c
SS
3119{
3120 while (length--)
3121 *dest++ = *src++;
3122 *dest = '\0';
3123 return src;
3124}
3125
3126static char *
fba45db2 3127pack_threadid (char *pkt, threadref *id)
c906108c
SS
3128{
3129 char *limit;
3130 unsigned char *altid;
3131
3132 altid = (unsigned char *) id;
3133 limit = pkt + BUF_THREAD_ID_SIZE;
3134 while (pkt < limit)
3135 pkt = pack_hex_byte (pkt, *altid++);
3136 return pkt;
3137}
3138
3139
3140static char *
fba45db2 3141unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3142{
3143 char *altref;
3144 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3145 int x, y;
3146
3147 altref = (char *) id;
3148
3149 while (inbuf < limit)
3150 {
3151 x = stubhex (*inbuf++);
3152 y = stubhex (*inbuf++);
3153 *altref++ = (x << 4) | y;
3154 }
3155 return inbuf;
3156}
3157
3158/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3159 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3160 to use 64bit thread references internally. This is an adapter
3161 function. */
3162
3163void
fba45db2 3164int_to_threadref (threadref *id, int value)
c906108c
SS
3165{
3166 unsigned char *scan;
3167
3168 scan = (unsigned char *) id;
3169 {
3170 int i = 4;
3171 while (i--)
3172 *scan++ = 0;
3173 }
3174 *scan++ = (value >> 24) & 0xff;
3175 *scan++ = (value >> 16) & 0xff;
3176 *scan++ = (value >> 8) & 0xff;
3177 *scan++ = (value & 0xff);
3178}
3179
3180static int
fba45db2 3181threadref_to_int (threadref *ref)
c906108c
SS
3182{
3183 int i, value = 0;
3184 unsigned char *scan;
3185
cfd77fa1 3186 scan = *ref;
c906108c
SS
3187 scan += 4;
3188 i = 4;
3189 while (i-- > 0)
3190 value = (value << 8) | ((*scan++) & 0xff);
3191 return value;
3192}
3193
3194static void
fba45db2 3195copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3196{
3197 int i;
3198 unsigned char *csrc, *cdest;
3199
3200 csrc = (unsigned char *) src;
3201 cdest = (unsigned char *) dest;
3202 i = 8;
3203 while (i--)
3204 *cdest++ = *csrc++;
3205}
3206
3207static int
fba45db2 3208threadmatch (threadref *dest, threadref *src)
c906108c 3209{
23860348 3210 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3211#if 0
3212 unsigned char *srcp, *destp;
3213 int i, result;
3214 srcp = (char *) src;
3215 destp = (char *) dest;
3216
3217 result = 1;
3218 while (i-- > 0)
3219 result &= (*srcp++ == *destp++) ? 1 : 0;
3220 return result;
3221#endif
3222 return 1;
3223}
3224
3225/*
c5aa993b
JM
3226 threadid:1, # always request threadid
3227 context_exists:2,
3228 display:4,
3229 unique_name:8,
3230 more_display:16
3231 */
c906108c
SS
3232
3233/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3234
3235static char *
fba45db2 3236pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3237{
23860348
MS
3238 *pkt++ = 'q'; /* Info Query */
3239 *pkt++ = 'P'; /* process or thread info */
3240 pkt = pack_int (pkt, mode); /* mode */
c906108c 3241 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3242 *pkt = '\0'; /* terminate */
c906108c
SS
3243 return pkt;
3244}
3245
23860348 3246/* These values tag the fields in a thread info response packet. */
c906108c 3247/* Tagging the fields allows us to request specific fields and to
23860348 3248 add more fields as time goes by. */
c906108c 3249
23860348 3250#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3251#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3252 fetch registers and its stack? */
c5aa993b 3253#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3254#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3255#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3256 the process. */
c906108c 3257
6b8edb51
PA
3258int
3259remote_target::remote_unpack_thread_info_response (char *pkt,
3260 threadref *expectedref,
3261 gdb_ext_thread_info *info)
c906108c 3262{
d01949b6 3263 struct remote_state *rs = get_remote_state ();
c906108c 3264 int mask, length;
cfd77fa1 3265 int tag;
c906108c 3266 threadref ref;
8d64371b 3267 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3268 int retval = 1;
3269
23860348 3270 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3271 info->active = 0;
3272 info->display[0] = '\0';
3273 info->shortname[0] = '\0';
3274 info->more_display[0] = '\0';
3275
23860348
MS
3276 /* Assume the characters indicating the packet type have been
3277 stripped. */
c906108c
SS
3278 pkt = unpack_int (pkt, &mask); /* arg mask */
3279 pkt = unpack_threadid (pkt, &ref);
3280
3281 if (mask == 0)
8a3fe4f8 3282 warning (_("Incomplete response to threadinfo request."));
c906108c 3283 if (!threadmatch (&ref, expectedref))
23860348 3284 { /* This is an answer to a different request. */
8a3fe4f8 3285 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3286 return 0;
3287 }
3288 copy_threadref (&info->threadid, &ref);
3289
405feb71 3290 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3291
23860348
MS
3292 /* Packets are terminated with nulls. */
3293 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3294 {
3295 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3296 pkt = unpack_byte (pkt, &length); /* length */
3297 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3298 {
8a3fe4f8 3299 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3300 retval = 0;
3301 break;
3302 }
3303 if (tag == TAG_THREADID)
3304 {
3305 if (length != 16)
3306 {
8a3fe4f8 3307 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3308 retval = 0;
3309 break;
3310 }
3311 pkt = unpack_threadid (pkt, &ref);
3312 mask = mask & ~TAG_THREADID;
3313 continue;
3314 }
3315 if (tag == TAG_EXISTS)
3316 {
3317 info->active = stub_unpack_int (pkt, length);
3318 pkt += length;
3319 mask = mask & ~(TAG_EXISTS);
3320 if (length > 8)
3321 {
8a3fe4f8 3322 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3323 retval = 0;
3324 break;
3325 }
3326 continue;
3327 }
3328 if (tag == TAG_THREADNAME)
3329 {
3330 pkt = unpack_string (pkt, &info->shortname[0], length);
3331 mask = mask & ~TAG_THREADNAME;
3332 continue;
3333 }
3334 if (tag == TAG_DISPLAY)
3335 {
3336 pkt = unpack_string (pkt, &info->display[0], length);
3337 mask = mask & ~TAG_DISPLAY;
3338 continue;
3339 }
3340 if (tag == TAG_MOREDISPLAY)
3341 {
3342 pkt = unpack_string (pkt, &info->more_display[0], length);
3343 mask = mask & ~TAG_MOREDISPLAY;
3344 continue;
3345 }
8a3fe4f8 3346 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3347 break; /* Not a tag we know about. */
c906108c
SS
3348 }
3349 return retval;
3350}
3351
6b8edb51
PA
3352int
3353remote_target::remote_get_threadinfo (threadref *threadid,
3354 int fieldset,
3355 gdb_ext_thread_info *info)
c906108c 3356{
d01949b6 3357 struct remote_state *rs = get_remote_state ();
c906108c 3358 int result;
c906108c 3359
8d64371b 3360 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3361 putpkt (rs->buf);
8d64371b 3362 getpkt (&rs->buf, 0);
3084dd77
PA
3363
3364 if (rs->buf[0] == '\0')
3365 return 0;
3366
8d64371b 3367 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3368 threadid, info);
c906108c
SS
3369 return result;
3370}
3371
c906108c
SS
3372/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3373
3374static char *
fba45db2
KB
3375pack_threadlist_request (char *pkt, int startflag, int threadcount,
3376 threadref *nextthread)
c906108c
SS
3377{
3378 *pkt++ = 'q'; /* info query packet */
3379 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3380 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3381 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3382 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3383 *pkt = '\0';
3384 return pkt;
3385}
3386
3387/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3388
6b8edb51
PA
3389int
3390remote_target::parse_threadlist_response (char *pkt, int result_limit,
3391 threadref *original_echo,
3392 threadref *resultlist,
3393 int *doneflag)
c906108c 3394{
d01949b6 3395 struct remote_state *rs = get_remote_state ();
c906108c
SS
3396 char *limit;
3397 int count, resultcount, done;
3398
3399 resultcount = 0;
3400 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3401 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3402 /* done parse past here */
c906108c
SS
3403 pkt = unpack_byte (pkt, &count); /* count field */
3404 pkt = unpack_nibble (pkt, &done);
3405 /* The first threadid is the argument threadid. */
3406 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3407 while ((count-- > 0) && (pkt < limit))
3408 {
3409 pkt = unpack_threadid (pkt, resultlist++);
3410 if (resultcount++ >= result_limit)
3411 break;
3412 }
3413 if (doneflag)
3414 *doneflag = done;
3415 return resultcount;
3416}
3417
6dc54d91
PA
3418/* Fetch the next batch of threads from the remote. Returns -1 if the
3419 qL packet is not supported, 0 on error and 1 on success. */
3420
6b8edb51
PA
3421int
3422remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3423 int result_limit, int *done, int *result_count,
3424 threadref *threadlist)
c906108c 3425{
d01949b6 3426 struct remote_state *rs = get_remote_state ();
c906108c
SS
3427 int result = 1;
3428
405feb71 3429 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3430 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3431 >= get_remote_packet_size ())
ea9c271d 3432 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3433
8d64371b
TT
3434 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3435 nextthread);
6d820c5c 3436 putpkt (rs->buf);
8d64371b
TT
3437 getpkt (&rs->buf, 0);
3438 if (rs->buf[0] == '\0')
6dc54d91
PA
3439 {
3440 /* Packet not supported. */
3441 return -1;
3442 }
3443
3444 *result_count =
8d64371b 3445 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3446 &rs->echo_nextthread, threadlist, done);
c906108c 3447
0d031856 3448 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3449 {
23860348 3450 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3451 /* Possibly, there is a duplicate response. */
3452 /* Possibilities :
c906108c
SS
3453 retransmit immediatly - race conditions
3454 retransmit after timeout - yes
3455 exit
3456 wait for packet, then exit
3457 */
8a3fe4f8 3458 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3459 return 0; /* I choose simply exiting. */
c906108c
SS
3460 }
3461 if (*result_count <= 0)
3462 {
3463 if (*done != 1)
3464 {
8a3fe4f8 3465 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3466 result = 0;
3467 }
3468 return result; /* break; */
3469 }
3470 if (*result_count > result_limit)
3471 {
3472 *result_count = 0;
8a3fe4f8 3473 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3474 return 0;
3475 }
3476 return result;
3477}
3478
6dc54d91
PA
3479/* Fetch the list of remote threads, with the qL packet, and call
3480 STEPFUNCTION for each thread found. Stops iterating and returns 1
3481 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3482 STEPFUNCTION returns false. If the packet is not supported,
3483 returns -1. */
c906108c 3484
6b8edb51
PA
3485int
3486remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3487 void *context, int looplimit)
c906108c 3488{
0d031856 3489 struct remote_state *rs = get_remote_state ();
c906108c
SS
3490 int done, i, result_count;
3491 int startflag = 1;
3492 int result = 1;
3493 int loopcount = 0;
c906108c
SS
3494
3495 done = 0;
3496 while (!done)
3497 {
3498 if (loopcount++ > looplimit)
3499 {
3500 result = 0;
8a3fe4f8 3501 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3502 break;
3503 }
6dc54d91
PA
3504 result = remote_get_threadlist (startflag, &rs->nextthread,
3505 MAXTHREADLISTRESULTS,
3506 &done, &result_count,
3507 rs->resultthreadlist);
3508 if (result <= 0)
3509 break;
23860348 3510 /* Clear for later iterations. */
c906108c
SS
3511 startflag = 0;
3512 /* Setup to resume next batch of thread references, set nextthread. */
3513 if (result_count >= 1)
0d031856
TT
3514 copy_threadref (&rs->nextthread,
3515 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3516 i = 0;
3517 while (result_count--)
6dc54d91
PA
3518 {
3519 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3520 {
3521 result = 0;
3522 break;
3523 }
3524 }
c906108c
SS
3525 }
3526 return result;
3527}
3528
6dc54d91
PA
3529/* A thread found on the remote target. */
3530
21fe1c75 3531struct thread_item
6dc54d91 3532{
21fe1c75
SM
3533 explicit thread_item (ptid_t ptid_)
3534 : ptid (ptid_)
3535 {}
3536
3537 thread_item (thread_item &&other) = default;
3538 thread_item &operator= (thread_item &&other) = default;
3539
3540 DISABLE_COPY_AND_ASSIGN (thread_item);
3541
6dc54d91
PA
3542 /* The thread's PTID. */
3543 ptid_t ptid;
3544
21fe1c75
SM
3545 /* The thread's extra info. */
3546 std::string extra;
6dc54d91 3547
21fe1c75
SM
3548 /* The thread's name. */
3549 std::string name;
79efa585 3550
6dc54d91 3551 /* The core the thread was running on. -1 if not known. */
21fe1c75 3552 int core = -1;
f6327dcb
KB
3553
3554 /* The thread handle associated with the thread. */
21fe1c75 3555 gdb::byte_vector thread_handle;
21fe1c75 3556};
6dc54d91
PA
3557
3558/* Context passed around to the various methods listing remote
3559 threads. As new threads are found, they're added to the ITEMS
3560 vector. */
3561
3562struct threads_listing_context
3563{
21fe1c75
SM
3564 /* Return true if this object contains an entry for a thread with ptid
3565 PTID. */
6dc54d91 3566
21fe1c75
SM
3567 bool contains_thread (ptid_t ptid) const
3568 {
3569 auto match_ptid = [&] (const thread_item &item)
3570 {
3571 return item.ptid == ptid;
3572 };
80134cf5 3573
21fe1c75
SM
3574 auto it = std::find_if (this->items.begin (),
3575 this->items.end (),
3576 match_ptid);
80134cf5 3577
21fe1c75
SM
3578 return it != this->items.end ();
3579 }
80134cf5 3580
21fe1c75 3581 /* Remove the thread with ptid PTID. */
80134cf5 3582
21fe1c75
SM
3583 void remove_thread (ptid_t ptid)
3584 {
3585 auto match_ptid = [&] (const thread_item &item)
3586 {
3587 return item.ptid == ptid;
3588 };
cbb8991c 3589
21fe1c75
SM
3590 auto it = std::remove_if (this->items.begin (),
3591 this->items.end (),
3592 match_ptid);
cbb8991c 3593
21fe1c75
SM
3594 if (it != this->items.end ())
3595 this->items.erase (it);
3596 }
3597
3598 /* The threads found on the remote target. */
3599 std::vector<thread_item> items;
3600};
cbb8991c 3601
c906108c 3602static int
6dc54d91 3603remote_newthread_step (threadref *ref, void *data)
c906108c 3604{
19ba03f4
SM
3605 struct threads_listing_context *context
3606 = (struct threads_listing_context *) data;
21fe1c75
SM
3607 int pid = inferior_ptid.pid ();
3608 int lwp = threadref_to_int (ref);
3609 ptid_t ptid (pid, lwp);
6dc54d91 3610
21fe1c75 3611 context->items.emplace_back (ptid);
6dc54d91 3612
c906108c
SS
3613 return 1; /* continue iterator */
3614}
3615
3616#define CRAZY_MAX_THREADS 1000
3617
6b8edb51
PA
3618ptid_t
3619remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3620{
d01949b6 3621 struct remote_state *rs = get_remote_state ();
c906108c
SS
3622
3623 putpkt ("qC");
8d64371b 3624 getpkt (&rs->buf, 0);
2e9f7625 3625 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3626 {
256642e8 3627 const char *obuf;
c9f35b34
KB
3628 ptid_t result;
3629
3630 result = read_ptid (&rs->buf[2], &obuf);
3631 if (*obuf != '\0' && remote_debug)
3632 fprintf_unfiltered (gdb_stdlog,
3633 "warning: garbage in qC reply\n");
3634
3635 return result;
3636 }
c906108c
SS
3637 else
3638 return oldpid;
3639}
3640
6dc54d91 3641/* List remote threads using the deprecated qL packet. */
cce74817 3642
6b8edb51
PA
3643int
3644remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3645{
6dc54d91
PA
3646 if (remote_threadlist_iterator (remote_newthread_step, context,
3647 CRAZY_MAX_THREADS) >= 0)
3648 return 1;
3649
3650 return 0;
c906108c
SS
3651}
3652
dc146f7c
VP
3653#if defined(HAVE_LIBEXPAT)
3654
dc146f7c
VP
3655static void
3656start_thread (struct gdb_xml_parser *parser,
3657 const struct gdb_xml_element *element,
4d0fdd9b
SM
3658 void *user_data,
3659 std::vector<gdb_xml_value> &attributes)
dc146f7c 3660{
19ba03f4
SM
3661 struct threads_listing_context *data
3662 = (struct threads_listing_context *) user_data;
3d2c1d41 3663 struct gdb_xml_value *attr;
dc146f7c 3664
4d0fdd9b 3665 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3666 ptid_t ptid = read_ptid (id, NULL);
3667
3668 data->items.emplace_back (ptid);
3669 thread_item &item = data->items.back ();
dc146f7c 3670
3d2c1d41
PA
3671 attr = xml_find_attribute (attributes, "core");
3672 if (attr != NULL)
4d0fdd9b 3673 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3674
79efa585 3675 attr = xml_find_attribute (attributes, "name");
21fe1c75 3676 if (attr != NULL)
4d0fdd9b 3677 item.name = (const char *) attr->value.get ();
79efa585 3678
f6327dcb
KB
3679 attr = xml_find_attribute (attributes, "handle");
3680 if (attr != NULL)
4d0fdd9b 3681 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3682}
3683
3684static void
3685end_thread (struct gdb_xml_parser *parser,
3686 const struct gdb_xml_element *element,
3687 void *user_data, const char *body_text)
3688{
19ba03f4
SM
3689 struct threads_listing_context *data
3690 = (struct threads_listing_context *) user_data;
dc146f7c 3691
21fe1c75
SM
3692 if (body_text != NULL && *body_text != '\0')
3693 data->items.back ().extra = body_text;
dc146f7c
VP
3694}
3695
3696const struct gdb_xml_attribute thread_attributes[] = {
3697 { "id", GDB_XML_AF_NONE, NULL, NULL },
3698 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3699 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3700 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3701 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3702};
3703
3704const struct gdb_xml_element thread_children[] = {
3705 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3706};
3707
3708const struct gdb_xml_element threads_children[] = {
3709 { "thread", thread_attributes, thread_children,
3710 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3711 start_thread, end_thread },
3712 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3713};
3714
3715const struct gdb_xml_element threads_elements[] = {
3716 { "threads", NULL, threads_children,
3717 GDB_XML_EF_NONE, NULL, NULL },
3718 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3719};
3720
3721#endif
3722
6dc54d91 3723/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3724
6b8edb51
PA
3725int
3726remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3727{
dc146f7c 3728#if defined(HAVE_LIBEXPAT)
4082afcc 3729 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3730 {
9018be22 3731 gdb::optional<gdb::char_vector> xml
6b8edb51 3732 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3733
9018be22 3734 if (xml && (*xml)[0] != '\0')
dc146f7c 3735 {
6dc54d91 3736 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3737 threads_elements, xml->data (), context);
dc146f7c
VP
3738 }
3739
6dc54d91 3740 return 1;
dc146f7c
VP
3741 }
3742#endif
3743
6dc54d91
PA
3744 return 0;
3745}
3746
3747/* List remote threads using qfThreadInfo/qsThreadInfo. */
3748
6b8edb51
PA
3749int
3750remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3751{
3752 struct remote_state *rs = get_remote_state ();
3753
b80fafe3 3754 if (rs->use_threadinfo_query)
9d1f7ab2 3755 {
256642e8 3756 const char *bufp;
6dc54d91 3757
9d1f7ab2 3758 putpkt ("qfThreadInfo");
8d64371b
TT
3759 getpkt (&rs->buf, 0);
3760 bufp = rs->buf.data ();
9d1f7ab2 3761 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3762 {
9d1f7ab2
MS
3763 while (*bufp++ == 'm') /* reply contains one or more TID */
3764 {
3765 do
3766 {
21fe1c75
SM
3767 ptid_t ptid = read_ptid (bufp, &bufp);
3768 context->items.emplace_back (ptid);
9d1f7ab2
MS
3769 }
3770 while (*bufp++ == ','); /* comma-separated list */
3771 putpkt ("qsThreadInfo");
8d64371b
TT
3772 getpkt (&rs->buf, 0);
3773 bufp = rs->buf.data ();
9d1f7ab2 3774 }
6dc54d91
PA
3775 return 1;
3776 }
3777 else
3778 {
3779 /* Packet not recognized. */
3780 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3781 }
3782 }
3783
6dc54d91
PA
3784 return 0;
3785}
3786
a05575d3
TBA
3787/* Return true if INF only has one non-exited thread. */
3788
3789static bool
3790has_single_non_exited_thread (inferior *inf)
3791{
3792 int count = 0;
3793 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3794 if (++count > 1)
3795 break;
3796 return count == 1;
3797}
3798
e8032dde 3799/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3800 targets. */
3801
f6ac5f3d
PA
3802void
3803remote_target::update_thread_list ()
6dc54d91 3804{
6dc54d91 3805 struct threads_listing_context context;
ab970af1 3806 int got_list = 0;
e8032dde 3807
6dc54d91
PA
3808 /* We have a few different mechanisms to fetch the thread list. Try
3809 them all, starting with the most preferred one first, falling
3810 back to older methods. */
6b8edb51
PA
3811 if (remote_get_threads_with_qxfer (&context)
3812 || remote_get_threads_with_qthreadinfo (&context)
3813 || remote_get_threads_with_ql (&context))
6dc54d91 3814 {
ab970af1
PA
3815 got_list = 1;
3816
21fe1c75 3817 if (context.items.empty ()
f6ac5f3d 3818 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3819 {
3820 /* Some targets don't really support threads, but still
3821 reply an (empty) thread list in response to the thread
3822 listing packets, instead of replying "packet not
3823 supported". Exit early so we don't delete the main
3824 thread. */
7d1a114c
PA
3825 return;
3826 }
3827
ab970af1
PA
3828 /* CONTEXT now holds the current thread list on the remote
3829 target end. Delete GDB-side threads no longer found on the
3830 target. */
08036331 3831 for (thread_info *tp : all_threads_safe ())
cbb8991c 3832 {
5b6d1e4f
PA
3833 if (tp->inf->process_target () != this)
3834 continue;
3835
21fe1c75 3836 if (!context.contains_thread (tp->ptid))
ab970af1 3837 {
a05575d3
TBA
3838 /* Do not remove the thread if it is the last thread in
3839 the inferior. This situation happens when we have a
3840 pending exit process status to process. Otherwise we
3841 may end up with a seemingly live inferior (i.e. pid
3842 != 0) that has no threads. */
3843 if (has_single_non_exited_thread (tp->inf))
3844 continue;
3845
ab970af1 3846 /* Not found. */
00431a78 3847 delete_thread (tp);
ab970af1 3848 }
cbb8991c
DB
3849 }
3850
3851 /* Remove any unreported fork child threads from CONTEXT so
3852 that we don't interfere with follow fork, which is where
3853 creation of such threads is handled. */
3854 remove_new_fork_children (&context);
74531fed 3855
ab970af1 3856 /* And now add threads we don't know about yet to our list. */
21fe1c75 3857 for (thread_item &item : context.items)
6dc54d91 3858 {
21fe1c75 3859 if (item.ptid != null_ptid)
6dc54d91 3860 {
6dc54d91 3861 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3862 executing until proven otherwise with a stop reply.
3863 In all-stop, we can only get here if all threads are
6dc54d91 3864 stopped. */
0d5b594f 3865 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3866
21fe1c75 3867 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3868
5b6d1e4f 3869 thread_info *tp = find_thread_ptid (this, item.ptid);
00431a78 3870 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3871 info->core = item.core;
7aabaf9d
SM
3872 info->extra = std::move (item.extra);
3873 info->name = std::move (item.name);
3874 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3875 }
3876 }
3877 }
3878
ab970af1
PA
3879 if (!got_list)
3880 {
3881 /* If no thread listing method is supported, then query whether
3882 each known thread is alive, one by one, with the T packet.
3883 If the target doesn't support threads at all, then this is a
3884 no-op. See remote_thread_alive. */
3885 prune_threads ();
3886 }
9d1f7ab2
MS
3887}
3888
802188a7 3889/*
9d1f7ab2
MS
3890 * Collect a descriptive string about the given thread.
3891 * The target may say anything it wants to about the thread
3892 * (typically info about its blocked / runnable state, name, etc.).
3893 * This string will appear in the info threads display.
802188a7 3894 *
9d1f7ab2
MS
3895 * Optional: targets are not required to implement this function.
3896 */
3897
f6ac5f3d
PA
3898const char *
3899remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3900{
d01949b6 3901 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3902 int set;
3903 threadref id;
3904 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3905
5d93a237 3906 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3907 internal_error (__FILE__, __LINE__,
e2e0b3e5 3908 _("remote_threads_extra_info"));
9d1f7ab2 3909
d7e15655 3910 if (tp->ptid == magic_null_ptid
e38504b3 3911 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3912 /* This is the main thread which was added by GDB. The remote
3913 server doesn't know about it. */
3914 return NULL;
3915
c76a8ea3
PA
3916 std::string &extra = get_remote_thread_info (tp)->extra;
3917
3918 /* If already have cached info, use it. */
3919 if (!extra.empty ())
3920 return extra.c_str ();
3921
4082afcc 3922 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3923 {
c76a8ea3
PA
3924 /* If we're using qXfer:threads:read, then the extra info is
3925 included in the XML. So if we didn't have anything cached,
3926 it's because there's really no extra info. */
3927 return NULL;
dc146f7c
VP
3928 }
3929
b80fafe3 3930 if (rs->use_threadextra_query)
9d1f7ab2 3931 {
8d64371b
TT
3932 char *b = rs->buf.data ();
3933 char *endb = b + get_remote_packet_size ();
82f73884
PA
3934
3935 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3936 b += strlen (b);
3937 write_ptid (b, endb, tp->ptid);
3938
2e9f7625 3939 putpkt (rs->buf);
8d64371b 3940 getpkt (&rs->buf, 0);
2e9f7625 3941 if (rs->buf[0] != 0)
9d1f7ab2 3942 {
8d64371b
TT
3943 extra.resize (strlen (rs->buf.data ()) / 2);
3944 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3945 return extra.c_str ();
9d1f7ab2 3946 }
0f71a2f6 3947 }
9d1f7ab2
MS
3948
3949 /* If the above query fails, fall back to the old method. */
b80fafe3 3950 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3951 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3952 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3953 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3954 if (remote_get_threadinfo (&id, set, &threadinfo))
3955 if (threadinfo.active)
0f71a2f6 3956 {
9d1f7ab2 3957 if (*threadinfo.shortname)
c76a8ea3 3958 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3959 if (*threadinfo.display)
c76a8ea3
PA
3960 {
3961 if (!extra.empty ())
3962 extra += ',';
3963 string_appendf (extra, " State: %s", threadinfo.display);
3964 }
9d1f7ab2 3965 if (*threadinfo.more_display)
c5aa993b 3966 {
c76a8ea3
PA
3967 if (!extra.empty ())
3968 extra += ',';
3969 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3970 }
c76a8ea3 3971 return extra.c_str ();
0f71a2f6 3972 }
9d1f7ab2 3973 return NULL;
0f71a2f6 3974}
c906108c 3975\f
c5aa993b 3976
f6ac5f3d
PA
3977bool
3978remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3979 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3980{
3981 struct remote_state *rs = get_remote_state ();
8d64371b 3982 char *p = rs->buf.data ();
0fb4aa4b 3983
bba74b36 3984 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3985 p += strlen (p);
3986 p += hexnumstr (p, addr);
3987 putpkt (rs->buf);
8d64371b
TT
3988 getpkt (&rs->buf, 0);
3989 p = rs->buf.data ();
0fb4aa4b
PA
3990
3991 if (*p == 'E')
3992 error (_("Remote failure reply: %s"), p);
3993
3994 if (*p++ == 'm')
3995 {
256642e8 3996 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3997 return true;
0fb4aa4b
PA
3998 }
3999
5d9310c4 4000 return false;
0fb4aa4b
PA
4001}
4002
f6ac5f3d
PA
4003std::vector<static_tracepoint_marker>
4004remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
4005{
4006 struct remote_state *rs = get_remote_state ();
5d9310c4 4007 std::vector<static_tracepoint_marker> markers;
256642e8 4008 const char *p;
5d9310c4 4009 static_tracepoint_marker marker;
0fb4aa4b
PA
4010
4011 /* Ask for a first packet of static tracepoint marker
4012 definition. */
4013 putpkt ("qTfSTM");
8d64371b
TT
4014 getpkt (&rs->buf, 0);
4015 p = rs->buf.data ();
0fb4aa4b
PA
4016 if (*p == 'E')
4017 error (_("Remote failure reply: %s"), p);
4018
0fb4aa4b
PA
4019 while (*p++ == 'm')
4020 {
0fb4aa4b
PA
4021 do
4022 {
5d9310c4 4023 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 4024
5d9310c4
SM
4025 if (strid == NULL || marker.str_id == strid)
4026 markers.push_back (std::move (marker));
0fb4aa4b
PA
4027 }
4028 while (*p++ == ','); /* comma-separated list */
4029 /* Ask for another packet of static tracepoint definition. */
4030 putpkt ("qTsSTM");
8d64371b
TT
4031 getpkt (&rs->buf, 0);
4032 p = rs->buf.data ();
0fb4aa4b
PA
4033 }
4034
0fb4aa4b
PA
4035 return markers;
4036}
4037
4038\f
10760264
JB
4039/* Implement the to_get_ada_task_ptid function for the remote targets. */
4040
f6ac5f3d
PA
4041ptid_t
4042remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4043{
e99b03dc 4044 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
4045}
4046\f
4047
24b06219 4048/* Restart the remote side; this is an extended protocol operation. */
c906108c 4049
6b8edb51
PA
4050void
4051remote_target::extended_remote_restart ()
c906108c 4052{
d01949b6 4053 struct remote_state *rs = get_remote_state ();
c906108c
SS
4054
4055 /* Send the restart command; for reasons I don't understand the
4056 remote side really expects a number after the "R". */
8d64371b 4057 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4058 putpkt (rs->buf);
c906108c 4059
ad9a8f3f 4060 remote_fileio_reset ();
c906108c
SS
4061}
4062\f
4063/* Clean up connection to a remote debugger. */
4064
f6ac5f3d
PA
4065void
4066remote_target::close ()
c906108c 4067{
048094ac 4068 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4069 terminal_ours ();
ce5ce7ed 4070
6b8edb51
PA
4071 trace_reset_local_state ();
4072
4073 delete this;
4074}
4075
4076remote_target::~remote_target ()
4077{
4078 struct remote_state *rs = get_remote_state ();
4079
4080 /* Check for NULL because we may get here with a partially
4081 constructed target/connection. */
4082 if (rs->remote_desc == nullptr)
4083 return;
4084
4085 serial_close (rs->remote_desc);
4086
4087 /* We are destroying the remote target, so we should discard
f48ff2a7 4088 everything of this target. */
6b8edb51 4089 discard_pending_stop_replies_in_queue ();
74531fed 4090
6b8edb51
PA
4091 if (rs->remote_async_inferior_event_token)
4092 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4093
97dfbadd 4094 delete rs->notif_state;
c906108c
SS
4095}
4096
23860348 4097/* Query the remote side for the text, data and bss offsets. */
c906108c 4098
6b8edb51
PA
4099void
4100remote_target::get_offsets ()
c906108c 4101{
d01949b6 4102 struct remote_state *rs = get_remote_state ();
2e9f7625 4103 char *buf;
085dd6e6 4104 char *ptr;
31d99776
DJ
4105 int lose, num_segments = 0, do_sections, do_segments;
4106 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776
DJ
4107
4108 if (symfile_objfile == NULL)
4109 return;
c906108c
SS
4110
4111 putpkt ("qOffsets");
8d64371b
TT
4112 getpkt (&rs->buf, 0);
4113 buf = rs->buf.data ();
c906108c
SS
4114
4115 if (buf[0] == '\000')
4116 return; /* Return silently. Stub doesn't support
23860348 4117 this command. */
c906108c
SS
4118 if (buf[0] == 'E')
4119 {
8a3fe4f8 4120 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4121 return;
4122 }
4123
4124 /* Pick up each field in turn. This used to be done with scanf, but
4125 scanf will make trouble if CORE_ADDR size doesn't match
4126 conversion directives correctly. The following code will work
4127 with any size of CORE_ADDR. */
4128 text_addr = data_addr = bss_addr = 0;
4129 ptr = buf;
4130 lose = 0;
4131
61012eef 4132 if (startswith (ptr, "Text="))
c906108c
SS
4133 {
4134 ptr += 5;
4135 /* Don't use strtol, could lose on big values. */
4136 while (*ptr && *ptr != ';')
4137 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4138
61012eef 4139 if (startswith (ptr, ";Data="))
31d99776
DJ
4140 {
4141 ptr += 6;
4142 while (*ptr && *ptr != ';')
4143 data_addr = (data_addr << 4) + fromhex (*ptr++);
4144 }
4145 else
4146 lose = 1;
4147
61012eef 4148 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4149 {
4150 ptr += 5;
4151 while (*ptr && *ptr != ';')
4152 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4153
31d99776
DJ
4154 if (bss_addr != data_addr)
4155 warning (_("Target reported unsupported offsets: %s"), buf);
4156 }
4157 else
4158 lose = 1;
4159 }
61012eef 4160 else if (startswith (ptr, "TextSeg="))
c906108c 4161 {
31d99776
DJ
4162 ptr += 8;
4163 /* Don't use strtol, could lose on big values. */
c906108c 4164 while (*ptr && *ptr != ';')
31d99776
DJ
4165 text_addr = (text_addr << 4) + fromhex (*ptr++);
4166 num_segments = 1;
4167
61012eef 4168 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4169 {
4170 ptr += 9;
4171 while (*ptr && *ptr != ';')
4172 data_addr = (data_addr << 4) + fromhex (*ptr++);
4173 num_segments++;
4174 }
c906108c
SS
4175 }
4176 else
4177 lose = 1;
4178
4179 if (lose)
8a3fe4f8 4180 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4181 else if (*ptr != '\0')
4182 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4183
6a053cb1 4184 section_offsets offs = symfile_objfile->section_offsets;
c906108c 4185
62982abd
SM
4186 symfile_segment_data_up data
4187 = get_symfile_segment_data (symfile_objfile->obfd);
31d99776
DJ
4188 do_segments = (data != NULL);
4189 do_sections = num_segments == 0;
c906108c 4190
28c32713 4191 if (num_segments > 0)
31d99776 4192 {
31d99776
DJ
4193 segments[0] = text_addr;
4194 segments[1] = data_addr;
4195 }
28c32713
JB
4196 /* If we have two segments, we can still try to relocate everything
4197 by assuming that the .text and .data offsets apply to the whole
4198 text and data segments. Convert the offsets given in the packet
4199 to base addresses for symfile_map_offsets_to_segments. */
68b888ff 4200 else if (data != nullptr && data->segments.size () == 2)
28c32713 4201 {
68b888ff
SM
4202 segments[0] = data->segments[0].base + text_addr;
4203 segments[1] = data->segments[1].base + data_addr;
28c32713
JB
4204 num_segments = 2;
4205 }
8d385431
DJ
4206 /* If the object file has only one segment, assume that it is text
4207 rather than data; main programs with no writable data are rare,
4208 but programs with no code are useless. Of course the code might
4209 have ended up in the data segment... to detect that we would need
4210 the permissions here. */
68b888ff 4211 else if (data && data->segments.size () == 1)
8d385431 4212 {
68b888ff 4213 segments[0] = data->segments[0].base + text_addr;
8d385431
DJ
4214 num_segments = 1;
4215 }
28c32713
JB
4216 /* There's no way to relocate by segment. */
4217 else
4218 do_segments = 0;
31d99776
DJ
4219
4220 if (do_segments)
4221 {
62982abd
SM
4222 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd,
4223 data.get (), offs,
4224 num_segments, segments);
31d99776
DJ
4225
4226 if (ret == 0 && !do_sections)
3e43a32a
MS
4227 error (_("Can not handle qOffsets TextSeg "
4228 "response with this symbol file"));
31d99776
DJ
4229
4230 if (ret > 0)
4231 do_sections = 0;
4232 }
c906108c 4233
31d99776
DJ
4234 if (do_sections)
4235 {
6a053cb1 4236 offs[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
31d99776 4237
3e43a32a
MS
4238 /* This is a temporary kludge to force data and bss to use the
4239 same offsets because that's what nlmconv does now. The real
4240 solution requires changes to the stub and remote.c that I
4241 don't have time to do right now. */
31d99776 4242
6a053cb1
TT
4243 offs[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4244 offs[SECT_OFF_BSS (symfile_objfile)] = data_addr;
31d99776 4245 }
c906108c
SS
4246
4247 objfile_relocate (symfile_objfile, offs);
4248}
4249
9a7071a8 4250/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4251
4252void
4253remote_target::send_interrupt_sequence ()
9a7071a8 4254{
5d93a237
TT
4255 struct remote_state *rs = get_remote_state ();
4256
9a7071a8 4257 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4258 remote_serial_write ("\x03", 1);
9a7071a8 4259 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4260 serial_send_break (rs->remote_desc);
9a7071a8
JB
4261 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4262 {
5d93a237 4263 serial_send_break (rs->remote_desc);
c33e31fd 4264 remote_serial_write ("g", 1);
9a7071a8
JB
4265 }
4266 else
4267 internal_error (__FILE__, __LINE__,
4268 _("Invalid value for interrupt_sequence_mode: %s."),
4269 interrupt_sequence_mode);
4270}
4271
3405876a
PA
4272
4273/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4274 and extract the PTID. Returns NULL_PTID if not found. */
4275
4276static ptid_t
4277stop_reply_extract_thread (char *stop_reply)
4278{
4279 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4280 {
256642e8 4281 const char *p;
3405876a
PA
4282
4283 /* Txx r:val ; r:val (...) */
4284 p = &stop_reply[3];
4285
4286 /* Look for "register" named "thread". */
4287 while (*p != '\0')
4288 {
256642e8 4289 const char *p1;
3405876a
PA
4290
4291 p1 = strchr (p, ':');
4292 if (p1 == NULL)
4293 return null_ptid;
4294
4295 if (strncmp (p, "thread", p1 - p) == 0)
4296 return read_ptid (++p1, &p);
4297
4298 p1 = strchr (p, ';');
4299 if (p1 == NULL)
4300 return null_ptid;
4301 p1++;
4302
4303 p = p1;
4304 }
4305 }
4306
4307 return null_ptid;
4308}
4309
b7ea362b
PA
4310/* Determine the remote side's current thread. If we have a stop
4311 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4312 "thread" register we can extract the current thread from. If not,
4313 ask the remote which is the current thread with qC. The former
4314 method avoids a roundtrip. */
4315
6b8edb51
PA
4316ptid_t
4317remote_target::get_current_thread (char *wait_status)
b7ea362b 4318{
6a49a997 4319 ptid_t ptid = null_ptid;
b7ea362b
PA
4320
4321 /* Note we don't use remote_parse_stop_reply as that makes use of
4322 the target architecture, which we haven't yet fully determined at
4323 this point. */
4324 if (wait_status != NULL)
4325 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4326 if (ptid == null_ptid)
b7ea362b
PA
4327 ptid = remote_current_thread (inferior_ptid);
4328
4329 return ptid;
4330}
4331
49c62f2e
PA
4332/* Query the remote target for which is the current thread/process,
4333 add it to our tables, and update INFERIOR_PTID. The caller is
4334 responsible for setting the state such that the remote end is ready
3405876a
PA
4335 to return the current thread.
4336
4337 This function is called after handling the '?' or 'vRun' packets,
4338 whose response is a stop reply from which we can also try
4339 extracting the thread. If the target doesn't support the explicit
4340 qC query, we infer the current thread from that stop reply, passed
4341 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4342
6b8edb51
PA
4343void
4344remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4345{
4346 struct remote_state *rs = get_remote_state ();
9ab8741a 4347 bool fake_pid_p = false;
49c62f2e
PA
4348
4349 inferior_ptid = null_ptid;
4350
b7ea362b 4351 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4352 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4353
87215ad1 4354 if (curr_ptid != null_ptid)
49c62f2e
PA
4355 {
4356 if (!remote_multi_process_p (rs))
9ab8741a 4357 fake_pid_p = true;
49c62f2e
PA
4358 }
4359 else
4360 {
4361 /* Without this, some commands which require an active target
4362 (such as kill) won't work. This variable serves (at least)
4363 double duty as both the pid of the target process (if it has
4364 such), and as a flag indicating that a target is active. */
87215ad1 4365 curr_ptid = magic_null_ptid;
9ab8741a 4366 fake_pid_p = true;
49c62f2e
PA
4367 }
4368
e99b03dc 4369 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4370
87215ad1
SDJ
4371 /* Add the main thread and switch to it. Don't try reading
4372 registers yet, since we haven't fetched the target description
4373 yet. */
5b6d1e4f 4374 thread_info *tp = add_thread_silent (this, curr_ptid);
87215ad1 4375 switch_to_thread_no_regs (tp);
49c62f2e
PA
4376}
4377
6efcd9a8
PA
4378/* Print info about a thread that was found already stopped on
4379 connection. */
4380
4381static void
4382print_one_stopped_thread (struct thread_info *thread)
4383{
4384 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4385
00431a78 4386 switch_to_thread (thread);
f2ffa92b 4387 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4388 set_current_sal_from_frame (get_current_frame ());
4389
4390 thread->suspend.waitstatus_pending_p = 0;
4391
4392 if (ws->kind == TARGET_WAITKIND_STOPPED)
4393 {
4394 enum gdb_signal sig = ws->value.sig;
4395
4396 if (signal_print_state (sig))
76727919 4397 gdb::observers::signal_received.notify (sig);
6efcd9a8 4398 }
76727919 4399 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4400}
4401
221e1a37
PA
4402/* Process all initial stop replies the remote side sent in response
4403 to the ? packet. These indicate threads that were already stopped
4404 on initial connection. We mark these threads as stopped and print
4405 their current frame before giving the user the prompt. */
4406
6b8edb51
PA
4407void
4408remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4409{
4410 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4411 struct thread_info *selected = NULL;
4412 struct thread_info *lowest_stopped = NULL;
4413 struct thread_info *first = NULL;
221e1a37
PA
4414
4415 /* Consume the initial pending events. */
4416 while (pending_stop_replies-- > 0)
4417 {
4418 ptid_t waiton_ptid = minus_one_ptid;
4419 ptid_t event_ptid;
4420 struct target_waitstatus ws;
4421 int ignore_event = 0;
4422
4423 memset (&ws, 0, sizeof (ws));
4424 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4425 if (remote_debug)
4426 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4427
4428 switch (ws.kind)
4429 {
4430 case TARGET_WAITKIND_IGNORE:
4431 case TARGET_WAITKIND_NO_RESUMED:
4432 case TARGET_WAITKIND_SIGNALLED:
4433 case TARGET_WAITKIND_EXITED:
4434 /* We shouldn't see these, but if we do, just ignore. */
4435 if (remote_debug)
4436 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4437 ignore_event = 1;
4438 break;
4439
4440 case TARGET_WAITKIND_EXECD:
4441 xfree (ws.value.execd_pathname);
4442 break;
4443 default:
4444 break;
4445 }
4446
4447 if (ignore_event)
4448 continue;
4449
5b6d1e4f 4450 thread_info *evthread = find_thread_ptid (this, event_ptid);
221e1a37
PA
4451
4452 if (ws.kind == TARGET_WAITKIND_STOPPED)
4453 {
4454 enum gdb_signal sig = ws.value.sig;
4455
4456 /* Stubs traditionally report SIGTRAP as initial signal,
4457 instead of signal 0. Suppress it. */
4458 if (sig == GDB_SIGNAL_TRAP)
4459 sig = GDB_SIGNAL_0;
b926417a 4460 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4461 ws.value.sig = sig;
4462 }
221e1a37 4463
b926417a 4464 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4465
4466 if (ws.kind != TARGET_WAITKIND_STOPPED
4467 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4468 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8 4469
719546c4
SM
4470 set_executing (this, event_ptid, false);
4471 set_running (this, event_ptid, false);
b926417a 4472 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4473 }
4474
4475 /* "Notice" the new inferiors before anything related to
4476 registers/memory. */
5b6d1e4f 4477 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4478 {
6efcd9a8
PA
4479 inf->needs_setup = 1;
4480
4481 if (non_stop)
4482 {
08036331 4483 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4484 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4485 from_tty);
4486 }
4487 }
4488
4489 /* If all-stop on top of non-stop, pause all threads. Note this
4490 records the threads' stop pc, so must be done after "noticing"
4491 the inferiors. */
4492 if (!non_stop)
4493 {
4494 stop_all_threads ();
4495
4496 /* If all threads of an inferior were already stopped, we
4497 haven't setup the inferior yet. */
5b6d1e4f 4498 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4499 {
6efcd9a8
PA
4500 if (inf->needs_setup)
4501 {
08036331 4502 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4503 switch_to_thread_no_regs (thread);
4504 setup_inferior (0);
4505 }
4506 }
221e1a37 4507 }
6efcd9a8
PA
4508
4509 /* Now go over all threads that are stopped, and print their current
4510 frame. If all-stop, then if there's a signalled thread, pick
4511 that as current. */
5b6d1e4f 4512 for (thread_info *thread : all_non_exited_threads (this))
6efcd9a8 4513 {
6efcd9a8
PA
4514 if (first == NULL)
4515 first = thread;
4516
4517 if (!non_stop)
00431a78 4518 thread->set_running (false);
6efcd9a8
PA
4519 else if (thread->state != THREAD_STOPPED)
4520 continue;
4521
6efcd9a8
PA
4522 if (selected == NULL
4523 && thread->suspend.waitstatus_pending_p)
4524 selected = thread;
4525
5d5658a1
PA
4526 if (lowest_stopped == NULL
4527 || thread->inf->num < lowest_stopped->inf->num
4528 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4529 lowest_stopped = thread;
4530
4531 if (non_stop)
4532 print_one_stopped_thread (thread);
4533 }
4534
4535 /* In all-stop, we only print the status of one thread, and leave
4536 others with their status pending. */
4537 if (!non_stop)
4538 {
08036331 4539 thread_info *thread = selected;
6efcd9a8
PA
4540 if (thread == NULL)
4541 thread = lowest_stopped;
4542 if (thread == NULL)
4543 thread = first;
4544
4545 print_one_stopped_thread (thread);
4546 }
4547
4548 /* For "info program". */
08036331 4549 thread_info *thread = inferior_thread ();
6efcd9a8 4550 if (thread->state == THREAD_STOPPED)
5b6d1e4f 4551 set_last_target_status (this, inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4552}
4553
048094ac
PA
4554/* Start the remote connection and sync state. */
4555
f6ac5f3d
PA
4556void
4557remote_target::start_remote (int from_tty, int extended_p)
c906108c 4558{
c8d104ad
PA
4559 struct remote_state *rs = get_remote_state ();
4560 struct packet_config *noack_config;
2d717e4f 4561 char *wait_status = NULL;
8621d6a9 4562
048094ac
PA
4563 /* Signal other parts that we're going through the initial setup,
4564 and so things may not be stable yet. E.g., we don't try to
4565 install tracepoints until we've relocated symbols. Also, a
4566 Ctrl-C before we're connected and synced up can't interrupt the
4567 target. Instead, it offers to drop the (potentially wedged)
4568 connection. */
4569 rs->starting_up = 1;
4570
522002f9 4571 QUIT;
c906108c 4572
9a7071a8
JB
4573 if (interrupt_on_connect)
4574 send_interrupt_sequence ();
4575
57e12211 4576 /* Ack any packet which the remote side has already sent. */
048094ac 4577 remote_serial_write ("+", 1);
1e51243a 4578
c8d104ad
PA
4579 /* The first packet we send to the target is the optional "supported
4580 packets" request. If the target can answer this, it will tell us
4581 which later probes to skip. */
4582 remote_query_supported ();
4583
d914c394 4584 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4585 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4586 set_permissions ();
d914c394 4587
57809e5e
JK
4588 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4589 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4590 as a reply to known packet. For packet "vFile:setfs:" it is an
4591 invalid reply and GDB would return error in
4592 remote_hostio_set_filesystem, making remote files access impossible.
4593 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4594 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4595 {
4596 const char v_mustreplyempty[] = "vMustReplyEmpty";
4597
4598 putpkt (v_mustreplyempty);
8d64371b
TT
4599 getpkt (&rs->buf, 0);
4600 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4601 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4602 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4603 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4604 rs->buf.data ());
57809e5e
JK
4605 }
4606
c8d104ad
PA
4607 /* Next, we possibly activate noack mode.
4608
4609 If the QStartNoAckMode packet configuration is set to AUTO,
4610 enable noack mode if the stub reported a wish for it with
4611 qSupported.
4612
4613 If set to TRUE, then enable noack mode even if the stub didn't
4614 report it in qSupported. If the stub doesn't reply OK, the
4615 session ends with an error.
4616
4617 If FALSE, then don't activate noack mode, regardless of what the
4618 stub claimed should be the default with qSupported. */
4619
4620 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4621 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4622 {
4623 putpkt ("QStartNoAckMode");
8d64371b 4624 getpkt (&rs->buf, 0);
c8d104ad
PA
4625 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4626 rs->noack_mode = 1;
4627 }
4628
04bd08de 4629 if (extended_p)
5fe04517
PA
4630 {
4631 /* Tell the remote that we are using the extended protocol. */
4632 putpkt ("!");
8d64371b 4633 getpkt (&rs->buf, 0);
5fe04517
PA
4634 }
4635
9b224c5e
PA
4636 /* Let the target know which signals it is allowed to pass down to
4637 the program. */
4638 update_signals_program_target ();
4639
d962ef82
DJ
4640 /* Next, if the target can specify a description, read it. We do
4641 this before anything involving memory or registers. */
4642 target_find_description ();
4643
6c95b8df
PA
4644 /* Next, now that we know something about the target, update the
4645 address spaces in the program spaces. */
4646 update_address_spaces ();
4647
50c71eaf
PA
4648 /* On OSs where the list of libraries is global to all
4649 processes, we fetch them early. */
f5656ead 4650 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4651 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4652
6efcd9a8 4653 if (target_is_non_stop_p ())
74531fed 4654 {
4082afcc 4655 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4656 error (_("Non-stop mode requested, but remote "
4657 "does not support non-stop"));
74531fed
PA
4658
4659 putpkt ("QNonStop:1");
8d64371b 4660 getpkt (&rs->buf, 0);
74531fed 4661
8d64371b
TT
4662 if (strcmp (rs->buf.data (), "OK") != 0)
4663 error (_("Remote refused setting non-stop mode with: %s"),
4664 rs->buf.data ());
74531fed
PA
4665
4666 /* Find about threads and processes the stub is already
4667 controlling. We default to adding them in the running state.
4668 The '?' query below will then tell us about which threads are
4669 stopped. */
f6ac5f3d 4670 this->update_thread_list ();
74531fed 4671 }
4082afcc 4672 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4673 {
4674 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4675 Request it explicitly. */
74531fed 4676 putpkt ("QNonStop:0");
8d64371b 4677 getpkt (&rs->buf, 0);
74531fed 4678
8d64371b
TT
4679 if (strcmp (rs->buf.data (), "OK") != 0)
4680 error (_("Remote refused setting all-stop mode with: %s"),
4681 rs->buf.data ());
74531fed
PA
4682 }
4683
a0743c90
YQ
4684 /* Upload TSVs regardless of whether the target is running or not. The
4685 remote stub, such as GDBserver, may have some predefined or builtin
4686 TSVs, even if the target is not running. */
f6ac5f3d 4687 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4688 {
4689 struct uploaded_tsv *uploaded_tsvs = NULL;
4690
f6ac5f3d 4691 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4692 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4693 }
4694
2d717e4f
DJ
4695 /* Check whether the target is running now. */
4696 putpkt ("?");
8d64371b 4697 getpkt (&rs->buf, 0);
2d717e4f 4698
6efcd9a8 4699 if (!target_is_non_stop_p ())
2d717e4f 4700 {
74531fed 4701 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4702 {
04bd08de 4703 if (!extended_p)
74531fed 4704 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4705
4706 /* We're connected, but not running. Drop out before we
4707 call start_remote. */
e278ad5b 4708 rs->starting_up = 0;
c35b1492 4709 return;
2d717e4f
DJ
4710 }
4711 else
74531fed 4712 {
74531fed 4713 /* Save the reply for later. */
8d64371b
TT
4714 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4715 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4716 }
4717
b7ea362b 4718 /* Fetch thread list. */
e8032dde 4719 target_update_thread_list ();
b7ea362b 4720
74531fed
PA
4721 /* Let the stub know that we want it to return the thread. */
4722 set_continue_thread (minus_one_ptid);
4723
5b6d1e4f 4724 if (thread_count (this) == 0)
b7ea362b
PA
4725 {
4726 /* Target has no concept of threads at all. GDB treats
4727 non-threaded target as single-threaded; add a main
4728 thread. */
4729 add_current_inferior_and_thread (wait_status);
4730 }
4731 else
4732 {
4733 /* We have thread information; select the thread the target
4734 says should be current. If we're reconnecting to a
4735 multi-threaded program, this will ideally be the thread
4736 that last reported an event before GDB disconnected. */
75c6c844
PA
4737 ptid_t curr_thread = get_current_thread (wait_status);
4738 if (curr_thread == null_ptid)
b7ea362b
PA
4739 {
4740 /* Odd... The target was able to list threads, but not
4741 tell us which thread was current (no "thread"
4742 register in T stop reply?). Just pick the first
4743 thread in the thread list then. */
c9f35b34
KB
4744
4745 if (remote_debug)
4746 fprintf_unfiltered (gdb_stdlog,
4747 "warning: couldn't determine remote "
4748 "current thread; picking first in list.\n");
4749
5b6d1e4f
PA
4750 for (thread_info *tp : all_non_exited_threads (this,
4751 minus_one_ptid))
75c6c844
PA
4752 {
4753 switch_to_thread (tp);
4754 break;
4755 }
b7ea362b 4756 }
75c6c844 4757 else
5b6d1e4f 4758 switch_to_thread (find_thread_ptid (this, curr_thread));
b7ea362b 4759 }
74531fed 4760
6e586cc5
YQ
4761 /* init_wait_for_inferior should be called before get_offsets in order
4762 to manage `inserted' flag in bp loc in a correct state.
4763 breakpoint_init_inferior, called from init_wait_for_inferior, set
4764 `inserted' flag to 0, while before breakpoint_re_set, called from
4765 start_remote, set `inserted' flag to 1. In the initialization of
4766 inferior, breakpoint_init_inferior should be called first, and then
4767 breakpoint_re_set can be called. If this order is broken, state of
4768 `inserted' flag is wrong, and cause some problems on breakpoint
4769 manipulation. */
4770 init_wait_for_inferior ();
4771
74531fed
PA
4772 get_offsets (); /* Get text, data & bss offsets. */
4773
d962ef82
DJ
4774 /* If we could not find a description using qXfer, and we know
4775 how to do it some other way, try again. This is not
4776 supported for non-stop; it could be, but it is tricky if
4777 there are no stopped threads when we connect. */
f6ac5f3d 4778 if (remote_read_description_p (this)
f5656ead 4779 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4780 {
4781 target_clear_description ();
4782 target_find_description ();
4783 }
4784
74531fed
PA
4785 /* Use the previously fetched status. */
4786 gdb_assert (wait_status != NULL);
8d64371b 4787 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4788 rs->cached_wait_status = 1;
4789
f6ac5f3d 4790 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4791 }
4792 else
4793 {
68c97600
PA
4794 /* Clear WFI global state. Do this before finding about new
4795 threads and inferiors, and setting the current inferior.
4796 Otherwise we would clear the proceed status of the current
4797 inferior when we want its stop_soon state to be preserved
4798 (see notice_new_inferior). */
4799 init_wait_for_inferior ();
4800
74531fed
PA
4801 /* In non-stop, we will either get an "OK", meaning that there
4802 are no stopped threads at this time; or, a regular stop
4803 reply. In the latter case, there may be more than one thread
4804 stopped --- we pull them all out using the vStopped
4805 mechanism. */
8d64371b 4806 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4807 {
722247f1 4808 struct notif_client *notif = &notif_client_stop;
2d717e4f 4809
722247f1
YQ
4810 /* remote_notif_get_pending_replies acks this one, and gets
4811 the rest out. */
f48ff2a7 4812 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4813 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4814 remote_notif_get_pending_events (notif);
74531fed 4815 }
2d717e4f 4816
5b6d1e4f 4817 if (thread_count (this) == 0)
74531fed 4818 {
04bd08de 4819 if (!extended_p)
74531fed 4820 error (_("The target is not running (try extended-remote?)"));
82f73884 4821
c35b1492
PA
4822 /* We're connected, but not running. Drop out before we
4823 call start_remote. */
e278ad5b 4824 rs->starting_up = 0;
c35b1492
PA
4825 return;
4826 }
74531fed 4827
74531fed
PA
4828 /* In non-stop mode, any cached wait status will be stored in
4829 the stop reply queue. */
4830 gdb_assert (wait_status == NULL);
f0223081 4831
2455069d 4832 /* Report all signals during attach/startup. */
adc6a863 4833 pass_signals ({});
221e1a37
PA
4834
4835 /* If there are already stopped threads, mark them stopped and
4836 report their stops before giving the prompt to the user. */
6efcd9a8 4837 process_initial_stop_replies (from_tty);
221e1a37
PA
4838
4839 if (target_can_async_p ())
4840 target_async (1);
74531fed 4841 }
c8d104ad 4842
c8d104ad
PA
4843 /* If we connected to a live target, do some additional setup. */
4844 if (target_has_execution)
4845 {
f4ccffad 4846 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4847 remote_check_symbols ();
c8d104ad 4848 }
50c71eaf 4849
d5551862
SS
4850 /* Possibly the target has been engaged in a trace run started
4851 previously; find out where things are at. */
f6ac5f3d 4852 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4853 {
00bf0b85 4854 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4855
00bf0b85
SS
4856 if (current_trace_status ()->running)
4857 printf_filtered (_("Trace is already running on the target.\n"));
4858
f6ac5f3d 4859 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4860
4861 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4862 }
4863
c0272db5
TW
4864 /* Possibly the target has been engaged in a btrace record started
4865 previously; find out where things are at. */
4866 remote_btrace_maybe_reopen ();
4867
1e51243a
PA
4868 /* The thread and inferior lists are now synchronized with the
4869 target, our symbols have been relocated, and we're merged the
4870 target's tracepoints with ours. We're done with basic start
4871 up. */
4872 rs->starting_up = 0;
4873
a25a5a45
PA
4874 /* Maybe breakpoints are global and need to be inserted now. */
4875 if (breakpoints_should_be_inserted_now ())
50c71eaf 4876 insert_breakpoints ();
c906108c
SS
4877}
4878
121b3efd
PA
4879const char *
4880remote_target::connection_string ()
4881{
4882 remote_state *rs = get_remote_state ();
4883
4884 if (rs->remote_desc->name != NULL)
4885 return rs->remote_desc->name;
4886 else
4887 return NULL;
4888}
4889
c906108c
SS
4890/* Open a connection to a remote debugger.
4891 NAME is the filename used for communication. */
4892
f6ac5f3d
PA
4893void
4894remote_target::open (const char *name, int from_tty)
c906108c 4895{
f6ac5f3d 4896 open_1 (name, from_tty, 0);
43ff13b4
JM
4897}
4898
c906108c
SS
4899/* Open a connection to a remote debugger using the extended
4900 remote gdb protocol. NAME is the filename used for communication. */
4901
f6ac5f3d
PA
4902void
4903extended_remote_target::open (const char *name, int from_tty)
c906108c 4904{
f6ac5f3d 4905 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4906}
4907
ca4f7f8b
PA
4908/* Reset all packets back to "unknown support". Called when opening a
4909 new connection to a remote target. */
c906108c 4910
d471ea57 4911static void
ca4f7f8b 4912reset_all_packet_configs_support (void)
d471ea57
AC
4913{
4914 int i;
a744cf53 4915
444abaca 4916 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4917 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4918}
4919
ca4f7f8b
PA
4920/* Initialize all packet configs. */
4921
4922static void
4923init_all_packet_configs (void)
4924{
4925 int i;
4926
4927 for (i = 0; i < PACKET_MAX; i++)
4928 {
4929 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4930 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4931 }
4932}
4933
23860348 4934/* Symbol look-up. */
dc8acb97 4935
6b8edb51
PA
4936void
4937remote_target::remote_check_symbols ()
dc8acb97 4938{
8d64371b 4939 char *tmp;
dc8acb97
MS
4940 int end;
4941
63154eca
PA
4942 /* The remote side has no concept of inferiors that aren't running
4943 yet, it only knows about running processes. If we're connected
4944 but our current inferior is not running, we should not invite the
4945 remote target to request symbol lookups related to its
4946 (unrelated) current process. */
4947 if (!target_has_execution)
4948 return;
4949
4082afcc 4950 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4951 return;
4952
63154eca
PA
4953 /* Make sure the remote is pointing at the right process. Note
4954 there's no way to select "no process". */
3c9c4b83
PA
4955 set_general_process ();
4956
6d820c5c
DJ
4957 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4958 because we need both at the same time. */
66644cd3 4959 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4960 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4961
23860348 4962 /* Invite target to request symbol lookups. */
dc8acb97
MS
4963
4964 putpkt ("qSymbol::");
8d64371b 4965 getpkt (&reply, 0);
28170b88 4966 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4967
8d64371b 4968 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4969 {
77e371c0
TT
4970 struct bound_minimal_symbol sym;
4971
dc8acb97 4972 tmp = &reply[8];
66644cd3
AB
4973 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4974 strlen (tmp) / 2);
dc8acb97 4975 msg[end] = '\0';
66644cd3 4976 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4977 if (sym.minsym == NULL)
66644cd3
AB
4978 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4979 &reply[8]);
dc8acb97 4980 else
2bbe3cc1 4981 {
f5656ead 4982 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4983 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4984
4985 /* If this is a function address, return the start of code
4986 instead of any data function descriptor. */
f5656ead 4987 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4988 sym_addr,
8b88a78e 4989 current_top_target ());
2bbe3cc1 4990
66644cd3 4991 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4992 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4993 }
66644cd3
AB
4994
4995 putpkt (msg.data ());
8d64371b 4996 getpkt (&reply, 0);
dc8acb97
MS
4997 }
4998}
4999
9db8d71f 5000static struct serial *
baa336ce 5001remote_serial_open (const char *name)
9db8d71f
DJ
5002{
5003 static int udp_warning = 0;
5004
5005 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
5006 of in ser-tcp.c, because it is the remote protocol assuming that the
5007 serial connection is reliable and not the serial connection promising
5008 to be. */
61012eef 5009 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 5010 {
3e43a32a
MS
5011 warning (_("The remote protocol may be unreliable over UDP.\n"
5012 "Some events may be lost, rendering further debugging "
5013 "impossible."));
9db8d71f
DJ
5014 udp_warning = 1;
5015 }
5016
5017 return serial_open (name);
5018}
5019
d914c394
SS
5020/* Inform the target of our permission settings. The permission flags
5021 work without this, but if the target knows the settings, it can do
5022 a couple things. First, it can add its own check, to catch cases
5023 that somehow manage to get by the permissions checks in target
5024 methods. Second, if the target is wired to disallow particular
5025 settings (for instance, a system in the field that is not set up to
5026 be able to stop at a breakpoint), it can object to any unavailable
5027 permissions. */
5028
5029void
f6ac5f3d 5030remote_target::set_permissions ()
d914c394
SS
5031{
5032 struct remote_state *rs = get_remote_state ();
5033
8d64371b 5034 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
5035 "WriteReg:%x;WriteMem:%x;"
5036 "InsertBreak:%x;InsertTrace:%x;"
5037 "InsertFastTrace:%x;Stop:%x",
5038 may_write_registers, may_write_memory,
5039 may_insert_breakpoints, may_insert_tracepoints,
5040 may_insert_fast_tracepoints, may_stop);
d914c394 5041 putpkt (rs->buf);
8d64371b 5042 getpkt (&rs->buf, 0);
d914c394
SS
5043
5044 /* If the target didn't like the packet, warn the user. Do not try
5045 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5046 if (strcmp (rs->buf.data (), "OK") != 0)
5047 warning (_("Remote refused setting permissions with: %s"),
5048 rs->buf.data ());
d914c394
SS
5049}
5050
be2a5f71
DJ
5051/* This type describes each known response to the qSupported
5052 packet. */
5053struct protocol_feature
5054{
5055 /* The name of this protocol feature. */
5056 const char *name;
5057
5058 /* The default for this protocol feature. */
5059 enum packet_support default_support;
5060
5061 /* The function to call when this feature is reported, or after
5062 qSupported processing if the feature is not supported.
5063 The first argument points to this structure. The second
5064 argument indicates whether the packet requested support be
5065 enabled, disabled, or probed (or the default, if this function
5066 is being called at the end of processing and this feature was
5067 not reported). The third argument may be NULL; if not NULL, it
5068 is a NUL-terminated string taken from the packet following
5069 this feature's name and an equals sign. */
6b8edb51
PA
5070 void (*func) (remote_target *remote, const struct protocol_feature *,
5071 enum packet_support, const char *);
be2a5f71
DJ
5072
5073 /* The corresponding packet for this feature. Only used if
5074 FUNC is remote_supported_packet. */
5075 int packet;
5076};
5077
be2a5f71 5078static void
6b8edb51
PA
5079remote_supported_packet (remote_target *remote,
5080 const struct protocol_feature *feature,
be2a5f71
DJ
5081 enum packet_support support,
5082 const char *argument)
5083{
5084 if (argument)
5085 {
5086 warning (_("Remote qSupported response supplied an unexpected value for"
5087 " \"%s\"."), feature->name);
5088 return;
5089 }
5090
4082afcc 5091 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5092}
be2a5f71 5093
6b8edb51
PA
5094void
5095remote_target::remote_packet_size (const protocol_feature *feature,
5096 enum packet_support support, const char *value)
be2a5f71
DJ
5097{
5098 struct remote_state *rs = get_remote_state ();
5099
5100 int packet_size;
5101 char *value_end;
5102
5103 if (support != PACKET_ENABLE)
5104 return;
5105
5106 if (value == NULL || *value == '\0')
5107 {
5108 warning (_("Remote target reported \"%s\" without a size."),
5109 feature->name);
5110 return;
5111 }
5112
5113 errno = 0;
5114 packet_size = strtol (value, &value_end, 16);
5115 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5116 {
5117 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5118 feature->name, value);
5119 return;
5120 }
5121
be2a5f71
DJ
5122 /* Record the new maximum packet size. */
5123 rs->explicit_packet_size = packet_size;
5124}
5125
cb8c24b6 5126static void
6b8edb51
PA
5127remote_packet_size (remote_target *remote, const protocol_feature *feature,
5128 enum packet_support support, const char *value)
5129{
5130 remote->remote_packet_size (feature, support, value);
5131}
5132
dc473cfb 5133static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5134 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5135 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5136 PACKET_qXfer_auxv },
c78fa86a
GB
5137 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5138 PACKET_qXfer_exec_file },
23181151
DJ
5139 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5140 PACKET_qXfer_features },
cfa9d6d9
DJ
5141 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5142 PACKET_qXfer_libraries },
2268b414
JK
5143 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5144 PACKET_qXfer_libraries_svr4 },
ced63ec0 5145 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5146 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5147 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5148 PACKET_qXfer_memory_map },
07e059b5
VP
5149 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5150 PACKET_qXfer_osdata },
dc146f7c
VP
5151 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5152 PACKET_qXfer_threads },
b3b9301e
PA
5153 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5154 PACKET_qXfer_traceframe_info },
89be2091
DJ
5155 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5156 PACKET_QPassSignals },
82075af2
JS
5157 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5158 PACKET_QCatchSyscalls },
9b224c5e
PA
5159 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5160 PACKET_QProgramSignals },
bc3b087d
SDJ
5161 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5162 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5163 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5164 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5165 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5166 PACKET_QEnvironmentHexEncoded },
5167 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5168 PACKET_QEnvironmentReset },
5169 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5170 PACKET_QEnvironmentUnset },
a6f3e723
SL
5171 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5172 PACKET_QStartNoAckMode },
4082afcc
PA
5173 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5174 PACKET_multiprocess_feature },
5175 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5176 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5177 PACKET_qXfer_siginfo_read },
5178 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5179 PACKET_qXfer_siginfo_write },
4082afcc 5180 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5181 PACKET_ConditionalTracepoints },
4082afcc 5182 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5183 PACKET_ConditionalBreakpoints },
4082afcc 5184 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5185 PACKET_BreakpointCommands },
4082afcc 5186 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5187 PACKET_FastTracepoints },
4082afcc 5188 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5189 PACKET_StaticTracepoints },
4082afcc 5190 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5191 PACKET_InstallInTrace},
4082afcc
PA
5192 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5193 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5194 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5195 PACKET_bc },
5196 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5197 PACKET_bs },
409873ef
SS
5198 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5199 PACKET_TracepointSource },
d914c394
SS
5200 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5201 PACKET_QAllow },
4082afcc
PA
5202 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5203 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5204 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5205 PACKET_qXfer_fdpic },
169081d0
TG
5206 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5207 PACKET_qXfer_uib },
03583c20
UW
5208 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5209 PACKET_QDisableRandomization },
d1feda86 5210 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5211 { "QTBuffer:size", PACKET_DISABLE,
5212 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5213 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5214 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5215 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5216 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5217 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5218 PACKET_qXfer_btrace },
5219 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5220 PACKET_qXfer_btrace_conf },
5221 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5222 PACKET_Qbtrace_conf_bts_size },
5223 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5224 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5225 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5226 PACKET_fork_event_feature },
5227 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5228 PACKET_vfork_event_feature },
94585166
DB
5229 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5230 PACKET_exec_event_feature },
b20a6524 5231 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5232 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5233 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5234 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5235 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5236};
5237
c8d5aac9
L
5238static char *remote_support_xml;
5239
5240/* Register string appended to "xmlRegisters=" in qSupported query. */
5241
5242void
6e39997a 5243register_remote_support_xml (const char *xml)
c8d5aac9
L
5244{
5245#if defined(HAVE_LIBEXPAT)
5246 if (remote_support_xml == NULL)
c4f7c687 5247 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5248 else
5249 {
5250 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5251 char *saveptr;
5252 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5253
5254 do
5255 {
5256 if (strcmp (p, xml) == 0)
5257 {
5258 /* already there */
5259 xfree (copy);
5260 return;
5261 }
5262 }
ca3a04f6 5263 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5264 xfree (copy);
5265
94b0dee1
PA
5266 remote_support_xml = reconcat (remote_support_xml,
5267 remote_support_xml, ",", xml,
5268 (char *) NULL);
c8d5aac9
L
5269 }
5270#endif
5271}
5272
69b6ecb0
TT
5273static void
5274remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5275{
69b6ecb0
TT
5276 if (!msg->empty ())
5277 msg->append (";");
5278 msg->append (append);
c8d5aac9
L
5279}
5280
6b8edb51
PA
5281void
5282remote_target::remote_query_supported ()
be2a5f71
DJ
5283{
5284 struct remote_state *rs = get_remote_state ();
5285 char *next;
5286 int i;
5287 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5288
5289 /* The packet support flags are handled differently for this packet
5290 than for most others. We treat an error, a disabled packet, and
5291 an empty response identically: any features which must be reported
5292 to be used will be automatically disabled. An empty buffer
5293 accomplishes this, since that is also the representation for a list
5294 containing no features. */
5295
5296 rs->buf[0] = 0;
4082afcc 5297 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5298 {
69b6ecb0 5299 std::string q;
c8d5aac9 5300
73b8c1fd 5301 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5302 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5303
f7e6eed5 5304 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5305 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5306 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5307 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5308
69b6ecb0 5309 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5310
8020350c
DB
5311 if (packet_set_cmd_state (PACKET_fork_event_feature)
5312 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5313 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5314 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5315 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5316 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5317 if (packet_set_cmd_state (PACKET_exec_event_feature)
5318 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5319 remote_query_supported_append (&q, "exec-events+");
89245bc0 5320
750ce8d1 5321 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5322 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5323
65706a29 5324 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5325 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5326
f2faf941 5327 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5328 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5329
b35d5edb
PA
5330 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5331 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5332 if (remote_support_xml != NULL
5333 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5334 remote_query_supported_append (&q, remote_support_xml);
82f73884 5335
69b6ecb0
TT
5336 q = "qSupported:" + q;
5337 putpkt (q.c_str ());
94b0dee1 5338
8d64371b 5339 getpkt (&rs->buf, 0);
be2a5f71
DJ
5340
5341 /* If an error occured, warn, but do not return - just reset the
5342 buffer to empty and go on to disable features. */
5343 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5344 == PACKET_ERROR)
5345 {
8d64371b 5346 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5347 rs->buf[0] = 0;
5348 }
5349 }
5350
5351 memset (seen, 0, sizeof (seen));
5352
8d64371b 5353 next = rs->buf.data ();
be2a5f71
DJ
5354 while (*next)
5355 {
5356 enum packet_support is_supported;
5357 char *p, *end, *name_end, *value;
5358
5359 /* First separate out this item from the rest of the packet. If
5360 there's another item after this, we overwrite the separator
5361 (terminated strings are much easier to work with). */
5362 p = next;
5363 end = strchr (p, ';');
5364 if (end == NULL)
5365 {
5366 end = p + strlen (p);
5367 next = end;
5368 }
5369 else
5370 {
89be2091
DJ
5371 *end = '\0';
5372 next = end + 1;
5373
be2a5f71
DJ
5374 if (end == p)
5375 {
5376 warning (_("empty item in \"qSupported\" response"));
5377 continue;
5378 }
be2a5f71
DJ
5379 }
5380
5381 name_end = strchr (p, '=');
5382 if (name_end)
5383 {
5384 /* This is a name=value entry. */
5385 is_supported = PACKET_ENABLE;
5386 value = name_end + 1;
5387 *name_end = '\0';
5388 }
5389 else
5390 {
5391 value = NULL;
5392 switch (end[-1])
5393 {
5394 case '+':
5395 is_supported = PACKET_ENABLE;
5396 break;
5397
5398 case '-':
5399 is_supported = PACKET_DISABLE;
5400 break;
5401
5402 case '?':
5403 is_supported = PACKET_SUPPORT_UNKNOWN;
5404 break;
5405
5406 default:
3e43a32a
MS
5407 warning (_("unrecognized item \"%s\" "
5408 "in \"qSupported\" response"), p);
be2a5f71
DJ
5409 continue;
5410 }
5411 end[-1] = '\0';
5412 }
5413
5414 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5415 if (strcmp (remote_protocol_features[i].name, p) == 0)
5416 {
5417 const struct protocol_feature *feature;
5418
5419 seen[i] = 1;
5420 feature = &remote_protocol_features[i];
6b8edb51 5421 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5422 break;
5423 }
5424 }
5425
5426 /* If we increased the packet size, make sure to increase the global
5427 buffer size also. We delay this until after parsing the entire
5428 qSupported packet, because this is the same buffer we were
5429 parsing. */
8d64371b
TT
5430 if (rs->buf.size () < rs->explicit_packet_size)
5431 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5432
5433 /* Handle the defaults for unmentioned features. */
5434 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5435 if (!seen[i])
5436 {
5437 const struct protocol_feature *feature;
5438
5439 feature = &remote_protocol_features[i];
6b8edb51 5440 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5441 }
5442}
5443
048094ac
PA
5444/* Serial QUIT handler for the remote serial descriptor.
5445
5446 Defers handling a Ctrl-C until we're done with the current
5447 command/response packet sequence, unless:
5448
5449 - We're setting up the connection. Don't send a remote interrupt
5450 request, as we're not fully synced yet. Quit immediately
5451 instead.
5452
5453 - The target has been resumed in the foreground
223ffa71 5454 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5455 packet, and we're blocked waiting for the stop reply, thus a
5456 Ctrl-C should be immediately sent to the target.
5457
5458 - We get a second Ctrl-C while still within the same serial read or
5459 write. In that case the serial is seemingly wedged --- offer to
5460 quit/disconnect.
5461
5462 - We see a second Ctrl-C without target response, after having
5463 previously interrupted the target. In that case the target/stub
5464 is probably wedged --- offer to quit/disconnect.
5465*/
5466
6b8edb51
PA
5467void
5468remote_target::remote_serial_quit_handler ()
048094ac
PA
5469{
5470 struct remote_state *rs = get_remote_state ();
5471
5472 if (check_quit_flag ())
5473 {
5474 /* If we're starting up, we're not fully synced yet. Quit
5475 immediately. */
5476 if (rs->starting_up)
5477 quit ();
5478 else if (rs->got_ctrlc_during_io)
5479 {
5480 if (query (_("The target is not responding to GDB commands.\n"
5481 "Stop debugging it? ")))
5b6d1e4f 5482 remote_unpush_and_throw (this);
048094ac
PA
5483 }
5484 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5485 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5486 interrupt_query ();
5487 /* All-stop protocol, and blocked waiting for stop reply. Send
5488 an interrupt request. */
223ffa71 5489 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5490 target_interrupt ();
048094ac
PA
5491 else
5492 rs->got_ctrlc_during_io = 1;
5493 }
5494}
5495
6b8edb51
PA
5496/* The remote_target that is current while the quit handler is
5497 overridden with remote_serial_quit_handler. */
5498static remote_target *curr_quit_handler_target;
5499
5500static void
5501remote_serial_quit_handler ()
5502{
5503 curr_quit_handler_target->remote_serial_quit_handler ();
5504}
5505
5b6d1e4f
PA
5506/* Remove the remote target from the target stack of each inferior
5507 that is using it. Upper targets depend on it so remove them
5508 first. */
78a095c3
JK
5509
5510static void
5b6d1e4f 5511remote_unpush_target (remote_target *target)
78a095c3 5512{
5b6d1e4f
PA
5513 /* We have to unpush the target from all inferiors, even those that
5514 aren't running. */
5515 scoped_restore_current_inferior restore_current_inferior;
5516
5517 for (inferior *inf : all_inferiors (target))
5518 {
5519 switch_to_inferior_no_thread (inf);
5520 pop_all_targets_at_and_above (process_stratum);
5521 generic_mourn_inferior ();
5522 }
78a095c3 5523}
be2a5f71 5524
048094ac 5525static void
5b6d1e4f 5526remote_unpush_and_throw (remote_target *target)
048094ac 5527{
5b6d1e4f 5528 remote_unpush_target (target);
048094ac
PA
5529 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5530}
5531
f6ac5f3d
PA
5532void
5533remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5534{
6b8edb51 5535 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5536
c906108c 5537 if (name == 0)
8a3fe4f8 5538 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5539 "serial device is attached to the remote system\n"
8a3fe4f8 5540 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5541
2d717e4f 5542 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5543 Ask this question first, before target_preopen has a chance to kill
5544 anything. */
5b6d1e4f 5545 if (curr_remote != NULL && !target_has_execution)
2d717e4f 5546 {
78a095c3
JK
5547 if (from_tty
5548 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5549 error (_("Still connected."));
5550 }
5551
78a095c3 5552 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5553 target_preopen (from_tty);
5554
ad9a8f3f 5555 remote_fileio_reset ();
1dd41f16
NS
5556 reopen_exec_file ();
5557 reread_symbols ();
5558
6b8edb51
PA
5559 remote_target *remote
5560 = (extended_p ? new extended_remote_target () : new remote_target ());
5561 target_ops_up target_holder (remote);
5562
5563 remote_state *rs = remote->get_remote_state ();
5564
5565 /* See FIXME above. */
5566 if (!target_async_permitted)
5567 rs->wait_forever_enabled_p = 1;
5568
5d93a237
TT
5569 rs->remote_desc = remote_serial_open (name);
5570 if (!rs->remote_desc)
c906108c
SS
5571 perror_with_name (name);
5572
5573 if (baud_rate != -1)
5574 {
5d93a237 5575 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5576 {
9b74d5d3
KB
5577 /* The requested speed could not be set. Error out to
5578 top level after closing remote_desc. Take care to
5579 set remote_desc to NULL to avoid closing remote_desc
5580 more than once. */
5d93a237
TT
5581 serial_close (rs->remote_desc);
5582 rs->remote_desc = NULL;
c906108c
SS
5583 perror_with_name (name);
5584 }
5585 }
5586
236af5e3 5587 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5588 serial_raw (rs->remote_desc);
c906108c
SS
5589
5590 /* If there is something sitting in the buffer we might take it as a
5591 response to a command, which would be bad. */
5d93a237 5592 serial_flush_input (rs->remote_desc);
c906108c
SS
5593
5594 if (from_tty)
5595 {
5596 puts_filtered ("Remote debugging using ");
5597 puts_filtered (name);
5598 puts_filtered ("\n");
5599 }
d9f719f1 5600
6b8edb51 5601 /* Switch to using the remote target now. */
dea57a62 5602 push_target (std::move (target_holder));
c906108c 5603
74531fed 5604 /* Register extra event sources in the event loop. */
6b8edb51 5605 rs->remote_async_inferior_event_token
74531fed 5606 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5607 remote);
5608 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5609
be2a5f71
DJ
5610 /* Reset the target state; these things will be queried either by
5611 remote_query_supported or as they are needed. */
ca4f7f8b 5612 reset_all_packet_configs_support ();
74531fed 5613 rs->cached_wait_status = 0;
be2a5f71 5614 rs->explicit_packet_size = 0;
a6f3e723 5615 rs->noack_mode = 0;
82f73884 5616 rs->extended = extended_p;
e24a49d8 5617 rs->waiting_for_stop_reply = 0;
3a29589a 5618 rs->ctrlc_pending_p = 0;
048094ac 5619 rs->got_ctrlc_during_io = 0;
802188a7 5620
47f8a51d
TT
5621 rs->general_thread = not_sent_ptid;
5622 rs->continue_thread = not_sent_ptid;
262e1174 5623 rs->remote_traceframe_number = -1;
c906108c 5624
3a00c802
PA
5625 rs->last_resume_exec_dir = EXEC_FORWARD;
5626
9d1f7ab2 5627 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5628 rs->use_threadinfo_query = 1;
5629 rs->use_threadextra_query = 1;
9d1f7ab2 5630
dd194f6b 5631 rs->readahead_cache.invalidate ();
80152258 5632
c6ebd6cf 5633 if (target_async_permitted)
92d1e331 5634 {
92d1e331
DJ
5635 /* FIXME: cagney/1999-09-23: During the initial connection it is
5636 assumed that the target is already ready and able to respond to
0df8b418 5637 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5638 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5639 around this. Eventually a mechanism that allows
92d1e331 5640 wait_for_inferior() to expect/get timeouts will be
23860348 5641 implemented. */
6b8edb51 5642 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5643 }
5644
23860348 5645 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5646 no_shared_libraries (NULL, 0);
f78f6cf1 5647
36918e70 5648 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5649 target (we'd otherwise be in an inconsistent state) and then
5650 propogate the error on up the exception chain. This ensures that
5651 the caller doesn't stumble along blindly assuming that the
5652 function succeeded. The CLI doesn't have this problem but other
5653 UI's, such as MI do.
36918e70
AC
5654
5655 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5656 this function should return an error indication letting the
ce2826aa 5657 caller restore the previous state. Unfortunately the command
36918e70
AC
5658 ``target remote'' is directly wired to this function making that
5659 impossible. On a positive note, the CLI side of this problem has
5660 been fixed - the function set_cmd_context() makes it possible for
5661 all the ``target ....'' commands to share a common callback
5662 function. See cli-dump.c. */
109c3e39 5663 {
2d717e4f 5664
a70b8144 5665 try
04bd08de 5666 {
6b8edb51 5667 remote->start_remote (from_tty, extended_p);
04bd08de 5668 }
230d2906 5669 catch (const gdb_exception &ex)
109c3e39 5670 {
c8d104ad
PA
5671 /* Pop the partially set up target - unless something else did
5672 already before throwing the exception. */
6b8edb51 5673 if (ex.error != TARGET_CLOSE_ERROR)
5b6d1e4f 5674 remote_unpush_target (remote);
eedc3f4f 5675 throw;
109c3e39
AC
5676 }
5677 }
c906108c 5678
6b8edb51 5679 remote_btrace_reset (rs);
f4abbc16 5680
c6ebd6cf 5681 if (target_async_permitted)
6b8edb51 5682 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5683}
5684
de0d863e
DB
5685/* Detach the specified process. */
5686
6b8edb51
PA
5687void
5688remote_target::remote_detach_pid (int pid)
de0d863e
DB
5689{
5690 struct remote_state *rs = get_remote_state ();
5691
4c7333b3
PA
5692 /* This should not be necessary, but the handling for D;PID in
5693 GDBserver versions prior to 8.2 incorrectly assumes that the
5694 selected process points to the same process we're detaching,
5695 leading to misbehavior (and possibly GDBserver crashing) when it
5696 does not. Since it's easy and cheap, work around it by forcing
5697 GDBserver to select GDB's current process. */
5698 set_general_process ();
5699
de0d863e 5700 if (remote_multi_process_p (rs))
8d64371b 5701 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5702 else
8d64371b 5703 strcpy (rs->buf.data (), "D");
de0d863e
DB
5704
5705 putpkt (rs->buf);
8d64371b 5706 getpkt (&rs->buf, 0);
de0d863e
DB
5707
5708 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5709 ;
5710 else if (rs->buf[0] == '\0')
5711 error (_("Remote doesn't know how to detach"));
5712 else
5713 error (_("Can't detach process."));
5714}
5715
5716/* This detaches a program to which we previously attached, using
5717 inferior_ptid to identify the process. After this is done, GDB
5718 can be used to debug some other program. We better not have left
5719 any breakpoints in the target program or it'll die when it hits
5720 one. */
c906108c 5721
6b8edb51 5722void
00431a78 5723remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5724{
e99b03dc 5725 int pid = inferior_ptid.pid ();
d01949b6 5726 struct remote_state *rs = get_remote_state ();
de0d863e 5727 int is_fork_parent;
c906108c 5728
2d717e4f
DJ
5729 if (!target_has_execution)
5730 error (_("No process to detach from."));
5731
0f48b757 5732 target_announce_detach (from_tty);
7cee1e54 5733
c906108c 5734 /* Tell the remote target to detach. */
de0d863e 5735 remote_detach_pid (pid);
82f73884 5736
8020350c 5737 /* Exit only if this is the only active inferior. */
5b6d1e4f 5738 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
7cee1e54 5739 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5740
5b6d1e4f 5741 thread_info *tp = find_thread_ptid (this, inferior_ptid);
00431a78 5742
de0d863e
DB
5743 /* Check to see if we are detaching a fork parent. Note that if we
5744 are detaching a fork child, tp == NULL. */
5745 is_fork_parent = (tp != NULL
5746 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5747
5748 /* If doing detach-on-fork, we don't mourn, because that will delete
5749 breakpoints that should be available for the followed inferior. */
5750 if (!is_fork_parent)
f67c0c91 5751 {
249b5733
PA
5752 /* Save the pid as a string before mourning, since that will
5753 unpush the remote target, and we need the string after. */
f2907e49 5754 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5755
5756 target_mourn_inferior (inferior_ptid);
5757 if (print_inferior_events)
5758 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5759 inf->num, infpid.c_str ());
5760 }
de0d863e
DB
5761 else
5762 {
5763 inferior_ptid = null_ptid;
00431a78 5764 detach_inferior (current_inferior ());
de0d863e 5765 }
2d717e4f
DJ
5766}
5767
f6ac5f3d
PA
5768void
5769remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5770{
00431a78 5771 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5772}
5773
f6ac5f3d
PA
5774void
5775extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5776{
00431a78 5777 remote_detach_1 (inf, from_tty);
de0d863e
DB
5778}
5779
5780/* Target follow-fork function for remote targets. On entry, and
5781 at return, the current inferior is the fork parent.
5782
5783 Note that although this is currently only used for extended-remote,
5784 it is named remote_follow_fork in anticipation of using it for the
5785 remote target as well. */
5786
5ab2fbf1
SM
5787bool
5788remote_target::follow_fork (bool follow_child, bool detach_fork)
de0d863e
DB
5789{
5790 struct remote_state *rs = get_remote_state ();
c269dbdb 5791 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5792
c269dbdb
DB
5793 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5794 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5795 {
5796 /* When following the parent and detaching the child, we detach
5797 the child here. For the case of following the child and
5798 detaching the parent, the detach is done in the target-
5799 independent follow fork code in infrun.c. We can't use
5800 target_detach when detaching an unfollowed child because
5801 the client side doesn't know anything about the child. */
5802 if (detach_fork && !follow_child)
5803 {
5804 /* Detach the fork child. */
5805 ptid_t child_ptid;
5806 pid_t child_pid;
5807
5808 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5809 child_pid = child_ptid.pid ();
de0d863e
DB
5810
5811 remote_detach_pid (child_pid);
de0d863e
DB
5812 }
5813 }
5ab2fbf1
SM
5814
5815 return false;
c906108c
SS
5816}
5817
94585166
DB
5818/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5819 in the program space of the new inferior. On entry and at return the
5820 current inferior is the exec'ing inferior. INF is the new exec'd
5821 inferior, which may be the same as the exec'ing inferior unless
5822 follow-exec-mode is "new". */
5823
f6ac5f3d 5824void
4ca51187 5825remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5826{
5827 /* We know that this is a target file name, so if it has the "target:"
5828 prefix we strip it off before saving it in the program space. */
5829 if (is_target_filename (execd_pathname))
5830 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5831
5832 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5833}
5834
6ad8ae5c
DJ
5835/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5836
f6ac5f3d
PA
5837void
5838remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5839{
43ff13b4 5840 if (args)
2d717e4f 5841 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5842
8020350c 5843 /* Make sure we unpush even the extended remote targets. Calling
5b6d1e4f
PA
5844 target_mourn_inferior won't unpush, and
5845 remote_target::mourn_inferior won't unpush if there is more than
5846 one inferior left. */
5847 remote_unpush_target (this);
2d717e4f 5848
43ff13b4
JM
5849 if (from_tty)
5850 puts_filtered ("Ending remote debugging.\n");
5851}
5852
2d717e4f
DJ
5853/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5854 be chatty about it. */
5855
f6ac5f3d
PA
5856void
5857extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5858{
5859 struct remote_state *rs = get_remote_state ();
be86555c 5860 int pid;
96ef3384 5861 char *wait_status = NULL;
2d717e4f 5862
74164c56 5863 pid = parse_pid_to_attach (args);
2d717e4f 5864
74164c56
JK
5865 /* Remote PID can be freely equal to getpid, do not check it here the same
5866 way as in other targets. */
2d717e4f 5867
4082afcc 5868 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5869 error (_("This target does not support attaching to a process"));
5870
7cee1e54
PA
5871 if (from_tty)
5872 {
d9fa87f4 5873 const char *exec_file = get_exec_file (0);
7cee1e54
PA
5874
5875 if (exec_file)
5876 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5877 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5878 else
5879 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5880 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5881 }
5882
8d64371b 5883 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5884 putpkt (rs->buf);
8d64371b 5885 getpkt (&rs->buf, 0);
2d717e4f 5886
4082afcc
PA
5887 switch (packet_ok (rs->buf,
5888 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5889 {
4082afcc 5890 case PACKET_OK:
6efcd9a8 5891 if (!target_is_non_stop_p ())
74531fed
PA
5892 {
5893 /* Save the reply for later. */
8d64371b
TT
5894 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5895 strcpy (wait_status, rs->buf.data ());
74531fed 5896 }
8d64371b 5897 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5898 error (_("Attaching to %s failed with: %s"),
a068643d 5899 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5900 rs->buf.data ());
4082afcc
PA
5901 break;
5902 case PACKET_UNKNOWN:
5903 error (_("This target does not support attaching to a process"));
5904 default:
50fa3001
SDJ
5905 error (_("Attaching to %s failed"),
5906 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5907 }
2d717e4f 5908
9ab8741a 5909 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
bad34192 5910
f2907e49 5911 inferior_ptid = ptid_t (pid);
79d7f229 5912
6efcd9a8 5913 if (target_is_non_stop_p ())
bad34192
PA
5914 {
5915 struct thread_info *thread;
79d7f229 5916
bad34192 5917 /* Get list of threads. */
f6ac5f3d 5918 update_thread_list ();
82f73884 5919
00431a78 5920 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5921 if (thread)
5922 inferior_ptid = thread->ptid;
5923 else
f2907e49 5924 inferior_ptid = ptid_t (pid);
bad34192
PA
5925
5926 /* Invalidate our notion of the remote current thread. */
47f8a51d 5927 record_currthread (rs, minus_one_ptid);
bad34192 5928 }
74531fed 5929 else
bad34192
PA
5930 {
5931 /* Now, if we have thread information, update inferior_ptid. */
5932 inferior_ptid = remote_current_thread (inferior_ptid);
5933
5934 /* Add the main thread to the thread list. */
5b6d1e4f 5935 thread_info *thr = add_thread_silent (this, inferior_ptid);
00aecdcf
PA
5936 /* Don't consider the thread stopped until we've processed the
5937 saved stop reply. */
5b6d1e4f 5938 set_executing (this, thr->ptid, true);
bad34192 5939 }
c0a2216e 5940
96ef3384
UW
5941 /* Next, if the target can specify a description, read it. We do
5942 this before anything involving memory or registers. */
5943 target_find_description ();
5944
6efcd9a8 5945 if (!target_is_non_stop_p ())
74531fed
PA
5946 {
5947 /* Use the previously fetched status. */
5948 gdb_assert (wait_status != NULL);
5949
5950 if (target_can_async_p ())
5951 {
722247f1 5952 struct notif_event *reply
6b8edb51 5953 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5954
722247f1 5955 push_stop_reply ((struct stop_reply *) reply);
74531fed 5956
6a3753b3 5957 target_async (1);
74531fed
PA
5958 }
5959 else
5960 {
5961 gdb_assert (wait_status != NULL);
8d64371b 5962 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5963 rs->cached_wait_status = 1;
5964 }
5965 }
5966 else
5967 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5968}
5969
b9c1d481
AS
5970/* Implementation of the to_post_attach method. */
5971
f6ac5f3d
PA
5972void
5973extended_remote_target::post_attach (int pid)
b9c1d481 5974{
6efcd9a8
PA
5975 /* Get text, data & bss offsets. */
5976 get_offsets ();
5977
b9c1d481
AS
5978 /* In certain cases GDB might not have had the chance to start
5979 symbol lookup up until now. This could happen if the debugged
5980 binary is not using shared libraries, the vsyscall page is not
5981 present (on Linux) and the binary itself hadn't changed since the
5982 debugging process was started. */
5983 if (symfile_objfile != NULL)
5984 remote_check_symbols();
5985}
5986
c906108c 5987\f
506fb367
DJ
5988/* Check for the availability of vCont. This function should also check
5989 the response. */
c906108c 5990
6b8edb51
PA
5991void
5992remote_target::remote_vcont_probe ()
c906108c 5993{
6b8edb51 5994 remote_state *rs = get_remote_state ();
2e9f7625 5995 char *buf;
6d820c5c 5996
8d64371b 5997 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5998 putpkt (rs->buf);
8d64371b
TT
5999 getpkt (&rs->buf, 0);
6000 buf = rs->buf.data ();
c906108c 6001
506fb367 6002 /* Make sure that the features we assume are supported. */
61012eef 6003 if (startswith (buf, "vCont"))
506fb367
DJ
6004 {
6005 char *p = &buf[5];
750ce8d1 6006 int support_c, support_C;
506fb367 6007
750ce8d1
YQ
6008 rs->supports_vCont.s = 0;
6009 rs->supports_vCont.S = 0;
506fb367
DJ
6010 support_c = 0;
6011 support_C = 0;
d458bd84 6012 rs->supports_vCont.t = 0;
c1e36e3e 6013 rs->supports_vCont.r = 0;
506fb367
DJ
6014 while (p && *p == ';')
6015 {
6016 p++;
6017 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6018 rs->supports_vCont.s = 1;
506fb367 6019 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6020 rs->supports_vCont.S = 1;
506fb367
DJ
6021 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
6022 support_c = 1;
6023 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
6024 support_C = 1;
74531fed 6025 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 6026 rs->supports_vCont.t = 1;
c1e36e3e
PA
6027 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
6028 rs->supports_vCont.r = 1;
506fb367
DJ
6029
6030 p = strchr (p, ';');
6031 }
c906108c 6032
750ce8d1
YQ
6033 /* If c, and C are not all supported, we can't use vCont. Clearing
6034 BUF will make packet_ok disable the packet. */
6035 if (!support_c || !support_C)
506fb367
DJ
6036 buf[0] = 0;
6037 }
c906108c 6038
8d64371b 6039 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5b6d1e4f 6040 rs->supports_vCont_probed = true;
506fb367 6041}
c906108c 6042
0d8f58ca
PA
6043/* Helper function for building "vCont" resumptions. Write a
6044 resumption to P. ENDP points to one-passed-the-end of the buffer
6045 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6046 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6047 resumed thread should be single-stepped and/or signalled. If PTID
6048 equals minus_one_ptid, then all threads are resumed; if PTID
6049 represents a process, then all threads of the process are resumed;
6050 the thread to be stepped and/or signalled is given in the global
6051 INFERIOR_PTID. */
6052
6b8edb51
PA
6053char *
6054remote_target::append_resumption (char *p, char *endp,
6055 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6056{
6057 struct remote_state *rs = get_remote_state ();
6058
a493e3e2 6059 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6060 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6061 else if (step
6062 /* GDB is willing to range step. */
6063 && use_range_stepping
6064 /* Target supports range stepping. */
6065 && rs->supports_vCont.r
6066 /* We don't currently support range stepping multiple
6067 threads with a wildcard (though the protocol allows it,
6068 so stubs shouldn't make an active effort to forbid
6069 it). */
0e998d96 6070 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6071 {
6072 struct thread_info *tp;
6073
d7e15655 6074 if (ptid == minus_one_ptid)
c1e36e3e
PA
6075 {
6076 /* If we don't know about the target thread's tid, then
6077 we're resuming magic_null_ptid (see caller). */
5b6d1e4f 6078 tp = find_thread_ptid (this, magic_null_ptid);
c1e36e3e
PA
6079 }
6080 else
5b6d1e4f 6081 tp = find_thread_ptid (this, ptid);
c1e36e3e
PA
6082 gdb_assert (tp != NULL);
6083
6084 if (tp->control.may_range_step)
6085 {
6086 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6087
6088 p += xsnprintf (p, endp - p, ";r%s,%s",
6089 phex_nz (tp->control.step_range_start,
6090 addr_size),
6091 phex_nz (tp->control.step_range_end,
6092 addr_size));
6093 }
6094 else
6095 p += xsnprintf (p, endp - p, ";s");
6096 }
0d8f58ca
PA
6097 else if (step)
6098 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6099 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6100 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6101 else
6102 p += xsnprintf (p, endp - p, ";c");
6103
0e998d96 6104 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6105 {
6106 ptid_t nptid;
6107
6108 /* All (-1) threads of process. */
e99b03dc 6109 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6110
6111 p += xsnprintf (p, endp - p, ":");
6112 p = write_ptid (p, endp, nptid);
6113 }
d7e15655 6114 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6115 {
6116 p += xsnprintf (p, endp - p, ":");
6117 p = write_ptid (p, endp, ptid);
6118 }
6119
6120 return p;
6121}
6122
799a2abe
PA
6123/* Clear the thread's private info on resume. */
6124
6125static void
6126resume_clear_thread_private_info (struct thread_info *thread)
6127{
6128 if (thread->priv != NULL)
6129 {
7aabaf9d
SM
6130 remote_thread_info *priv = get_remote_thread_info (thread);
6131
6132 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6133 priv->watch_data_address = 0;
799a2abe
PA
6134 }
6135}
6136
e5ef252a
PA
6137/* Append a vCont continue-with-signal action for threads that have a
6138 non-zero stop signal. */
6139
6b8edb51
PA
6140char *
6141remote_target::append_pending_thread_resumptions (char *p, char *endp,
6142 ptid_t ptid)
e5ef252a 6143{
5b6d1e4f 6144 for (thread_info *thread : all_non_exited_threads (this, ptid))
08036331 6145 if (inferior_ptid != thread->ptid
70509625 6146 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6147 {
6148 p = append_resumption (p, endp, thread->ptid,
6149 0, thread->suspend.stop_signal);
6150 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6151 resume_clear_thread_private_info (thread);
e5ef252a
PA
6152 }
6153
6154 return p;
6155}
6156
7b68ffbb
PA
6157/* Set the target running, using the packets that use Hc
6158 (c/s/C/S). */
6159
6b8edb51
PA
6160void
6161remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6162 gdb_signal siggnal)
7b68ffbb
PA
6163{
6164 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6165 char *buf;
6166
6167 rs->last_sent_signal = siggnal;
6168 rs->last_sent_step = step;
6169
6170 /* The c/s/C/S resume packets use Hc, so set the continue
6171 thread. */
d7e15655 6172 if (ptid == minus_one_ptid)
7b68ffbb
PA
6173 set_continue_thread (any_thread_ptid);
6174 else
6175 set_continue_thread (ptid);
6176
5b6d1e4f 6177 for (thread_info *thread : all_non_exited_threads (this))
7b68ffbb
PA
6178 resume_clear_thread_private_info (thread);
6179
8d64371b 6180 buf = rs->buf.data ();
6b8edb51 6181 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6182 {
6183 /* We don't pass signals to the target in reverse exec mode. */
6184 if (info_verbose && siggnal != GDB_SIGNAL_0)
6185 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6186 siggnal);
6187
6188 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6189 error (_("Remote reverse-step not supported."));
6190 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6191 error (_("Remote reverse-continue not supported."));
6192
6193 strcpy (buf, step ? "bs" : "bc");
6194 }
6195 else if (siggnal != GDB_SIGNAL_0)
6196 {
6197 buf[0] = step ? 'S' : 'C';
6198 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6199 buf[2] = tohex (((int) siggnal) & 0xf);
6200 buf[3] = '\0';
6201 }
6202 else
6203 strcpy (buf, step ? "s" : "c");
6204
6205 putpkt (buf);
6206}
6207
506fb367
DJ
6208/* Resume the remote inferior by using a "vCont" packet. The thread
6209 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6210 resumed thread should be single-stepped and/or signalled. If PTID
6211 equals minus_one_ptid, then all threads are resumed; the thread to
6212 be stepped and/or signalled is given in the global INFERIOR_PTID.
6213 This function returns non-zero iff it resumes the inferior.
44eaed12 6214
7b68ffbb
PA
6215 This function issues a strict subset of all possible vCont commands
6216 at the moment. */
44eaed12 6217
6b8edb51
PA
6218int
6219remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6220 enum gdb_signal siggnal)
506fb367
DJ
6221{
6222 struct remote_state *rs = get_remote_state ();
82f73884
PA
6223 char *p;
6224 char *endp;
44eaed12 6225
7b68ffbb 6226 /* No reverse execution actions defined for vCont. */
6b8edb51 6227 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6228 return 0;
6229
4082afcc 6230 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6231 remote_vcont_probe ();
44eaed12 6232
4082afcc 6233 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6234 return 0;
44eaed12 6235
8d64371b
TT
6236 p = rs->buf.data ();
6237 endp = p + get_remote_packet_size ();
82f73884 6238
506fb367
DJ
6239 /* If we could generate a wider range of packets, we'd have to worry
6240 about overflowing BUF. Should there be a generic
6241 "multi-part-packet" packet? */
6242
0d8f58ca
PA
6243 p += xsnprintf (p, endp - p, "vCont");
6244
d7e15655 6245 if (ptid == magic_null_ptid)
c906108c 6246 {
79d7f229
PA
6247 /* MAGIC_NULL_PTID means that we don't have any active threads,
6248 so we don't have any TID numbers the inferior will
6249 understand. Make sure to only send forms that do not specify
6250 a TID. */
a9cbf802 6251 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6252 }
d7e15655 6253 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6254 {
0d8f58ca
PA
6255 /* Resume all threads (of all processes, or of a single
6256 process), with preference for INFERIOR_PTID. This assumes
6257 inferior_ptid belongs to the set of all threads we are about
6258 to resume. */
a493e3e2 6259 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6260 {
0d8f58ca
PA
6261 /* Step inferior_ptid, with or without signal. */
6262 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6263 }
0d8f58ca 6264
e5ef252a
PA
6265 /* Also pass down any pending signaled resumption for other
6266 threads not the current. */
6267 p = append_pending_thread_resumptions (p, endp, ptid);
6268
0d8f58ca 6269 /* And continue others without a signal. */
a493e3e2 6270 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6271 }
6272 else
506fb367
DJ
6273 {
6274 /* Scheduler locking; resume only PTID. */
a9cbf802 6275 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6276 }
c906108c 6277
8d64371b 6278 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6279 putpkt (rs->buf);
506fb367 6280
6efcd9a8 6281 if (target_is_non_stop_p ())
74531fed
PA
6282 {
6283 /* In non-stop, the stub replies to vCont with "OK". The stop
6284 reply will be reported asynchronously by means of a `%Stop'
6285 notification. */
8d64371b
TT
6286 getpkt (&rs->buf, 0);
6287 if (strcmp (rs->buf.data (), "OK") != 0)
6288 error (_("Unexpected vCont reply in non-stop mode: %s"),
6289 rs->buf.data ());
74531fed
PA
6290 }
6291
506fb367 6292 return 1;
c906108c 6293}
43ff13b4 6294
506fb367
DJ
6295/* Tell the remote machine to resume. */
6296
f6ac5f3d
PA
6297void
6298remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6299{
d01949b6 6300 struct remote_state *rs = get_remote_state ();
43ff13b4 6301
85ad3aaf
PA
6302 /* When connected in non-stop mode, the core resumes threads
6303 individually. Resuming remote threads directly in target_resume
6304 would thus result in sending one packet per thread. Instead, to
6305 minimize roundtrip latency, here we just store the resume
6306 request; the actual remote resumption will be done in
6307 target_commit_resume / remote_commit_resume, where we'll be able
6308 to do vCont action coalescing. */
f6ac5f3d 6309 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6310 {
7aabaf9d 6311 remote_thread_info *remote_thr;
85ad3aaf 6312
d7e15655 6313 if (minus_one_ptid == ptid || ptid.is_pid ())
5b6d1e4f 6314 remote_thr = get_remote_thread_info (this, inferior_ptid);
85ad3aaf 6315 else
5b6d1e4f 6316 remote_thr = get_remote_thread_info (this, ptid);
7aabaf9d 6317
85ad3aaf
PA
6318 remote_thr->last_resume_step = step;
6319 remote_thr->last_resume_sig = siggnal;
6320 return;
6321 }
6322
722247f1
YQ
6323 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6324 (explained in remote-notif.c:handle_notification) so
6325 remote_notif_process is not called. We need find a place where
6326 it is safe to start a 'vNotif' sequence. It is good to do it
6327 before resuming inferior, because inferior was stopped and no RSP
6328 traffic at that moment. */
6efcd9a8 6329 if (!target_is_non_stop_p ())
5965e028 6330 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6331
f6ac5f3d 6332 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6333
7b68ffbb
PA
6334 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6335 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6336 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6337
2acceee2 6338 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6339 with the event loop. NOTE: this is the one place where all the
6340 execution commands end up. We could alternatively do this in each
23860348 6341 of the execution commands in infcmd.c. */
2acceee2
JM
6342 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6343 into infcmd.c in order to allow inferior function calls to work
23860348 6344 NOT asynchronously. */
362646f5 6345 if (target_can_async_p ())
6a3753b3 6346 target_async (1);
e24a49d8
PA
6347
6348 /* We've just told the target to resume. The remote server will
6349 wait for the inferior to stop, and then send a stop reply. In
6350 the mean time, we can't start another command/query ourselves
74531fed
PA
6351 because the stub wouldn't be ready to process it. This applies
6352 only to the base all-stop protocol, however. In non-stop (which
6353 only supports vCont), the stub replies with an "OK", and is
6354 immediate able to process further serial input. */
6efcd9a8 6355 if (!target_is_non_stop_p ())
74531fed 6356 rs->waiting_for_stop_reply = 1;
43ff13b4 6357}
85ad3aaf 6358
85ad3aaf
PA
6359static int is_pending_fork_parent_thread (struct thread_info *thread);
6360
6361/* Private per-inferior info for target remote processes. */
6362
089354bb 6363struct remote_inferior : public private_inferior
85ad3aaf
PA
6364{
6365 /* Whether we can send a wildcard vCont for this process. */
089354bb 6366 bool may_wildcard_vcont = true;
85ad3aaf
PA
6367};
6368
089354bb
SM
6369/* Get the remote private inferior data associated to INF. */
6370
6371static remote_inferior *
6372get_remote_inferior (inferior *inf)
6373{
6374 if (inf->priv == NULL)
6375 inf->priv.reset (new remote_inferior);
6376
6377 return static_cast<remote_inferior *> (inf->priv.get ());
6378}
6379
f5db4863 6380/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6381 outgoing packet buffer. This is used to send multiple vCont
6382 packets if we have more actions than would fit a single packet. */
6383
f5db4863 6384class vcont_builder
85ad3aaf 6385{
f5db4863 6386public:
6b8edb51
PA
6387 explicit vcont_builder (remote_target *remote)
6388 : m_remote (remote)
f5db4863
PA
6389 {
6390 restart ();
6391 }
6392
6393 void flush ();
6394 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6395
6396private:
6397 void restart ();
6398
6b8edb51
PA
6399 /* The remote target. */
6400 remote_target *m_remote;
6401
85ad3aaf
PA
6402 /* Pointer to the first action. P points here if no action has been
6403 appended yet. */
f5db4863 6404 char *m_first_action;
85ad3aaf
PA
6405
6406 /* Where the next action will be appended. */
f5db4863 6407 char *m_p;
85ad3aaf
PA
6408
6409 /* The end of the buffer. Must never write past this. */
f5db4863 6410 char *m_endp;
85ad3aaf
PA
6411};
6412
6413/* Prepare the outgoing buffer for a new vCont packet. */
6414
f5db4863
PA
6415void
6416vcont_builder::restart ()
85ad3aaf 6417{
6b8edb51 6418 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6419
8d64371b
TT
6420 m_p = rs->buf.data ();
6421 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6422 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6423 m_first_action = m_p;
85ad3aaf
PA
6424}
6425
6426/* If the vCont packet being built has any action, send it to the
6427 remote end. */
6428
f5db4863
PA
6429void
6430vcont_builder::flush ()
85ad3aaf
PA
6431{
6432 struct remote_state *rs;
6433
f5db4863 6434 if (m_p == m_first_action)
85ad3aaf
PA
6435 return;
6436
6b8edb51
PA
6437 rs = m_remote->get_remote_state ();
6438 m_remote->putpkt (rs->buf);
8d64371b
TT
6439 m_remote->getpkt (&rs->buf, 0);
6440 if (strcmp (rs->buf.data (), "OK") != 0)
6441 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6442}
6443
6444/* The largest action is range-stepping, with its two addresses. This
6445 is more than sufficient. If a new, bigger action is created, it'll
6446 quickly trigger a failed assertion in append_resumption (and we'll
6447 just bump this). */
6448#define MAX_ACTION_SIZE 200
6449
6450/* Append a new vCont action in the outgoing packet being built. If
6451 the action doesn't fit the packet along with previous actions, push
6452 what we've got so far to the remote end and start over a new vCont
6453 packet (with the new action). */
6454
f5db4863
PA
6455void
6456vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6457{
6458 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6459
6b8edb51
PA
6460 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6461 ptid, step, siggnal);
85ad3aaf
PA
6462
6463 /* Check whether this new action would fit in the vCont packet along
6464 with previous actions. If not, send what we've got so far and
6465 start a new vCont packet. */
f5db4863
PA
6466 size_t rsize = endp - buf;
6467 if (rsize > m_endp - m_p)
85ad3aaf 6468 {
f5db4863
PA
6469 flush ();
6470 restart ();
85ad3aaf
PA
6471
6472 /* Should now fit. */
f5db4863 6473 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6474 }
6475
f5db4863
PA
6476 memcpy (m_p, buf, rsize);
6477 m_p += rsize;
6478 *m_p = '\0';
85ad3aaf
PA
6479}
6480
6481/* to_commit_resume implementation. */
6482
f6ac5f3d
PA
6483void
6484remote_target::commit_resume ()
85ad3aaf 6485{
85ad3aaf
PA
6486 int any_process_wildcard;
6487 int may_global_wildcard_vcont;
85ad3aaf
PA
6488
6489 /* If connected in all-stop mode, we'd send the remote resume
6490 request directly from remote_resume. Likewise if
6491 reverse-debugging, as there are no defined vCont actions for
6492 reverse execution. */
f6ac5f3d 6493 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6494 return;
6495
6496 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6497 instead of resuming all threads of each process individually.
6498 However, if any thread of a process must remain halted, we can't
6499 send wildcard resumes and must send one action per thread.
6500
6501 Care must be taken to not resume threads/processes the server
6502 side already told us are stopped, but the core doesn't know about
6503 yet, because the events are still in the vStopped notification
6504 queue. For example:
6505
6506 #1 => vCont s:p1.1;c
6507 #2 <= OK
6508 #3 <= %Stopped T05 p1.1
6509 #4 => vStopped
6510 #5 <= T05 p1.2
6511 #6 => vStopped
6512 #7 <= OK
6513 #8 (infrun handles the stop for p1.1 and continues stepping)
6514 #9 => vCont s:p1.1;c
6515
6516 The last vCont above would resume thread p1.2 by mistake, because
6517 the server has no idea that the event for p1.2 had not been
6518 handled yet.
6519
6520 The server side must similarly ignore resume actions for the
6521 thread that has a pending %Stopped notification (and any other
6522 threads with events pending), until GDB acks the notification
6523 with vStopped. Otherwise, e.g., the following case is
6524 mishandled:
6525
6526 #1 => g (or any other packet)
6527 #2 <= [registers]
6528 #3 <= %Stopped T05 p1.2
6529 #4 => vCont s:p1.1;c
6530 #5 <= OK
6531
6532 Above, the server must not resume thread p1.2. GDB can't know
6533 that p1.2 stopped until it acks the %Stopped notification, and
6534 since from GDB's perspective all threads should be running, it
6535 sends a "c" action.
6536
6537 Finally, special care must also be given to handling fork/vfork
6538 events. A (v)fork event actually tells us that two processes
6539 stopped -- the parent and the child. Until we follow the fork,
6540 we must not resume the child. Therefore, if we have a pending
6541 fork follow, we must not send a global wildcard resume action
6542 (vCont;c). We can still send process-wide wildcards though. */
6543
6544 /* Start by assuming a global wildcard (vCont;c) is possible. */
6545 may_global_wildcard_vcont = 1;
6546
6547 /* And assume every process is individually wildcard-able too. */
5b6d1e4f 6548 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6549 {
089354bb
SM
6550 remote_inferior *priv = get_remote_inferior (inf);
6551
6552 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6553 }
6554
6555 /* Check for any pending events (not reported or processed yet) and
6556 disable process and global wildcard resumes appropriately. */
6557 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6558
5b6d1e4f 6559 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf
PA
6560 {
6561 /* If a thread of a process is not meant to be resumed, then we
6562 can't wildcard that process. */
6563 if (!tp->executing)
6564 {
089354bb 6565 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6566
6567 /* And if we can't wildcard a process, we can't wildcard
6568 everything either. */
6569 may_global_wildcard_vcont = 0;
6570 continue;
6571 }
6572
6573 /* If a thread is the parent of an unfollowed fork, then we
6574 can't do a global wildcard, as that would resume the fork
6575 child. */
6576 if (is_pending_fork_parent_thread (tp))
6577 may_global_wildcard_vcont = 0;
6578 }
6579
6580 /* Now let's build the vCont packet(s). Actions must be appended
6581 from narrower to wider scopes (thread -> process -> global). If
6582 we end up with too many actions for a single packet vcont_builder
6583 flushes the current vCont packet to the remote side and starts a
6584 new one. */
6b8edb51 6585 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6586
6587 /* Threads first. */
5b6d1e4f 6588 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6589 {
7aabaf9d 6590 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6591
6592 if (!tp->executing || remote_thr->vcont_resumed)
6593 continue;
6594
6595 gdb_assert (!thread_is_in_step_over_chain (tp));
6596
6597 if (!remote_thr->last_resume_step
6598 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6599 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6600 {
6601 /* We'll send a wildcard resume instead. */
6602 remote_thr->vcont_resumed = 1;
6603 continue;
6604 }
6605
f5db4863 6606 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6607 remote_thr->last_resume_step,
6608 remote_thr->last_resume_sig);
6609 remote_thr->vcont_resumed = 1;
6610 }
6611
6612 /* Now check whether we can send any process-wide wildcard. This is
6613 to avoid sending a global wildcard in the case nothing is
6614 supposed to be resumed. */
6615 any_process_wildcard = 0;
6616
5b6d1e4f 6617 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6618 {
089354bb 6619 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6620 {
6621 any_process_wildcard = 1;
6622 break;
6623 }
6624 }
6625
6626 if (any_process_wildcard)
6627 {
6628 /* If all processes are wildcard-able, then send a single "c"
6629 action, otherwise, send an "all (-1) threads of process"
6630 continue action for each running process, if any. */
6631 if (may_global_wildcard_vcont)
6632 {
f5db4863
PA
6633 vcont_builder.push_action (minus_one_ptid,
6634 false, GDB_SIGNAL_0);
85ad3aaf
PA
6635 }
6636 else
6637 {
5b6d1e4f 6638 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6639 {
089354bb 6640 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6641 {
f2907e49 6642 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6643 false, GDB_SIGNAL_0);
85ad3aaf
PA
6644 }
6645 }
6646 }
6647 }
6648
f5db4863 6649 vcont_builder.flush ();
85ad3aaf
PA
6650}
6651
c906108c 6652\f
43ff13b4 6653
74531fed
PA
6654/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6655 thread, all threads of a remote process, or all threads of all
6656 processes. */
6657
6b8edb51
PA
6658void
6659remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6660{
6661 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6662 char *p = rs->buf.data ();
6663 char *endp = p + get_remote_packet_size ();
74531fed 6664
5b6d1e4f
PA
6665 /* FIXME: This supports_vCont_probed check is a workaround until
6666 packet_support is per-connection. */
6667 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6668 || !rs->supports_vCont_probed)
6b8edb51 6669 remote_vcont_probe ();
74531fed 6670
d458bd84 6671 if (!rs->supports_vCont.t)
74531fed
PA
6672 error (_("Remote server does not support stopping threads"));
6673
d7e15655 6674 if (ptid == minus_one_ptid
0e998d96 6675 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6676 p += xsnprintf (p, endp - p, "vCont;t");
6677 else
6678 {
6679 ptid_t nptid;
6680
74531fed
PA
6681 p += xsnprintf (p, endp - p, "vCont;t:");
6682
0e998d96 6683 if (ptid.is_pid ())
74531fed 6684 /* All (-1) threads of process. */
e99b03dc 6685 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6686 else
6687 {
6688 /* Small optimization: if we already have a stop reply for
6689 this thread, no use in telling the stub we want this
6690 stopped. */
6691 if (peek_stop_reply (ptid))
6692 return;
6693
6694 nptid = ptid;
6695 }
6696
a9cbf802 6697 write_ptid (p, endp, nptid);
74531fed
PA
6698 }
6699
6700 /* In non-stop, we get an immediate OK reply. The stop reply will
6701 come in asynchronously by notification. */
6702 putpkt (rs->buf);
8d64371b
TT
6703 getpkt (&rs->buf, 0);
6704 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6705 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6706 rs->buf.data ());
74531fed
PA
6707}
6708
bfedc46a
PA
6709/* All-stop version of target_interrupt. Sends a break or a ^C to
6710 interrupt the remote target. It is undefined which thread of which
6711 process reports the interrupt. */
74531fed 6712
6b8edb51
PA
6713void
6714remote_target::remote_interrupt_as ()
74531fed
PA
6715{
6716 struct remote_state *rs = get_remote_state ();
6717
3a29589a
DJ
6718 rs->ctrlc_pending_p = 1;
6719
74531fed
PA
6720 /* If the inferior is stopped already, but the core didn't know
6721 about it yet, just ignore the request. The cached wait status
6722 will be collected in remote_wait. */
6723 if (rs->cached_wait_status)
6724 return;
6725
9a7071a8
JB
6726 /* Send interrupt_sequence to remote target. */
6727 send_interrupt_sequence ();
74531fed
PA
6728}
6729
de979965
PA
6730/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6731 the remote target. It is undefined which thread of which process
e42de8c7
PA
6732 reports the interrupt. Throws an error if the packet is not
6733 supported by the server. */
de979965 6734
6b8edb51
PA
6735void
6736remote_target::remote_interrupt_ns ()
de979965
PA
6737{
6738 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6739 char *p = rs->buf.data ();
6740 char *endp = p + get_remote_packet_size ();
de979965
PA
6741
6742 xsnprintf (p, endp - p, "vCtrlC");
6743
6744 /* In non-stop, we get an immediate OK reply. The stop reply will
6745 come in asynchronously by notification. */
6746 putpkt (rs->buf);
8d64371b 6747 getpkt (&rs->buf, 0);
de979965
PA
6748
6749 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6750 {
6751 case PACKET_OK:
6752 break;
6753 case PACKET_UNKNOWN:
e42de8c7 6754 error (_("No support for interrupting the remote target."));
de979965 6755 case PACKET_ERROR:
8d64371b 6756 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6757 }
de979965
PA
6758}
6759
bfedc46a 6760/* Implement the to_stop function for the remote targets. */
74531fed 6761
f6ac5f3d
PA
6762void
6763remote_target::stop (ptid_t ptid)
c906108c 6764{
7a292a7a 6765 if (remote_debug)
0f71a2f6 6766 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6767
6efcd9a8 6768 if (target_is_non_stop_p ())
74531fed 6769 remote_stop_ns (ptid);
c906108c 6770 else
bfedc46a
PA
6771 {
6772 /* We don't currently have a way to transparently pause the
6773 remote target in all-stop mode. Interrupt it instead. */
de979965 6774 remote_interrupt_as ();
bfedc46a
PA
6775 }
6776}
6777
6778/* Implement the to_interrupt function for the remote targets. */
6779
f6ac5f3d
PA
6780void
6781remote_target::interrupt ()
bfedc46a
PA
6782{
6783 if (remote_debug)
6784 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6785
e42de8c7
PA
6786 if (target_is_non_stop_p ())
6787 remote_interrupt_ns ();
bfedc46a 6788 else
e42de8c7 6789 remote_interrupt_as ();
c906108c
SS
6790}
6791
93692b58
PA
6792/* Implement the to_pass_ctrlc function for the remote targets. */
6793
f6ac5f3d
PA
6794void
6795remote_target::pass_ctrlc ()
93692b58
PA
6796{
6797 struct remote_state *rs = get_remote_state ();
6798
6799 if (remote_debug)
6800 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6801
6802 /* If we're starting up, we're not fully synced yet. Quit
6803 immediately. */
6804 if (rs->starting_up)
6805 quit ();
6806 /* If ^C has already been sent once, offer to disconnect. */
6807 else if (rs->ctrlc_pending_p)
6808 interrupt_query ();
6809 else
e671cd59 6810 target_interrupt ();
93692b58
PA
6811}
6812
c906108c
SS
6813/* Ask the user what to do when an interrupt is received. */
6814
6b8edb51
PA
6815void
6816remote_target::interrupt_query ()
c906108c 6817{
abc56d60 6818 struct remote_state *rs = get_remote_state ();
c906108c 6819
abc56d60 6820 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6821 {
abc56d60
PA
6822 if (query (_("The target is not responding to interrupt requests.\n"
6823 "Stop debugging it? ")))
74531fed 6824 {
5b6d1e4f 6825 remote_unpush_target (this);
abc56d60 6826 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6827 }
6828 }
abc56d60
PA
6829 else
6830 {
6831 if (query (_("Interrupted while waiting for the program.\n"
6832 "Give up waiting? ")))
6833 quit ();
6834 }
c906108c
SS
6835}
6836
6426a772
JM
6837/* Enable/disable target terminal ownership. Most targets can use
6838 terminal groups to control terminal ownership. Remote targets are
6839 different in that explicit transfer of ownership to/from GDB/target
23860348 6840 is required. */
6426a772 6841
f6ac5f3d
PA
6842void
6843remote_target::terminal_inferior ()
6426a772 6844{
6426a772
JM
6845 /* NOTE: At this point we could also register our selves as the
6846 recipient of all input. Any characters typed could then be
23860348 6847 passed on down to the target. */
6426a772
JM
6848}
6849
f6ac5f3d
PA
6850void
6851remote_target::terminal_ours ()
6426a772 6852{
6426a772
JM
6853}
6854
176a6961 6855static void
05be00a8 6856remote_console_output (const char *msg)
c906108c 6857{
05be00a8 6858 const char *p;
c906108c 6859
c5aa993b 6860 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6861 {
6862 char tb[2];
6863 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6864
c906108c
SS
6865 tb[0] = c;
6866 tb[1] = 0;
da5bd37e 6867 gdb_stdtarg->puts (tb);
c906108c 6868 }
da5bd37e 6869 gdb_stdtarg->flush ();
00db5b94 6870}
74531fed 6871
32603266 6872struct stop_reply : public notif_event
74531fed 6873{
32603266 6874 ~stop_reply ();
74531fed 6875
722247f1 6876 /* The identifier of the thread about this event */
74531fed
PA
6877 ptid_t ptid;
6878
340e3c99 6879 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6880 connection, represented by a remote_state object, is closed,
6881 all the associated stop_reply events should be released. */
6882 struct remote_state *rs;
6883
74531fed
PA
6884 struct target_waitstatus ws;
6885
5cd63fda
PA
6886 /* The architecture associated with the expedited registers. */
6887 gdbarch *arch;
6888
15148d6a
PA
6889 /* Expedited registers. This makes remote debugging a bit more
6890 efficient for those targets that provide critical registers as
6891 part of their normal status mechanism (as another roundtrip to
6892 fetch them is avoided). */
32603266 6893 std::vector<cached_reg_t> regcache;
74531fed 6894
f7e6eed5
PA
6895 enum target_stop_reason stop_reason;
6896
74531fed
PA
6897 CORE_ADDR watch_data_address;
6898
dc146f7c 6899 int core;
32603266 6900};
c906108c 6901
221e1a37
PA
6902/* Return the length of the stop reply queue. */
6903
6b8edb51
PA
6904int
6905remote_target::stop_reply_queue_length ()
221e1a37 6906{
6b8edb51 6907 remote_state *rs = get_remote_state ();
953edf2b 6908 return rs->stop_reply_queue.size ();
221e1a37
PA
6909}
6910
cb8c24b6 6911static void
6b8edb51 6912remote_notif_stop_parse (remote_target *remote,
bb277751 6913 struct notif_client *self, const char *buf,
722247f1
YQ
6914 struct notif_event *event)
6915{
6b8edb51 6916 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6917}
6918
6919static void
6b8edb51 6920remote_notif_stop_ack (remote_target *remote,
bb277751 6921 struct notif_client *self, const char *buf,
722247f1
YQ
6922 struct notif_event *event)
6923{
6924 struct stop_reply *stop_reply = (struct stop_reply *) event;
6925
6926 /* acknowledge */
6b8edb51 6927 putpkt (remote, self->ack_command);
722247f1
YQ
6928
6929 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6930 {
722247f1
YQ
6931 /* We got an unknown stop reply. */
6932 error (_("Unknown stop reply"));
6b8edb51 6933 }
722247f1 6934
6b8edb51 6935 remote->push_stop_reply (stop_reply);
722247f1
YQ
6936}
6937
6938static int
6b8edb51
PA
6939remote_notif_stop_can_get_pending_events (remote_target *remote,
6940 struct notif_client *self)
722247f1
YQ
6941{
6942 /* We can't get pending events in remote_notif_process for
6943 notification stop, and we have to do this in remote_wait_ns
6944 instead. If we fetch all queued events from stub, remote stub
6945 may exit and we have no chance to process them back in
6946 remote_wait_ns. */
6b8edb51
PA
6947 remote_state *rs = remote->get_remote_state ();
6948 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6949 return 0;
6950}
6951
32603266 6952stop_reply::~stop_reply ()
722247f1 6953{
32603266
TT
6954 for (cached_reg_t &reg : regcache)
6955 xfree (reg.data);
722247f1
YQ
6956}
6957
32603266
TT
6958static notif_event_up
6959remote_notif_stop_alloc_reply ()
722247f1 6960{
32603266 6961 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6962}
6963
6964/* A client of notification Stop. */
6965
6966struct notif_client notif_client_stop =
6967{
6968 "Stop",
6969 "vStopped",
6970 remote_notif_stop_parse,
6971 remote_notif_stop_ack,
6972 remote_notif_stop_can_get_pending_events,
6973 remote_notif_stop_alloc_reply,
f48ff2a7 6974 REMOTE_NOTIF_STOP,
722247f1
YQ
6975};
6976
85ad3aaf 6977/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6978 the pid of the process that owns the threads we want to check, or
6979 -1 if we want to check all threads. */
6980
6981static int
6982is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6983 ptid_t thread_ptid)
6984{
6985 if (ws->kind == TARGET_WAITKIND_FORKED
6986 || ws->kind == TARGET_WAITKIND_VFORKED)
6987 {
e99b03dc 6988 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6989 return 1;
6990 }
6991
6992 return 0;
6993}
6994
85ad3aaf
PA
6995/* Return the thread's pending status used to determine whether the
6996 thread is a fork parent stopped at a fork event. */
6997
6998static struct target_waitstatus *
6999thread_pending_fork_status (struct thread_info *thread)
7000{
7001 if (thread->suspend.waitstatus_pending_p)
7002 return &thread->suspend.waitstatus;
7003 else
7004 return &thread->pending_follow;
7005}
7006
7007/* Determine if THREAD is a pending fork parent thread. */
7008
7009static int
7010is_pending_fork_parent_thread (struct thread_info *thread)
7011{
7012 struct target_waitstatus *ws = thread_pending_fork_status (thread);
7013 int pid = -1;
7014
7015 return is_pending_fork_parent (ws, pid, thread->ptid);
7016}
7017
cbb8991c
DB
7018/* If CONTEXT contains any fork child threads that have not been
7019 reported yet, remove them from the CONTEXT list. If such a
7020 thread exists it is because we are stopped at a fork catchpoint
7021 and have not yet called follow_fork, which will set up the
7022 host-side data structures for the new process. */
7023
6b8edb51
PA
7024void
7025remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 7026{
cbb8991c
DB
7027 int pid = -1;
7028 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
7029
7030 /* For any threads stopped at a fork event, remove the corresponding
7031 fork child threads from the CONTEXT list. */
5b6d1e4f 7032 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c 7033 {
85ad3aaf 7034 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7035
7036 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7037 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7038 }
7039
7040 /* Check for any pending fork events (not reported or processed yet)
7041 in process PID and remove those fork child threads from the
7042 CONTEXT list as well. */
7043 remote_notif_get_pending_events (notif);
953edf2b
TT
7044 for (auto &event : get_remote_state ()->stop_reply_queue)
7045 if (event->ws.kind == TARGET_WAITKIND_FORKED
7046 || event->ws.kind == TARGET_WAITKIND_VFORKED
7047 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7048 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7049}
7050
7051/* Check whether any event pending in the vStopped queue would prevent
7052 a global or process wildcard vCont action. Clear
7053 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7054 and clear the event inferior's may_wildcard_vcont flag if we can't
7055 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7056
6b8edb51
PA
7057void
7058remote_target::check_pending_events_prevent_wildcard_vcont
7059 (int *may_global_wildcard)
85ad3aaf
PA
7060{
7061 struct notif_client *notif = &notif_client_stop;
7062
7063 remote_notif_get_pending_events (notif);
953edf2b
TT
7064 for (auto &event : get_remote_state ()->stop_reply_queue)
7065 {
7066 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7067 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7068 continue;
85ad3aaf 7069
953edf2b
TT
7070 if (event->ws.kind == TARGET_WAITKIND_FORKED
7071 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7072 *may_global_wildcard = 0;
722247f1 7073
5b6d1e4f 7074 struct inferior *inf = find_inferior_ptid (this, event->ptid);
722247f1 7075
953edf2b
TT
7076 /* This may be the first time we heard about this process.
7077 Regardless, we must not do a global wildcard resume, otherwise
7078 we'd resume this process too. */
7079 *may_global_wildcard = 0;
7080 if (inf != NULL)
7081 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7082 }
722247f1
YQ
7083}
7084
f48ff2a7 7085/* Discard all pending stop replies of inferior INF. */
c906108c 7086
6b8edb51
PA
7087void
7088remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7089{
f48ff2a7
YQ
7090 struct stop_reply *reply;
7091 struct remote_state *rs = get_remote_state ();
7092 struct remote_notif_state *rns = rs->notif_state;
7093
7094 /* This function can be notified when an inferior exists. When the
7095 target is not remote, the notification state is NULL. */
7096 if (rs->remote_desc == NULL)
7097 return;
7098
7099 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7100
74531fed 7101 /* Discard the in-flight notification. */
e99b03dc 7102 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7103 {
32603266 7104 delete reply;
f48ff2a7 7105 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7106 }
c906108c 7107
74531fed
PA
7108 /* Discard the stop replies we have already pulled with
7109 vStopped. */
953edf2b
TT
7110 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7111 rs->stop_reply_queue.end (),
7112 [=] (const stop_reply_up &event)
7113 {
7114 return event->ptid.pid () == inf->pid;
7115 });
7116 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7117}
7118
7119/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7120
6b8edb51
PA
7121void
7122remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7123{
6b8edb51 7124 remote_state *rs = get_remote_state ();
f48ff2a7 7125
f48ff2a7
YQ
7126 /* Discard the stop replies we have already pulled with
7127 vStopped. */
953edf2b
TT
7128 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7129 rs->stop_reply_queue.end (),
7130 [=] (const stop_reply_up &event)
7131 {
7132 return event->rs == rs;
7133 });
7134 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7135}
43ff13b4 7136
722247f1
YQ
7137/* Remove the first reply in 'stop_reply_queue' which matches
7138 PTID. */
2e9f7625 7139
6b8edb51
PA
7140struct stop_reply *
7141remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7142{
953edf2b 7143 remote_state *rs = get_remote_state ();
722247f1 7144
953edf2b
TT
7145 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7146 rs->stop_reply_queue.end (),
7147 [=] (const stop_reply_up &event)
7148 {
7149 return event->ptid.matches (ptid);
7150 });
7151 struct stop_reply *result;
7152 if (iter == rs->stop_reply_queue.end ())
7153 result = nullptr;
7154 else
7155 {
7156 result = iter->release ();
7157 rs->stop_reply_queue.erase (iter);
7158 }
722247f1 7159
722247f1
YQ
7160 if (notif_debug)
7161 fprintf_unfiltered (gdb_stdlog,
7162 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7163 target_pid_to_str (ptid).c_str ());
a744cf53 7164
953edf2b 7165 return result;
74531fed 7166}
75c99385 7167
74531fed
PA
7168/* Look for a queued stop reply belonging to PTID. If one is found,
7169 remove it from the queue, and return it. Returns NULL if none is
7170 found. If there are still queued events left to process, tell the
7171 event loop to get back to target_wait soon. */
e24a49d8 7172
6b8edb51
PA
7173struct stop_reply *
7174remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7175{
953edf2b 7176 remote_state *rs = get_remote_state ();
722247f1 7177 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7178
953edf2b 7179 if (!rs->stop_reply_queue.empty ())
6b8edb51 7180 {
6b8edb51
PA
7181 /* There's still at least an event left. */
7182 mark_async_event_handler (rs->remote_async_inferior_event_token);
7183 }
74531fed 7184
722247f1 7185 return r;
74531fed
PA
7186}
7187
7188/* Push a fully parsed stop reply in the stop reply queue. Since we
7189 know that we now have at least one queued event left to pass to the
7190 core side, tell the event loop to get back to target_wait soon. */
7191
6b8edb51
PA
7192void
7193remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7194{
6b8edb51 7195 remote_state *rs = get_remote_state ();
953edf2b 7196 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7197
722247f1
YQ
7198 if (notif_debug)
7199 fprintf_unfiltered (gdb_stdlog,
7200 "notif: push 'Stop' %s to queue %d\n",
a068643d 7201 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7202 int (rs->stop_reply_queue.size ()));
74531fed 7203
6b8edb51 7204 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7205}
7206
7207/* Returns true if we have a stop reply for PTID. */
7208
6b8edb51
PA
7209int
7210remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7211{
6b8edb51 7212 remote_state *rs = get_remote_state ();
953edf2b
TT
7213 for (auto &event : rs->stop_reply_queue)
7214 if (ptid == event->ptid
7215 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7216 return 1;
7217 return 0;
74531fed
PA
7218}
7219
26d56a93
SL
7220/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7221 starting with P and ending with PEND matches PREFIX. */
7222
7223static int
7224strprefix (const char *p, const char *pend, const char *prefix)
7225{
7226 for ( ; p < pend; p++, prefix++)
7227 if (*p != *prefix)
7228 return 0;
7229 return *prefix == '\0';
7230}
7231
74531fed
PA
7232/* Parse the stop reply in BUF. Either the function succeeds, and the
7233 result is stored in EVENT, or throws an error. */
7234
6b8edb51 7235void
bb277751 7236remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7237{
5cd63fda 7238 remote_arch_state *rsa = NULL;
74531fed 7239 ULONGEST addr;
256642e8 7240 const char *p;
94585166 7241 int skipregs = 0;
74531fed
PA
7242
7243 event->ptid = null_ptid;
bcc75809 7244 event->rs = get_remote_state ();
74531fed
PA
7245 event->ws.kind = TARGET_WAITKIND_IGNORE;
7246 event->ws.value.integer = 0;
f7e6eed5 7247 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7248 event->regcache.clear ();
dc146f7c 7249 event->core = -1;
74531fed
PA
7250
7251 switch (buf[0])
7252 {
7253 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7254 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7255 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7256 ss = signal number
7257 n... = register number
7258 r... = register contents
7259 */
7260
7261 p = &buf[3]; /* after Txx */
7262 while (*p)
7263 {
256642e8 7264 const char *p1;
cea39f65 7265 int fieldsize;
43ff13b4 7266
1f10ba14
PA
7267 p1 = strchr (p, ':');
7268 if (p1 == NULL)
7269 error (_("Malformed packet(a) (missing colon): %s\n\
7270Packet: '%s'\n"),
7271 p, buf);
7272 if (p == p1)
7273 error (_("Malformed packet(a) (missing register number): %s\n\
7274Packet: '%s'\n"),
7275 p, buf);
3c3bea1c 7276
1f10ba14
PA
7277 /* Some "registers" are actually extended stop information.
7278 Note if you're adding a new entry here: GDB 7.9 and
7279 earlier assume that all register "numbers" that start
7280 with an hex digit are real register numbers. Make sure
7281 the server only sends such a packet if it knows the
7282 client understands it. */
c8e38a49 7283
26d56a93 7284 if (strprefix (p, p1, "thread"))
1f10ba14 7285 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7286 else if (strprefix (p, p1, "syscall_entry"))
7287 {
7288 ULONGEST sysno;
7289
7290 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7291 p = unpack_varlen_hex (++p1, &sysno);
7292 event->ws.value.syscall_number = (int) sysno;
7293 }
7294 else if (strprefix (p, p1, "syscall_return"))
7295 {
7296 ULONGEST sysno;
7297
7298 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7299 p = unpack_varlen_hex (++p1, &sysno);
7300 event->ws.value.syscall_number = (int) sysno;
7301 }
26d56a93
SL
7302 else if (strprefix (p, p1, "watch")
7303 || strprefix (p, p1, "rwatch")
7304 || strprefix (p, p1, "awatch"))
cea39f65 7305 {
f7e6eed5 7306 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7307 p = unpack_varlen_hex (++p1, &addr);
7308 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7309 }
26d56a93 7310 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7311 {
7312 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7313
7314 /* Make sure the stub doesn't forget to indicate support
7315 with qSupported. */
7316 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7317 error (_("Unexpected swbreak stop reason"));
7318
7319 /* The value part is documented as "must be empty",
7320 though we ignore it, in case we ever decide to make
7321 use of it in a backward compatible way. */
8424cc97 7322 p = strchrnul (p1 + 1, ';');
f7e6eed5 7323 }
26d56a93 7324 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7325 {
7326 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7327
7328 /* Make sure the stub doesn't forget to indicate support
7329 with qSupported. */
7330 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7331 error (_("Unexpected hwbreak stop reason"));
7332
7333 /* See above. */
8424cc97 7334 p = strchrnul (p1 + 1, ';');
f7e6eed5 7335 }
26d56a93 7336 else if (strprefix (p, p1, "library"))
cea39f65 7337 {
1f10ba14 7338 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7339 p = strchrnul (p1 + 1, ';');
1f10ba14 7340 }
26d56a93 7341 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7342 {
7343 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7344 /* p1 will indicate "begin" or "end", but it makes
7345 no difference for now, so ignore it. */
8424cc97 7346 p = strchrnul (p1 + 1, ';');
1f10ba14 7347 }
26d56a93 7348 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7349 {
7350 ULONGEST c;
a744cf53 7351
1f10ba14
PA
7352 p = unpack_varlen_hex (++p1, &c);
7353 event->core = c;
cea39f65 7354 }
26d56a93 7355 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7356 {
7357 event->ws.value.related_pid = read_ptid (++p1, &p);
7358 event->ws.kind = TARGET_WAITKIND_FORKED;
7359 }
26d56a93 7360 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7361 {
7362 event->ws.value.related_pid = read_ptid (++p1, &p);
7363 event->ws.kind = TARGET_WAITKIND_VFORKED;
7364 }
26d56a93 7365 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7366 {
7367 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7368 p = strchrnul (p1 + 1, ';');
c269dbdb 7369 }
6ab24463 7370 else if (strprefix (p, p1, "exec"))
94585166
DB
7371 {
7372 ULONGEST ignored;
94585166
DB
7373 int pathlen;
7374
7375 /* Determine the length of the execd pathname. */
7376 p = unpack_varlen_hex (++p1, &ignored);
7377 pathlen = (p - p1) / 2;
7378
7379 /* Save the pathname for event reporting and for
7380 the next run command. */
c6321f19
TT
7381 gdb::unique_xmalloc_ptr<char[]> pathname
7382 ((char *) xmalloc (pathlen + 1));
7383 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7384 pathname[pathlen] = '\0';
7385
7386 /* This is freed during event handling. */
c6321f19 7387 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7388 event->ws.kind = TARGET_WAITKIND_EXECD;
7389
7390 /* Skip the registers included in this packet, since
7391 they may be for an architecture different from the
7392 one used by the original program. */
7393 skipregs = 1;
7394 }
65706a29
PA
7395 else if (strprefix (p, p1, "create"))
7396 {
7397 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7398 p = strchrnul (p1 + 1, ';');
65706a29 7399 }
cea39f65
MS
7400 else
7401 {
1f10ba14 7402 ULONGEST pnum;
256642e8 7403 const char *p_temp;
1f10ba14 7404
94585166
DB
7405 if (skipregs)
7406 {
8424cc97 7407 p = strchrnul (p1 + 1, ';');
94585166
DB
7408 p++;
7409 continue;
7410 }
7411
1f10ba14
PA
7412 /* Maybe a real ``P'' register number. */
7413 p_temp = unpack_varlen_hex (p, &pnum);
7414 /* If the first invalid character is the colon, we got a
7415 register number. Otherwise, it's an unknown stop
7416 reason. */
7417 if (p_temp == p1)
7418 {
5cd63fda
PA
7419 /* If we haven't parsed the event's thread yet, find
7420 it now, in order to find the architecture of the
7421 reported expedited registers. */
7422 if (event->ptid == null_ptid)
7423 {
24ed6739
AB
7424 /* If there is no thread-id information then leave
7425 the event->ptid as null_ptid. Later in
7426 process_stop_reply we will pick a suitable
7427 thread. */
5cd63fda
PA
7428 const char *thr = strstr (p1 + 1, ";thread:");
7429 if (thr != NULL)
7430 event->ptid = read_ptid (thr + strlen (";thread:"),
7431 NULL);
5cd63fda
PA
7432 }
7433
7434 if (rsa == NULL)
7435 {
5b6d1e4f
PA
7436 inferior *inf
7437 = (event->ptid == null_ptid
7438 ? NULL
7439 : find_inferior_ptid (this, event->ptid));
5cd63fda
PA
7440 /* If this is the first time we learn anything
7441 about this process, skip the registers
7442 included in this packet, since we don't yet
7443 know which architecture to use to parse them.
7444 We'll determine the architecture later when
7445 we process the stop reply and retrieve the
7446 target description, via
7447 remote_notice_new_inferior ->
7448 post_create_inferior. */
7449 if (inf == NULL)
7450 {
7451 p = strchrnul (p1 + 1, ';');
7452 p++;
7453 continue;
7454 }
7455
7456 event->arch = inf->gdbarch;
9d6eea31 7457 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7458 }
7459
7460 packet_reg *reg
7461 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7462 cached_reg_t cached_reg;
43ff13b4 7463
1f10ba14
PA
7464 if (reg == NULL)
7465 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7466Packet: '%s'\n"),
1f10ba14 7467 hex_string (pnum), p, buf);
c8e38a49 7468
1f10ba14 7469 cached_reg.num = reg->regnum;
d1dff226 7470 cached_reg.data = (gdb_byte *)
5cd63fda 7471 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7472
1f10ba14
PA
7473 p = p1 + 1;
7474 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7475 register_size (event->arch, reg->regnum));
1f10ba14 7476 p += 2 * fieldsize;
5cd63fda 7477 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7478 warning (_("Remote reply is too short: %s"), buf);
74531fed 7479
32603266 7480 event->regcache.push_back (cached_reg);
1f10ba14
PA
7481 }
7482 else
7483 {
7484 /* Not a number. Silently skip unknown optional
7485 info. */
8424cc97 7486 p = strchrnul (p1 + 1, ';');
1f10ba14 7487 }
cea39f65 7488 }
c8e38a49 7489
cea39f65
MS
7490 if (*p != ';')
7491 error (_("Remote register badly formatted: %s\nhere: %s"),
7492 buf, p);
7493 ++p;
7494 }
5b5596ff
PA
7495
7496 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7497 break;
7498
c8e38a49
PA
7499 /* fall through */
7500 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7501 {
7502 int sig;
7503
7504 event->ws.kind = TARGET_WAITKIND_STOPPED;
7505 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7506 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7507 event->ws.value.sig = (enum gdb_signal) sig;
7508 else
7509 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7510 }
c8e38a49 7511 break;
65706a29
PA
7512 case 'w': /* Thread exited. */
7513 {
65706a29
PA
7514 ULONGEST value;
7515
7516 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7517 p = unpack_varlen_hex (&buf[1], &value);
7518 event->ws.value.integer = value;
7519 if (*p != ';')
7520 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7521 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7522 break;
7523 }
c8e38a49
PA
7524 case 'W': /* Target exited. */
7525 case 'X':
7526 {
c8e38a49 7527 ULONGEST value;
82f73884 7528
c8e38a49
PA
7529 /* GDB used to accept only 2 hex chars here. Stubs should
7530 only send more if they detect GDB supports multi-process
7531 support. */
7532 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7533
c8e38a49
PA
7534 if (buf[0] == 'W')
7535 {
7536 /* The remote process exited. */
74531fed
PA
7537 event->ws.kind = TARGET_WAITKIND_EXITED;
7538 event->ws.value.integer = value;
c8e38a49
PA
7539 }
7540 else
7541 {
7542 /* The remote process exited with a signal. */
74531fed 7543 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7544 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7545 event->ws.value.sig = (enum gdb_signal) value;
7546 else
7547 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7548 }
82f73884 7549
e7af6c70
TBA
7550 /* If no process is specified, return null_ptid, and let the
7551 caller figure out the right process to use. */
7552 int pid = 0;
c8e38a49
PA
7553 if (*p == '\0')
7554 ;
7555 else if (*p == ';')
7556 {
7557 p++;
7558
0b24eb2d 7559 if (*p == '\0')
82f73884 7560 ;
61012eef 7561 else if (startswith (p, "process:"))
82f73884 7562 {
c8e38a49 7563 ULONGEST upid;
a744cf53 7564
c8e38a49
PA
7565 p += sizeof ("process:") - 1;
7566 unpack_varlen_hex (p, &upid);
7567 pid = upid;
82f73884
PA
7568 }
7569 else
7570 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7571 }
c8e38a49
PA
7572 else
7573 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7574 event->ptid = ptid_t (pid);
74531fed
PA
7575 }
7576 break;
f2faf941
PA
7577 case 'N':
7578 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7579 event->ptid = minus_one_ptid;
7580 break;
74531fed 7581 }
74531fed
PA
7582}
7583
722247f1
YQ
7584/* When the stub wants to tell GDB about a new notification reply, it
7585 sends a notification (%Stop, for example). Those can come it at
7586 any time, hence, we have to make sure that any pending
7587 putpkt/getpkt sequence we're making is finished, before querying
7588 the stub for more events with the corresponding ack command
7589 (vStopped, for example). E.g., if we started a vStopped sequence
7590 immediately upon receiving the notification, something like this
7591 could happen:
74531fed
PA
7592
7593 1.1) --> Hg 1
7594 1.2) <-- OK
7595 1.3) --> g
7596 1.4) <-- %Stop
7597 1.5) --> vStopped
7598 1.6) <-- (registers reply to step #1.3)
7599
7600 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7601 query.
7602
796cb314 7603 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7604 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7605 doing whatever we were doing:
7606
7607 2.1) --> Hg 1
7608 2.2) <-- OK
7609 2.3) --> g
7610 2.4) <-- %Stop
7611 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7612 2.5) <-- (registers reply to step #2.3)
7613
85102364 7614 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7615 notices there's an event on the
7616 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7617 associated callback --- the function below. At this point, we're
7618 always safe to start a vStopped sequence. :
7619
7620 2.6) --> vStopped
7621 2.7) <-- T05 thread:2
7622 2.8) --> vStopped
7623 2.9) --> OK
7624*/
7625
722247f1 7626void
6b8edb51 7627remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7628{
7629 struct remote_state *rs = get_remote_state ();
74531fed 7630
f48ff2a7 7631 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7632 {
722247f1
YQ
7633 if (notif_debug)
7634 fprintf_unfiltered (gdb_stdlog,
7635 "notif: process: '%s' ack pending event\n",
7636 nc->name);
74531fed 7637
722247f1 7638 /* acknowledge */
8d64371b
TT
7639 nc->ack (this, nc, rs->buf.data (),
7640 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7641 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7642
7643 while (1)
7644 {
8d64371b
TT
7645 getpkt (&rs->buf, 0);
7646 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7647 break;
7648 else
8d64371b 7649 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7650 }
7651 }
722247f1
YQ
7652 else
7653 {
7654 if (notif_debug)
7655 fprintf_unfiltered (gdb_stdlog,
7656 "notif: process: '%s' no pending reply\n",
7657 nc->name);
7658 }
74531fed
PA
7659}
7660
6b8edb51
PA
7661/* Wrapper around remote_target::remote_notif_get_pending_events to
7662 avoid having to export the whole remote_target class. */
7663
7664void
7665remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7666{
7667 remote->remote_notif_get_pending_events (nc);
7668}
7669
74531fed
PA
7670/* Called when it is decided that STOP_REPLY holds the info of the
7671 event that is to be returned to the core. This function always
7672 destroys STOP_REPLY. */
7673
6b8edb51
PA
7674ptid_t
7675remote_target::process_stop_reply (struct stop_reply *stop_reply,
7676 struct target_waitstatus *status)
74531fed
PA
7677{
7678 ptid_t ptid;
7679
7680 *status = stop_reply->ws;
7681 ptid = stop_reply->ptid;
7682
24ed6739
AB
7683 /* If no thread/process was reported by the stub then use the first
7684 non-exited thread in the current target. */
d7e15655 7685 if (ptid == null_ptid)
24ed6739 7686 {
cada5fc9
AB
7687 /* Some stop events apply to all threads in an inferior, while others
7688 only apply to a single thread. */
7689 bool is_stop_for_all_threads
7690 = (status->kind == TARGET_WAITKIND_EXITED
7691 || status->kind == TARGET_WAITKIND_SIGNALLED);
7692
24ed6739
AB
7693 for (thread_info *thr : all_non_exited_threads (this))
7694 {
cada5fc9
AB
7695 if (ptid != null_ptid
7696 && (!is_stop_for_all_threads
7697 || ptid.pid () != thr->ptid.pid ()))
24ed6739
AB
7698 {
7699 static bool warned = false;
7700
7701 if (!warned)
7702 {
7703 /* If you are seeing this warning then the remote target
cada5fc9
AB
7704 has stopped without specifying a thread-id, but the
7705 target does have multiple threads (or inferiors), and
7706 so GDB is having to guess which thread stopped.
7707
7708 Examples of what might cause this are the target
7709 sending and 'S' stop packet, or a 'T' stop packet and
7710 not including a thread-id.
7711
7712 Additionally, the target might send a 'W' or 'X
7713 packet without including a process-id, when the target
7714 has multiple running inferiors. */
7715 if (is_stop_for_all_threads)
7716 warning (_("multi-inferior target stopped without "
7717 "sending a process-id, using first "
7718 "non-exited inferior"));
7719 else
7720 warning (_("multi-threaded target stopped without "
7721 "sending a thread-id, using first "
7722 "non-exited thread"));
24ed6739
AB
7723 warned = true;
7724 }
7725 break;
7726 }
cada5fc9
AB
7727
7728 /* If this is a stop for all threads then don't use a particular
7729 threads ptid, instead create a new ptid where only the pid
7730 field is set. */
7731 if (is_stop_for_all_threads)
7732 ptid = ptid_t (thr->ptid.pid ());
7733 else
7734 ptid = thr->ptid;
24ed6739
AB
7735 }
7736 gdb_assert (ptid != null_ptid);
7737 }
74531fed 7738
5f3563ea 7739 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7740 && status->kind != TARGET_WAITKIND_SIGNALLED
7741 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7742 {
5f3563ea 7743 /* Expedited registers. */
32603266 7744 if (!stop_reply->regcache.empty ())
5f3563ea 7745 {
217f1f79 7746 struct regcache *regcache
5b6d1e4f 7747 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
5f3563ea 7748
32603266
TT
7749 for (cached_reg_t &reg : stop_reply->regcache)
7750 {
7751 regcache->raw_supply (reg.num, reg.data);
7752 xfree (reg.data);
7753 }
d1dff226 7754
32603266 7755 stop_reply->regcache.clear ();
5f3563ea 7756 }
74531fed 7757
1941c569 7758 remote_notice_new_inferior (ptid, 0);
5b6d1e4f 7759 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
799a2abe
PA
7760 remote_thr->core = stop_reply->core;
7761 remote_thr->stop_reason = stop_reply->stop_reason;
7762 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7763 remote_thr->vcont_resumed = 0;
74531fed
PA
7764 }
7765
32603266 7766 delete stop_reply;
74531fed
PA
7767 return ptid;
7768}
7769
7770/* The non-stop mode version of target_wait. */
7771
6b8edb51
PA
7772ptid_t
7773remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7774{
7775 struct remote_state *rs = get_remote_state ();
74531fed
PA
7776 struct stop_reply *stop_reply;
7777 int ret;
fee9eda9 7778 int is_notif = 0;
74531fed
PA
7779
7780 /* If in non-stop mode, get out of getpkt even if a
7781 notification is received. */
7782
8d64371b 7783 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7784 while (1)
7785 {
fee9eda9 7786 if (ret != -1 && !is_notif)
74531fed
PA
7787 switch (rs->buf[0])
7788 {
7789 case 'E': /* Error of some sort. */
7790 /* We're out of sync with the target now. Did it continue
7791 or not? We can't tell which thread it was in non-stop,
7792 so just ignore this. */
8d64371b 7793 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7794 break;
7795 case 'O': /* Console output. */
8d64371b 7796 remote_console_output (&rs->buf[1]);
74531fed
PA
7797 break;
7798 default:
8d64371b 7799 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7800 break;
7801 }
7802
7803 /* Acknowledge a pending stop reply that may have arrived in the
7804 mean time. */
f48ff2a7 7805 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7806 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7807
7808 /* If indeed we noticed a stop reply, we're done. */
7809 stop_reply = queued_stop_reply (ptid);
7810 if (stop_reply != NULL)
7811 return process_stop_reply (stop_reply, status);
7812
47608cb1 7813 /* Still no event. If we're just polling for an event, then
74531fed 7814 return to the event loop. */
47608cb1 7815 if (options & TARGET_WNOHANG)
74531fed
PA
7816 {
7817 status->kind = TARGET_WAITKIND_IGNORE;
7818 return minus_one_ptid;
7819 }
7820
47608cb1 7821 /* Otherwise do a blocking wait. */
8d64371b 7822 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7823 }
7824}
7825
31ba933e
PA
7826/* Return the first resumed thread. */
7827
7828static ptid_t
5b6d1e4f 7829first_remote_resumed_thread (remote_target *target)
31ba933e 7830{
5b6d1e4f 7831 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
31ba933e
PA
7832 if (tp->resumed)
7833 return tp->ptid;
7834 return null_ptid;
7835}
7836
74531fed
PA
7837/* Wait until the remote machine stops, then return, storing status in
7838 STATUS just as `wait' would. */
7839
6b8edb51
PA
7840ptid_t
7841remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7842{
7843 struct remote_state *rs = get_remote_state ();
74531fed 7844 ptid_t event_ptid = null_ptid;
cea39f65 7845 char *buf;
74531fed
PA
7846 struct stop_reply *stop_reply;
7847
47608cb1
PA
7848 again:
7849
74531fed
PA
7850 status->kind = TARGET_WAITKIND_IGNORE;
7851 status->value.integer = 0;
7852
7853 stop_reply = queued_stop_reply (ptid);
7854 if (stop_reply != NULL)
7855 return process_stop_reply (stop_reply, status);
7856
7857 if (rs->cached_wait_status)
7858 /* Use the cached wait status, but only once. */
7859 rs->cached_wait_status = 0;
7860 else
7861 {
7862 int ret;
722247f1 7863 int is_notif;
567420d1 7864 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7865 && rs->wait_forever_enabled_p);
567420d1
PA
7866
7867 if (!rs->waiting_for_stop_reply)
7868 {
7869 status->kind = TARGET_WAITKIND_NO_RESUMED;
7870 return minus_one_ptid;
7871 }
74531fed 7872
74531fed
PA
7873 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7874 _never_ wait for ever -> test on target_is_async_p().
7875 However, before we do that we need to ensure that the caller
7876 knows how to take the target into/out of async mode. */
8d64371b 7877 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7878
7879 /* GDB gets a notification. Return to core as this event is
7880 not interesting. */
7881 if (ret != -1 && is_notif)
7882 return minus_one_ptid;
567420d1
PA
7883
7884 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7885 return minus_one_ptid;
74531fed
PA
7886 }
7887
8d64371b 7888 buf = rs->buf.data ();
74531fed 7889
3a29589a
DJ
7890 /* Assume that the target has acknowledged Ctrl-C unless we receive
7891 an 'F' or 'O' packet. */
7892 if (buf[0] != 'F' && buf[0] != 'O')
7893 rs->ctrlc_pending_p = 0;
7894
74531fed
PA
7895 switch (buf[0])
7896 {
7897 case 'E': /* Error of some sort. */
7898 /* We're out of sync with the target now. Did it continue or
7899 not? Not is more likely, so report a stop. */
29090fb6
LM
7900 rs->waiting_for_stop_reply = 0;
7901
74531fed
PA
7902 warning (_("Remote failure reply: %s"), buf);
7903 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7904 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7905 break;
7906 case 'F': /* File-I/O request. */
e42e5352
YQ
7907 /* GDB may access the inferior memory while handling the File-I/O
7908 request, but we don't want GDB accessing memory while waiting
7909 for a stop reply. See the comments in putpkt_binary. Set
7910 waiting_for_stop_reply to 0 temporarily. */
7911 rs->waiting_for_stop_reply = 0;
6b8edb51 7912 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7913 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7914 /* GDB handled the File-I/O request, and the target is running
7915 again. Keep waiting for events. */
7916 rs->waiting_for_stop_reply = 1;
74531fed 7917 break;
f2faf941 7918 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7919 {
29090fb6
LM
7920 /* There is a stop reply to handle. */
7921 rs->waiting_for_stop_reply = 0;
7922
7923 stop_reply
6b8edb51
PA
7924 = (struct stop_reply *) remote_notif_parse (this,
7925 &notif_client_stop,
8d64371b 7926 rs->buf.data ());
74531fed 7927
74531fed 7928 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7929 break;
7930 }
7931 case 'O': /* Console output. */
7932 remote_console_output (buf + 1);
c8e38a49
PA
7933 break;
7934 case '\0':
b73be471 7935 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7936 {
7937 /* Zero length reply means that we tried 'S' or 'C' and the
7938 remote system doesn't support it. */
223ffa71 7939 target_terminal::ours_for_output ();
c8e38a49
PA
7940 printf_filtered
7941 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7942 gdb_signal_to_name (rs->last_sent_signal));
7943 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7944 target_terminal::inferior ();
c8e38a49 7945
f5c4fcd9
TT
7946 strcpy (buf, rs->last_sent_step ? "s" : "c");
7947 putpkt (buf);
c8e38a49 7948 break;
43ff13b4 7949 }
86a73007 7950 /* fallthrough */
c8e38a49
PA
7951 default:
7952 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7953 break;
43ff13b4 7954 }
c8e38a49 7955
f2faf941
PA
7956 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7957 return minus_one_ptid;
7958 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7959 {
7960 /* Nothing interesting happened. If we're doing a non-blocking
7961 poll, we're done. Otherwise, go back to waiting. */
7962 if (options & TARGET_WNOHANG)
7963 return minus_one_ptid;
7964 else
7965 goto again;
7966 }
74531fed
PA
7967 else if (status->kind != TARGET_WAITKIND_EXITED
7968 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7969 {
d7e15655 7970 if (event_ptid != null_ptid)
47f8a51d 7971 record_currthread (rs, event_ptid);
82f73884 7972 else
5b6d1e4f 7973 event_ptid = first_remote_resumed_thread (this);
43ff13b4 7974 }
74531fed 7975 else
e7af6c70
TBA
7976 {
7977 /* A process exit. Invalidate our notion of current thread. */
7978 record_currthread (rs, minus_one_ptid);
7979 /* It's possible that the packet did not include a pid. */
7980 if (event_ptid == null_ptid)
5b6d1e4f 7981 event_ptid = first_remote_resumed_thread (this);
e7af6c70
TBA
7982 /* EVENT_PTID could still be NULL_PTID. Double-check. */
7983 if (event_ptid == null_ptid)
7984 event_ptid = magic_null_ptid;
7985 }
79d7f229 7986
82f73884 7987 return event_ptid;
43ff13b4
JM
7988}
7989
74531fed
PA
7990/* Wait until the remote machine stops, then return, storing status in
7991 STATUS just as `wait' would. */
7992
f6ac5f3d
PA
7993ptid_t
7994remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7995{
7996 ptid_t event_ptid;
7997
6efcd9a8 7998 if (target_is_non_stop_p ())
6b8edb51 7999 event_ptid = wait_ns (ptid, status, options);
74531fed 8000 else
6b8edb51 8001 event_ptid = wait_as (ptid, status, options);
c8e38a49 8002
d9d41e78 8003 if (target_is_async_p ())
c8e38a49 8004 {
6b8edb51
PA
8005 remote_state *rs = get_remote_state ();
8006
74531fed
PA
8007 /* If there are are events left in the queue tell the event loop
8008 to return here. */
953edf2b 8009 if (!rs->stop_reply_queue.empty ())
6b8edb51 8010 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 8011 }
c8e38a49
PA
8012
8013 return event_ptid;
8014}
8015
74ca34ce 8016/* Fetch a single register using a 'p' packet. */
c906108c 8017
6b8edb51
PA
8018int
8019remote_target::fetch_register_using_p (struct regcache *regcache,
8020 packet_reg *reg)
b96ec7ac 8021{
ac7936df 8022 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 8023 struct remote_state *rs = get_remote_state ();
2e9f7625 8024 char *buf, *p;
9890e433 8025 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
8026 int i;
8027
4082afcc 8028 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
8029 return 0;
8030
8031 if (reg->pnum == -1)
8032 return 0;
8033
8d64371b 8034 p = rs->buf.data ();
fcad0fa4 8035 *p++ = 'p';
74ca34ce 8036 p += hexnumstr (p, reg->pnum);
fcad0fa4 8037 *p++ = '\0';
1f4437a4 8038 putpkt (rs->buf);
8d64371b 8039 getpkt (&rs->buf, 0);
3f9a994c 8040
8d64371b 8041 buf = rs->buf.data ();
2e9f7625 8042
8d64371b 8043 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
8044 {
8045 case PACKET_OK:
8046 break;
8047 case PACKET_UNKNOWN:
8048 return 0;
8049 case PACKET_ERROR:
27a9c0bf 8050 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 8051 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
8052 reg->regnum),
8053 buf);
74ca34ce 8054 }
3f9a994c
JB
8055
8056 /* If this register is unfetchable, tell the regcache. */
8057 if (buf[0] == 'x')
8480adf2 8058 {
73e1c03f 8059 regcache->raw_supply (reg->regnum, NULL);
8480adf2 8060 return 1;
b96ec7ac 8061 }
b96ec7ac 8062
3f9a994c
JB
8063 /* Otherwise, parse and supply the value. */
8064 p = buf;
8065 i = 0;
8066 while (p[0] != 0)
8067 {
8068 if (p[1] == 0)
74ca34ce 8069 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
8070
8071 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8072 p += 2;
8073 }
73e1c03f 8074 regcache->raw_supply (reg->regnum, regp);
3f9a994c 8075 return 1;
b96ec7ac
AC
8076}
8077
74ca34ce
DJ
8078/* Fetch the registers included in the target's 'g' packet. */
8079
6b8edb51
PA
8080int
8081remote_target::send_g_packet ()
c906108c 8082{
d01949b6 8083 struct remote_state *rs = get_remote_state ();
cea39f65 8084 int buf_len;
c906108c 8085
8d64371b 8086 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 8087 putpkt (rs->buf);
8d64371b 8088 getpkt (&rs->buf, 0);
b75abf5b
AK
8089 if (packet_check_result (rs->buf) == PACKET_ERROR)
8090 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 8091 rs->buf.data ());
c906108c 8092
29709017
DJ
8093 /* We can get out of synch in various cases. If the first character
8094 in the buffer is not a hex character, assume that has happened
8095 and try to fetch another packet to read. */
8096 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8097 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8098 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8099 && rs->buf[0] != 'x') /* New: unavailable register value. */
8100 {
8101 if (remote_debug)
8102 fprintf_unfiltered (gdb_stdlog,
8103 "Bad register packet; fetching a new packet\n");
8d64371b 8104 getpkt (&rs->buf, 0);
29709017
DJ
8105 }
8106
8d64371b 8107 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8108
8109 /* Sanity check the received packet. */
8110 if (buf_len % 2 != 0)
8d64371b 8111 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8112
8113 return buf_len / 2;
8114}
8115
6b8edb51
PA
8116void
8117remote_target::process_g_packet (struct regcache *regcache)
29709017 8118{
ac7936df 8119 struct gdbarch *gdbarch = regcache->arch ();
29709017 8120 struct remote_state *rs = get_remote_state ();
9d6eea31 8121 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8122 int i, buf_len;
8123 char *p;
8124 char *regs;
8125
8d64371b 8126 buf_len = strlen (rs->buf.data ());
29709017
DJ
8127
8128 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8129 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8130 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8131 "bytes): %s"),
8132 rsa->sizeof_g_packet, buf_len / 2,
8133 rs->buf.data ());
74ca34ce
DJ
8134
8135 /* Save the size of the packet sent to us by the target. It is used
8136 as a heuristic when determining the max size of packets that the
8137 target can safely receive. */
8138 if (rsa->actual_register_packet_size == 0)
8139 rsa->actual_register_packet_size = buf_len;
8140
8141 /* If this is smaller than we guessed the 'g' packet would be,
8142 update our records. A 'g' reply that doesn't include a register's
8143 value implies either that the register is not available, or that
8144 the 'p' packet must be used. */
8145 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8146 {
9dc193c3 8147 long sizeof_g_packet = buf_len / 2;
74ca34ce 8148
4a22f64d 8149 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8150 {
9dc193c3
LF
8151 long offset = rsa->regs[i].offset;
8152 long reg_size = register_size (gdbarch, i);
8153
74ca34ce
DJ
8154 if (rsa->regs[i].pnum == -1)
8155 continue;
8156
9dc193c3 8157 if (offset >= sizeof_g_packet)
74ca34ce 8158 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8159 else if (offset + reg_size > sizeof_g_packet)
8160 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8161 else
74ca34ce 8162 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8163 }
9dc193c3
LF
8164
8165 /* Looks valid enough, we can assume this is the correct length
8166 for a 'g' packet. It's important not to adjust
8167 rsa->sizeof_g_packet if we have truncated registers otherwise
8168 this "if" won't be run the next time the method is called
8169 with a packet of the same size and one of the internal errors
8170 below will trigger instead. */
8171 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8172 }
b323314b 8173
224c3ddb 8174 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8175
8176 /* Unimplemented registers read as all bits zero. */
ea9c271d 8177 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8178
c906108c
SS
8179 /* Reply describes registers byte by byte, each byte encoded as two
8180 hex characters. Suck them all up, then supply them to the
8181 register cacheing/storage mechanism. */
8182
8d64371b 8183 p = rs->buf.data ();
ea9c271d 8184 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8185 {
74ca34ce
DJ
8186 if (p[0] == 0 || p[1] == 0)
8187 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8188 internal_error (__FILE__, __LINE__,
9b20d036 8189 _("unexpected end of 'g' packet reply"));
74ca34ce 8190
c906108c 8191 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8192 regs[i] = 0; /* 'x' */
c906108c
SS
8193 else
8194 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8195 p += 2;
8196 }
8197
a744cf53
MS
8198 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8199 {
8200 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8201 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8202
8203 if (r->in_g_packet)
8204 {
8d64371b 8205 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8206 /* This shouldn't happen - we adjusted in_g_packet above. */
8207 internal_error (__FILE__, __LINE__,
9b20d036 8208 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8209 else if (rs->buf[r->offset * 2] == 'x')
8210 {
8d64371b 8211 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8212 /* The register isn't available, mark it as such (at
8213 the same time setting the value to zero). */
73e1c03f 8214 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8215 }
8216 else
73e1c03f 8217 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8218 }
8219 }
c906108c
SS
8220}
8221
6b8edb51
PA
8222void
8223remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8224{
8225 send_g_packet ();
56be3814 8226 process_g_packet (regcache);
29709017
DJ
8227}
8228
e6e4e701
PA
8229/* Make the remote selected traceframe match GDB's selected
8230 traceframe. */
8231
6b8edb51
PA
8232void
8233remote_target::set_remote_traceframe ()
e6e4e701
PA
8234{
8235 int newnum;
262e1174 8236 struct remote_state *rs = get_remote_state ();
e6e4e701 8237
262e1174 8238 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8239 return;
8240
8241 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8242 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8243
8244 newnum = target_trace_find (tfind_number,
8245 get_traceframe_number (), 0, 0, NULL);
8246
8247 /* Should not happen. If it does, all bets are off. */
8248 if (newnum != get_traceframe_number ())
8249 warning (_("could not set remote traceframe"));
8250}
8251
f6ac5f3d
PA
8252void
8253remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8254{
ac7936df 8255 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8256 struct remote_state *rs = get_remote_state ();
8257 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8258 int i;
8259
e6e4e701 8260 set_remote_traceframe ();
222312d3 8261 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8262
8263 if (regnum >= 0)
8264 {
5cd63fda 8265 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8266
74ca34ce
DJ
8267 gdb_assert (reg != NULL);
8268
8269 /* If this register might be in the 'g' packet, try that first -
8270 we are likely to read more than one register. If this is the
8271 first 'g' packet, we might be overly optimistic about its
8272 contents, so fall back to 'p'. */
8273 if (reg->in_g_packet)
8274 {
56be3814 8275 fetch_registers_using_g (regcache);
74ca34ce
DJ
8276 if (reg->in_g_packet)
8277 return;
8278 }
8279
56be3814 8280 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8281 return;
8282
8283 /* This register is not available. */
73e1c03f 8284 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8285
8286 return;
8287 }
8288
56be3814 8289 fetch_registers_using_g (regcache);
74ca34ce 8290
5cd63fda 8291 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8292 if (!rsa->regs[i].in_g_packet)
56be3814 8293 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8294 {
8295 /* This register is not available. */
73e1c03f 8296 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8297 }
8298}
8299
c906108c
SS
8300/* Prepare to store registers. Since we may send them all (using a
8301 'G' request), we have to read out the ones we don't want to change
8302 first. */
8303
f6ac5f3d
PA
8304void
8305remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8306{
9d6eea31
PA
8307 struct remote_state *rs = get_remote_state ();
8308 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8309 int i;
cf0e1e0d 8310
c906108c 8311 /* Make sure the entire registers array is valid. */
4082afcc 8312 switch (packet_support (PACKET_P))
5a2468f5
JM
8313 {
8314 case PACKET_DISABLE:
8315 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8316 /* Make sure all the necessary registers are cached. */
ac7936df 8317 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8318 if (rsa->regs[i].in_g_packet)
0b47d985 8319 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8320 break;
8321 case PACKET_ENABLE:
8322 break;
8323 }
8324}
8325
ad10f812 8326/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8327 packet was not recognized. */
5a2468f5 8328
6b8edb51
PA
8329int
8330remote_target::store_register_using_P (const struct regcache *regcache,
8331 packet_reg *reg)
5a2468f5 8332{
ac7936df 8333 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8334 struct remote_state *rs = get_remote_state ();
5a2468f5 8335 /* Try storing a single register. */
8d64371b 8336 char *buf = rs->buf.data ();
9890e433 8337 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8338 char *p;
5a2468f5 8339
4082afcc 8340 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8341 return 0;
8342
8343 if (reg->pnum == -1)
8344 return 0;
8345
ea9c271d 8346 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8347 p = buf + strlen (buf);
34a79281 8348 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8349 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8350 putpkt (rs->buf);
8d64371b 8351 getpkt (&rs->buf, 0);
5a2468f5 8352
74ca34ce
DJ
8353 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8354 {
8355 case PACKET_OK:
8356 return 1;
8357 case PACKET_ERROR:
27a9c0bf 8358 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8359 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8360 case PACKET_UNKNOWN:
8361 return 0;
8362 default:
8363 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8364 }
c906108c
SS
8365}
8366
23860348
MS
8367/* Store register REGNUM, or all registers if REGNUM == -1, from the
8368 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8369
6b8edb51
PA
8370void
8371remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8372{
d01949b6 8373 struct remote_state *rs = get_remote_state ();
9d6eea31 8374 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8375 gdb_byte *regs;
c906108c
SS
8376 char *p;
8377
193cb69f
AC
8378 /* Extract all the registers in the regcache copying them into a
8379 local buffer. */
8380 {
b323314b 8381 int i;
a744cf53 8382
224c3ddb 8383 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8384 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8385 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8386 {
ea9c271d 8387 struct packet_reg *r = &rsa->regs[i];
a744cf53 8388
b323314b 8389 if (r->in_g_packet)
34a79281 8390 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8391 }
8392 }
c906108c
SS
8393
8394 /* Command describes registers byte by byte,
8395 each byte encoded as two hex characters. */
8d64371b 8396 p = rs->buf.data ();
193cb69f 8397 *p++ = 'G';
74ca34ce 8398 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8399 putpkt (rs->buf);
8d64371b 8400 getpkt (&rs->buf, 0);
1f4437a4 8401 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8402 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8403 rs->buf.data ());
c906108c 8404}
74ca34ce
DJ
8405
8406/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8407 of the register cache buffer. FIXME: ignores errors. */
8408
f6ac5f3d
PA
8409void
8410remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8411{
5cd63fda 8412 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8413 struct remote_state *rs = get_remote_state ();
8414 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8415 int i;
8416
e6e4e701 8417 set_remote_traceframe ();
222312d3 8418 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8419
8420 if (regnum >= 0)
8421 {
5cd63fda 8422 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8423
74ca34ce
DJ
8424 gdb_assert (reg != NULL);
8425
8426 /* Always prefer to store registers using the 'P' packet if
8427 possible; we often change only a small number of registers.
8428 Sometimes we change a larger number; we'd need help from a
8429 higher layer to know to use 'G'. */
56be3814 8430 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8431 return;
8432
8433 /* For now, don't complain if we have no way to write the
8434 register. GDB loses track of unavailable registers too
8435 easily. Some day, this may be an error. We don't have
0df8b418 8436 any way to read the register, either... */
74ca34ce
DJ
8437 if (!reg->in_g_packet)
8438 return;
8439
56be3814 8440 store_registers_using_G (regcache);
74ca34ce
DJ
8441 return;
8442 }
8443
56be3814 8444 store_registers_using_G (regcache);
74ca34ce 8445
5cd63fda 8446 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8447 if (!rsa->regs[i].in_g_packet)
56be3814 8448 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8449 /* See above for why we do not issue an error here. */
8450 continue;
8451}
c906108c
SS
8452\f
8453
8454/* Return the number of hex digits in num. */
8455
8456static int
fba45db2 8457hexnumlen (ULONGEST num)
c906108c
SS
8458{
8459 int i;
8460
8461 for (i = 0; num != 0; i++)
8462 num >>= 4;
8463
325fac50 8464 return std::max (i, 1);
c906108c
SS
8465}
8466
2df3850c 8467/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8468
8469static int
fba45db2 8470hexnumstr (char *buf, ULONGEST num)
c906108c 8471{
c906108c 8472 int len = hexnumlen (num);
a744cf53 8473
2df3850c
JM
8474 return hexnumnstr (buf, num, len);
8475}
8476
c906108c 8477
2df3850c 8478/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8479
2df3850c 8480static int
fba45db2 8481hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8482{
8483 int i;
8484
8485 buf[width] = '\0';
8486
8487 for (i = width - 1; i >= 0; i--)
c906108c 8488 {
c5aa993b 8489 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8490 num >>= 4;
8491 }
8492
2df3850c 8493 return width;
c906108c
SS
8494}
8495
23860348 8496/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8497
8498static CORE_ADDR
fba45db2 8499remote_address_masked (CORE_ADDR addr)
c906108c 8500{
883b9c6c 8501 unsigned int address_size = remote_address_size;
a744cf53 8502
911c95a5
UW
8503 /* If "remoteaddresssize" was not set, default to target address size. */
8504 if (!address_size)
f5656ead 8505 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8506
8507 if (address_size > 0
8508 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8509 {
8510 /* Only create a mask when that mask can safely be constructed
23860348 8511 in a ULONGEST variable. */
c906108c 8512 ULONGEST mask = 1;
a744cf53 8513
911c95a5 8514 mask = (mask << address_size) - 1;
c906108c
SS
8515 addr &= mask;
8516 }
8517 return addr;
8518}
8519
8520/* Determine whether the remote target supports binary downloading.
8521 This is accomplished by sending a no-op memory write of zero length
8522 to the target at the specified address. It does not suffice to send
23860348
MS
8523 the whole packet, since many stubs strip the eighth bit and
8524 subsequently compute a wrong checksum, which causes real havoc with
8525 remote_write_bytes.
7a292a7a 8526
96baa820 8527 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8528 clean. In cases like this, the user should clear "remote
23860348 8529 X-packet". */
96baa820 8530
6b8edb51
PA
8531void
8532remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8533{
d01949b6 8534 struct remote_state *rs = get_remote_state ();
24b06219 8535
4082afcc 8536 switch (packet_support (PACKET_X))
c906108c 8537 {
96baa820
JM
8538 case PACKET_DISABLE:
8539 break;
8540 case PACKET_ENABLE:
8541 break;
8542 case PACKET_SUPPORT_UNKNOWN:
8543 {
96baa820 8544 char *p;
802188a7 8545
8d64371b 8546 p = rs->buf.data ();
96baa820
JM
8547 *p++ = 'X';
8548 p += hexnumstr (p, (ULONGEST) addr);
8549 *p++ = ',';
8550 p += hexnumstr (p, (ULONGEST) 0);
8551 *p++ = ':';
8552 *p = '\0';
802188a7 8553
8d64371b
TT
8554 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8555 getpkt (&rs->buf, 0);
c906108c 8556
2e9f7625 8557 if (rs->buf[0] == '\0')
96baa820
JM
8558 {
8559 if (remote_debug)
8560 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8561 "binary downloading NOT "
8562 "supported by target\n");
444abaca 8563 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8564 }
8565 else
8566 {
8567 if (remote_debug)
8568 fprintf_unfiltered (gdb_stdlog,
64b9b334 8569 "binary downloading supported by target\n");
444abaca 8570 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8571 }
8572 break;
8573 }
c906108c
SS
8574 }
8575}
8576
124e13d9
SM
8577/* Helper function to resize the payload in order to try to get a good
8578 alignment. We try to write an amount of data such that the next write will
8579 start on an address aligned on REMOTE_ALIGN_WRITES. */
8580
8581static int
8582align_for_efficient_write (int todo, CORE_ADDR memaddr)
8583{
8584 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8585}
8586
c906108c
SS
8587/* Write memory data directly to the remote machine.
8588 This does not inform the data cache; the data cache uses this.
a76d924d 8589 HEADER is the starting part of the packet.
c906108c
SS
8590 MEMADDR is the address in the remote memory space.
8591 MYADDR is the address of the buffer in our space.
124e13d9
SM
8592 LEN_UNITS is the number of addressable units to write.
8593 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8594 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8595 should send data as binary ('X'), or hex-encoded ('M').
8596
8597 The function creates packet of the form
8598 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8599
124e13d9 8600 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8601
8602 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8603 are omitted.
8604
9b409511 8605 Return the transferred status, error or OK (an
124e13d9
SM
8606 'enum target_xfer_status' value). Save the number of addressable units
8607 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8608
8609 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8610 exchange between gdb and the stub could look like (?? in place of the
8611 checksum):
8612
8613 -> $m1000,4#??
8614 <- aaaabbbbccccdddd
8615
8616 -> $M1000,3:eeeeffffeeee#??
8617 <- OK
8618
8619 -> $m1000,4#??
8620 <- eeeeffffeeeedddd */
c906108c 8621
6b8edb51
PA
8622target_xfer_status
8623remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8624 const gdb_byte *myaddr,
8625 ULONGEST len_units,
8626 int unit_size,
8627 ULONGEST *xfered_len_units,
8628 char packet_format, int use_length)
c906108c 8629{
6d820c5c 8630 struct remote_state *rs = get_remote_state ();
cfd77fa1 8631 char *p;
a76d924d
DJ
8632 char *plen = NULL;
8633 int plenlen = 0;
124e13d9
SM
8634 int todo_units;
8635 int units_written;
8636 int payload_capacity_bytes;
8637 int payload_length_bytes;
a76d924d
DJ
8638
8639 if (packet_format != 'X' && packet_format != 'M')
8640 internal_error (__FILE__, __LINE__,
9b20d036 8641 _("remote_write_bytes_aux: bad packet format"));
c906108c 8642
124e13d9 8643 if (len_units == 0)
9b409511 8644 return TARGET_XFER_EOF;
b2182ed2 8645
124e13d9 8646 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8647
6d820c5c
DJ
8648 /* The packet buffer will be large enough for the payload;
8649 get_memory_packet_size ensures this. */
a76d924d 8650 rs->buf[0] = '\0';
c906108c 8651
a257b5bb 8652 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8653 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8654
124e13d9 8655 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8656 if (!use_length)
0df8b418 8657 /* The comma won't be used. */
124e13d9
SM
8658 payload_capacity_bytes += 1;
8659 payload_capacity_bytes -= strlen (header);
8660 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8661
a76d924d 8662 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8663
8d64371b
TT
8664 strcat (rs->buf.data (), header);
8665 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8666
8667 /* Compute a best guess of the number of bytes actually transfered. */
8668 if (packet_format == 'X')
c906108c 8669 {
23860348 8670 /* Best guess at number of bytes that will fit. */
325fac50
PA
8671 todo_units = std::min (len_units,
8672 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8673 if (use_length)
124e13d9 8674 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8675 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8676 }
8677 else
8678 {
124e13d9 8679 /* Number of bytes that will fit. */
325fac50
PA
8680 todo_units
8681 = std::min (len_units,
8682 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8683 if (use_length)
124e13d9 8684 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8685 todo_units = std::min (todo_units,
8686 (payload_capacity_bytes / unit_size) / 2);
917317f4 8687 }
a76d924d 8688
124e13d9 8689 if (todo_units <= 0)
3de11b2e 8690 internal_error (__FILE__, __LINE__,
405f8e94 8691 _("minimum packet size too small to write data"));
802188a7 8692
6765f3e5
DJ
8693 /* If we already need another packet, then try to align the end
8694 of this packet to a useful boundary. */
124e13d9
SM
8695 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8696 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8697
a257b5bb 8698 /* Append "<memaddr>". */
917317f4
JM
8699 memaddr = remote_address_masked (memaddr);
8700 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8701
a76d924d
DJ
8702 if (use_length)
8703 {
8704 /* Append ",". */
8705 *p++ = ',';
802188a7 8706
124e13d9
SM
8707 /* Append the length and retain its location and size. It may need to be
8708 adjusted once the packet body has been created. */
a76d924d 8709 plen = p;
124e13d9 8710 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8711 p += plenlen;
8712 }
a257b5bb
AC
8713
8714 /* Append ":". */
917317f4
JM
8715 *p++ = ':';
8716 *p = '\0';
802188a7 8717
a257b5bb 8718 /* Append the packet body. */
a76d924d 8719 if (packet_format == 'X')
917317f4 8720 {
917317f4
JM
8721 /* Binary mode. Send target system values byte by byte, in
8722 increasing byte addresses. Only escape certain critical
8723 characters. */
124e13d9
SM
8724 payload_length_bytes =
8725 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8726 &units_written, payload_capacity_bytes);
6765f3e5 8727
124e13d9 8728 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8729 a second try to keep the end of the packet aligned. Don't do
8730 this if the packet is tiny. */
124e13d9 8731 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8732 {
124e13d9
SM
8733 int new_todo_units;
8734
8735 new_todo_units = align_for_efficient_write (units_written, memaddr);
8736
8737 if (new_todo_units != units_written)
8738 payload_length_bytes =
8739 remote_escape_output (myaddr, new_todo_units, unit_size,
8740 (gdb_byte *) p, &units_written,
8741 payload_capacity_bytes);
6765f3e5
DJ
8742 }
8743
124e13d9
SM
8744 p += payload_length_bytes;
8745 if (use_length && units_written < todo_units)
c906108c 8746 {
802188a7 8747 /* Escape chars have filled up the buffer prematurely,
124e13d9 8748 and we have actually sent fewer units than planned.
917317f4
JM
8749 Fix-up the length field of the packet. Use the same
8750 number of characters as before. */
124e13d9
SM
8751 plen += hexnumnstr (plen, (ULONGEST) units_written,
8752 plenlen);
917317f4 8753 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8754 }
a76d924d
DJ
8755 }
8756 else
8757 {
917317f4
JM
8758 /* Normal mode: Send target system values byte by byte, in
8759 increasing byte addresses. Each byte is encoded as a two hex
8760 value. */
124e13d9
SM
8761 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8762 units_written = todo_units;
c906108c 8763 }
802188a7 8764
8d64371b
TT
8765 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8766 getpkt (&rs->buf, 0);
802188a7 8767
2e9f7625 8768 if (rs->buf[0] == 'E')
00d84524 8769 return TARGET_XFER_E_IO;
802188a7 8770
124e13d9
SM
8771 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8772 send fewer units than we'd planned. */
8773 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8774 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8775}
8776
a76d924d
DJ
8777/* Write memory data directly to the remote machine.
8778 This does not inform the data cache; the data cache uses this.
8779 MEMADDR is the address in the remote memory space.
8780 MYADDR is the address of the buffer in our space.
8781 LEN is the number of bytes.
8782
9b409511
YQ
8783 Return the transferred status, error or OK (an
8784 'enum target_xfer_status' value). Save the number of bytes
8785 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8786
6b8edb51
PA
8787target_xfer_status
8788remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8789 ULONGEST len, int unit_size,
8790 ULONGEST *xfered_len)
a76d924d 8791{
a121b7c1 8792 const char *packet_format = NULL;
a76d924d
DJ
8793
8794 /* Check whether the target supports binary download. */
8795 check_binary_download (memaddr);
8796
4082afcc 8797 switch (packet_support (PACKET_X))
a76d924d
DJ
8798 {
8799 case PACKET_ENABLE:
8800 packet_format = "X";
8801 break;
8802 case PACKET_DISABLE:
8803 packet_format = "M";
8804 break;
8805 case PACKET_SUPPORT_UNKNOWN:
8806 internal_error (__FILE__, __LINE__,
8807 _("remote_write_bytes: bad internal state"));
8808 default:
8809 internal_error (__FILE__, __LINE__, _("bad switch"));
8810 }
8811
8812 return remote_write_bytes_aux (packet_format,
124e13d9 8813 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8814 packet_format[0], 1);
a76d924d
DJ
8815}
8816
9217e74e
YQ
8817/* Read memory data directly from the remote machine.
8818 This does not use the data cache; the data cache uses this.
8819 MEMADDR is the address in the remote memory space.
8820 MYADDR is the address of the buffer in our space.
124e13d9
SM
8821 LEN_UNITS is the number of addressable memory units to read..
8822 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8823
8824 Return the transferred status, error or OK (an
8825 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8826 transferred in *XFERED_LEN_UNITS.
8827
8828 See the comment of remote_write_bytes_aux for an example of
8829 memory read/write exchange between gdb and the stub. */
9217e74e 8830
6b8edb51
PA
8831target_xfer_status
8832remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8833 ULONGEST len_units,
8834 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8835{
8836 struct remote_state *rs = get_remote_state ();
124e13d9 8837 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8838 char *p;
124e13d9
SM
8839 int todo_units;
8840 int decoded_bytes;
9217e74e 8841
124e13d9 8842 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8843 /* The packet buffer will be large enough for the payload;
8844 get_memory_packet_size ensures this. */
8845
124e13d9 8846 /* Number of units that will fit. */
325fac50
PA
8847 todo_units = std::min (len_units,
8848 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8849
8850 /* Construct "m"<memaddr>","<len>". */
8851 memaddr = remote_address_masked (memaddr);
8d64371b 8852 p = rs->buf.data ();
9217e74e
YQ
8853 *p++ = 'm';
8854 p += hexnumstr (p, (ULONGEST) memaddr);
8855 *p++ = ',';
124e13d9 8856 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8857 *p = '\0';
8858 putpkt (rs->buf);
8d64371b 8859 getpkt (&rs->buf, 0);
9217e74e
YQ
8860 if (rs->buf[0] == 'E'
8861 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8862 && rs->buf[3] == '\0')
8863 return TARGET_XFER_E_IO;
8864 /* Reply describes memory byte by byte, each byte encoded as two hex
8865 characters. */
8d64371b 8866 p = rs->buf.data ();
124e13d9 8867 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8868 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8869 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8870 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8871}
8872
b55fbac4
YQ
8873/* Using the set of read-only target sections of remote, read live
8874 read-only memory.
8acf9577
YQ
8875
8876 For interface/parameters/return description see target.h,
8877 to_xfer_partial. */
8878
6b8edb51
PA
8879target_xfer_status
8880remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8881 ULONGEST memaddr,
8882 ULONGEST len,
8883 int unit_size,
8884 ULONGEST *xfered_len)
8acf9577
YQ
8885{
8886 struct target_section *secp;
8887 struct target_section_table *table;
8888
6b8edb51 8889 secp = target_section_by_addr (this, memaddr);
8acf9577 8890 if (secp != NULL
fd361982 8891 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577
YQ
8892 {
8893 struct target_section *p;
8894 ULONGEST memend = memaddr + len;
8895
6b8edb51 8896 table = target_get_section_table (this);
8acf9577
YQ
8897
8898 for (p = table->sections; p < table->sections_end; p++)
8899 {
8900 if (memaddr >= p->addr)
8901 {
8902 if (memend <= p->endaddr)
8903 {
8904 /* Entire transfer is within this section. */
124e13d9 8905 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8906 xfered_len);
8acf9577
YQ
8907 }
8908 else if (memaddr >= p->endaddr)
8909 {
8910 /* This section ends before the transfer starts. */
8911 continue;
8912 }
8913 else
8914 {
8915 /* This section overlaps the transfer. Just do half. */
8916 len = p->endaddr - memaddr;
124e13d9 8917 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8918 xfered_len);
8acf9577
YQ
8919 }
8920 }
8921 }
8922 }
8923
8924 return TARGET_XFER_EOF;
8925}
8926
9217e74e
YQ
8927/* Similar to remote_read_bytes_1, but it reads from the remote stub
8928 first if the requested memory is unavailable in traceframe.
8929 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8930
6b8edb51
PA
8931target_xfer_status
8932remote_target::remote_read_bytes (CORE_ADDR memaddr,
8933 gdb_byte *myaddr, ULONGEST len, int unit_size,
8934 ULONGEST *xfered_len)
c906108c 8935{
6b6aa828 8936 if (len == 0)
96c4f946 8937 return TARGET_XFER_EOF;
b2182ed2 8938
8acf9577
YQ
8939 if (get_traceframe_number () != -1)
8940 {
a79b1bc6 8941 std::vector<mem_range> available;
8acf9577
YQ
8942
8943 /* If we fail to get the set of available memory, then the
8944 target does not support querying traceframe info, and so we
8945 attempt reading from the traceframe anyway (assuming the
8946 target implements the old QTro packet then). */
8947 if (traceframe_available_memory (&available, memaddr, len))
8948 {
a79b1bc6 8949 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8950 {
8951 enum target_xfer_status res;
8952
8953 /* Don't read into the traceframe's available
8954 memory. */
a79b1bc6 8955 if (!available.empty ())
8acf9577
YQ
8956 {
8957 LONGEST oldlen = len;
8958
a79b1bc6 8959 len = available[0].start - memaddr;
8acf9577
YQ
8960 gdb_assert (len <= oldlen);
8961 }
8962
8acf9577 8963 /* This goes through the topmost target again. */
6b8edb51 8964 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8965 len, unit_size, xfered_len);
8acf9577
YQ
8966 if (res == TARGET_XFER_OK)
8967 return TARGET_XFER_OK;
8968 else
8969 {
8970 /* No use trying further, we know some memory starting
8971 at MEMADDR isn't available. */
8972 *xfered_len = len;
92ffd475
PC
8973 return (*xfered_len != 0) ?
8974 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8975 }
8976 }
8977
8978 /* Don't try to read more than how much is available, in
8979 case the target implements the deprecated QTro packet to
8980 cater for older GDBs (the target's knowledge of read-only
8981 sections may be outdated by now). */
a79b1bc6 8982 len = available[0].length;
8acf9577
YQ
8983 }
8984 }
8985
124e13d9 8986 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8987}
74531fed 8988
c906108c 8989\f
c906108c 8990
a76d924d
DJ
8991/* Sends a packet with content determined by the printf format string
8992 FORMAT and the remaining arguments, then gets the reply. Returns
8993 whether the packet was a success, a failure, or unknown. */
8994
6b8edb51
PA
8995packet_result
8996remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8997{
8998 struct remote_state *rs = get_remote_state ();
8999 int max_size = get_remote_packet_size ();
a76d924d 9000 va_list ap;
a744cf53 9001
a76d924d
DJ
9002 va_start (ap, format);
9003
9004 rs->buf[0] = '\0';
8d64371b 9005 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
9006
9007 va_end (ap);
9008
9009 if (size >= max_size)
9b20d036 9010 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
9011
9012 if (putpkt (rs->buf) < 0)
9013 error (_("Communication problem with target."));
9014
9015 rs->buf[0] = '\0';
8d64371b 9016 getpkt (&rs->buf, 0);
a76d924d
DJ
9017
9018 return packet_check_result (rs->buf);
9019}
9020
a76d924d
DJ
9021/* Flash writing can take quite some time. We'll set
9022 effectively infinite timeout for flash operations.
9023 In future, we'll need to decide on a better approach. */
9024static const int remote_flash_timeout = 1000;
9025
f6ac5f3d
PA
9026void
9027remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 9028{
f5656ead 9029 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 9030 enum packet_result ret;
2ec845e7
TT
9031 scoped_restore restore_timeout
9032 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
9033
9034 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 9035 phex (address, addr_size),
a76d924d
DJ
9036 phex (length, 4));
9037 switch (ret)
9038 {
9039 case PACKET_UNKNOWN:
9040 error (_("Remote target does not support flash erase"));
9041 case PACKET_ERROR:
9042 error (_("Error erasing flash with vFlashErase packet"));
9043 default:
9044 break;
9045 }
a76d924d
DJ
9046}
9047
6b8edb51
PA
9048target_xfer_status
9049remote_target::remote_flash_write (ULONGEST address,
9050 ULONGEST length, ULONGEST *xfered_len,
9051 const gdb_byte *data)
a76d924d 9052{
2ec845e7
TT
9053 scoped_restore restore_timeout
9054 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9055 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9056 xfered_len,'X', 0);
a76d924d
DJ
9057}
9058
f6ac5f3d
PA
9059void
9060remote_target::flash_done ()
a76d924d 9061{
a76d924d 9062 int ret;
a76d924d 9063
2ec845e7
TT
9064 scoped_restore restore_timeout
9065 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9066
a76d924d 9067 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
9068
9069 switch (ret)
9070 {
9071 case PACKET_UNKNOWN:
9072 error (_("Remote target does not support vFlashDone"));
9073 case PACKET_ERROR:
9074 error (_("Error finishing flash operation"));
9075 default:
9076 break;
9077 }
9078}
9079
f6ac5f3d
PA
9080void
9081remote_target::files_info ()
c906108c
SS
9082{
9083 puts_filtered ("Debugging a target over a serial line.\n");
9084}
9085\f
9086/* Stuff for dealing with the packets which are part of this protocol.
9087 See comment at top of file for details. */
9088
1927e618
PA
9089/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9090 error to higher layers. Called when a serial error is detected.
9091 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9092 the system error message for errno at function entry and final dot
9093 for output compatibility with throw_perror_with_name. */
1927e618
PA
9094
9095static void
5b6d1e4f 9096unpush_and_perror (remote_target *target, const char *string)
1927e618 9097{
d6cb50a2 9098 int saved_errno = errno;
1927e618 9099
5b6d1e4f 9100 remote_unpush_target (target);
d6cb50a2
JK
9101 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9102 safe_strerror (saved_errno));
1927e618
PA
9103}
9104
048094ac
PA
9105/* Read a single character from the remote end. The current quit
9106 handler is overridden to avoid quitting in the middle of packet
9107 sequence, as that would break communication with the remote server.
9108 See remote_serial_quit_handler for more detail. */
c906108c 9109
6b8edb51
PA
9110int
9111remote_target::readchar (int timeout)
c906108c
SS
9112{
9113 int ch;
5d93a237 9114 struct remote_state *rs = get_remote_state ();
048094ac 9115
2ec845e7 9116 {
6b8edb51
PA
9117 scoped_restore restore_quit_target
9118 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9119 scoped_restore restore_quit
6b8edb51 9120 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9121
2ec845e7 9122 rs->got_ctrlc_during_io = 0;
c906108c 9123
2ec845e7 9124 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9125
2ec845e7
TT
9126 if (rs->got_ctrlc_during_io)
9127 set_quit_flag ();
9128 }
048094ac 9129
2acceee2 9130 if (ch >= 0)
0876f84a 9131 return ch;
2acceee2
JM
9132
9133 switch ((enum serial_rc) ch)
c906108c
SS
9134 {
9135 case SERIAL_EOF:
5b6d1e4f 9136 remote_unpush_target (this);
598d3636 9137 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9138 /* no return */
c906108c 9139 case SERIAL_ERROR:
5b6d1e4f
PA
9140 unpush_and_perror (this, _("Remote communication error. "
9141 "Target disconnected."));
2acceee2 9142 /* no return */
c906108c 9143 case SERIAL_TIMEOUT:
2acceee2 9144 break;
c906108c 9145 }
2acceee2 9146 return ch;
c906108c
SS
9147}
9148
c33e31fd 9149/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9150 writing fails. The current quit handler is overridden to avoid
9151 quitting in the middle of packet sequence, as that would break
9152 communication with the remote server. See
9153 remote_serial_quit_handler for more detail. */
c33e31fd 9154
6b8edb51
PA
9155void
9156remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9157{
5d93a237 9158 struct remote_state *rs = get_remote_state ();
048094ac 9159
6b8edb51
PA
9160 scoped_restore restore_quit_target
9161 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9162 scoped_restore restore_quit
6b8edb51 9163 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9164
9165 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9166
9167 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9168 {
5b6d1e4f
PA
9169 unpush_and_perror (this, _("Remote communication error. "
9170 "Target disconnected."));
c33e31fd 9171 }
048094ac
PA
9172
9173 if (rs->got_ctrlc_during_io)
9174 set_quit_flag ();
c33e31fd
PA
9175}
9176
b3ced9ba
PA
9177/* Return a string representing an escaped version of BUF, of len N.
9178 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9179
b3ced9ba 9180static std::string
6e5abd65
PA
9181escape_buffer (const char *buf, int n)
9182{
d7e74731 9183 string_file stb;
6e5abd65 9184
d7e74731
PA
9185 stb.putstrn (buf, n, '\\');
9186 return std::move (stb.string ());
6e5abd65
PA
9187}
9188
c906108c
SS
9189/* Display a null-terminated packet on stdout, for debugging, using C
9190 string notation. */
9191
9192static void
baa336ce 9193print_packet (const char *buf)
c906108c
SS
9194{
9195 puts_filtered ("\"");
43e526b9 9196 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9197 puts_filtered ("\"");
9198}
9199
9200int
6b8edb51 9201remote_target::putpkt (const char *buf)
c906108c
SS
9202{
9203 return putpkt_binary (buf, strlen (buf));
9204}
9205
6b8edb51
PA
9206/* Wrapper around remote_target::putpkt to avoid exporting
9207 remote_target. */
9208
9209int
9210putpkt (remote_target *remote, const char *buf)
9211{
9212 return remote->putpkt (buf);
9213}
9214
c906108c 9215/* Send a packet to the remote machine, with error checking. The data
23860348 9216 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9217 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9218 and for a possible /0 if we are debugging (remote_debug) and want
9219 to print the sent packet as a string. */
c906108c 9220
6b8edb51
PA
9221int
9222remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9223{
2d717e4f 9224 struct remote_state *rs = get_remote_state ();
c906108c
SS
9225 int i;
9226 unsigned char csum = 0;
b80406ac
TT
9227 gdb::def_vector<char> data (cnt + 6);
9228 char *buf2 = data.data ();
085dd6e6 9229
c906108c
SS
9230 int ch;
9231 int tcount = 0;
9232 char *p;
9233
e24a49d8
PA
9234 /* Catch cases like trying to read memory or listing threads while
9235 we're waiting for a stop reply. The remote server wouldn't be
9236 ready to handle this request, so we'd hang and timeout. We don't
9237 have to worry about this in synchronous mode, because in that
9238 case it's not possible to issue a command while the target is
74531fed
PA
9239 running. This is not a problem in non-stop mode, because in that
9240 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9241 if (!target_is_non_stop_p ()
9242 && target_is_async_p ()
9243 && rs->waiting_for_stop_reply)
9597b22a
DE
9244 {
9245 error (_("Cannot execute this command while the target is running.\n"
9246 "Use the \"interrupt\" command to stop the target\n"
9247 "and then try again."));
9248 }
e24a49d8 9249
2d717e4f
DJ
9250 /* We're sending out a new packet. Make sure we don't look at a
9251 stale cached response. */
9252 rs->cached_wait_status = 0;
9253
c906108c
SS
9254 /* Copy the packet into buffer BUF2, encapsulating it
9255 and giving it a checksum. */
9256
c906108c
SS
9257 p = buf2;
9258 *p++ = '$';
9259
9260 for (i = 0; i < cnt; i++)
9261 {
9262 csum += buf[i];
9263 *p++ = buf[i];
9264 }
9265 *p++ = '#';
9266 *p++ = tohex ((csum >> 4) & 0xf);
9267 *p++ = tohex (csum & 0xf);
9268
9269 /* Send it over and over until we get a positive ack. */
9270
9271 while (1)
9272 {
9273 int started_error_output = 0;
9274
9275 if (remote_debug)
9276 {
9277 *p = '\0';
b3ced9ba 9278
6f8976bf 9279 int len = (int) (p - buf2);
6cc8564b
LM
9280 int max_chars;
9281
9282 if (remote_packet_max_chars < 0)
9283 max_chars = len;
9284 else
9285 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9286
9287 std::string str
6cc8564b 9288 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf
YQ
9289
9290 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9291
6cc8564b 9292 if (len > max_chars)
567a3e54 9293 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9294 len - max_chars);
6f8976bf
YQ
9295
9296 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9297
0f71a2f6 9298 gdb_flush (gdb_stdlog);
c906108c 9299 }
c33e31fd 9300 remote_serial_write (buf2, p - buf2);
c906108c 9301
a6f3e723
SL
9302 /* If this is a no acks version of the remote protocol, send the
9303 packet and move on. */
9304 if (rs->noack_mode)
9305 break;
9306
74531fed
PA
9307 /* Read until either a timeout occurs (-2) or '+' is read.
9308 Handle any notification that arrives in the mean time. */
c906108c
SS
9309 while (1)
9310 {
9311 ch = readchar (remote_timeout);
9312
c5aa993b 9313 if (remote_debug)
c906108c
SS
9314 {
9315 switch (ch)
9316 {
9317 case '+':
1216fa2c 9318 case '-':
c906108c
SS
9319 case SERIAL_TIMEOUT:
9320 case '$':
74531fed 9321 case '%':
c906108c
SS
9322 if (started_error_output)
9323 {
9324 putchar_unfiltered ('\n');
9325 started_error_output = 0;
9326 }
9327 }
9328 }
9329
9330 switch (ch)
9331 {
9332 case '+':
9333 if (remote_debug)
0f71a2f6 9334 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9335 return 1;
1216fa2c
AC
9336 case '-':
9337 if (remote_debug)
9338 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9339 /* FALLTHROUGH */
c906108c 9340 case SERIAL_TIMEOUT:
c5aa993b 9341 tcount++;
c906108c 9342 if (tcount > 3)
b80406ac 9343 return 0;
23860348 9344 break; /* Retransmit buffer. */
c906108c
SS
9345 case '$':
9346 {
40e3f985 9347 if (remote_debug)
2bc416ba 9348 fprintf_unfiltered (gdb_stdlog,
23860348 9349 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9350 /* It's probably an old response sent because an ACK
9351 was lost. Gobble up the packet and ack it so it
9352 doesn't get retransmitted when we resend this
9353 packet. */
6d820c5c 9354 skip_frame ();
c33e31fd 9355 remote_serial_write ("+", 1);
23860348 9356 continue; /* Now, go look for +. */
c906108c 9357 }
74531fed
PA
9358
9359 case '%':
9360 {
9361 int val;
9362
9363 /* If we got a notification, handle it, and go back to looking
9364 for an ack. */
9365 /* We've found the start of a notification. Now
9366 collect the data. */
8d64371b 9367 val = read_frame (&rs->buf);
74531fed
PA
9368 if (val >= 0)
9369 {
9370 if (remote_debug)
9371 {
8d64371b 9372 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9373
6e5abd65
PA
9374 fprintf_unfiltered (gdb_stdlog,
9375 " Notification received: %s\n",
b3ced9ba 9376 str.c_str ());
74531fed 9377 }
8d64371b 9378 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9379 /* We're in sync now, rewait for the ack. */
9380 tcount = 0;
9381 }
9382 else
9383 {
9384 if (remote_debug)
9385 {
9386 if (!started_error_output)
9387 {
9388 started_error_output = 1;
9389 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9390 }
9391 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9392 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9393 }
9394 }
9395 continue;
9396 }
9397 /* fall-through */
c906108c
SS
9398 default:
9399 if (remote_debug)
9400 {
9401 if (!started_error_output)
9402 {
9403 started_error_output = 1;
0f71a2f6 9404 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9405 }
0f71a2f6 9406 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9407 }
9408 continue;
9409 }
23860348 9410 break; /* Here to retransmit. */
c906108c
SS
9411 }
9412
9413#if 0
9414 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9415 able to get out next time we call QUIT, without anything as
9416 violent as interrupt_query. If we want to provide a way out of
9417 here without getting to the next QUIT, it should be based on
9418 hitting ^C twice as in remote_wait. */
c906108c
SS
9419 if (quit_flag)
9420 {
9421 quit_flag = 0;
9422 interrupt_query ();
9423 }
9424#endif
9425 }
a5c0808e 9426
a6f3e723 9427 return 0;
c906108c
SS
9428}
9429
6d820c5c
DJ
9430/* Come here after finding the start of a frame when we expected an
9431 ack. Do our best to discard the rest of this packet. */
9432
6b8edb51
PA
9433void
9434remote_target::skip_frame ()
6d820c5c
DJ
9435{
9436 int c;
9437
9438 while (1)
9439 {
9440 c = readchar (remote_timeout);
9441 switch (c)
9442 {
9443 case SERIAL_TIMEOUT:
9444 /* Nothing we can do. */
9445 return;
9446 case '#':
9447 /* Discard the two bytes of checksum and stop. */
9448 c = readchar (remote_timeout);
9449 if (c >= 0)
9450 c = readchar (remote_timeout);
9451
9452 return;
9453 case '*': /* Run length encoding. */
9454 /* Discard the repeat count. */
9455 c = readchar (remote_timeout);
9456 if (c < 0)
9457 return;
9458 break;
9459 default:
9460 /* A regular character. */
9461 break;
9462 }
9463 }
9464}
9465
c906108c 9466/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9467 into *BUF, verifying the checksum, length, and handling run-length
9468 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9469 expand *BUF.
c906108c 9470
c2d11a7d
JM
9471 Returns -1 on error, number of characters in buffer (ignoring the
9472 trailing NULL) on success. (could be extended to return one of the
23860348 9473 SERIAL status indications). */
c2d11a7d 9474
6b8edb51 9475long
8d64371b 9476remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9477{
9478 unsigned char csum;
c2d11a7d 9479 long bc;
c906108c 9480 int c;
8d64371b 9481 char *buf = buf_p->data ();
a6f3e723 9482 struct remote_state *rs = get_remote_state ();
c906108c
SS
9483
9484 csum = 0;
c2d11a7d 9485 bc = 0;
c906108c
SS
9486
9487 while (1)
9488 {
9489 c = readchar (remote_timeout);
c906108c
SS
9490 switch (c)
9491 {
9492 case SERIAL_TIMEOUT:
9493 if (remote_debug)
0f71a2f6 9494 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9495 return -1;
c906108c
SS
9496 case '$':
9497 if (remote_debug)
0f71a2f6
JM
9498 fputs_filtered ("Saw new packet start in middle of old one\n",
9499 gdb_stdlog);
23860348 9500 return -1; /* Start a new packet, count retries. */
c906108c
SS
9501 case '#':
9502 {
9503 unsigned char pktcsum;
e1b09194
AC
9504 int check_0 = 0;
9505 int check_1 = 0;
c906108c 9506
c2d11a7d 9507 buf[bc] = '\0';
c906108c 9508
e1b09194
AC
9509 check_0 = readchar (remote_timeout);
9510 if (check_0 >= 0)
9511 check_1 = readchar (remote_timeout);
802188a7 9512
e1b09194
AC
9513 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9514 {
9515 if (remote_debug)
2bc416ba 9516 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9517 gdb_stdlog);
e1b09194
AC
9518 return -1;
9519 }
9520 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9521 {
9522 if (remote_debug)
2bc416ba 9523 fputs_filtered ("Communication error in checksum\n",
23860348 9524 gdb_stdlog);
40e3f985
FN
9525 return -1;
9526 }
c906108c 9527
a6f3e723
SL
9528 /* Don't recompute the checksum; with no ack packets we
9529 don't have any way to indicate a packet retransmission
9530 is necessary. */
9531 if (rs->noack_mode)
9532 return bc;
9533
e1b09194 9534 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9535 if (csum == pktcsum)
c2d11a7d 9536 return bc;
c906108c 9537
c5aa993b 9538 if (remote_debug)
c906108c 9539 {
b3ced9ba 9540 std::string str = escape_buffer (buf, bc);
6e5abd65 9541
6e5abd65 9542 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9543 "Bad checksum, sentsum=0x%x, "
9544 "csum=0x%x, buf=%s\n",
b3ced9ba 9545 pktcsum, csum, str.c_str ());
c906108c 9546 }
c2d11a7d 9547 /* Number of characters in buffer ignoring trailing
23860348 9548 NULL. */
c2d11a7d 9549 return -1;
c906108c 9550 }
23860348 9551 case '*': /* Run length encoding. */
c2c6d25f
JM
9552 {
9553 int repeat;
c906108c 9554
a744cf53 9555 csum += c;
b4501125
AC
9556 c = readchar (remote_timeout);
9557 csum += c;
23860348 9558 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9559
23860348 9560 /* The character before ``*'' is repeated. */
c2d11a7d 9561
6d820c5c 9562 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9563 {
8d64371b 9564 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9565 {
9566 /* Make some more room in the buffer. */
8d64371b
TT
9567 buf_p->resize (buf_p->size () + repeat);
9568 buf = buf_p->data ();
6d820c5c
DJ
9569 }
9570
c2d11a7d
JM
9571 memset (&buf[bc], buf[bc - 1], repeat);
9572 bc += repeat;
c2c6d25f
JM
9573 continue;
9574 }
9575
c2d11a7d 9576 buf[bc] = '\0';
6d820c5c 9577 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9578 return -1;
c2c6d25f 9579 }
c906108c 9580 default:
8d64371b 9581 if (bc >= buf_p->size () - 1)
c906108c 9582 {
6d820c5c 9583 /* Make some more room in the buffer. */
8d64371b
TT
9584 buf_p->resize (buf_p->size () * 2);
9585 buf = buf_p->data ();
c906108c
SS
9586 }
9587
6d820c5c
DJ
9588 buf[bc++] = c;
9589 csum += c;
9590 continue;
c906108c
SS
9591 }
9592 }
9593}
9594
ed2b7c17
TT
9595/* Set this to the maximum number of seconds to wait instead of waiting forever
9596 in target_wait(). If this timer times out, then it generates an error and
9597 the command is aborted. This replaces most of the need for timeouts in the
9598 GDB test suite, and makes it possible to distinguish between a hung target
9599 and one with slow communications. */
9600
9601static int watchdog = 0;
9602static void
9603show_watchdog (struct ui_file *file, int from_tty,
9604 struct cmd_list_element *c, const char *value)
9605{
9606 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9607}
9608
c906108c 9609/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9610 store it in *BUF. Resize *BUF if necessary to hold the result. If
9611 FOREVER, wait forever rather than timing out; this is used (in
9612 synchronous mode) to wait for a target that is is executing user
9613 code to stop. */
d9fcf2fb
JM
9614/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9615 don't have to change all the calls to getpkt to deal with the
9616 return value, because at the moment I don't know what the right
23860348 9617 thing to do it for those. */
6b8edb51 9618
c906108c 9619void
8d64371b 9620remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9621{
8d64371b 9622 getpkt_sane (buf, forever);
d9fcf2fb
JM
9623}
9624
9625
9626/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9627 store it in *BUF. Resize *BUF if necessary to hold the result. If
9628 FOREVER, wait forever rather than timing out; this is used (in
9629 synchronous mode) to wait for a target that is is executing user
9630 code to stop. If FOREVER == 0, this function is allowed to time
9631 out gracefully and return an indication of this to the caller.
9632 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9633 consider receiving a notification enough reason to return to the
9634 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9635 holds a notification or not (a regular packet). */
74531fed 9636
6b8edb51 9637int
8d64371b 9638remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9639 int forever, int expecting_notif,
9640 int *is_notif)
c906108c 9641{
2d717e4f 9642 struct remote_state *rs = get_remote_state ();
c906108c
SS
9643 int c;
9644 int tries;
9645 int timeout;
df4b58fe 9646 int val = -1;
c906108c 9647
2d717e4f
DJ
9648 /* We're reading a new response. Make sure we don't look at a
9649 previously cached response. */
9650 rs->cached_wait_status = 0;
9651
8d64371b 9652 strcpy (buf->data (), "timeout");
c906108c
SS
9653
9654 if (forever)
74531fed
PA
9655 timeout = watchdog > 0 ? watchdog : -1;
9656 else if (expecting_notif)
9657 timeout = 0; /* There should already be a char in the buffer. If
9658 not, bail out. */
c906108c
SS
9659 else
9660 timeout = remote_timeout;
9661
9662#define MAX_TRIES 3
9663
74531fed
PA
9664 /* Process any number of notifications, and then return when
9665 we get a packet. */
9666 for (;;)
c906108c 9667 {
d9c43928 9668 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9669 times. */
9670 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9671 {
74531fed
PA
9672 /* This can loop forever if the remote side sends us
9673 characters continuously, but if it pauses, we'll get
9674 SERIAL_TIMEOUT from readchar because of timeout. Then
9675 we'll count that as a retry.
9676
9677 Note that even when forever is set, we will only wait
9678 forever prior to the start of a packet. After that, we
9679 expect characters to arrive at a brisk pace. They should
9680 show up within remote_timeout intervals. */
9681 do
9682 c = readchar (timeout);
9683 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9684
9685 if (c == SERIAL_TIMEOUT)
9686 {
74531fed
PA
9687 if (expecting_notif)
9688 return -1; /* Don't complain, it's normal to not get
9689 anything in this case. */
9690
23860348 9691 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9692 {
5b6d1e4f 9693 remote_unpush_target (this);
598d3636
JK
9694 throw_error (TARGET_CLOSE_ERROR,
9695 _("Watchdog timeout has expired. "
9696 "Target detached."));
c906108c 9697 }
c906108c 9698 if (remote_debug)
0f71a2f6 9699 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9700 }
74531fed
PA
9701 else
9702 {
9703 /* We've found the start of a packet or notification.
9704 Now collect the data. */
8d64371b 9705 val = read_frame (buf);
74531fed
PA
9706 if (val >= 0)
9707 break;
9708 }
9709
c33e31fd 9710 remote_serial_write ("-", 1);
c906108c 9711 }
c906108c 9712
74531fed
PA
9713 if (tries > MAX_TRIES)
9714 {
9715 /* We have tried hard enough, and just can't receive the
9716 packet/notification. Give up. */
9717 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9718
74531fed
PA
9719 /* Skip the ack char if we're in no-ack mode. */
9720 if (!rs->noack_mode)
c33e31fd 9721 remote_serial_write ("+", 1);
74531fed
PA
9722 return -1;
9723 }
c906108c 9724
74531fed
PA
9725 /* If we got an ordinary packet, return that to our caller. */
9726 if (c == '$')
c906108c
SS
9727 {
9728 if (remote_debug)
43e526b9 9729 {
6cc8564b
LM
9730 int max_chars;
9731
9732 if (remote_packet_max_chars < 0)
9733 max_chars = val;
9734 else
9735 max_chars = remote_packet_max_chars;
9736
6f8976bf 9737 std::string str
8d64371b 9738 = escape_buffer (buf->data (),
6cc8564b 9739 std::min (val, max_chars));
6f8976bf
YQ
9740
9741 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9742 str.c_str ());
9743
6cc8564b 9744 if (val > max_chars)
567a3e54 9745 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9746 val - max_chars);
6e5abd65 9747
6f8976bf 9748 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9749 }
a6f3e723
SL
9750
9751 /* Skip the ack char if we're in no-ack mode. */
9752 if (!rs->noack_mode)
c33e31fd 9753 remote_serial_write ("+", 1);
fee9eda9
YQ
9754 if (is_notif != NULL)
9755 *is_notif = 0;
0876f84a 9756 return val;
c906108c
SS
9757 }
9758
74531fed
PA
9759 /* If we got a notification, handle it, and go back to looking
9760 for a packet. */
9761 else
9762 {
9763 gdb_assert (c == '%');
9764
9765 if (remote_debug)
9766 {
8d64371b 9767 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9768
6e5abd65
PA
9769 fprintf_unfiltered (gdb_stdlog,
9770 " Notification received: %s\n",
b3ced9ba 9771 str.c_str ());
74531fed 9772 }
fee9eda9
YQ
9773 if (is_notif != NULL)
9774 *is_notif = 1;
c906108c 9775
8d64371b 9776 handle_notification (rs->notif_state, buf->data ());
c906108c 9777
74531fed 9778 /* Notifications require no acknowledgement. */
a6f3e723 9779
74531fed 9780 if (expecting_notif)
fee9eda9 9781 return val;
74531fed
PA
9782 }
9783 }
9784}
9785
6b8edb51 9786int
8d64371b 9787remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9788{
8d64371b 9789 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9790}
9791
6b8edb51 9792int
8d64371b 9793remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9794 int *is_notif)
74531fed 9795{
8d64371b 9796 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9797}
74531fed 9798
cbb8991c
DB
9799/* Kill any new fork children of process PID that haven't been
9800 processed by follow_fork. */
9801
6b8edb51
PA
9802void
9803remote_target::kill_new_fork_children (int pid)
cbb8991c 9804{
6b8edb51 9805 remote_state *rs = get_remote_state ();
cbb8991c 9806 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9807
9808 /* Kill the fork child threads of any threads in process PID
9809 that are stopped at a fork event. */
5b6d1e4f 9810 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c
DB
9811 {
9812 struct target_waitstatus *ws = &thread->pending_follow;
9813
9814 if (is_pending_fork_parent (ws, pid, thread->ptid))
9815 {
953edf2b 9816 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9817 int res;
9818
6b8edb51 9819 res = remote_vkill (child_pid);
cbb8991c
DB
9820 if (res != 0)
9821 error (_("Can't kill fork child process %d"), child_pid);
9822 }
9823 }
9824
9825 /* Check for any pending fork events (not reported or processed yet)
9826 in process PID and kill those fork child threads as well. */
9827 remote_notif_get_pending_events (notif);
953edf2b
TT
9828 for (auto &event : rs->stop_reply_queue)
9829 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9830 {
9831 int child_pid = event->ws.value.related_pid.pid ();
9832 int res;
9833
9834 res = remote_vkill (child_pid);
9835 if (res != 0)
9836 error (_("Can't kill fork child process %d"), child_pid);
9837 }
cbb8991c
DB
9838}
9839
c906108c 9840\f
8020350c
DB
9841/* Target hook to kill the current inferior. */
9842
f6ac5f3d
PA
9843void
9844remote_target::kill ()
43ff13b4 9845{
8020350c 9846 int res = -1;
e99b03dc 9847 int pid = inferior_ptid.pid ();
8020350c 9848 struct remote_state *rs = get_remote_state ();
0fdf84ca 9849
8020350c 9850 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9851 {
8020350c
DB
9852 /* If we're stopped while forking and we haven't followed yet,
9853 kill the child task. We need to do this before killing the
9854 parent task because if this is a vfork then the parent will
9855 be sleeping. */
6b8edb51 9856 kill_new_fork_children (pid);
8020350c 9857
6b8edb51 9858 res = remote_vkill (pid);
8020350c 9859 if (res == 0)
0fdf84ca 9860 {
bc1e6c81 9861 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9862 return;
9863 }
8020350c 9864 }
0fdf84ca 9865
8020350c
DB
9866 /* If we are in 'target remote' mode and we are killing the only
9867 inferior, then we will tell gdbserver to exit and unpush the
9868 target. */
9869 if (res == -1 && !remote_multi_process_p (rs)
5b6d1e4f 9870 && number_of_live_inferiors (this) == 1)
8020350c
DB
9871 {
9872 remote_kill_k ();
9873
9874 /* We've killed the remote end, we get to mourn it. If we are
9875 not in extended mode, mourning the inferior also unpushes
9876 remote_ops from the target stack, which closes the remote
9877 connection. */
bc1e6c81 9878 target_mourn_inferior (inferior_ptid);
8020350c
DB
9879
9880 return;
0fdf84ca 9881 }
43ff13b4 9882
8020350c 9883 error (_("Can't kill process"));
43ff13b4
JM
9884}
9885
8020350c
DB
9886/* Send a kill request to the target using the 'vKill' packet. */
9887
6b8edb51
PA
9888int
9889remote_target::remote_vkill (int pid)
82f73884 9890{
4082afcc 9891 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9892 return -1;
9893
6b8edb51
PA
9894 remote_state *rs = get_remote_state ();
9895
82f73884 9896 /* Tell the remote target to detach. */
8d64371b 9897 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9898 putpkt (rs->buf);
8d64371b 9899 getpkt (&rs->buf, 0);
82f73884 9900
4082afcc
PA
9901 switch (packet_ok (rs->buf,
9902 &remote_protocol_packets[PACKET_vKill]))
9903 {
9904 case PACKET_OK:
9905 return 0;
9906 case PACKET_ERROR:
9907 return 1;
9908 case PACKET_UNKNOWN:
9909 return -1;
9910 default:
9911 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9912 }
82f73884
PA
9913}
9914
8020350c
DB
9915/* Send a kill request to the target using the 'k' packet. */
9916
6b8edb51
PA
9917void
9918remote_target::remote_kill_k ()
82f73884 9919{
8020350c
DB
9920 /* Catch errors so the user can quit from gdb even when we
9921 aren't on speaking terms with the remote system. */
a70b8144 9922 try
82f73884 9923 {
82f73884 9924 putpkt ("k");
82f73884 9925 }
230d2906 9926 catch (const gdb_exception_error &ex)
8020350c
DB
9927 {
9928 if (ex.error == TARGET_CLOSE_ERROR)
9929 {
9930 /* If we got an (EOF) error that caused the target
9931 to go away, then we're done, that's what we wanted.
9932 "k" is susceptible to cause a premature EOF, given
9933 that the remote server isn't actually required to
9934 reply to "k", and it can happen that it doesn't
9935 even get to reply ACK to the "k". */
9936 return;
9937 }
82f73884 9938
8020350c
DB
9939 /* Otherwise, something went wrong. We didn't actually kill
9940 the target. Just propagate the exception, and let the
9941 user or higher layers decide what to do. */
eedc3f4f 9942 throw;
8020350c 9943 }
82f73884
PA
9944}
9945
f6ac5f3d
PA
9946void
9947remote_target::mourn_inferior ()
c906108c 9948{
8020350c 9949 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9950
9607784a
PA
9951 /* We're no longer interested in notification events of an inferior
9952 that exited or was killed/detached. */
9953 discard_pending_stop_replies (current_inferior ());
9954
8020350c 9955 /* In 'target remote' mode with one inferior, we close the connection. */
5b6d1e4f 9956 if (!rs->extended && number_of_live_inferiors (this) <= 1)
8020350c 9957 {
5b6d1e4f 9958 remote_unpush_target (this);
8020350c
DB
9959 return;
9960 }
c906108c 9961
e24a49d8
PA
9962 /* In case we got here due to an error, but we're going to stay
9963 connected. */
9964 rs->waiting_for_stop_reply = 0;
9965
dc1981d7
PA
9966 /* If the current general thread belonged to the process we just
9967 detached from or has exited, the remote side current general
9968 thread becomes undefined. Considering a case like this:
9969
9970 - We just got here due to a detach.
9971 - The process that we're detaching from happens to immediately
9972 report a global breakpoint being hit in non-stop mode, in the
9973 same thread we had selected before.
9974 - GDB attaches to this process again.
9975 - This event happens to be the next event we handle.
9976
9977 GDB would consider that the current general thread didn't need to
9978 be set on the stub side (with Hg), since for all it knew,
9979 GENERAL_THREAD hadn't changed.
9980
9981 Notice that although in all-stop mode, the remote server always
9982 sets the current thread to the thread reporting the stop event,
9983 that doesn't happen in non-stop mode; in non-stop, the stub *must
9984 not* change the current thread when reporting a breakpoint hit,
9985 due to the decoupling of event reporting and event handling.
9986
9987 To keep things simple, we always invalidate our notion of the
9988 current thread. */
47f8a51d 9989 record_currthread (rs, minus_one_ptid);
dc1981d7 9990
8020350c 9991 /* Call common code to mark the inferior as not running. */
48aa3c27 9992 generic_mourn_inferior ();
2d717e4f 9993}
c906108c 9994
57810aa7 9995bool
f6ac5f3d 9996extended_remote_target::supports_disable_randomization ()
03583c20 9997{
4082afcc 9998 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9999}
10000
6b8edb51
PA
10001void
10002remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
10003{
10004 struct remote_state *rs = get_remote_state ();
10005 char *reply;
10006
8d64371b
TT
10007 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10008 "QDisableRandomization:%x", val);
03583c20 10009 putpkt (rs->buf);
b6bb3468 10010 reply = remote_get_noisy_reply ();
03583c20
UW
10011 if (*reply == '\0')
10012 error (_("Target does not support QDisableRandomization."));
10013 if (strcmp (reply, "OK") != 0)
10014 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10015}
10016
6b8edb51
PA
10017int
10018remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
10019{
10020 struct remote_state *rs = get_remote_state ();
2d717e4f 10021 int len;
94585166 10022 const char *remote_exec_file = get_remote_exec_file ();
c906108c 10023
2d717e4f
DJ
10024 /* If the user has disabled vRun support, or we have detected that
10025 support is not available, do not try it. */
4082afcc 10026 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 10027 return -1;
424163ea 10028
8d64371b
TT
10029 strcpy (rs->buf.data (), "vRun;");
10030 len = strlen (rs->buf.data ());
c906108c 10031
2d717e4f
DJ
10032 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10033 error (_("Remote file name too long for run packet"));
8d64371b 10034 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 10035 strlen (remote_exec_file));
2d717e4f 10036
7c5ded6a 10037 if (!args.empty ())
2d717e4f 10038 {
2d717e4f 10039 int i;
2d717e4f 10040
773a1edc 10041 gdb_argv argv (args.c_str ());
2d717e4f
DJ
10042 for (i = 0; argv[i] != NULL; i++)
10043 {
10044 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10045 error (_("Argument list too long for run packet"));
10046 rs->buf[len++] = ';';
8d64371b 10047 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 10048 strlen (argv[i]));
2d717e4f 10049 }
2d717e4f
DJ
10050 }
10051
10052 rs->buf[len++] = '\0';
10053
10054 putpkt (rs->buf);
8d64371b 10055 getpkt (&rs->buf, 0);
2d717e4f 10056
4082afcc 10057 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 10058 {
4082afcc 10059 case PACKET_OK:
3405876a 10060 /* We have a wait response. All is well. */
2d717e4f 10061 return 0;
4082afcc
PA
10062 case PACKET_UNKNOWN:
10063 return -1;
10064 case PACKET_ERROR:
2d717e4f
DJ
10065 if (remote_exec_file[0] == '\0')
10066 error (_("Running the default executable on the remote target failed; "
10067 "try \"set remote exec-file\"?"));
10068 else
10069 error (_("Running \"%s\" on the remote target failed"),
10070 remote_exec_file);
4082afcc
PA
10071 default:
10072 gdb_assert_not_reached (_("bad switch"));
2d717e4f 10073 }
c906108c
SS
10074}
10075
0a2dde4a
SDJ
10076/* Helper function to send set/unset environment packets. ACTION is
10077 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10078 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10079 sent. */
10080
6b8edb51
PA
10081void
10082remote_target::send_environment_packet (const char *action,
10083 const char *packet,
10084 const char *value)
0a2dde4a 10085{
6b8edb51
PA
10086 remote_state *rs = get_remote_state ();
10087
0a2dde4a
SDJ
10088 /* Convert the environment variable to an hex string, which
10089 is the best format to be transmitted over the wire. */
10090 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10091 strlen (value));
10092
8d64371b 10093 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10094 "%s:%s", packet, encoded_value.c_str ());
10095
10096 putpkt (rs->buf);
8d64371b
TT
10097 getpkt (&rs->buf, 0);
10098 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10099 warning (_("Unable to %s environment variable '%s' on remote."),
10100 action, value);
10101}
10102
10103/* Helper function to handle the QEnvironment* packets. */
10104
6b8edb51
PA
10105void
10106remote_target::extended_remote_environment_support ()
0a2dde4a 10107{
6b8edb51
PA
10108 remote_state *rs = get_remote_state ();
10109
0a2dde4a
SDJ
10110 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10111 {
10112 putpkt ("QEnvironmentReset");
8d64371b
TT
10113 getpkt (&rs->buf, 0);
10114 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10115 warning (_("Unable to reset environment on remote."));
10116 }
10117
10118 gdb_environ *e = &current_inferior ()->environment;
10119
10120 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10121 for (const std::string &el : e->user_set_env ())
6b8edb51 10122 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10123 el.c_str ());
10124
10125 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10126 for (const std::string &el : e->user_unset_env ())
6b8edb51 10127 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10128}
10129
bc3b087d
SDJ
10130/* Helper function to set the current working directory for the
10131 inferior in the remote target. */
10132
6b8edb51
PA
10133void
10134remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10135{
10136 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10137 {
10138 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10139 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10140
10141 if (inferior_cwd != NULL)
10142 {
10143 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10144 strlen (inferior_cwd));
10145
8d64371b 10146 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10147 "QSetWorkingDir:%s", hexpath.c_str ());
10148 }
10149 else
10150 {
10151 /* An empty inferior_cwd means that the user wants us to
10152 reset the remote server's inferior's cwd. */
8d64371b 10153 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10154 "QSetWorkingDir:");
10155 }
10156
10157 putpkt (rs->buf);
8d64371b 10158 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10159 if (packet_ok (rs->buf,
10160 &remote_protocol_packets[PACKET_QSetWorkingDir])
10161 != PACKET_OK)
10162 error (_("\
10163Remote replied unexpectedly while setting the inferior's working\n\
10164directory: %s"),
8d64371b 10165 rs->buf.data ());
bc3b087d
SDJ
10166
10167 }
10168}
10169
2d717e4f
DJ
10170/* In the extended protocol we want to be able to do things like
10171 "run" and have them basically work as expected. So we need
10172 a special create_inferior function. We support changing the
10173 executable file and the command line arguments, but not the
10174 environment. */
10175
f6ac5f3d
PA
10176void
10177extended_remote_target::create_inferior (const char *exec_file,
10178 const std::string &args,
10179 char **env, int from_tty)
43ff13b4 10180{
3405876a
PA
10181 int run_worked;
10182 char *stop_reply;
10183 struct remote_state *rs = get_remote_state ();
94585166 10184 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10185
43ff13b4 10186 /* If running asynchronously, register the target file descriptor
23860348 10187 with the event loop. */
75c99385 10188 if (target_can_async_p ())
6a3753b3 10189 target_async (1);
43ff13b4 10190
03583c20 10191 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10192 if (supports_disable_randomization ())
03583c20
UW
10193 extended_remote_disable_randomization (disable_randomization);
10194
aefd8b33
SDJ
10195 /* If startup-with-shell is on, we inform gdbserver to start the
10196 remote inferior using a shell. */
10197 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10198 {
8d64371b 10199 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10200 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10201 putpkt (rs->buf);
8d64371b
TT
10202 getpkt (&rs->buf, 0);
10203 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10204 error (_("\
10205Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10206 rs->buf.data ());
aefd8b33
SDJ
10207 }
10208
6b8edb51 10209 extended_remote_environment_support ();
0a2dde4a 10210
6b8edb51 10211 extended_remote_set_inferior_cwd ();
bc3b087d 10212
43ff13b4 10213 /* Now restart the remote server. */
3405876a
PA
10214 run_worked = extended_remote_run (args) != -1;
10215 if (!run_worked)
2d717e4f
DJ
10216 {
10217 /* vRun was not supported. Fail if we need it to do what the
10218 user requested. */
10219 if (remote_exec_file[0])
10220 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10221 if (!args.empty ())
65e65158 10222 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10223
2d717e4f
DJ
10224 /* Fall back to "R". */
10225 extended_remote_restart ();
10226 }
424163ea 10227
3405876a 10228 /* vRun's success return is a stop reply. */
8d64371b 10229 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10230 add_current_inferior_and_thread (stop_reply);
c0a2216e 10231
2d717e4f
DJ
10232 /* Get updated offsets, if the stub uses qOffsets. */
10233 get_offsets ();
2d717e4f 10234}
c906108c 10235\f
c5aa993b 10236
b775012e
LM
10237/* Given a location's target info BP_TGT and the packet buffer BUF, output
10238 the list of conditions (in agent expression bytecode format), if any, the
10239 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10240 started from BUF and ended at BUF_END. */
b775012e
LM
10241
10242static int
10243remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10244 struct bp_target_info *bp_tgt, char *buf,
10245 char *buf_end)
b775012e 10246{
3cde5c42 10247 if (bp_tgt->conditions.empty ())
b775012e
LM
10248 return 0;
10249
10250 buf += strlen (buf);
bba74b36 10251 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10252 buf++;
10253
83621223 10254 /* Send conditions to the target. */
d538e36d 10255 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10256 {
bba74b36 10257 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10258 buf += strlen (buf);
3cde5c42 10259 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10260 buf = pack_hex_byte (buf, aexpr->buf[i]);
10261 *buf = '\0';
10262 }
b775012e
LM
10263 return 0;
10264}
10265
d3ce09f5
SS
10266static void
10267remote_add_target_side_commands (struct gdbarch *gdbarch,
10268 struct bp_target_info *bp_tgt, char *buf)
10269{
3cde5c42 10270 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10271 return;
10272
10273 buf += strlen (buf);
10274
10275 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10276 buf += strlen (buf);
10277
10278 /* Concatenate all the agent expressions that are commands into the
10279 cmds parameter. */
df97be55 10280 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10281 {
10282 sprintf (buf, "X%x,", aexpr->len);
10283 buf += strlen (buf);
3cde5c42 10284 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10285 buf = pack_hex_byte (buf, aexpr->buf[i]);
10286 *buf = '\0';
10287 }
d3ce09f5
SS
10288}
10289
8181d85f
DJ
10290/* Insert a breakpoint. On targets that have software breakpoint
10291 support, we ask the remote target to do the work; on targets
10292 which don't, we insert a traditional memory breakpoint. */
c906108c 10293
f6ac5f3d
PA
10294int
10295remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10296 struct bp_target_info *bp_tgt)
c906108c 10297{
d471ea57
AC
10298 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10299 If it succeeds, then set the support to PACKET_ENABLE. If it
10300 fails, and the user has explicitly requested the Z support then
23860348 10301 report an error, otherwise, mark it disabled and go on. */
802188a7 10302
4082afcc 10303 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10304 {
0d5ed153 10305 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10306 struct remote_state *rs;
bba74b36 10307 char *p, *endbuf;
4fff2411 10308
28439a30
PA
10309 /* Make sure the remote is pointing at the right process, if
10310 necessary. */
10311 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10312 set_general_process ();
10313
4fff2411 10314 rs = get_remote_state ();
8d64371b
TT
10315 p = rs->buf.data ();
10316 endbuf = p + get_remote_packet_size ();
802188a7 10317
96baa820
JM
10318 *(p++) = 'Z';
10319 *(p++) = '0';
10320 *(p++) = ',';
7c0f6dcc 10321 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10322 p += hexnumstr (p, addr);
579c6ad9 10323 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10324
f6ac5f3d 10325 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10326 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10327
f6ac5f3d 10328 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10329 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10330
6d820c5c 10331 putpkt (rs->buf);
8d64371b 10332 getpkt (&rs->buf, 0);
96baa820 10333
6d820c5c 10334 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10335 {
d471ea57
AC
10336 case PACKET_ERROR:
10337 return -1;
10338 case PACKET_OK:
10339 return 0;
10340 case PACKET_UNKNOWN:
10341 break;
96baa820
JM
10342 }
10343 }
c906108c 10344
0000e5cc
PA
10345 /* If this breakpoint has target-side commands but this stub doesn't
10346 support Z0 packets, throw error. */
3cde5c42 10347 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10348 throw_error (NOT_SUPPORTED_ERROR, _("\
10349Target doesn't support breakpoints that have target side commands."));
10350
f6ac5f3d 10351 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10352}
10353
f6ac5f3d
PA
10354int
10355remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10356 struct bp_target_info *bp_tgt,
10357 enum remove_bp_reason reason)
c906108c 10358{
8181d85f 10359 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10360 struct remote_state *rs = get_remote_state ();
96baa820 10361
4082afcc 10362 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10363 {
8d64371b
TT
10364 char *p = rs->buf.data ();
10365 char *endbuf = p + get_remote_packet_size ();
802188a7 10366
28439a30
PA
10367 /* Make sure the remote is pointing at the right process, if
10368 necessary. */
10369 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10370 set_general_process ();
10371
96baa820
JM
10372 *(p++) = 'z';
10373 *(p++) = '0';
10374 *(p++) = ',';
10375
8181d85f
DJ
10376 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10377 p += hexnumstr (p, addr);
579c6ad9 10378 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10379
6d820c5c 10380 putpkt (rs->buf);
8d64371b 10381 getpkt (&rs->buf, 0);
96baa820 10382
6d820c5c 10383 return (rs->buf[0] == 'E');
96baa820
JM
10384 }
10385
f6ac5f3d 10386 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10387}
10388
f486487f 10389static enum Z_packet_type
d471ea57
AC
10390watchpoint_to_Z_packet (int type)
10391{
10392 switch (type)
10393 {
10394 case hw_write:
bb858e6a 10395 return Z_PACKET_WRITE_WP;
d471ea57
AC
10396 break;
10397 case hw_read:
bb858e6a 10398 return Z_PACKET_READ_WP;
d471ea57
AC
10399 break;
10400 case hw_access:
bb858e6a 10401 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10402 break;
10403 default:
8e65ff28 10404 internal_error (__FILE__, __LINE__,
e2e0b3e5 10405 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10406 }
10407}
10408
f6ac5f3d
PA
10409int
10410remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10411 enum target_hw_bp_type type, struct expression *cond)
96baa820 10412{
d01949b6 10413 struct remote_state *rs = get_remote_state ();
8d64371b 10414 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10415 char *p;
d471ea57 10416 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10417
4082afcc 10418 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10419 return 1;
802188a7 10420
28439a30
PA
10421 /* Make sure the remote is pointing at the right process, if
10422 necessary. */
10423 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10424 set_general_process ();
10425
8d64371b
TT
10426 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10427 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10428 addr = remote_address_masked (addr);
10429 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10430 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10431
6d820c5c 10432 putpkt (rs->buf);
8d64371b 10433 getpkt (&rs->buf, 0);
96baa820 10434
6d820c5c 10435 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10436 {
10437 case PACKET_ERROR:
d471ea57 10438 return -1;
85d721b8
PA
10439 case PACKET_UNKNOWN:
10440 return 1;
d471ea57
AC
10441 case PACKET_OK:
10442 return 0;
10443 }
8e65ff28 10444 internal_error (__FILE__, __LINE__,
e2e0b3e5 10445 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10446}
10447
57810aa7 10448bool
f6ac5f3d
PA
10449remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10450 CORE_ADDR start, int length)
283002cf
MR
10451{
10452 CORE_ADDR diff = remote_address_masked (addr - start);
10453
10454 return diff < length;
10455}
10456
d471ea57 10457
f6ac5f3d
PA
10458int
10459remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10460 enum target_hw_bp_type type, struct expression *cond)
96baa820 10461{
d01949b6 10462 struct remote_state *rs = get_remote_state ();
8d64371b 10463 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10464 char *p;
d471ea57
AC
10465 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10466
4082afcc 10467 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10468 return -1;
802188a7 10469
28439a30
PA
10470 /* Make sure the remote is pointing at the right process, if
10471 necessary. */
10472 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10473 set_general_process ();
10474
8d64371b
TT
10475 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10476 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10477 addr = remote_address_masked (addr);
10478 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10479 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10480 putpkt (rs->buf);
8d64371b 10481 getpkt (&rs->buf, 0);
96baa820 10482
6d820c5c 10483 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10484 {
10485 case PACKET_ERROR:
10486 case PACKET_UNKNOWN:
10487 return -1;
10488 case PACKET_OK:
10489 return 0;
10490 }
8e65ff28 10491 internal_error (__FILE__, __LINE__,
e2e0b3e5 10492 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10493}
10494
3c3bea1c 10495
60fcc1c3
TT
10496static int remote_hw_watchpoint_limit = -1;
10497static int remote_hw_watchpoint_length_limit = -1;
10498static int remote_hw_breakpoint_limit = -1;
d471ea57 10499
f6ac5f3d
PA
10500int
10501remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10502{
10503 if (remote_hw_watchpoint_length_limit == 0)
10504 return 0;
10505 else if (remote_hw_watchpoint_length_limit < 0)
10506 return 1;
10507 else if (len <= remote_hw_watchpoint_length_limit)
10508 return 1;
10509 else
10510 return 0;
10511}
10512
f6ac5f3d
PA
10513int
10514remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10515{
3c3bea1c
GS
10516 if (type == bp_hardware_breakpoint)
10517 {
10518 if (remote_hw_breakpoint_limit == 0)
10519 return 0;
501eef12
AC
10520 else if (remote_hw_breakpoint_limit < 0)
10521 return 1;
3c3bea1c
GS
10522 else if (cnt <= remote_hw_breakpoint_limit)
10523 return 1;
10524 }
10525 else
10526 {
10527 if (remote_hw_watchpoint_limit == 0)
10528 return 0;
501eef12
AC
10529 else if (remote_hw_watchpoint_limit < 0)
10530 return 1;
3c3bea1c
GS
10531 else if (ot)
10532 return -1;
10533 else if (cnt <= remote_hw_watchpoint_limit)
10534 return 1;
10535 }
10536 return -1;
10537}
10538
f7e6eed5
PA
10539/* The to_stopped_by_sw_breakpoint method of target remote. */
10540
57810aa7 10541bool
f6ac5f3d 10542remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10543{
799a2abe 10544 struct thread_info *thread = inferior_thread ();
f7e6eed5 10545
799a2abe 10546 return (thread->priv != NULL
7aabaf9d
SM
10547 && (get_remote_thread_info (thread)->stop_reason
10548 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10549}
10550
10551/* The to_supports_stopped_by_sw_breakpoint method of target
10552 remote. */
10553
57810aa7 10554bool
f6ac5f3d 10555remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10556{
f7e6eed5
PA
10557 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10558}
10559
10560/* The to_stopped_by_hw_breakpoint method of target remote. */
10561
57810aa7 10562bool
f6ac5f3d 10563remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10564{
799a2abe 10565 struct thread_info *thread = inferior_thread ();
f7e6eed5 10566
799a2abe 10567 return (thread->priv != NULL
7aabaf9d
SM
10568 && (get_remote_thread_info (thread)->stop_reason
10569 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10570}
10571
10572/* The to_supports_stopped_by_hw_breakpoint method of target
10573 remote. */
10574
57810aa7 10575bool
f6ac5f3d 10576remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10577{
f7e6eed5
PA
10578 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10579}
10580
57810aa7 10581bool
f6ac5f3d 10582remote_target::stopped_by_watchpoint ()
3c3bea1c 10583{
799a2abe 10584 struct thread_info *thread = inferior_thread ();
ee154bee 10585
799a2abe 10586 return (thread->priv != NULL
7aabaf9d
SM
10587 && (get_remote_thread_info (thread)->stop_reason
10588 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10589}
10590
57810aa7 10591bool
f6ac5f3d 10592remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10593{
799a2abe 10594 struct thread_info *thread = inferior_thread ();
a744cf53 10595
799a2abe 10596 if (thread->priv != NULL
7aabaf9d
SM
10597 && (get_remote_thread_info (thread)->stop_reason
10598 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10599 {
7aabaf9d 10600 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10601 return true;
4aa7a7f5
JJ
10602 }
10603
57810aa7 10604 return false;
3c3bea1c
GS
10605}
10606
10607
f6ac5f3d
PA
10608int
10609remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10610 struct bp_target_info *bp_tgt)
3c3bea1c 10611{
0d5ed153 10612 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10613 struct remote_state *rs;
bba74b36 10614 char *p, *endbuf;
dd61ec5c 10615 char *message;
3c3bea1c 10616
4082afcc 10617 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10618 return -1;
2bc416ba 10619
28439a30
PA
10620 /* Make sure the remote is pointing at the right process, if
10621 necessary. */
10622 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10623 set_general_process ();
10624
4fff2411 10625 rs = get_remote_state ();
8d64371b
TT
10626 p = rs->buf.data ();
10627 endbuf = p + get_remote_packet_size ();
4fff2411 10628
96baa820
JM
10629 *(p++) = 'Z';
10630 *(p++) = '1';
10631 *(p++) = ',';
802188a7 10632
0d5ed153 10633 addr = remote_address_masked (addr);
96baa820 10634 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10635 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10636
f6ac5f3d 10637 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10638 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10639
f6ac5f3d 10640 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10641 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10642
6d820c5c 10643 putpkt (rs->buf);
8d64371b 10644 getpkt (&rs->buf, 0);
96baa820 10645
6d820c5c 10646 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10647 {
10648 case PACKET_ERROR:
dd61ec5c
MW
10649 if (rs->buf[1] == '.')
10650 {
8d64371b 10651 message = strchr (&rs->buf[2], '.');
dd61ec5c 10652 if (message)
0316657e 10653 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10654 }
10655 return -1;
d471ea57
AC
10656 case PACKET_UNKNOWN:
10657 return -1;
10658 case PACKET_OK:
10659 return 0;
10660 }
8e65ff28 10661 internal_error (__FILE__, __LINE__,
e2e0b3e5 10662 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10663}
10664
d471ea57 10665
f6ac5f3d
PA
10666int
10667remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10668 struct bp_target_info *bp_tgt)
96baa820 10669{
8181d85f 10670 CORE_ADDR addr;
d01949b6 10671 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10672 char *p = rs->buf.data ();
10673 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10674
4082afcc 10675 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10676 return -1;
802188a7 10677
28439a30
PA
10678 /* Make sure the remote is pointing at the right process, if
10679 necessary. */
10680 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10681 set_general_process ();
10682
96baa820
JM
10683 *(p++) = 'z';
10684 *(p++) = '1';
10685 *(p++) = ',';
802188a7 10686
8181d85f 10687 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10688 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10689 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10690
6d820c5c 10691 putpkt (rs->buf);
8d64371b 10692 getpkt (&rs->buf, 0);
802188a7 10693
6d820c5c 10694 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10695 {
10696 case PACKET_ERROR:
10697 case PACKET_UNKNOWN:
10698 return -1;
10699 case PACKET_OK:
10700 return 0;
10701 }
8e65ff28 10702 internal_error (__FILE__, __LINE__,
e2e0b3e5 10703 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10704}
96baa820 10705
4a5e7a5b
PA
10706/* Verify memory using the "qCRC:" request. */
10707
f6ac5f3d
PA
10708int
10709remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10710{
10711 struct remote_state *rs = get_remote_state ();
10712 unsigned long host_crc, target_crc;
10713 char *tmp;
10714
936d2992
PA
10715 /* It doesn't make sense to use qCRC if the remote target is
10716 connected but not running. */
10717 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10718 {
10719 enum packet_result result;
28439a30 10720
936d2992
PA
10721 /* Make sure the remote is pointing at the right process. */
10722 set_general_process ();
4a5e7a5b 10723
936d2992 10724 /* FIXME: assumes lma can fit into long. */
8d64371b 10725 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10726 (long) lma, (long) size);
10727 putpkt (rs->buf);
4a5e7a5b 10728
936d2992
PA
10729 /* Be clever; compute the host_crc before waiting for target
10730 reply. */
10731 host_crc = xcrc32 (data, size, 0xffffffff);
10732
8d64371b 10733 getpkt (&rs->buf, 0);
4a5e7a5b 10734
936d2992
PA
10735 result = packet_ok (rs->buf,
10736 &remote_protocol_packets[PACKET_qCRC]);
10737 if (result == PACKET_ERROR)
10738 return -1;
10739 else if (result == PACKET_OK)
10740 {
10741 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10742 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10743
936d2992
PA
10744 return (host_crc == target_crc);
10745 }
10746 }
4a5e7a5b 10747
f6ac5f3d 10748 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10749}
10750
c906108c
SS
10751/* compare-sections command
10752
10753 With no arguments, compares each loadable section in the exec bfd
10754 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10755 Useful for verifying the image on the target against the exec file. */
e514a9d6 10756
c906108c 10757static void
ac88e2de 10758compare_sections_command (const char *args, int from_tty)
c906108c
SS
10759{
10760 asection *s;
ce359b09 10761 const char *sectname;
c906108c
SS
10762 bfd_size_type size;
10763 bfd_vma lma;
10764 int matched = 0;
10765 int mismatched = 0;
4a5e7a5b 10766 int res;
95cf3b38 10767 int read_only = 0;
c906108c
SS
10768
10769 if (!exec_bfd)
8a3fe4f8 10770 error (_("command cannot be used without an exec file"));
c906108c 10771
95cf3b38
DT
10772 if (args != NULL && strcmp (args, "-r") == 0)
10773 {
10774 read_only = 1;
10775 args = NULL;
10776 }
10777
c5aa993b 10778 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10779 {
10780 if (!(s->flags & SEC_LOAD))
0df8b418 10781 continue; /* Skip non-loadable section. */
c906108c 10782
95cf3b38
DT
10783 if (read_only && (s->flags & SEC_READONLY) == 0)
10784 continue; /* Skip writeable sections */
10785
fd361982 10786 size = bfd_section_size (s);
c906108c 10787 if (size == 0)
0df8b418 10788 continue; /* Skip zero-length section. */
c906108c 10789
fd361982 10790 sectname = bfd_section_name (s);
c906108c 10791 if (args && strcmp (args, sectname) != 0)
0df8b418 10792 continue; /* Not the section selected by user. */
c906108c 10793
0df8b418 10794 matched = 1; /* Do this section. */
c906108c 10795 lma = s->lma;
c906108c 10796
b80406ac
TT
10797 gdb::byte_vector sectdata (size);
10798 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10799
b80406ac 10800 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10801
10802 if (res == -1)
5af949e3 10803 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10804 paddress (target_gdbarch (), lma),
10805 paddress (target_gdbarch (), lma + size));
c906108c 10806
5af949e3 10807 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10808 paddress (target_gdbarch (), lma),
10809 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10810 if (res)
c906108c
SS
10811 printf_filtered ("matched.\n");
10812 else
c5aa993b
JM
10813 {
10814 printf_filtered ("MIS-MATCHED!\n");
10815 mismatched++;
10816 }
c906108c
SS
10817 }
10818 if (mismatched > 0)
936d2992 10819 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10820the loaded file\n"));
c906108c 10821 if (args && !matched)
a3f17187 10822 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10823}
10824
0e7f50da
UW
10825/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10826 into remote target. The number of bytes written to the remote
10827 target is returned, or -1 for error. */
10828
6b8edb51
PA
10829target_xfer_status
10830remote_target::remote_write_qxfer (const char *object_name,
10831 const char *annex, const gdb_byte *writebuf,
10832 ULONGEST offset, LONGEST len,
10833 ULONGEST *xfered_len,
10834 struct packet_config *packet)
0e7f50da
UW
10835{
10836 int i, buf_len;
10837 ULONGEST n;
0e7f50da
UW
10838 struct remote_state *rs = get_remote_state ();
10839 int max_size = get_memory_write_packet_size ();
10840
7cc244de 10841 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10842 return TARGET_XFER_E_IO;
0e7f50da
UW
10843
10844 /* Insert header. */
8d64371b 10845 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10846 "qXfer:%s:write:%s:%s:",
10847 object_name, annex ? annex : "",
10848 phex_nz (offset, sizeof offset));
10849 max_size -= (i + 1);
10850
10851 /* Escape as much data as fits into rs->buf. */
10852 buf_len = remote_escape_output
8d64371b 10853 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10854
8d64371b
TT
10855 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10856 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10857 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10858 return TARGET_XFER_E_IO;
0e7f50da 10859
8d64371b 10860 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10861
10862 *xfered_len = n;
92ffd475 10863 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10864}
10865
0876f84a
DJ
10866/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10867 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10868 number of bytes read is returned, or 0 for EOF, or -1 for error.
10869 The number of bytes read may be less than LEN without indicating an
10870 EOF. PACKET is checked and updated to indicate whether the remote
10871 target supports this object. */
10872
6b8edb51
PA
10873target_xfer_status
10874remote_target::remote_read_qxfer (const char *object_name,
10875 const char *annex,
10876 gdb_byte *readbuf, ULONGEST offset,
10877 LONGEST len,
10878 ULONGEST *xfered_len,
10879 struct packet_config *packet)
0876f84a 10880{
0876f84a 10881 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10882 LONGEST i, n, packet_len;
10883
7cc244de 10884 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10885 return TARGET_XFER_E_IO;
0876f84a
DJ
10886
10887 /* Check whether we've cached an end-of-object packet that matches
10888 this request. */
8e88304f 10889 if (rs->finished_object)
0876f84a 10890 {
8e88304f
TT
10891 if (strcmp (object_name, rs->finished_object) == 0
10892 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10893 && offset == rs->finished_offset)
9b409511
YQ
10894 return TARGET_XFER_EOF;
10895
0876f84a
DJ
10896
10897 /* Otherwise, we're now reading something different. Discard
10898 the cache. */
8e88304f
TT
10899 xfree (rs->finished_object);
10900 xfree (rs->finished_annex);
10901 rs->finished_object = NULL;
10902 rs->finished_annex = NULL;
0876f84a
DJ
10903 }
10904
10905 /* Request only enough to fit in a single packet. The actual data
10906 may not, since we don't know how much of it will need to be escaped;
10907 the target is free to respond with slightly less data. We subtract
10908 five to account for the response type and the protocol frame. */
768adc05 10909 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10910 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10911 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10912 object_name, annex ? annex : "",
10913 phex_nz (offset, sizeof offset),
10914 phex_nz (n, sizeof n));
10915 i = putpkt (rs->buf);
10916 if (i < 0)
2ed4b548 10917 return TARGET_XFER_E_IO;
0876f84a
DJ
10918
10919 rs->buf[0] = '\0';
8d64371b 10920 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10921 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10922 return TARGET_XFER_E_IO;
0876f84a
DJ
10923
10924 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10925 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10926
10927 /* 'm' means there is (or at least might be) more data after this
10928 batch. That does not make sense unless there's at least one byte
10929 of data in this reply. */
10930 if (rs->buf[0] == 'm' && packet_len == 1)
10931 error (_("Remote qXfer reply contained no data."));
10932
10933 /* Got some data. */
8d64371b 10934 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10935 packet_len - 1, readbuf, n);
0876f84a
DJ
10936
10937 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10938 or possibly empty. If we have the final block of a non-empty
10939 object, record this fact to bypass a subsequent partial read. */
10940 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10941 {
8e88304f
TT
10942 rs->finished_object = xstrdup (object_name);
10943 rs->finished_annex = xstrdup (annex ? annex : "");
10944 rs->finished_offset = offset + i;
0876f84a
DJ
10945 }
10946
9b409511
YQ
10947 if (i == 0)
10948 return TARGET_XFER_EOF;
10949 else
10950 {
10951 *xfered_len = i;
10952 return TARGET_XFER_OK;
10953 }
0876f84a
DJ
10954}
10955
f6ac5f3d
PA
10956enum target_xfer_status
10957remote_target::xfer_partial (enum target_object object,
10958 const char *annex, gdb_byte *readbuf,
10959 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10960 ULONGEST *xfered_len)
c906108c 10961{
82f73884 10962 struct remote_state *rs;
c906108c 10963 int i;
6d820c5c 10964 char *p2;
1e3ff5ad 10965 char query_type;
124e13d9 10966 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10967
e6e4e701 10968 set_remote_traceframe ();
82f73884
PA
10969 set_general_thread (inferior_ptid);
10970
10971 rs = get_remote_state ();
10972
b2182ed2 10973 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10974 if (object == TARGET_OBJECT_MEMORY)
10975 {
2d717e4f
DJ
10976 /* If the remote target is connected but not running, we should
10977 pass this request down to a lower stratum (e.g. the executable
10978 file). */
10979 if (!target_has_execution)
9b409511 10980 return TARGET_XFER_EOF;
2d717e4f 10981
21e3b9b9 10982 if (writebuf != NULL)
124e13d9
SM
10983 return remote_write_bytes (offset, writebuf, len, unit_size,
10984 xfered_len);
21e3b9b9 10985 else
6b8edb51 10986 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10987 xfered_len);
21e3b9b9
DJ
10988 }
10989
4aa995e1
PA
10990 /* Handle extra signal info using qxfer packets. */
10991 if (object == TARGET_OBJECT_SIGNAL_INFO)
10992 {
10993 if (readbuf)
f6ac5f3d 10994 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10995 xfered_len, &remote_protocol_packets
4aa995e1
PA
10996 [PACKET_qXfer_siginfo_read]);
10997 else
f6ac5f3d 10998 return remote_write_qxfer ("siginfo", annex,
9b409511 10999 writebuf, offset, len, xfered_len,
4aa995e1
PA
11000 &remote_protocol_packets
11001 [PACKET_qXfer_siginfo_write]);
11002 }
11003
0fb4aa4b
PA
11004 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11005 {
11006 if (readbuf)
f6ac5f3d 11007 return remote_read_qxfer ("statictrace", annex,
9b409511 11008 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
11009 &remote_protocol_packets
11010 [PACKET_qXfer_statictrace_read]);
11011 else
2ed4b548 11012 return TARGET_XFER_E_IO;
0fb4aa4b
PA
11013 }
11014
a76d924d
DJ
11015 /* Only handle flash writes. */
11016 if (writebuf != NULL)
11017 {
a76d924d
DJ
11018 switch (object)
11019 {
11020 case TARGET_OBJECT_FLASH:
6b8edb51 11021 return remote_flash_write (offset, len, xfered_len,
9b409511 11022 writebuf);
a76d924d
DJ
11023
11024 default:
2ed4b548 11025 return TARGET_XFER_E_IO;
a76d924d
DJ
11026 }
11027 }
4b8a223f 11028
1e3ff5ad
AC
11029 /* Map pre-existing objects onto letters. DO NOT do this for new
11030 objects!!! Instead specify new query packets. */
11031 switch (object)
c906108c 11032 {
1e3ff5ad
AC
11033 case TARGET_OBJECT_AVR:
11034 query_type = 'R';
11035 break;
802188a7
RM
11036
11037 case TARGET_OBJECT_AUXV:
0876f84a 11038 gdb_assert (annex == NULL);
f6ac5f3d 11039 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 11040 xfered_len,
0876f84a 11041 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 11042
23181151
DJ
11043 case TARGET_OBJECT_AVAILABLE_FEATURES:
11044 return remote_read_qxfer
f6ac5f3d 11045 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
11046 &remote_protocol_packets[PACKET_qXfer_features]);
11047
cfa9d6d9
DJ
11048 case TARGET_OBJECT_LIBRARIES:
11049 return remote_read_qxfer
f6ac5f3d 11050 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
11051 &remote_protocol_packets[PACKET_qXfer_libraries]);
11052
2268b414
JK
11053 case TARGET_OBJECT_LIBRARIES_SVR4:
11054 return remote_read_qxfer
f6ac5f3d 11055 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
11056 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11057
fd79ecee
DJ
11058 case TARGET_OBJECT_MEMORY_MAP:
11059 gdb_assert (annex == NULL);
f6ac5f3d 11060 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 11061 xfered_len,
fd79ecee
DJ
11062 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11063
07e059b5
VP
11064 case TARGET_OBJECT_OSDATA:
11065 /* Should only get here if we're connected. */
5d93a237 11066 gdb_assert (rs->remote_desc);
07e059b5 11067 return remote_read_qxfer
f6ac5f3d 11068 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
11069 &remote_protocol_packets[PACKET_qXfer_osdata]);
11070
dc146f7c
VP
11071 case TARGET_OBJECT_THREADS:
11072 gdb_assert (annex == NULL);
f6ac5f3d 11073 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 11074 xfered_len,
dc146f7c
VP
11075 &remote_protocol_packets[PACKET_qXfer_threads]);
11076
b3b9301e
PA
11077 case TARGET_OBJECT_TRACEFRAME_INFO:
11078 gdb_assert (annex == NULL);
11079 return remote_read_qxfer
f6ac5f3d 11080 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11081 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11082
11083 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11084 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11085 xfered_len,
78d85199 11086 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11087
11088 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11089 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11090 xfered_len,
169081d0
TG
11091 &remote_protocol_packets[PACKET_qXfer_uib]);
11092
9accd112 11093 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11094 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11095 xfered_len,
9accd112
MM
11096 &remote_protocol_packets[PACKET_qXfer_btrace]);
11097
f4abbc16 11098 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11099 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11100 len, xfered_len,
11101 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11102
c78fa86a 11103 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11104 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11105 len, xfered_len,
11106 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11107
1e3ff5ad 11108 default:
2ed4b548 11109 return TARGET_XFER_E_IO;
c906108c
SS
11110 }
11111
0df8b418 11112 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11113 large enough let the caller deal with it. */
ea9c271d 11114 if (len < get_remote_packet_size ())
2ed4b548 11115 return TARGET_XFER_E_IO;
ea9c271d 11116 len = get_remote_packet_size ();
1e3ff5ad 11117
23860348 11118 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11119 if (!rs->remote_desc)
8a3fe4f8 11120 error (_("remote query is only available after target open"));
c906108c 11121
1e3ff5ad 11122 gdb_assert (annex != NULL);
4b8a223f 11123 gdb_assert (readbuf != NULL);
c906108c 11124
8d64371b 11125 p2 = rs->buf.data ();
c906108c
SS
11126 *p2++ = 'q';
11127 *p2++ = query_type;
11128
23860348
MS
11129 /* We used one buffer char for the remote protocol q command and
11130 another for the query type. As the remote protocol encapsulation
11131 uses 4 chars plus one extra in case we are debugging
11132 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11133 string. */
c906108c 11134 i = 0;
ea9c271d 11135 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11136 {
1e3ff5ad
AC
11137 /* Bad caller may have sent forbidden characters. */
11138 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11139 *p2++ = annex[i];
c906108c
SS
11140 i++;
11141 }
1e3ff5ad
AC
11142 *p2 = '\0';
11143 gdb_assert (annex[i] == '\0');
c906108c 11144
6d820c5c 11145 i = putpkt (rs->buf);
c5aa993b 11146 if (i < 0)
2ed4b548 11147 return TARGET_XFER_E_IO;
c906108c 11148
8d64371b
TT
11149 getpkt (&rs->buf, 0);
11150 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11151
9b409511 11152 *xfered_len = strlen ((char *) readbuf);
92ffd475 11153 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11154}
11155
09c98b44
DB
11156/* Implementation of to_get_memory_xfer_limit. */
11157
f6ac5f3d
PA
11158ULONGEST
11159remote_target::get_memory_xfer_limit ()
09c98b44
DB
11160{
11161 return get_memory_write_packet_size ();
11162}
11163
f6ac5f3d
PA
11164int
11165remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11166 const gdb_byte *pattern, ULONGEST pattern_len,
11167 CORE_ADDR *found_addrp)
08388c79 11168{
f5656ead 11169 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11170 struct remote_state *rs = get_remote_state ();
11171 int max_size = get_memory_write_packet_size ();
11172 struct packet_config *packet =
11173 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11174 /* Number of packet bytes used to encode the pattern;
11175 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11176 int escaped_pattern_len;
0df8b418 11177 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11178 int used_pattern_len;
11179 int i;
11180 int found;
11181 ULONGEST found_addr;
11182
7cc244de
PA
11183 /* Don't go to the target if we don't have to. This is done before
11184 checking packet_config_support to avoid the possibility that a
11185 success for this edge case means the facility works in
11186 general. */
08388c79
DE
11187 if (pattern_len > search_space_len)
11188 return 0;
11189 if (pattern_len == 0)
11190 {
11191 *found_addrp = start_addr;
11192 return 1;
11193 }
11194
11195 /* If we already know the packet isn't supported, fall back to the simple
11196 way of searching memory. */
11197
4082afcc 11198 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11199 {
11200 /* Target doesn't provided special support, fall back and use the
11201 standard support (copy memory and do the search here). */
f6ac5f3d 11202 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11203 pattern, pattern_len, found_addrp);
11204 }
11205
28439a30
PA
11206 /* Make sure the remote is pointing at the right process. */
11207 set_general_process ();
11208
08388c79 11209 /* Insert header. */
8d64371b 11210 i = snprintf (rs->buf.data (), max_size,
08388c79 11211 "qSearch:memory:%s;%s;",
5af949e3 11212 phex_nz (start_addr, addr_size),
08388c79
DE
11213 phex_nz (search_space_len, sizeof (search_space_len)));
11214 max_size -= (i + 1);
11215
11216 /* Escape as much data as fits into rs->buf. */
11217 escaped_pattern_len =
8d64371b
TT
11218 remote_escape_output (pattern, pattern_len, 1,
11219 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11220 &used_pattern_len, max_size);
11221
11222 /* Bail if the pattern is too large. */
11223 if (used_pattern_len != pattern_len)
9b20d036 11224 error (_("Pattern is too large to transmit to remote target."));
08388c79 11225
8d64371b
TT
11226 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11227 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11228 || packet_ok (rs->buf, packet) != PACKET_OK)
11229 {
11230 /* The request may not have worked because the command is not
11231 supported. If so, fall back to the simple way. */
7cc244de 11232 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11233 {
f6ac5f3d 11234 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11235 pattern, pattern_len, found_addrp);
11236 }
11237 return -1;
11238 }
11239
11240 if (rs->buf[0] == '0')
11241 found = 0;
11242 else if (rs->buf[0] == '1')
11243 {
11244 found = 1;
11245 if (rs->buf[1] != ',')
8d64371b
TT
11246 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11247 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11248 *found_addrp = found_addr;
11249 }
11250 else
8d64371b 11251 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11252
11253 return found;
11254}
11255
f6ac5f3d
PA
11256void
11257remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11258{
d01949b6 11259 struct remote_state *rs = get_remote_state ();
8d64371b 11260 char *p = rs->buf.data ();
96baa820 11261
5d93a237 11262 if (!rs->remote_desc)
8a3fe4f8 11263 error (_("remote rcmd is only available after target open"));
96baa820 11264
23860348 11265 /* Send a NULL command across as an empty command. */
7be570e7
JM
11266 if (command == NULL)
11267 command = "";
11268
23860348 11269 /* The query prefix. */
8d64371b
TT
11270 strcpy (rs->buf.data (), "qRcmd,");
11271 p = strchr (rs->buf.data (), '\0');
96baa820 11272
8d64371b 11273 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11274 > get_remote_packet_size ())
8a3fe4f8 11275 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11276
23860348 11277 /* Encode the actual command. */
a30bf1f1 11278 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11279
6d820c5c 11280 if (putpkt (rs->buf) < 0)
8a3fe4f8 11281 error (_("Communication problem with target."));
96baa820
JM
11282
11283 /* get/display the response */
11284 while (1)
11285 {
2e9f7625
DJ
11286 char *buf;
11287
00bf0b85 11288 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11289 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11290 rs->buf[0] = '\0';
8d64371b 11291 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11292 {
11293 /* Timeout. Continue to (try to) read responses.
11294 This is better than stopping with an error, assuming the stub
11295 is still executing the (long) monitor command.
11296 If needed, the user can interrupt gdb using C-c, obtaining
11297 an effect similar to stop on timeout. */
11298 continue;
11299 }
8d64371b 11300 buf = rs->buf.data ();
96baa820 11301 if (buf[0] == '\0')
8a3fe4f8 11302 error (_("Target does not support this command."));
96baa820
JM
11303 if (buf[0] == 'O' && buf[1] != 'K')
11304 {
23860348 11305 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11306 continue;
11307 }
11308 if (strcmp (buf, "OK") == 0)
11309 break;
7be570e7
JM
11310 if (strlen (buf) == 3 && buf[0] == 'E'
11311 && isdigit (buf[1]) && isdigit (buf[2]))
11312 {
8a3fe4f8 11313 error (_("Protocol error with Rcmd"));
7be570e7 11314 }
96baa820
JM
11315 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11316 {
11317 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11318
96baa820
JM
11319 fputc_unfiltered (c, outbuf);
11320 }
11321 break;
11322 }
11323}
11324
f6ac5f3d
PA
11325std::vector<mem_region>
11326remote_target::memory_map ()
fd79ecee 11327{
a664f67e 11328 std::vector<mem_region> result;
9018be22 11329 gdb::optional<gdb::char_vector> text
8b88a78e 11330 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11331
11332 if (text)
9018be22 11333 result = parse_memory_map (text->data ());
fd79ecee
DJ
11334
11335 return result;
11336}
11337
c906108c 11338static void
ac88e2de 11339packet_command (const char *args, int from_tty)
c906108c 11340{
6b8edb51 11341 remote_target *remote = get_current_remote_target ();
c906108c 11342
6b8edb51 11343 if (remote == nullptr)
8a3fe4f8 11344 error (_("command can only be used with remote target"));
c906108c 11345
6b8edb51
PA
11346 remote->packet_command (args, from_tty);
11347}
11348
11349void
11350remote_target::packet_command (const char *args, int from_tty)
11351{
c5aa993b 11352 if (!args)
8a3fe4f8 11353 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11354
11355 puts_filtered ("sending: ");
11356 print_packet (args);
11357 puts_filtered ("\n");
11358 putpkt (args);
11359
6b8edb51
PA
11360 remote_state *rs = get_remote_state ();
11361
8d64371b 11362 getpkt (&rs->buf, 0);
c906108c 11363 puts_filtered ("received: ");
8d64371b 11364 print_packet (rs->buf.data ());
c906108c
SS
11365 puts_filtered ("\n");
11366}
11367
11368#if 0
23860348 11369/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11370
a14ed312 11371static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11372
a14ed312 11373static void threadset_test_cmd (char *cmd, int tty);
c906108c 11374
a14ed312 11375static void threadalive_test (char *cmd, int tty);
c906108c 11376
a14ed312 11377static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11378
23860348 11379int get_and_display_threadinfo (threadref *ref);
c906108c 11380
a14ed312 11381static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11382
23860348 11383static int thread_display_step (threadref *ref, void *context);
c906108c 11384
a14ed312 11385static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11386
a14ed312 11387static void init_remote_threadtests (void);
c906108c 11388
23860348 11389#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11390
11391static void
0b39b52e 11392threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11393{
11394 int sample_thread = SAMPLE_THREAD;
11395
a3f17187 11396 printf_filtered (_("Remote threadset test\n"));
79d7f229 11397 set_general_thread (sample_thread);
c906108c
SS
11398}
11399
11400
11401static void
0b39b52e 11402threadalive_test (const char *cmd, int tty)
c906108c
SS
11403{
11404 int sample_thread = SAMPLE_THREAD;
e99b03dc 11405 int pid = inferior_ptid.pid ();
fd79271b 11406 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11407
79d7f229 11408 if (remote_thread_alive (ptid))
c906108c
SS
11409 printf_filtered ("PASS: Thread alive test\n");
11410 else
11411 printf_filtered ("FAIL: Thread alive test\n");
11412}
11413
23860348 11414void output_threadid (char *title, threadref *ref);
c906108c
SS
11415
11416void
fba45db2 11417output_threadid (char *title, threadref *ref)
c906108c
SS
11418{
11419 char hexid[20];
11420
405feb71 11421 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11422 hexid[16] = 0;
11423 printf_filtered ("%s %s\n", title, (&hexid[0]));
11424}
11425
11426static void
0b39b52e 11427threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11428{
11429 int startflag = 1;
11430 threadref nextthread;
11431 int done, result_count;
11432 threadref threadlist[3];
11433
11434 printf_filtered ("Remote Threadlist test\n");
11435 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11436 &result_count, &threadlist[0]))
11437 printf_filtered ("FAIL: threadlist test\n");
11438 else
11439 {
11440 threadref *scan = threadlist;
11441 threadref *limit = scan + result_count;
11442
11443 while (scan < limit)
11444 output_threadid (" thread ", scan++);
11445 }
11446}
11447
11448void
fba45db2 11449display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11450{
11451 output_threadid ("Threadid: ", &info->threadid);
11452 printf_filtered ("Name: %s\n ", info->shortname);
11453 printf_filtered ("State: %s\n", info->display);
11454 printf_filtered ("other: %s\n\n", info->more_display);
11455}
11456
11457int
fba45db2 11458get_and_display_threadinfo (threadref *ref)
c906108c
SS
11459{
11460 int result;
11461 int set;
11462 struct gdb_ext_thread_info threadinfo;
11463
11464 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11465 | TAG_MOREDISPLAY | TAG_DISPLAY;
11466 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11467 display_thread_info (&threadinfo);
11468 return result;
11469}
11470
11471static void
0b39b52e 11472threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11473{
11474 int athread = SAMPLE_THREAD;
11475 threadref thread;
11476 int set;
11477
11478 int_to_threadref (&thread, athread);
11479 printf_filtered ("Remote Threadinfo test\n");
11480 if (!get_and_display_threadinfo (&thread))
11481 printf_filtered ("FAIL cannot get thread info\n");
11482}
11483
11484static int
fba45db2 11485thread_display_step (threadref *ref, void *context)
c906108c
SS
11486{
11487 /* output_threadid(" threadstep ",ref); *//* simple test */
11488 return get_and_display_threadinfo (ref);
11489}
11490
11491static void
0b39b52e 11492threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11493{
11494 printf_filtered ("Remote Threadlist update test\n");
11495 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11496}
11497
11498static void
11499init_remote_threadtests (void)
11500{
3e43a32a
MS
11501 add_com ("tlist", class_obscure, threadlist_test_cmd,
11502 _("Fetch and print the remote list of "
590042fc 11503 "thread identifiers, one pkt only."));
c906108c 11504 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11505 _("Fetch and display info about one thread."));
c906108c 11506 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11507 _("Test setting to a different thread."));
c906108c 11508 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11509 _("Iterate through updating all remote thread info."));
c906108c 11510 add_com ("talive", class_obscure, threadalive_test,
590042fc 11511 _("Remote thread alive test."));
c906108c
SS
11512}
11513
11514#endif /* 0 */
11515
a068643d 11516/* Convert a thread ID to a string. */
f3fb8c85 11517
a068643d 11518std::string
f6ac5f3d 11519remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11520{
82f73884 11521 struct remote_state *rs = get_remote_state ();
f3fb8c85 11522
d7e15655 11523 if (ptid == null_ptid)
7cee1e54 11524 return normal_pid_to_str (ptid);
0e998d96 11525 else if (ptid.is_pid ())
ecd0ada5
PA
11526 {
11527 /* Printing an inferior target id. */
11528
11529 /* When multi-process extensions are off, there's no way in the
11530 remote protocol to know the remote process id, if there's any
11531 at all. There's one exception --- when we're connected with
11532 target extended-remote, and we manually attached to a process
11533 with "attach PID". We don't record anywhere a flag that
11534 allows us to distinguish that case from the case of
11535 connecting with extended-remote and the stub already being
11536 attached to a process, and reporting yes to qAttached, hence
11537 no smart special casing here. */
11538 if (!remote_multi_process_p (rs))
a068643d 11539 return "Remote target";
ecd0ada5
PA
11540
11541 return normal_pid_to_str (ptid);
82f73884 11542 }
ecd0ada5 11543 else
79d7f229 11544 {
d7e15655 11545 if (magic_null_ptid == ptid)
a068643d 11546 return "Thread <main>";
8020350c 11547 else if (remote_multi_process_p (rs))
e38504b3 11548 if (ptid.lwp () == 0)
de0d863e
DB
11549 return normal_pid_to_str (ptid);
11550 else
a068643d
TT
11551 return string_printf ("Thread %d.%ld",
11552 ptid.pid (), ptid.lwp ());
ecd0ada5 11553 else
a068643d 11554 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11555 }
f3fb8c85
MS
11556}
11557
38691318
KB
11558/* Get the address of the thread local variable in OBJFILE which is
11559 stored at OFFSET within the thread local storage for thread PTID. */
11560
f6ac5f3d
PA
11561CORE_ADDR
11562remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11563 CORE_ADDR offset)
38691318 11564{
4082afcc 11565 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11566 {
11567 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11568 char *p = rs->buf.data ();
11569 char *endp = p + get_remote_packet_size ();
571dd617 11570 enum packet_result result;
38691318
KB
11571
11572 strcpy (p, "qGetTLSAddr:");
11573 p += strlen (p);
82f73884 11574 p = write_ptid (p, endp, ptid);
38691318
KB
11575 *p++ = ',';
11576 p += hexnumstr (p, offset);
11577 *p++ = ',';
11578 p += hexnumstr (p, lm);
11579 *p++ = '\0';
11580
6d820c5c 11581 putpkt (rs->buf);
8d64371b 11582 getpkt (&rs->buf, 0);
3e43a32a
MS
11583 result = packet_ok (rs->buf,
11584 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11585 if (result == PACKET_OK)
38691318 11586 {
b926417a 11587 ULONGEST addr;
38691318 11588
8d64371b 11589 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11590 return addr;
38691318 11591 }
571dd617 11592 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11593 throw_error (TLS_GENERIC_ERROR,
11594 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11595 else
109c3e39
AC
11596 throw_error (TLS_GENERIC_ERROR,
11597 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11598 }
11599 else
109c3e39
AC
11600 throw_error (TLS_GENERIC_ERROR,
11601 _("TLS not supported or disabled on this target"));
38691318
KB
11602 /* Not reached. */
11603 return 0;
11604}
11605
711e434b
PM
11606/* Provide thread local base, i.e. Thread Information Block address.
11607 Returns 1 if ptid is found and thread_local_base is non zero. */
11608
57810aa7 11609bool
f6ac5f3d 11610remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11611{
4082afcc 11612 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11613 {
11614 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11615 char *p = rs->buf.data ();
11616 char *endp = p + get_remote_packet_size ();
711e434b
PM
11617 enum packet_result result;
11618
11619 strcpy (p, "qGetTIBAddr:");
11620 p += strlen (p);
11621 p = write_ptid (p, endp, ptid);
11622 *p++ = '\0';
11623
11624 putpkt (rs->buf);
8d64371b 11625 getpkt (&rs->buf, 0);
711e434b
PM
11626 result = packet_ok (rs->buf,
11627 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11628 if (result == PACKET_OK)
11629 {
b926417a 11630 ULONGEST val;
8d64371b 11631 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11632 if (addr)
b926417a 11633 *addr = (CORE_ADDR) val;
57810aa7 11634 return true;
711e434b
PM
11635 }
11636 else if (result == PACKET_UNKNOWN)
11637 error (_("Remote target doesn't support qGetTIBAddr packet"));
11638 else
11639 error (_("Remote target failed to process qGetTIBAddr request"));
11640 }
11641 else
11642 error (_("qGetTIBAddr not supported or disabled on this target"));
11643 /* Not reached. */
57810aa7 11644 return false;
711e434b
PM
11645}
11646
29709017
DJ
11647/* Support for inferring a target description based on the current
11648 architecture and the size of a 'g' packet. While the 'g' packet
11649 can have any size (since optional registers can be left off the
11650 end), some sizes are easily recognizable given knowledge of the
11651 approximate architecture. */
11652
11653struct remote_g_packet_guess
11654{
eefce37f
TT
11655 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11656 : bytes (bytes_),
11657 tdesc (tdesc_)
11658 {
11659 }
11660
29709017
DJ
11661 int bytes;
11662 const struct target_desc *tdesc;
11663};
29709017 11664
eefce37f 11665struct remote_g_packet_data : public allocate_on_obstack
29709017 11666{
eefce37f 11667 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11668};
11669
11670static struct gdbarch_data *remote_g_packet_data_handle;
11671
11672static void *
11673remote_g_packet_data_init (struct obstack *obstack)
11674{
eefce37f 11675 return new (obstack) remote_g_packet_data;
29709017
DJ
11676}
11677
11678void
11679register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11680 const struct target_desc *tdesc)
11681{
11682 struct remote_g_packet_data *data
19ba03f4
SM
11683 = ((struct remote_g_packet_data *)
11684 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11685
11686 gdb_assert (tdesc != NULL);
11687
eefce37f
TT
11688 for (const remote_g_packet_guess &guess : data->guesses)
11689 if (guess.bytes == bytes)
29709017 11690 internal_error (__FILE__, __LINE__,
9b20d036 11691 _("Duplicate g packet description added for size %d"),
29709017
DJ
11692 bytes);
11693
eefce37f 11694 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11695}
11696
eefce37f
TT
11697/* Return true if remote_read_description would do anything on this target
11698 and architecture, false otherwise. */
d962ef82 11699
eefce37f 11700static bool
d962ef82
DJ
11701remote_read_description_p (struct target_ops *target)
11702{
11703 struct remote_g_packet_data *data
19ba03f4
SM
11704 = ((struct remote_g_packet_data *)
11705 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11706
eefce37f 11707 return !data->guesses.empty ();
d962ef82
DJ
11708}
11709
f6ac5f3d
PA
11710const struct target_desc *
11711remote_target::read_description ()
29709017
DJ
11712{
11713 struct remote_g_packet_data *data
19ba03f4
SM
11714 = ((struct remote_g_packet_data *)
11715 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11716
d962ef82
DJ
11717 /* Do not try this during initial connection, when we do not know
11718 whether there is a running but stopped thread. */
d7e15655 11719 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11720 return beneath ()->read_description ();
d962ef82 11721
eefce37f 11722 if (!data->guesses.empty ())
29709017 11723 {
29709017
DJ
11724 int bytes = send_g_packet ();
11725
eefce37f
TT
11726 for (const remote_g_packet_guess &guess : data->guesses)
11727 if (guess.bytes == bytes)
11728 return guess.tdesc;
29709017
DJ
11729
11730 /* We discard the g packet. A minor optimization would be to
11731 hold on to it, and fill the register cache once we have selected
11732 an architecture, but it's too tricky to do safely. */
11733 }
11734
b6a8c27b 11735 return beneath ()->read_description ();
29709017
DJ
11736}
11737
a6b151f1
DJ
11738/* Remote file transfer support. This is host-initiated I/O, not
11739 target-initiated; for target-initiated, see remote-fileio.c. */
11740
11741/* If *LEFT is at least the length of STRING, copy STRING to
11742 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11743 decrease *LEFT. Otherwise raise an error. */
11744
11745static void
a121b7c1 11746remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11747{
11748 int len = strlen (string);
11749
11750 if (len > *left)
11751 error (_("Packet too long for target."));
11752
11753 memcpy (*buffer, string, len);
11754 *buffer += len;
11755 *left -= len;
11756
11757 /* NUL-terminate the buffer as a convenience, if there is
11758 room. */
11759 if (*left)
11760 **buffer = '\0';
11761}
11762
11763/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11764 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11765 decrease *LEFT. Otherwise raise an error. */
11766
11767static void
11768remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11769 int len)
11770{
11771 if (2 * len > *left)
11772 error (_("Packet too long for target."));
11773
11774 bin2hex (bytes, *buffer, len);
11775 *buffer += 2 * len;
11776 *left -= 2 * len;
11777
11778 /* NUL-terminate the buffer as a convenience, if there is
11779 room. */
11780 if (*left)
11781 **buffer = '\0';
11782}
11783
11784/* If *LEFT is large enough, convert VALUE to hex and add it to
11785 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11786 decrease *LEFT. Otherwise raise an error. */
11787
11788static void
11789remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11790{
11791 int len = hexnumlen (value);
11792
11793 if (len > *left)
11794 error (_("Packet too long for target."));
11795
11796 hexnumstr (*buffer, value);
11797 *buffer += len;
11798 *left -= len;
11799
11800 /* NUL-terminate the buffer as a convenience, if there is
11801 room. */
11802 if (*left)
11803 **buffer = '\0';
11804}
11805
11806/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11807 value, *REMOTE_ERRNO to the remote error number or zero if none
11808 was included, and *ATTACHMENT to point to the start of the annex
11809 if any. The length of the packet isn't needed here; there may
11810 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11811
11812 Return 0 if the packet could be parsed, -1 if it could not. If
11813 -1 is returned, the other variables may not be initialized. */
11814
11815static int
11816remote_hostio_parse_result (char *buffer, int *retcode,
11817 int *remote_errno, char **attachment)
11818{
11819 char *p, *p2;
11820
11821 *remote_errno = 0;
11822 *attachment = NULL;
11823
11824 if (buffer[0] != 'F')
11825 return -1;
11826
11827 errno = 0;
11828 *retcode = strtol (&buffer[1], &p, 16);
11829 if (errno != 0 || p == &buffer[1])
11830 return -1;
11831
11832 /* Check for ",errno". */
11833 if (*p == ',')
11834 {
11835 errno = 0;
11836 *remote_errno = strtol (p + 1, &p2, 16);
11837 if (errno != 0 || p + 1 == p2)
11838 return -1;
11839 p = p2;
11840 }
11841
11842 /* Check for ";attachment". If there is no attachment, the
11843 packet should end here. */
11844 if (*p == ';')
11845 {
11846 *attachment = p + 1;
11847 return 0;
11848 }
11849 else if (*p == '\0')
11850 return 0;
11851 else
11852 return -1;
11853}
11854
11855/* Send a prepared I/O packet to the target and read its response.
11856 The prepared packet is in the global RS->BUF before this function
11857 is called, and the answer is there when we return.
11858
11859 COMMAND_BYTES is the length of the request to send, which may include
11860 binary data. WHICH_PACKET is the packet configuration to check
11861 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11862 is set to the error number and -1 is returned. Otherwise the value
11863 returned by the function is returned.
11864
11865 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11866 attachment is expected; an error will be reported if there's a
11867 mismatch. If one is found, *ATTACHMENT will be set to point into
11868 the packet buffer and *ATTACHMENT_LEN will be set to the
11869 attachment's length. */
11870
6b8edb51
PA
11871int
11872remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11873 int *remote_errno, char **attachment,
11874 int *attachment_len)
a6b151f1
DJ
11875{
11876 struct remote_state *rs = get_remote_state ();
11877 int ret, bytes_read;
11878 char *attachment_tmp;
11879
20db9c52 11880 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11881 {
11882 *remote_errno = FILEIO_ENOSYS;
11883 return -1;
11884 }
11885
8d64371b
TT
11886 putpkt_binary (rs->buf.data (), command_bytes);
11887 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11888
11889 /* If it timed out, something is wrong. Don't try to parse the
11890 buffer. */
11891 if (bytes_read < 0)
11892 {
11893 *remote_errno = FILEIO_EINVAL;
11894 return -1;
11895 }
11896
11897 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11898 {
11899 case PACKET_ERROR:
11900 *remote_errno = FILEIO_EINVAL;
11901 return -1;
11902 case PACKET_UNKNOWN:
11903 *remote_errno = FILEIO_ENOSYS;
11904 return -1;
11905 case PACKET_OK:
11906 break;
11907 }
11908
8d64371b 11909 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11910 &attachment_tmp))
11911 {
11912 *remote_errno = FILEIO_EINVAL;
11913 return -1;
11914 }
11915
11916 /* Make sure we saw an attachment if and only if we expected one. */
11917 if ((attachment_tmp == NULL && attachment != NULL)
11918 || (attachment_tmp != NULL && attachment == NULL))
11919 {
11920 *remote_errno = FILEIO_EINVAL;
11921 return -1;
11922 }
11923
11924 /* If an attachment was found, it must point into the packet buffer;
11925 work out how many bytes there were. */
11926 if (attachment_tmp != NULL)
11927 {
11928 *attachment = attachment_tmp;
8d64371b 11929 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11930 }
11931
11932 return ret;
11933}
11934
dd194f6b 11935/* See declaration.h. */
80152258 11936
dd194f6b
PA
11937void
11938readahead_cache::invalidate ()
80152258 11939{
dd194f6b 11940 this->fd = -1;
80152258
PA
11941}
11942
dd194f6b 11943/* See declaration.h. */
80152258 11944
dd194f6b
PA
11945void
11946readahead_cache::invalidate_fd (int fd)
80152258 11947{
dd194f6b
PA
11948 if (this->fd == fd)
11949 this->fd = -1;
80152258
PA
11950}
11951
15a201c8
GB
11952/* Set the filesystem remote_hostio functions that take FILENAME
11953 arguments will use. Return 0 on success, or -1 if an error
11954 occurs (and set *REMOTE_ERRNO). */
11955
6b8edb51
PA
11956int
11957remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11958 int *remote_errno)
15a201c8
GB
11959{
11960 struct remote_state *rs = get_remote_state ();
11961 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11962 char *p = rs->buf.data ();
15a201c8
GB
11963 int left = get_remote_packet_size () - 1;
11964 char arg[9];
11965 int ret;
11966
11967 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11968 return 0;
11969
11970 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11971 return 0;
11972
11973 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11974
11975 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11976 remote_buffer_add_string (&p, &left, arg);
11977
8d64371b 11978 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11979 remote_errno, NULL, NULL);
11980
11981 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11982 return 0;
11983
11984 if (ret == 0)
11985 rs->fs_pid = required_pid;
11986
11987 return ret;
11988}
11989
12e2a5fd 11990/* Implementation of to_fileio_open. */
a6b151f1 11991
6b8edb51
PA
11992int
11993remote_target::remote_hostio_open (inferior *inf, const char *filename,
11994 int flags, int mode, int warn_if_slow,
11995 int *remote_errno)
a6b151f1
DJ
11996{
11997 struct remote_state *rs = get_remote_state ();
8d64371b 11998 char *p = rs->buf.data ();
a6b151f1
DJ
11999 int left = get_remote_packet_size () - 1;
12000
4313b8c0
GB
12001 if (warn_if_slow)
12002 {
12003 static int warning_issued = 0;
12004
12005 printf_unfiltered (_("Reading %s from remote target...\n"),
12006 filename);
12007
12008 if (!warning_issued)
12009 {
12010 warning (_("File transfers from remote targets can be slow."
12011 " Use \"set sysroot\" to access files locally"
12012 " instead."));
12013 warning_issued = 1;
12014 }
12015 }
12016
15a201c8
GB
12017 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12018 return -1;
12019
a6b151f1
DJ
12020 remote_buffer_add_string (&p, &left, "vFile:open:");
12021
12022 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12023 strlen (filename));
12024 remote_buffer_add_string (&p, &left, ",");
12025
12026 remote_buffer_add_int (&p, &left, flags);
12027 remote_buffer_add_string (&p, &left, ",");
12028
12029 remote_buffer_add_int (&p, &left, mode);
12030
8d64371b 12031 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
12032 remote_errno, NULL, NULL);
12033}
12034
f6ac5f3d
PA
12035int
12036remote_target::fileio_open (struct inferior *inf, const char *filename,
12037 int flags, int mode, int warn_if_slow,
12038 int *remote_errno)
12039{
6b8edb51 12040 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
12041 remote_errno);
12042}
12043
12e2a5fd 12044/* Implementation of to_fileio_pwrite. */
a6b151f1 12045
6b8edb51
PA
12046int
12047remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12048 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12049{
12050 struct remote_state *rs = get_remote_state ();
8d64371b 12051 char *p = rs->buf.data ();
a6b151f1
DJ
12052 int left = get_remote_packet_size ();
12053 int out_len;
12054
dd194f6b 12055 rs->readahead_cache.invalidate_fd (fd);
80152258 12056
a6b151f1
DJ
12057 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12058
12059 remote_buffer_add_int (&p, &left, fd);
12060 remote_buffer_add_string (&p, &left, ",");
12061
12062 remote_buffer_add_int (&p, &left, offset);
12063 remote_buffer_add_string (&p, &left, ",");
12064
124e13d9 12065 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
12066 (get_remote_packet_size ()
12067 - (p - rs->buf.data ())));
a6b151f1 12068
8d64371b 12069 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
12070 remote_errno, NULL, NULL);
12071}
12072
f6ac5f3d
PA
12073int
12074remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12075 ULONGEST offset, int *remote_errno)
12076{
6b8edb51 12077 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12078}
12079
80152258
PA
12080/* Helper for the implementation of to_fileio_pread. Read the file
12081 from the remote side with vFile:pread. */
a6b151f1 12082
6b8edb51
PA
12083int
12084remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12085 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12086{
12087 struct remote_state *rs = get_remote_state ();
8d64371b 12088 char *p = rs->buf.data ();
a6b151f1
DJ
12089 char *attachment;
12090 int left = get_remote_packet_size ();
12091 int ret, attachment_len;
12092 int read_len;
12093
12094 remote_buffer_add_string (&p, &left, "vFile:pread:");
12095
12096 remote_buffer_add_int (&p, &left, fd);
12097 remote_buffer_add_string (&p, &left, ",");
12098
12099 remote_buffer_add_int (&p, &left, len);
12100 remote_buffer_add_string (&p, &left, ",");
12101
12102 remote_buffer_add_int (&p, &left, offset);
12103
8d64371b 12104 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12105 remote_errno, &attachment,
12106 &attachment_len);
12107
12108 if (ret < 0)
12109 return ret;
12110
bc20a4af 12111 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12112 read_buf, len);
12113 if (read_len != ret)
12114 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12115
12116 return ret;
12117}
12118
dd194f6b 12119/* See declaration.h. */
80152258 12120
dd194f6b
PA
12121int
12122readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12123 ULONGEST offset)
80152258 12124{
dd194f6b
PA
12125 if (this->fd == fd
12126 && this->offset <= offset
12127 && offset < this->offset + this->bufsize)
80152258 12128 {
dd194f6b 12129 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12130
12131 if (offset + len > max)
12132 len = max - offset;
12133
dd194f6b 12134 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12135 return len;
12136 }
12137
12138 return 0;
12139}
12140
12141/* Implementation of to_fileio_pread. */
12142
6b8edb51
PA
12143int
12144remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12145 ULONGEST offset, int *remote_errno)
80152258
PA
12146{
12147 int ret;
12148 struct remote_state *rs = get_remote_state ();
dd194f6b 12149 readahead_cache *cache = &rs->readahead_cache;
80152258 12150
dd194f6b 12151 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12152 if (ret > 0)
12153 {
12154 cache->hit_count++;
12155
12156 if (remote_debug)
12157 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12158 pulongest (cache->hit_count));
12159 return ret;
12160 }
12161
12162 cache->miss_count++;
12163 if (remote_debug)
12164 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12165 pulongest (cache->miss_count));
12166
12167 cache->fd = fd;
12168 cache->offset = offset;
12169 cache->bufsize = get_remote_packet_size ();
224c3ddb 12170 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12171
6b8edb51 12172 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12173 cache->offset, remote_errno);
12174 if (ret <= 0)
12175 {
dd194f6b 12176 cache->invalidate_fd (fd);
80152258
PA
12177 return ret;
12178 }
12179
12180 cache->bufsize = ret;
dd194f6b 12181 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12182}
12183
f6ac5f3d
PA
12184int
12185remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12186 ULONGEST offset, int *remote_errno)
12187{
6b8edb51 12188 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12189}
12190
12e2a5fd 12191/* Implementation of to_fileio_close. */
a6b151f1 12192
6b8edb51
PA
12193int
12194remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12195{
12196 struct remote_state *rs = get_remote_state ();
8d64371b 12197 char *p = rs->buf.data ();
a6b151f1
DJ
12198 int left = get_remote_packet_size () - 1;
12199
dd194f6b 12200 rs->readahead_cache.invalidate_fd (fd);
80152258 12201
a6b151f1
DJ
12202 remote_buffer_add_string (&p, &left, "vFile:close:");
12203
12204 remote_buffer_add_int (&p, &left, fd);
12205
8d64371b 12206 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12207 remote_errno, NULL, NULL);
12208}
12209
f6ac5f3d
PA
12210int
12211remote_target::fileio_close (int fd, int *remote_errno)
12212{
6b8edb51 12213 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12214}
12215
12e2a5fd 12216/* Implementation of to_fileio_unlink. */
a6b151f1 12217
6b8edb51
PA
12218int
12219remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12220 int *remote_errno)
a6b151f1
DJ
12221{
12222 struct remote_state *rs = get_remote_state ();
8d64371b 12223 char *p = rs->buf.data ();
a6b151f1
DJ
12224 int left = get_remote_packet_size () - 1;
12225
15a201c8
GB
12226 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12227 return -1;
12228
a6b151f1
DJ
12229 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12230
12231 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12232 strlen (filename));
12233
8d64371b 12234 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12235 remote_errno, NULL, NULL);
12236}
12237
f6ac5f3d
PA
12238int
12239remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12240 int *remote_errno)
12241{
6b8edb51 12242 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12243}
12244
12e2a5fd 12245/* Implementation of to_fileio_readlink. */
b9e7b9c3 12246
f6ac5f3d
PA
12247gdb::optional<std::string>
12248remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12249 int *remote_errno)
b9e7b9c3
UW
12250{
12251 struct remote_state *rs = get_remote_state ();
8d64371b 12252 char *p = rs->buf.data ();
b9e7b9c3
UW
12253 char *attachment;
12254 int left = get_remote_packet_size ();
12255 int len, attachment_len;
12256 int read_len;
b9e7b9c3 12257
15a201c8 12258 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12259 return {};
15a201c8 12260
b9e7b9c3
UW
12261 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12262
12263 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12264 strlen (filename));
12265
8d64371b 12266 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12267 remote_errno, &attachment,
12268 &attachment_len);
12269
12270 if (len < 0)
e0d3522b 12271 return {};
b9e7b9c3 12272
e0d3522b 12273 std::string ret (len, '\0');
b9e7b9c3 12274
bc20a4af 12275 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12276 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12277 if (read_len != len)
12278 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12279
b9e7b9c3
UW
12280 return ret;
12281}
12282
12e2a5fd 12283/* Implementation of to_fileio_fstat. */
0a93529c 12284
f6ac5f3d
PA
12285int
12286remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12287{
12288 struct remote_state *rs = get_remote_state ();
8d64371b 12289 char *p = rs->buf.data ();
0a93529c
GB
12290 int left = get_remote_packet_size ();
12291 int attachment_len, ret;
12292 char *attachment;
12293 struct fio_stat fst;
12294 int read_len;
12295
464b0089
GB
12296 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12297
12298 remote_buffer_add_int (&p, &left, fd);
12299
8d64371b 12300 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12301 remote_errno, &attachment,
12302 &attachment_len);
12303 if (ret < 0)
0a93529c 12304 {
464b0089
GB
12305 if (*remote_errno != FILEIO_ENOSYS)
12306 return ret;
12307
0a93529c
GB
12308 /* Strictly we should return -1, ENOSYS here, but when
12309 "set sysroot remote:" was implemented in August 2008
12310 BFD's need for a stat function was sidestepped with
12311 this hack. This was not remedied until March 2015
12312 so we retain the previous behavior to avoid breaking
12313 compatibility.
12314
12315 Note that the memset is a March 2015 addition; older
12316 GDBs set st_size *and nothing else* so the structure
12317 would have garbage in all other fields. This might
12318 break something but retaining the previous behavior
12319 here would be just too wrong. */
12320
12321 memset (st, 0, sizeof (struct stat));
12322 st->st_size = INT_MAX;
12323 return 0;
12324 }
12325
0a93529c
GB
12326 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12327 (gdb_byte *) &fst, sizeof (fst));
12328
12329 if (read_len != ret)
12330 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12331
12332 if (read_len != sizeof (fst))
12333 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12334 read_len, (int) sizeof (fst));
12335
12336 remote_fileio_to_host_stat (&fst, st);
12337
12338 return 0;
12339}
12340
12e2a5fd 12341/* Implementation of to_filesystem_is_local. */
e3dd7556 12342
57810aa7 12343bool
f6ac5f3d 12344remote_target::filesystem_is_local ()
e3dd7556
GB
12345{
12346 /* Valgrind GDB presents itself as a remote target but works
12347 on the local filesystem: it does not implement remote get
12348 and users are not expected to set a sysroot. To handle
12349 this case we treat the remote filesystem as local if the
12350 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12351 does not support vFile:open. */
a3be80c3 12352 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12353 {
12354 enum packet_support ps = packet_support (PACKET_vFile_open);
12355
12356 if (ps == PACKET_SUPPORT_UNKNOWN)
12357 {
12358 int fd, remote_errno;
12359
12360 /* Try opening a file to probe support. The supplied
12361 filename is irrelevant, we only care about whether
12362 the stub recognizes the packet or not. */
6b8edb51 12363 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12364 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12365 &remote_errno);
12366
12367 if (fd >= 0)
6b8edb51 12368 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12369
12370 ps = packet_support (PACKET_vFile_open);
12371 }
12372
12373 if (ps == PACKET_DISABLE)
12374 {
12375 static int warning_issued = 0;
12376
12377 if (!warning_issued)
12378 {
12379 warning (_("remote target does not support file"
12380 " transfer, attempting to access files"
12381 " from local filesystem."));
12382 warning_issued = 1;
12383 }
12384
57810aa7 12385 return true;
e3dd7556
GB
12386 }
12387 }
12388
57810aa7 12389 return false;
e3dd7556
GB
12390}
12391
a6b151f1
DJ
12392static int
12393remote_fileio_errno_to_host (int errnum)
12394{
12395 switch (errnum)
12396 {
12397 case FILEIO_EPERM:
12398 return EPERM;
12399 case FILEIO_ENOENT:
12400 return ENOENT;
12401 case FILEIO_EINTR:
12402 return EINTR;
12403 case FILEIO_EIO:
12404 return EIO;
12405 case FILEIO_EBADF:
12406 return EBADF;
12407 case FILEIO_EACCES:
12408 return EACCES;
12409 case FILEIO_EFAULT:
12410 return EFAULT;
12411 case FILEIO_EBUSY:
12412 return EBUSY;
12413 case FILEIO_EEXIST:
12414 return EEXIST;
12415 case FILEIO_ENODEV:
12416 return ENODEV;
12417 case FILEIO_ENOTDIR:
12418 return ENOTDIR;
12419 case FILEIO_EISDIR:
12420 return EISDIR;
12421 case FILEIO_EINVAL:
12422 return EINVAL;
12423 case FILEIO_ENFILE:
12424 return ENFILE;
12425 case FILEIO_EMFILE:
12426 return EMFILE;
12427 case FILEIO_EFBIG:
12428 return EFBIG;
12429 case FILEIO_ENOSPC:
12430 return ENOSPC;
12431 case FILEIO_ESPIPE:
12432 return ESPIPE;
12433 case FILEIO_EROFS:
12434 return EROFS;
12435 case FILEIO_ENOSYS:
12436 return ENOSYS;
12437 case FILEIO_ENAMETOOLONG:
12438 return ENAMETOOLONG;
12439 }
12440 return -1;
12441}
12442
12443static char *
12444remote_hostio_error (int errnum)
12445{
12446 int host_error = remote_fileio_errno_to_host (errnum);
12447
12448 if (host_error == -1)
12449 error (_("Unknown remote I/O error %d"), errnum);
12450 else
12451 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12452}
12453
440b7aec
PA
12454/* A RAII wrapper around a remote file descriptor. */
12455
12456class scoped_remote_fd
a6b151f1 12457{
440b7aec 12458public:
6b8edb51
PA
12459 scoped_remote_fd (remote_target *remote, int fd)
12460 : m_remote (remote), m_fd (fd)
440b7aec
PA
12461 {
12462 }
a6b151f1 12463
440b7aec
PA
12464 ~scoped_remote_fd ()
12465 {
12466 if (m_fd != -1)
12467 {
12468 try
12469 {
12470 int remote_errno;
6b8edb51 12471 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12472 }
12473 catch (...)
12474 {
12475 /* Swallow exception before it escapes the dtor. If
12476 something goes wrong, likely the connection is gone,
12477 and there's nothing else that can be done. */
12478 }
12479 }
12480 }
12481
12482 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12483
12484 /* Release ownership of the file descriptor, and return it. */
88a774b9 12485 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12486 {
12487 int fd = m_fd;
12488 m_fd = -1;
12489 return fd;
12490 }
12491
12492 /* Return the owned file descriptor. */
12493 int get () const noexcept
12494 {
12495 return m_fd;
12496 }
12497
12498private:
6b8edb51
PA
12499 /* The remote target. */
12500 remote_target *m_remote;
12501
440b7aec
PA
12502 /* The owned remote I/O file descriptor. */
12503 int m_fd;
12504};
a6b151f1
DJ
12505
12506void
12507remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12508{
12509 remote_target *remote = get_current_remote_target ();
12510
12511 if (remote == nullptr)
12512 error (_("command can only be used with remote target"));
12513
12514 remote->remote_file_put (local_file, remote_file, from_tty);
12515}
12516
12517void
12518remote_target::remote_file_put (const char *local_file, const char *remote_file,
12519 int from_tty)
a6b151f1 12520{
440b7aec 12521 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12522 int bytes_in_buffer;
12523 int saw_eof;
12524 ULONGEST offset;
a6b151f1 12525
d419f42d 12526 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12527 if (file == NULL)
12528 perror_with_name (local_file);
a6b151f1 12529
440b7aec 12530 scoped_remote_fd fd
6b8edb51
PA
12531 (this, remote_hostio_open (NULL,
12532 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12533 | FILEIO_O_TRUNC),
12534 0700, 0, &remote_errno));
440b7aec 12535 if (fd.get () == -1)
a6b151f1
DJ
12536 remote_hostio_error (remote_errno);
12537
12538 /* Send up to this many bytes at once. They won't all fit in the
12539 remote packet limit, so we'll transfer slightly fewer. */
12540 io_size = get_remote_packet_size ();
5ca3b260 12541 gdb::byte_vector buffer (io_size);
a6b151f1 12542
a6b151f1
DJ
12543 bytes_in_buffer = 0;
12544 saw_eof = 0;
12545 offset = 0;
12546 while (bytes_in_buffer || !saw_eof)
12547 {
12548 if (!saw_eof)
12549 {
5ca3b260 12550 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12551 io_size - bytes_in_buffer,
d419f42d 12552 file.get ());
a6b151f1
DJ
12553 if (bytes == 0)
12554 {
d419f42d 12555 if (ferror (file.get ()))
a6b151f1
DJ
12556 error (_("Error reading %s."), local_file);
12557 else
12558 {
12559 /* EOF. Unless there is something still in the
12560 buffer from the last iteration, we are done. */
12561 saw_eof = 1;
12562 if (bytes_in_buffer == 0)
12563 break;
12564 }
12565 }
12566 }
12567 else
12568 bytes = 0;
12569
12570 bytes += bytes_in_buffer;
12571 bytes_in_buffer = 0;
12572
5ca3b260 12573 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12574 offset, &remote_errno);
a6b151f1
DJ
12575
12576 if (retcode < 0)
12577 remote_hostio_error (remote_errno);
12578 else if (retcode == 0)
12579 error (_("Remote write of %d bytes returned 0!"), bytes);
12580 else if (retcode < bytes)
12581 {
12582 /* Short write. Save the rest of the read data for the next
12583 write. */
12584 bytes_in_buffer = bytes - retcode;
5ca3b260 12585 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12586 }
12587
12588 offset += retcode;
12589 }
12590
6b8edb51 12591 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12592 remote_hostio_error (remote_errno);
12593
12594 if (from_tty)
12595 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12596}
12597
12598void
12599remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12600{
12601 remote_target *remote = get_current_remote_target ();
12602
12603 if (remote == nullptr)
12604 error (_("command can only be used with remote target"));
12605
12606 remote->remote_file_get (remote_file, local_file, from_tty);
12607}
12608
12609void
12610remote_target::remote_file_get (const char *remote_file, const char *local_file,
12611 int from_tty)
a6b151f1 12612{
440b7aec 12613 int remote_errno, bytes, io_size;
a6b151f1 12614 ULONGEST offset;
a6b151f1 12615
440b7aec 12616 scoped_remote_fd fd
6b8edb51
PA
12617 (this, remote_hostio_open (NULL,
12618 remote_file, FILEIO_O_RDONLY, 0, 0,
12619 &remote_errno));
440b7aec 12620 if (fd.get () == -1)
a6b151f1
DJ
12621 remote_hostio_error (remote_errno);
12622
d419f42d 12623 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12624 if (file == NULL)
12625 perror_with_name (local_file);
a6b151f1
DJ
12626
12627 /* Send up to this many bytes at once. They won't all fit in the
12628 remote packet limit, so we'll transfer slightly fewer. */
12629 io_size = get_remote_packet_size ();
5ca3b260 12630 gdb::byte_vector buffer (io_size);
a6b151f1 12631
a6b151f1
DJ
12632 offset = 0;
12633 while (1)
12634 {
5ca3b260 12635 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12636 &remote_errno);
a6b151f1
DJ
12637 if (bytes == 0)
12638 /* Success, but no bytes, means end-of-file. */
12639 break;
12640 if (bytes == -1)
12641 remote_hostio_error (remote_errno);
12642
12643 offset += bytes;
12644
5ca3b260 12645 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12646 if (bytes == 0)
12647 perror_with_name (local_file);
12648 }
12649
6b8edb51 12650 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12651 remote_hostio_error (remote_errno);
12652
12653 if (from_tty)
12654 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12655}
12656
12657void
12658remote_file_delete (const char *remote_file, int from_tty)
12659{
6b8edb51 12660 remote_target *remote = get_current_remote_target ();
a6b151f1 12661
6b8edb51 12662 if (remote == nullptr)
a6b151f1
DJ
12663 error (_("command can only be used with remote target"));
12664
6b8edb51
PA
12665 remote->remote_file_delete (remote_file, from_tty);
12666}
12667
12668void
12669remote_target::remote_file_delete (const char *remote_file, int from_tty)
12670{
12671 int retcode, remote_errno;
12672
12673 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12674 if (retcode == -1)
12675 remote_hostio_error (remote_errno);
12676
12677 if (from_tty)
12678 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12679}
12680
12681static void
ac88e2de 12682remote_put_command (const char *args, int from_tty)
a6b151f1 12683{
d1a41061
PP
12684 if (args == NULL)
12685 error_no_arg (_("file to put"));
12686
773a1edc 12687 gdb_argv argv (args);
a6b151f1
DJ
12688 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12689 error (_("Invalid parameters to remote put"));
12690
12691 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12692}
12693
12694static void
ac88e2de 12695remote_get_command (const char *args, int from_tty)
a6b151f1 12696{
d1a41061
PP
12697 if (args == NULL)
12698 error_no_arg (_("file to get"));
12699
773a1edc 12700 gdb_argv argv (args);
a6b151f1
DJ
12701 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12702 error (_("Invalid parameters to remote get"));
12703
12704 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12705}
12706
12707static void
ac88e2de 12708remote_delete_command (const char *args, int from_tty)
a6b151f1 12709{
d1a41061
PP
12710 if (args == NULL)
12711 error_no_arg (_("file to delete"));
12712
773a1edc 12713 gdb_argv argv (args);
a6b151f1
DJ
12714 if (argv[0] == NULL || argv[1] != NULL)
12715 error (_("Invalid parameters to remote delete"));
12716
12717 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12718}
12719
57810aa7 12720bool
f6ac5f3d 12721remote_target::can_execute_reverse ()
b2175913 12722{
4082afcc
PA
12723 if (packet_support (PACKET_bs) == PACKET_ENABLE
12724 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12725 return true;
40ab02ce 12726 else
57810aa7 12727 return false;
b2175913
MS
12728}
12729
57810aa7 12730bool
f6ac5f3d 12731remote_target::supports_non_stop ()
74531fed 12732{
57810aa7 12733 return true;
74531fed
PA
12734}
12735
57810aa7 12736bool
f6ac5f3d 12737remote_target::supports_disable_randomization ()
03583c20
UW
12738{
12739 /* Only supported in extended mode. */
57810aa7 12740 return false;
03583c20
UW
12741}
12742
57810aa7 12743bool
f6ac5f3d 12744remote_target::supports_multi_process ()
8a305172
PA
12745{
12746 struct remote_state *rs = get_remote_state ();
a744cf53 12747
8020350c 12748 return remote_multi_process_p (rs);
8a305172
PA
12749}
12750
70221824 12751static int
f6ac5f3d 12752remote_supports_cond_tracepoints ()
782b2b07 12753{
4082afcc 12754 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12755}
12756
57810aa7 12757bool
f6ac5f3d 12758remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12759{
4082afcc 12760 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12761}
12762
70221824 12763static int
f6ac5f3d 12764remote_supports_fast_tracepoints ()
7a697b8d 12765{
4082afcc 12766 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12767}
12768
0fb4aa4b 12769static int
f6ac5f3d 12770remote_supports_static_tracepoints ()
0fb4aa4b 12771{
4082afcc 12772 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12773}
12774
1e4d1764 12775static int
f6ac5f3d 12776remote_supports_install_in_trace ()
1e4d1764 12777{
4082afcc 12778 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12779}
12780
57810aa7 12781bool
f6ac5f3d 12782remote_target::supports_enable_disable_tracepoint ()
d248b706 12783{
4082afcc
PA
12784 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12785 == PACKET_ENABLE);
d248b706
KY
12786}
12787
57810aa7 12788bool
f6ac5f3d 12789remote_target::supports_string_tracing ()
3065dfb6 12790{
4082afcc 12791 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12792}
12793
57810aa7 12794bool
f6ac5f3d 12795remote_target::can_run_breakpoint_commands ()
d3ce09f5 12796{
4082afcc 12797 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12798}
12799
f6ac5f3d
PA
12800void
12801remote_target::trace_init ()
35b1e5cc 12802{
b6bb3468
PA
12803 struct remote_state *rs = get_remote_state ();
12804
35b1e5cc 12805 putpkt ("QTinit");
b6bb3468 12806 remote_get_noisy_reply ();
8d64371b 12807 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12808 error (_("Target does not support this command."));
12809}
12810
409873ef
SS
12811/* Recursive routine to walk through command list including loops, and
12812 download packets for each command. */
12813
6b8edb51
PA
12814void
12815remote_target::remote_download_command_source (int num, ULONGEST addr,
12816 struct command_line *cmds)
409873ef
SS
12817{
12818 struct remote_state *rs = get_remote_state ();
12819 struct command_line *cmd;
12820
12821 for (cmd = cmds; cmd; cmd = cmd->next)
12822 {
0df8b418 12823 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12824 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12825 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12826 rs->buf.data () + strlen (rs->buf.data ()),
12827 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12828 putpkt (rs->buf);
b6bb3468 12829 remote_get_noisy_reply ();
8d64371b 12830 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12831 warning (_("Target does not support source download."));
12832
12833 if (cmd->control_type == while_control
12834 || cmd->control_type == while_stepping_control)
12835 {
12973681 12836 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12837
0df8b418 12838 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12839 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12840 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12841 rs->buf.data () + strlen (rs->buf.data ()),
12842 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12843 putpkt (rs->buf);
b6bb3468 12844 remote_get_noisy_reply ();
8d64371b 12845 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12846 warning (_("Target does not support source download."));
12847 }
12848 }
12849}
12850
f6ac5f3d
PA
12851void
12852remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12853{
12854 CORE_ADDR tpaddr;
409873ef 12855 char addrbuf[40];
b44ec619
SM
12856 std::vector<std::string> tdp_actions;
12857 std::vector<std::string> stepping_actions;
35b1e5cc 12858 char *pkt;
e8ba3115 12859 struct breakpoint *b = loc->owner;
d9b3f62e 12860 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12861 struct remote_state *rs = get_remote_state ();
3df3a985 12862 int ret;
ff36536c 12863 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12864 size_t size_left;
12865
12866 /* We use a buffer other than rs->buf because we'll build strings
12867 across multiple statements, and other statements in between could
12868 modify rs->buf. */
12869 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12870
dc673c81 12871 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12872
12873 tpaddr = loc->address;
53807e9f 12874 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
3df3a985
PFC
12875 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12876 b->number, addrbuf, /* address */
12877 (b->enable_state == bp_enabled ? 'E' : 'D'),
12878 t->step_count, t->pass_count);
12879
12880 if (ret < 0 || ret >= buf.size ())
a7f25a84 12881 error ("%s", err_msg);
3df3a985 12882
e8ba3115
YQ
12883 /* Fast tracepoints are mostly handled by the target, but we can
12884 tell the target how big of an instruction block should be moved
12885 around. */
12886 if (b->type == bp_fast_tracepoint)
12887 {
12888 /* Only test for support at download time; we may not know
12889 target capabilities at definition time. */
12890 if (remote_supports_fast_tracepoints ())
35b1e5cc 12891 {
6b940e6a
PL
12892 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12893 NULL))
3df3a985
PFC
12894 {
12895 size_left = buf.size () - strlen (buf.data ());
12896 ret = snprintf (buf.data () + strlen (buf.data ()),
12897 size_left, ":F%x",
12898 gdb_insn_length (loc->gdbarch, tpaddr));
12899
12900 if (ret < 0 || ret >= size_left)
a7f25a84 12901 error ("%s", err_msg);
3df3a985 12902 }
35b1e5cc 12903 else
e8ba3115
YQ
12904 /* If it passed validation at definition but fails now,
12905 something is very wrong. */
12906 internal_error (__FILE__, __LINE__,
12907 _("Fast tracepoint not "
12908 "valid during download"));
35b1e5cc 12909 }
e8ba3115
YQ
12910 else
12911 /* Fast tracepoints are functionally identical to regular
12912 tracepoints, so don't take lack of support as a reason to
12913 give up on the trace run. */
12914 warning (_("Target does not support fast tracepoints, "
12915 "downloading %d as regular tracepoint"), b->number);
12916 }
12917 else if (b->type == bp_static_tracepoint)
12918 {
12919 /* Only test for support at download time; we may not know
12920 target capabilities at definition time. */
12921 if (remote_supports_static_tracepoints ())
0fb4aa4b 12922 {
e8ba3115 12923 struct static_tracepoint_marker marker;
0fb4aa4b 12924
e8ba3115 12925 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12926 {
12927 size_left = buf.size () - strlen (buf.data ());
12928 ret = snprintf (buf.data () + strlen (buf.data ()),
12929 size_left, ":S");
12930
12931 if (ret < 0 || ret >= size_left)
a7f25a84 12932 error ("%s", err_msg);
3df3a985 12933 }
0fb4aa4b 12934 else
e8ba3115 12935 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12936 }
e8ba3115
YQ
12937 else
12938 /* Fast tracepoints are functionally identical to regular
12939 tracepoints, so don't take lack of support as a reason
12940 to give up on the trace run. */
12941 error (_("Target does not support static tracepoints"));
12942 }
12943 /* If the tracepoint has a conditional, make it into an agent
12944 expression and append to the definition. */
12945 if (loc->cond)
12946 {
12947 /* Only test support at download time, we may not know target
12948 capabilities at definition time. */
12949 if (remote_supports_cond_tracepoints ())
35b1e5cc 12950 {
3df3a985
PFC
12951 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12952 loc->cond.get ());
12953
12954 size_left = buf.size () - strlen (buf.data ());
12955
12956 ret = snprintf (buf.data () + strlen (buf.data ()),
12957 size_left, ":X%x,", aexpr->len);
12958
12959 if (ret < 0 || ret >= size_left)
a7f25a84 12960 error ("%s", err_msg);
3df3a985
PFC
12961
12962 size_left = buf.size () - strlen (buf.data ());
12963
12964 /* Two bytes to encode each aexpr byte, plus the terminating
12965 null byte. */
12966 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12967 error ("%s", err_msg);
3df3a985
PFC
12968
12969 pkt = buf.data () + strlen (buf.data ());
12970
b44ec619 12971 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12972 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12973 *pkt = '\0';
35b1e5cc 12974 }
e8ba3115
YQ
12975 else
12976 warning (_("Target does not support conditional tracepoints, "
12977 "ignoring tp %d cond"), b->number);
12978 }
35b1e5cc 12979
d9b3f62e 12980 if (b->commands || *default_collect)
3df3a985
PFC
12981 {
12982 size_left = buf.size () - strlen (buf.data ());
12983
12984 ret = snprintf (buf.data () + strlen (buf.data ()),
12985 size_left, "-");
12986
12987 if (ret < 0 || ret >= size_left)
a7f25a84 12988 error ("%s", err_msg);
3df3a985
PFC
12989 }
12990
12991 putpkt (buf.data ());
b6bb3468 12992 remote_get_noisy_reply ();
8d64371b 12993 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12994 error (_("Target does not support tracepoints."));
35b1e5cc 12995
e8ba3115 12996 /* do_single_steps (t); */
b44ec619
SM
12997 for (auto action_it = tdp_actions.begin ();
12998 action_it != tdp_actions.end (); action_it++)
e8ba3115 12999 {
b44ec619
SM
13000 QUIT; /* Allow user to bail out with ^C. */
13001
aa6f3694 13002 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
13003 || !stepping_actions.empty ());
13004
3df3a985
PFC
13005 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13006 b->number, addrbuf, /* address */
13007 action_it->c_str (),
13008 has_more ? '-' : 0);
13009
13010 if (ret < 0 || ret >= buf.size ())
a7f25a84 13011 error ("%s", err_msg);
3df3a985
PFC
13012
13013 putpkt (buf.data ());
b44ec619 13014 remote_get_noisy_reply ();
8d64371b 13015 if (strcmp (rs->buf.data (), "OK"))
b44ec619 13016 error (_("Error on target while setting tracepoints."));
e8ba3115 13017 }
409873ef 13018
05abfc39
PFC
13019 for (auto action_it = stepping_actions.begin ();
13020 action_it != stepping_actions.end (); action_it++)
13021 {
13022 QUIT; /* Allow user to bail out with ^C. */
13023
13024 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 13025 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 13026
3df3a985
PFC
13027 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13028 b->number, addrbuf, /* address */
13029 is_first ? "S" : "",
13030 action_it->c_str (),
13031 has_more ? "-" : "");
13032
13033 if (ret < 0 || ret >= buf.size ())
a7f25a84 13034 error ("%s", err_msg);
3df3a985
PFC
13035
13036 putpkt (buf.data ());
05abfc39 13037 remote_get_noisy_reply ();
8d64371b 13038 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
13039 error (_("Error on target while setting tracepoints."));
13040 }
b44ec619 13041
4082afcc 13042 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 13043 {
f00aae0f 13044 if (b->location != NULL)
409873ef 13045 {
3df3a985
PFC
13046 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13047
13048 if (ret < 0 || ret >= buf.size ())
a7f25a84 13049 error ("%s", err_msg);
3df3a985 13050
f00aae0f 13051 encode_source_string (b->number, loc->address, "at",
d28cd78a 13052 event_location_to_string (b->location.get ()),
3df3a985
PFC
13053 buf.data () + strlen (buf.data ()),
13054 buf.size () - strlen (buf.data ()));
13055 putpkt (buf.data ());
b6bb3468 13056 remote_get_noisy_reply ();
8d64371b 13057 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13058 warning (_("Target does not support source download."));
409873ef 13059 }
e8ba3115
YQ
13060 if (b->cond_string)
13061 {
3df3a985
PFC
13062 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13063
13064 if (ret < 0 || ret >= buf.size ())
a7f25a84 13065 error ("%s", err_msg);
3df3a985 13066
e8ba3115 13067 encode_source_string (b->number, loc->address,
3df3a985
PFC
13068 "cond", b->cond_string,
13069 buf.data () + strlen (buf.data ()),
13070 buf.size () - strlen (buf.data ()));
13071 putpkt (buf.data ());
b6bb3468 13072 remote_get_noisy_reply ();
8d64371b 13073 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13074 warning (_("Target does not support source download."));
13075 }
13076 remote_download_command_source (b->number, loc->address,
13077 breakpoint_commands (b));
35b1e5cc 13078 }
35b1e5cc
SS
13079}
13080
57810aa7 13081bool
f6ac5f3d 13082remote_target::can_download_tracepoint ()
1e4d1764 13083{
1e51243a
PA
13084 struct remote_state *rs = get_remote_state ();
13085 struct trace_status *ts;
13086 int status;
13087
13088 /* Don't try to install tracepoints until we've relocated our
13089 symbols, and fetched and merged the target's tracepoint list with
13090 ours. */
13091 if (rs->starting_up)
57810aa7 13092 return false;
1e51243a
PA
13093
13094 ts = current_trace_status ();
f6ac5f3d 13095 status = get_trace_status (ts);
1e4d1764
YQ
13096
13097 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13098 return false;
1e4d1764
YQ
13099
13100 /* If we are in a tracing experiment, but remote stub doesn't support
13101 installing tracepoint in trace, we have to return. */
13102 if (!remote_supports_install_in_trace ())
57810aa7 13103 return false;
1e4d1764 13104
57810aa7 13105 return true;
1e4d1764
YQ
13106}
13107
13108
f6ac5f3d
PA
13109void
13110remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13111{
13112 struct remote_state *rs = get_remote_state ();
00bf0b85 13113 char *p;
35b1e5cc 13114
8d64371b 13115 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13116 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13117 tsv.builtin);
8d64371b
TT
13118 p = rs->buf.data () + strlen (rs->buf.data ());
13119 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13120 >= get_remote_packet_size ())
00bf0b85 13121 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13122 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13123 *p++ = '\0';
35b1e5cc 13124 putpkt (rs->buf);
b6bb3468 13125 remote_get_noisy_reply ();
8d64371b 13126 if (rs->buf[0] == '\0')
ad91cd99 13127 error (_("Target does not support this command."));
8d64371b 13128 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13129 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13130}
13131
f6ac5f3d
PA
13132void
13133remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13134{
13135 struct remote_state *rs = get_remote_state ();
d248b706 13136
8d64371b 13137 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
53807e9f
TT
13138 location->owner->number,
13139 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13140 putpkt (rs->buf);
b6bb3468 13141 remote_get_noisy_reply ();
8d64371b 13142 if (rs->buf[0] == '\0')
d248b706 13143 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13144 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13145 error (_("Error on target while enabling tracepoint."));
13146}
13147
f6ac5f3d
PA
13148void
13149remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13150{
13151 struct remote_state *rs = get_remote_state ();
d248b706 13152
8d64371b 13153 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
53807e9f
TT
13154 location->owner->number,
13155 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13156 putpkt (rs->buf);
b6bb3468 13157 remote_get_noisy_reply ();
8d64371b 13158 if (rs->buf[0] == '\0')
d248b706 13159 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13160 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13161 error (_("Error on target while disabling tracepoint."));
13162}
13163
f6ac5f3d
PA
13164void
13165remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13166{
13167 asection *s;
13168 bfd_size_type size;
608bcef2 13169 bfd_vma vma;
35b1e5cc 13170 int anysecs = 0;
c2fa21f1 13171 int offset = 0;
35b1e5cc
SS
13172
13173 if (!exec_bfd)
13174 return; /* No information to give. */
13175
b6bb3468
PA
13176 struct remote_state *rs = get_remote_state ();
13177
8d64371b
TT
13178 strcpy (rs->buf.data (), "QTro");
13179 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13180 for (s = exec_bfd->sections; s; s = s->next)
13181 {
13182 char tmp1[40], tmp2[40];
c2fa21f1 13183 int sec_length;
35b1e5cc
SS
13184
13185 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13186 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13187 (s->flags & SEC_READONLY) == 0)
13188 continue;
13189
13190 anysecs = 1;
fd361982
AM
13191 vma = bfd_section_vma (s);
13192 size = bfd_section_size (s);
608bcef2
HZ
13193 sprintf_vma (tmp1, vma);
13194 sprintf_vma (tmp2, vma + size);
c2fa21f1 13195 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13196 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13197 {
4082afcc 13198 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13199 warning (_("\
c2fa21f1
HZ
13200Too many sections for read-only sections definition packet."));
13201 break;
13202 }
8d64371b 13203 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13204 tmp1, tmp2);
c2fa21f1 13205 offset += sec_length;
35b1e5cc
SS
13206 }
13207 if (anysecs)
13208 {
b6bb3468 13209 putpkt (rs->buf);
8d64371b 13210 getpkt (&rs->buf, 0);
35b1e5cc
SS
13211 }
13212}
13213
f6ac5f3d
PA
13214void
13215remote_target::trace_start ()
35b1e5cc 13216{
b6bb3468
PA
13217 struct remote_state *rs = get_remote_state ();
13218
35b1e5cc 13219 putpkt ("QTStart");
b6bb3468 13220 remote_get_noisy_reply ();
8d64371b 13221 if (rs->buf[0] == '\0')
ad91cd99 13222 error (_("Target does not support this command."));
8d64371b
TT
13223 if (strcmp (rs->buf.data (), "OK") != 0)
13224 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13225}
13226
f6ac5f3d
PA
13227int
13228remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13229{
953b98d1 13230 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13231 char *p = NULL;
bd3eecc3 13232 enum packet_result result;
b6bb3468 13233 struct remote_state *rs = get_remote_state ();
bd3eecc3 13234
4082afcc 13235 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13236 return -1;
a744cf53 13237
7b9a15e1 13238 /* FIXME we need to get register block size some other way. */
5cd63fda 13239 trace_regblock_size
9d6eea31 13240 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13241
049dc89b
JK
13242 putpkt ("qTStatus");
13243
a70b8144 13244 try
67f41397 13245 {
b6bb3468 13246 p = remote_get_noisy_reply ();
67f41397 13247 }
230d2906 13248 catch (const gdb_exception_error &ex)
67f41397 13249 {
598d3636
JK
13250 if (ex.error != TARGET_CLOSE_ERROR)
13251 {
13252 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13253 return -1;
13254 }
eedc3f4f 13255 throw;
67f41397 13256 }
00bf0b85 13257
bd3eecc3
PA
13258 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13259
00bf0b85 13260 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13261 if (result == PACKET_UNKNOWN)
00bf0b85 13262 return -1;
35b1e5cc 13263
00bf0b85 13264 /* We're working with a live target. */
f5911ea1 13265 ts->filename = NULL;
00bf0b85 13266
00bf0b85 13267 if (*p++ != 'T')
8d64371b 13268 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13269
84cebc4a
YQ
13270 /* Function 'parse_trace_status' sets default value of each field of
13271 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13272 parse_trace_status (p, ts);
13273
13274 return ts->running;
35b1e5cc
SS
13275}
13276
f6ac5f3d
PA
13277void
13278remote_target::get_tracepoint_status (struct breakpoint *bp,
13279 struct uploaded_tp *utp)
f196051f
SS
13280{
13281 struct remote_state *rs = get_remote_state ();
f196051f
SS
13282 char *reply;
13283 struct bp_location *loc;
13284 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13285 size_t size = get_remote_packet_size ();
f196051f
SS
13286
13287 if (tp)
13288 {
c1fc2657 13289 tp->hit_count = 0;
f196051f 13290 tp->traceframe_usage = 0;
c1fc2657 13291 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13292 {
13293 /* If the tracepoint was never downloaded, don't go asking for
13294 any status. */
13295 if (tp->number_on_target == 0)
13296 continue;
8d64371b 13297 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13298 phex_nz (loc->address, 0));
f196051f 13299 putpkt (rs->buf);
b6bb3468 13300 reply = remote_get_noisy_reply ();
f196051f
SS
13301 if (reply && *reply)
13302 {
13303 if (*reply == 'V')
13304 parse_tracepoint_status (reply + 1, bp, utp);
13305 }
13306 }
13307 }
13308 else if (utp)
13309 {
13310 utp->hit_count = 0;
13311 utp->traceframe_usage = 0;
8d64371b 13312 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13313 phex_nz (utp->addr, 0));
f196051f 13314 putpkt (rs->buf);
b6bb3468 13315 reply = remote_get_noisy_reply ();
f196051f
SS
13316 if (reply && *reply)
13317 {
13318 if (*reply == 'V')
13319 parse_tracepoint_status (reply + 1, bp, utp);
13320 }
13321 }
13322}
13323
f6ac5f3d
PA
13324void
13325remote_target::trace_stop ()
35b1e5cc 13326{
b6bb3468
PA
13327 struct remote_state *rs = get_remote_state ();
13328
35b1e5cc 13329 putpkt ("QTStop");
b6bb3468 13330 remote_get_noisy_reply ();
8d64371b 13331 if (rs->buf[0] == '\0')
ad91cd99 13332 error (_("Target does not support this command."));
8d64371b
TT
13333 if (strcmp (rs->buf.data (), "OK") != 0)
13334 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13335}
13336
f6ac5f3d
PA
13337int
13338remote_target::trace_find (enum trace_find_type type, int num,
13339 CORE_ADDR addr1, CORE_ADDR addr2,
13340 int *tpp)
35b1e5cc
SS
13341{
13342 struct remote_state *rs = get_remote_state ();
8d64371b 13343 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13344 char *p, *reply;
13345 int target_frameno = -1, target_tracept = -1;
13346
e6e4e701
PA
13347 /* Lookups other than by absolute frame number depend on the current
13348 trace selected, so make sure it is correct on the remote end
13349 first. */
13350 if (type != tfind_number)
13351 set_remote_traceframe ();
13352
8d64371b 13353 p = rs->buf.data ();
35b1e5cc
SS
13354 strcpy (p, "QTFrame:");
13355 p = strchr (p, '\0');
13356 switch (type)
13357 {
13358 case tfind_number:
bba74b36 13359 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13360 break;
13361 case tfind_pc:
bba74b36 13362 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13363 break;
13364 case tfind_tp:
bba74b36 13365 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13366 break;
13367 case tfind_range:
bba74b36
YQ
13368 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13369 phex_nz (addr2, 0));
35b1e5cc
SS
13370 break;
13371 case tfind_outside:
bba74b36
YQ
13372 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13373 phex_nz (addr2, 0));
35b1e5cc
SS
13374 break;
13375 default:
9b20d036 13376 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13377 }
13378
13379 putpkt (rs->buf);
b6bb3468 13380 reply = remote_get_noisy_reply ();
ad91cd99
PA
13381 if (*reply == '\0')
13382 error (_("Target does not support this command."));
35b1e5cc
SS
13383
13384 while (reply && *reply)
13385 switch (*reply)
13386 {
13387 case 'F':
f197e0f1
VP
13388 p = ++reply;
13389 target_frameno = (int) strtol (p, &reply, 16);
13390 if (reply == p)
13391 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13392 /* Don't update our remote traceframe number cache on failure
13393 to select a remote traceframe. */
f197e0f1
VP
13394 if (target_frameno == -1)
13395 return -1;
35b1e5cc
SS
13396 break;
13397 case 'T':
f197e0f1
VP
13398 p = ++reply;
13399 target_tracept = (int) strtol (p, &reply, 16);
13400 if (reply == p)
13401 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13402 break;
13403 case 'O': /* "OK"? */
13404 if (reply[1] == 'K' && reply[2] == '\0')
13405 reply += 2;
13406 else
13407 error (_("Bogus reply from target: %s"), reply);
13408 break;
13409 default:
13410 error (_("Bogus reply from target: %s"), reply);
13411 }
13412 if (tpp)
13413 *tpp = target_tracept;
e6e4e701 13414
262e1174 13415 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13416 return target_frameno;
13417}
13418
57810aa7 13419bool
f6ac5f3d 13420remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13421{
13422 struct remote_state *rs = get_remote_state ();
13423 char *reply;
13424 ULONGEST uval;
13425
e6e4e701
PA
13426 set_remote_traceframe ();
13427
8d64371b 13428 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13429 putpkt (rs->buf);
b6bb3468 13430 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13431 if (reply && *reply)
13432 {
13433 if (*reply == 'V')
13434 {
13435 unpack_varlen_hex (reply + 1, &uval);
13436 *val = (LONGEST) uval;
57810aa7 13437 return true;
35b1e5cc
SS
13438 }
13439 }
57810aa7 13440 return false;
35b1e5cc
SS
13441}
13442
f6ac5f3d
PA
13443int
13444remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13445{
13446 struct remote_state *rs = get_remote_state ();
13447 char *p, *reply;
13448
8d64371b 13449 p = rs->buf.data ();
00bf0b85
SS
13450 strcpy (p, "QTSave:");
13451 p += strlen (p);
8d64371b
TT
13452 if ((p - rs->buf.data ()) + strlen (filename) * 2
13453 >= get_remote_packet_size ())
00bf0b85 13454 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13455 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13456 *p++ = '\0';
13457 putpkt (rs->buf);
b6bb3468 13458 reply = remote_get_noisy_reply ();
d6c5869f 13459 if (*reply == '\0')
ad91cd99
PA
13460 error (_("Target does not support this command."));
13461 if (strcmp (reply, "OK") != 0)
13462 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13463 return 0;
13464}
13465
13466/* This is basically a memory transfer, but needs to be its own packet
13467 because we don't know how the target actually organizes its trace
13468 memory, plus we want to be able to ask for as much as possible, but
13469 not be unhappy if we don't get as much as we ask for. */
13470
f6ac5f3d
PA
13471LONGEST
13472remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13473{
13474 struct remote_state *rs = get_remote_state ();
13475 char *reply;
13476 char *p;
13477 int rslt;
13478
8d64371b 13479 p = rs->buf.data ();
00bf0b85
SS
13480 strcpy (p, "qTBuffer:");
13481 p += strlen (p);
13482 p += hexnumstr (p, offset);
13483 *p++ = ',';
13484 p += hexnumstr (p, len);
13485 *p++ = '\0';
13486
13487 putpkt (rs->buf);
b6bb3468 13488 reply = remote_get_noisy_reply ();
00bf0b85
SS
13489 if (reply && *reply)
13490 {
13491 /* 'l' by itself means we're at the end of the buffer and
13492 there is nothing more to get. */
13493 if (*reply == 'l')
13494 return 0;
13495
13496 /* Convert the reply into binary. Limit the number of bytes to
13497 convert according to our passed-in buffer size, rather than
13498 what was returned in the packet; if the target is
13499 unexpectedly generous and gives us a bigger reply than we
13500 asked for, we don't want to crash. */
b6bb3468 13501 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13502 return rslt;
13503 }
13504
13505 /* Something went wrong, flag as an error. */
13506 return -1;
13507}
13508
f6ac5f3d
PA
13509void
13510remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13511{
13512 struct remote_state *rs = get_remote_state ();
13513
4082afcc 13514 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13515 {
ad91cd99
PA
13516 char *reply;
13517
8d64371b
TT
13518 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13519 "QTDisconnected:%x", val);
33da3f1c 13520 putpkt (rs->buf);
b6bb3468 13521 reply = remote_get_noisy_reply ();
ad91cd99 13522 if (*reply == '\0')
33da3f1c 13523 error (_("Target does not support this command."));
ad91cd99
PA
13524 if (strcmp (reply, "OK") != 0)
13525 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13526 }
13527 else if (val)
13528 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13529}
13530
f6ac5f3d
PA
13531int
13532remote_target::core_of_thread (ptid_t ptid)
dc146f7c 13533{
5b6d1e4f 13534 thread_info *info = find_thread_ptid (this, ptid);
a744cf53 13535
7aabaf9d
SM
13536 if (info != NULL && info->priv != NULL)
13537 return get_remote_thread_info (info)->core;
13538
dc146f7c
VP
13539 return -1;
13540}
13541
f6ac5f3d
PA
13542void
13543remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13544{
13545 struct remote_state *rs = get_remote_state ();
ad91cd99 13546 char *reply;
4daf5ac0 13547
8d64371b
TT
13548 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13549 "QTBuffer:circular:%x", val);
4daf5ac0 13550 putpkt (rs->buf);
b6bb3468 13551 reply = remote_get_noisy_reply ();
ad91cd99 13552 if (*reply == '\0')
4daf5ac0 13553 error (_("Target does not support this command."));
ad91cd99
PA
13554 if (strcmp (reply, "OK") != 0)
13555 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13556}
13557
f6ac5f3d
PA
13558traceframe_info_up
13559remote_target::traceframe_info ()
b3b9301e 13560{
9018be22 13561 gdb::optional<gdb::char_vector> text
8b88a78e 13562 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13563 NULL);
9018be22
SM
13564 if (text)
13565 return parse_traceframe_info (text->data ());
b3b9301e
PA
13566
13567 return NULL;
13568}
13569
405f8e94
SS
13570/* Handle the qTMinFTPILen packet. Returns the minimum length of
13571 instruction on which a fast tracepoint may be placed. Returns -1
13572 if the packet is not supported, and 0 if the minimum instruction
13573 length is unknown. */
13574
f6ac5f3d
PA
13575int
13576remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13577{
13578 struct remote_state *rs = get_remote_state ();
13579 char *reply;
13580
e886a173
PA
13581 /* If we're not debugging a process yet, the IPA can't be
13582 loaded. */
13583 if (!target_has_execution)
13584 return 0;
13585
13586 /* Make sure the remote is pointing at the right process. */
13587 set_general_process ();
13588
8d64371b 13589 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13590 putpkt (rs->buf);
b6bb3468 13591 reply = remote_get_noisy_reply ();
405f8e94
SS
13592 if (*reply == '\0')
13593 return -1;
13594 else
13595 {
13596 ULONGEST min_insn_len;
13597
13598 unpack_varlen_hex (reply, &min_insn_len);
13599
13600 return (int) min_insn_len;
13601 }
13602}
13603
f6ac5f3d
PA
13604void
13605remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13606{
4082afcc 13607 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13608 {
13609 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13610 char *buf = rs->buf.data ();
13611 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13612 enum packet_result result;
13613
13614 gdb_assert (val >= 0 || val == -1);
13615 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13616 /* Send -1 as literal "-1" to avoid host size dependency. */
13617 if (val < 0)
13618 {
13619 *buf++ = '-';
13620 buf += hexnumstr (buf, (ULONGEST) -val);
13621 }
13622 else
13623 buf += hexnumstr (buf, (ULONGEST) val);
13624
13625 putpkt (rs->buf);
b6bb3468 13626 remote_get_noisy_reply ();
f6f899bf
HAQ
13627 result = packet_ok (rs->buf,
13628 &remote_protocol_packets[PACKET_QTBuffer_size]);
13629
13630 if (result != PACKET_OK)
8d64371b 13631 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13632 }
13633}
13634
57810aa7 13635bool
f6ac5f3d
PA
13636remote_target::set_trace_notes (const char *user, const char *notes,
13637 const char *stop_notes)
f196051f
SS
13638{
13639 struct remote_state *rs = get_remote_state ();
13640 char *reply;
8d64371b
TT
13641 char *buf = rs->buf.data ();
13642 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13643 int nbytes;
13644
13645 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13646 if (user)
13647 {
13648 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13649 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13650 buf += 2 * nbytes;
13651 *buf++ = ';';
13652 }
13653 if (notes)
13654 {
13655 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13656 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13657 buf += 2 * nbytes;
13658 *buf++ = ';';
13659 }
13660 if (stop_notes)
13661 {
13662 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13663 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13664 buf += 2 * nbytes;
13665 *buf++ = ';';
13666 }
13667 /* Ensure the buffer is terminated. */
13668 *buf = '\0';
13669
13670 putpkt (rs->buf);
b6bb3468 13671 reply = remote_get_noisy_reply ();
f196051f 13672 if (*reply == '\0')
57810aa7 13673 return false;
f196051f
SS
13674
13675 if (strcmp (reply, "OK") != 0)
13676 error (_("Bogus reply from target: %s"), reply);
13677
57810aa7 13678 return true;
f196051f
SS
13679}
13680
57810aa7
PA
13681bool
13682remote_target::use_agent (bool use)
d1feda86 13683{
4082afcc 13684 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13685 {
13686 struct remote_state *rs = get_remote_state ();
13687
13688 /* If the stub supports QAgent. */
8d64371b 13689 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13690 putpkt (rs->buf);
8d64371b 13691 getpkt (&rs->buf, 0);
d1feda86 13692
8d64371b 13693 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13694 {
f6ac5f3d 13695 ::use_agent = use;
57810aa7 13696 return true;
d1feda86
YQ
13697 }
13698 }
13699
57810aa7 13700 return false;
d1feda86
YQ
13701}
13702
57810aa7 13703bool
f6ac5f3d 13704remote_target::can_use_agent ()
d1feda86 13705{
4082afcc 13706 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13707}
13708
9accd112
MM
13709struct btrace_target_info
13710{
13711 /* The ptid of the traced thread. */
13712 ptid_t ptid;
f4abbc16
MM
13713
13714 /* The obtained branch trace configuration. */
13715 struct btrace_config conf;
9accd112
MM
13716};
13717
f4abbc16
MM
13718/* Reset our idea of our target's btrace configuration. */
13719
13720static void
6b8edb51 13721remote_btrace_reset (remote_state *rs)
f4abbc16 13722{
f4abbc16
MM
13723 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13724}
13725
f4abbc16
MM
13726/* Synchronize the configuration with the target. */
13727
6b8edb51
PA
13728void
13729remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13730{
d33501a5
MM
13731 struct packet_config *packet;
13732 struct remote_state *rs;
13733 char *buf, *pos, *endbuf;
13734
13735 rs = get_remote_state ();
8d64371b 13736 buf = rs->buf.data ();
d33501a5
MM
13737 endbuf = buf + get_remote_packet_size ();
13738
13739 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13740 if (packet_config_support (packet) == PACKET_ENABLE
13741 && conf->bts.size != rs->btrace_config.bts.size)
13742 {
13743 pos = buf;
13744 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13745 conf->bts.size);
13746
13747 putpkt (buf);
8d64371b 13748 getpkt (&rs->buf, 0);
d33501a5
MM
13749
13750 if (packet_ok (buf, packet) == PACKET_ERROR)
13751 {
13752 if (buf[0] == 'E' && buf[1] == '.')
13753 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13754 else
13755 error (_("Failed to configure the BTS buffer size."));
13756 }
13757
13758 rs->btrace_config.bts.size = conf->bts.size;
13759 }
b20a6524
MM
13760
13761 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13762 if (packet_config_support (packet) == PACKET_ENABLE
13763 && conf->pt.size != rs->btrace_config.pt.size)
13764 {
13765 pos = buf;
13766 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13767 conf->pt.size);
13768
13769 putpkt (buf);
8d64371b 13770 getpkt (&rs->buf, 0);
b20a6524
MM
13771
13772 if (packet_ok (buf, packet) == PACKET_ERROR)
13773 {
13774 if (buf[0] == 'E' && buf[1] == '.')
13775 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13776 else
13777 error (_("Failed to configure the trace buffer size."));
13778 }
13779
13780 rs->btrace_config.pt.size = conf->pt.size;
13781 }
f4abbc16
MM
13782}
13783
13784/* Read the current thread's btrace configuration from the target and
13785 store it into CONF. */
13786
13787static void
13788btrace_read_config (struct btrace_config *conf)
13789{
9018be22 13790 gdb::optional<gdb::char_vector> xml
8b88a78e 13791 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13792 if (xml)
13793 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13794}
13795
c0272db5
TW
13796/* Maybe reopen target btrace. */
13797
6b8edb51
PA
13798void
13799remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13800{
13801 struct remote_state *rs = get_remote_state ();
c0272db5 13802 int btrace_target_pushed = 0;
15766370 13803#if !defined (HAVE_LIBIPT)
c0272db5 13804 int warned = 0;
15766370 13805#endif
c0272db5 13806
aedbe3bb
CM
13807 /* Don't bother walking the entirety of the remote thread list when
13808 we know the feature isn't supported by the remote. */
13809 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13810 return;
13811
5ed8105e
PA
13812 scoped_restore_current_thread restore_thread;
13813
5b6d1e4f 13814 for (thread_info *tp : all_non_exited_threads (this))
c0272db5
TW
13815 {
13816 set_general_thread (tp->ptid);
13817
13818 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13819 btrace_read_config (&rs->btrace_config);
13820
13821 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13822 continue;
13823
13824#if !defined (HAVE_LIBIPT)
13825 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13826 {
13827 if (!warned)
13828 {
13829 warned = 1;
c4e12631
MM
13830 warning (_("Target is recording using Intel Processor Trace "
13831 "but support was disabled at compile time."));
c0272db5
TW
13832 }
13833
13834 continue;
13835 }
13836#endif /* !defined (HAVE_LIBIPT) */
13837
13838 /* Push target, once, but before anything else happens. This way our
13839 changes to the threads will be cleaned up by unpushing the target
13840 in case btrace_read_config () throws. */
13841 if (!btrace_target_pushed)
13842 {
13843 btrace_target_pushed = 1;
13844 record_btrace_push_target ();
13845 printf_filtered (_("Target is recording using %s.\n"),
13846 btrace_format_string (rs->btrace_config.format));
13847 }
13848
13849 tp->btrace.target = XCNEW (struct btrace_target_info);
13850 tp->btrace.target->ptid = tp->ptid;
13851 tp->btrace.target->conf = rs->btrace_config;
13852 }
c0272db5
TW
13853}
13854
9accd112
MM
13855/* Enable branch tracing. */
13856
f6ac5f3d
PA
13857struct btrace_target_info *
13858remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13859{
13860 struct btrace_target_info *tinfo = NULL;
b20a6524 13861 struct packet_config *packet = NULL;
9accd112 13862 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13863 char *buf = rs->buf.data ();
13864 char *endbuf = buf + get_remote_packet_size ();
9accd112 13865
b20a6524
MM
13866 switch (conf->format)
13867 {
13868 case BTRACE_FORMAT_BTS:
13869 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13870 break;
13871
13872 case BTRACE_FORMAT_PT:
13873 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13874 break;
13875 }
13876
13877 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13878 error (_("Target does not support branch tracing."));
13879
f4abbc16
MM
13880 btrace_sync_conf (conf);
13881
9accd112
MM
13882 set_general_thread (ptid);
13883
13884 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13885 putpkt (rs->buf);
8d64371b 13886 getpkt (&rs->buf, 0);
9accd112
MM
13887
13888 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13889 {
13890 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13891 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13892 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13893 else
13894 error (_("Could not enable branch tracing for %s."),
a068643d 13895 target_pid_to_str (ptid).c_str ());
9accd112
MM
13896 }
13897
8d749320 13898 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13899 tinfo->ptid = ptid;
13900
f4abbc16
MM
13901 /* If we fail to read the configuration, we lose some information, but the
13902 tracing itself is not impacted. */
a70b8144 13903 try
492d29ea
PA
13904 {
13905 btrace_read_config (&tinfo->conf);
13906 }
230d2906 13907 catch (const gdb_exception_error &err)
492d29ea
PA
13908 {
13909 if (err.message != NULL)
3d6e9d23 13910 warning ("%s", err.what ());
492d29ea 13911 }
f4abbc16 13912
9accd112
MM
13913 return tinfo;
13914}
13915
13916/* Disable branch tracing. */
13917
f6ac5f3d
PA
13918void
13919remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13920{
13921 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13922 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13923 char *buf = rs->buf.data ();
13924 char *endbuf = buf + get_remote_packet_size ();
9accd112 13925
4082afcc 13926 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13927 error (_("Target does not support branch tracing."));
13928
13929 set_general_thread (tinfo->ptid);
13930
13931 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13932 putpkt (rs->buf);
8d64371b 13933 getpkt (&rs->buf, 0);
9accd112
MM
13934
13935 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13936 {
13937 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13938 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13939 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13940 else
13941 error (_("Could not disable branch tracing for %s."),
a068643d 13942 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13943 }
13944
13945 xfree (tinfo);
13946}
13947
13948/* Teardown branch tracing. */
13949
f6ac5f3d
PA
13950void
13951remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13952{
13953 /* We must not talk to the target during teardown. */
13954 xfree (tinfo);
13955}
13956
13957/* Read the branch trace. */
13958
f6ac5f3d
PA
13959enum btrace_error
13960remote_target::read_btrace (struct btrace_data *btrace,
13961 struct btrace_target_info *tinfo,
13962 enum btrace_read_type type)
9accd112
MM
13963{
13964 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13965 const char *annex;
9accd112 13966
4082afcc 13967 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13968 error (_("Target does not support branch tracing."));
13969
13970#if !defined(HAVE_LIBEXPAT)
13971 error (_("Cannot process branch tracing result. XML parsing not supported."));
13972#endif
13973
13974 switch (type)
13975 {
864089d2 13976 case BTRACE_READ_ALL:
9accd112
MM
13977 annex = "all";
13978 break;
864089d2 13979 case BTRACE_READ_NEW:
9accd112
MM
13980 annex = "new";
13981 break;
969c39fb
MM
13982 case BTRACE_READ_DELTA:
13983 annex = "delta";
13984 break;
9accd112
MM
13985 default:
13986 internal_error (__FILE__, __LINE__,
13987 _("Bad branch tracing read type: %u."),
13988 (unsigned int) type);
13989 }
13990
9018be22 13991 gdb::optional<gdb::char_vector> xml
8b88a78e 13992 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13993 if (!xml)
969c39fb 13994 return BTRACE_ERR_UNKNOWN;
9accd112 13995
9018be22 13996 parse_xml_btrace (btrace, xml->data ());
9accd112 13997
969c39fb 13998 return BTRACE_ERR_NONE;
9accd112
MM
13999}
14000
f6ac5f3d
PA
14001const struct btrace_config *
14002remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
14003{
14004 return &tinfo->conf;
14005}
14006
57810aa7 14007bool
f6ac5f3d 14008remote_target::augmented_libraries_svr4_read ()
ced63ec0 14009{
4082afcc
PA
14010 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14011 == PACKET_ENABLE);
ced63ec0
GB
14012}
14013
9dd130a0
TT
14014/* Implementation of to_load. */
14015
f6ac5f3d
PA
14016void
14017remote_target::load (const char *name, int from_tty)
9dd130a0
TT
14018{
14019 generic_load (name, from_tty);
14020}
14021
c78fa86a
GB
14022/* Accepts an integer PID; returns a string representing a file that
14023 can be opened on the remote side to get the symbols for the child
14024 process. Returns NULL if the operation is not supported. */
14025
f6ac5f3d
PA
14026char *
14027remote_target::pid_to_exec_file (int pid)
c78fa86a 14028{
9018be22 14029 static gdb::optional<gdb::char_vector> filename;
835205d0 14030 char *annex = NULL;
c78fa86a
GB
14031
14032 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14033 return NULL;
14034
5b6d1e4f 14035 inferior *inf = find_inferior_pid (this, pid);
835205d0
GB
14036 if (inf == NULL)
14037 internal_error (__FILE__, __LINE__,
14038 _("not currently attached to process %d"), pid);
14039
14040 if (!inf->fake_pid_p)
14041 {
14042 const int annex_size = 9;
14043
224c3ddb 14044 annex = (char *) alloca (annex_size);
835205d0
GB
14045 xsnprintf (annex, annex_size, "%x", pid);
14046 }
14047
8b88a78e 14048 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
14049 TARGET_OBJECT_EXEC_FILE, annex);
14050
9018be22 14051 return filename ? filename->data () : nullptr;
c78fa86a
GB
14052}
14053
750ce8d1
YQ
14054/* Implement the to_can_do_single_step target_ops method. */
14055
f6ac5f3d
PA
14056int
14057remote_target::can_do_single_step ()
750ce8d1
YQ
14058{
14059 /* We can only tell whether target supports single step or not by
14060 supported s and S vCont actions if the stub supports vContSupported
14061 feature. If the stub doesn't support vContSupported feature,
14062 we have conservatively to think target doesn't supports single
14063 step. */
14064 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14065 {
14066 struct remote_state *rs = get_remote_state ();
14067
14068 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14069 remote_vcont_probe ();
750ce8d1
YQ
14070
14071 return rs->supports_vCont.s && rs->supports_vCont.S;
14072 }
14073 else
14074 return 0;
14075}
14076
3a00c802
PA
14077/* Implementation of the to_execution_direction method for the remote
14078 target. */
14079
f6ac5f3d
PA
14080enum exec_direction_kind
14081remote_target::execution_direction ()
3a00c802
PA
14082{
14083 struct remote_state *rs = get_remote_state ();
14084
14085 return rs->last_resume_exec_dir;
14086}
14087
f6327dcb
KB
14088/* Return pointer to the thread_info struct which corresponds to
14089 THREAD_HANDLE (having length HANDLE_LEN). */
14090
f6ac5f3d
PA
14091thread_info *
14092remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14093 int handle_len,
14094 inferior *inf)
f6327dcb 14095{
5b6d1e4f 14096 for (thread_info *tp : all_non_exited_threads (this))
f6327dcb 14097 {
7aabaf9d 14098 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14099
14100 if (tp->inf == inf && priv != NULL)
14101 {
7aabaf9d 14102 if (handle_len != priv->thread_handle.size ())
f6327dcb 14103 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
14104 handle_len, priv->thread_handle.size ());
14105 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
14106 handle_len) == 0)
14107 return tp;
14108 }
14109 }
14110
14111 return NULL;
14112}
14113
3d6c6204
KB
14114gdb::byte_vector
14115remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14116{
14117 remote_thread_info *priv = get_remote_thread_info (tp);
14118 return priv->thread_handle;
14119}
14120
57810aa7 14121bool
f6ac5f3d 14122remote_target::can_async_p ()
6426a772 14123{
5d93a237
TT
14124 struct remote_state *rs = get_remote_state ();
14125
3015c064
SM
14126 /* We don't go async if the user has explicitly prevented it with the
14127 "maint set target-async" command. */
c6ebd6cf 14128 if (!target_async_permitted)
57810aa7 14129 return false;
75c99385 14130
23860348 14131 /* We're async whenever the serial device is. */
5d93a237 14132 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14133}
14134
57810aa7 14135bool
f6ac5f3d 14136remote_target::is_async_p ()
6426a772 14137{
5d93a237
TT
14138 struct remote_state *rs = get_remote_state ();
14139
c6ebd6cf 14140 if (!target_async_permitted)
75c99385 14141 /* We only enable async when the user specifically asks for it. */
57810aa7 14142 return false;
75c99385 14143
23860348 14144 /* We're async whenever the serial device is. */
5d93a237 14145 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14146}
14147
2acceee2
JM
14148/* Pass the SERIAL event on and up to the client. One day this code
14149 will be able to delay notifying the client of an event until the
23860348 14150 point where an entire packet has been received. */
2acceee2 14151
2acceee2
JM
14152static serial_event_ftype remote_async_serial_handler;
14153
6426a772 14154static void
819cc324 14155remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14156{
2acceee2
JM
14157 /* Don't propogate error information up to the client. Instead let
14158 the client find out about the error by querying the target. */
6a3753b3 14159 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14160}
14161
74531fed
PA
14162static void
14163remote_async_inferior_event_handler (gdb_client_data data)
14164{
6b8edb51 14165 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14166}
14167
5b6d1e4f
PA
14168int
14169remote_target::async_wait_fd ()
14170{
14171 struct remote_state *rs = get_remote_state ();
14172 return rs->remote_desc->fd;
14173}
14174
f6ac5f3d
PA
14175void
14176remote_target::async (int enable)
2acceee2 14177{
5d93a237
TT
14178 struct remote_state *rs = get_remote_state ();
14179
6a3753b3 14180 if (enable)
2acceee2 14181 {
88b496c3 14182 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14183
14184 /* If there are pending events in the stop reply queue tell the
14185 event loop to process them. */
953edf2b 14186 if (!rs->stop_reply_queue.empty ())
6b8edb51 14187 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14188 /* For simplicity, below we clear the pending events token
14189 without remembering whether it is marked, so here we always
14190 mark it. If there's actually no pending notification to
14191 process, this ends up being a no-op (other than a spurious
14192 event-loop wakeup). */
14193 if (target_is_non_stop_p ())
14194 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14195 }
14196 else
b7d2e916
PA
14197 {
14198 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14199 /* If the core is disabling async, it doesn't want to be
14200 disturbed with target events. Clear all async event sources
14201 too. */
6b8edb51 14202 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14203 if (target_is_non_stop_p ())
14204 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14205 }
6426a772
JM
14206}
14207
65706a29
PA
14208/* Implementation of the to_thread_events method. */
14209
f6ac5f3d
PA
14210void
14211remote_target::thread_events (int enable)
65706a29
PA
14212{
14213 struct remote_state *rs = get_remote_state ();
14214 size_t size = get_remote_packet_size ();
65706a29
PA
14215
14216 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14217 return;
14218
8d64371b 14219 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14220 putpkt (rs->buf);
8d64371b 14221 getpkt (&rs->buf, 0);
65706a29
PA
14222
14223 switch (packet_ok (rs->buf,
14224 &remote_protocol_packets[PACKET_QThreadEvents]))
14225 {
14226 case PACKET_OK:
8d64371b
TT
14227 if (strcmp (rs->buf.data (), "OK") != 0)
14228 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14229 break;
14230 case PACKET_ERROR:
8d64371b 14231 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14232 break;
14233 case PACKET_UNKNOWN:
14234 break;
14235 }
14236}
14237
d471ea57 14238static void
981a3fb3 14239show_remote_cmd (const char *args, int from_tty)
d471ea57 14240{
37a105a1 14241 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14242 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14243 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14244 struct ui_out *uiout = current_uiout;
37a105a1 14245
2e783024 14246 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14247 for (; list != NULL; list = list->next)
14248 if (strcmp (list->name, "Z-packet") == 0)
14249 continue;
427c3a89
DJ
14250 else if (list->type == not_set_cmd)
14251 /* Alias commands are exactly like the original, except they
14252 don't have the normal type. */
14253 continue;
14254 else
37a105a1 14255 {
2e783024 14256 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14257
112e8700
SM
14258 uiout->field_string ("name", list->name);
14259 uiout->text (": ");
427c3a89 14260 if (list->type == show_cmd)
f5c4fcd9 14261 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14262 else
14263 cmd_func (list, NULL, from_tty);
37a105a1 14264 }
d471ea57 14265}
5a2468f5 14266
0f71a2f6 14267
23860348 14268/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14269static void
14270remote_new_objfile (struct objfile *objfile)
14271{
6b8edb51 14272 remote_target *remote = get_current_remote_target ();
5d93a237 14273
6b8edb51
PA
14274 if (remote != NULL) /* Have a remote connection. */
14275 remote->remote_check_symbols ();
dc8acb97
MS
14276}
14277
00bf0b85
SS
14278/* Pull all the tracepoints defined on the target and create local
14279 data structures representing them. We don't want to create real
14280 tracepoints yet, we don't want to mess up the user's existing
14281 collection. */
14282
f6ac5f3d
PA
14283int
14284remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14285{
00bf0b85
SS
14286 struct remote_state *rs = get_remote_state ();
14287 char *p;
d5551862 14288
00bf0b85
SS
14289 /* Ask for a first packet of tracepoint definition. */
14290 putpkt ("qTfP");
8d64371b
TT
14291 getpkt (&rs->buf, 0);
14292 p = rs->buf.data ();
00bf0b85 14293 while (*p && *p != 'l')
d5551862 14294 {
00bf0b85
SS
14295 parse_tracepoint_definition (p, utpp);
14296 /* Ask for another packet of tracepoint definition. */
14297 putpkt ("qTsP");
8d64371b
TT
14298 getpkt (&rs->buf, 0);
14299 p = rs->buf.data ();
d5551862 14300 }
00bf0b85 14301 return 0;
d5551862
SS
14302}
14303
f6ac5f3d
PA
14304int
14305remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14306{
00bf0b85 14307 struct remote_state *rs = get_remote_state ();
d5551862 14308 char *p;
d5551862 14309
00bf0b85
SS
14310 /* Ask for a first packet of variable definition. */
14311 putpkt ("qTfV");
8d64371b
TT
14312 getpkt (&rs->buf, 0);
14313 p = rs->buf.data ();
00bf0b85 14314 while (*p && *p != 'l')
d5551862 14315 {
00bf0b85
SS
14316 parse_tsv_definition (p, utsvp);
14317 /* Ask for another packet of variable definition. */
14318 putpkt ("qTsV");
8d64371b
TT
14319 getpkt (&rs->buf, 0);
14320 p = rs->buf.data ();
d5551862 14321 }
00bf0b85 14322 return 0;
d5551862
SS
14323}
14324
c1e36e3e
PA
14325/* The "set/show range-stepping" show hook. */
14326
14327static void
14328show_range_stepping (struct ui_file *file, int from_tty,
14329 struct cmd_list_element *c,
14330 const char *value)
14331{
14332 fprintf_filtered (file,
14333 _("Debugger's willingness to use range stepping "
14334 "is %s.\n"), value);
14335}
14336
6b8edb51
PA
14337/* Return true if the vCont;r action is supported by the remote
14338 stub. */
14339
14340bool
14341remote_target::vcont_r_supported ()
14342{
14343 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14344 remote_vcont_probe ();
14345
14346 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14347 && get_remote_state ()->supports_vCont.r);
14348}
14349
c1e36e3e
PA
14350/* The "set/show range-stepping" set hook. */
14351
14352static void
eb4c3f4a 14353set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14354 struct cmd_list_element *c)
14355{
6b8edb51
PA
14356 /* When enabling, check whether range stepping is actually supported
14357 by the target, and warn if not. */
c1e36e3e
PA
14358 if (use_range_stepping)
14359 {
6b8edb51
PA
14360 remote_target *remote = get_current_remote_target ();
14361 if (remote == NULL
14362 || !remote->vcont_r_supported ())
14363 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14364 }
14365}
14366
6c265988 14367void _initialize_remote ();
c906108c 14368void
6c265988 14369_initialize_remote ()
c906108c 14370{
9a7071a8 14371 struct cmd_list_element *cmd;
6f937416 14372 const char *cmd_name;
ea9c271d 14373
0f71a2f6 14374 /* architecture specific data */
29709017
DJ
14375 remote_g_packet_data_handle =
14376 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14377
d9f719f1
PA
14378 add_target (remote_target_info, remote_target::open);
14379 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14380
dc8acb97 14381 /* Hook into new objfile notification. */
76727919 14382 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14383
c906108c
SS
14384#if 0
14385 init_remote_threadtests ();
14386#endif
14387
23860348 14388 /* set/show remote ... */
d471ea57 14389
0743fc83 14390 add_basic_prefix_cmd ("remote", class_maintenance, _("\
590042fc 14391Remote protocol specific variables.\n\
5a2468f5 14392Configure various remote-protocol specific variables such as\n\
590042fc 14393the packets being used."),
0743fc83
TT
14394 &remote_set_cmdlist, "set remote ",
14395 0 /* allow-unknown */, &setlist);
1bedd215 14396 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14397Remote protocol specific variables.\n\
5a2468f5 14398Configure various remote-protocol specific variables such as\n\
590042fc 14399the packets being used."),
cff3e48b 14400 &remote_show_cmdlist, "show remote ",
23860348 14401 0 /* allow-unknown */, &showlist);
5a2468f5 14402
1a966eab
AC
14403 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14404Compare section data on target to the exec file.\n\
95cf3b38
DT
14405Argument is a single section name (default: all loaded sections).\n\
14406To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14407 &cmdlist);
14408
1a966eab
AC
14409 add_cmd ("packet", class_maintenance, packet_command, _("\
14410Send an arbitrary packet to a remote target.\n\
c906108c
SS
14411 maintenance packet TEXT\n\
14412If GDB is talking to an inferior via the GDB serial protocol, then\n\
14413this command sends the string TEXT to the inferior, and displays the\n\
14414response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14415terminating `#' character and checksum."),
c906108c
SS
14416 &maintenancelist);
14417
7915a72c
AC
14418 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14419Set whether to send break if interrupted."), _("\
14420Show whether to send break if interrupted."), _("\
14421If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14422 set_remotebreak, show_remotebreak,
e707bbc2 14423 &setlist, &showlist);
9a7071a8
JB
14424 cmd_name = "remotebreak";
14425 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14426 deprecate_cmd (cmd, "set remote interrupt-sequence");
14427 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14428 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14429 deprecate_cmd (cmd, "show remote interrupt-sequence");
14430
14431 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14432 interrupt_sequence_modes, &interrupt_sequence_mode,
14433 _("\
9a7071a8
JB
14434Set interrupt sequence to remote target."), _("\
14435Show interrupt sequence to remote target."), _("\
14436Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14437 NULL, show_interrupt_sequence,
14438 &remote_set_cmdlist,
14439 &remote_show_cmdlist);
14440
14441 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14442 &interrupt_on_connect, _("\
590042fc
PW
14443Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14444Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14445If set, interrupt sequence is sent to remote target."),
14446 NULL, NULL,
14447 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14448
23860348 14449 /* Install commands for configuring memory read/write packets. */
11cf8741 14450
1a966eab
AC
14451 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14452Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14453 &setlist);
1a966eab
AC
14454 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14455Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14456 &showlist);
14457 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14458 set_memory_write_packet_size, _("\
14459Set the maximum number of bytes per memory-write packet.\n\
14460Specify the number of bytes in a packet or 0 (zero) for the\n\
14461default packet size. The actual limit is further reduced\n\
14462dependent on the target. Specify ``fixed'' to disable the\n\
14463further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14464 &remote_set_cmdlist);
14465 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14466 set_memory_read_packet_size, _("\
14467Set the maximum number of bytes per memory-read packet.\n\
14468Specify the number of bytes in a packet or 0 (zero) for the\n\
14469default packet size. The actual limit is further reduced\n\
14470dependent on the target. Specify ``fixed'' to disable the\n\
14471further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14472 &remote_set_cmdlist);
14473 add_cmd ("memory-write-packet-size", no_class,
14474 show_memory_write_packet_size,
1a966eab 14475 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14476 &remote_show_cmdlist);
14477 add_cmd ("memory-read-packet-size", no_class,
14478 show_memory_read_packet_size,
1a966eab 14479 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14480 &remote_show_cmdlist);
c906108c 14481
055303e2 14482 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14483 &remote_hw_watchpoint_limit, _("\
14484Set the maximum number of target hardware watchpoints."), _("\
14485Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14486Specify \"unlimited\" for unlimited hardware watchpoints."),
14487 NULL, show_hardware_watchpoint_limit,
14488 &remote_set_cmdlist,
14489 &remote_show_cmdlist);
14490 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14491 no_class,
480a3f21
PW
14492 &remote_hw_watchpoint_length_limit, _("\
14493Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14494Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14495Specify \"unlimited\" to allow watchpoints of unlimited size."),
14496 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14497 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14498 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14499 &remote_hw_breakpoint_limit, _("\
14500Set the maximum number of target hardware breakpoints."), _("\
14501Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14502Specify \"unlimited\" for unlimited hardware breakpoints."),
14503 NULL, show_hardware_breakpoint_limit,
b3f42336 14504 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14505
1b493192
PA
14506 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14507 &remote_address_size, _("\
4d28ad1e
AC
14508Set the maximum size of the address (in bits) in a memory packet."), _("\
14509Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14510 NULL,
14511 NULL, /* FIXME: i18n: */
14512 &setlist, &showlist);
c906108c 14513
ca4f7f8b
PA
14514 init_all_packet_configs ();
14515
444abaca 14516 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14517 "X", "binary-download", 1);
0f71a2f6 14518
444abaca 14519 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14520 "vCont", "verbose-resume", 0);
506fb367 14521
89be2091
DJ
14522 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14523 "QPassSignals", "pass-signals", 0);
14524
82075af2
JS
14525 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14526 "QCatchSyscalls", "catch-syscalls", 0);
14527
9b224c5e
PA
14528 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14529 "QProgramSignals", "program-signals", 0);
14530
bc3b087d
SDJ
14531 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14532 "QSetWorkingDir", "set-working-dir", 0);
14533
aefd8b33
SDJ
14534 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14535 "QStartupWithShell", "startup-with-shell", 0);
14536
0a2dde4a
SDJ
14537 add_packet_config_cmd (&remote_protocol_packets
14538 [PACKET_QEnvironmentHexEncoded],
14539 "QEnvironmentHexEncoded", "environment-hex-encoded",
14540 0);
14541
14542 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14543 "QEnvironmentReset", "environment-reset",
14544 0);
14545
14546 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14547 "QEnvironmentUnset", "environment-unset",
14548 0);
14549
444abaca 14550 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14551 "qSymbol", "symbol-lookup", 0);
dc8acb97 14552
444abaca 14553 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14554 "P", "set-register", 1);
d471ea57 14555
444abaca 14556 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14557 "p", "fetch-register", 1);
b96ec7ac 14558
444abaca 14559 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14560 "Z0", "software-breakpoint", 0);
d471ea57 14561
444abaca 14562 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14563 "Z1", "hardware-breakpoint", 0);
d471ea57 14564
444abaca 14565 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14566 "Z2", "write-watchpoint", 0);
d471ea57 14567
444abaca 14568 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14569 "Z3", "read-watchpoint", 0);
d471ea57 14570
444abaca 14571 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14572 "Z4", "access-watchpoint", 0);
d471ea57 14573
0876f84a
DJ
14574 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14575 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14576
c78fa86a
GB
14577 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14578 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14579
23181151
DJ
14580 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14581 "qXfer:features:read", "target-features", 0);
14582
cfa9d6d9
DJ
14583 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14584 "qXfer:libraries:read", "library-info", 0);
14585
2268b414
JK
14586 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14587 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14588
fd79ecee
DJ
14589 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14590 "qXfer:memory-map:read", "memory-map", 0);
14591
07e059b5
VP
14592 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14593 "qXfer:osdata:read", "osdata", 0);
14594
dc146f7c
VP
14595 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14596 "qXfer:threads:read", "threads", 0);
14597
4aa995e1
PA
14598 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14599 "qXfer:siginfo:read", "read-siginfo-object", 0);
14600
14601 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14602 "qXfer:siginfo:write", "write-siginfo-object", 0);
14603
b3b9301e
PA
14604 add_packet_config_cmd
14605 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14606 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14607
169081d0
TG
14608 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14609 "qXfer:uib:read", "unwind-info-block", 0);
14610
444abaca 14611 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14612 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14613 0);
14614
711e434b
PM
14615 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14616 "qGetTIBAddr", "get-thread-information-block-address",
14617 0);
14618
40ab02ce
MS
14619 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14620 "bc", "reverse-continue", 0);
14621
14622 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14623 "bs", "reverse-step", 0);
14624
be2a5f71
DJ
14625 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14626 "qSupported", "supported-packets", 0);
14627
08388c79
DE
14628 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14629 "qSearch:memory", "search-memory", 0);
14630
bd3eecc3
PA
14631 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14632 "qTStatus", "trace-status", 0);
14633
15a201c8
GB
14634 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14635 "vFile:setfs", "hostio-setfs", 0);
14636
a6b151f1
DJ
14637 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14638 "vFile:open", "hostio-open", 0);
14639
14640 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14641 "vFile:pread", "hostio-pread", 0);
14642
14643 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14644 "vFile:pwrite", "hostio-pwrite", 0);
14645
14646 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14647 "vFile:close", "hostio-close", 0);
14648
14649 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14650 "vFile:unlink", "hostio-unlink", 0);
14651
b9e7b9c3
UW
14652 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14653 "vFile:readlink", "hostio-readlink", 0);
14654
0a93529c
GB
14655 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14656 "vFile:fstat", "hostio-fstat", 0);
14657
2d717e4f
DJ
14658 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14659 "vAttach", "attach", 0);
14660
14661 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14662 "vRun", "run", 0);
14663
a6f3e723
SL
14664 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14665 "QStartNoAckMode", "noack", 0);
14666
82f73884
PA
14667 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14668 "vKill", "kill", 0);
14669
0b16c5cf
PA
14670 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14671 "qAttached", "query-attached", 0);
14672
782b2b07 14673 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14674 "ConditionalTracepoints",
14675 "conditional-tracepoints", 0);
3788aec7
LM
14676
14677 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14678 "ConditionalBreakpoints",
14679 "conditional-breakpoints", 0);
14680
d3ce09f5
SS
14681 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14682 "BreakpointCommands",
14683 "breakpoint-commands", 0);
14684
7a697b8d
SS
14685 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14686 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14687
409873ef
SS
14688 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14689 "TracepointSource", "TracepointSource", 0);
14690
d914c394
SS
14691 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14692 "QAllow", "allow", 0);
14693
0fb4aa4b
PA
14694 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14695 "StaticTracepoints", "static-tracepoints", 0);
14696
1e4d1764
YQ
14697 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14698 "InstallInTrace", "install-in-trace", 0);
14699
0fb4aa4b
PA
14700 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14701 "qXfer:statictrace:read", "read-sdata-object", 0);
14702
78d85199
YQ
14703 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14704 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14705
03583c20
UW
14706 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14707 "QDisableRandomization", "disable-randomization", 0);
14708
d1feda86
YQ
14709 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14710 "QAgent", "agent", 0);
14711
f6f899bf
HAQ
14712 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14713 "QTBuffer:size", "trace-buffer-size", 0);
14714
9accd112
MM
14715 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14716 "Qbtrace:off", "disable-btrace", 0);
14717
14718 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14719 "Qbtrace:bts", "enable-btrace-bts", 0);
14720
14721 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14722 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14723
14724 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14725 "qXfer:btrace", "read-btrace", 0);
14726
f4abbc16
MM
14727 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14728 "qXfer:btrace-conf", "read-btrace-conf", 0);
14729
d33501a5
MM
14730 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14731 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14732
73b8c1fd
PA
14733 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14734 "multiprocess-feature", "multiprocess-feature", 0);
14735
f7e6eed5
PA
14736 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14737 "swbreak-feature", "swbreak-feature", 0);
14738
14739 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14740 "hwbreak-feature", "hwbreak-feature", 0);
14741
89245bc0
DB
14742 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14743 "fork-event-feature", "fork-event-feature", 0);
14744
14745 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14746 "vfork-event-feature", "vfork-event-feature", 0);
14747
b20a6524
MM
14748 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14749 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14750
750ce8d1
YQ
14751 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14752 "vContSupported", "verbose-resume-supported", 0);
14753
94585166
DB
14754 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14755 "exec-event-feature", "exec-event-feature", 0);
14756
de979965
PA
14757 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14758 "vCtrlC", "ctrl-c", 0);
14759
65706a29
PA
14760 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14761 "QThreadEvents", "thread-events", 0);
14762
f2faf941
PA
14763 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14764 "N stop reply", "no-resumed-stop-reply", 0);
14765
0b736949
DB
14766 /* Assert that we've registered "set remote foo-packet" commands
14767 for all packet configs. */
ca4f7f8b
PA
14768 {
14769 int i;
14770
14771 for (i = 0; i < PACKET_MAX; i++)
14772 {
14773 /* Ideally all configs would have a command associated. Some
14774 still don't though. */
14775 int excepted;
14776
14777 switch (i)
14778 {
14779 case PACKET_QNonStop:
ca4f7f8b
PA
14780 case PACKET_EnableDisableTracepoints_feature:
14781 case PACKET_tracenz_feature:
14782 case PACKET_DisconnectedTracing_feature:
14783 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14784 case PACKET_qCRC:
14785 /* Additions to this list need to be well justified:
14786 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14787 excepted = 1;
14788 break;
14789 default:
14790 excepted = 0;
14791 break;
14792 }
14793
14794 /* This catches both forgetting to add a config command, and
14795 forgetting to remove a packet from the exception list. */
14796 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14797 }
14798 }
14799
37a105a1
DJ
14800 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14801 Z sub-packet has its own set and show commands, but users may
14802 have sets to this variable in their .gdbinit files (or in their
14803 documentation). */
e9e68a56 14804 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14805 &remote_Z_packet_detect, _("\
590042fc
PW
14806Set use of remote protocol `Z' packets."), _("\
14807Show use of remote protocol `Z' packets."), _("\
3b64bf98 14808When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14809packets."),
e9e68a56 14810 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14811 show_remote_protocol_Z_packet_cmd,
14812 /* FIXME: i18n: Use of remote protocol
14813 `Z' packets is %s. */
e9e68a56 14814 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14815
0743fc83 14816 add_basic_prefix_cmd ("remote", class_files, _("\
590042fc 14817Manipulate files on the remote system.\n\
a6b151f1 14818Transfer files to and from the remote target system."),
0743fc83
TT
14819 &remote_cmdlist, "remote ",
14820 0 /* allow-unknown */, &cmdlist);
a6b151f1
DJ
14821
14822 add_cmd ("put", class_files, remote_put_command,
14823 _("Copy a local file to the remote system."),
14824 &remote_cmdlist);
14825
14826 add_cmd ("get", class_files, remote_get_command,
14827 _("Copy a remote file to the local system."),
14828 &remote_cmdlist);
14829
14830 add_cmd ("delete", class_files, remote_delete_command,
14831 _("Delete a remote file."),
14832 &remote_cmdlist);
14833
2d717e4f 14834 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14835 &remote_exec_file_var, _("\
590042fc
PW
14836Set the remote pathname for \"run\"."), _("\
14837Show the remote pathname for \"run\"."), NULL,
94585166
DB
14838 set_remote_exec_file,
14839 show_remote_exec_file,
14840 &remote_set_cmdlist,
14841 &remote_show_cmdlist);
2d717e4f 14842
c1e36e3e
PA
14843 add_setshow_boolean_cmd ("range-stepping", class_run,
14844 &use_range_stepping, _("\
14845Enable or disable range stepping."), _("\
14846Show whether target-assisted range stepping is enabled."), _("\
14847If on, and the target supports it, when stepping a source line, GDB\n\
14848tells the target to step the corresponding range of addresses itself instead\n\
14849of issuing multiple single-steps. This speeds up source level\n\
14850stepping. If off, GDB always issues single-steps, even if range\n\
14851stepping is supported by the target. The default is on."),
14852 set_range_stepping,
14853 show_range_stepping,
14854 &setlist,
14855 &showlist);
14856
ed2b7c17
TT
14857 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14858Set watchdog timer."), _("\
14859Show watchdog timer."), _("\
14860When non-zero, this timeout is used instead of waiting forever for a target\n\
14861to finish a low-level step or continue operation. If the specified amount\n\
14862of time passes without a response from the target, an error occurs."),
14863 NULL,
14864 show_watchdog,
14865 &setlist, &showlist);
14866
6cc8564b
LM
14867 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
14868 &remote_packet_max_chars, _("\
14869Set the maximum number of characters to display for each remote packet."), _("\
14870Show the maximum number of characters to display for each remote packet."), _("\
14871Specify \"unlimited\" to display all the characters."),
14872 NULL, show_remote_packet_max_chars,
14873 &setdebuglist, &showdebuglist);
14874
449092f6 14875 /* Eventually initialize fileio. See fileio.c */
3f4d92eb 14876 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14877}
This page took 3.940838 seconds and 4 git commands to generate.