Simplify exception handling
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
42a4f53d 3 Copyright (C) 1988-2019 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"
0747795c
TT
45#include "common/filestuff.h"
46#include "common/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
0747795c 50#include "common/gdb_sys_time.h"
c906108c 51
43ff13b4 52#include "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"
0747795c 71#include "common/agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
2ec845e7 75#include "common/scoped_restore.h"
0747795c 76#include "common/environ.h"
f6327dcb 77#include "common/byte-vector.h"
9d6eea31 78#include <unordered_map>
35b1e5cc 79
f6ac5f3d
PA
80/* The remote target. */
81
d9f719f1
PA
82static const char remote_doc[] = N_("\
83Use a remote computer via a serial line, using a gdb-specific protocol.\n\
84Specify the serial device it is connected to\n\
85(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
86
6b8edb51
PA
87#define OPAQUETHREADBYTES 8
88
89/* a 64 bit opaque identifier */
90typedef unsigned char threadref[OPAQUETHREADBYTES];
91
92struct gdb_ext_thread_info;
93struct threads_listing_context;
94typedef int (*rmt_thread_action) (threadref *ref, void *context);
95struct protocol_feature;
96struct packet_reg;
97
98struct stop_reply;
32603266 99typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
100
101/* Generic configuration support for packets the stub optionally
102 supports. Allows the user to specify the use of the packet as well
103 as allowing GDB to auto-detect support in the remote stub. */
104
105enum packet_support
106 {
107 PACKET_SUPPORT_UNKNOWN = 0,
108 PACKET_ENABLE,
109 PACKET_DISABLE
110 };
111
112/* Analyze a packet's return value and update the packet config
113 accordingly. */
114
115enum packet_result
116{
117 PACKET_ERROR,
118 PACKET_OK,
119 PACKET_UNKNOWN
120};
121
122struct threads_listing_context;
3c69da40
PA
123
124/* Stub vCont actions support.
125
126 Each field is a boolean flag indicating whether the stub reports
127 support for the corresponding action. */
128
129struct vCont_action_support
130{
131 /* vCont;t */
132 bool t = false;
133
134 /* vCont;r */
135 bool r = false;
136
137 /* vCont;s */
138 bool s = false;
139
140 /* vCont;S */
141 bool S = false;
142};
143
144/* About this many threadisds fit in a packet. */
145
146#define MAXTHREADLISTRESULTS 32
147
148/* Data for the vFile:pread readahead cache. */
149
150struct readahead_cache
151{
152 /* Invalidate the readahead cache. */
153 void invalidate ();
154
155 /* Invalidate the readahead cache if it is holding data for FD. */
156 void invalidate_fd (int fd);
157
158 /* Serve pread from the readahead cache. Returns number of bytes
159 read, or 0 if the request can't be served from the cache. */
160 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
161
162 /* The file descriptor for the file that is being cached. -1 if the
163 cache is invalid. */
164 int fd = -1;
165
166 /* The offset into the file that the cache buffer corresponds
167 to. */
168 ULONGEST offset = 0;
169
170 /* The buffer holding the cache contents. */
171 gdb_byte *buf = nullptr;
172 /* The buffer's size. We try to read as much as fits into a packet
173 at a time. */
174 size_t bufsize = 0;
175
176 /* Cache hit and miss counters. */
177 ULONGEST hit_count = 0;
178 ULONGEST miss_count = 0;
179};
180
181/* Description of the remote protocol for a given architecture. */
182
183struct packet_reg
184{
185 long offset; /* Offset into G packet. */
186 long regnum; /* GDB's internal register number. */
187 LONGEST pnum; /* Remote protocol register number. */
188 int in_g_packet; /* Always part of G packet. */
189 /* long size in bytes; == register_size (target_gdbarch (), regnum);
190 at present. */
191 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
192 at present. */
193};
194
195struct remote_arch_state
196{
197 explicit remote_arch_state (struct gdbarch *gdbarch);
198
199 /* Description of the remote protocol registers. */
200 long sizeof_g_packet;
201
202 /* Description of the remote protocol registers indexed by REGNUM
203 (making an array gdbarch_num_regs in size). */
204 std::unique_ptr<packet_reg[]> regs;
205
206 /* This is the size (in chars) of the first response to the ``g''
207 packet. It is used as a heuristic when determining the maximum
208 size of memory-read and memory-write packets. A target will
209 typically only reserve a buffer large enough to hold the ``g''
210 packet. The size does not include packet overhead (headers and
211 trailers). */
212 long actual_register_packet_size;
213
214 /* This is the maximum size (in chars) of a non read/write packet.
215 It is also used as a cap on the size of read/write packets. */
216 long remote_packet_size;
217};
218
219/* Description of the remote protocol state for the currently
220 connected target. This is per-target state, and independent of the
221 selected architecture. */
222
223class remote_state
224{
225public:
226
227 remote_state ();
228 ~remote_state ();
229
230 /* Get the remote arch state for GDBARCH. */
231 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
232
233public: /* data */
234
235 /* A buffer to use for incoming packets, and its current size. The
236 buffer is grown dynamically for larger incoming packets.
237 Outgoing packets may also be constructed in this buffer.
8d64371b 238 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
239 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
240 packets. */
8d64371b 241 gdb::char_vector buf;
3c69da40
PA
242
243 /* True if we're going through initial connection setup (finding out
244 about the remote side's threads, relocating symbols, etc.). */
245 bool starting_up = false;
246
247 /* If we negotiated packet size explicitly (and thus can bypass
248 heuristics for the largest packet size that will not overflow
249 a buffer in the stub), this will be set to that packet size.
250 Otherwise zero, meaning to use the guessed size. */
251 long explicit_packet_size = 0;
252
253 /* remote_wait is normally called when the target is running and
254 waits for a stop reply packet. But sometimes we need to call it
255 when the target is already stopped. We can send a "?" packet
256 and have remote_wait read the response. Or, if we already have
257 the response, we can stash it in BUF and tell remote_wait to
258 skip calling getpkt. This flag is set when BUF contains a
259 stop reply packet and the target is not waiting. */
260 int cached_wait_status = 0;
261
262 /* True, if in no ack mode. That is, neither GDB nor the stub will
263 expect acks from each other. The connection is assumed to be
264 reliable. */
265 bool noack_mode = false;
266
267 /* True if we're connected in extended remote mode. */
268 bool extended = false;
269
270 /* True if we resumed the target and we're waiting for the target to
271 stop. In the mean time, we can't start another command/query.
272 The remote server wouldn't be ready to process it, so we'd
273 timeout waiting for a reply that would never come and eventually
274 we'd close the connection. This can happen in asynchronous mode
275 because we allow GDB commands while the target is running. */
276 bool waiting_for_stop_reply = false;
277
278 /* The status of the stub support for the various vCont actions. */
279 vCont_action_support supports_vCont;
280
281 /* True if the user has pressed Ctrl-C, but the target hasn't
282 responded to that. */
283 bool ctrlc_pending_p = false;
284
285 /* True if we saw a Ctrl-C while reading or writing from/to the
286 remote descriptor. At that point it is not safe to send a remote
287 interrupt packet, so we instead remember we saw the Ctrl-C and
288 process it once we're done with sending/receiving the current
289 packet, which should be shortly. If however that takes too long,
290 and the user presses Ctrl-C again, we offer to disconnect. */
291 bool got_ctrlc_during_io = false;
292
293 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
294 remote_open knows that we don't have a file open when the program
295 starts. */
296 struct serial *remote_desc = nullptr;
297
298 /* These are the threads which we last sent to the remote system. The
299 TID member will be -1 for all or -2 for not sent yet. */
300 ptid_t general_thread = null_ptid;
301 ptid_t continue_thread = null_ptid;
302
303 /* This is the traceframe which we last selected on the remote system.
304 It will be -1 if no traceframe is selected. */
305 int remote_traceframe_number = -1;
306
307 char *last_pass_packet = nullptr;
308
309 /* The last QProgramSignals packet sent to the target. We bypass
310 sending a new program signals list down to the target if the new
311 packet is exactly the same as the last we sent. IOW, we only let
312 the target know about program signals list changes. */
313 char *last_program_signals_packet = nullptr;
314
315 gdb_signal last_sent_signal = GDB_SIGNAL_0;
316
317 bool last_sent_step = false;
318
319 /* The execution direction of the last resume we got. */
320 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
321
322 char *finished_object = nullptr;
323 char *finished_annex = nullptr;
324 ULONGEST finished_offset = 0;
325
326 /* Should we try the 'ThreadInfo' query packet?
327
328 This variable (NOT available to the user: auto-detect only!)
329 determines whether GDB will use the new, simpler "ThreadInfo"
330 query or the older, more complex syntax for thread queries.
331 This is an auto-detect variable (set to true at each connect,
332 and set to false when the target fails to recognize it). */
333 bool use_threadinfo_query = false;
334 bool use_threadextra_query = false;
335
336 threadref echo_nextthread {};
337 threadref nextthread {};
338 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
339
340 /* The state of remote notification. */
341 struct remote_notif_state *notif_state = nullptr;
342
343 /* The branch trace configuration. */
344 struct btrace_config btrace_config {};
345
346 /* The argument to the last "vFile:setfs:" packet we sent, used
347 to avoid sending repeated unnecessary "vFile:setfs:" packets.
348 Initialized to -1 to indicate that no "vFile:setfs:" packet
349 has yet been sent. */
350 int fs_pid = -1;
351
352 /* A readahead cache for vFile:pread. Often, reading a binary
353 involves a sequence of small reads. E.g., when parsing an ELF
354 file. A readahead cache helps mostly the case of remote
355 debugging on a connection with higher latency, due to the
356 request/reply nature of the RSP. We only cache data for a single
357 file descriptor at a time. */
358 struct readahead_cache readahead_cache;
359
360 /* The list of already fetched and acknowledged stop events. This
361 queue is used for notification Stop, and other notifications
362 don't need queue for their events, because the notification
363 events of Stop can't be consumed immediately, so that events
364 should be queued first, and be consumed by remote_wait_{ns,as}
365 one per time. Other notifications can consume their events
366 immediately, so queue is not needed for them. */
953edf2b 367 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
368
369 /* Asynchronous signal handle registered as event loop source for
370 when we have pending events ready to be passed to the core. */
371 struct async_event_handler *remote_async_inferior_event_token = nullptr;
372
373 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
374 ``forever'' still use the normal timeout mechanism. This is
375 currently used by the ASYNC code to guarentee that target reads
376 during the initial connect always time-out. Once getpkt has been
377 modified to return a timeout indication and, in turn
378 remote_wait()/wait_for_inferior() have gained a timeout parameter
379 this can go away. */
380 int wait_forever_enabled_p = 1;
381
382private:
383 /* Mapping of remote protocol data for each gdbarch. Usually there
384 is only one entry here, though we may see more with stubs that
385 support multi-process. */
386 std::unordered_map<struct gdbarch *, remote_arch_state>
387 m_arch_states;
388};
6b8edb51 389
d9f719f1
PA
390static const target_info remote_target_info = {
391 "remote",
392 N_("Remote serial target in gdb-specific protocol"),
393 remote_doc
394};
395
3b3dac9b 396class remote_target : public process_stratum_target
f6ac5f3d
PA
397{
398public:
3b3dac9b 399 remote_target () = default;
6b8edb51 400 ~remote_target () override;
f6ac5f3d 401
d9f719f1
PA
402 const target_info &info () const override
403 { return remote_target_info; }
f6ac5f3d
PA
404
405 thread_control_capabilities get_thread_control_capabilities () override
406 { return tc_schedlock; }
407
d9f719f1
PA
408 /* Open a remote connection. */
409 static void open (const char *, int);
410
f6ac5f3d
PA
411 void close () override;
412
413 void detach (inferior *, int) override;
414 void disconnect (const char *, int) override;
415
416 void commit_resume () override;
417 void resume (ptid_t, int, enum gdb_signal) override;
418 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
419
420 void fetch_registers (struct regcache *, int) override;
421 void store_registers (struct regcache *, int) override;
422 void prepare_to_store (struct regcache *) override;
423
424 void files_info () override;
425
426 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
427
428 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
429 enum remove_bp_reason) override;
430
431
57810aa7
PA
432 bool stopped_by_sw_breakpoint () override;
433 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 434
57810aa7 435 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 436
57810aa7 437 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 438
57810aa7 439 bool stopped_by_watchpoint () override;
f6ac5f3d 440
57810aa7 441 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 442
57810aa7 443 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
444
445 int can_use_hw_breakpoint (enum bptype, int, int) override;
446
447 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
448
449 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
450
451 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
452
453 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
454 struct expression *) override;
455
456 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
457 struct expression *) override;
458
459 void kill () override;
460
461 void load (const char *, int) override;
462
463 void mourn_inferior () override;
464
adc6a863 465 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
466
467 int set_syscall_catchpoint (int, bool, int,
468 gdb::array_view<const int>) override;
469
adc6a863 470 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 471
57810aa7 472 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
473
474 const char *thread_name (struct thread_info *) override;
475
476 void update_thread_list () override;
477
a068643d 478 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
479
480 const char *extra_thread_info (struct thread_info *) override;
481
482 ptid_t get_ada_task_ptid (long lwp, long thread) override;
483
484 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
485 int handle_len,
486 inferior *inf) override;
487
488 void stop (ptid_t) override;
489
490 void interrupt () override;
491
492 void pass_ctrlc () override;
493
494 enum target_xfer_status xfer_partial (enum target_object object,
495 const char *annex,
496 gdb_byte *readbuf,
497 const gdb_byte *writebuf,
498 ULONGEST offset, ULONGEST len,
499 ULONGEST *xfered_len) override;
500
501 ULONGEST get_memory_xfer_limit () override;
502
503 void rcmd (const char *command, struct ui_file *output) override;
504
505 char *pid_to_exec_file (int pid) override;
506
507 void log_command (const char *cmd) override
508 {
509 serial_log_command (this, cmd);
510 }
511
512 CORE_ADDR get_thread_local_address (ptid_t ptid,
513 CORE_ADDR load_module_addr,
514 CORE_ADDR offset) override;
515
57810aa7 516 bool can_execute_reverse () override;
f6ac5f3d
PA
517
518 std::vector<mem_region> memory_map () override;
519
520 void flash_erase (ULONGEST address, LONGEST length) override;
521
522 void flash_done () override;
523
524 const struct target_desc *read_description () override;
525
526 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
527 const gdb_byte *pattern, ULONGEST pattern_len,
528 CORE_ADDR *found_addrp) override;
529
57810aa7 530 bool can_async_p () override;
f6ac5f3d 531
57810aa7 532 bool is_async_p () override;
f6ac5f3d
PA
533
534 void async (int) override;
535
536 void thread_events (int) override;
537
538 int can_do_single_step () override;
539
540 void terminal_inferior () override;
541
542 void terminal_ours () override;
543
57810aa7 544 bool supports_non_stop () override;
f6ac5f3d 545
57810aa7 546 bool supports_multi_process () override;
f6ac5f3d 547
57810aa7 548 bool supports_disable_randomization () override;
f6ac5f3d 549
57810aa7 550 bool filesystem_is_local () override;
f6ac5f3d
PA
551
552
553 int fileio_open (struct inferior *inf, const char *filename,
554 int flags, int mode, int warn_if_slow,
555 int *target_errno) override;
556
557 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
558 ULONGEST offset, int *target_errno) override;
559
560 int fileio_pread (int fd, gdb_byte *read_buf, int len,
561 ULONGEST offset, int *target_errno) override;
562
563 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
564
565 int fileio_close (int fd, int *target_errno) override;
566
567 int fileio_unlink (struct inferior *inf,
568 const char *filename,
569 int *target_errno) override;
570
571 gdb::optional<std::string>
572 fileio_readlink (struct inferior *inf,
573 const char *filename,
574 int *target_errno) override;
575
57810aa7 576 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 577
57810aa7 578 bool supports_string_tracing () override;
f6ac5f3d 579
57810aa7 580 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 581
57810aa7 582 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
583
584 void trace_init () override;
585
586 void download_tracepoint (struct bp_location *location) override;
587
57810aa7 588 bool can_download_tracepoint () override;
f6ac5f3d
PA
589
590 void download_trace_state_variable (const trace_state_variable &tsv) override;
591
592 void enable_tracepoint (struct bp_location *location) override;
593
594 void disable_tracepoint (struct bp_location *location) override;
595
596 void trace_set_readonly_regions () override;
597
598 void trace_start () override;
599
600 int get_trace_status (struct trace_status *ts) override;
601
602 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
603 override;
604
605 void trace_stop () override;
606
607 int trace_find (enum trace_find_type type, int num,
608 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
609
57810aa7 610 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
611
612 int save_trace_data (const char *filename) override;
613
614 int upload_tracepoints (struct uploaded_tp **utpp) override;
615
616 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
617
618 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
619
620 int get_min_fast_tracepoint_insn_len () override;
621
622 void set_disconnected_tracing (int val) override;
623
624 void set_circular_trace_buffer (int val) override;
625
626 void set_trace_buffer_size (LONGEST val) override;
627
57810aa7
PA
628 bool set_trace_notes (const char *user, const char *notes,
629 const char *stopnotes) override;
f6ac5f3d
PA
630
631 int core_of_thread (ptid_t ptid) override;
632
633 int verify_memory (const gdb_byte *data,
634 CORE_ADDR memaddr, ULONGEST size) override;
635
636
57810aa7 637 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
638
639 void set_permissions () override;
640
641 bool static_tracepoint_marker_at (CORE_ADDR,
642 struct static_tracepoint_marker *marker)
643 override;
644
645 std::vector<static_tracepoint_marker>
646 static_tracepoint_markers_by_strid (const char *id) override;
647
648 traceframe_info_up traceframe_info () override;
649
57810aa7
PA
650 bool use_agent (bool use) override;
651 bool can_use_agent () override;
f6ac5f3d
PA
652
653 struct btrace_target_info *enable_btrace (ptid_t ptid,
654 const struct btrace_config *conf) override;
655
656 void disable_btrace (struct btrace_target_info *tinfo) override;
657
658 void teardown_btrace (struct btrace_target_info *tinfo) override;
659
660 enum btrace_error read_btrace (struct btrace_data *data,
661 struct btrace_target_info *btinfo,
662 enum btrace_read_type type) override;
663
664 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 665 bool augmented_libraries_svr4_read () override;
f6ac5f3d
PA
666 int follow_fork (int, int) override;
667 void follow_exec (struct inferior *, char *) override;
668 int insert_fork_catchpoint (int) override;
669 int remove_fork_catchpoint (int) override;
670 int insert_vfork_catchpoint (int) override;
671 int remove_vfork_catchpoint (int) override;
672 int insert_exec_catchpoint (int) override;
673 int remove_exec_catchpoint (int) override;
674 enum exec_direction_kind execution_direction () override;
675
6b8edb51
PA
676public: /* Remote specific methods. */
677
678 void remote_download_command_source (int num, ULONGEST addr,
679 struct command_line *cmds);
680
681 void remote_file_put (const char *local_file, const char *remote_file,
682 int from_tty);
683 void remote_file_get (const char *remote_file, const char *local_file,
684 int from_tty);
685 void remote_file_delete (const char *remote_file, int from_tty);
686
687 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
688 ULONGEST offset, int *remote_errno);
689 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
690 ULONGEST offset, int *remote_errno);
691 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
692 ULONGEST offset, int *remote_errno);
693
694 int remote_hostio_send_command (int command_bytes, int which_packet,
695 int *remote_errno, char **attachment,
696 int *attachment_len);
697 int remote_hostio_set_filesystem (struct inferior *inf,
698 int *remote_errno);
699 /* We should get rid of this and use fileio_open directly. */
700 int remote_hostio_open (struct inferior *inf, const char *filename,
701 int flags, int mode, int warn_if_slow,
702 int *remote_errno);
703 int remote_hostio_close (int fd, int *remote_errno);
704
705 int remote_hostio_unlink (inferior *inf, const char *filename,
706 int *remote_errno);
707
708 struct remote_state *get_remote_state ();
709
710 long get_remote_packet_size (void);
711 long get_memory_packet_size (struct memory_packet_config *config);
712
713 long get_memory_write_packet_size ();
714 long get_memory_read_packet_size ();
715
716 char *append_pending_thread_resumptions (char *p, char *endp,
717 ptid_t ptid);
d9f719f1 718 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 719 void start_remote (int from_tty, int extended_p);
00431a78 720 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
721
722 char *append_resumption (char *p, char *endp,
723 ptid_t ptid, int step, gdb_signal siggnal);
724 int remote_resume_with_vcont (ptid_t ptid, int step,
725 gdb_signal siggnal);
726
727 void add_current_inferior_and_thread (char *wait_status);
728
729 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
730 int options);
731 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
732 int options);
733
734 ptid_t process_stop_reply (struct stop_reply *stop_reply,
735 target_waitstatus *status);
736
737 void remote_notice_new_inferior (ptid_t currthread, int executing);
738
739 void process_initial_stop_replies (int from_tty);
740
00431a78 741 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
742
743 void btrace_sync_conf (const btrace_config *conf);
744
745 void remote_btrace_maybe_reopen ();
746
747 void remove_new_fork_children (threads_listing_context *context);
748 void kill_new_fork_children (int pid);
749 void discard_pending_stop_replies (struct inferior *inf);
750 int stop_reply_queue_length ();
751
752 void check_pending_events_prevent_wildcard_vcont
753 (int *may_global_wildcard_vcont);
754
755 void discard_pending_stop_replies_in_queue ();
756 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
757 struct stop_reply *queued_stop_reply (ptid_t ptid);
758 int peek_stop_reply (ptid_t ptid);
bb277751 759 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
760
761 void remote_stop_ns (ptid_t ptid);
762 void remote_interrupt_as ();
763 void remote_interrupt_ns ();
764
765 char *remote_get_noisy_reply ();
766 int remote_query_attached (int pid);
767 inferior *remote_add_inferior (int fake_pid_p, int pid, int attached,
768 int try_open_exec);
769
770 ptid_t remote_current_thread (ptid_t oldpid);
771 ptid_t get_current_thread (char *wait_status);
772
773 void set_thread (ptid_t ptid, int gen);
774 void set_general_thread (ptid_t ptid);
775 void set_continue_thread (ptid_t ptid);
776 void set_general_process ();
777
778 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
779
780 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
781 gdb_ext_thread_info *info);
782 int remote_get_threadinfo (threadref *threadid, int fieldset,
783 gdb_ext_thread_info *info);
784
785 int parse_threadlist_response (char *pkt, int result_limit,
786 threadref *original_echo,
787 threadref *resultlist,
788 int *doneflag);
789 int remote_get_threadlist (int startflag, threadref *nextthread,
790 int result_limit, int *done, int *result_count,
791 threadref *threadlist);
792
793 int remote_threadlist_iterator (rmt_thread_action stepfunction,
794 void *context, int looplimit);
795
796 int remote_get_threads_with_ql (threads_listing_context *context);
797 int remote_get_threads_with_qxfer (threads_listing_context *context);
798 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
799
800 void extended_remote_restart ();
801
802 void get_offsets ();
803
804 void remote_check_symbols ();
805
806 void remote_supported_packet (const struct protocol_feature *feature,
807 enum packet_support support,
808 const char *argument);
809
810 void remote_query_supported ();
811
812 void remote_packet_size (const protocol_feature *feature,
813 packet_support support, const char *value);
814
815 void remote_serial_quit_handler ();
816
817 void remote_detach_pid (int pid);
818
819 void remote_vcont_probe ();
820
821 void remote_resume_with_hc (ptid_t ptid, int step,
822 gdb_signal siggnal);
823
824 void send_interrupt_sequence ();
825 void interrupt_query ();
826
827 void remote_notif_get_pending_events (notif_client *nc);
828
829 int fetch_register_using_p (struct regcache *regcache,
830 packet_reg *reg);
831 int send_g_packet ();
832 void process_g_packet (struct regcache *regcache);
833 void fetch_registers_using_g (struct regcache *regcache);
834 int store_register_using_P (const struct regcache *regcache,
835 packet_reg *reg);
836 void store_registers_using_G (const struct regcache *regcache);
837
838 void set_remote_traceframe ();
839
840 void check_binary_download (CORE_ADDR addr);
841
842 target_xfer_status remote_write_bytes_aux (const char *header,
843 CORE_ADDR memaddr,
844 const gdb_byte *myaddr,
845 ULONGEST len_units,
846 int unit_size,
847 ULONGEST *xfered_len_units,
848 char packet_format,
849 int use_length);
850
851 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
852 const gdb_byte *myaddr, ULONGEST len,
853 int unit_size, ULONGEST *xfered_len);
854
855 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
856 ULONGEST len_units,
857 int unit_size, ULONGEST *xfered_len_units);
858
859 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
860 ULONGEST memaddr,
861 ULONGEST len,
862 int unit_size,
863 ULONGEST *xfered_len);
864
865 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
866 gdb_byte *myaddr, ULONGEST len,
867 int unit_size,
868 ULONGEST *xfered_len);
869
870 packet_result remote_send_printf (const char *format, ...)
871 ATTRIBUTE_PRINTF (2, 3);
872
873 target_xfer_status remote_flash_write (ULONGEST address,
874 ULONGEST length, ULONGEST *xfered_len,
875 const gdb_byte *data);
876
877 int readchar (int timeout);
878
879 void remote_serial_write (const char *str, int len);
880
881 int putpkt (const char *buf);
882 int putpkt_binary (const char *buf, int cnt);
883
8d64371b
TT
884 int putpkt (const gdb::char_vector &buf)
885 {
886 return putpkt (buf.data ());
887 }
888
6b8edb51 889 void skip_frame ();
8d64371b
TT
890 long read_frame (gdb::char_vector *buf_p);
891 void getpkt (gdb::char_vector *buf, int forever);
892 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 893 int expecting_notif, int *is_notif);
8d64371b
TT
894 int getpkt_sane (gdb::char_vector *buf, int forever);
895 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
896 int *is_notif);
897 int remote_vkill (int pid);
898 void remote_kill_k ();
899
900 void extended_remote_disable_randomization (int val);
901 int extended_remote_run (const std::string &args);
902
903 void send_environment_packet (const char *action,
904 const char *packet,
905 const char *value);
906
907 void extended_remote_environment_support ();
3c69da40 908 void extended_remote_set_inferior_cwd ();
80152258 909
3c69da40
PA
910 target_xfer_status remote_write_qxfer (const char *object_name,
911 const char *annex,
912 const gdb_byte *writebuf,
913 ULONGEST offset, LONGEST len,
914 ULONGEST *xfered_len,
915 struct packet_config *packet);
43c3a0e4 916
3c69da40
PA
917 target_xfer_status remote_read_qxfer (const char *object_name,
918 const char *annex,
919 gdb_byte *readbuf, ULONGEST offset,
920 LONGEST len,
921 ULONGEST *xfered_len,
922 struct packet_config *packet);
43c3a0e4 923
3c69da40 924 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 925
3c69da40 926 bool vcont_r_supported ();
43c3a0e4 927
3c69da40 928 void packet_command (const char *args, int from_tty);
43c3a0e4 929
3c69da40 930private: /* data fields */
43c3a0e4 931
3c69da40
PA
932 /* The remote state. Don't reference this directly. Use the
933 get_remote_state method instead. */
934 remote_state m_remote_state;
43c3a0e4
PA
935};
936
3c69da40
PA
937static const target_info extended_remote_target_info = {
938 "extended-remote",
939 N_("Extended remote serial target in gdb-specific protocol"),
940 remote_doc
941};
ea9c271d 942
3c69da40
PA
943/* Set up the extended remote target by extending the standard remote
944 target and adding to it. */
945
946class extended_remote_target final : public remote_target
ea9c271d 947{
9d6eea31 948public:
3c69da40
PA
949 const target_info &info () const override
950 { return extended_remote_target_info; }
9d6eea31 951
3c69da40
PA
952 /* Open an extended-remote connection. */
953 static void open (const char *, int);
de44f5a7 954
3c69da40
PA
955 bool can_create_inferior () override { return true; }
956 void create_inferior (const char *, const std::string &,
957 char **, int) override;
9d6eea31 958
3c69da40 959 void detach (inferior *, int) override;
9d6eea31 960
3c69da40
PA
961 bool can_attach () override { return true; }
962 void attach (const char *, int) override;
be2a5f71 963
3c69da40
PA
964 void post_attach (int) override;
965 bool supports_disable_randomization () override;
966};
1e51243a 967
3c69da40
PA
968/* Per-program-space data key. */
969static const struct program_space_data *remote_pspace_data;
2d717e4f 970
3c69da40
PA
971/* The variable registered as the control variable used by the
972 remote exec-file commands. While the remote exec-file setting is
973 per-program-space, the set/show machinery uses this as the
974 location of the remote exec-file value. */
975static char *remote_exec_file_var;
a6f3e723 976
3c69da40
PA
977/* The size to align memory write packets, when practical. The protocol
978 does not guarantee any alignment, and gdb will generate short
979 writes and unaligned writes, but even as a best-effort attempt this
980 can improve bulk transfers. For instance, if a write is misaligned
981 relative to the target's data bus, the stub may need to make an extra
982 round trip fetching data from the target. This doesn't make a
983 huge difference, but it's easy to do, so we try to be helpful.
82f73884 984
3c69da40
PA
985 The alignment chosen is arbitrary; usually data bus width is
986 important here, not the possibly larger cache line size. */
987enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 988
3c69da40 989/* Prototypes for local functions. */
74531fed 990
3c69da40 991static int hexnumlen (ULONGEST num);
782b2b07 992
3c69da40 993static int stubhex (int ch);
5d93a237 994
3c69da40 995static int hexnumstr (char *, ULONGEST);
048094ac 996
3c69da40 997static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 998
3c69da40 999static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1000
3c69da40 1001static void print_packet (const char *);
747dc59d 1002
3c69da40 1003static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1004
3c69da40 1005struct packet_config;
b73be471 1006
3c69da40 1007static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1008
3c69da40
PA
1009static void show_remote_protocol_packet_cmd (struct ui_file *file,
1010 int from_tty,
1011 struct cmd_list_element *c,
1012 const char *value);
8e88304f 1013
3c69da40 1014static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1015
3c69da40 1016static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1017
eefce37f 1018static bool remote_read_description_p (struct target_ops *target);
88b496c3 1019
05be00a8 1020static void remote_console_output (const char *msg);
5965e028 1021
3c69da40 1022static void remote_btrace_reset (remote_state *rs);
f4abbc16 1023
3c69da40 1024static void remote_unpush_and_throw (void);
15a201c8 1025
3c69da40 1026/* For "remote". */
80152258 1027
3c69da40 1028static struct cmd_list_element *remote_cmdlist;
9d6eea31 1029
3c69da40 1030/* For "set remote" and "show remote". */
6b8edb51 1031
3c69da40
PA
1032static struct cmd_list_element *remote_set_cmdlist;
1033static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1034
3c69da40 1035/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1036
3c69da40
PA
1037static int use_range_stepping = 1;
1038
1039/* The max number of chars in debug output. The rest of chars are
1040 omitted. */
1041
1042#define REMOTE_DEBUG_MAX_CHAR 512
ea9c271d 1043
7aabaf9d
SM
1044/* Private data that we'll store in (struct thread_info)->priv. */
1045struct remote_thread_info : public private_thread_info
dc146f7c 1046{
7aabaf9d
SM
1047 std::string extra;
1048 std::string name;
1049 int core = -1;
799a2abe 1050
f6327dcb
KB
1051 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1052 sequence of bytes. */
7aabaf9d 1053 gdb::byte_vector thread_handle;
f6327dcb 1054
799a2abe 1055 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1056 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1057
1058 /* This is set to the data address of the access causing the target
1059 to stop for a watchpoint. */
7aabaf9d 1060 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1061
1062 /* Fields used by the vCont action coalescing implemented in
1063 remote_resume / remote_commit_resume. remote_resume stores each
1064 thread's last resume request in these fields, so that a later
1065 remote_commit_resume knows which is the proper action for this
1066 thread to include in the vCont packet. */
1067
1068 /* True if the last target_resume call for this thread was a step
1069 request, false if a continue request. */
7aabaf9d 1070 int last_resume_step = 0;
85ad3aaf
PA
1071
1072 /* The signal specified in the last target_resume call for this
1073 thread. */
7aabaf9d 1074 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1075
1076 /* Whether this thread was already vCont-resumed on the remote
1077 side. */
7aabaf9d 1078 int vcont_resumed = 0;
dc146f7c
VP
1079};
1080
de44f5a7 1081remote_state::remote_state ()
8d64371b 1082 : buf (400)
de44f5a7 1083{
de44f5a7
PA
1084}
1085
1086remote_state::~remote_state ()
1087{
1088 xfree (this->last_pass_packet);
1089 xfree (this->last_program_signals_packet);
de44f5a7
PA
1090 xfree (this->finished_object);
1091 xfree (this->finished_annex);
cf792862
TT
1092}
1093
35b1e5cc
SS
1094/* Utility: generate error from an incoming stub packet. */
1095static void
1096trace_error (char *buf)
1097{
1098 if (*buf++ != 'E')
1099 return; /* not an error msg */
1100 switch (*buf)
1101 {
1102 case '1': /* malformed packet error */
1103 if (*++buf == '0') /* general case: */
1104 error (_("remote.c: error in outgoing packet."));
1105 else
1106 error (_("remote.c: error in outgoing packet at field #%ld."),
1107 strtol (buf, NULL, 16));
35b1e5cc
SS
1108 default:
1109 error (_("Target returns error code '%s'."), buf);
1110 }
1111}
1112
1113/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1114
6b8edb51
PA
1115char *
1116remote_target::remote_get_noisy_reply ()
35b1e5cc 1117{
b6bb3468
PA
1118 struct remote_state *rs = get_remote_state ();
1119
35b1e5cc
SS
1120 do /* Loop on reply from remote stub. */
1121 {
1122 char *buf;
a744cf53 1123
0df8b418 1124 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1125 getpkt (&rs->buf, 0);
1126 buf = rs->buf.data ();
ad91cd99 1127 if (buf[0] == 'E')
35b1e5cc 1128 trace_error (buf);
61012eef 1129 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1130 {
1131 ULONGEST ul;
1132 CORE_ADDR from, to, org_to;
256642e8 1133 const char *p, *pp;
dde08ee1 1134 int adjusted_size = 0;
7556d4a4 1135 int relocated = 0;
dde08ee1
PA
1136
1137 p = buf + strlen ("qRelocInsn:");
1138 pp = unpack_varlen_hex (p, &ul);
1139 if (*pp != ';')
cb91c06a 1140 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1141 from = ul;
1142
1143 p = pp + 1;
a9cbf802 1144 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1145 to = ul;
1146
1147 org_to = to;
1148
492d29ea 1149 TRY
dde08ee1 1150 {
f5656ead 1151 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1152 relocated = 1;
dde08ee1 1153 }
492d29ea 1154 CATCH (ex, RETURN_MASK_ALL)
7556d4a4
PA
1155 {
1156 if (ex.error == MEMORY_ERROR)
1157 {
1158 /* Propagate memory errors silently back to the
1159 target. The stub may have limited the range of
1160 addresses we can write to, for example. */
1161 }
1162 else
1163 {
1164 /* Something unexpectedly bad happened. Be verbose
1165 so we can tell what, and propagate the error back
1166 to the stub, so it doesn't get stuck waiting for
1167 a response. */
1168 exception_fprintf (gdb_stderr, ex,
1169 _("warning: relocating instruction: "));
1170 }
1171 putpkt ("E01");
1172 }
492d29ea 1173 END_CATCH
7556d4a4
PA
1174
1175 if (relocated)
dde08ee1
PA
1176 {
1177 adjusted_size = to - org_to;
1178
8d64371b 1179 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1180 putpkt (buf);
1181 }
dde08ee1 1182 }
ad91cd99 1183 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1184 remote_console_output (buf + 1); /* 'O' message from stub */
1185 else
0df8b418 1186 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1187 }
1188 while (1);
1189}
3c3bea1c 1190
9d6eea31
PA
1191struct remote_arch_state *
1192remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1193{
43c3a0e4
PA
1194 remote_arch_state *rsa;
1195
1196 auto it = this->m_arch_states.find (gdbarch);
1197 if (it == this->m_arch_states.end ())
9d6eea31 1198 {
43c3a0e4
PA
1199 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1200 std::forward_as_tuple (gdbarch),
1201 std::forward_as_tuple (gdbarch));
1202 rsa = &p.first->second;
9d6eea31
PA
1203
1204 /* Make sure that the packet buffer is plenty big enough for
1205 this architecture. */
8d64371b
TT
1206 if (this->buf.size () < rsa->remote_packet_size)
1207 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1208 }
43c3a0e4
PA
1209 else
1210 rsa = &it->second;
1211
1212 return rsa;
d01949b6
AC
1213}
1214
0b83947e
DJ
1215/* Fetch the global remote target state. */
1216
6b8edb51
PA
1217remote_state *
1218remote_target::get_remote_state ()
0b83947e
DJ
1219{
1220 /* Make sure that the remote architecture state has been
1221 initialized, because doing so might reallocate rs->buf. Any
1222 function which calls getpkt also needs to be mindful of changes
1223 to rs->buf, but this call limits the number of places which run
1224 into trouble. */
3c69da40 1225 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1226
3c69da40 1227 return &m_remote_state;
0b83947e
DJ
1228}
1229
94585166
DB
1230/* Cleanup routine for the remote module's pspace data. */
1231
1232static void
1233remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
1234{
19ba03f4 1235 char *remote_exec_file = (char *) arg;
94585166
DB
1236
1237 xfree (remote_exec_file);
1238}
1239
1240/* Fetch the remote exec-file from the current program space. */
1241
1242static const char *
1243get_remote_exec_file (void)
1244{
1245 char *remote_exec_file;
1246
19ba03f4
SM
1247 remote_exec_file
1248 = (char *) program_space_data (current_program_space,
1249 remote_pspace_data);
94585166
DB
1250 if (remote_exec_file == NULL)
1251 return "";
1252
1253 return remote_exec_file;
1254}
1255
1256/* Set the remote exec file for PSPACE. */
1257
1258static void
1259set_pspace_remote_exec_file (struct program_space *pspace,
1260 char *remote_exec_file)
1261{
19ba03f4 1262 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
1263
1264 xfree (old_file);
1265 set_program_space_data (pspace, remote_pspace_data,
1266 xstrdup (remote_exec_file));
1267}
1268
1269/* The "set/show remote exec-file" set command hook. */
1270
1271static void
eb4c3f4a 1272set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1273 struct cmd_list_element *c)
1274{
1275 gdb_assert (remote_exec_file_var != NULL);
1276 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1277}
1278
1279/* The "set/show remote exec-file" show command hook. */
1280
1281static void
1282show_remote_exec_file (struct ui_file *file, int from_tty,
1283 struct cmd_list_element *cmd, const char *value)
1284{
1285 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1286}
1287
74ca34ce
DJ
1288static int
1289compare_pnums (const void *lhs_, const void *rhs_)
1290{
19ba03f4
SM
1291 const struct packet_reg * const *lhs
1292 = (const struct packet_reg * const *) lhs_;
1293 const struct packet_reg * const *rhs
1294 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
1295
1296 if ((*lhs)->pnum < (*rhs)->pnum)
1297 return -1;
1298 else if ((*lhs)->pnum == (*rhs)->pnum)
1299 return 0;
1300 else
1301 return 1;
1302}
1303
c21236dc
PA
1304static int
1305map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1306{
74ca34ce 1307 int regnum, num_remote_regs, offset;
74ca34ce 1308 struct packet_reg **remote_regs;
ea9c271d 1309
4a22f64d 1310 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1311 {
c21236dc 1312 struct packet_reg *r = &regs[regnum];
baef701f 1313
4a22f64d 1314 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1315 /* Do not try to fetch zero-sized (placeholder) registers. */
1316 r->pnum = -1;
1317 else
1318 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1319
b323314b 1320 r->regnum = regnum;
74ca34ce
DJ
1321 }
1322
1323 /* Define the g/G packet format as the contents of each register
1324 with a remote protocol number, in order of ascending protocol
1325 number. */
1326
224c3ddb 1327 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1328 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1329 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1330 regnum++)
c21236dc
PA
1331 if (regs[regnum].pnum != -1)
1332 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1333
74ca34ce
DJ
1334 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
1335 compare_pnums);
1336
1337 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1338 {
1339 remote_regs[regnum]->in_g_packet = 1;
1340 remote_regs[regnum]->offset = offset;
4a22f64d 1341 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1342 }
1343
c21236dc
PA
1344 return offset;
1345}
1346
1347/* Given the architecture described by GDBARCH, return the remote
1348 protocol register's number and the register's offset in the g/G
1349 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1350 If the target does not have a mapping for REGNUM, return false,
1351 otherwise, return true. */
1352
1353int
1354remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1355 int *pnum, int *poffset)
1356{
c21236dc
PA
1357 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1358
b80406ac 1359 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1360
b80406ac 1361 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1362
1363 *pnum = regs[regnum].pnum;
1364 *poffset = regs[regnum].offset;
1365
c21236dc
PA
1366 return *pnum != -1;
1367}
1368
9d6eea31 1369remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1370{
c21236dc
PA
1371 /* Use the architecture to build a regnum<->pnum table, which will be
1372 1:1 unless a feature set specifies otherwise. */
9d6eea31 1373 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1374
74ca34ce
DJ
1375 /* Record the maximum possible size of the g packet - it may turn out
1376 to be smaller. */
9d6eea31
PA
1377 this->sizeof_g_packet
1378 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1379
0df8b418 1380 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1381 remote stubs have a hardwired buffer size of 400 bytes
1382 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1383 as the maximum packet-size to ensure that the packet and an extra
1384 NUL character can always fit in the buffer. This stops GDB
1385 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1386 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1387 this->remote_packet_size = 400 - 1;
d01949b6 1388
ea9c271d 1389 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1390 this->actual_register_packet_size = 0;
ea9c271d
DJ
1391
1392 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1393 default, adjust the size accordingly. Remember that each byte is
1394 encoded as two characters. 32 is the overhead for the packet
1395 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1396 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1397 little. */
9d6eea31
PA
1398 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1399 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1400}
1401
6b8edb51
PA
1402/* Get a pointer to the current remote target. If not connected to a
1403 remote target, return NULL. */
1404
1405static remote_target *
1406get_current_remote_target ()
1407{
1408 target_ops *proc_target = find_target_at (process_stratum);
1409 return dynamic_cast<remote_target *> (proc_target);
1410}
1411
ea9c271d
DJ
1412/* Return the current allowed size of a remote packet. This is
1413 inferred from the current architecture, and should be used to
1414 limit the length of outgoing packets. */
6b8edb51
PA
1415long
1416remote_target::get_remote_packet_size ()
ea9c271d 1417{
be2a5f71 1418 struct remote_state *rs = get_remote_state ();
9d6eea31 1419 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1420
be2a5f71
DJ
1421 if (rs->explicit_packet_size)
1422 return rs->explicit_packet_size;
1423
ea9c271d 1424 return rsa->remote_packet_size;
d01949b6
AC
1425}
1426
ad10f812 1427static struct packet_reg *
5cd63fda
PA
1428packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1429 long regnum)
ad10f812 1430{
5cd63fda 1431 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1432 return NULL;
1433 else
ad10f812 1434 {
ea9c271d 1435 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1436
b323314b
AC
1437 gdb_assert (r->regnum == regnum);
1438 return r;
ad10f812 1439 }
ad10f812
AC
1440}
1441
1442static struct packet_reg *
5cd63fda
PA
1443packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1444 LONGEST pnum)
ad10f812 1445{
b323314b 1446 int i;
a744cf53 1447
5cd63fda 1448 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1449 {
ea9c271d 1450 struct packet_reg *r = &rsa->regs[i];
a744cf53 1451
b323314b
AC
1452 if (r->pnum == pnum)
1453 return r;
ad10f812
AC
1454 }
1455 return NULL;
d01949b6
AC
1456}
1457
9a7071a8
JB
1458/* Allow the user to specify what sequence to send to the remote
1459 when he requests a program interruption: Although ^C is usually
1460 what remote systems expect (this is the default, here), it is
1461 sometimes preferable to send a break. On other systems such
1462 as the Linux kernel, a break followed by g, which is Magic SysRq g
1463 is required in order to interrupt the execution. */
1464const char interrupt_sequence_control_c[] = "Ctrl-C";
1465const char interrupt_sequence_break[] = "BREAK";
1466const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1467static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1468 {
1469 interrupt_sequence_control_c,
1470 interrupt_sequence_break,
1471 interrupt_sequence_break_g,
1472 NULL
1473 };
1474static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1475
1476static void
1477show_interrupt_sequence (struct ui_file *file, int from_tty,
1478 struct cmd_list_element *c,
1479 const char *value)
1480{
1481 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1482 fprintf_filtered (file,
1483 _("Send the ASCII ETX character (Ctrl-c) "
1484 "to the remote target to interrupt the "
1485 "execution of the program.\n"));
1486 else if (interrupt_sequence_mode == interrupt_sequence_break)
1487 fprintf_filtered (file,
1488 _("send a break signal to the remote target "
1489 "to interrupt the execution of the program.\n"));
1490 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1491 fprintf_filtered (file,
1492 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1493 "the remote target to interrupt the execution "
1494 "of Linux kernel.\n"));
1495 else
1496 internal_error (__FILE__, __LINE__,
1497 _("Invalid value for interrupt_sequence_mode: %s."),
1498 interrupt_sequence_mode);
1499}
6426a772 1500
9a7071a8
JB
1501/* This boolean variable specifies whether interrupt_sequence is sent
1502 to the remote target when gdb connects to it.
1503 This is mostly needed when you debug the Linux kernel: The Linux kernel
1504 expects BREAK g which is Magic SysRq g for connecting gdb. */
1505static int interrupt_on_connect = 0;
c906108c 1506
9a7071a8
JB
1507/* This variable is used to implement the "set/show remotebreak" commands.
1508 Since these commands are now deprecated in favor of "set/show remote
1509 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
1510static int remote_break;
1511
9a7071a8 1512static void
eb4c3f4a 1513set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1514{
1515 if (remote_break)
1516 interrupt_sequence_mode = interrupt_sequence_break;
1517 else
1518 interrupt_sequence_mode = interrupt_sequence_control_c;
1519}
1520
1521static void
1522show_remotebreak (struct ui_file *file, int from_tty,
1523 struct cmd_list_element *c,
1524 const char *value)
1525{
1526}
1527
c906108c
SS
1528/* This variable sets the number of bits in an address that are to be
1529 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1530 leading zeros, the entire address would be sent. This variable
c906108c
SS
1531 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1532 initial implementation of remote.c restricted the address sent in
1533 memory packets to ``host::sizeof long'' bytes - (typically 32
1534 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1535 address was never sent. Since fixing this bug may cause a break in
1536 some remote targets this variable is principly provided to
23860348 1537 facilitate backward compatibility. */
c906108c 1538
883b9c6c 1539static unsigned int remote_address_size;
c906108c 1540
11cf8741 1541\f
11cf8741 1542/* User configurable variables for the number of characters in a
ea9c271d
DJ
1543 memory read/write packet. MIN (rsa->remote_packet_size,
1544 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1545 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1546 (speed up transfers). The variables ``preferred_*'' (the user
1547 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1548 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1549
1550struct memory_packet_config
1551{
a121b7c1 1552 const char *name;
11cf8741
JM
1553 long size;
1554 int fixed_p;
1555};
1556
cc0be08f
PA
1557/* The default max memory-write-packet-size, when the setting is
1558 "fixed". The 16k is historical. (It came from older GDB's using
1559 alloca for buffers and the knowledge (folklore?) that some hosts
1560 don't cope very well with large alloca calls.) */
1561#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1562
1563/* The minimum remote packet size for memory transfers. Ensures we
1564 can write at least one byte. */
1565#define MIN_MEMORY_PACKET_SIZE 20
1566
cc0be08f
PA
1567/* Get the memory packet size, assuming it is fixed. */
1568
1569static long
1570get_fixed_memory_packet_size (struct memory_packet_config *config)
1571{
1572 gdb_assert (config->fixed_p);
1573
1574 if (config->size <= 0)
1575 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1576 else
1577 return config->size;
1578}
1579
11cf8741
JM
1580/* Compute the current size of a read/write packet. Since this makes
1581 use of ``actual_register_packet_size'' the computation is dynamic. */
1582
6b8edb51
PA
1583long
1584remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1585{
d01949b6 1586 struct remote_state *rs = get_remote_state ();
9d6eea31 1587 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1588
11cf8741
JM
1589 long what_they_get;
1590 if (config->fixed_p)
cc0be08f 1591 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1592 else
1593 {
ea9c271d 1594 what_they_get = get_remote_packet_size ();
23860348 1595 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1596 if (config->size > 0
1597 && what_they_get > config->size)
1598 what_they_get = config->size;
be2a5f71
DJ
1599
1600 /* Limit it to the size of the targets ``g'' response unless we have
1601 permission from the stub to use a larger packet size. */
1602 if (rs->explicit_packet_size == 0
1603 && rsa->actual_register_packet_size > 0
1604 && what_they_get > rsa->actual_register_packet_size)
1605 what_they_get = rsa->actual_register_packet_size;
11cf8741 1606 }
a5c0808e
PA
1607 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1608 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1609
1610 /* Make sure there is room in the global buffer for this packet
1611 (including its trailing NUL byte). */
8d64371b
TT
1612 if (rs->buf.size () < what_they_get + 1)
1613 rs->buf.resize (2 * what_they_get);
6d820c5c 1614
11cf8741
JM
1615 return what_they_get;
1616}
1617
0df8b418 1618/* Update the size of a read/write packet. If they user wants
23860348 1619 something really big then do a sanity check. */
11cf8741
JM
1620
1621static void
ac88e2de 1622set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1623{
1624 int fixed_p = config->fixed_p;
1625 long size = config->size;
a744cf53 1626
11cf8741 1627 if (args == NULL)
8a3fe4f8 1628 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1629 else if (strcmp (args, "hard") == 0
1630 || strcmp (args, "fixed") == 0)
1631 fixed_p = 1;
1632 else if (strcmp (args, "soft") == 0
1633 || strcmp (args, "limit") == 0)
1634 fixed_p = 0;
1635 else
1636 {
1637 char *end;
a744cf53 1638
11cf8741
JM
1639 size = strtoul (args, &end, 0);
1640 if (args == end)
8a3fe4f8 1641 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1642
1643 /* Instead of explicitly capping the size of a packet to or
1644 disallowing it, the user is allowed to set the size to
1645 something arbitrarily large. */
11cf8741 1646 }
a5c0808e 1647
23860348 1648 /* Extra checks? */
11cf8741
JM
1649 if (fixed_p && !config->fixed_p)
1650 {
cc0be08f
PA
1651 /* So that the query shows the correct value. */
1652 long query_size = (size <= 0
1653 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1654 : size);
1655
e2e0b3e5
AC
1656 if (! query (_("The target may not be able to correctly handle a %s\n"
1657 "of %ld bytes. Change the packet size? "),
cc0be08f 1658 config->name, query_size))
8a3fe4f8 1659 error (_("Packet size not changed."));
11cf8741 1660 }
23860348 1661 /* Update the config. */
11cf8741
JM
1662 config->fixed_p = fixed_p;
1663 config->size = size;
1664}
1665
1666static void
1667show_memory_packet_size (struct memory_packet_config *config)
1668{
cc0be08f
PA
1669 if (config->size == 0)
1670 printf_filtered (_("The %s is 0 (default). "), config->name);
1671 else
1672 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1673 if (config->fixed_p)
a3f17187 1674 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1675 get_fixed_memory_packet_size (config));
11cf8741 1676 else
cc0be08f 1677 {
6b8edb51 1678 remote_target *remote = get_current_remote_target ();
cc0be08f 1679
6b8edb51 1680 if (remote != NULL)
cc0be08f 1681 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1682 remote->get_memory_packet_size (config));
cc0be08f
PA
1683 else
1684 puts_filtered ("The actual limit will be further reduced "
1685 "dependent on the target.\n");
1686 }
11cf8741
JM
1687}
1688
1689static struct memory_packet_config memory_write_packet_config =
1690{
1691 "memory-write-packet-size",
1692};
1693
1694static void
ac88e2de 1695set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1696{
1697 set_memory_packet_size (args, &memory_write_packet_config);
1698}
1699
1700static void
ac88e2de 1701show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1702{
1703 show_memory_packet_size (&memory_write_packet_config);
1704}
1705
055303e2
AB
1706/* Show the number of hardware watchpoints that can be used. */
1707
1708static void
1709show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1710 struct cmd_list_element *c,
1711 const char *value)
1712{
1713 fprintf_filtered (file, _("The maximum number of target hardware "
1714 "watchpoints is %s.\n"), value);
1715}
1716
1717/* Show the length limit (in bytes) for hardware watchpoints. */
1718
1719static void
1720show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1721 struct cmd_list_element *c,
1722 const char *value)
1723{
1724 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1725 "hardware watchpoint is %s.\n"), value);
1726}
1727
1728/* Show the number of hardware breakpoints that can be used. */
1729
1730static void
1731show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1732 struct cmd_list_element *c,
1733 const char *value)
1734{
1735 fprintf_filtered (file, _("The maximum number of target hardware "
1736 "breakpoints is %s.\n"), value);
1737}
1738
6b8edb51
PA
1739long
1740remote_target::get_memory_write_packet_size ()
11cf8741
JM
1741{
1742 return get_memory_packet_size (&memory_write_packet_config);
1743}
1744
1745static struct memory_packet_config memory_read_packet_config =
1746{
1747 "memory-read-packet-size",
1748};
1749
1750static void
ac88e2de 1751set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1752{
1753 set_memory_packet_size (args, &memory_read_packet_config);
1754}
1755
1756static void
ac88e2de 1757show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1758{
1759 show_memory_packet_size (&memory_read_packet_config);
1760}
1761
6b8edb51
PA
1762long
1763remote_target::get_memory_read_packet_size ()
11cf8741
JM
1764{
1765 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1766
11cf8741
JM
1767 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1768 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1769 increased beyond this. */
1770 if (size > get_remote_packet_size ())
1771 size = get_remote_packet_size ();
11cf8741
JM
1772 return size;
1773}
1774
11cf8741 1775\f
5a2468f5 1776
5a2468f5
JM
1777struct packet_config
1778 {
bb572ddd
DJ
1779 const char *name;
1780 const char *title;
4082afcc
PA
1781
1782 /* If auto, GDB auto-detects support for this packet or feature,
1783 either through qSupported, or by trying the packet and looking
1784 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1785 packet. If false, the packet is disabled. Configs that don't
1786 have an associated command always have this set to auto. */
7f19b9a2 1787 enum auto_boolean detect;
4082afcc
PA
1788
1789 /* Does the target support this packet? */
5a2468f5
JM
1790 enum packet_support support;
1791 };
1792
4082afcc
PA
1793static enum packet_support packet_config_support (struct packet_config *config);
1794static enum packet_support packet_support (int packet);
5a2468f5
JM
1795
1796static void
fba45db2 1797show_packet_config_cmd (struct packet_config *config)
5a2468f5 1798{
a121b7c1 1799 const char *support = "internal-error";
a744cf53 1800
4082afcc 1801 switch (packet_config_support (config))
5a2468f5
JM
1802 {
1803 case PACKET_ENABLE:
1804 support = "enabled";
1805 break;
1806 case PACKET_DISABLE:
1807 support = "disabled";
1808 break;
1809 case PACKET_SUPPORT_UNKNOWN:
1810 support = "unknown";
1811 break;
1812 }
1813 switch (config->detect)
1814 {
7f19b9a2 1815 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1816 printf_filtered (_("Support for the `%s' packet "
1817 "is auto-detected, currently %s.\n"),
37a105a1 1818 config->name, support);
5a2468f5 1819 break;
7f19b9a2
AC
1820 case AUTO_BOOLEAN_TRUE:
1821 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1822 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1823 config->name, support);
8e248173 1824 break;
5a2468f5
JM
1825 }
1826}
1827
1828static void
bb572ddd
DJ
1829add_packet_config_cmd (struct packet_config *config, const char *name,
1830 const char *title, int legacy)
d471ea57 1831{
5a2468f5
JM
1832 char *set_doc;
1833 char *show_doc;
d471ea57 1834 char *cmd_name;
3ed07be4 1835
5a2468f5
JM
1836 config->name = name;
1837 config->title = title;
b435e160
AC
1838 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1839 name, title);
3e43a32a
MS
1840 show_doc = xstrprintf ("Show current use of remote "
1841 "protocol `%s' (%s) packet",
b435e160 1842 name, title);
d471ea57 1843 /* set/show TITLE-packet {auto,on,off} */
b435e160 1844 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1845 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1846 &config->detect, set_doc,
1847 show_doc, NULL, /* help_doc */
4082afcc 1848 NULL,
bb572ddd
DJ
1849 show_remote_protocol_packet_cmd,
1850 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1851 /* The command code copies the documentation strings. */
1852 xfree (set_doc);
1853 xfree (show_doc);
23860348 1854 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1855 if (legacy)
1856 {
1857 char *legacy_name;
a744cf53 1858
b435e160 1859 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1860 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1861 &remote_set_cmdlist);
d471ea57 1862 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1863 &remote_show_cmdlist);
d471ea57 1864 }
5a2468f5
JM
1865}
1866
d471ea57 1867static enum packet_result
a76d924d 1868packet_check_result (const char *buf)
5a2468f5 1869{
d471ea57 1870 if (buf[0] != '\0')
5a2468f5 1871 {
d471ea57 1872 /* The stub recognized the packet request. Check that the
23860348 1873 operation succeeded. */
a76d924d
DJ
1874 if (buf[0] == 'E'
1875 && isxdigit (buf[1]) && isxdigit (buf[2])
1876 && buf[3] == '\0')
1877 /* "Enn" - definitly an error. */
1878 return PACKET_ERROR;
1879
1880 /* Always treat "E." as an error. This will be used for
1881 more verbose error messages, such as E.memtypes. */
1882 if (buf[0] == 'E' && buf[1] == '.')
1883 return PACKET_ERROR;
1884
1885 /* The packet may or may not be OK. Just assume it is. */
1886 return PACKET_OK;
1887 }
1888 else
1889 /* The stub does not support the packet. */
1890 return PACKET_UNKNOWN;
1891}
1892
8d64371b
TT
1893static enum packet_result
1894packet_check_result (const gdb::char_vector &buf)
1895{
1896 return packet_check_result (buf.data ());
1897}
1898
a76d924d
DJ
1899static enum packet_result
1900packet_ok (const char *buf, struct packet_config *config)
1901{
1902 enum packet_result result;
1903
4082afcc
PA
1904 if (config->detect != AUTO_BOOLEAN_TRUE
1905 && config->support == PACKET_DISABLE)
1906 internal_error (__FILE__, __LINE__,
1907 _("packet_ok: attempt to use a disabled packet"));
1908
a76d924d
DJ
1909 result = packet_check_result (buf);
1910 switch (result)
1911 {
1912 case PACKET_OK:
1913 case PACKET_ERROR:
1914 /* The stub recognized the packet request. */
4082afcc 1915 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1916 {
d471ea57
AC
1917 if (remote_debug)
1918 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1919 "Packet %s (%s) is supported\n",
1920 config->name, config->title);
d471ea57 1921 config->support = PACKET_ENABLE;
d471ea57 1922 }
a76d924d
DJ
1923 break;
1924 case PACKET_UNKNOWN:
23860348 1925 /* The stub does not support the packet. */
4082afcc
PA
1926 if (config->detect == AUTO_BOOLEAN_AUTO
1927 && config->support == PACKET_ENABLE)
d471ea57 1928 {
4082afcc
PA
1929 /* If the stub previously indicated that the packet was
1930 supported then there is a protocol error. */
1931 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1932 config->name, config->title);
1933 }
1934 else if (config->detect == AUTO_BOOLEAN_TRUE)
1935 {
1936 /* The user set it wrong. */
1937 error (_("Enabled packet %s (%s) not recognized by stub"),
1938 config->name, config->title);
d471ea57 1939 }
4082afcc
PA
1940
1941 if (remote_debug)
1942 fprintf_unfiltered (gdb_stdlog,
1943 "Packet %s (%s) is NOT supported\n",
1944 config->name, config->title);
1945 config->support = PACKET_DISABLE;
a76d924d 1946 break;
5a2468f5 1947 }
a76d924d
DJ
1948
1949 return result;
5a2468f5
JM
1950}
1951
8d64371b
TT
1952static enum packet_result
1953packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1954{
1955 return packet_ok (buf.data (), config);
1956}
1957
444abaca
DJ
1958enum {
1959 PACKET_vCont = 0,
1960 PACKET_X,
1961 PACKET_qSymbol,
1962 PACKET_P,
1963 PACKET_p,
1964 PACKET_Z0,
1965 PACKET_Z1,
1966 PACKET_Z2,
1967 PACKET_Z3,
1968 PACKET_Z4,
15a201c8 1969 PACKET_vFile_setfs,
a6b151f1
DJ
1970 PACKET_vFile_open,
1971 PACKET_vFile_pread,
1972 PACKET_vFile_pwrite,
1973 PACKET_vFile_close,
1974 PACKET_vFile_unlink,
b9e7b9c3 1975 PACKET_vFile_readlink,
0a93529c 1976 PACKET_vFile_fstat,
0876f84a 1977 PACKET_qXfer_auxv,
23181151 1978 PACKET_qXfer_features,
c78fa86a 1979 PACKET_qXfer_exec_file,
cfa9d6d9 1980 PACKET_qXfer_libraries,
2268b414 1981 PACKET_qXfer_libraries_svr4,
fd79ecee 1982 PACKET_qXfer_memory_map,
0e7f50da
UW
1983 PACKET_qXfer_spu_read,
1984 PACKET_qXfer_spu_write,
07e059b5 1985 PACKET_qXfer_osdata,
dc146f7c 1986 PACKET_qXfer_threads,
0fb4aa4b 1987 PACKET_qXfer_statictrace_read,
b3b9301e 1988 PACKET_qXfer_traceframe_info,
169081d0 1989 PACKET_qXfer_uib,
711e434b 1990 PACKET_qGetTIBAddr,
444abaca 1991 PACKET_qGetTLSAddr,
be2a5f71 1992 PACKET_qSupported,
bd3eecc3 1993 PACKET_qTStatus,
89be2091 1994 PACKET_QPassSignals,
82075af2 1995 PACKET_QCatchSyscalls,
9b224c5e 1996 PACKET_QProgramSignals,
bc3b087d 1997 PACKET_QSetWorkingDir,
aefd8b33 1998 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1999 PACKET_QEnvironmentHexEncoded,
2000 PACKET_QEnvironmentReset,
2001 PACKET_QEnvironmentUnset,
936d2992 2002 PACKET_qCRC,
08388c79 2003 PACKET_qSearch_memory,
2d717e4f
DJ
2004 PACKET_vAttach,
2005 PACKET_vRun,
a6f3e723 2006 PACKET_QStartNoAckMode,
82f73884 2007 PACKET_vKill,
4aa995e1
PA
2008 PACKET_qXfer_siginfo_read,
2009 PACKET_qXfer_siginfo_write,
0b16c5cf 2010 PACKET_qAttached,
4082afcc
PA
2011
2012 /* Support for conditional tracepoints. */
782b2b07 2013 PACKET_ConditionalTracepoints,
4082afcc
PA
2014
2015 /* Support for target-side breakpoint conditions. */
3788aec7 2016 PACKET_ConditionalBreakpoints,
4082afcc
PA
2017
2018 /* Support for target-side breakpoint commands. */
d3ce09f5 2019 PACKET_BreakpointCommands,
4082afcc
PA
2020
2021 /* Support for fast tracepoints. */
7a697b8d 2022 PACKET_FastTracepoints,
4082afcc
PA
2023
2024 /* Support for static tracepoints. */
0fb4aa4b 2025 PACKET_StaticTracepoints,
4082afcc
PA
2026
2027 /* Support for installing tracepoints while a trace experiment is
2028 running. */
1e4d1764 2029 PACKET_InstallInTrace,
4082afcc 2030
40ab02ce
MS
2031 PACKET_bc,
2032 PACKET_bs,
409873ef 2033 PACKET_TracepointSource,
d914c394 2034 PACKET_QAllow,
78d85199 2035 PACKET_qXfer_fdpic,
03583c20 2036 PACKET_QDisableRandomization,
d1feda86 2037 PACKET_QAgent,
f6f899bf 2038 PACKET_QTBuffer_size,
9accd112
MM
2039 PACKET_Qbtrace_off,
2040 PACKET_Qbtrace_bts,
b20a6524 2041 PACKET_Qbtrace_pt,
9accd112 2042 PACKET_qXfer_btrace,
4082afcc
PA
2043
2044 /* Support for the QNonStop packet. */
2045 PACKET_QNonStop,
2046
65706a29
PA
2047 /* Support for the QThreadEvents packet. */
2048 PACKET_QThreadEvents,
2049
4082afcc
PA
2050 /* Support for multi-process extensions. */
2051 PACKET_multiprocess_feature,
2052
2053 /* Support for enabling and disabling tracepoints while a trace
2054 experiment is running. */
2055 PACKET_EnableDisableTracepoints_feature,
2056
2057 /* Support for collecting strings using the tracenz bytecode. */
2058 PACKET_tracenz_feature,
2059
2060 /* Support for continuing to run a trace experiment while GDB is
2061 disconnected. */
2062 PACKET_DisconnectedTracing_feature,
2063
2064 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2065 PACKET_augmented_libraries_svr4_read_feature,
2066
f4abbc16
MM
2067 /* Support for the qXfer:btrace-conf:read packet. */
2068 PACKET_qXfer_btrace_conf,
2069
d33501a5
MM
2070 /* Support for the Qbtrace-conf:bts:size packet. */
2071 PACKET_Qbtrace_conf_bts_size,
2072
f7e6eed5
PA
2073 /* Support for swbreak+ feature. */
2074 PACKET_swbreak_feature,
2075
2076 /* Support for hwbreak+ feature. */
2077 PACKET_hwbreak_feature,
2078
89245bc0
DB
2079 /* Support for fork events. */
2080 PACKET_fork_event_feature,
2081
2082 /* Support for vfork events. */
2083 PACKET_vfork_event_feature,
2084
b20a6524
MM
2085 /* Support for the Qbtrace-conf:pt:size packet. */
2086 PACKET_Qbtrace_conf_pt_size,
2087
94585166
DB
2088 /* Support for exec events. */
2089 PACKET_exec_event_feature,
2090
750ce8d1
YQ
2091 /* Support for query supported vCont actions. */
2092 PACKET_vContSupported,
2093
de979965
PA
2094 /* Support remote CTRL-C. */
2095 PACKET_vCtrlC,
2096
f2faf941
PA
2097 /* Support TARGET_WAITKIND_NO_RESUMED. */
2098 PACKET_no_resumed,
2099
444abaca
DJ
2100 PACKET_MAX
2101};
506fb367 2102
444abaca 2103static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2104
f7e6eed5
PA
2105/* Returns the packet's corresponding "set remote foo-packet" command
2106 state. See struct packet_config for more details. */
2107
2108static enum auto_boolean
2109packet_set_cmd_state (int packet)
2110{
2111 return remote_protocol_packets[packet].detect;
2112}
2113
4082afcc
PA
2114/* Returns whether a given packet or feature is supported. This takes
2115 into account the state of the corresponding "set remote foo-packet"
2116 command, which may be used to bypass auto-detection. */
dc8acb97 2117
4082afcc
PA
2118static enum packet_support
2119packet_config_support (struct packet_config *config)
2120{
2121 switch (config->detect)
444abaca 2122 {
4082afcc
PA
2123 case AUTO_BOOLEAN_TRUE:
2124 return PACKET_ENABLE;
2125 case AUTO_BOOLEAN_FALSE:
2126 return PACKET_DISABLE;
2127 case AUTO_BOOLEAN_AUTO:
2128 return config->support;
2129 default:
2130 gdb_assert_not_reached (_("bad switch"));
444abaca 2131 }
4082afcc
PA
2132}
2133
2134/* Same as packet_config_support, but takes the packet's enum value as
2135 argument. */
2136
2137static enum packet_support
2138packet_support (int packet)
2139{
2140 struct packet_config *config = &remote_protocol_packets[packet];
2141
2142 return packet_config_support (config);
dc8acb97
MS
2143}
2144
5a2468f5 2145static void
444abaca
DJ
2146show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2147 struct cmd_list_element *c,
2148 const char *value)
5a2468f5 2149{
444abaca 2150 struct packet_config *packet;
5a2468f5 2151
444abaca
DJ
2152 for (packet = remote_protocol_packets;
2153 packet < &remote_protocol_packets[PACKET_MAX];
2154 packet++)
2155 {
2156 if (&packet->detect == c->var)
2157 {
2158 show_packet_config_cmd (packet);
2159 return;
2160 }
2161 }
9b20d036 2162 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2163 c->name);
5a2468f5
JM
2164}
2165
d471ea57
AC
2166/* Should we try one of the 'Z' requests? */
2167
2168enum Z_packet_type
2169{
2170 Z_PACKET_SOFTWARE_BP,
2171 Z_PACKET_HARDWARE_BP,
2172 Z_PACKET_WRITE_WP,
2173 Z_PACKET_READ_WP,
2174 Z_PACKET_ACCESS_WP,
2175 NR_Z_PACKET_TYPES
2176};
96baa820 2177
d471ea57 2178/* For compatibility with older distributions. Provide a ``set remote
23860348 2179 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2180
7f19b9a2 2181static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2182
2183static void
eb4c3f4a 2184set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2185 struct cmd_list_element *c)
96baa820 2186{
d471ea57 2187 int i;
a744cf53 2188
d471ea57 2189 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2190 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2191}
2192
2193static void
08546159
AC
2194show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2195 struct cmd_list_element *c,
2196 const char *value)
96baa820 2197{
d471ea57 2198 int i;
a744cf53 2199
d471ea57
AC
2200 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2201 {
444abaca 2202 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2203 }
96baa820
JM
2204}
2205
4082afcc
PA
2206/* Returns true if the multi-process extensions are in effect. */
2207
2208static int
2209remote_multi_process_p (struct remote_state *rs)
2210{
2211 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2212}
2213
de0d863e
DB
2214/* Returns true if fork events are supported. */
2215
2216static int
2217remote_fork_event_p (struct remote_state *rs)
2218{
2219 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2220}
2221
c269dbdb
DB
2222/* Returns true if vfork events are supported. */
2223
2224static int
2225remote_vfork_event_p (struct remote_state *rs)
2226{
2227 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2228}
2229
d46addbb
DB
2230/* Returns true if exec events are supported. */
2231
2232static int
2233remote_exec_event_p (struct remote_state *rs)
2234{
2235 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2236}
2237
cbb8991c
DB
2238/* Insert fork catchpoint target routine. If fork events are enabled
2239 then return success, nothing more to do. */
2240
f6ac5f3d
PA
2241int
2242remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2243{
2244 struct remote_state *rs = get_remote_state ();
2245
2246 return !remote_fork_event_p (rs);
2247}
2248
2249/* Remove fork catchpoint target routine. Nothing to do, just
2250 return success. */
2251
f6ac5f3d
PA
2252int
2253remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2254{
2255 return 0;
2256}
2257
2258/* Insert vfork catchpoint target routine. If vfork events are enabled
2259 then return success, nothing more to do. */
2260
f6ac5f3d
PA
2261int
2262remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2263{
2264 struct remote_state *rs = get_remote_state ();
2265
2266 return !remote_vfork_event_p (rs);
2267}
2268
2269/* Remove vfork catchpoint target routine. Nothing to do, just
2270 return success. */
2271
f6ac5f3d
PA
2272int
2273remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2274{
2275 return 0;
2276}
2277
d46addbb
DB
2278/* Insert exec catchpoint target routine. If exec events are
2279 enabled, just return success. */
2280
f6ac5f3d
PA
2281int
2282remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2283{
2284 struct remote_state *rs = get_remote_state ();
2285
2286 return !remote_exec_event_p (rs);
2287}
2288
2289/* Remove exec catchpoint target routine. Nothing to do, just
2290 return success. */
2291
f6ac5f3d
PA
2292int
2293remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2294{
2295 return 0;
2296}
2297
c906108c
SS
2298\f
2299
ffdd69cf
TT
2300/* Take advantage of the fact that the TID field is not used, to tag
2301 special ptids with it set to != 0. */
2302static const ptid_t magic_null_ptid (42000, -1, 1);
2303static const ptid_t not_sent_ptid (42000, -2, 1);
2304static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2305
0b16c5cf
PA
2306/* Find out if the stub attached to PID (and hence GDB should offer to
2307 detach instead of killing it when bailing out). */
2308
6b8edb51
PA
2309int
2310remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2311{
2312 struct remote_state *rs = get_remote_state ();
bba74b36 2313 size_t size = get_remote_packet_size ();
0b16c5cf 2314
4082afcc 2315 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2316 return 0;
2317
2318 if (remote_multi_process_p (rs))
8d64371b 2319 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2320 else
8d64371b 2321 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2322
2323 putpkt (rs->buf);
8d64371b 2324 getpkt (&rs->buf, 0);
0b16c5cf
PA
2325
2326 switch (packet_ok (rs->buf,
1554e9be 2327 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2328 {
2329 case PACKET_OK:
8d64371b 2330 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2331 return 1;
2332 break;
2333 case PACKET_ERROR:
8d64371b 2334 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2335 break;
2336 case PACKET_UNKNOWN:
2337 break;
2338 }
2339
2340 return 0;
2341}
2342
49c62f2e
PA
2343/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2344 has been invented by GDB, instead of reported by the target. Since
2345 we can be connected to a remote system before before knowing about
2346 any inferior, mark the target with execution when we find the first
2347 inferior. If ATTACHED is 1, then we had just attached to this
2348 inferior. If it is 0, then we just created this inferior. If it
2349 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2350 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2351 attempt to open this inferior's executable as the main executable
2352 if no main executable is open already. */
1941c569 2353
6b8edb51
PA
2354inferior *
2355remote_target::remote_add_inferior (int fake_pid_p, int pid, int attached,
2356 int try_open_exec)
1941c569 2357{
1941c569
PA
2358 struct inferior *inf;
2359
0b16c5cf
PA
2360 /* Check whether this process we're learning about is to be
2361 considered attached, or if is to be considered to have been
2362 spawned by the stub. */
2363 if (attached == -1)
2364 attached = remote_query_attached (pid);
2365
f5656ead 2366 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2367 {
2368 /* If the target shares code across all inferiors, then every
2369 attach adds a new inferior. */
2370 inf = add_inferior (pid);
2371
2372 /* ... and every inferior is bound to the same program space.
2373 However, each inferior may still have its own address
2374 space. */
2375 inf->aspace = maybe_new_address_space ();
2376 inf->pspace = current_program_space;
2377 }
2378 else
2379 {
2380 /* In the traditional debugging scenario, there's a 1-1 match
2381 between program/address spaces. We simply bind the inferior
2382 to the program space's address space. */
2383 inf = current_inferior ();
2384 inferior_appeared (inf, pid);
2385 }
1941c569 2386
0b16c5cf 2387 inf->attach_flag = attached;
49c62f2e 2388 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2389
1b6e6f5c
GB
2390 /* If no main executable is currently open then attempt to
2391 open the file that was executed to create this inferior. */
835205d0 2392 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2393 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2394
1941c569
PA
2395 return inf;
2396}
2397
7aabaf9d 2398static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2399static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2400
1941c569
PA
2401/* Add thread PTID to GDB's thread list. Tag it as executing/running
2402 according to RUNNING. */
2403
00431a78 2404thread_info *
6b8edb51 2405remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2406{
b7ea362b 2407 struct remote_state *rs = get_remote_state ();
85ad3aaf 2408 struct thread_info *thread;
b7ea362b
PA
2409
2410 /* GDB historically didn't pull threads in the initial connection
2411 setup. If the remote target doesn't even have a concept of
2412 threads (e.g., a bare-metal target), even if internally we
2413 consider that a single-threaded target, mentioning a new thread
2414 might be confusing to the user. Be silent then, preserving the
2415 age old behavior. */
2416 if (rs->starting_up)
85ad3aaf 2417 thread = add_thread_silent (ptid);
b7ea362b 2418 else
85ad3aaf 2419 thread = add_thread (ptid);
1941c569 2420
7aabaf9d 2421 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2422 set_executing (ptid, executing);
1941c569 2423 set_running (ptid, running);
00431a78
PA
2424
2425 return thread;
1941c569
PA
2426}
2427
2428/* Come here when we learn about a thread id from the remote target.
2429 It may be the first time we hear about such thread, so take the
2430 opportunity to add it to GDB's thread list. In case this is the
2431 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2432 GDB's inferior list as well. EXECUTING indicates whether the
2433 thread is (internally) executing or stopped. */
1941c569 2434
6b8edb51
PA
2435void
2436remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2437{
0d5b594f
PA
2438 /* In non-stop mode, we assume new found threads are (externally)
2439 running until proven otherwise with a stop reply. In all-stop,
2440 we can only get here if all threads are stopped. */
2441 int running = target_is_non_stop_p () ? 1 : 0;
2442
c906108c
SS
2443 /* If this is a new thread, add it to GDB's thread list.
2444 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2445
00431a78
PA
2446 thread_info *tp = find_thread_ptid (currthread);
2447 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2448 {
2449 /* We're seeing an event on a thread id we knew had exited.
2450 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2451 remote_add_thread (currthread, running, executing);
82f73884
PA
2452 return;
2453 }
2454
79d7f229 2455 if (!in_thread_list (currthread))
c0a2216e 2456 {
1941c569 2457 struct inferior *inf = NULL;
e99b03dc 2458 int pid = currthread.pid ();
1941c569 2459
0e998d96 2460 if (inferior_ptid.is_pid ()
e99b03dc 2461 && pid == inferior_ptid.pid ())
c0a2216e
PA
2462 {
2463 /* inferior_ptid has no thread member yet. This can happen
2464 with the vAttach -> remote_wait,"TAAthread:" path if the
2465 stub doesn't support qC. This is the first stop reported
2466 after an attach, so this is the main thread. Update the
2467 ptid in the thread list. */
f2907e49 2468 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2469 thread_change_ptid (inferior_ptid, currthread);
2470 else
2471 {
0d5b594f 2472 remote_add_thread (currthread, running, executing);
bad34192
PA
2473 inferior_ptid = currthread;
2474 }
dc146f7c 2475 return;
c0a2216e 2476 }
82f73884 2477
d7e15655 2478 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2479 {
2480 /* inferior_ptid is not set yet. This can happen with the
2481 vRun -> remote_wait,"TAAthread:" path if the stub
2482 doesn't support qC. This is the first stop reported
2483 after an attach, so this is the main thread. Update the
2484 ptid in the thread list. */
dc146f7c 2485 thread_change_ptid (inferior_ptid, currthread);
82f73884 2486 return;
c0a2216e 2487 }
82f73884 2488
29c87f7f
PA
2489 /* When connecting to a target remote, or to a target
2490 extended-remote which already was debugging an inferior, we
2491 may not know about it yet. Add it before adding its child
2492 thread, so notifications are emitted in a sensible order. */
e99b03dc 2493 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2494 {
2495 struct remote_state *rs = get_remote_state ();
2496 int fake_pid_p = !remote_multi_process_p (rs);
2497
2498 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2499 currthread.pid (), -1, 1);
49c62f2e 2500 }
29c87f7f 2501
82f73884 2502 /* This is really a new thread. Add it. */
00431a78
PA
2503 thread_info *new_thr
2504 = remote_add_thread (currthread, running, executing);
1941c569
PA
2505
2506 /* If we found a new inferior, let the common code do whatever
2507 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2508 breakpoints), unless we're just setting up an all-stop
2509 connection. */
1941c569 2510 if (inf != NULL)
b7ea362b
PA
2511 {
2512 struct remote_state *rs = get_remote_state ();
2513
6efcd9a8 2514 if (!rs->starting_up)
00431a78 2515 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2516 }
c0a2216e 2517 }
c906108c
SS
2518}
2519
85ad3aaf 2520/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2521
7aabaf9d
SM
2522static remote_thread_info *
2523get_remote_thread_info (thread_info *thread)
dc146f7c 2524{
85ad3aaf 2525 gdb_assert (thread != NULL);
dc146f7c 2526
85ad3aaf 2527 if (thread->priv == NULL)
7aabaf9d 2528 thread->priv.reset (new remote_thread_info);
dc146f7c 2529
7aabaf9d 2530 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2531}
2532
7aabaf9d
SM
2533static remote_thread_info *
2534get_remote_thread_info (ptid_t ptid)
85ad3aaf 2535{
00431a78
PA
2536 thread_info *thr = find_thread_ptid (ptid);
2537 return get_remote_thread_info (thr);
dc146f7c
VP
2538}
2539
74531fed
PA
2540/* Call this function as a result of
2541 1) A halt indication (T packet) containing a thread id
2542 2) A direct query of currthread
0df8b418 2543 3) Successful execution of set thread */
74531fed
PA
2544
2545static void
47f8a51d 2546record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2547{
47f8a51d 2548 rs->general_thread = currthread;
74531fed
PA
2549}
2550
89be2091
DJ
2551/* If 'QPassSignals' is supported, tell the remote stub what signals
2552 it can simply pass through to the inferior without reporting. */
2553
f6ac5f3d 2554void
adc6a863 2555remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2556{
4082afcc 2557 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2558 {
2559 char *pass_packet, *p;
adc6a863 2560 int count = 0;
747dc59d 2561 struct remote_state *rs = get_remote_state ();
89be2091 2562
adc6a863
PA
2563 gdb_assert (pass_signals.size () < 256);
2564 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2565 {
2455069d 2566 if (pass_signals[i])
89be2091
DJ
2567 count++;
2568 }
224c3ddb 2569 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2570 strcpy (pass_packet, "QPassSignals:");
2571 p = pass_packet + strlen (pass_packet);
adc6a863 2572 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2573 {
2455069d 2574 if (pass_signals[i])
89be2091
DJ
2575 {
2576 if (i >= 16)
2577 *p++ = tohex (i >> 4);
2578 *p++ = tohex (i & 15);
2579 if (count)
2580 *p++ = ';';
2581 else
2582 break;
2583 count--;
2584 }
2585 }
2586 *p = 0;
747dc59d 2587 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2588 {
89be2091 2589 putpkt (pass_packet);
8d64371b 2590 getpkt (&rs->buf, 0);
8dc5b319 2591 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2592 if (rs->last_pass_packet)
2593 xfree (rs->last_pass_packet);
2594 rs->last_pass_packet = pass_packet;
89be2091
DJ
2595 }
2596 else
2597 xfree (pass_packet);
2598 }
2599}
2600
82075af2
JS
2601/* If 'QCatchSyscalls' is supported, tell the remote stub
2602 to report syscalls to GDB. */
2603
f6ac5f3d
PA
2604int
2605remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2606 gdb::array_view<const int> syscall_counts)
82075af2 2607{
b80406ac 2608 const char *catch_packet;
82075af2
JS
2609 enum packet_result result;
2610 int n_sysno = 0;
2611
2612 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2613 {
2614 /* Not supported. */
2615 return 1;
2616 }
2617
649a140c 2618 if (needed && any_count == 0)
82075af2 2619 {
649a140c
PA
2620 /* Count how many syscalls are to be caught. */
2621 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2622 {
649a140c 2623 if (syscall_counts[i] != 0)
82075af2
JS
2624 n_sysno++;
2625 }
2626 }
2627
2628 if (remote_debug)
2629 {
2630 fprintf_unfiltered (gdb_stdlog,
2631 "remote_set_syscall_catchpoint "
2632 "pid %d needed %d any_count %d n_sysno %d\n",
2633 pid, needed, any_count, n_sysno);
2634 }
2635
1b81856f 2636 std::string built_packet;
82075af2
JS
2637 if (needed)
2638 {
2639 /* Prepare a packet with the sysno list, assuming max 8+1
2640 characters for a sysno. If the resulting packet size is too
2641 big, fallback on the non-selective packet. */
2642 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2643 built_packet.reserve (maxpktsz);
2644 built_packet = "QCatchSyscalls:1";
649a140c 2645 if (any_count == 0)
82075af2 2646 {
649a140c
PA
2647 /* Add in each syscall to be caught. */
2648 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2649 {
649a140c
PA
2650 if (syscall_counts[i] != 0)
2651 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2652 }
2653 }
1b81856f 2654 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2655 {
2656 /* catch_packet too big. Fallback to less efficient
2657 non selective mode, with GDB doing the filtering. */
b80406ac 2658 catch_packet = "QCatchSyscalls:1";
82075af2 2659 }
b80406ac 2660 else
1b81856f 2661 catch_packet = built_packet.c_str ();
82075af2
JS
2662 }
2663 else
b80406ac 2664 catch_packet = "QCatchSyscalls:0";
82075af2 2665
b80406ac 2666 struct remote_state *rs = get_remote_state ();
82075af2 2667
b80406ac 2668 putpkt (catch_packet);
8d64371b 2669 getpkt (&rs->buf, 0);
b80406ac
TT
2670 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2671 if (result == PACKET_OK)
2672 return 0;
2673 else
2674 return -1;
82075af2
JS
2675}
2676
9b224c5e
PA
2677/* If 'QProgramSignals' is supported, tell the remote stub what
2678 signals it should pass through to the inferior when detaching. */
2679
f6ac5f3d 2680void
adc6a863 2681remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2682{
4082afcc 2683 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2684 {
2685 char *packet, *p;
adc6a863 2686 int count = 0;
5e4a05c4 2687 struct remote_state *rs = get_remote_state ();
9b224c5e 2688
adc6a863
PA
2689 gdb_assert (signals.size () < 256);
2690 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2691 {
2692 if (signals[i])
2693 count++;
2694 }
224c3ddb 2695 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2696 strcpy (packet, "QProgramSignals:");
2697 p = packet + strlen (packet);
adc6a863 2698 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2699 {
2700 if (signal_pass_state (i))
2701 {
2702 if (i >= 16)
2703 *p++ = tohex (i >> 4);
2704 *p++ = tohex (i & 15);
2705 if (count)
2706 *p++ = ';';
2707 else
2708 break;
2709 count--;
2710 }
2711 }
2712 *p = 0;
5e4a05c4
TT
2713 if (!rs->last_program_signals_packet
2714 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2715 {
9b224c5e 2716 putpkt (packet);
8d64371b 2717 getpkt (&rs->buf, 0);
8dc5b319 2718 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2719 xfree (rs->last_program_signals_packet);
2720 rs->last_program_signals_packet = packet;
9b224c5e
PA
2721 }
2722 else
2723 xfree (packet);
2724 }
2725}
2726
79d7f229
PA
2727/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2728 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2729 thread. If GEN is set, set the general thread, if not, then set
2730 the step/continue thread. */
6b8edb51
PA
2731void
2732remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2733{
d01949b6 2734 struct remote_state *rs = get_remote_state ();
47f8a51d 2735 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2736 char *buf = rs->buf.data ();
2737 char *endbuf = buf + get_remote_packet_size ();
c906108c 2738
d7e15655 2739 if (state == ptid)
c906108c
SS
2740 return;
2741
79d7f229
PA
2742 *buf++ = 'H';
2743 *buf++ = gen ? 'g' : 'c';
d7e15655 2744 if (ptid == magic_null_ptid)
79d7f229 2745 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2746 else if (ptid == any_thread_ptid)
79d7f229 2747 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2748 else if (ptid == minus_one_ptid)
79d7f229
PA
2749 xsnprintf (buf, endbuf - buf, "-1");
2750 else
82f73884 2751 write_ptid (buf, endbuf, ptid);
79d7f229 2752 putpkt (rs->buf);
8d64371b 2753 getpkt (&rs->buf, 0);
c906108c 2754 if (gen)
47f8a51d 2755 rs->general_thread = ptid;
c906108c 2756 else
47f8a51d 2757 rs->continue_thread = ptid;
c906108c 2758}
79d7f229 2759
6b8edb51
PA
2760void
2761remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2762{
2763 set_thread (ptid, 1);
2764}
2765
6b8edb51
PA
2766void
2767remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2768{
2769 set_thread (ptid, 0);
2770}
2771
3c9c4b83
PA
2772/* Change the remote current process. Which thread within the process
2773 ends up selected isn't important, as long as it is the same process
2774 as what INFERIOR_PTID points to.
2775
2776 This comes from that fact that there is no explicit notion of
2777 "selected process" in the protocol. The selected process for
2778 general operations is the process the selected general thread
2779 belongs to. */
2780
6b8edb51
PA
2781void
2782remote_target::set_general_process ()
3c9c4b83
PA
2783{
2784 struct remote_state *rs = get_remote_state ();
2785
2786 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2787 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2788 return;
2789
2790 /* We only need to change the remote current thread if it's pointing
2791 at some other process. */
e99b03dc 2792 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2793 set_general_thread (inferior_ptid);
2794}
2795
c906108c 2796\f
7d1a114c
PA
2797/* Return nonzero if this is the main thread that we made up ourselves
2798 to model non-threaded targets as single-threaded. */
c906108c
SS
2799
2800static int
f6ac5f3d 2801remote_thread_always_alive (ptid_t ptid)
c906108c 2802{
d7e15655 2803 if (ptid == magic_null_ptid)
c0a2216e
PA
2804 /* The main thread is always alive. */
2805 return 1;
2806
e38504b3 2807 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2808 /* The main thread is always alive. This can happen after a
2809 vAttach, if the remote side doesn't support
2810 multi-threading. */
2811 return 1;
2812
7d1a114c
PA
2813 return 0;
2814}
2815
2816/* Return nonzero if the thread PTID is still alive on the remote
2817 system. */
2818
57810aa7 2819bool
f6ac5f3d 2820remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2821{
2822 struct remote_state *rs = get_remote_state ();
2823 char *p, *endp;
2824
2825 /* Check if this is a thread that we made up ourselves to model
2826 non-threaded targets as single-threaded. */
f6ac5f3d 2827 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2828 return 1;
2829
8d64371b
TT
2830 p = rs->buf.data ();
2831 endp = p + get_remote_packet_size ();
82f73884
PA
2832
2833 *p++ = 'T';
2834 write_ptid (p, endp, ptid);
2835
2e9f7625 2836 putpkt (rs->buf);
8d64371b 2837 getpkt (&rs->buf, 0);
2e9f7625 2838 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2839}
2840
79efa585
SM
2841/* Return a pointer to a thread name if we know it and NULL otherwise.
2842 The thread_info object owns the memory for the name. */
2843
f6ac5f3d
PA
2844const char *
2845remote_target::thread_name (struct thread_info *info)
79efa585
SM
2846{
2847 if (info->priv != NULL)
a9334058
SM
2848 {
2849 const std::string &name = get_remote_thread_info (info)->name;
2850 return !name.empty () ? name.c_str () : NULL;
2851 }
79efa585
SM
2852
2853 return NULL;
2854}
2855
c906108c
SS
2856/* About these extended threadlist and threadinfo packets. They are
2857 variable length packets but, the fields within them are often fixed
2858 length. They are redundent enough to send over UDP as is the
2859 remote protocol in general. There is a matching unit test module
2860 in libstub. */
2861
23860348 2862/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2863 libstub protocol encoding, and remote.c. It is not particularly
23860348 2864 changable. */
cce74817
JM
2865
2866/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2867 Plan to fix this. */
cce74817 2868
23860348 2869typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2870
9d1f7ab2 2871/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2872 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2873
2874struct gdb_ext_thread_info
c5aa993b 2875 {
23860348 2876 threadref threadid; /* External form of thread reference. */
2bc416ba 2877 int active; /* Has state interesting to GDB?
23860348 2878 regs, stack. */
2bc416ba 2879 char display[256]; /* Brief state display, name,
cedea757 2880 blocked/suspended. */
23860348 2881 char shortname[32]; /* To be used to name threads. */
2bc416ba 2882 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2883 whatever. */
c5aa993b 2884 };
cce74817
JM
2885
2886/* The volume of remote transfers can be limited by submitting
2887 a mask containing bits specifying the desired information.
2888 Use a union of these values as the 'selection' parameter to
0df8b418 2889 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2890
2891#define TAG_THREADID 1
2892#define TAG_EXISTS 2
2893#define TAG_DISPLAY 4
2894#define TAG_THREADNAME 8
c5aa993b 2895#define TAG_MOREDISPLAY 16
cce74817 2896
23860348 2897#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2898
a14ed312 2899static char *unpack_nibble (char *buf, int *val);
cce74817 2900
a14ed312 2901static char *unpack_byte (char *buf, int *value);
cce74817 2902
a14ed312 2903static char *pack_int (char *buf, int value);
cce74817 2904
a14ed312 2905static char *unpack_int (char *buf, int *value);
cce74817 2906
a14ed312 2907static char *unpack_string (char *src, char *dest, int length);
cce74817 2908
23860348 2909static char *pack_threadid (char *pkt, threadref *id);
cce74817 2910
23860348 2911static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2912
23860348 2913void int_to_threadref (threadref *id, int value);
cce74817 2914
23860348 2915static int threadref_to_int (threadref *ref);
cce74817 2916
23860348 2917static void copy_threadref (threadref *dest, threadref *src);
cce74817 2918
23860348 2919static int threadmatch (threadref *dest, threadref *src);
cce74817 2920
2bc416ba 2921static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2922 threadref *id);
cce74817 2923
a14ed312
KB
2924static char *pack_threadlist_request (char *pkt, int startflag,
2925 int threadcount,
23860348 2926 threadref *nextthread);
cce74817 2927
23860348 2928static int remote_newthread_step (threadref *ref, void *context);
cce74817 2929
82f73884
PA
2930
2931/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2932 buffer we're allowed to write to. Returns
2933 BUF+CHARACTERS_WRITTEN. */
2934
6b8edb51
PA
2935char *
2936remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2937{
2938 int pid, tid;
2939 struct remote_state *rs = get_remote_state ();
2940
2941 if (remote_multi_process_p (rs))
2942 {
e99b03dc 2943 pid = ptid.pid ();
82f73884
PA
2944 if (pid < 0)
2945 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2946 else
2947 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2948 }
e38504b3 2949 tid = ptid.lwp ();
82f73884
PA
2950 if (tid < 0)
2951 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2952 else
2953 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2954
2955 return buf;
2956}
2957
256642e8
PA
2958/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2959 last parsed char. Returns null_ptid if no thread id is found, and
2960 throws an error if the thread id has an invalid format. */
82f73884
PA
2961
2962static ptid_t
256642e8 2963read_ptid (const char *buf, const char **obuf)
82f73884 2964{
256642e8
PA
2965 const char *p = buf;
2966 const char *pp;
82f73884 2967 ULONGEST pid = 0, tid = 0;
82f73884
PA
2968
2969 if (*p == 'p')
2970 {
2971 /* Multi-process ptid. */
2972 pp = unpack_varlen_hex (p + 1, &pid);
2973 if (*pp != '.')
b37520b6 2974 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2975
2976 p = pp;
2977 pp = unpack_varlen_hex (p + 1, &tid);
2978 if (obuf)
2979 *obuf = pp;
fd79271b 2980 return ptid_t (pid, tid, 0);
82f73884
PA
2981 }
2982
2983 /* No multi-process. Just a tid. */
2984 pp = unpack_varlen_hex (p, &tid);
2985
c9f35b34
KB
2986 /* Return null_ptid when no thread id is found. */
2987 if (p == pp)
2988 {
2989 if (obuf)
2990 *obuf = pp;
2991 return null_ptid;
2992 }
2993
82f73884 2994 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2995 what's in inferior_ptid, unless it's null at this point. If so,
2996 then since there's no way to know the pid of the reported
2997 threads, use the magic number. */
d7e15655 2998 if (inferior_ptid == null_ptid)
e99b03dc 2999 pid = magic_null_ptid.pid ();
ca19bf23 3000 else
e99b03dc 3001 pid = inferior_ptid.pid ();
82f73884
PA
3002
3003 if (obuf)
3004 *obuf = pp;
fd79271b 3005 return ptid_t (pid, tid, 0);
82f73884
PA
3006}
3007
c906108c 3008static int
fba45db2 3009stubhex (int ch)
c906108c
SS
3010{
3011 if (ch >= 'a' && ch <= 'f')
3012 return ch - 'a' + 10;
3013 if (ch >= '0' && ch <= '9')
3014 return ch - '0';
3015 if (ch >= 'A' && ch <= 'F')
3016 return ch - 'A' + 10;
3017 return -1;
3018}
3019
3020static int
fba45db2 3021stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3022{
3023 int nibble;
3024 int retval = 0;
3025
3026 while (fieldlength)
3027 {
3028 nibble = stubhex (*buff++);
3029 retval |= nibble;
3030 fieldlength--;
3031 if (fieldlength)
3032 retval = retval << 4;
3033 }
3034 return retval;
3035}
3036
c906108c 3037static char *
fba45db2 3038unpack_nibble (char *buf, int *val)
c906108c 3039{
b7589f7d 3040 *val = fromhex (*buf++);
c906108c
SS
3041 return buf;
3042}
3043
c906108c 3044static char *
fba45db2 3045unpack_byte (char *buf, int *value)
c906108c
SS
3046{
3047 *value = stub_unpack_int (buf, 2);
3048 return buf + 2;
3049}
3050
3051static char *
fba45db2 3052pack_int (char *buf, int value)
c906108c
SS
3053{
3054 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3055 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3056 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3057 buf = pack_hex_byte (buf, (value & 0xff));
3058 return buf;
3059}
3060
3061static char *
fba45db2 3062unpack_int (char *buf, int *value)
c906108c
SS
3063{
3064 *value = stub_unpack_int (buf, 8);
3065 return buf + 8;
3066}
3067
23860348 3068#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3069static char *pack_string (char *pkt, char *string);
c906108c
SS
3070
3071static char *
fba45db2 3072pack_string (char *pkt, char *string)
c906108c
SS
3073{
3074 char ch;
3075 int len;
3076
3077 len = strlen (string);
3078 if (len > 200)
23860348 3079 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3080 pkt = pack_hex_byte (pkt, len);
3081 while (len-- > 0)
3082 {
3083 ch = *string++;
3084 if ((ch == '\0') || (ch == '#'))
23860348 3085 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3086 *pkt++ = ch;
3087 }
3088 return pkt;
3089}
3090#endif /* 0 (unused) */
3091
3092static char *
fba45db2 3093unpack_string (char *src, char *dest, int length)
c906108c
SS
3094{
3095 while (length--)
3096 *dest++ = *src++;
3097 *dest = '\0';
3098 return src;
3099}
3100
3101static char *
fba45db2 3102pack_threadid (char *pkt, threadref *id)
c906108c
SS
3103{
3104 char *limit;
3105 unsigned char *altid;
3106
3107 altid = (unsigned char *) id;
3108 limit = pkt + BUF_THREAD_ID_SIZE;
3109 while (pkt < limit)
3110 pkt = pack_hex_byte (pkt, *altid++);
3111 return pkt;
3112}
3113
3114
3115static char *
fba45db2 3116unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3117{
3118 char *altref;
3119 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3120 int x, y;
3121
3122 altref = (char *) id;
3123
3124 while (inbuf < limit)
3125 {
3126 x = stubhex (*inbuf++);
3127 y = stubhex (*inbuf++);
3128 *altref++ = (x << 4) | y;
3129 }
3130 return inbuf;
3131}
3132
3133/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3134 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3135 to use 64bit thread references internally. This is an adapter
3136 function. */
3137
3138void
fba45db2 3139int_to_threadref (threadref *id, int value)
c906108c
SS
3140{
3141 unsigned char *scan;
3142
3143 scan = (unsigned char *) id;
3144 {
3145 int i = 4;
3146 while (i--)
3147 *scan++ = 0;
3148 }
3149 *scan++ = (value >> 24) & 0xff;
3150 *scan++ = (value >> 16) & 0xff;
3151 *scan++ = (value >> 8) & 0xff;
3152 *scan++ = (value & 0xff);
3153}
3154
3155static int
fba45db2 3156threadref_to_int (threadref *ref)
c906108c
SS
3157{
3158 int i, value = 0;
3159 unsigned char *scan;
3160
cfd77fa1 3161 scan = *ref;
c906108c
SS
3162 scan += 4;
3163 i = 4;
3164 while (i-- > 0)
3165 value = (value << 8) | ((*scan++) & 0xff);
3166 return value;
3167}
3168
3169static void
fba45db2 3170copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3171{
3172 int i;
3173 unsigned char *csrc, *cdest;
3174
3175 csrc = (unsigned char *) src;
3176 cdest = (unsigned char *) dest;
3177 i = 8;
3178 while (i--)
3179 *cdest++ = *csrc++;
3180}
3181
3182static int
fba45db2 3183threadmatch (threadref *dest, threadref *src)
c906108c 3184{
23860348 3185 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3186#if 0
3187 unsigned char *srcp, *destp;
3188 int i, result;
3189 srcp = (char *) src;
3190 destp = (char *) dest;
3191
3192 result = 1;
3193 while (i-- > 0)
3194 result &= (*srcp++ == *destp++) ? 1 : 0;
3195 return result;
3196#endif
3197 return 1;
3198}
3199
3200/*
c5aa993b
JM
3201 threadid:1, # always request threadid
3202 context_exists:2,
3203 display:4,
3204 unique_name:8,
3205 more_display:16
3206 */
c906108c
SS
3207
3208/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3209
3210static char *
fba45db2 3211pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3212{
23860348
MS
3213 *pkt++ = 'q'; /* Info Query */
3214 *pkt++ = 'P'; /* process or thread info */
3215 pkt = pack_int (pkt, mode); /* mode */
c906108c 3216 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3217 *pkt = '\0'; /* terminate */
c906108c
SS
3218 return pkt;
3219}
3220
23860348 3221/* These values tag the fields in a thread info response packet. */
c906108c 3222/* Tagging the fields allows us to request specific fields and to
23860348 3223 add more fields as time goes by. */
c906108c 3224
23860348 3225#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3226#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3227 fetch registers and its stack? */
c5aa993b 3228#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3229#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3230#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3231 the process. */
c906108c 3232
6b8edb51
PA
3233int
3234remote_target::remote_unpack_thread_info_response (char *pkt,
3235 threadref *expectedref,
3236 gdb_ext_thread_info *info)
c906108c 3237{
d01949b6 3238 struct remote_state *rs = get_remote_state ();
c906108c 3239 int mask, length;
cfd77fa1 3240 int tag;
c906108c 3241 threadref ref;
8d64371b 3242 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3243 int retval = 1;
3244
23860348 3245 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3246 info->active = 0;
3247 info->display[0] = '\0';
3248 info->shortname[0] = '\0';
3249 info->more_display[0] = '\0';
3250
23860348
MS
3251 /* Assume the characters indicating the packet type have been
3252 stripped. */
c906108c
SS
3253 pkt = unpack_int (pkt, &mask); /* arg mask */
3254 pkt = unpack_threadid (pkt, &ref);
3255
3256 if (mask == 0)
8a3fe4f8 3257 warning (_("Incomplete response to threadinfo request."));
c906108c 3258 if (!threadmatch (&ref, expectedref))
23860348 3259 { /* This is an answer to a different request. */
8a3fe4f8 3260 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3261 return 0;
3262 }
3263 copy_threadref (&info->threadid, &ref);
3264
23860348 3265 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 3266
23860348
MS
3267 /* Packets are terminated with nulls. */
3268 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3269 {
3270 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3271 pkt = unpack_byte (pkt, &length); /* length */
3272 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3273 {
8a3fe4f8 3274 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3275 retval = 0;
3276 break;
3277 }
3278 if (tag == TAG_THREADID)
3279 {
3280 if (length != 16)
3281 {
8a3fe4f8 3282 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3283 retval = 0;
3284 break;
3285 }
3286 pkt = unpack_threadid (pkt, &ref);
3287 mask = mask & ~TAG_THREADID;
3288 continue;
3289 }
3290 if (tag == TAG_EXISTS)
3291 {
3292 info->active = stub_unpack_int (pkt, length);
3293 pkt += length;
3294 mask = mask & ~(TAG_EXISTS);
3295 if (length > 8)
3296 {
8a3fe4f8 3297 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3298 retval = 0;
3299 break;
3300 }
3301 continue;
3302 }
3303 if (tag == TAG_THREADNAME)
3304 {
3305 pkt = unpack_string (pkt, &info->shortname[0], length);
3306 mask = mask & ~TAG_THREADNAME;
3307 continue;
3308 }
3309 if (tag == TAG_DISPLAY)
3310 {
3311 pkt = unpack_string (pkt, &info->display[0], length);
3312 mask = mask & ~TAG_DISPLAY;
3313 continue;
3314 }
3315 if (tag == TAG_MOREDISPLAY)
3316 {
3317 pkt = unpack_string (pkt, &info->more_display[0], length);
3318 mask = mask & ~TAG_MOREDISPLAY;
3319 continue;
3320 }
8a3fe4f8 3321 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3322 break; /* Not a tag we know about. */
c906108c
SS
3323 }
3324 return retval;
3325}
3326
6b8edb51
PA
3327int
3328remote_target::remote_get_threadinfo (threadref *threadid,
3329 int fieldset,
3330 gdb_ext_thread_info *info)
c906108c 3331{
d01949b6 3332 struct remote_state *rs = get_remote_state ();
c906108c 3333 int result;
c906108c 3334
8d64371b 3335 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3336 putpkt (rs->buf);
8d64371b 3337 getpkt (&rs->buf, 0);
3084dd77
PA
3338
3339 if (rs->buf[0] == '\0')
3340 return 0;
3341
8d64371b 3342 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3343 threadid, info);
c906108c
SS
3344 return result;
3345}
3346
c906108c
SS
3347/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3348
3349static char *
fba45db2
KB
3350pack_threadlist_request (char *pkt, int startflag, int threadcount,
3351 threadref *nextthread)
c906108c
SS
3352{
3353 *pkt++ = 'q'; /* info query packet */
3354 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3355 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3356 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3357 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3358 *pkt = '\0';
3359 return pkt;
3360}
3361
3362/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3363
6b8edb51
PA
3364int
3365remote_target::parse_threadlist_response (char *pkt, int result_limit,
3366 threadref *original_echo,
3367 threadref *resultlist,
3368 int *doneflag)
c906108c 3369{
d01949b6 3370 struct remote_state *rs = get_remote_state ();
c906108c
SS
3371 char *limit;
3372 int count, resultcount, done;
3373
3374 resultcount = 0;
3375 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3376 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3377 /* done parse past here */
c906108c
SS
3378 pkt = unpack_byte (pkt, &count); /* count field */
3379 pkt = unpack_nibble (pkt, &done);
3380 /* The first threadid is the argument threadid. */
3381 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3382 while ((count-- > 0) && (pkt < limit))
3383 {
3384 pkt = unpack_threadid (pkt, resultlist++);
3385 if (resultcount++ >= result_limit)
3386 break;
3387 }
3388 if (doneflag)
3389 *doneflag = done;
3390 return resultcount;
3391}
3392
6dc54d91
PA
3393/* Fetch the next batch of threads from the remote. Returns -1 if the
3394 qL packet is not supported, 0 on error and 1 on success. */
3395
6b8edb51
PA
3396int
3397remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3398 int result_limit, int *done, int *result_count,
3399 threadref *threadlist)
c906108c 3400{
d01949b6 3401 struct remote_state *rs = get_remote_state ();
c906108c
SS
3402 int result = 1;
3403
23860348 3404 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
3405 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3406 >= get_remote_packet_size ())
ea9c271d 3407 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3408
8d64371b
TT
3409 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3410 nextthread);
6d820c5c 3411 putpkt (rs->buf);
8d64371b
TT
3412 getpkt (&rs->buf, 0);
3413 if (rs->buf[0] == '\0')
6dc54d91
PA
3414 {
3415 /* Packet not supported. */
3416 return -1;
3417 }
3418
3419 *result_count =
8d64371b 3420 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3421 &rs->echo_nextthread, threadlist, done);
c906108c 3422
0d031856 3423 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3424 {
23860348
MS
3425 /* FIXME: This is a good reason to drop the packet. */
3426 /* Possably, there is a duplicate response. */
c906108c
SS
3427 /* Possabilities :
3428 retransmit immediatly - race conditions
3429 retransmit after timeout - yes
3430 exit
3431 wait for packet, then exit
3432 */
8a3fe4f8 3433 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3434 return 0; /* I choose simply exiting. */
c906108c
SS
3435 }
3436 if (*result_count <= 0)
3437 {
3438 if (*done != 1)
3439 {
8a3fe4f8 3440 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3441 result = 0;
3442 }
3443 return result; /* break; */
3444 }
3445 if (*result_count > result_limit)
3446 {
3447 *result_count = 0;
8a3fe4f8 3448 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3449 return 0;
3450 }
3451 return result;
3452}
3453
6dc54d91
PA
3454/* Fetch the list of remote threads, with the qL packet, and call
3455 STEPFUNCTION for each thread found. Stops iterating and returns 1
3456 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3457 STEPFUNCTION returns false. If the packet is not supported,
3458 returns -1. */
c906108c 3459
6b8edb51
PA
3460int
3461remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3462 void *context, int looplimit)
c906108c 3463{
0d031856 3464 struct remote_state *rs = get_remote_state ();
c906108c
SS
3465 int done, i, result_count;
3466 int startflag = 1;
3467 int result = 1;
3468 int loopcount = 0;
c906108c
SS
3469
3470 done = 0;
3471 while (!done)
3472 {
3473 if (loopcount++ > looplimit)
3474 {
3475 result = 0;
8a3fe4f8 3476 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3477 break;
3478 }
6dc54d91
PA
3479 result = remote_get_threadlist (startflag, &rs->nextthread,
3480 MAXTHREADLISTRESULTS,
3481 &done, &result_count,
3482 rs->resultthreadlist);
3483 if (result <= 0)
3484 break;
23860348 3485 /* Clear for later iterations. */
c906108c
SS
3486 startflag = 0;
3487 /* Setup to resume next batch of thread references, set nextthread. */
3488 if (result_count >= 1)
0d031856
TT
3489 copy_threadref (&rs->nextthread,
3490 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3491 i = 0;
3492 while (result_count--)
6dc54d91
PA
3493 {
3494 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3495 {
3496 result = 0;
3497 break;
3498 }
3499 }
c906108c
SS
3500 }
3501 return result;
3502}
3503
6dc54d91
PA
3504/* A thread found on the remote target. */
3505
21fe1c75 3506struct thread_item
6dc54d91 3507{
21fe1c75
SM
3508 explicit thread_item (ptid_t ptid_)
3509 : ptid (ptid_)
3510 {}
3511
3512 thread_item (thread_item &&other) = default;
3513 thread_item &operator= (thread_item &&other) = default;
3514
3515 DISABLE_COPY_AND_ASSIGN (thread_item);
3516
6dc54d91
PA
3517 /* The thread's PTID. */
3518 ptid_t ptid;
3519
21fe1c75
SM
3520 /* The thread's extra info. */
3521 std::string extra;
6dc54d91 3522
21fe1c75
SM
3523 /* The thread's name. */
3524 std::string name;
79efa585 3525
6dc54d91 3526 /* The core the thread was running on. -1 if not known. */
21fe1c75 3527 int core = -1;
f6327dcb
KB
3528
3529 /* The thread handle associated with the thread. */
21fe1c75 3530 gdb::byte_vector thread_handle;
21fe1c75 3531};
6dc54d91
PA
3532
3533/* Context passed around to the various methods listing remote
3534 threads. As new threads are found, they're added to the ITEMS
3535 vector. */
3536
3537struct threads_listing_context
3538{
21fe1c75
SM
3539 /* Return true if this object contains an entry for a thread with ptid
3540 PTID. */
6dc54d91 3541
21fe1c75
SM
3542 bool contains_thread (ptid_t ptid) const
3543 {
3544 auto match_ptid = [&] (const thread_item &item)
3545 {
3546 return item.ptid == ptid;
3547 };
80134cf5 3548
21fe1c75
SM
3549 auto it = std::find_if (this->items.begin (),
3550 this->items.end (),
3551 match_ptid);
80134cf5 3552
21fe1c75
SM
3553 return it != this->items.end ();
3554 }
80134cf5 3555
21fe1c75 3556 /* Remove the thread with ptid PTID. */
80134cf5 3557
21fe1c75
SM
3558 void remove_thread (ptid_t ptid)
3559 {
3560 auto match_ptid = [&] (const thread_item &item)
3561 {
3562 return item.ptid == ptid;
3563 };
cbb8991c 3564
21fe1c75
SM
3565 auto it = std::remove_if (this->items.begin (),
3566 this->items.end (),
3567 match_ptid);
cbb8991c 3568
21fe1c75
SM
3569 if (it != this->items.end ())
3570 this->items.erase (it);
3571 }
3572
3573 /* The threads found on the remote target. */
3574 std::vector<thread_item> items;
3575};
cbb8991c 3576
c906108c 3577static int
6dc54d91 3578remote_newthread_step (threadref *ref, void *data)
c906108c 3579{
19ba03f4
SM
3580 struct threads_listing_context *context
3581 = (struct threads_listing_context *) data;
21fe1c75
SM
3582 int pid = inferior_ptid.pid ();
3583 int lwp = threadref_to_int (ref);
3584 ptid_t ptid (pid, lwp);
6dc54d91 3585
21fe1c75 3586 context->items.emplace_back (ptid);
6dc54d91 3587
c906108c
SS
3588 return 1; /* continue iterator */
3589}
3590
3591#define CRAZY_MAX_THREADS 1000
3592
6b8edb51
PA
3593ptid_t
3594remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3595{
d01949b6 3596 struct remote_state *rs = get_remote_state ();
c906108c
SS
3597
3598 putpkt ("qC");
8d64371b 3599 getpkt (&rs->buf, 0);
2e9f7625 3600 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3601 {
256642e8 3602 const char *obuf;
c9f35b34
KB
3603 ptid_t result;
3604
3605 result = read_ptid (&rs->buf[2], &obuf);
3606 if (*obuf != '\0' && remote_debug)
3607 fprintf_unfiltered (gdb_stdlog,
3608 "warning: garbage in qC reply\n");
3609
3610 return result;
3611 }
c906108c
SS
3612 else
3613 return oldpid;
3614}
3615
6dc54d91 3616/* List remote threads using the deprecated qL packet. */
cce74817 3617
6b8edb51
PA
3618int
3619remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3620{
6dc54d91
PA
3621 if (remote_threadlist_iterator (remote_newthread_step, context,
3622 CRAZY_MAX_THREADS) >= 0)
3623 return 1;
3624
3625 return 0;
c906108c
SS
3626}
3627
dc146f7c
VP
3628#if defined(HAVE_LIBEXPAT)
3629
dc146f7c
VP
3630static void
3631start_thread (struct gdb_xml_parser *parser,
3632 const struct gdb_xml_element *element,
4d0fdd9b
SM
3633 void *user_data,
3634 std::vector<gdb_xml_value> &attributes)
dc146f7c 3635{
19ba03f4
SM
3636 struct threads_listing_context *data
3637 = (struct threads_listing_context *) user_data;
3d2c1d41 3638 struct gdb_xml_value *attr;
dc146f7c 3639
4d0fdd9b 3640 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3641 ptid_t ptid = read_ptid (id, NULL);
3642
3643 data->items.emplace_back (ptid);
3644 thread_item &item = data->items.back ();
dc146f7c 3645
3d2c1d41
PA
3646 attr = xml_find_attribute (attributes, "core");
3647 if (attr != NULL)
4d0fdd9b 3648 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3649
79efa585 3650 attr = xml_find_attribute (attributes, "name");
21fe1c75 3651 if (attr != NULL)
4d0fdd9b 3652 item.name = (const char *) attr->value.get ();
79efa585 3653
f6327dcb
KB
3654 attr = xml_find_attribute (attributes, "handle");
3655 if (attr != NULL)
4d0fdd9b 3656 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3657}
3658
3659static void
3660end_thread (struct gdb_xml_parser *parser,
3661 const struct gdb_xml_element *element,
3662 void *user_data, const char *body_text)
3663{
19ba03f4
SM
3664 struct threads_listing_context *data
3665 = (struct threads_listing_context *) user_data;
dc146f7c 3666
21fe1c75
SM
3667 if (body_text != NULL && *body_text != '\0')
3668 data->items.back ().extra = body_text;
dc146f7c
VP
3669}
3670
3671const struct gdb_xml_attribute thread_attributes[] = {
3672 { "id", GDB_XML_AF_NONE, NULL, NULL },
3673 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3674 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3675 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3676 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3677};
3678
3679const struct gdb_xml_element thread_children[] = {
3680 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3681};
3682
3683const struct gdb_xml_element threads_children[] = {
3684 { "thread", thread_attributes, thread_children,
3685 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3686 start_thread, end_thread },
3687 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3688};
3689
3690const struct gdb_xml_element threads_elements[] = {
3691 { "threads", NULL, threads_children,
3692 GDB_XML_EF_NONE, NULL, NULL },
3693 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3694};
3695
3696#endif
3697
6dc54d91 3698/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3699
6b8edb51
PA
3700int
3701remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3702{
dc146f7c 3703#if defined(HAVE_LIBEXPAT)
4082afcc 3704 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3705 {
9018be22 3706 gdb::optional<gdb::char_vector> xml
6b8edb51 3707 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3708
9018be22 3709 if (xml && (*xml)[0] != '\0')
dc146f7c 3710 {
6dc54d91 3711 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3712 threads_elements, xml->data (), context);
dc146f7c
VP
3713 }
3714
6dc54d91 3715 return 1;
dc146f7c
VP
3716 }
3717#endif
3718
6dc54d91
PA
3719 return 0;
3720}
3721
3722/* List remote threads using qfThreadInfo/qsThreadInfo. */
3723
6b8edb51
PA
3724int
3725remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3726{
3727 struct remote_state *rs = get_remote_state ();
3728
b80fafe3 3729 if (rs->use_threadinfo_query)
9d1f7ab2 3730 {
256642e8 3731 const char *bufp;
6dc54d91 3732
9d1f7ab2 3733 putpkt ("qfThreadInfo");
8d64371b
TT
3734 getpkt (&rs->buf, 0);
3735 bufp = rs->buf.data ();
9d1f7ab2 3736 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3737 {
9d1f7ab2
MS
3738 while (*bufp++ == 'm') /* reply contains one or more TID */
3739 {
3740 do
3741 {
21fe1c75
SM
3742 ptid_t ptid = read_ptid (bufp, &bufp);
3743 context->items.emplace_back (ptid);
9d1f7ab2
MS
3744 }
3745 while (*bufp++ == ','); /* comma-separated list */
3746 putpkt ("qsThreadInfo");
8d64371b
TT
3747 getpkt (&rs->buf, 0);
3748 bufp = rs->buf.data ();
9d1f7ab2 3749 }
6dc54d91
PA
3750 return 1;
3751 }
3752 else
3753 {
3754 /* Packet not recognized. */
3755 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3756 }
3757 }
3758
6dc54d91
PA
3759 return 0;
3760}
3761
e8032dde 3762/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3763 targets. */
3764
f6ac5f3d
PA
3765void
3766remote_target::update_thread_list ()
6dc54d91 3767{
6dc54d91 3768 struct threads_listing_context context;
ab970af1 3769 int got_list = 0;
e8032dde 3770
6dc54d91
PA
3771 /* We have a few different mechanisms to fetch the thread list. Try
3772 them all, starting with the most preferred one first, falling
3773 back to older methods. */
6b8edb51
PA
3774 if (remote_get_threads_with_qxfer (&context)
3775 || remote_get_threads_with_qthreadinfo (&context)
3776 || remote_get_threads_with_ql (&context))
6dc54d91 3777 {
ab970af1
PA
3778 got_list = 1;
3779
21fe1c75 3780 if (context.items.empty ()
f6ac5f3d 3781 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3782 {
3783 /* Some targets don't really support threads, but still
3784 reply an (empty) thread list in response to the thread
3785 listing packets, instead of replying "packet not
3786 supported". Exit early so we don't delete the main
3787 thread. */
7d1a114c
PA
3788 return;
3789 }
3790
ab970af1
PA
3791 /* CONTEXT now holds the current thread list on the remote
3792 target end. Delete GDB-side threads no longer found on the
3793 target. */
08036331 3794 for (thread_info *tp : all_threads_safe ())
cbb8991c 3795 {
21fe1c75 3796 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3797 {
3798 /* Not found. */
00431a78 3799 delete_thread (tp);
ab970af1 3800 }
cbb8991c
DB
3801 }
3802
3803 /* Remove any unreported fork child threads from CONTEXT so
3804 that we don't interfere with follow fork, which is where
3805 creation of such threads is handled. */
3806 remove_new_fork_children (&context);
74531fed 3807
ab970af1 3808 /* And now add threads we don't know about yet to our list. */
21fe1c75 3809 for (thread_item &item : context.items)
6dc54d91 3810 {
21fe1c75 3811 if (item.ptid != null_ptid)
6dc54d91 3812 {
6dc54d91 3813 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3814 executing until proven otherwise with a stop reply.
3815 In all-stop, we can only get here if all threads are
6dc54d91 3816 stopped. */
0d5b594f 3817 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3818
21fe1c75 3819 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3820
08036331 3821 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3822 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3823 info->core = item.core;
7aabaf9d
SM
3824 info->extra = std::move (item.extra);
3825 info->name = std::move (item.name);
3826 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3827 }
3828 }
3829 }
3830
ab970af1
PA
3831 if (!got_list)
3832 {
3833 /* If no thread listing method is supported, then query whether
3834 each known thread is alive, one by one, with the T packet.
3835 If the target doesn't support threads at all, then this is a
3836 no-op. See remote_thread_alive. */
3837 prune_threads ();
3838 }
9d1f7ab2
MS
3839}
3840
802188a7 3841/*
9d1f7ab2
MS
3842 * Collect a descriptive string about the given thread.
3843 * The target may say anything it wants to about the thread
3844 * (typically info about its blocked / runnable state, name, etc.).
3845 * This string will appear in the info threads display.
802188a7 3846 *
9d1f7ab2
MS
3847 * Optional: targets are not required to implement this function.
3848 */
3849
f6ac5f3d
PA
3850const char *
3851remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3852{
d01949b6 3853 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3854 int set;
3855 threadref id;
3856 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3857
5d93a237 3858 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3859 internal_error (__FILE__, __LINE__,
e2e0b3e5 3860 _("remote_threads_extra_info"));
9d1f7ab2 3861
d7e15655 3862 if (tp->ptid == magic_null_ptid
e38504b3 3863 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3864 /* This is the main thread which was added by GDB. The remote
3865 server doesn't know about it. */
3866 return NULL;
3867
c76a8ea3
PA
3868 std::string &extra = get_remote_thread_info (tp)->extra;
3869
3870 /* If already have cached info, use it. */
3871 if (!extra.empty ())
3872 return extra.c_str ();
3873
4082afcc 3874 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3875 {
c76a8ea3
PA
3876 /* If we're using qXfer:threads:read, then the extra info is
3877 included in the XML. So if we didn't have anything cached,
3878 it's because there's really no extra info. */
3879 return NULL;
dc146f7c
VP
3880 }
3881
b80fafe3 3882 if (rs->use_threadextra_query)
9d1f7ab2 3883 {
8d64371b
TT
3884 char *b = rs->buf.data ();
3885 char *endb = b + get_remote_packet_size ();
82f73884
PA
3886
3887 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3888 b += strlen (b);
3889 write_ptid (b, endb, tp->ptid);
3890
2e9f7625 3891 putpkt (rs->buf);
8d64371b 3892 getpkt (&rs->buf, 0);
2e9f7625 3893 if (rs->buf[0] != 0)
9d1f7ab2 3894 {
8d64371b
TT
3895 extra.resize (strlen (rs->buf.data ()) / 2);
3896 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3897 return extra.c_str ();
9d1f7ab2 3898 }
0f71a2f6 3899 }
9d1f7ab2
MS
3900
3901 /* If the above query fails, fall back to the old method. */
b80fafe3 3902 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3903 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3904 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3905 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3906 if (remote_get_threadinfo (&id, set, &threadinfo))
3907 if (threadinfo.active)
0f71a2f6 3908 {
9d1f7ab2 3909 if (*threadinfo.shortname)
c76a8ea3 3910 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3911 if (*threadinfo.display)
c76a8ea3
PA
3912 {
3913 if (!extra.empty ())
3914 extra += ',';
3915 string_appendf (extra, " State: %s", threadinfo.display);
3916 }
9d1f7ab2 3917 if (*threadinfo.more_display)
c5aa993b 3918 {
c76a8ea3
PA
3919 if (!extra.empty ())
3920 extra += ',';
3921 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3922 }
c76a8ea3 3923 return extra.c_str ();
0f71a2f6 3924 }
9d1f7ab2 3925 return NULL;
0f71a2f6 3926}
c906108c 3927\f
c5aa993b 3928
f6ac5f3d
PA
3929bool
3930remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3931 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3932{
3933 struct remote_state *rs = get_remote_state ();
8d64371b 3934 char *p = rs->buf.data ();
0fb4aa4b 3935
bba74b36 3936 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3937 p += strlen (p);
3938 p += hexnumstr (p, addr);
3939 putpkt (rs->buf);
8d64371b
TT
3940 getpkt (&rs->buf, 0);
3941 p = rs->buf.data ();
0fb4aa4b
PA
3942
3943 if (*p == 'E')
3944 error (_("Remote failure reply: %s"), p);
3945
3946 if (*p++ == 'm')
3947 {
256642e8 3948 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3949 return true;
0fb4aa4b
PA
3950 }
3951
5d9310c4 3952 return false;
0fb4aa4b
PA
3953}
3954
f6ac5f3d
PA
3955std::vector<static_tracepoint_marker>
3956remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3957{
3958 struct remote_state *rs = get_remote_state ();
5d9310c4 3959 std::vector<static_tracepoint_marker> markers;
256642e8 3960 const char *p;
5d9310c4 3961 static_tracepoint_marker marker;
0fb4aa4b
PA
3962
3963 /* Ask for a first packet of static tracepoint marker
3964 definition. */
3965 putpkt ("qTfSTM");
8d64371b
TT
3966 getpkt (&rs->buf, 0);
3967 p = rs->buf.data ();
0fb4aa4b
PA
3968 if (*p == 'E')
3969 error (_("Remote failure reply: %s"), p);
3970
0fb4aa4b
PA
3971 while (*p++ == 'm')
3972 {
0fb4aa4b
PA
3973 do
3974 {
5d9310c4 3975 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3976
5d9310c4
SM
3977 if (strid == NULL || marker.str_id == strid)
3978 markers.push_back (std::move (marker));
0fb4aa4b
PA
3979 }
3980 while (*p++ == ','); /* comma-separated list */
3981 /* Ask for another packet of static tracepoint definition. */
3982 putpkt ("qTsSTM");
8d64371b
TT
3983 getpkt (&rs->buf, 0);
3984 p = rs->buf.data ();
0fb4aa4b
PA
3985 }
3986
0fb4aa4b
PA
3987 return markers;
3988}
3989
3990\f
10760264
JB
3991/* Implement the to_get_ada_task_ptid function for the remote targets. */
3992
f6ac5f3d
PA
3993ptid_t
3994remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 3995{
e99b03dc 3996 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
3997}
3998\f
3999
24b06219 4000/* Restart the remote side; this is an extended protocol operation. */
c906108c 4001
6b8edb51
PA
4002void
4003remote_target::extended_remote_restart ()
c906108c 4004{
d01949b6 4005 struct remote_state *rs = get_remote_state ();
c906108c
SS
4006
4007 /* Send the restart command; for reasons I don't understand the
4008 remote side really expects a number after the "R". */
8d64371b 4009 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4010 putpkt (rs->buf);
c906108c 4011
ad9a8f3f 4012 remote_fileio_reset ();
c906108c
SS
4013}
4014\f
4015/* Clean up connection to a remote debugger. */
4016
f6ac5f3d
PA
4017void
4018remote_target::close ()
c906108c 4019{
048094ac 4020 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4021 terminal_ours ();
ce5ce7ed 4022
ce5ce7ed 4023 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
4024 of all the inferiors and their threads we were controlling.
4025 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4026 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4027 inferior_ptid = null_ptid;
f67fd822 4028 discard_all_inferiors ();
ce5ce7ed 4029
6b8edb51
PA
4030 trace_reset_local_state ();
4031
4032 delete this;
4033}
4034
4035remote_target::~remote_target ()
4036{
4037 struct remote_state *rs = get_remote_state ();
4038
4039 /* Check for NULL because we may get here with a partially
4040 constructed target/connection. */
4041 if (rs->remote_desc == nullptr)
4042 return;
4043
4044 serial_close (rs->remote_desc);
4045
4046 /* We are destroying the remote target, so we should discard
f48ff2a7 4047 everything of this target. */
6b8edb51 4048 discard_pending_stop_replies_in_queue ();
74531fed 4049
6b8edb51
PA
4050 if (rs->remote_async_inferior_event_token)
4051 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4052
5965e028 4053 remote_notif_state_xfree (rs->notif_state);
c906108c
SS
4054}
4055
23860348 4056/* Query the remote side for the text, data and bss offsets. */
c906108c 4057
6b8edb51
PA
4058void
4059remote_target::get_offsets ()
c906108c 4060{
d01949b6 4061 struct remote_state *rs = get_remote_state ();
2e9f7625 4062 char *buf;
085dd6e6 4063 char *ptr;
31d99776
DJ
4064 int lose, num_segments = 0, do_sections, do_segments;
4065 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 4066 struct section_offsets *offs;
31d99776
DJ
4067 struct symfile_segment_data *data;
4068
4069 if (symfile_objfile == NULL)
4070 return;
c906108c
SS
4071
4072 putpkt ("qOffsets");
8d64371b
TT
4073 getpkt (&rs->buf, 0);
4074 buf = rs->buf.data ();
c906108c
SS
4075
4076 if (buf[0] == '\000')
4077 return; /* Return silently. Stub doesn't support
23860348 4078 this command. */
c906108c
SS
4079 if (buf[0] == 'E')
4080 {
8a3fe4f8 4081 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4082 return;
4083 }
4084
4085 /* Pick up each field in turn. This used to be done with scanf, but
4086 scanf will make trouble if CORE_ADDR size doesn't match
4087 conversion directives correctly. The following code will work
4088 with any size of CORE_ADDR. */
4089 text_addr = data_addr = bss_addr = 0;
4090 ptr = buf;
4091 lose = 0;
4092
61012eef 4093 if (startswith (ptr, "Text="))
c906108c
SS
4094 {
4095 ptr += 5;
4096 /* Don't use strtol, could lose on big values. */
4097 while (*ptr && *ptr != ';')
4098 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4099
61012eef 4100 if (startswith (ptr, ";Data="))
31d99776
DJ
4101 {
4102 ptr += 6;
4103 while (*ptr && *ptr != ';')
4104 data_addr = (data_addr << 4) + fromhex (*ptr++);
4105 }
4106 else
4107 lose = 1;
4108
61012eef 4109 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4110 {
4111 ptr += 5;
4112 while (*ptr && *ptr != ';')
4113 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4114
31d99776
DJ
4115 if (bss_addr != data_addr)
4116 warning (_("Target reported unsupported offsets: %s"), buf);
4117 }
4118 else
4119 lose = 1;
4120 }
61012eef 4121 else if (startswith (ptr, "TextSeg="))
c906108c 4122 {
31d99776
DJ
4123 ptr += 8;
4124 /* Don't use strtol, could lose on big values. */
c906108c 4125 while (*ptr && *ptr != ';')
31d99776
DJ
4126 text_addr = (text_addr << 4) + fromhex (*ptr++);
4127 num_segments = 1;
4128
61012eef 4129 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4130 {
4131 ptr += 9;
4132 while (*ptr && *ptr != ';')
4133 data_addr = (data_addr << 4) + fromhex (*ptr++);
4134 num_segments++;
4135 }
c906108c
SS
4136 }
4137 else
4138 lose = 1;
4139
4140 if (lose)
8a3fe4f8 4141 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4142 else if (*ptr != '\0')
4143 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4144
802188a7 4145 offs = ((struct section_offsets *)
a39a16c4 4146 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 4147 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 4148 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 4149
31d99776
DJ
4150 data = get_symfile_segment_data (symfile_objfile->obfd);
4151 do_segments = (data != NULL);
4152 do_sections = num_segments == 0;
c906108c 4153
28c32713 4154 if (num_segments > 0)
31d99776 4155 {
31d99776
DJ
4156 segments[0] = text_addr;
4157 segments[1] = data_addr;
4158 }
28c32713
JB
4159 /* If we have two segments, we can still try to relocate everything
4160 by assuming that the .text and .data offsets apply to the whole
4161 text and data segments. Convert the offsets given in the packet
4162 to base addresses for symfile_map_offsets_to_segments. */
4163 else if (data && data->num_segments == 2)
4164 {
4165 segments[0] = data->segment_bases[0] + text_addr;
4166 segments[1] = data->segment_bases[1] + data_addr;
4167 num_segments = 2;
4168 }
8d385431
DJ
4169 /* If the object file has only one segment, assume that it is text
4170 rather than data; main programs with no writable data are rare,
4171 but programs with no code are useless. Of course the code might
4172 have ended up in the data segment... to detect that we would need
4173 the permissions here. */
4174 else if (data && data->num_segments == 1)
4175 {
4176 segments[0] = data->segment_bases[0] + text_addr;
4177 num_segments = 1;
4178 }
28c32713
JB
4179 /* There's no way to relocate by segment. */
4180 else
4181 do_segments = 0;
31d99776
DJ
4182
4183 if (do_segments)
4184 {
4185 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4186 offs, num_segments, segments);
4187
4188 if (ret == 0 && !do_sections)
3e43a32a
MS
4189 error (_("Can not handle qOffsets TextSeg "
4190 "response with this symbol file"));
31d99776
DJ
4191
4192 if (ret > 0)
4193 do_sections = 0;
4194 }
c906108c 4195
9ef895d6
DJ
4196 if (data)
4197 free_symfile_segment_data (data);
31d99776
DJ
4198
4199 if (do_sections)
4200 {
4201 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4202
3e43a32a
MS
4203 /* This is a temporary kludge to force data and bss to use the
4204 same offsets because that's what nlmconv does now. The real
4205 solution requires changes to the stub and remote.c that I
4206 don't have time to do right now. */
31d99776
DJ
4207
4208 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4209 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4210 }
c906108c
SS
4211
4212 objfile_relocate (symfile_objfile, offs);
4213}
4214
9a7071a8 4215/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4216
4217void
4218remote_target::send_interrupt_sequence ()
9a7071a8 4219{
5d93a237
TT
4220 struct remote_state *rs = get_remote_state ();
4221
9a7071a8 4222 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4223 remote_serial_write ("\x03", 1);
9a7071a8 4224 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4225 serial_send_break (rs->remote_desc);
9a7071a8
JB
4226 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4227 {
5d93a237 4228 serial_send_break (rs->remote_desc);
c33e31fd 4229 remote_serial_write ("g", 1);
9a7071a8
JB
4230 }
4231 else
4232 internal_error (__FILE__, __LINE__,
4233 _("Invalid value for interrupt_sequence_mode: %s."),
4234 interrupt_sequence_mode);
4235}
4236
3405876a
PA
4237
4238/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4239 and extract the PTID. Returns NULL_PTID if not found. */
4240
4241static ptid_t
4242stop_reply_extract_thread (char *stop_reply)
4243{
4244 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4245 {
256642e8 4246 const char *p;
3405876a
PA
4247
4248 /* Txx r:val ; r:val (...) */
4249 p = &stop_reply[3];
4250
4251 /* Look for "register" named "thread". */
4252 while (*p != '\0')
4253 {
256642e8 4254 const char *p1;
3405876a
PA
4255
4256 p1 = strchr (p, ':');
4257 if (p1 == NULL)
4258 return null_ptid;
4259
4260 if (strncmp (p, "thread", p1 - p) == 0)
4261 return read_ptid (++p1, &p);
4262
4263 p1 = strchr (p, ';');
4264 if (p1 == NULL)
4265 return null_ptid;
4266 p1++;
4267
4268 p = p1;
4269 }
4270 }
4271
4272 return null_ptid;
4273}
4274
b7ea362b
PA
4275/* Determine the remote side's current thread. If we have a stop
4276 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4277 "thread" register we can extract the current thread from. If not,
4278 ask the remote which is the current thread with qC. The former
4279 method avoids a roundtrip. */
4280
6b8edb51
PA
4281ptid_t
4282remote_target::get_current_thread (char *wait_status)
b7ea362b 4283{
6a49a997 4284 ptid_t ptid = null_ptid;
b7ea362b
PA
4285
4286 /* Note we don't use remote_parse_stop_reply as that makes use of
4287 the target architecture, which we haven't yet fully determined at
4288 this point. */
4289 if (wait_status != NULL)
4290 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4291 if (ptid == null_ptid)
b7ea362b
PA
4292 ptid = remote_current_thread (inferior_ptid);
4293
4294 return ptid;
4295}
4296
49c62f2e
PA
4297/* Query the remote target for which is the current thread/process,
4298 add it to our tables, and update INFERIOR_PTID. The caller is
4299 responsible for setting the state such that the remote end is ready
3405876a
PA
4300 to return the current thread.
4301
4302 This function is called after handling the '?' or 'vRun' packets,
4303 whose response is a stop reply from which we can also try
4304 extracting the thread. If the target doesn't support the explicit
4305 qC query, we infer the current thread from that stop reply, passed
4306 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4307
6b8edb51
PA
4308void
4309remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4310{
4311 struct remote_state *rs = get_remote_state ();
4312 int fake_pid_p = 0;
49c62f2e
PA
4313
4314 inferior_ptid = null_ptid;
4315
b7ea362b 4316 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4317 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4318
87215ad1 4319 if (curr_ptid != null_ptid)
49c62f2e
PA
4320 {
4321 if (!remote_multi_process_p (rs))
4322 fake_pid_p = 1;
49c62f2e
PA
4323 }
4324 else
4325 {
4326 /* Without this, some commands which require an active target
4327 (such as kill) won't work. This variable serves (at least)
4328 double duty as both the pid of the target process (if it has
4329 such), and as a flag indicating that a target is active. */
87215ad1 4330 curr_ptid = magic_null_ptid;
49c62f2e
PA
4331 fake_pid_p = 1;
4332 }
4333
e99b03dc 4334 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4335
87215ad1
SDJ
4336 /* Add the main thread and switch to it. Don't try reading
4337 registers yet, since we haven't fetched the target description
4338 yet. */
4339 thread_info *tp = add_thread_silent (curr_ptid);
4340 switch_to_thread_no_regs (tp);
49c62f2e
PA
4341}
4342
6efcd9a8
PA
4343/* Print info about a thread that was found already stopped on
4344 connection. */
4345
4346static void
4347print_one_stopped_thread (struct thread_info *thread)
4348{
4349 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4350
00431a78 4351 switch_to_thread (thread);
f2ffa92b 4352 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4353 set_current_sal_from_frame (get_current_frame ());
4354
4355 thread->suspend.waitstatus_pending_p = 0;
4356
4357 if (ws->kind == TARGET_WAITKIND_STOPPED)
4358 {
4359 enum gdb_signal sig = ws->value.sig;
4360
4361 if (signal_print_state (sig))
76727919 4362 gdb::observers::signal_received.notify (sig);
6efcd9a8 4363 }
76727919 4364 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4365}
4366
221e1a37
PA
4367/* Process all initial stop replies the remote side sent in response
4368 to the ? packet. These indicate threads that were already stopped
4369 on initial connection. We mark these threads as stopped and print
4370 their current frame before giving the user the prompt. */
4371
6b8edb51
PA
4372void
4373remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4374{
4375 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4376 struct thread_info *selected = NULL;
4377 struct thread_info *lowest_stopped = NULL;
4378 struct thread_info *first = NULL;
221e1a37
PA
4379
4380 /* Consume the initial pending events. */
4381 while (pending_stop_replies-- > 0)
4382 {
4383 ptid_t waiton_ptid = minus_one_ptid;
4384 ptid_t event_ptid;
4385 struct target_waitstatus ws;
4386 int ignore_event = 0;
4387
4388 memset (&ws, 0, sizeof (ws));
4389 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4390 if (remote_debug)
4391 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4392
4393 switch (ws.kind)
4394 {
4395 case TARGET_WAITKIND_IGNORE:
4396 case TARGET_WAITKIND_NO_RESUMED:
4397 case TARGET_WAITKIND_SIGNALLED:
4398 case TARGET_WAITKIND_EXITED:
4399 /* We shouldn't see these, but if we do, just ignore. */
4400 if (remote_debug)
4401 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4402 ignore_event = 1;
4403 break;
4404
4405 case TARGET_WAITKIND_EXECD:
4406 xfree (ws.value.execd_pathname);
4407 break;
4408 default:
4409 break;
4410 }
4411
4412 if (ignore_event)
4413 continue;
4414
b926417a 4415 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4416
4417 if (ws.kind == TARGET_WAITKIND_STOPPED)
4418 {
4419 enum gdb_signal sig = ws.value.sig;
4420
4421 /* Stubs traditionally report SIGTRAP as initial signal,
4422 instead of signal 0. Suppress it. */
4423 if (sig == GDB_SIGNAL_TRAP)
4424 sig = GDB_SIGNAL_0;
b926417a 4425 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4426 ws.value.sig = sig;
4427 }
221e1a37 4428
b926417a 4429 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4430
4431 if (ws.kind != TARGET_WAITKIND_STOPPED
4432 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4433 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4434
4435 set_executing (event_ptid, 0);
4436 set_running (event_ptid, 0);
b926417a 4437 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4438 }
4439
4440 /* "Notice" the new inferiors before anything related to
4441 registers/memory. */
08036331 4442 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4443 {
6efcd9a8
PA
4444 inf->needs_setup = 1;
4445
4446 if (non_stop)
4447 {
08036331 4448 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4449 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4450 from_tty);
4451 }
4452 }
4453
4454 /* If all-stop on top of non-stop, pause all threads. Note this
4455 records the threads' stop pc, so must be done after "noticing"
4456 the inferiors. */
4457 if (!non_stop)
4458 {
4459 stop_all_threads ();
4460
4461 /* If all threads of an inferior were already stopped, we
4462 haven't setup the inferior yet. */
08036331 4463 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4464 {
6efcd9a8
PA
4465 if (inf->needs_setup)
4466 {
08036331 4467 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4468 switch_to_thread_no_regs (thread);
4469 setup_inferior (0);
4470 }
4471 }
221e1a37 4472 }
6efcd9a8
PA
4473
4474 /* Now go over all threads that are stopped, and print their current
4475 frame. If all-stop, then if there's a signalled thread, pick
4476 that as current. */
08036331 4477 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4478 {
6efcd9a8
PA
4479 if (first == NULL)
4480 first = thread;
4481
4482 if (!non_stop)
00431a78 4483 thread->set_running (false);
6efcd9a8
PA
4484 else if (thread->state != THREAD_STOPPED)
4485 continue;
4486
6efcd9a8
PA
4487 if (selected == NULL
4488 && thread->suspend.waitstatus_pending_p)
4489 selected = thread;
4490
5d5658a1
PA
4491 if (lowest_stopped == NULL
4492 || thread->inf->num < lowest_stopped->inf->num
4493 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4494 lowest_stopped = thread;
4495
4496 if (non_stop)
4497 print_one_stopped_thread (thread);
4498 }
4499
4500 /* In all-stop, we only print the status of one thread, and leave
4501 others with their status pending. */
4502 if (!non_stop)
4503 {
08036331 4504 thread_info *thread = selected;
6efcd9a8
PA
4505 if (thread == NULL)
4506 thread = lowest_stopped;
4507 if (thread == NULL)
4508 thread = first;
4509
4510 print_one_stopped_thread (thread);
4511 }
4512
4513 /* For "info program". */
08036331 4514 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4515 if (thread->state == THREAD_STOPPED)
4516 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4517}
4518
048094ac
PA
4519/* Start the remote connection and sync state. */
4520
f6ac5f3d
PA
4521void
4522remote_target::start_remote (int from_tty, int extended_p)
c906108c 4523{
c8d104ad
PA
4524 struct remote_state *rs = get_remote_state ();
4525 struct packet_config *noack_config;
2d717e4f 4526 char *wait_status = NULL;
8621d6a9 4527
048094ac
PA
4528 /* Signal other parts that we're going through the initial setup,
4529 and so things may not be stable yet. E.g., we don't try to
4530 install tracepoints until we've relocated symbols. Also, a
4531 Ctrl-C before we're connected and synced up can't interrupt the
4532 target. Instead, it offers to drop the (potentially wedged)
4533 connection. */
4534 rs->starting_up = 1;
4535
522002f9 4536 QUIT;
c906108c 4537
9a7071a8
JB
4538 if (interrupt_on_connect)
4539 send_interrupt_sequence ();
4540
57e12211 4541 /* Ack any packet which the remote side has already sent. */
048094ac 4542 remote_serial_write ("+", 1);
1e51243a 4543
c8d104ad
PA
4544 /* The first packet we send to the target is the optional "supported
4545 packets" request. If the target can answer this, it will tell us
4546 which later probes to skip. */
4547 remote_query_supported ();
4548
d914c394 4549 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4550 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4551 set_permissions ();
d914c394 4552
57809e5e
JK
4553 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4554 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4555 as a reply to known packet. For packet "vFile:setfs:" it is an
4556 invalid reply and GDB would return error in
4557 remote_hostio_set_filesystem, making remote files access impossible.
4558 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4559 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4560 {
4561 const char v_mustreplyempty[] = "vMustReplyEmpty";
4562
4563 putpkt (v_mustreplyempty);
8d64371b
TT
4564 getpkt (&rs->buf, 0);
4565 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4566 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4567 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4568 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4569 rs->buf.data ());
57809e5e
JK
4570 }
4571
c8d104ad
PA
4572 /* Next, we possibly activate noack mode.
4573
4574 If the QStartNoAckMode packet configuration is set to AUTO,
4575 enable noack mode if the stub reported a wish for it with
4576 qSupported.
4577
4578 If set to TRUE, then enable noack mode even if the stub didn't
4579 report it in qSupported. If the stub doesn't reply OK, the
4580 session ends with an error.
4581
4582 If FALSE, then don't activate noack mode, regardless of what the
4583 stub claimed should be the default with qSupported. */
4584
4585 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4586 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4587 {
4588 putpkt ("QStartNoAckMode");
8d64371b 4589 getpkt (&rs->buf, 0);
c8d104ad
PA
4590 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4591 rs->noack_mode = 1;
4592 }
4593
04bd08de 4594 if (extended_p)
5fe04517
PA
4595 {
4596 /* Tell the remote that we are using the extended protocol. */
4597 putpkt ("!");
8d64371b 4598 getpkt (&rs->buf, 0);
5fe04517
PA
4599 }
4600
9b224c5e
PA
4601 /* Let the target know which signals it is allowed to pass down to
4602 the program. */
4603 update_signals_program_target ();
4604
d962ef82
DJ
4605 /* Next, if the target can specify a description, read it. We do
4606 this before anything involving memory or registers. */
4607 target_find_description ();
4608
6c95b8df
PA
4609 /* Next, now that we know something about the target, update the
4610 address spaces in the program spaces. */
4611 update_address_spaces ();
4612
50c71eaf
PA
4613 /* On OSs where the list of libraries is global to all
4614 processes, we fetch them early. */
f5656ead 4615 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4616 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4617
6efcd9a8 4618 if (target_is_non_stop_p ())
74531fed 4619 {
4082afcc 4620 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4621 error (_("Non-stop mode requested, but remote "
4622 "does not support non-stop"));
74531fed
PA
4623
4624 putpkt ("QNonStop:1");
8d64371b 4625 getpkt (&rs->buf, 0);
74531fed 4626
8d64371b
TT
4627 if (strcmp (rs->buf.data (), "OK") != 0)
4628 error (_("Remote refused setting non-stop mode with: %s"),
4629 rs->buf.data ());
74531fed
PA
4630
4631 /* Find about threads and processes the stub is already
4632 controlling. We default to adding them in the running state.
4633 The '?' query below will then tell us about which threads are
4634 stopped. */
f6ac5f3d 4635 this->update_thread_list ();
74531fed 4636 }
4082afcc 4637 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4638 {
4639 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4640 Request it explicitly. */
74531fed 4641 putpkt ("QNonStop:0");
8d64371b 4642 getpkt (&rs->buf, 0);
74531fed 4643
8d64371b
TT
4644 if (strcmp (rs->buf.data (), "OK") != 0)
4645 error (_("Remote refused setting all-stop mode with: %s"),
4646 rs->buf.data ());
74531fed
PA
4647 }
4648
a0743c90
YQ
4649 /* Upload TSVs regardless of whether the target is running or not. The
4650 remote stub, such as GDBserver, may have some predefined or builtin
4651 TSVs, even if the target is not running. */
f6ac5f3d 4652 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4653 {
4654 struct uploaded_tsv *uploaded_tsvs = NULL;
4655
f6ac5f3d 4656 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4657 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4658 }
4659
2d717e4f
DJ
4660 /* Check whether the target is running now. */
4661 putpkt ("?");
8d64371b 4662 getpkt (&rs->buf, 0);
2d717e4f 4663
6efcd9a8 4664 if (!target_is_non_stop_p ())
2d717e4f 4665 {
74531fed 4666 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4667 {
04bd08de 4668 if (!extended_p)
74531fed 4669 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4670
4671 /* We're connected, but not running. Drop out before we
4672 call start_remote. */
e278ad5b 4673 rs->starting_up = 0;
c35b1492 4674 return;
2d717e4f
DJ
4675 }
4676 else
74531fed 4677 {
74531fed 4678 /* Save the reply for later. */
8d64371b
TT
4679 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4680 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4681 }
4682
b7ea362b 4683 /* Fetch thread list. */
e8032dde 4684 target_update_thread_list ();
b7ea362b 4685
74531fed
PA
4686 /* Let the stub know that we want it to return the thread. */
4687 set_continue_thread (minus_one_ptid);
4688
b7ea362b
PA
4689 if (thread_count () == 0)
4690 {
4691 /* Target has no concept of threads at all. GDB treats
4692 non-threaded target as single-threaded; add a main
4693 thread. */
4694 add_current_inferior_and_thread (wait_status);
4695 }
4696 else
4697 {
4698 /* We have thread information; select the thread the target
4699 says should be current. If we're reconnecting to a
4700 multi-threaded program, this will ideally be the thread
4701 that last reported an event before GDB disconnected. */
4702 inferior_ptid = get_current_thread (wait_status);
d7e15655 4703 if (inferior_ptid == null_ptid)
b7ea362b
PA
4704 {
4705 /* Odd... The target was able to list threads, but not
4706 tell us which thread was current (no "thread"
4707 register in T stop reply?). Just pick the first
4708 thread in the thread list then. */
c9f35b34
KB
4709
4710 if (remote_debug)
4711 fprintf_unfiltered (gdb_stdlog,
4712 "warning: couldn't determine remote "
4713 "current thread; picking first in list.\n");
4714
08036331 4715 inferior_ptid = inferior_list->thread_list->ptid;
b7ea362b
PA
4716 }
4717 }
74531fed 4718
6e586cc5
YQ
4719 /* init_wait_for_inferior should be called before get_offsets in order
4720 to manage `inserted' flag in bp loc in a correct state.
4721 breakpoint_init_inferior, called from init_wait_for_inferior, set
4722 `inserted' flag to 0, while before breakpoint_re_set, called from
4723 start_remote, set `inserted' flag to 1. In the initialization of
4724 inferior, breakpoint_init_inferior should be called first, and then
4725 breakpoint_re_set can be called. If this order is broken, state of
4726 `inserted' flag is wrong, and cause some problems on breakpoint
4727 manipulation. */
4728 init_wait_for_inferior ();
4729
74531fed
PA
4730 get_offsets (); /* Get text, data & bss offsets. */
4731
d962ef82
DJ
4732 /* If we could not find a description using qXfer, and we know
4733 how to do it some other way, try again. This is not
4734 supported for non-stop; it could be, but it is tricky if
4735 there are no stopped threads when we connect. */
f6ac5f3d 4736 if (remote_read_description_p (this)
f5656ead 4737 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4738 {
4739 target_clear_description ();
4740 target_find_description ();
4741 }
4742
74531fed
PA
4743 /* Use the previously fetched status. */
4744 gdb_assert (wait_status != NULL);
8d64371b 4745 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4746 rs->cached_wait_status = 1;
4747
f6ac5f3d 4748 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4749 }
4750 else
4751 {
68c97600
PA
4752 /* Clear WFI global state. Do this before finding about new
4753 threads and inferiors, and setting the current inferior.
4754 Otherwise we would clear the proceed status of the current
4755 inferior when we want its stop_soon state to be preserved
4756 (see notice_new_inferior). */
4757 init_wait_for_inferior ();
4758
74531fed
PA
4759 /* In non-stop, we will either get an "OK", meaning that there
4760 are no stopped threads at this time; or, a regular stop
4761 reply. In the latter case, there may be more than one thread
4762 stopped --- we pull them all out using the vStopped
4763 mechanism. */
8d64371b 4764 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4765 {
722247f1 4766 struct notif_client *notif = &notif_client_stop;
2d717e4f 4767
722247f1
YQ
4768 /* remote_notif_get_pending_replies acks this one, and gets
4769 the rest out. */
f48ff2a7 4770 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4771 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4772 remote_notif_get_pending_events (notif);
74531fed 4773 }
2d717e4f 4774
74531fed
PA
4775 if (thread_count () == 0)
4776 {
04bd08de 4777 if (!extended_p)
74531fed 4778 error (_("The target is not running (try extended-remote?)"));
82f73884 4779
c35b1492
PA
4780 /* We're connected, but not running. Drop out before we
4781 call start_remote. */
e278ad5b 4782 rs->starting_up = 0;
c35b1492
PA
4783 return;
4784 }
74531fed 4785
74531fed
PA
4786 /* In non-stop mode, any cached wait status will be stored in
4787 the stop reply queue. */
4788 gdb_assert (wait_status == NULL);
f0223081 4789
2455069d 4790 /* Report all signals during attach/startup. */
adc6a863 4791 pass_signals ({});
221e1a37
PA
4792
4793 /* If there are already stopped threads, mark them stopped and
4794 report their stops before giving the prompt to the user. */
6efcd9a8 4795 process_initial_stop_replies (from_tty);
221e1a37
PA
4796
4797 if (target_can_async_p ())
4798 target_async (1);
74531fed 4799 }
c8d104ad 4800
c8d104ad
PA
4801 /* If we connected to a live target, do some additional setup. */
4802 if (target_has_execution)
4803 {
f4ccffad 4804 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4805 remote_check_symbols ();
c8d104ad 4806 }
50c71eaf 4807
d5551862
SS
4808 /* Possibly the target has been engaged in a trace run started
4809 previously; find out where things are at. */
f6ac5f3d 4810 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4811 {
00bf0b85 4812 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4813
00bf0b85
SS
4814 if (current_trace_status ()->running)
4815 printf_filtered (_("Trace is already running on the target.\n"));
4816
f6ac5f3d 4817 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4818
4819 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4820 }
4821
c0272db5
TW
4822 /* Possibly the target has been engaged in a btrace record started
4823 previously; find out where things are at. */
4824 remote_btrace_maybe_reopen ();
4825
1e51243a
PA
4826 /* The thread and inferior lists are now synchronized with the
4827 target, our symbols have been relocated, and we're merged the
4828 target's tracepoints with ours. We're done with basic start
4829 up. */
4830 rs->starting_up = 0;
4831
a25a5a45
PA
4832 /* Maybe breakpoints are global and need to be inserted now. */
4833 if (breakpoints_should_be_inserted_now ())
50c71eaf 4834 insert_breakpoints ();
c906108c
SS
4835}
4836
4837/* Open a connection to a remote debugger.
4838 NAME is the filename used for communication. */
4839
f6ac5f3d
PA
4840void
4841remote_target::open (const char *name, int from_tty)
c906108c 4842{
f6ac5f3d 4843 open_1 (name, from_tty, 0);
43ff13b4
JM
4844}
4845
c906108c
SS
4846/* Open a connection to a remote debugger using the extended
4847 remote gdb protocol. NAME is the filename used for communication. */
4848
f6ac5f3d
PA
4849void
4850extended_remote_target::open (const char *name, int from_tty)
c906108c 4851{
f6ac5f3d 4852 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4853}
4854
ca4f7f8b
PA
4855/* Reset all packets back to "unknown support". Called when opening a
4856 new connection to a remote target. */
c906108c 4857
d471ea57 4858static void
ca4f7f8b 4859reset_all_packet_configs_support (void)
d471ea57
AC
4860{
4861 int i;
a744cf53 4862
444abaca 4863 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4864 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4865}
4866
ca4f7f8b
PA
4867/* Initialize all packet configs. */
4868
4869static void
4870init_all_packet_configs (void)
4871{
4872 int i;
4873
4874 for (i = 0; i < PACKET_MAX; i++)
4875 {
4876 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4877 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4878 }
4879}
4880
23860348 4881/* Symbol look-up. */
dc8acb97 4882
6b8edb51
PA
4883void
4884remote_target::remote_check_symbols ()
dc8acb97 4885{
8d64371b 4886 char *tmp;
dc8acb97
MS
4887 int end;
4888
63154eca
PA
4889 /* The remote side has no concept of inferiors that aren't running
4890 yet, it only knows about running processes. If we're connected
4891 but our current inferior is not running, we should not invite the
4892 remote target to request symbol lookups related to its
4893 (unrelated) current process. */
4894 if (!target_has_execution)
4895 return;
4896
4082afcc 4897 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4898 return;
4899
63154eca
PA
4900 /* Make sure the remote is pointing at the right process. Note
4901 there's no way to select "no process". */
3c9c4b83
PA
4902 set_general_process ();
4903
6d820c5c
DJ
4904 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4905 because we need both at the same time. */
66644cd3 4906 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4907 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4908
23860348 4909 /* Invite target to request symbol lookups. */
dc8acb97
MS
4910
4911 putpkt ("qSymbol::");
8d64371b 4912 getpkt (&reply, 0);
28170b88 4913 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4914
8d64371b 4915 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4916 {
77e371c0
TT
4917 struct bound_minimal_symbol sym;
4918
dc8acb97 4919 tmp = &reply[8];
66644cd3
AB
4920 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4921 strlen (tmp) / 2);
dc8acb97 4922 msg[end] = '\0';
66644cd3 4923 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4924 if (sym.minsym == NULL)
66644cd3
AB
4925 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4926 &reply[8]);
dc8acb97 4927 else
2bbe3cc1 4928 {
f5656ead 4929 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4930 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4931
4932 /* If this is a function address, return the start of code
4933 instead of any data function descriptor. */
f5656ead 4934 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4935 sym_addr,
8b88a78e 4936 current_top_target ());
2bbe3cc1 4937
66644cd3 4938 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4939 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4940 }
66644cd3
AB
4941
4942 putpkt (msg.data ());
8d64371b 4943 getpkt (&reply, 0);
dc8acb97
MS
4944 }
4945}
4946
9db8d71f 4947static struct serial *
baa336ce 4948remote_serial_open (const char *name)
9db8d71f
DJ
4949{
4950 static int udp_warning = 0;
4951
4952 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4953 of in ser-tcp.c, because it is the remote protocol assuming that the
4954 serial connection is reliable and not the serial connection promising
4955 to be. */
61012eef 4956 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4957 {
3e43a32a
MS
4958 warning (_("The remote protocol may be unreliable over UDP.\n"
4959 "Some events may be lost, rendering further debugging "
4960 "impossible."));
9db8d71f
DJ
4961 udp_warning = 1;
4962 }
4963
4964 return serial_open (name);
4965}
4966
d914c394
SS
4967/* Inform the target of our permission settings. The permission flags
4968 work without this, but if the target knows the settings, it can do
4969 a couple things. First, it can add its own check, to catch cases
4970 that somehow manage to get by the permissions checks in target
4971 methods. Second, if the target is wired to disallow particular
4972 settings (for instance, a system in the field that is not set up to
4973 be able to stop at a breakpoint), it can object to any unavailable
4974 permissions. */
4975
4976void
f6ac5f3d 4977remote_target::set_permissions ()
d914c394
SS
4978{
4979 struct remote_state *rs = get_remote_state ();
4980
8d64371b 4981 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
4982 "WriteReg:%x;WriteMem:%x;"
4983 "InsertBreak:%x;InsertTrace:%x;"
4984 "InsertFastTrace:%x;Stop:%x",
4985 may_write_registers, may_write_memory,
4986 may_insert_breakpoints, may_insert_tracepoints,
4987 may_insert_fast_tracepoints, may_stop);
d914c394 4988 putpkt (rs->buf);
8d64371b 4989 getpkt (&rs->buf, 0);
d914c394
SS
4990
4991 /* If the target didn't like the packet, warn the user. Do not try
4992 to undo the user's settings, that would just be maddening. */
8d64371b
TT
4993 if (strcmp (rs->buf.data (), "OK") != 0)
4994 warning (_("Remote refused setting permissions with: %s"),
4995 rs->buf.data ());
d914c394
SS
4996}
4997
be2a5f71
DJ
4998/* This type describes each known response to the qSupported
4999 packet. */
5000struct protocol_feature
5001{
5002 /* The name of this protocol feature. */
5003 const char *name;
5004
5005 /* The default for this protocol feature. */
5006 enum packet_support default_support;
5007
5008 /* The function to call when this feature is reported, or after
5009 qSupported processing if the feature is not supported.
5010 The first argument points to this structure. The second
5011 argument indicates whether the packet requested support be
5012 enabled, disabled, or probed (or the default, if this function
5013 is being called at the end of processing and this feature was
5014 not reported). The third argument may be NULL; if not NULL, it
5015 is a NUL-terminated string taken from the packet following
5016 this feature's name and an equals sign. */
6b8edb51
PA
5017 void (*func) (remote_target *remote, const struct protocol_feature *,
5018 enum packet_support, const char *);
be2a5f71
DJ
5019
5020 /* The corresponding packet for this feature. Only used if
5021 FUNC is remote_supported_packet. */
5022 int packet;
5023};
5024
be2a5f71 5025static void
6b8edb51
PA
5026remote_supported_packet (remote_target *remote,
5027 const struct protocol_feature *feature,
be2a5f71
DJ
5028 enum packet_support support,
5029 const char *argument)
5030{
5031 if (argument)
5032 {
5033 warning (_("Remote qSupported response supplied an unexpected value for"
5034 " \"%s\"."), feature->name);
5035 return;
5036 }
5037
4082afcc 5038 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5039}
be2a5f71 5040
6b8edb51
PA
5041void
5042remote_target::remote_packet_size (const protocol_feature *feature,
5043 enum packet_support support, const char *value)
be2a5f71
DJ
5044{
5045 struct remote_state *rs = get_remote_state ();
5046
5047 int packet_size;
5048 char *value_end;
5049
5050 if (support != PACKET_ENABLE)
5051 return;
5052
5053 if (value == NULL || *value == '\0')
5054 {
5055 warning (_("Remote target reported \"%s\" without a size."),
5056 feature->name);
5057 return;
5058 }
5059
5060 errno = 0;
5061 packet_size = strtol (value, &value_end, 16);
5062 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5063 {
5064 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5065 feature->name, value);
5066 return;
5067 }
5068
be2a5f71
DJ
5069 /* Record the new maximum packet size. */
5070 rs->explicit_packet_size = packet_size;
5071}
5072
6b8edb51
PA
5073void
5074remote_packet_size (remote_target *remote, const protocol_feature *feature,
5075 enum packet_support support, const char *value)
5076{
5077 remote->remote_packet_size (feature, support, value);
5078}
5079
dc473cfb 5080static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5081 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5082 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5083 PACKET_qXfer_auxv },
c78fa86a
GB
5084 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5085 PACKET_qXfer_exec_file },
23181151
DJ
5086 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5087 PACKET_qXfer_features },
cfa9d6d9
DJ
5088 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5089 PACKET_qXfer_libraries },
2268b414
JK
5090 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5091 PACKET_qXfer_libraries_svr4 },
ced63ec0 5092 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5093 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5094 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5095 PACKET_qXfer_memory_map },
4de6483e
UW
5096 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
5097 PACKET_qXfer_spu_read },
5098 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
5099 PACKET_qXfer_spu_write },
07e059b5
VP
5100 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5101 PACKET_qXfer_osdata },
dc146f7c
VP
5102 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5103 PACKET_qXfer_threads },
b3b9301e
PA
5104 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5105 PACKET_qXfer_traceframe_info },
89be2091
DJ
5106 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5107 PACKET_QPassSignals },
82075af2
JS
5108 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5109 PACKET_QCatchSyscalls },
9b224c5e
PA
5110 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5111 PACKET_QProgramSignals },
bc3b087d
SDJ
5112 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5113 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5114 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5115 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5116 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5117 PACKET_QEnvironmentHexEncoded },
5118 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5119 PACKET_QEnvironmentReset },
5120 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5121 PACKET_QEnvironmentUnset },
a6f3e723
SL
5122 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5123 PACKET_QStartNoAckMode },
4082afcc
PA
5124 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5125 PACKET_multiprocess_feature },
5126 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5127 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5128 PACKET_qXfer_siginfo_read },
5129 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5130 PACKET_qXfer_siginfo_write },
4082afcc 5131 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5132 PACKET_ConditionalTracepoints },
4082afcc 5133 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5134 PACKET_ConditionalBreakpoints },
4082afcc 5135 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5136 PACKET_BreakpointCommands },
4082afcc 5137 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5138 PACKET_FastTracepoints },
4082afcc 5139 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5140 PACKET_StaticTracepoints },
4082afcc 5141 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5142 PACKET_InstallInTrace},
4082afcc
PA
5143 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5144 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5145 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5146 PACKET_bc },
5147 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5148 PACKET_bs },
409873ef
SS
5149 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5150 PACKET_TracepointSource },
d914c394
SS
5151 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5152 PACKET_QAllow },
4082afcc
PA
5153 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5154 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5155 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5156 PACKET_qXfer_fdpic },
169081d0
TG
5157 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5158 PACKET_qXfer_uib },
03583c20
UW
5159 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5160 PACKET_QDisableRandomization },
d1feda86 5161 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5162 { "QTBuffer:size", PACKET_DISABLE,
5163 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5164 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5165 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5166 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5167 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5168 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5169 PACKET_qXfer_btrace },
5170 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5171 PACKET_qXfer_btrace_conf },
5172 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5173 PACKET_Qbtrace_conf_bts_size },
5174 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5175 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5176 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5177 PACKET_fork_event_feature },
5178 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5179 PACKET_vfork_event_feature },
94585166
DB
5180 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5181 PACKET_exec_event_feature },
b20a6524 5182 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5183 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5184 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5185 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5186 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5187};
5188
c8d5aac9
L
5189static char *remote_support_xml;
5190
5191/* Register string appended to "xmlRegisters=" in qSupported query. */
5192
5193void
6e39997a 5194register_remote_support_xml (const char *xml)
c8d5aac9
L
5195{
5196#if defined(HAVE_LIBEXPAT)
5197 if (remote_support_xml == NULL)
c4f7c687 5198 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5199 else
5200 {
5201 char *copy = xstrdup (remote_support_xml + 13);
5202 char *p = strtok (copy, ",");
5203
5204 do
5205 {
5206 if (strcmp (p, xml) == 0)
5207 {
5208 /* already there */
5209 xfree (copy);
5210 return;
5211 }
5212 }
5213 while ((p = strtok (NULL, ",")) != NULL);
5214 xfree (copy);
5215
94b0dee1
PA
5216 remote_support_xml = reconcat (remote_support_xml,
5217 remote_support_xml, ",", xml,
5218 (char *) NULL);
c8d5aac9
L
5219 }
5220#endif
5221}
5222
69b6ecb0
TT
5223static void
5224remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5225{
69b6ecb0
TT
5226 if (!msg->empty ())
5227 msg->append (";");
5228 msg->append (append);
c8d5aac9
L
5229}
5230
6b8edb51
PA
5231void
5232remote_target::remote_query_supported ()
be2a5f71
DJ
5233{
5234 struct remote_state *rs = get_remote_state ();
5235 char *next;
5236 int i;
5237 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5238
5239 /* The packet support flags are handled differently for this packet
5240 than for most others. We treat an error, a disabled packet, and
5241 an empty response identically: any features which must be reported
5242 to be used will be automatically disabled. An empty buffer
5243 accomplishes this, since that is also the representation for a list
5244 containing no features. */
5245
5246 rs->buf[0] = 0;
4082afcc 5247 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5248 {
69b6ecb0 5249 std::string q;
c8d5aac9 5250
73b8c1fd 5251 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5252 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5253
f7e6eed5 5254 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5255 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5256 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5257 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5258
69b6ecb0 5259 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5260
8020350c
DB
5261 if (packet_set_cmd_state (PACKET_fork_event_feature)
5262 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5263 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5264 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5265 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5266 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5267 if (packet_set_cmd_state (PACKET_exec_event_feature)
5268 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5269 remote_query_supported_append (&q, "exec-events+");
89245bc0 5270
750ce8d1 5271 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5272 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5273
65706a29 5274 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5275 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5276
f2faf941 5277 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5278 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5279
b35d5edb
PA
5280 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5281 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5282 if (remote_support_xml != NULL
5283 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5284 remote_query_supported_append (&q, remote_support_xml);
82f73884 5285
69b6ecb0
TT
5286 q = "qSupported:" + q;
5287 putpkt (q.c_str ());
94b0dee1 5288
8d64371b 5289 getpkt (&rs->buf, 0);
be2a5f71
DJ
5290
5291 /* If an error occured, warn, but do not return - just reset the
5292 buffer to empty and go on to disable features. */
5293 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5294 == PACKET_ERROR)
5295 {
8d64371b 5296 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5297 rs->buf[0] = 0;
5298 }
5299 }
5300
5301 memset (seen, 0, sizeof (seen));
5302
8d64371b 5303 next = rs->buf.data ();
be2a5f71
DJ
5304 while (*next)
5305 {
5306 enum packet_support is_supported;
5307 char *p, *end, *name_end, *value;
5308
5309 /* First separate out this item from the rest of the packet. If
5310 there's another item after this, we overwrite the separator
5311 (terminated strings are much easier to work with). */
5312 p = next;
5313 end = strchr (p, ';');
5314 if (end == NULL)
5315 {
5316 end = p + strlen (p);
5317 next = end;
5318 }
5319 else
5320 {
89be2091
DJ
5321 *end = '\0';
5322 next = end + 1;
5323
be2a5f71
DJ
5324 if (end == p)
5325 {
5326 warning (_("empty item in \"qSupported\" response"));
5327 continue;
5328 }
be2a5f71
DJ
5329 }
5330
5331 name_end = strchr (p, '=');
5332 if (name_end)
5333 {
5334 /* This is a name=value entry. */
5335 is_supported = PACKET_ENABLE;
5336 value = name_end + 1;
5337 *name_end = '\0';
5338 }
5339 else
5340 {
5341 value = NULL;
5342 switch (end[-1])
5343 {
5344 case '+':
5345 is_supported = PACKET_ENABLE;
5346 break;
5347
5348 case '-':
5349 is_supported = PACKET_DISABLE;
5350 break;
5351
5352 case '?':
5353 is_supported = PACKET_SUPPORT_UNKNOWN;
5354 break;
5355
5356 default:
3e43a32a
MS
5357 warning (_("unrecognized item \"%s\" "
5358 "in \"qSupported\" response"), p);
be2a5f71
DJ
5359 continue;
5360 }
5361 end[-1] = '\0';
5362 }
5363
5364 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5365 if (strcmp (remote_protocol_features[i].name, p) == 0)
5366 {
5367 const struct protocol_feature *feature;
5368
5369 seen[i] = 1;
5370 feature = &remote_protocol_features[i];
6b8edb51 5371 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5372 break;
5373 }
5374 }
5375
5376 /* If we increased the packet size, make sure to increase the global
5377 buffer size also. We delay this until after parsing the entire
5378 qSupported packet, because this is the same buffer we were
5379 parsing. */
8d64371b
TT
5380 if (rs->buf.size () < rs->explicit_packet_size)
5381 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5382
5383 /* Handle the defaults for unmentioned features. */
5384 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5385 if (!seen[i])
5386 {
5387 const struct protocol_feature *feature;
5388
5389 feature = &remote_protocol_features[i];
6b8edb51 5390 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5391 }
5392}
5393
048094ac
PA
5394/* Serial QUIT handler for the remote serial descriptor.
5395
5396 Defers handling a Ctrl-C until we're done with the current
5397 command/response packet sequence, unless:
5398
5399 - We're setting up the connection. Don't send a remote interrupt
5400 request, as we're not fully synced yet. Quit immediately
5401 instead.
5402
5403 - The target has been resumed in the foreground
223ffa71 5404 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5405 packet, and we're blocked waiting for the stop reply, thus a
5406 Ctrl-C should be immediately sent to the target.
5407
5408 - We get a second Ctrl-C while still within the same serial read or
5409 write. In that case the serial is seemingly wedged --- offer to
5410 quit/disconnect.
5411
5412 - We see a second Ctrl-C without target response, after having
5413 previously interrupted the target. In that case the target/stub
5414 is probably wedged --- offer to quit/disconnect.
5415*/
5416
6b8edb51
PA
5417void
5418remote_target::remote_serial_quit_handler ()
048094ac
PA
5419{
5420 struct remote_state *rs = get_remote_state ();
5421
5422 if (check_quit_flag ())
5423 {
5424 /* If we're starting up, we're not fully synced yet. Quit
5425 immediately. */
5426 if (rs->starting_up)
5427 quit ();
5428 else if (rs->got_ctrlc_during_io)
5429 {
5430 if (query (_("The target is not responding to GDB commands.\n"
5431 "Stop debugging it? ")))
5432 remote_unpush_and_throw ();
5433 }
5434 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5435 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5436 interrupt_query ();
5437 /* All-stop protocol, and blocked waiting for stop reply. Send
5438 an interrupt request. */
223ffa71 5439 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5440 target_interrupt ();
048094ac
PA
5441 else
5442 rs->got_ctrlc_during_io = 1;
5443 }
5444}
5445
6b8edb51
PA
5446/* The remote_target that is current while the quit handler is
5447 overridden with remote_serial_quit_handler. */
5448static remote_target *curr_quit_handler_target;
5449
5450static void
5451remote_serial_quit_handler ()
5452{
5453 curr_quit_handler_target->remote_serial_quit_handler ();
5454}
5455
78a095c3
JK
5456/* Remove any of the remote.c targets from target stack. Upper targets depend
5457 on it so remove them first. */
5458
5459static void
5460remote_unpush_target (void)
5461{
915ef8b1 5462 pop_all_targets_at_and_above (process_stratum);
78a095c3 5463}
be2a5f71 5464
048094ac
PA
5465static void
5466remote_unpush_and_throw (void)
5467{
5468 remote_unpush_target ();
5469 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5470}
5471
f6ac5f3d
PA
5472void
5473remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5474{
6b8edb51 5475 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5476
c906108c 5477 if (name == 0)
8a3fe4f8 5478 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5479 "serial device is attached to the remote system\n"
8a3fe4f8 5480 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5481
2d717e4f 5482 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5483 Ask this question first, before target_preopen has a chance to kill
5484 anything. */
6b8edb51 5485 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5486 {
78a095c3
JK
5487 if (from_tty
5488 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5489 error (_("Still connected."));
5490 }
5491
78a095c3 5492 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5493 target_preopen (from_tty);
5494
ad9a8f3f 5495 remote_fileio_reset ();
1dd41f16
NS
5496 reopen_exec_file ();
5497 reread_symbols ();
5498
6b8edb51
PA
5499 remote_target *remote
5500 = (extended_p ? new extended_remote_target () : new remote_target ());
5501 target_ops_up target_holder (remote);
5502
5503 remote_state *rs = remote->get_remote_state ();
5504
5505 /* See FIXME above. */
5506 if (!target_async_permitted)
5507 rs->wait_forever_enabled_p = 1;
5508
5d93a237
TT
5509 rs->remote_desc = remote_serial_open (name);
5510 if (!rs->remote_desc)
c906108c
SS
5511 perror_with_name (name);
5512
5513 if (baud_rate != -1)
5514 {
5d93a237 5515 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5516 {
9b74d5d3
KB
5517 /* The requested speed could not be set. Error out to
5518 top level after closing remote_desc. Take care to
5519 set remote_desc to NULL to avoid closing remote_desc
5520 more than once. */
5d93a237
TT
5521 serial_close (rs->remote_desc);
5522 rs->remote_desc = NULL;
c906108c
SS
5523 perror_with_name (name);
5524 }
5525 }
5526
236af5e3 5527 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5528 serial_raw (rs->remote_desc);
c906108c
SS
5529
5530 /* If there is something sitting in the buffer we might take it as a
5531 response to a command, which would be bad. */
5d93a237 5532 serial_flush_input (rs->remote_desc);
c906108c
SS
5533
5534 if (from_tty)
5535 {
5536 puts_filtered ("Remote debugging using ");
5537 puts_filtered (name);
5538 puts_filtered ("\n");
5539 }
d9f719f1 5540
6b8edb51 5541 /* Switch to using the remote target now. */
dea57a62 5542 push_target (std::move (target_holder));
c906108c 5543
74531fed 5544 /* Register extra event sources in the event loop. */
6b8edb51 5545 rs->remote_async_inferior_event_token
74531fed 5546 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5547 remote);
5548 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5549
be2a5f71
DJ
5550 /* Reset the target state; these things will be queried either by
5551 remote_query_supported or as they are needed. */
ca4f7f8b 5552 reset_all_packet_configs_support ();
74531fed 5553 rs->cached_wait_status = 0;
be2a5f71 5554 rs->explicit_packet_size = 0;
a6f3e723 5555 rs->noack_mode = 0;
82f73884 5556 rs->extended = extended_p;
e24a49d8 5557 rs->waiting_for_stop_reply = 0;
3a29589a 5558 rs->ctrlc_pending_p = 0;
048094ac 5559 rs->got_ctrlc_during_io = 0;
802188a7 5560
47f8a51d
TT
5561 rs->general_thread = not_sent_ptid;
5562 rs->continue_thread = not_sent_ptid;
262e1174 5563 rs->remote_traceframe_number = -1;
c906108c 5564
3a00c802
PA
5565 rs->last_resume_exec_dir = EXEC_FORWARD;
5566
9d1f7ab2 5567 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5568 rs->use_threadinfo_query = 1;
5569 rs->use_threadextra_query = 1;
9d1f7ab2 5570
dd194f6b 5571 rs->readahead_cache.invalidate ();
80152258 5572
c6ebd6cf 5573 if (target_async_permitted)
92d1e331 5574 {
92d1e331
DJ
5575 /* FIXME: cagney/1999-09-23: During the initial connection it is
5576 assumed that the target is already ready and able to respond to
0df8b418 5577 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5578 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5579 around this. Eventually a mechanism that allows
92d1e331 5580 wait_for_inferior() to expect/get timeouts will be
23860348 5581 implemented. */
6b8edb51 5582 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5583 }
5584
23860348 5585 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5586 no_shared_libraries (NULL, 0);
f78f6cf1 5587
36918e70 5588 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5589 target (we'd otherwise be in an inconsistent state) and then
5590 propogate the error on up the exception chain. This ensures that
5591 the caller doesn't stumble along blindly assuming that the
5592 function succeeded. The CLI doesn't have this problem but other
5593 UI's, such as MI do.
36918e70
AC
5594
5595 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5596 this function should return an error indication letting the
ce2826aa 5597 caller restore the previous state. Unfortunately the command
36918e70
AC
5598 ``target remote'' is directly wired to this function making that
5599 impossible. On a positive note, the CLI side of this problem has
5600 been fixed - the function set_cmd_context() makes it possible for
5601 all the ``target ....'' commands to share a common callback
5602 function. See cli-dump.c. */
109c3e39 5603 {
2d717e4f 5604
492d29ea 5605 TRY
04bd08de 5606 {
6b8edb51 5607 remote->start_remote (from_tty, extended_p);
04bd08de 5608 }
492d29ea 5609 CATCH (ex, RETURN_MASK_ALL)
109c3e39 5610 {
c8d104ad
PA
5611 /* Pop the partially set up target - unless something else did
5612 already before throwing the exception. */
6b8edb51 5613 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5614 remote_unpush_target ();
109c3e39
AC
5615 throw_exception (ex);
5616 }
492d29ea 5617 END_CATCH
109c3e39 5618 }
c906108c 5619
6b8edb51 5620 remote_btrace_reset (rs);
f4abbc16 5621
c6ebd6cf 5622 if (target_async_permitted)
6b8edb51 5623 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5624}
5625
de0d863e
DB
5626/* Detach the specified process. */
5627
6b8edb51
PA
5628void
5629remote_target::remote_detach_pid (int pid)
de0d863e
DB
5630{
5631 struct remote_state *rs = get_remote_state ();
5632
4c7333b3
PA
5633 /* This should not be necessary, but the handling for D;PID in
5634 GDBserver versions prior to 8.2 incorrectly assumes that the
5635 selected process points to the same process we're detaching,
5636 leading to misbehavior (and possibly GDBserver crashing) when it
5637 does not. Since it's easy and cheap, work around it by forcing
5638 GDBserver to select GDB's current process. */
5639 set_general_process ();
5640
de0d863e 5641 if (remote_multi_process_p (rs))
8d64371b 5642 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5643 else
8d64371b 5644 strcpy (rs->buf.data (), "D");
de0d863e
DB
5645
5646 putpkt (rs->buf);
8d64371b 5647 getpkt (&rs->buf, 0);
de0d863e
DB
5648
5649 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5650 ;
5651 else if (rs->buf[0] == '\0')
5652 error (_("Remote doesn't know how to detach"));
5653 else
5654 error (_("Can't detach process."));
5655}
5656
5657/* This detaches a program to which we previously attached, using
5658 inferior_ptid to identify the process. After this is done, GDB
5659 can be used to debug some other program. We better not have left
5660 any breakpoints in the target program or it'll die when it hits
5661 one. */
c906108c 5662
6b8edb51 5663void
00431a78 5664remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5665{
e99b03dc 5666 int pid = inferior_ptid.pid ();
d01949b6 5667 struct remote_state *rs = get_remote_state ();
de0d863e 5668 int is_fork_parent;
c906108c 5669
2d717e4f
DJ
5670 if (!target_has_execution)
5671 error (_("No process to detach from."));
5672
0f48b757 5673 target_announce_detach (from_tty);
7cee1e54 5674
c906108c 5675 /* Tell the remote target to detach. */
de0d863e 5676 remote_detach_pid (pid);
82f73884 5677
8020350c
DB
5678 /* Exit only if this is the only active inferior. */
5679 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5680 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5681
00431a78
PA
5682 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5683
de0d863e
DB
5684 /* Check to see if we are detaching a fork parent. Note that if we
5685 are detaching a fork child, tp == NULL. */
5686 is_fork_parent = (tp != NULL
5687 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5688
5689 /* If doing detach-on-fork, we don't mourn, because that will delete
5690 breakpoints that should be available for the followed inferior. */
5691 if (!is_fork_parent)
f67c0c91 5692 {
249b5733
PA
5693 /* Save the pid as a string before mourning, since that will
5694 unpush the remote target, and we need the string after. */
f2907e49 5695 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5696
5697 target_mourn_inferior (inferior_ptid);
5698 if (print_inferior_events)
5699 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5700 inf->num, infpid.c_str ());
5701 }
de0d863e
DB
5702 else
5703 {
5704 inferior_ptid = null_ptid;
00431a78 5705 detach_inferior (current_inferior ());
de0d863e 5706 }
2d717e4f
DJ
5707}
5708
f6ac5f3d
PA
5709void
5710remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5711{
00431a78 5712 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5713}
5714
f6ac5f3d
PA
5715void
5716extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5717{
00431a78 5718 remote_detach_1 (inf, from_tty);
de0d863e
DB
5719}
5720
5721/* Target follow-fork function for remote targets. On entry, and
5722 at return, the current inferior is the fork parent.
5723
5724 Note that although this is currently only used for extended-remote,
5725 it is named remote_follow_fork in anticipation of using it for the
5726 remote target as well. */
5727
f6ac5f3d
PA
5728int
5729remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5730{
5731 struct remote_state *rs = get_remote_state ();
c269dbdb 5732 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5733
c269dbdb
DB
5734 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5735 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5736 {
5737 /* When following the parent and detaching the child, we detach
5738 the child here. For the case of following the child and
5739 detaching the parent, the detach is done in the target-
5740 independent follow fork code in infrun.c. We can't use
5741 target_detach when detaching an unfollowed child because
5742 the client side doesn't know anything about the child. */
5743 if (detach_fork && !follow_child)
5744 {
5745 /* Detach the fork child. */
5746 ptid_t child_ptid;
5747 pid_t child_pid;
5748
5749 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5750 child_pid = child_ptid.pid ();
de0d863e
DB
5751
5752 remote_detach_pid (child_pid);
de0d863e
DB
5753 }
5754 }
5755 return 0;
c906108c
SS
5756}
5757
94585166
DB
5758/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5759 in the program space of the new inferior. On entry and at return the
5760 current inferior is the exec'ing inferior. INF is the new exec'd
5761 inferior, which may be the same as the exec'ing inferior unless
5762 follow-exec-mode is "new". */
5763
f6ac5f3d
PA
5764void
5765remote_target::follow_exec (struct inferior *inf, char *execd_pathname)
94585166
DB
5766{
5767 /* We know that this is a target file name, so if it has the "target:"
5768 prefix we strip it off before saving it in the program space. */
5769 if (is_target_filename (execd_pathname))
5770 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5771
5772 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5773}
5774
6ad8ae5c
DJ
5775/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5776
f6ac5f3d
PA
5777void
5778remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5779{
43ff13b4 5780 if (args)
2d717e4f 5781 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5782
8020350c
DB
5783 /* Make sure we unpush even the extended remote targets. Calling
5784 target_mourn_inferior won't unpush, and remote_mourn won't
5785 unpush if there is more than one inferior left. */
f6ac5f3d 5786 unpush_target (this);
8020350c 5787 generic_mourn_inferior ();
2d717e4f 5788
43ff13b4
JM
5789 if (from_tty)
5790 puts_filtered ("Ending remote debugging.\n");
5791}
5792
2d717e4f
DJ
5793/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5794 be chatty about it. */
5795
f6ac5f3d
PA
5796void
5797extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5798{
5799 struct remote_state *rs = get_remote_state ();
be86555c 5800 int pid;
96ef3384 5801 char *wait_status = NULL;
2d717e4f 5802
74164c56 5803 pid = parse_pid_to_attach (args);
2d717e4f 5804
74164c56
JK
5805 /* Remote PID can be freely equal to getpid, do not check it here the same
5806 way as in other targets. */
2d717e4f 5807
4082afcc 5808 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5809 error (_("This target does not support attaching to a process"));
5810
7cee1e54
PA
5811 if (from_tty)
5812 {
5813 char *exec_file = get_exec_file (0);
5814
5815 if (exec_file)
5816 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5817 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5818 else
5819 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5820 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5821 }
5822
8d64371b 5823 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5824 putpkt (rs->buf);
8d64371b 5825 getpkt (&rs->buf, 0);
2d717e4f 5826
4082afcc
PA
5827 switch (packet_ok (rs->buf,
5828 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5829 {
4082afcc 5830 case PACKET_OK:
6efcd9a8 5831 if (!target_is_non_stop_p ())
74531fed
PA
5832 {
5833 /* Save the reply for later. */
8d64371b
TT
5834 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5835 strcpy (wait_status, rs->buf.data ());
74531fed 5836 }
8d64371b 5837 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5838 error (_("Attaching to %s failed with: %s"),
a068643d 5839 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5840 rs->buf.data ());
4082afcc
PA
5841 break;
5842 case PACKET_UNKNOWN:
5843 error (_("This target does not support attaching to a process"));
5844 default:
5845 error (_("Attaching to %s failed"),
a068643d 5846 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5847 }
2d717e4f 5848
1b6e6f5c 5849 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5850
f2907e49 5851 inferior_ptid = ptid_t (pid);
79d7f229 5852
6efcd9a8 5853 if (target_is_non_stop_p ())
bad34192
PA
5854 {
5855 struct thread_info *thread;
79d7f229 5856
bad34192 5857 /* Get list of threads. */
f6ac5f3d 5858 update_thread_list ();
82f73884 5859
00431a78 5860 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5861 if (thread)
5862 inferior_ptid = thread->ptid;
5863 else
f2907e49 5864 inferior_ptid = ptid_t (pid);
bad34192
PA
5865
5866 /* Invalidate our notion of the remote current thread. */
47f8a51d 5867 record_currthread (rs, minus_one_ptid);
bad34192 5868 }
74531fed 5869 else
bad34192
PA
5870 {
5871 /* Now, if we have thread information, update inferior_ptid. */
5872 inferior_ptid = remote_current_thread (inferior_ptid);
5873
5874 /* Add the main thread to the thread list. */
00aecdcf
PA
5875 thread_info *thr = add_thread_silent (inferior_ptid);
5876 /* Don't consider the thread stopped until we've processed the
5877 saved stop reply. */
5878 set_executing (thr->ptid, true);
bad34192 5879 }
c0a2216e 5880
96ef3384
UW
5881 /* Next, if the target can specify a description, read it. We do
5882 this before anything involving memory or registers. */
5883 target_find_description ();
5884
6efcd9a8 5885 if (!target_is_non_stop_p ())
74531fed
PA
5886 {
5887 /* Use the previously fetched status. */
5888 gdb_assert (wait_status != NULL);
5889
5890 if (target_can_async_p ())
5891 {
722247f1 5892 struct notif_event *reply
6b8edb51 5893 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5894
722247f1 5895 push_stop_reply ((struct stop_reply *) reply);
74531fed 5896
6a3753b3 5897 target_async (1);
74531fed
PA
5898 }
5899 else
5900 {
5901 gdb_assert (wait_status != NULL);
8d64371b 5902 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5903 rs->cached_wait_status = 1;
5904 }
5905 }
5906 else
5907 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5908}
5909
b9c1d481
AS
5910/* Implementation of the to_post_attach method. */
5911
f6ac5f3d
PA
5912void
5913extended_remote_target::post_attach (int pid)
b9c1d481 5914{
6efcd9a8
PA
5915 /* Get text, data & bss offsets. */
5916 get_offsets ();
5917
b9c1d481
AS
5918 /* In certain cases GDB might not have had the chance to start
5919 symbol lookup up until now. This could happen if the debugged
5920 binary is not using shared libraries, the vsyscall page is not
5921 present (on Linux) and the binary itself hadn't changed since the
5922 debugging process was started. */
5923 if (symfile_objfile != NULL)
5924 remote_check_symbols();
5925}
5926
c906108c 5927\f
506fb367
DJ
5928/* Check for the availability of vCont. This function should also check
5929 the response. */
c906108c 5930
6b8edb51
PA
5931void
5932remote_target::remote_vcont_probe ()
c906108c 5933{
6b8edb51 5934 remote_state *rs = get_remote_state ();
2e9f7625 5935 char *buf;
6d820c5c 5936
8d64371b 5937 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5938 putpkt (rs->buf);
8d64371b
TT
5939 getpkt (&rs->buf, 0);
5940 buf = rs->buf.data ();
c906108c 5941
506fb367 5942 /* Make sure that the features we assume are supported. */
61012eef 5943 if (startswith (buf, "vCont"))
506fb367
DJ
5944 {
5945 char *p = &buf[5];
750ce8d1 5946 int support_c, support_C;
506fb367 5947
750ce8d1
YQ
5948 rs->supports_vCont.s = 0;
5949 rs->supports_vCont.S = 0;
506fb367
DJ
5950 support_c = 0;
5951 support_C = 0;
d458bd84 5952 rs->supports_vCont.t = 0;
c1e36e3e 5953 rs->supports_vCont.r = 0;
506fb367
DJ
5954 while (p && *p == ';')
5955 {
5956 p++;
5957 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5958 rs->supports_vCont.s = 1;
506fb367 5959 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5960 rs->supports_vCont.S = 1;
506fb367
DJ
5961 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5962 support_c = 1;
5963 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5964 support_C = 1;
74531fed 5965 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5966 rs->supports_vCont.t = 1;
c1e36e3e
PA
5967 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5968 rs->supports_vCont.r = 1;
506fb367
DJ
5969
5970 p = strchr (p, ';');
5971 }
c906108c 5972
750ce8d1
YQ
5973 /* If c, and C are not all supported, we can't use vCont. Clearing
5974 BUF will make packet_ok disable the packet. */
5975 if (!support_c || !support_C)
506fb367
DJ
5976 buf[0] = 0;
5977 }
c906108c 5978
8d64371b 5979 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5980}
c906108c 5981
0d8f58ca
PA
5982/* Helper function for building "vCont" resumptions. Write a
5983 resumption to P. ENDP points to one-passed-the-end of the buffer
5984 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5985 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5986 resumed thread should be single-stepped and/or signalled. If PTID
5987 equals minus_one_ptid, then all threads are resumed; if PTID
5988 represents a process, then all threads of the process are resumed;
5989 the thread to be stepped and/or signalled is given in the global
5990 INFERIOR_PTID. */
5991
6b8edb51
PA
5992char *
5993remote_target::append_resumption (char *p, char *endp,
5994 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
5995{
5996 struct remote_state *rs = get_remote_state ();
5997
a493e3e2 5998 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5999 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6000 else if (step
6001 /* GDB is willing to range step. */
6002 && use_range_stepping
6003 /* Target supports range stepping. */
6004 && rs->supports_vCont.r
6005 /* We don't currently support range stepping multiple
6006 threads with a wildcard (though the protocol allows it,
6007 so stubs shouldn't make an active effort to forbid
6008 it). */
0e998d96 6009 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6010 {
6011 struct thread_info *tp;
6012
d7e15655 6013 if (ptid == minus_one_ptid)
c1e36e3e
PA
6014 {
6015 /* If we don't know about the target thread's tid, then
6016 we're resuming magic_null_ptid (see caller). */
6017 tp = find_thread_ptid (magic_null_ptid);
6018 }
6019 else
6020 tp = find_thread_ptid (ptid);
6021 gdb_assert (tp != NULL);
6022
6023 if (tp->control.may_range_step)
6024 {
6025 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6026
6027 p += xsnprintf (p, endp - p, ";r%s,%s",
6028 phex_nz (tp->control.step_range_start,
6029 addr_size),
6030 phex_nz (tp->control.step_range_end,
6031 addr_size));
6032 }
6033 else
6034 p += xsnprintf (p, endp - p, ";s");
6035 }
0d8f58ca
PA
6036 else if (step)
6037 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6038 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6039 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6040 else
6041 p += xsnprintf (p, endp - p, ";c");
6042
0e998d96 6043 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6044 {
6045 ptid_t nptid;
6046
6047 /* All (-1) threads of process. */
e99b03dc 6048 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6049
6050 p += xsnprintf (p, endp - p, ":");
6051 p = write_ptid (p, endp, nptid);
6052 }
d7e15655 6053 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6054 {
6055 p += xsnprintf (p, endp - p, ":");
6056 p = write_ptid (p, endp, ptid);
6057 }
6058
6059 return p;
6060}
6061
799a2abe
PA
6062/* Clear the thread's private info on resume. */
6063
6064static void
6065resume_clear_thread_private_info (struct thread_info *thread)
6066{
6067 if (thread->priv != NULL)
6068 {
7aabaf9d
SM
6069 remote_thread_info *priv = get_remote_thread_info (thread);
6070
6071 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6072 priv->watch_data_address = 0;
799a2abe
PA
6073 }
6074}
6075
e5ef252a
PA
6076/* Append a vCont continue-with-signal action for threads that have a
6077 non-zero stop signal. */
6078
6b8edb51
PA
6079char *
6080remote_target::append_pending_thread_resumptions (char *p, char *endp,
6081 ptid_t ptid)
e5ef252a 6082{
08036331
PA
6083 for (thread_info *thread : all_non_exited_threads (ptid))
6084 if (inferior_ptid != thread->ptid
70509625 6085 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6086 {
6087 p = append_resumption (p, endp, thread->ptid,
6088 0, thread->suspend.stop_signal);
6089 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6090 resume_clear_thread_private_info (thread);
e5ef252a
PA
6091 }
6092
6093 return p;
6094}
6095
7b68ffbb
PA
6096/* Set the target running, using the packets that use Hc
6097 (c/s/C/S). */
6098
6b8edb51
PA
6099void
6100remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6101 gdb_signal siggnal)
7b68ffbb
PA
6102{
6103 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6104 char *buf;
6105
6106 rs->last_sent_signal = siggnal;
6107 rs->last_sent_step = step;
6108
6109 /* The c/s/C/S resume packets use Hc, so set the continue
6110 thread. */
d7e15655 6111 if (ptid == minus_one_ptid)
7b68ffbb
PA
6112 set_continue_thread (any_thread_ptid);
6113 else
6114 set_continue_thread (ptid);
6115
08036331 6116 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6117 resume_clear_thread_private_info (thread);
6118
8d64371b 6119 buf = rs->buf.data ();
6b8edb51 6120 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6121 {
6122 /* We don't pass signals to the target in reverse exec mode. */
6123 if (info_verbose && siggnal != GDB_SIGNAL_0)
6124 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6125 siggnal);
6126
6127 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6128 error (_("Remote reverse-step not supported."));
6129 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6130 error (_("Remote reverse-continue not supported."));
6131
6132 strcpy (buf, step ? "bs" : "bc");
6133 }
6134 else if (siggnal != GDB_SIGNAL_0)
6135 {
6136 buf[0] = step ? 'S' : 'C';
6137 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6138 buf[2] = tohex (((int) siggnal) & 0xf);
6139 buf[3] = '\0';
6140 }
6141 else
6142 strcpy (buf, step ? "s" : "c");
6143
6144 putpkt (buf);
6145}
6146
506fb367
DJ
6147/* Resume the remote inferior by using a "vCont" packet. The thread
6148 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6149 resumed thread should be single-stepped and/or signalled. If PTID
6150 equals minus_one_ptid, then all threads are resumed; the thread to
6151 be stepped and/or signalled is given in the global INFERIOR_PTID.
6152 This function returns non-zero iff it resumes the inferior.
44eaed12 6153
7b68ffbb
PA
6154 This function issues a strict subset of all possible vCont commands
6155 at the moment. */
44eaed12 6156
6b8edb51
PA
6157int
6158remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6159 enum gdb_signal siggnal)
506fb367
DJ
6160{
6161 struct remote_state *rs = get_remote_state ();
82f73884
PA
6162 char *p;
6163 char *endp;
44eaed12 6164
7b68ffbb 6165 /* No reverse execution actions defined for vCont. */
6b8edb51 6166 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6167 return 0;
6168
4082afcc 6169 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6170 remote_vcont_probe ();
44eaed12 6171
4082afcc 6172 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6173 return 0;
44eaed12 6174
8d64371b
TT
6175 p = rs->buf.data ();
6176 endp = p + get_remote_packet_size ();
82f73884 6177
506fb367
DJ
6178 /* If we could generate a wider range of packets, we'd have to worry
6179 about overflowing BUF. Should there be a generic
6180 "multi-part-packet" packet? */
6181
0d8f58ca
PA
6182 p += xsnprintf (p, endp - p, "vCont");
6183
d7e15655 6184 if (ptid == magic_null_ptid)
c906108c 6185 {
79d7f229
PA
6186 /* MAGIC_NULL_PTID means that we don't have any active threads,
6187 so we don't have any TID numbers the inferior will
6188 understand. Make sure to only send forms that do not specify
6189 a TID. */
a9cbf802 6190 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6191 }
d7e15655 6192 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6193 {
0d8f58ca
PA
6194 /* Resume all threads (of all processes, or of a single
6195 process), with preference for INFERIOR_PTID. This assumes
6196 inferior_ptid belongs to the set of all threads we are about
6197 to resume. */
a493e3e2 6198 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6199 {
0d8f58ca
PA
6200 /* Step inferior_ptid, with or without signal. */
6201 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6202 }
0d8f58ca 6203
e5ef252a
PA
6204 /* Also pass down any pending signaled resumption for other
6205 threads not the current. */
6206 p = append_pending_thread_resumptions (p, endp, ptid);
6207
0d8f58ca 6208 /* And continue others without a signal. */
a493e3e2 6209 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6210 }
6211 else
506fb367
DJ
6212 {
6213 /* Scheduler locking; resume only PTID. */
a9cbf802 6214 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6215 }
c906108c 6216
8d64371b 6217 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6218 putpkt (rs->buf);
506fb367 6219
6efcd9a8 6220 if (target_is_non_stop_p ())
74531fed
PA
6221 {
6222 /* In non-stop, the stub replies to vCont with "OK". The stop
6223 reply will be reported asynchronously by means of a `%Stop'
6224 notification. */
8d64371b
TT
6225 getpkt (&rs->buf, 0);
6226 if (strcmp (rs->buf.data (), "OK") != 0)
6227 error (_("Unexpected vCont reply in non-stop mode: %s"),
6228 rs->buf.data ());
74531fed
PA
6229 }
6230
506fb367 6231 return 1;
c906108c 6232}
43ff13b4 6233
506fb367
DJ
6234/* Tell the remote machine to resume. */
6235
f6ac5f3d
PA
6236void
6237remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6238{
d01949b6 6239 struct remote_state *rs = get_remote_state ();
43ff13b4 6240
85ad3aaf
PA
6241 /* When connected in non-stop mode, the core resumes threads
6242 individually. Resuming remote threads directly in target_resume
6243 would thus result in sending one packet per thread. Instead, to
6244 minimize roundtrip latency, here we just store the resume
6245 request; the actual remote resumption will be done in
6246 target_commit_resume / remote_commit_resume, where we'll be able
6247 to do vCont action coalescing. */
f6ac5f3d 6248 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6249 {
7aabaf9d 6250 remote_thread_info *remote_thr;
85ad3aaf 6251
d7e15655 6252 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6253 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6254 else
7aabaf9d
SM
6255 remote_thr = get_remote_thread_info (ptid);
6256
85ad3aaf
PA
6257 remote_thr->last_resume_step = step;
6258 remote_thr->last_resume_sig = siggnal;
6259 return;
6260 }
6261
722247f1
YQ
6262 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6263 (explained in remote-notif.c:handle_notification) so
6264 remote_notif_process is not called. We need find a place where
6265 it is safe to start a 'vNotif' sequence. It is good to do it
6266 before resuming inferior, because inferior was stopped and no RSP
6267 traffic at that moment. */
6efcd9a8 6268 if (!target_is_non_stop_p ())
5965e028 6269 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6270
f6ac5f3d 6271 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6272
7b68ffbb
PA
6273 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6274 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6275 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6276
2acceee2 6277 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6278 with the event loop. NOTE: this is the one place where all the
6279 execution commands end up. We could alternatively do this in each
23860348 6280 of the execution commands in infcmd.c. */
2acceee2
JM
6281 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6282 into infcmd.c in order to allow inferior function calls to work
23860348 6283 NOT asynchronously. */
362646f5 6284 if (target_can_async_p ())
6a3753b3 6285 target_async (1);
e24a49d8
PA
6286
6287 /* We've just told the target to resume. The remote server will
6288 wait for the inferior to stop, and then send a stop reply. In
6289 the mean time, we can't start another command/query ourselves
74531fed
PA
6290 because the stub wouldn't be ready to process it. This applies
6291 only to the base all-stop protocol, however. In non-stop (which
6292 only supports vCont), the stub replies with an "OK", and is
6293 immediate able to process further serial input. */
6efcd9a8 6294 if (!target_is_non_stop_p ())
74531fed 6295 rs->waiting_for_stop_reply = 1;
43ff13b4 6296}
85ad3aaf 6297
85ad3aaf
PA
6298static int is_pending_fork_parent_thread (struct thread_info *thread);
6299
6300/* Private per-inferior info for target remote processes. */
6301
089354bb 6302struct remote_inferior : public private_inferior
85ad3aaf
PA
6303{
6304 /* Whether we can send a wildcard vCont for this process. */
089354bb 6305 bool may_wildcard_vcont = true;
85ad3aaf
PA
6306};
6307
089354bb
SM
6308/* Get the remote private inferior data associated to INF. */
6309
6310static remote_inferior *
6311get_remote_inferior (inferior *inf)
6312{
6313 if (inf->priv == NULL)
6314 inf->priv.reset (new remote_inferior);
6315
6316 return static_cast<remote_inferior *> (inf->priv.get ());
6317}
6318
f5db4863 6319/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6320 outgoing packet buffer. This is used to send multiple vCont
6321 packets if we have more actions than would fit a single packet. */
6322
f5db4863 6323class vcont_builder
85ad3aaf 6324{
f5db4863 6325public:
6b8edb51
PA
6326 explicit vcont_builder (remote_target *remote)
6327 : m_remote (remote)
f5db4863
PA
6328 {
6329 restart ();
6330 }
6331
6332 void flush ();
6333 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6334
6335private:
6336 void restart ();
6337
6b8edb51
PA
6338 /* The remote target. */
6339 remote_target *m_remote;
6340
85ad3aaf
PA
6341 /* Pointer to the first action. P points here if no action has been
6342 appended yet. */
f5db4863 6343 char *m_first_action;
85ad3aaf
PA
6344
6345 /* Where the next action will be appended. */
f5db4863 6346 char *m_p;
85ad3aaf
PA
6347
6348 /* The end of the buffer. Must never write past this. */
f5db4863 6349 char *m_endp;
85ad3aaf
PA
6350};
6351
6352/* Prepare the outgoing buffer for a new vCont packet. */
6353
f5db4863
PA
6354void
6355vcont_builder::restart ()
85ad3aaf 6356{
6b8edb51 6357 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6358
8d64371b
TT
6359 m_p = rs->buf.data ();
6360 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6361 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6362 m_first_action = m_p;
85ad3aaf
PA
6363}
6364
6365/* If the vCont packet being built has any action, send it to the
6366 remote end. */
6367
f5db4863
PA
6368void
6369vcont_builder::flush ()
85ad3aaf
PA
6370{
6371 struct remote_state *rs;
6372
f5db4863 6373 if (m_p == m_first_action)
85ad3aaf
PA
6374 return;
6375
6b8edb51
PA
6376 rs = m_remote->get_remote_state ();
6377 m_remote->putpkt (rs->buf);
8d64371b
TT
6378 m_remote->getpkt (&rs->buf, 0);
6379 if (strcmp (rs->buf.data (), "OK") != 0)
6380 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6381}
6382
6383/* The largest action is range-stepping, with its two addresses. This
6384 is more than sufficient. If a new, bigger action is created, it'll
6385 quickly trigger a failed assertion in append_resumption (and we'll
6386 just bump this). */
6387#define MAX_ACTION_SIZE 200
6388
6389/* Append a new vCont action in the outgoing packet being built. If
6390 the action doesn't fit the packet along with previous actions, push
6391 what we've got so far to the remote end and start over a new vCont
6392 packet (with the new action). */
6393
f5db4863
PA
6394void
6395vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6396{
6397 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6398
6b8edb51
PA
6399 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6400 ptid, step, siggnal);
85ad3aaf
PA
6401
6402 /* Check whether this new action would fit in the vCont packet along
6403 with previous actions. If not, send what we've got so far and
6404 start a new vCont packet. */
f5db4863
PA
6405 size_t rsize = endp - buf;
6406 if (rsize > m_endp - m_p)
85ad3aaf 6407 {
f5db4863
PA
6408 flush ();
6409 restart ();
85ad3aaf
PA
6410
6411 /* Should now fit. */
f5db4863 6412 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6413 }
6414
f5db4863
PA
6415 memcpy (m_p, buf, rsize);
6416 m_p += rsize;
6417 *m_p = '\0';
85ad3aaf
PA
6418}
6419
6420/* to_commit_resume implementation. */
6421
f6ac5f3d
PA
6422void
6423remote_target::commit_resume ()
85ad3aaf 6424{
85ad3aaf
PA
6425 int any_process_wildcard;
6426 int may_global_wildcard_vcont;
85ad3aaf
PA
6427
6428 /* If connected in all-stop mode, we'd send the remote resume
6429 request directly from remote_resume. Likewise if
6430 reverse-debugging, as there are no defined vCont actions for
6431 reverse execution. */
f6ac5f3d 6432 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6433 return;
6434
6435 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6436 instead of resuming all threads of each process individually.
6437 However, if any thread of a process must remain halted, we can't
6438 send wildcard resumes and must send one action per thread.
6439
6440 Care must be taken to not resume threads/processes the server
6441 side already told us are stopped, but the core doesn't know about
6442 yet, because the events are still in the vStopped notification
6443 queue. For example:
6444
6445 #1 => vCont s:p1.1;c
6446 #2 <= OK
6447 #3 <= %Stopped T05 p1.1
6448 #4 => vStopped
6449 #5 <= T05 p1.2
6450 #6 => vStopped
6451 #7 <= OK
6452 #8 (infrun handles the stop for p1.1 and continues stepping)
6453 #9 => vCont s:p1.1;c
6454
6455 The last vCont above would resume thread p1.2 by mistake, because
6456 the server has no idea that the event for p1.2 had not been
6457 handled yet.
6458
6459 The server side must similarly ignore resume actions for the
6460 thread that has a pending %Stopped notification (and any other
6461 threads with events pending), until GDB acks the notification
6462 with vStopped. Otherwise, e.g., the following case is
6463 mishandled:
6464
6465 #1 => g (or any other packet)
6466 #2 <= [registers]
6467 #3 <= %Stopped T05 p1.2
6468 #4 => vCont s:p1.1;c
6469 #5 <= OK
6470
6471 Above, the server must not resume thread p1.2. GDB can't know
6472 that p1.2 stopped until it acks the %Stopped notification, and
6473 since from GDB's perspective all threads should be running, it
6474 sends a "c" action.
6475
6476 Finally, special care must also be given to handling fork/vfork
6477 events. A (v)fork event actually tells us that two processes
6478 stopped -- the parent and the child. Until we follow the fork,
6479 we must not resume the child. Therefore, if we have a pending
6480 fork follow, we must not send a global wildcard resume action
6481 (vCont;c). We can still send process-wide wildcards though. */
6482
6483 /* Start by assuming a global wildcard (vCont;c) is possible. */
6484 may_global_wildcard_vcont = 1;
6485
6486 /* And assume every process is individually wildcard-able too. */
08036331 6487 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6488 {
089354bb
SM
6489 remote_inferior *priv = get_remote_inferior (inf);
6490
6491 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6492 }
6493
6494 /* Check for any pending events (not reported or processed yet) and
6495 disable process and global wildcard resumes appropriately. */
6496 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6497
08036331 6498 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6499 {
6500 /* If a thread of a process is not meant to be resumed, then we
6501 can't wildcard that process. */
6502 if (!tp->executing)
6503 {
089354bb 6504 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6505
6506 /* And if we can't wildcard a process, we can't wildcard
6507 everything either. */
6508 may_global_wildcard_vcont = 0;
6509 continue;
6510 }
6511
6512 /* If a thread is the parent of an unfollowed fork, then we
6513 can't do a global wildcard, as that would resume the fork
6514 child. */
6515 if (is_pending_fork_parent_thread (tp))
6516 may_global_wildcard_vcont = 0;
6517 }
6518
6519 /* Now let's build the vCont packet(s). Actions must be appended
6520 from narrower to wider scopes (thread -> process -> global). If
6521 we end up with too many actions for a single packet vcont_builder
6522 flushes the current vCont packet to the remote side and starts a
6523 new one. */
6b8edb51 6524 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6525
6526 /* Threads first. */
08036331 6527 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6528 {
7aabaf9d 6529 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6530
6531 if (!tp->executing || remote_thr->vcont_resumed)
6532 continue;
6533
6534 gdb_assert (!thread_is_in_step_over_chain (tp));
6535
6536 if (!remote_thr->last_resume_step
6537 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6538 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6539 {
6540 /* We'll send a wildcard resume instead. */
6541 remote_thr->vcont_resumed = 1;
6542 continue;
6543 }
6544
f5db4863 6545 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6546 remote_thr->last_resume_step,
6547 remote_thr->last_resume_sig);
6548 remote_thr->vcont_resumed = 1;
6549 }
6550
6551 /* Now check whether we can send any process-wide wildcard. This is
6552 to avoid sending a global wildcard in the case nothing is
6553 supposed to be resumed. */
6554 any_process_wildcard = 0;
6555
08036331 6556 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6557 {
089354bb 6558 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6559 {
6560 any_process_wildcard = 1;
6561 break;
6562 }
6563 }
6564
6565 if (any_process_wildcard)
6566 {
6567 /* If all processes are wildcard-able, then send a single "c"
6568 action, otherwise, send an "all (-1) threads of process"
6569 continue action for each running process, if any. */
6570 if (may_global_wildcard_vcont)
6571 {
f5db4863
PA
6572 vcont_builder.push_action (minus_one_ptid,
6573 false, GDB_SIGNAL_0);
85ad3aaf
PA
6574 }
6575 else
6576 {
08036331 6577 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6578 {
089354bb 6579 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6580 {
f2907e49 6581 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6582 false, GDB_SIGNAL_0);
85ad3aaf
PA
6583 }
6584 }
6585 }
6586 }
6587
f5db4863 6588 vcont_builder.flush ();
85ad3aaf
PA
6589}
6590
c906108c 6591\f
43ff13b4 6592
74531fed
PA
6593/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6594 thread, all threads of a remote process, or all threads of all
6595 processes. */
6596
6b8edb51
PA
6597void
6598remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6599{
6600 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6601 char *p = rs->buf.data ();
6602 char *endp = p + get_remote_packet_size ();
74531fed 6603
4082afcc 6604 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6605 remote_vcont_probe ();
74531fed 6606
d458bd84 6607 if (!rs->supports_vCont.t)
74531fed
PA
6608 error (_("Remote server does not support stopping threads"));
6609
d7e15655 6610 if (ptid == minus_one_ptid
0e998d96 6611 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6612 p += xsnprintf (p, endp - p, "vCont;t");
6613 else
6614 {
6615 ptid_t nptid;
6616
74531fed
PA
6617 p += xsnprintf (p, endp - p, "vCont;t:");
6618
0e998d96 6619 if (ptid.is_pid ())
74531fed 6620 /* All (-1) threads of process. */
e99b03dc 6621 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6622 else
6623 {
6624 /* Small optimization: if we already have a stop reply for
6625 this thread, no use in telling the stub we want this
6626 stopped. */
6627 if (peek_stop_reply (ptid))
6628 return;
6629
6630 nptid = ptid;
6631 }
6632
a9cbf802 6633 write_ptid (p, endp, nptid);
74531fed
PA
6634 }
6635
6636 /* In non-stop, we get an immediate OK reply. The stop reply will
6637 come in asynchronously by notification. */
6638 putpkt (rs->buf);
8d64371b
TT
6639 getpkt (&rs->buf, 0);
6640 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6641 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6642 rs->buf.data ());
74531fed
PA
6643}
6644
bfedc46a
PA
6645/* All-stop version of target_interrupt. Sends a break or a ^C to
6646 interrupt the remote target. It is undefined which thread of which
6647 process reports the interrupt. */
74531fed 6648
6b8edb51
PA
6649void
6650remote_target::remote_interrupt_as ()
74531fed
PA
6651{
6652 struct remote_state *rs = get_remote_state ();
6653
3a29589a
DJ
6654 rs->ctrlc_pending_p = 1;
6655
74531fed
PA
6656 /* If the inferior is stopped already, but the core didn't know
6657 about it yet, just ignore the request. The cached wait status
6658 will be collected in remote_wait. */
6659 if (rs->cached_wait_status)
6660 return;
6661
9a7071a8
JB
6662 /* Send interrupt_sequence to remote target. */
6663 send_interrupt_sequence ();
74531fed
PA
6664}
6665
de979965
PA
6666/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6667 the remote target. It is undefined which thread of which process
e42de8c7
PA
6668 reports the interrupt. Throws an error if the packet is not
6669 supported by the server. */
de979965 6670
6b8edb51
PA
6671void
6672remote_target::remote_interrupt_ns ()
de979965
PA
6673{
6674 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6675 char *p = rs->buf.data ();
6676 char *endp = p + get_remote_packet_size ();
de979965
PA
6677
6678 xsnprintf (p, endp - p, "vCtrlC");
6679
6680 /* In non-stop, we get an immediate OK reply. The stop reply will
6681 come in asynchronously by notification. */
6682 putpkt (rs->buf);
8d64371b 6683 getpkt (&rs->buf, 0);
de979965
PA
6684
6685 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6686 {
6687 case PACKET_OK:
6688 break;
6689 case PACKET_UNKNOWN:
e42de8c7 6690 error (_("No support for interrupting the remote target."));
de979965 6691 case PACKET_ERROR:
8d64371b 6692 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6693 }
de979965
PA
6694}
6695
bfedc46a 6696/* Implement the to_stop function for the remote targets. */
74531fed 6697
f6ac5f3d
PA
6698void
6699remote_target::stop (ptid_t ptid)
c906108c 6700{
7a292a7a 6701 if (remote_debug)
0f71a2f6 6702 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6703
6efcd9a8 6704 if (target_is_non_stop_p ())
74531fed 6705 remote_stop_ns (ptid);
c906108c 6706 else
bfedc46a
PA
6707 {
6708 /* We don't currently have a way to transparently pause the
6709 remote target in all-stop mode. Interrupt it instead. */
de979965 6710 remote_interrupt_as ();
bfedc46a
PA
6711 }
6712}
6713
6714/* Implement the to_interrupt function for the remote targets. */
6715
f6ac5f3d
PA
6716void
6717remote_target::interrupt ()
bfedc46a
PA
6718{
6719 if (remote_debug)
6720 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6721
e42de8c7
PA
6722 if (target_is_non_stop_p ())
6723 remote_interrupt_ns ();
bfedc46a 6724 else
e42de8c7 6725 remote_interrupt_as ();
c906108c
SS
6726}
6727
93692b58
PA
6728/* Implement the to_pass_ctrlc function for the remote targets. */
6729
f6ac5f3d
PA
6730void
6731remote_target::pass_ctrlc ()
93692b58
PA
6732{
6733 struct remote_state *rs = get_remote_state ();
6734
6735 if (remote_debug)
6736 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6737
6738 /* If we're starting up, we're not fully synced yet. Quit
6739 immediately. */
6740 if (rs->starting_up)
6741 quit ();
6742 /* If ^C has already been sent once, offer to disconnect. */
6743 else if (rs->ctrlc_pending_p)
6744 interrupt_query ();
6745 else
e671cd59 6746 target_interrupt ();
93692b58
PA
6747}
6748
c906108c
SS
6749/* Ask the user what to do when an interrupt is received. */
6750
6b8edb51
PA
6751void
6752remote_target::interrupt_query ()
c906108c 6753{
abc56d60 6754 struct remote_state *rs = get_remote_state ();
c906108c 6755
abc56d60 6756 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6757 {
abc56d60
PA
6758 if (query (_("The target is not responding to interrupt requests.\n"
6759 "Stop debugging it? ")))
74531fed 6760 {
78a095c3 6761 remote_unpush_target ();
abc56d60 6762 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6763 }
6764 }
abc56d60
PA
6765 else
6766 {
6767 if (query (_("Interrupted while waiting for the program.\n"
6768 "Give up waiting? ")))
6769 quit ();
6770 }
c906108c
SS
6771}
6772
6426a772
JM
6773/* Enable/disable target terminal ownership. Most targets can use
6774 terminal groups to control terminal ownership. Remote targets are
6775 different in that explicit transfer of ownership to/from GDB/target
23860348 6776 is required. */
6426a772 6777
f6ac5f3d
PA
6778void
6779remote_target::terminal_inferior ()
6426a772 6780{
6426a772
JM
6781 /* NOTE: At this point we could also register our selves as the
6782 recipient of all input. Any characters typed could then be
23860348 6783 passed on down to the target. */
6426a772
JM
6784}
6785
f6ac5f3d
PA
6786void
6787remote_target::terminal_ours ()
6426a772 6788{
6426a772
JM
6789}
6790
176a6961 6791static void
05be00a8 6792remote_console_output (const char *msg)
c906108c 6793{
05be00a8 6794 const char *p;
c906108c 6795
c5aa993b 6796 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6797 {
6798 char tb[2];
6799 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6800
c906108c
SS
6801 tb[0] = c;
6802 tb[1] = 0;
43ff13b4 6803 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6804 }
00db5b94
PA
6805 gdb_flush (gdb_stdtarg);
6806}
74531fed 6807
32603266 6808struct stop_reply : public notif_event
74531fed 6809{
32603266 6810 ~stop_reply ();
74531fed 6811
722247f1 6812 /* The identifier of the thread about this event */
74531fed
PA
6813 ptid_t ptid;
6814
340e3c99 6815 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6816 connection, represented by a remote_state object, is closed,
6817 all the associated stop_reply events should be released. */
6818 struct remote_state *rs;
6819
74531fed
PA
6820 struct target_waitstatus ws;
6821
5cd63fda
PA
6822 /* The architecture associated with the expedited registers. */
6823 gdbarch *arch;
6824
15148d6a
PA
6825 /* Expedited registers. This makes remote debugging a bit more
6826 efficient for those targets that provide critical registers as
6827 part of their normal status mechanism (as another roundtrip to
6828 fetch them is avoided). */
32603266 6829 std::vector<cached_reg_t> regcache;
74531fed 6830
f7e6eed5
PA
6831 enum target_stop_reason stop_reason;
6832
74531fed
PA
6833 CORE_ADDR watch_data_address;
6834
dc146f7c 6835 int core;
32603266 6836};
c906108c 6837
221e1a37
PA
6838/* Return the length of the stop reply queue. */
6839
6b8edb51
PA
6840int
6841remote_target::stop_reply_queue_length ()
221e1a37 6842{
6b8edb51 6843 remote_state *rs = get_remote_state ();
953edf2b 6844 return rs->stop_reply_queue.size ();
221e1a37
PA
6845}
6846
6b8edb51
PA
6847void
6848remote_notif_stop_parse (remote_target *remote,
bb277751 6849 struct notif_client *self, const char *buf,
722247f1
YQ
6850 struct notif_event *event)
6851{
6b8edb51 6852 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6853}
6854
6855static void
6b8edb51 6856remote_notif_stop_ack (remote_target *remote,
bb277751 6857 struct notif_client *self, const char *buf,
722247f1
YQ
6858 struct notif_event *event)
6859{
6860 struct stop_reply *stop_reply = (struct stop_reply *) event;
6861
6862 /* acknowledge */
6b8edb51 6863 putpkt (remote, self->ack_command);
722247f1
YQ
6864
6865 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6866 {
722247f1
YQ
6867 /* We got an unknown stop reply. */
6868 error (_("Unknown stop reply"));
6b8edb51 6869 }
722247f1 6870
6b8edb51 6871 remote->push_stop_reply (stop_reply);
722247f1
YQ
6872}
6873
6874static int
6b8edb51
PA
6875remote_notif_stop_can_get_pending_events (remote_target *remote,
6876 struct notif_client *self)
722247f1
YQ
6877{
6878 /* We can't get pending events in remote_notif_process for
6879 notification stop, and we have to do this in remote_wait_ns
6880 instead. If we fetch all queued events from stub, remote stub
6881 may exit and we have no chance to process them back in
6882 remote_wait_ns. */
6b8edb51
PA
6883 remote_state *rs = remote->get_remote_state ();
6884 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6885 return 0;
6886}
6887
32603266 6888stop_reply::~stop_reply ()
722247f1 6889{
32603266
TT
6890 for (cached_reg_t &reg : regcache)
6891 xfree (reg.data);
722247f1
YQ
6892}
6893
32603266
TT
6894static notif_event_up
6895remote_notif_stop_alloc_reply ()
722247f1 6896{
32603266 6897 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6898}
6899
6900/* A client of notification Stop. */
6901
6902struct notif_client notif_client_stop =
6903{
6904 "Stop",
6905 "vStopped",
6906 remote_notif_stop_parse,
6907 remote_notif_stop_ack,
6908 remote_notif_stop_can_get_pending_events,
6909 remote_notif_stop_alloc_reply,
f48ff2a7 6910 REMOTE_NOTIF_STOP,
722247f1
YQ
6911};
6912
85ad3aaf 6913/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6914 the pid of the process that owns the threads we want to check, or
6915 -1 if we want to check all threads. */
6916
6917static int
6918is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6919 ptid_t thread_ptid)
6920{
6921 if (ws->kind == TARGET_WAITKIND_FORKED
6922 || ws->kind == TARGET_WAITKIND_VFORKED)
6923 {
e99b03dc 6924 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6925 return 1;
6926 }
6927
6928 return 0;
6929}
6930
85ad3aaf
PA
6931/* Return the thread's pending status used to determine whether the
6932 thread is a fork parent stopped at a fork event. */
6933
6934static struct target_waitstatus *
6935thread_pending_fork_status (struct thread_info *thread)
6936{
6937 if (thread->suspend.waitstatus_pending_p)
6938 return &thread->suspend.waitstatus;
6939 else
6940 return &thread->pending_follow;
6941}
6942
6943/* Determine if THREAD is a pending fork parent thread. */
6944
6945static int
6946is_pending_fork_parent_thread (struct thread_info *thread)
6947{
6948 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6949 int pid = -1;
6950
6951 return is_pending_fork_parent (ws, pid, thread->ptid);
6952}
6953
cbb8991c
DB
6954/* If CONTEXT contains any fork child threads that have not been
6955 reported yet, remove them from the CONTEXT list. If such a
6956 thread exists it is because we are stopped at a fork catchpoint
6957 and have not yet called follow_fork, which will set up the
6958 host-side data structures for the new process. */
6959
6b8edb51
PA
6960void
6961remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6962{
cbb8991c
DB
6963 int pid = -1;
6964 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6965
6966 /* For any threads stopped at a fork event, remove the corresponding
6967 fork child threads from the CONTEXT list. */
08036331 6968 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 6969 {
85ad3aaf 6970 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6971
6972 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6973 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6974 }
6975
6976 /* Check for any pending fork events (not reported or processed yet)
6977 in process PID and remove those fork child threads from the
6978 CONTEXT list as well. */
6979 remote_notif_get_pending_events (notif);
953edf2b
TT
6980 for (auto &event : get_remote_state ()->stop_reply_queue)
6981 if (event->ws.kind == TARGET_WAITKIND_FORKED
6982 || event->ws.kind == TARGET_WAITKIND_VFORKED
6983 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6984 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
6985}
6986
6987/* Check whether any event pending in the vStopped queue would prevent
6988 a global or process wildcard vCont action. Clear
6989 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6990 and clear the event inferior's may_wildcard_vcont flag if we can't
6991 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6992
6b8edb51
PA
6993void
6994remote_target::check_pending_events_prevent_wildcard_vcont
6995 (int *may_global_wildcard)
85ad3aaf
PA
6996{
6997 struct notif_client *notif = &notif_client_stop;
6998
6999 remote_notif_get_pending_events (notif);
953edf2b
TT
7000 for (auto &event : get_remote_state ()->stop_reply_queue)
7001 {
7002 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7003 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7004 continue;
85ad3aaf 7005
953edf2b
TT
7006 if (event->ws.kind == TARGET_WAITKIND_FORKED
7007 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7008 *may_global_wildcard = 0;
722247f1 7009
953edf2b 7010 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 7011
953edf2b
TT
7012 /* This may be the first time we heard about this process.
7013 Regardless, we must not do a global wildcard resume, otherwise
7014 we'd resume this process too. */
7015 *may_global_wildcard = 0;
7016 if (inf != NULL)
7017 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7018 }
722247f1
YQ
7019}
7020
f48ff2a7 7021/* Discard all pending stop replies of inferior INF. */
c906108c 7022
6b8edb51
PA
7023void
7024remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7025{
f48ff2a7
YQ
7026 struct stop_reply *reply;
7027 struct remote_state *rs = get_remote_state ();
7028 struct remote_notif_state *rns = rs->notif_state;
7029
7030 /* This function can be notified when an inferior exists. When the
7031 target is not remote, the notification state is NULL. */
7032 if (rs->remote_desc == NULL)
7033 return;
7034
7035 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7036
74531fed 7037 /* Discard the in-flight notification. */
e99b03dc 7038 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7039 {
32603266 7040 delete reply;
f48ff2a7 7041 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7042 }
c906108c 7043
74531fed
PA
7044 /* Discard the stop replies we have already pulled with
7045 vStopped. */
953edf2b
TT
7046 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7047 rs->stop_reply_queue.end (),
7048 [=] (const stop_reply_up &event)
7049 {
7050 return event->ptid.pid () == inf->pid;
7051 });
7052 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7053}
7054
7055/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7056
6b8edb51
PA
7057void
7058remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7059{
6b8edb51 7060 remote_state *rs = get_remote_state ();
f48ff2a7 7061
f48ff2a7
YQ
7062 /* Discard the stop replies we have already pulled with
7063 vStopped. */
953edf2b
TT
7064 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7065 rs->stop_reply_queue.end (),
7066 [=] (const stop_reply_up &event)
7067 {
7068 return event->rs == rs;
7069 });
7070 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7071}
43ff13b4 7072
722247f1
YQ
7073/* Remove the first reply in 'stop_reply_queue' which matches
7074 PTID. */
2e9f7625 7075
6b8edb51
PA
7076struct stop_reply *
7077remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7078{
953edf2b 7079 remote_state *rs = get_remote_state ();
722247f1 7080
953edf2b
TT
7081 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7082 rs->stop_reply_queue.end (),
7083 [=] (const stop_reply_up &event)
7084 {
7085 return event->ptid.matches (ptid);
7086 });
7087 struct stop_reply *result;
7088 if (iter == rs->stop_reply_queue.end ())
7089 result = nullptr;
7090 else
7091 {
7092 result = iter->release ();
7093 rs->stop_reply_queue.erase (iter);
7094 }
722247f1 7095
722247f1
YQ
7096 if (notif_debug)
7097 fprintf_unfiltered (gdb_stdlog,
7098 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7099 target_pid_to_str (ptid).c_str ());
a744cf53 7100
953edf2b 7101 return result;
74531fed 7102}
75c99385 7103
74531fed
PA
7104/* Look for a queued stop reply belonging to PTID. If one is found,
7105 remove it from the queue, and return it. Returns NULL if none is
7106 found. If there are still queued events left to process, tell the
7107 event loop to get back to target_wait soon. */
e24a49d8 7108
6b8edb51
PA
7109struct stop_reply *
7110remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7111{
953edf2b 7112 remote_state *rs = get_remote_state ();
722247f1 7113 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7114
953edf2b 7115 if (!rs->stop_reply_queue.empty ())
6b8edb51 7116 {
6b8edb51
PA
7117 /* There's still at least an event left. */
7118 mark_async_event_handler (rs->remote_async_inferior_event_token);
7119 }
74531fed 7120
722247f1 7121 return r;
74531fed
PA
7122}
7123
7124/* Push a fully parsed stop reply in the stop reply queue. Since we
7125 know that we now have at least one queued event left to pass to the
7126 core side, tell the event loop to get back to target_wait soon. */
7127
6b8edb51
PA
7128void
7129remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7130{
6b8edb51 7131 remote_state *rs = get_remote_state ();
953edf2b 7132 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7133
722247f1
YQ
7134 if (notif_debug)
7135 fprintf_unfiltered (gdb_stdlog,
7136 "notif: push 'Stop' %s to queue %d\n",
a068643d 7137 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7138 int (rs->stop_reply_queue.size ()));
74531fed 7139
6b8edb51 7140 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7141}
7142
7143/* Returns true if we have a stop reply for PTID. */
7144
6b8edb51
PA
7145int
7146remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7147{
6b8edb51 7148 remote_state *rs = get_remote_state ();
953edf2b
TT
7149 for (auto &event : rs->stop_reply_queue)
7150 if (ptid == event->ptid
7151 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7152 return 1;
7153 return 0;
74531fed
PA
7154}
7155
26d56a93
SL
7156/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7157 starting with P and ending with PEND matches PREFIX. */
7158
7159static int
7160strprefix (const char *p, const char *pend, const char *prefix)
7161{
7162 for ( ; p < pend; p++, prefix++)
7163 if (*p != *prefix)
7164 return 0;
7165 return *prefix == '\0';
7166}
7167
74531fed
PA
7168/* Parse the stop reply in BUF. Either the function succeeds, and the
7169 result is stored in EVENT, or throws an error. */
7170
6b8edb51 7171void
bb277751 7172remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7173{
5cd63fda 7174 remote_arch_state *rsa = NULL;
74531fed 7175 ULONGEST addr;
256642e8 7176 const char *p;
94585166 7177 int skipregs = 0;
74531fed
PA
7178
7179 event->ptid = null_ptid;
bcc75809 7180 event->rs = get_remote_state ();
74531fed
PA
7181 event->ws.kind = TARGET_WAITKIND_IGNORE;
7182 event->ws.value.integer = 0;
f7e6eed5 7183 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7184 event->regcache.clear ();
dc146f7c 7185 event->core = -1;
74531fed
PA
7186
7187 switch (buf[0])
7188 {
7189 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7190 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7191 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7192 ss = signal number
7193 n... = register number
7194 r... = register contents
7195 */
7196
7197 p = &buf[3]; /* after Txx */
7198 while (*p)
7199 {
256642e8 7200 const char *p1;
cea39f65 7201 int fieldsize;
43ff13b4 7202
1f10ba14
PA
7203 p1 = strchr (p, ':');
7204 if (p1 == NULL)
7205 error (_("Malformed packet(a) (missing colon): %s\n\
7206Packet: '%s'\n"),
7207 p, buf);
7208 if (p == p1)
7209 error (_("Malformed packet(a) (missing register number): %s\n\
7210Packet: '%s'\n"),
7211 p, buf);
3c3bea1c 7212
1f10ba14
PA
7213 /* Some "registers" are actually extended stop information.
7214 Note if you're adding a new entry here: GDB 7.9 and
7215 earlier assume that all register "numbers" that start
7216 with an hex digit are real register numbers. Make sure
7217 the server only sends such a packet if it knows the
7218 client understands it. */
c8e38a49 7219
26d56a93 7220 if (strprefix (p, p1, "thread"))
1f10ba14 7221 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7222 else if (strprefix (p, p1, "syscall_entry"))
7223 {
7224 ULONGEST sysno;
7225
7226 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7227 p = unpack_varlen_hex (++p1, &sysno);
7228 event->ws.value.syscall_number = (int) sysno;
7229 }
7230 else if (strprefix (p, p1, "syscall_return"))
7231 {
7232 ULONGEST sysno;
7233
7234 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7235 p = unpack_varlen_hex (++p1, &sysno);
7236 event->ws.value.syscall_number = (int) sysno;
7237 }
26d56a93
SL
7238 else if (strprefix (p, p1, "watch")
7239 || strprefix (p, p1, "rwatch")
7240 || strprefix (p, p1, "awatch"))
cea39f65 7241 {
f7e6eed5 7242 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7243 p = unpack_varlen_hex (++p1, &addr);
7244 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7245 }
26d56a93 7246 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7247 {
7248 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7249
7250 /* Make sure the stub doesn't forget to indicate support
7251 with qSupported. */
7252 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7253 error (_("Unexpected swbreak stop reason"));
7254
7255 /* The value part is documented as "must be empty",
7256 though we ignore it, in case we ever decide to make
7257 use of it in a backward compatible way. */
8424cc97 7258 p = strchrnul (p1 + 1, ';');
f7e6eed5 7259 }
26d56a93 7260 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7261 {
7262 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7263
7264 /* Make sure the stub doesn't forget to indicate support
7265 with qSupported. */
7266 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7267 error (_("Unexpected hwbreak stop reason"));
7268
7269 /* See above. */
8424cc97 7270 p = strchrnul (p1 + 1, ';');
f7e6eed5 7271 }
26d56a93 7272 else if (strprefix (p, p1, "library"))
cea39f65 7273 {
1f10ba14 7274 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7275 p = strchrnul (p1 + 1, ';');
1f10ba14 7276 }
26d56a93 7277 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7278 {
7279 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7280 /* p1 will indicate "begin" or "end", but it makes
7281 no difference for now, so ignore it. */
8424cc97 7282 p = strchrnul (p1 + 1, ';');
1f10ba14 7283 }
26d56a93 7284 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7285 {
7286 ULONGEST c;
a744cf53 7287
1f10ba14
PA
7288 p = unpack_varlen_hex (++p1, &c);
7289 event->core = c;
cea39f65 7290 }
26d56a93 7291 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7292 {
7293 event->ws.value.related_pid = read_ptid (++p1, &p);
7294 event->ws.kind = TARGET_WAITKIND_FORKED;
7295 }
26d56a93 7296 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7297 {
7298 event->ws.value.related_pid = read_ptid (++p1, &p);
7299 event->ws.kind = TARGET_WAITKIND_VFORKED;
7300 }
26d56a93 7301 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7302 {
7303 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7304 p = strchrnul (p1 + 1, ';');
c269dbdb 7305 }
6ab24463 7306 else if (strprefix (p, p1, "exec"))
94585166
DB
7307 {
7308 ULONGEST ignored;
94585166
DB
7309 int pathlen;
7310
7311 /* Determine the length of the execd pathname. */
7312 p = unpack_varlen_hex (++p1, &ignored);
7313 pathlen = (p - p1) / 2;
7314
7315 /* Save the pathname for event reporting and for
7316 the next run command. */
c6321f19
TT
7317 gdb::unique_xmalloc_ptr<char[]> pathname
7318 ((char *) xmalloc (pathlen + 1));
7319 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7320 pathname[pathlen] = '\0';
7321
7322 /* This is freed during event handling. */
c6321f19 7323 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7324 event->ws.kind = TARGET_WAITKIND_EXECD;
7325
7326 /* Skip the registers included in this packet, since
7327 they may be for an architecture different from the
7328 one used by the original program. */
7329 skipregs = 1;
7330 }
65706a29
PA
7331 else if (strprefix (p, p1, "create"))
7332 {
7333 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7334 p = strchrnul (p1 + 1, ';');
65706a29 7335 }
cea39f65
MS
7336 else
7337 {
1f10ba14 7338 ULONGEST pnum;
256642e8 7339 const char *p_temp;
1f10ba14 7340
94585166
DB
7341 if (skipregs)
7342 {
8424cc97 7343 p = strchrnul (p1 + 1, ';');
94585166
DB
7344 p++;
7345 continue;
7346 }
7347
1f10ba14
PA
7348 /* Maybe a real ``P'' register number. */
7349 p_temp = unpack_varlen_hex (p, &pnum);
7350 /* If the first invalid character is the colon, we got a
7351 register number. Otherwise, it's an unknown stop
7352 reason. */
7353 if (p_temp == p1)
7354 {
5cd63fda
PA
7355 /* If we haven't parsed the event's thread yet, find
7356 it now, in order to find the architecture of the
7357 reported expedited registers. */
7358 if (event->ptid == null_ptid)
7359 {
7360 const char *thr = strstr (p1 + 1, ";thread:");
7361 if (thr != NULL)
7362 event->ptid = read_ptid (thr + strlen (";thread:"),
7363 NULL);
7364 else
3cada740
PA
7365 {
7366 /* Either the current thread hasn't changed,
7367 or the inferior is not multi-threaded.
7368 The event must be for the thread we last
7369 set as (or learned as being) current. */
7370 event->ptid = event->rs->general_thread;
7371 }
5cd63fda
PA
7372 }
7373
7374 if (rsa == NULL)
7375 {
7376 inferior *inf = (event->ptid == null_ptid
7377 ? NULL
7378 : find_inferior_ptid (event->ptid));
7379 /* If this is the first time we learn anything
7380 about this process, skip the registers
7381 included in this packet, since we don't yet
7382 know which architecture to use to parse them.
7383 We'll determine the architecture later when
7384 we process the stop reply and retrieve the
7385 target description, via
7386 remote_notice_new_inferior ->
7387 post_create_inferior. */
7388 if (inf == NULL)
7389 {
7390 p = strchrnul (p1 + 1, ';');
7391 p++;
7392 continue;
7393 }
7394
7395 event->arch = inf->gdbarch;
9d6eea31 7396 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7397 }
7398
7399 packet_reg *reg
7400 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7401 cached_reg_t cached_reg;
43ff13b4 7402
1f10ba14
PA
7403 if (reg == NULL)
7404 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7405Packet: '%s'\n"),
1f10ba14 7406 hex_string (pnum), p, buf);
c8e38a49 7407
1f10ba14 7408 cached_reg.num = reg->regnum;
d1dff226 7409 cached_reg.data = (gdb_byte *)
5cd63fda 7410 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7411
1f10ba14
PA
7412 p = p1 + 1;
7413 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7414 register_size (event->arch, reg->regnum));
1f10ba14 7415 p += 2 * fieldsize;
5cd63fda 7416 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7417 warning (_("Remote reply is too short: %s"), buf);
74531fed 7418
32603266 7419 event->regcache.push_back (cached_reg);
1f10ba14
PA
7420 }
7421 else
7422 {
7423 /* Not a number. Silently skip unknown optional
7424 info. */
8424cc97 7425 p = strchrnul (p1 + 1, ';');
1f10ba14 7426 }
cea39f65 7427 }
c8e38a49 7428
cea39f65
MS
7429 if (*p != ';')
7430 error (_("Remote register badly formatted: %s\nhere: %s"),
7431 buf, p);
7432 ++p;
7433 }
5b5596ff
PA
7434
7435 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7436 break;
7437
c8e38a49
PA
7438 /* fall through */
7439 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7440 {
7441 int sig;
7442
7443 event->ws.kind = TARGET_WAITKIND_STOPPED;
7444 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7445 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7446 event->ws.value.sig = (enum gdb_signal) sig;
7447 else
7448 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7449 }
c8e38a49 7450 break;
65706a29
PA
7451 case 'w': /* Thread exited. */
7452 {
65706a29
PA
7453 ULONGEST value;
7454
7455 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7456 p = unpack_varlen_hex (&buf[1], &value);
7457 event->ws.value.integer = value;
7458 if (*p != ';')
7459 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7460 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7461 break;
7462 }
c8e38a49
PA
7463 case 'W': /* Target exited. */
7464 case 'X':
7465 {
c8e38a49
PA
7466 int pid;
7467 ULONGEST value;
82f73884 7468
c8e38a49
PA
7469 /* GDB used to accept only 2 hex chars here. Stubs should
7470 only send more if they detect GDB supports multi-process
7471 support. */
7472 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7473
c8e38a49
PA
7474 if (buf[0] == 'W')
7475 {
7476 /* The remote process exited. */
74531fed
PA
7477 event->ws.kind = TARGET_WAITKIND_EXITED;
7478 event->ws.value.integer = value;
c8e38a49
PA
7479 }
7480 else
7481 {
7482 /* The remote process exited with a signal. */
74531fed 7483 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7484 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7485 event->ws.value.sig = (enum gdb_signal) value;
7486 else
7487 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7488 }
82f73884 7489
c8e38a49 7490 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7491 pid = inferior_ptid.pid ();
c8e38a49
PA
7492 if (*p == '\0')
7493 ;
7494 else if (*p == ';')
7495 {
7496 p++;
7497
0b24eb2d 7498 if (*p == '\0')
82f73884 7499 ;
61012eef 7500 else if (startswith (p, "process:"))
82f73884 7501 {
c8e38a49 7502 ULONGEST upid;
a744cf53 7503
c8e38a49
PA
7504 p += sizeof ("process:") - 1;
7505 unpack_varlen_hex (p, &upid);
7506 pid = upid;
82f73884
PA
7507 }
7508 else
7509 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7510 }
c8e38a49
PA
7511 else
7512 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7513 event->ptid = ptid_t (pid);
74531fed
PA
7514 }
7515 break;
f2faf941
PA
7516 case 'N':
7517 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7518 event->ptid = minus_one_ptid;
7519 break;
74531fed
PA
7520 }
7521
d7e15655 7522 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7523 error (_("No process or thread specified in stop reply: %s"), buf);
7524}
7525
722247f1
YQ
7526/* When the stub wants to tell GDB about a new notification reply, it
7527 sends a notification (%Stop, for example). Those can come it at
7528 any time, hence, we have to make sure that any pending
7529 putpkt/getpkt sequence we're making is finished, before querying
7530 the stub for more events with the corresponding ack command
7531 (vStopped, for example). E.g., if we started a vStopped sequence
7532 immediately upon receiving the notification, something like this
7533 could happen:
74531fed
PA
7534
7535 1.1) --> Hg 1
7536 1.2) <-- OK
7537 1.3) --> g
7538 1.4) <-- %Stop
7539 1.5) --> vStopped
7540 1.6) <-- (registers reply to step #1.3)
7541
7542 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7543 query.
7544
796cb314 7545 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7546 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7547 doing whatever we were doing:
7548
7549 2.1) --> Hg 1
7550 2.2) <-- OK
7551 2.3) --> g
7552 2.4) <-- %Stop
7553 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7554 2.5) <-- (registers reply to step #2.3)
7555
7556 Eventualy after step #2.5, we return to the event loop, which
7557 notices there's an event on the
7558 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7559 associated callback --- the function below. At this point, we're
7560 always safe to start a vStopped sequence. :
7561
7562 2.6) --> vStopped
7563 2.7) <-- T05 thread:2
7564 2.8) --> vStopped
7565 2.9) --> OK
7566*/
7567
722247f1 7568void
6b8edb51 7569remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7570{
7571 struct remote_state *rs = get_remote_state ();
74531fed 7572
f48ff2a7 7573 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7574 {
722247f1
YQ
7575 if (notif_debug)
7576 fprintf_unfiltered (gdb_stdlog,
7577 "notif: process: '%s' ack pending event\n",
7578 nc->name);
74531fed 7579
722247f1 7580 /* acknowledge */
8d64371b
TT
7581 nc->ack (this, nc, rs->buf.data (),
7582 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7583 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7584
7585 while (1)
7586 {
8d64371b
TT
7587 getpkt (&rs->buf, 0);
7588 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7589 break;
7590 else
8d64371b 7591 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7592 }
7593 }
722247f1
YQ
7594 else
7595 {
7596 if (notif_debug)
7597 fprintf_unfiltered (gdb_stdlog,
7598 "notif: process: '%s' no pending reply\n",
7599 nc->name);
7600 }
74531fed
PA
7601}
7602
6b8edb51
PA
7603/* Wrapper around remote_target::remote_notif_get_pending_events to
7604 avoid having to export the whole remote_target class. */
7605
7606void
7607remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7608{
7609 remote->remote_notif_get_pending_events (nc);
7610}
7611
74531fed
PA
7612/* Called when it is decided that STOP_REPLY holds the info of the
7613 event that is to be returned to the core. This function always
7614 destroys STOP_REPLY. */
7615
6b8edb51
PA
7616ptid_t
7617remote_target::process_stop_reply (struct stop_reply *stop_reply,
7618 struct target_waitstatus *status)
74531fed
PA
7619{
7620 ptid_t ptid;
7621
7622 *status = stop_reply->ws;
7623 ptid = stop_reply->ptid;
7624
7625 /* If no thread/process was reported by the stub, assume the current
7626 inferior. */
d7e15655 7627 if (ptid == null_ptid)
74531fed
PA
7628 ptid = inferior_ptid;
7629
5f3563ea 7630 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7631 && status->kind != TARGET_WAITKIND_SIGNALLED
7632 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7633 {
5f3563ea 7634 /* Expedited registers. */
32603266 7635 if (!stop_reply->regcache.empty ())
5f3563ea 7636 {
217f1f79 7637 struct regcache *regcache
5cd63fda 7638 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea 7639
32603266
TT
7640 for (cached_reg_t &reg : stop_reply->regcache)
7641 {
7642 regcache->raw_supply (reg.num, reg.data);
7643 xfree (reg.data);
7644 }
d1dff226 7645
32603266 7646 stop_reply->regcache.clear ();
5f3563ea 7647 }
74531fed 7648
1941c569 7649 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7650 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7651 remote_thr->core = stop_reply->core;
7652 remote_thr->stop_reason = stop_reply->stop_reason;
7653 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7654 remote_thr->vcont_resumed = 0;
74531fed
PA
7655 }
7656
32603266 7657 delete stop_reply;
74531fed
PA
7658 return ptid;
7659}
7660
7661/* The non-stop mode version of target_wait. */
7662
6b8edb51
PA
7663ptid_t
7664remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7665{
7666 struct remote_state *rs = get_remote_state ();
74531fed
PA
7667 struct stop_reply *stop_reply;
7668 int ret;
fee9eda9 7669 int is_notif = 0;
74531fed
PA
7670
7671 /* If in non-stop mode, get out of getpkt even if a
7672 notification is received. */
7673
8d64371b 7674 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7675 while (1)
7676 {
fee9eda9 7677 if (ret != -1 && !is_notif)
74531fed
PA
7678 switch (rs->buf[0])
7679 {
7680 case 'E': /* Error of some sort. */
7681 /* We're out of sync with the target now. Did it continue
7682 or not? We can't tell which thread it was in non-stop,
7683 so just ignore this. */
8d64371b 7684 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7685 break;
7686 case 'O': /* Console output. */
8d64371b 7687 remote_console_output (&rs->buf[1]);
74531fed
PA
7688 break;
7689 default:
8d64371b 7690 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7691 break;
7692 }
7693
7694 /* Acknowledge a pending stop reply that may have arrived in the
7695 mean time. */
f48ff2a7 7696 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7697 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7698
7699 /* If indeed we noticed a stop reply, we're done. */
7700 stop_reply = queued_stop_reply (ptid);
7701 if (stop_reply != NULL)
7702 return process_stop_reply (stop_reply, status);
7703
47608cb1 7704 /* Still no event. If we're just polling for an event, then
74531fed 7705 return to the event loop. */
47608cb1 7706 if (options & TARGET_WNOHANG)
74531fed
PA
7707 {
7708 status->kind = TARGET_WAITKIND_IGNORE;
7709 return minus_one_ptid;
7710 }
7711
47608cb1 7712 /* Otherwise do a blocking wait. */
8d64371b 7713 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7714 }
7715}
7716
7717/* Wait until the remote machine stops, then return, storing status in
7718 STATUS just as `wait' would. */
7719
6b8edb51
PA
7720ptid_t
7721remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7722{
7723 struct remote_state *rs = get_remote_state ();
74531fed 7724 ptid_t event_ptid = null_ptid;
cea39f65 7725 char *buf;
74531fed
PA
7726 struct stop_reply *stop_reply;
7727
47608cb1
PA
7728 again:
7729
74531fed
PA
7730 status->kind = TARGET_WAITKIND_IGNORE;
7731 status->value.integer = 0;
7732
7733 stop_reply = queued_stop_reply (ptid);
7734 if (stop_reply != NULL)
7735 return process_stop_reply (stop_reply, status);
7736
7737 if (rs->cached_wait_status)
7738 /* Use the cached wait status, but only once. */
7739 rs->cached_wait_status = 0;
7740 else
7741 {
7742 int ret;
722247f1 7743 int is_notif;
567420d1 7744 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7745 && rs->wait_forever_enabled_p);
567420d1
PA
7746
7747 if (!rs->waiting_for_stop_reply)
7748 {
7749 status->kind = TARGET_WAITKIND_NO_RESUMED;
7750 return minus_one_ptid;
7751 }
74531fed 7752
74531fed
PA
7753 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7754 _never_ wait for ever -> test on target_is_async_p().
7755 However, before we do that we need to ensure that the caller
7756 knows how to take the target into/out of async mode. */
8d64371b 7757 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7758
7759 /* GDB gets a notification. Return to core as this event is
7760 not interesting. */
7761 if (ret != -1 && is_notif)
7762 return minus_one_ptid;
567420d1
PA
7763
7764 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7765 return minus_one_ptid;
74531fed
PA
7766 }
7767
8d64371b 7768 buf = rs->buf.data ();
74531fed 7769
3a29589a
DJ
7770 /* Assume that the target has acknowledged Ctrl-C unless we receive
7771 an 'F' or 'O' packet. */
7772 if (buf[0] != 'F' && buf[0] != 'O')
7773 rs->ctrlc_pending_p = 0;
7774
74531fed
PA
7775 switch (buf[0])
7776 {
7777 case 'E': /* Error of some sort. */
7778 /* We're out of sync with the target now. Did it continue or
7779 not? Not is more likely, so report a stop. */
29090fb6
LM
7780 rs->waiting_for_stop_reply = 0;
7781
74531fed
PA
7782 warning (_("Remote failure reply: %s"), buf);
7783 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7784 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7785 break;
7786 case 'F': /* File-I/O request. */
e42e5352
YQ
7787 /* GDB may access the inferior memory while handling the File-I/O
7788 request, but we don't want GDB accessing memory while waiting
7789 for a stop reply. See the comments in putpkt_binary. Set
7790 waiting_for_stop_reply to 0 temporarily. */
7791 rs->waiting_for_stop_reply = 0;
6b8edb51 7792 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7793 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7794 /* GDB handled the File-I/O request, and the target is running
7795 again. Keep waiting for events. */
7796 rs->waiting_for_stop_reply = 1;
74531fed 7797 break;
f2faf941 7798 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7799 {
29090fb6
LM
7800 /* There is a stop reply to handle. */
7801 rs->waiting_for_stop_reply = 0;
7802
7803 stop_reply
6b8edb51
PA
7804 = (struct stop_reply *) remote_notif_parse (this,
7805 &notif_client_stop,
8d64371b 7806 rs->buf.data ());
74531fed 7807
74531fed 7808 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7809 break;
7810 }
7811 case 'O': /* Console output. */
7812 remote_console_output (buf + 1);
c8e38a49
PA
7813 break;
7814 case '\0':
b73be471 7815 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7816 {
7817 /* Zero length reply means that we tried 'S' or 'C' and the
7818 remote system doesn't support it. */
223ffa71 7819 target_terminal::ours_for_output ();
c8e38a49
PA
7820 printf_filtered
7821 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7822 gdb_signal_to_name (rs->last_sent_signal));
7823 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7824 target_terminal::inferior ();
c8e38a49 7825
f5c4fcd9
TT
7826 strcpy (buf, rs->last_sent_step ? "s" : "c");
7827 putpkt (buf);
c8e38a49 7828 break;
43ff13b4 7829 }
86a73007 7830 /* fallthrough */
c8e38a49
PA
7831 default:
7832 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7833 break;
43ff13b4 7834 }
c8e38a49 7835
f2faf941
PA
7836 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7837 return minus_one_ptid;
7838 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7839 {
7840 /* Nothing interesting happened. If we're doing a non-blocking
7841 poll, we're done. Otherwise, go back to waiting. */
7842 if (options & TARGET_WNOHANG)
7843 return minus_one_ptid;
7844 else
7845 goto again;
7846 }
74531fed
PA
7847 else if (status->kind != TARGET_WAITKIND_EXITED
7848 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7849 {
d7e15655 7850 if (event_ptid != null_ptid)
47f8a51d 7851 record_currthread (rs, event_ptid);
82f73884
PA
7852 else
7853 event_ptid = inferior_ptid;
43ff13b4 7854 }
74531fed
PA
7855 else
7856 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7857 record_currthread (rs, minus_one_ptid);
79d7f229 7858
82f73884 7859 return event_ptid;
43ff13b4
JM
7860}
7861
74531fed
PA
7862/* Wait until the remote machine stops, then return, storing status in
7863 STATUS just as `wait' would. */
7864
f6ac5f3d
PA
7865ptid_t
7866remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7867{
7868 ptid_t event_ptid;
7869
6efcd9a8 7870 if (target_is_non_stop_p ())
6b8edb51 7871 event_ptid = wait_ns (ptid, status, options);
74531fed 7872 else
6b8edb51 7873 event_ptid = wait_as (ptid, status, options);
c8e38a49 7874
d9d41e78 7875 if (target_is_async_p ())
c8e38a49 7876 {
6b8edb51
PA
7877 remote_state *rs = get_remote_state ();
7878
74531fed
PA
7879 /* If there are are events left in the queue tell the event loop
7880 to return here. */
953edf2b 7881 if (!rs->stop_reply_queue.empty ())
6b8edb51 7882 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7883 }
c8e38a49
PA
7884
7885 return event_ptid;
7886}
7887
74ca34ce 7888/* Fetch a single register using a 'p' packet. */
c906108c 7889
6b8edb51
PA
7890int
7891remote_target::fetch_register_using_p (struct regcache *regcache,
7892 packet_reg *reg)
b96ec7ac 7893{
ac7936df 7894 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7895 struct remote_state *rs = get_remote_state ();
2e9f7625 7896 char *buf, *p;
9890e433 7897 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7898 int i;
7899
4082afcc 7900 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7901 return 0;
7902
7903 if (reg->pnum == -1)
7904 return 0;
7905
8d64371b 7906 p = rs->buf.data ();
fcad0fa4 7907 *p++ = 'p';
74ca34ce 7908 p += hexnumstr (p, reg->pnum);
fcad0fa4 7909 *p++ = '\0';
1f4437a4 7910 putpkt (rs->buf);
8d64371b 7911 getpkt (&rs->buf, 0);
3f9a994c 7912
8d64371b 7913 buf = rs->buf.data ();
2e9f7625 7914
8d64371b 7915 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7916 {
7917 case PACKET_OK:
7918 break;
7919 case PACKET_UNKNOWN:
7920 return 0;
7921 case PACKET_ERROR:
27a9c0bf 7922 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7923 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7924 reg->regnum),
7925 buf);
74ca34ce 7926 }
3f9a994c
JB
7927
7928 /* If this register is unfetchable, tell the regcache. */
7929 if (buf[0] == 'x')
8480adf2 7930 {
73e1c03f 7931 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7932 return 1;
b96ec7ac 7933 }
b96ec7ac 7934
3f9a994c
JB
7935 /* Otherwise, parse and supply the value. */
7936 p = buf;
7937 i = 0;
7938 while (p[0] != 0)
7939 {
7940 if (p[1] == 0)
74ca34ce 7941 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7942
7943 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7944 p += 2;
7945 }
73e1c03f 7946 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7947 return 1;
b96ec7ac
AC
7948}
7949
74ca34ce
DJ
7950/* Fetch the registers included in the target's 'g' packet. */
7951
6b8edb51
PA
7952int
7953remote_target::send_g_packet ()
c906108c 7954{
d01949b6 7955 struct remote_state *rs = get_remote_state ();
cea39f65 7956 int buf_len;
c906108c 7957
8d64371b 7958 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7959 putpkt (rs->buf);
8d64371b 7960 getpkt (&rs->buf, 0);
b75abf5b
AK
7961 if (packet_check_result (rs->buf) == PACKET_ERROR)
7962 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 7963 rs->buf.data ());
c906108c 7964
29709017
DJ
7965 /* We can get out of synch in various cases. If the first character
7966 in the buffer is not a hex character, assume that has happened
7967 and try to fetch another packet to read. */
7968 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7969 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7970 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7971 && rs->buf[0] != 'x') /* New: unavailable register value. */
7972 {
7973 if (remote_debug)
7974 fprintf_unfiltered (gdb_stdlog,
7975 "Bad register packet; fetching a new packet\n");
8d64371b 7976 getpkt (&rs->buf, 0);
29709017
DJ
7977 }
7978
8d64371b 7979 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
7980
7981 /* Sanity check the received packet. */
7982 if (buf_len % 2 != 0)
8d64371b 7983 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
7984
7985 return buf_len / 2;
7986}
7987
6b8edb51
PA
7988void
7989remote_target::process_g_packet (struct regcache *regcache)
29709017 7990{
ac7936df 7991 struct gdbarch *gdbarch = regcache->arch ();
29709017 7992 struct remote_state *rs = get_remote_state ();
9d6eea31 7993 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
7994 int i, buf_len;
7995 char *p;
7996 char *regs;
7997
8d64371b 7998 buf_len = strlen (rs->buf.data ());
29709017
DJ
7999
8000 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8001 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8002 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8003 "bytes): %s"),
8004 rsa->sizeof_g_packet, buf_len / 2,
8005 rs->buf.data ());
74ca34ce
DJ
8006
8007 /* Save the size of the packet sent to us by the target. It is used
8008 as a heuristic when determining the max size of packets that the
8009 target can safely receive. */
8010 if (rsa->actual_register_packet_size == 0)
8011 rsa->actual_register_packet_size = buf_len;
8012
8013 /* If this is smaller than we guessed the 'g' packet would be,
8014 update our records. A 'g' reply that doesn't include a register's
8015 value implies either that the register is not available, or that
8016 the 'p' packet must be used. */
8017 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8018 {
9dc193c3 8019 long sizeof_g_packet = buf_len / 2;
74ca34ce 8020
4a22f64d 8021 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8022 {
9dc193c3
LF
8023 long offset = rsa->regs[i].offset;
8024 long reg_size = register_size (gdbarch, i);
8025
74ca34ce
DJ
8026 if (rsa->regs[i].pnum == -1)
8027 continue;
8028
9dc193c3 8029 if (offset >= sizeof_g_packet)
74ca34ce 8030 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8031 else if (offset + reg_size > sizeof_g_packet)
8032 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8033 else
74ca34ce 8034 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8035 }
9dc193c3
LF
8036
8037 /* Looks valid enough, we can assume this is the correct length
8038 for a 'g' packet. It's important not to adjust
8039 rsa->sizeof_g_packet if we have truncated registers otherwise
8040 this "if" won't be run the next time the method is called
8041 with a packet of the same size and one of the internal errors
8042 below will trigger instead. */
8043 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8044 }
b323314b 8045
224c3ddb 8046 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8047
8048 /* Unimplemented registers read as all bits zero. */
ea9c271d 8049 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8050
c906108c
SS
8051 /* Reply describes registers byte by byte, each byte encoded as two
8052 hex characters. Suck them all up, then supply them to the
8053 register cacheing/storage mechanism. */
8054
8d64371b 8055 p = rs->buf.data ();
ea9c271d 8056 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8057 {
74ca34ce
DJ
8058 if (p[0] == 0 || p[1] == 0)
8059 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8060 internal_error (__FILE__, __LINE__,
9b20d036 8061 _("unexpected end of 'g' packet reply"));
74ca34ce 8062
c906108c 8063 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8064 regs[i] = 0; /* 'x' */
c906108c
SS
8065 else
8066 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8067 p += 2;
8068 }
8069
a744cf53
MS
8070 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8071 {
8072 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8073 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8074
8075 if (r->in_g_packet)
8076 {
8d64371b 8077 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8078 /* This shouldn't happen - we adjusted in_g_packet above. */
8079 internal_error (__FILE__, __LINE__,
9b20d036 8080 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8081 else if (rs->buf[r->offset * 2] == 'x')
8082 {
8d64371b 8083 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8084 /* The register isn't available, mark it as such (at
8085 the same time setting the value to zero). */
73e1c03f 8086 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8087 }
8088 else
73e1c03f 8089 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8090 }
8091 }
c906108c
SS
8092}
8093
6b8edb51
PA
8094void
8095remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8096{
8097 send_g_packet ();
56be3814 8098 process_g_packet (regcache);
29709017
DJ
8099}
8100
e6e4e701
PA
8101/* Make the remote selected traceframe match GDB's selected
8102 traceframe. */
8103
6b8edb51
PA
8104void
8105remote_target::set_remote_traceframe ()
e6e4e701
PA
8106{
8107 int newnum;
262e1174 8108 struct remote_state *rs = get_remote_state ();
e6e4e701 8109
262e1174 8110 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8111 return;
8112
8113 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8114 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8115
8116 newnum = target_trace_find (tfind_number,
8117 get_traceframe_number (), 0, 0, NULL);
8118
8119 /* Should not happen. If it does, all bets are off. */
8120 if (newnum != get_traceframe_number ())
8121 warning (_("could not set remote traceframe"));
8122}
8123
f6ac5f3d
PA
8124void
8125remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8126{
ac7936df 8127 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8128 struct remote_state *rs = get_remote_state ();
8129 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8130 int i;
8131
e6e4e701 8132 set_remote_traceframe ();
222312d3 8133 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8134
8135 if (regnum >= 0)
8136 {
5cd63fda 8137 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8138
74ca34ce
DJ
8139 gdb_assert (reg != NULL);
8140
8141 /* If this register might be in the 'g' packet, try that first -
8142 we are likely to read more than one register. If this is the
8143 first 'g' packet, we might be overly optimistic about its
8144 contents, so fall back to 'p'. */
8145 if (reg->in_g_packet)
8146 {
56be3814 8147 fetch_registers_using_g (regcache);
74ca34ce
DJ
8148 if (reg->in_g_packet)
8149 return;
8150 }
8151
56be3814 8152 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8153 return;
8154
8155 /* This register is not available. */
73e1c03f 8156 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8157
8158 return;
8159 }
8160
56be3814 8161 fetch_registers_using_g (regcache);
74ca34ce 8162
5cd63fda 8163 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8164 if (!rsa->regs[i].in_g_packet)
56be3814 8165 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8166 {
8167 /* This register is not available. */
73e1c03f 8168 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8169 }
8170}
8171
c906108c
SS
8172/* Prepare to store registers. Since we may send them all (using a
8173 'G' request), we have to read out the ones we don't want to change
8174 first. */
8175
f6ac5f3d
PA
8176void
8177remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8178{
9d6eea31
PA
8179 struct remote_state *rs = get_remote_state ();
8180 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8181 int i;
cf0e1e0d 8182
c906108c 8183 /* Make sure the entire registers array is valid. */
4082afcc 8184 switch (packet_support (PACKET_P))
5a2468f5
JM
8185 {
8186 case PACKET_DISABLE:
8187 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8188 /* Make sure all the necessary registers are cached. */
ac7936df 8189 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8190 if (rsa->regs[i].in_g_packet)
0b47d985 8191 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8192 break;
8193 case PACKET_ENABLE:
8194 break;
8195 }
8196}
8197
ad10f812 8198/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8199 packet was not recognized. */
5a2468f5 8200
6b8edb51
PA
8201int
8202remote_target::store_register_using_P (const struct regcache *regcache,
8203 packet_reg *reg)
5a2468f5 8204{
ac7936df 8205 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8206 struct remote_state *rs = get_remote_state ();
5a2468f5 8207 /* Try storing a single register. */
8d64371b 8208 char *buf = rs->buf.data ();
9890e433 8209 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8210 char *p;
5a2468f5 8211
4082afcc 8212 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8213 return 0;
8214
8215 if (reg->pnum == -1)
8216 return 0;
8217
ea9c271d 8218 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8219 p = buf + strlen (buf);
34a79281 8220 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8221 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8222 putpkt (rs->buf);
8d64371b 8223 getpkt (&rs->buf, 0);
5a2468f5 8224
74ca34ce
DJ
8225 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8226 {
8227 case PACKET_OK:
8228 return 1;
8229 case PACKET_ERROR:
27a9c0bf 8230 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8231 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8232 case PACKET_UNKNOWN:
8233 return 0;
8234 default:
8235 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8236 }
c906108c
SS
8237}
8238
23860348
MS
8239/* Store register REGNUM, or all registers if REGNUM == -1, from the
8240 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8241
6b8edb51
PA
8242void
8243remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8244{
d01949b6 8245 struct remote_state *rs = get_remote_state ();
9d6eea31 8246 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8247 gdb_byte *regs;
c906108c
SS
8248 char *p;
8249
193cb69f
AC
8250 /* Extract all the registers in the regcache copying them into a
8251 local buffer. */
8252 {
b323314b 8253 int i;
a744cf53 8254
224c3ddb 8255 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8256 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8257 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8258 {
ea9c271d 8259 struct packet_reg *r = &rsa->regs[i];
a744cf53 8260
b323314b 8261 if (r->in_g_packet)
34a79281 8262 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8263 }
8264 }
c906108c
SS
8265
8266 /* Command describes registers byte by byte,
8267 each byte encoded as two hex characters. */
8d64371b 8268 p = rs->buf.data ();
193cb69f 8269 *p++ = 'G';
74ca34ce 8270 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8271 putpkt (rs->buf);
8d64371b 8272 getpkt (&rs->buf, 0);
1f4437a4 8273 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8274 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8275 rs->buf.data ());
c906108c 8276}
74ca34ce
DJ
8277
8278/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8279 of the register cache buffer. FIXME: ignores errors. */
8280
f6ac5f3d
PA
8281void
8282remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8283{
5cd63fda 8284 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8285 struct remote_state *rs = get_remote_state ();
8286 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8287 int i;
8288
e6e4e701 8289 set_remote_traceframe ();
222312d3 8290 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8291
8292 if (regnum >= 0)
8293 {
5cd63fda 8294 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8295
74ca34ce
DJ
8296 gdb_assert (reg != NULL);
8297
8298 /* Always prefer to store registers using the 'P' packet if
8299 possible; we often change only a small number of registers.
8300 Sometimes we change a larger number; we'd need help from a
8301 higher layer to know to use 'G'. */
56be3814 8302 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8303 return;
8304
8305 /* For now, don't complain if we have no way to write the
8306 register. GDB loses track of unavailable registers too
8307 easily. Some day, this may be an error. We don't have
0df8b418 8308 any way to read the register, either... */
74ca34ce
DJ
8309 if (!reg->in_g_packet)
8310 return;
8311
56be3814 8312 store_registers_using_G (regcache);
74ca34ce
DJ
8313 return;
8314 }
8315
56be3814 8316 store_registers_using_G (regcache);
74ca34ce 8317
5cd63fda 8318 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8319 if (!rsa->regs[i].in_g_packet)
56be3814 8320 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8321 /* See above for why we do not issue an error here. */
8322 continue;
8323}
c906108c
SS
8324\f
8325
8326/* Return the number of hex digits in num. */
8327
8328static int
fba45db2 8329hexnumlen (ULONGEST num)
c906108c
SS
8330{
8331 int i;
8332
8333 for (i = 0; num != 0; i++)
8334 num >>= 4;
8335
325fac50 8336 return std::max (i, 1);
c906108c
SS
8337}
8338
2df3850c 8339/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8340
8341static int
fba45db2 8342hexnumstr (char *buf, ULONGEST num)
c906108c 8343{
c906108c 8344 int len = hexnumlen (num);
a744cf53 8345
2df3850c
JM
8346 return hexnumnstr (buf, num, len);
8347}
8348
c906108c 8349
2df3850c 8350/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8351
2df3850c 8352static int
fba45db2 8353hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8354{
8355 int i;
8356
8357 buf[width] = '\0';
8358
8359 for (i = width - 1; i >= 0; i--)
c906108c 8360 {
c5aa993b 8361 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8362 num >>= 4;
8363 }
8364
2df3850c 8365 return width;
c906108c
SS
8366}
8367
23860348 8368/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8369
8370static CORE_ADDR
fba45db2 8371remote_address_masked (CORE_ADDR addr)
c906108c 8372{
883b9c6c 8373 unsigned int address_size = remote_address_size;
a744cf53 8374
911c95a5
UW
8375 /* If "remoteaddresssize" was not set, default to target address size. */
8376 if (!address_size)
f5656ead 8377 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8378
8379 if (address_size > 0
8380 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8381 {
8382 /* Only create a mask when that mask can safely be constructed
23860348 8383 in a ULONGEST variable. */
c906108c 8384 ULONGEST mask = 1;
a744cf53 8385
911c95a5 8386 mask = (mask << address_size) - 1;
c906108c
SS
8387 addr &= mask;
8388 }
8389 return addr;
8390}
8391
8392/* Determine whether the remote target supports binary downloading.
8393 This is accomplished by sending a no-op memory write of zero length
8394 to the target at the specified address. It does not suffice to send
23860348
MS
8395 the whole packet, since many stubs strip the eighth bit and
8396 subsequently compute a wrong checksum, which causes real havoc with
8397 remote_write_bytes.
7a292a7a 8398
96baa820 8399 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8400 clean. In cases like this, the user should clear "remote
23860348 8401 X-packet". */
96baa820 8402
6b8edb51
PA
8403void
8404remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8405{
d01949b6 8406 struct remote_state *rs = get_remote_state ();
24b06219 8407
4082afcc 8408 switch (packet_support (PACKET_X))
c906108c 8409 {
96baa820
JM
8410 case PACKET_DISABLE:
8411 break;
8412 case PACKET_ENABLE:
8413 break;
8414 case PACKET_SUPPORT_UNKNOWN:
8415 {
96baa820 8416 char *p;
802188a7 8417
8d64371b 8418 p = rs->buf.data ();
96baa820
JM
8419 *p++ = 'X';
8420 p += hexnumstr (p, (ULONGEST) addr);
8421 *p++ = ',';
8422 p += hexnumstr (p, (ULONGEST) 0);
8423 *p++ = ':';
8424 *p = '\0';
802188a7 8425
8d64371b
TT
8426 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8427 getpkt (&rs->buf, 0);
c906108c 8428
2e9f7625 8429 if (rs->buf[0] == '\0')
96baa820
JM
8430 {
8431 if (remote_debug)
8432 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8433 "binary downloading NOT "
8434 "supported by target\n");
444abaca 8435 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8436 }
8437 else
8438 {
8439 if (remote_debug)
8440 fprintf_unfiltered (gdb_stdlog,
64b9b334 8441 "binary downloading supported by target\n");
444abaca 8442 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8443 }
8444 break;
8445 }
c906108c
SS
8446 }
8447}
8448
124e13d9
SM
8449/* Helper function to resize the payload in order to try to get a good
8450 alignment. We try to write an amount of data such that the next write will
8451 start on an address aligned on REMOTE_ALIGN_WRITES. */
8452
8453static int
8454align_for_efficient_write (int todo, CORE_ADDR memaddr)
8455{
8456 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8457}
8458
c906108c
SS
8459/* Write memory data directly to the remote machine.
8460 This does not inform the data cache; the data cache uses this.
a76d924d 8461 HEADER is the starting part of the packet.
c906108c
SS
8462 MEMADDR is the address in the remote memory space.
8463 MYADDR is the address of the buffer in our space.
124e13d9
SM
8464 LEN_UNITS is the number of addressable units to write.
8465 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8466 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8467 should send data as binary ('X'), or hex-encoded ('M').
8468
8469 The function creates packet of the form
8470 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8471
124e13d9 8472 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8473
8474 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8475 are omitted.
8476
9b409511 8477 Return the transferred status, error or OK (an
124e13d9
SM
8478 'enum target_xfer_status' value). Save the number of addressable units
8479 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8480
8481 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8482 exchange between gdb and the stub could look like (?? in place of the
8483 checksum):
8484
8485 -> $m1000,4#??
8486 <- aaaabbbbccccdddd
8487
8488 -> $M1000,3:eeeeffffeeee#??
8489 <- OK
8490
8491 -> $m1000,4#??
8492 <- eeeeffffeeeedddd */
c906108c 8493
6b8edb51
PA
8494target_xfer_status
8495remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8496 const gdb_byte *myaddr,
8497 ULONGEST len_units,
8498 int unit_size,
8499 ULONGEST *xfered_len_units,
8500 char packet_format, int use_length)
c906108c 8501{
6d820c5c 8502 struct remote_state *rs = get_remote_state ();
cfd77fa1 8503 char *p;
a76d924d
DJ
8504 char *plen = NULL;
8505 int plenlen = 0;
124e13d9
SM
8506 int todo_units;
8507 int units_written;
8508 int payload_capacity_bytes;
8509 int payload_length_bytes;
a76d924d
DJ
8510
8511 if (packet_format != 'X' && packet_format != 'M')
8512 internal_error (__FILE__, __LINE__,
9b20d036 8513 _("remote_write_bytes_aux: bad packet format"));
c906108c 8514
124e13d9 8515 if (len_units == 0)
9b409511 8516 return TARGET_XFER_EOF;
b2182ed2 8517
124e13d9 8518 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8519
6d820c5c
DJ
8520 /* The packet buffer will be large enough for the payload;
8521 get_memory_packet_size ensures this. */
a76d924d 8522 rs->buf[0] = '\0';
c906108c 8523
a257b5bb 8524 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8525 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8526
124e13d9 8527 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8528 if (!use_length)
0df8b418 8529 /* The comma won't be used. */
124e13d9
SM
8530 payload_capacity_bytes += 1;
8531 payload_capacity_bytes -= strlen (header);
8532 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8533
a76d924d 8534 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8535
8d64371b
TT
8536 strcat (rs->buf.data (), header);
8537 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8538
8539 /* Compute a best guess of the number of bytes actually transfered. */
8540 if (packet_format == 'X')
c906108c 8541 {
23860348 8542 /* Best guess at number of bytes that will fit. */
325fac50
PA
8543 todo_units = std::min (len_units,
8544 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8545 if (use_length)
124e13d9 8546 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8547 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8548 }
8549 else
8550 {
124e13d9 8551 /* Number of bytes that will fit. */
325fac50
PA
8552 todo_units
8553 = std::min (len_units,
8554 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8555 if (use_length)
124e13d9 8556 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8557 todo_units = std::min (todo_units,
8558 (payload_capacity_bytes / unit_size) / 2);
917317f4 8559 }
a76d924d 8560
124e13d9 8561 if (todo_units <= 0)
3de11b2e 8562 internal_error (__FILE__, __LINE__,
405f8e94 8563 _("minimum packet size too small to write data"));
802188a7 8564
6765f3e5
DJ
8565 /* If we already need another packet, then try to align the end
8566 of this packet to a useful boundary. */
124e13d9
SM
8567 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8568 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8569
a257b5bb 8570 /* Append "<memaddr>". */
917317f4
JM
8571 memaddr = remote_address_masked (memaddr);
8572 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8573
a76d924d
DJ
8574 if (use_length)
8575 {
8576 /* Append ",". */
8577 *p++ = ',';
802188a7 8578
124e13d9
SM
8579 /* Append the length and retain its location and size. It may need to be
8580 adjusted once the packet body has been created. */
a76d924d 8581 plen = p;
124e13d9 8582 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8583 p += plenlen;
8584 }
a257b5bb
AC
8585
8586 /* Append ":". */
917317f4
JM
8587 *p++ = ':';
8588 *p = '\0';
802188a7 8589
a257b5bb 8590 /* Append the packet body. */
a76d924d 8591 if (packet_format == 'X')
917317f4 8592 {
917317f4
JM
8593 /* Binary mode. Send target system values byte by byte, in
8594 increasing byte addresses. Only escape certain critical
8595 characters. */
124e13d9
SM
8596 payload_length_bytes =
8597 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8598 &units_written, payload_capacity_bytes);
6765f3e5 8599
124e13d9 8600 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8601 a second try to keep the end of the packet aligned. Don't do
8602 this if the packet is tiny. */
124e13d9 8603 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8604 {
124e13d9
SM
8605 int new_todo_units;
8606
8607 new_todo_units = align_for_efficient_write (units_written, memaddr);
8608
8609 if (new_todo_units != units_written)
8610 payload_length_bytes =
8611 remote_escape_output (myaddr, new_todo_units, unit_size,
8612 (gdb_byte *) p, &units_written,
8613 payload_capacity_bytes);
6765f3e5
DJ
8614 }
8615
124e13d9
SM
8616 p += payload_length_bytes;
8617 if (use_length && units_written < todo_units)
c906108c 8618 {
802188a7 8619 /* Escape chars have filled up the buffer prematurely,
124e13d9 8620 and we have actually sent fewer units than planned.
917317f4
JM
8621 Fix-up the length field of the packet. Use the same
8622 number of characters as before. */
124e13d9
SM
8623 plen += hexnumnstr (plen, (ULONGEST) units_written,
8624 plenlen);
917317f4 8625 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8626 }
a76d924d
DJ
8627 }
8628 else
8629 {
917317f4
JM
8630 /* Normal mode: Send target system values byte by byte, in
8631 increasing byte addresses. Each byte is encoded as a two hex
8632 value. */
124e13d9
SM
8633 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8634 units_written = todo_units;
c906108c 8635 }
802188a7 8636
8d64371b
TT
8637 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8638 getpkt (&rs->buf, 0);
802188a7 8639
2e9f7625 8640 if (rs->buf[0] == 'E')
00d84524 8641 return TARGET_XFER_E_IO;
802188a7 8642
124e13d9
SM
8643 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8644 send fewer units than we'd planned. */
8645 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8646 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8647}
8648
a76d924d
DJ
8649/* Write memory data directly to the remote machine.
8650 This does not inform the data cache; the data cache uses this.
8651 MEMADDR is the address in the remote memory space.
8652 MYADDR is the address of the buffer in our space.
8653 LEN is the number of bytes.
8654
9b409511
YQ
8655 Return the transferred status, error or OK (an
8656 'enum target_xfer_status' value). Save the number of bytes
8657 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8658
6b8edb51
PA
8659target_xfer_status
8660remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8661 ULONGEST len, int unit_size,
8662 ULONGEST *xfered_len)
a76d924d 8663{
a121b7c1 8664 const char *packet_format = NULL;
a76d924d
DJ
8665
8666 /* Check whether the target supports binary download. */
8667 check_binary_download (memaddr);
8668
4082afcc 8669 switch (packet_support (PACKET_X))
a76d924d
DJ
8670 {
8671 case PACKET_ENABLE:
8672 packet_format = "X";
8673 break;
8674 case PACKET_DISABLE:
8675 packet_format = "M";
8676 break;
8677 case PACKET_SUPPORT_UNKNOWN:
8678 internal_error (__FILE__, __LINE__,
8679 _("remote_write_bytes: bad internal state"));
8680 default:
8681 internal_error (__FILE__, __LINE__, _("bad switch"));
8682 }
8683
8684 return remote_write_bytes_aux (packet_format,
124e13d9 8685 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8686 packet_format[0], 1);
a76d924d
DJ
8687}
8688
9217e74e
YQ
8689/* Read memory data directly from the remote machine.
8690 This does not use the data cache; the data cache uses this.
8691 MEMADDR is the address in the remote memory space.
8692 MYADDR is the address of the buffer in our space.
124e13d9
SM
8693 LEN_UNITS is the number of addressable memory units to read..
8694 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8695
8696 Return the transferred status, error or OK (an
8697 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8698 transferred in *XFERED_LEN_UNITS.
8699
8700 See the comment of remote_write_bytes_aux for an example of
8701 memory read/write exchange between gdb and the stub. */
9217e74e 8702
6b8edb51
PA
8703target_xfer_status
8704remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8705 ULONGEST len_units,
8706 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8707{
8708 struct remote_state *rs = get_remote_state ();
124e13d9 8709 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8710 char *p;
124e13d9
SM
8711 int todo_units;
8712 int decoded_bytes;
9217e74e 8713
124e13d9 8714 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8715 /* The packet buffer will be large enough for the payload;
8716 get_memory_packet_size ensures this. */
8717
124e13d9 8718 /* Number of units that will fit. */
325fac50
PA
8719 todo_units = std::min (len_units,
8720 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8721
8722 /* Construct "m"<memaddr>","<len>". */
8723 memaddr = remote_address_masked (memaddr);
8d64371b 8724 p = rs->buf.data ();
9217e74e
YQ
8725 *p++ = 'm';
8726 p += hexnumstr (p, (ULONGEST) memaddr);
8727 *p++ = ',';
124e13d9 8728 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8729 *p = '\0';
8730 putpkt (rs->buf);
8d64371b 8731 getpkt (&rs->buf, 0);
9217e74e
YQ
8732 if (rs->buf[0] == 'E'
8733 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8734 && rs->buf[3] == '\0')
8735 return TARGET_XFER_E_IO;
8736 /* Reply describes memory byte by byte, each byte encoded as two hex
8737 characters. */
8d64371b 8738 p = rs->buf.data ();
124e13d9 8739 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8740 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8741 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8742 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8743}
8744
b55fbac4
YQ
8745/* Using the set of read-only target sections of remote, read live
8746 read-only memory.
8acf9577
YQ
8747
8748 For interface/parameters/return description see target.h,
8749 to_xfer_partial. */
8750
6b8edb51
PA
8751target_xfer_status
8752remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8753 ULONGEST memaddr,
8754 ULONGEST len,
8755 int unit_size,
8756 ULONGEST *xfered_len)
8acf9577
YQ
8757{
8758 struct target_section *secp;
8759 struct target_section_table *table;
8760
6b8edb51 8761 secp = target_section_by_addr (this, memaddr);
8acf9577
YQ
8762 if (secp != NULL
8763 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8764 secp->the_bfd_section)
8765 & SEC_READONLY))
8766 {
8767 struct target_section *p;
8768 ULONGEST memend = memaddr + len;
8769
6b8edb51 8770 table = target_get_section_table (this);
8acf9577
YQ
8771
8772 for (p = table->sections; p < table->sections_end; p++)
8773 {
8774 if (memaddr >= p->addr)
8775 {
8776 if (memend <= p->endaddr)
8777 {
8778 /* Entire transfer is within this section. */
124e13d9 8779 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8780 xfered_len);
8acf9577
YQ
8781 }
8782 else if (memaddr >= p->endaddr)
8783 {
8784 /* This section ends before the transfer starts. */
8785 continue;
8786 }
8787 else
8788 {
8789 /* This section overlaps the transfer. Just do half. */
8790 len = p->endaddr - memaddr;
124e13d9 8791 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8792 xfered_len);
8acf9577
YQ
8793 }
8794 }
8795 }
8796 }
8797
8798 return TARGET_XFER_EOF;
8799}
8800
9217e74e
YQ
8801/* Similar to remote_read_bytes_1, but it reads from the remote stub
8802 first if the requested memory is unavailable in traceframe.
8803 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8804
6b8edb51
PA
8805target_xfer_status
8806remote_target::remote_read_bytes (CORE_ADDR memaddr,
8807 gdb_byte *myaddr, ULONGEST len, int unit_size,
8808 ULONGEST *xfered_len)
c906108c 8809{
6b6aa828 8810 if (len == 0)
96c4f946 8811 return TARGET_XFER_EOF;
b2182ed2 8812
8acf9577
YQ
8813 if (get_traceframe_number () != -1)
8814 {
a79b1bc6 8815 std::vector<mem_range> available;
8acf9577
YQ
8816
8817 /* If we fail to get the set of available memory, then the
8818 target does not support querying traceframe info, and so we
8819 attempt reading from the traceframe anyway (assuming the
8820 target implements the old QTro packet then). */
8821 if (traceframe_available_memory (&available, memaddr, len))
8822 {
a79b1bc6 8823 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8824 {
8825 enum target_xfer_status res;
8826
8827 /* Don't read into the traceframe's available
8828 memory. */
a79b1bc6 8829 if (!available.empty ())
8acf9577
YQ
8830 {
8831 LONGEST oldlen = len;
8832
a79b1bc6 8833 len = available[0].start - memaddr;
8acf9577
YQ
8834 gdb_assert (len <= oldlen);
8835 }
8836
8acf9577 8837 /* This goes through the topmost target again. */
6b8edb51 8838 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8839 len, unit_size, xfered_len);
8acf9577
YQ
8840 if (res == TARGET_XFER_OK)
8841 return TARGET_XFER_OK;
8842 else
8843 {
8844 /* No use trying further, we know some memory starting
8845 at MEMADDR isn't available. */
8846 *xfered_len = len;
92ffd475
PC
8847 return (*xfered_len != 0) ?
8848 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8849 }
8850 }
8851
8852 /* Don't try to read more than how much is available, in
8853 case the target implements the deprecated QTro packet to
8854 cater for older GDBs (the target's knowledge of read-only
8855 sections may be outdated by now). */
a79b1bc6 8856 len = available[0].length;
8acf9577
YQ
8857 }
8858 }
8859
124e13d9 8860 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8861}
74531fed 8862
c906108c 8863\f
c906108c 8864
a76d924d
DJ
8865/* Sends a packet with content determined by the printf format string
8866 FORMAT and the remaining arguments, then gets the reply. Returns
8867 whether the packet was a success, a failure, or unknown. */
8868
6b8edb51
PA
8869packet_result
8870remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8871{
8872 struct remote_state *rs = get_remote_state ();
8873 int max_size = get_remote_packet_size ();
a76d924d 8874 va_list ap;
a744cf53 8875
a76d924d
DJ
8876 va_start (ap, format);
8877
8878 rs->buf[0] = '\0';
8d64371b 8879 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8880
8881 va_end (ap);
8882
8883 if (size >= max_size)
9b20d036 8884 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8885
8886 if (putpkt (rs->buf) < 0)
8887 error (_("Communication problem with target."));
8888
8889 rs->buf[0] = '\0';
8d64371b 8890 getpkt (&rs->buf, 0);
a76d924d
DJ
8891
8892 return packet_check_result (rs->buf);
8893}
8894
a76d924d
DJ
8895/* Flash writing can take quite some time. We'll set
8896 effectively infinite timeout for flash operations.
8897 In future, we'll need to decide on a better approach. */
8898static const int remote_flash_timeout = 1000;
8899
f6ac5f3d
PA
8900void
8901remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8902{
f5656ead 8903 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8904 enum packet_result ret;
2ec845e7
TT
8905 scoped_restore restore_timeout
8906 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8907
8908 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8909 phex (address, addr_size),
a76d924d
DJ
8910 phex (length, 4));
8911 switch (ret)
8912 {
8913 case PACKET_UNKNOWN:
8914 error (_("Remote target does not support flash erase"));
8915 case PACKET_ERROR:
8916 error (_("Error erasing flash with vFlashErase packet"));
8917 default:
8918 break;
8919 }
a76d924d
DJ
8920}
8921
6b8edb51
PA
8922target_xfer_status
8923remote_target::remote_flash_write (ULONGEST address,
8924 ULONGEST length, ULONGEST *xfered_len,
8925 const gdb_byte *data)
a76d924d 8926{
2ec845e7
TT
8927 scoped_restore restore_timeout
8928 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8929 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8930 xfered_len,'X', 0);
a76d924d
DJ
8931}
8932
f6ac5f3d
PA
8933void
8934remote_target::flash_done ()
a76d924d 8935{
a76d924d 8936 int ret;
a76d924d 8937
2ec845e7
TT
8938 scoped_restore restore_timeout
8939 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8940
a76d924d 8941 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8942
8943 switch (ret)
8944 {
8945 case PACKET_UNKNOWN:
8946 error (_("Remote target does not support vFlashDone"));
8947 case PACKET_ERROR:
8948 error (_("Error finishing flash operation"));
8949 default:
8950 break;
8951 }
8952}
8953
f6ac5f3d
PA
8954void
8955remote_target::files_info ()
c906108c
SS
8956{
8957 puts_filtered ("Debugging a target over a serial line.\n");
8958}
8959\f
8960/* Stuff for dealing with the packets which are part of this protocol.
8961 See comment at top of file for details. */
8962
1927e618
PA
8963/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8964 error to higher layers. Called when a serial error is detected.
8965 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8966 the system error message for errno at function entry and final dot
8967 for output compatibility with throw_perror_with_name. */
1927e618
PA
8968
8969static void
8970unpush_and_perror (const char *string)
8971{
d6cb50a2 8972 int saved_errno = errno;
1927e618
PA
8973
8974 remote_unpush_target ();
d6cb50a2
JK
8975 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8976 safe_strerror (saved_errno));
1927e618
PA
8977}
8978
048094ac
PA
8979/* Read a single character from the remote end. The current quit
8980 handler is overridden to avoid quitting in the middle of packet
8981 sequence, as that would break communication with the remote server.
8982 See remote_serial_quit_handler for more detail. */
c906108c 8983
6b8edb51
PA
8984int
8985remote_target::readchar (int timeout)
c906108c
SS
8986{
8987 int ch;
5d93a237 8988 struct remote_state *rs = get_remote_state ();
048094ac 8989
2ec845e7 8990 {
6b8edb51
PA
8991 scoped_restore restore_quit_target
8992 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 8993 scoped_restore restore_quit
6b8edb51 8994 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 8995
2ec845e7 8996 rs->got_ctrlc_during_io = 0;
c906108c 8997
2ec845e7 8998 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8999
2ec845e7
TT
9000 if (rs->got_ctrlc_during_io)
9001 set_quit_flag ();
9002 }
048094ac 9003
2acceee2 9004 if (ch >= 0)
0876f84a 9005 return ch;
2acceee2
JM
9006
9007 switch ((enum serial_rc) ch)
c906108c
SS
9008 {
9009 case SERIAL_EOF:
78a095c3 9010 remote_unpush_target ();
598d3636 9011 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9012 /* no return */
c906108c 9013 case SERIAL_ERROR:
1927e618
PA
9014 unpush_and_perror (_("Remote communication error. "
9015 "Target disconnected."));
2acceee2 9016 /* no return */
c906108c 9017 case SERIAL_TIMEOUT:
2acceee2 9018 break;
c906108c 9019 }
2acceee2 9020 return ch;
c906108c
SS
9021}
9022
c33e31fd 9023/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9024 writing fails. The current quit handler is overridden to avoid
9025 quitting in the middle of packet sequence, as that would break
9026 communication with the remote server. See
9027 remote_serial_quit_handler for more detail. */
c33e31fd 9028
6b8edb51
PA
9029void
9030remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9031{
5d93a237 9032 struct remote_state *rs = get_remote_state ();
048094ac 9033
6b8edb51
PA
9034 scoped_restore restore_quit_target
9035 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9036 scoped_restore restore_quit
6b8edb51 9037 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9038
9039 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9040
9041 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9042 {
1927e618
PA
9043 unpush_and_perror (_("Remote communication error. "
9044 "Target disconnected."));
c33e31fd 9045 }
048094ac
PA
9046
9047 if (rs->got_ctrlc_during_io)
9048 set_quit_flag ();
c33e31fd
PA
9049}
9050
b3ced9ba
PA
9051/* Return a string representing an escaped version of BUF, of len N.
9052 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9053
b3ced9ba 9054static std::string
6e5abd65
PA
9055escape_buffer (const char *buf, int n)
9056{
d7e74731 9057 string_file stb;
6e5abd65 9058
d7e74731
PA
9059 stb.putstrn (buf, n, '\\');
9060 return std::move (stb.string ());
6e5abd65
PA
9061}
9062
c906108c
SS
9063/* Display a null-terminated packet on stdout, for debugging, using C
9064 string notation. */
9065
9066static void
baa336ce 9067print_packet (const char *buf)
c906108c
SS
9068{
9069 puts_filtered ("\"");
43e526b9 9070 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9071 puts_filtered ("\"");
9072}
9073
9074int
6b8edb51 9075remote_target::putpkt (const char *buf)
c906108c
SS
9076{
9077 return putpkt_binary (buf, strlen (buf));
9078}
9079
6b8edb51
PA
9080/* Wrapper around remote_target::putpkt to avoid exporting
9081 remote_target. */
9082
9083int
9084putpkt (remote_target *remote, const char *buf)
9085{
9086 return remote->putpkt (buf);
9087}
9088
c906108c 9089/* Send a packet to the remote machine, with error checking. The data
23860348 9090 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9091 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9092 and for a possible /0 if we are debugging (remote_debug) and want
9093 to print the sent packet as a string. */
c906108c 9094
6b8edb51
PA
9095int
9096remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9097{
2d717e4f 9098 struct remote_state *rs = get_remote_state ();
c906108c
SS
9099 int i;
9100 unsigned char csum = 0;
b80406ac
TT
9101 gdb::def_vector<char> data (cnt + 6);
9102 char *buf2 = data.data ();
085dd6e6 9103
c906108c
SS
9104 int ch;
9105 int tcount = 0;
9106 char *p;
9107
e24a49d8
PA
9108 /* Catch cases like trying to read memory or listing threads while
9109 we're waiting for a stop reply. The remote server wouldn't be
9110 ready to handle this request, so we'd hang and timeout. We don't
9111 have to worry about this in synchronous mode, because in that
9112 case it's not possible to issue a command while the target is
74531fed
PA
9113 running. This is not a problem in non-stop mode, because in that
9114 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9115 if (!target_is_non_stop_p ()
9116 && target_is_async_p ()
9117 && rs->waiting_for_stop_reply)
9597b22a
DE
9118 {
9119 error (_("Cannot execute this command while the target is running.\n"
9120 "Use the \"interrupt\" command to stop the target\n"
9121 "and then try again."));
9122 }
e24a49d8 9123
2d717e4f
DJ
9124 /* We're sending out a new packet. Make sure we don't look at a
9125 stale cached response. */
9126 rs->cached_wait_status = 0;
9127
c906108c
SS
9128 /* Copy the packet into buffer BUF2, encapsulating it
9129 and giving it a checksum. */
9130
c906108c
SS
9131 p = buf2;
9132 *p++ = '$';
9133
9134 for (i = 0; i < cnt; i++)
9135 {
9136 csum += buf[i];
9137 *p++ = buf[i];
9138 }
9139 *p++ = '#';
9140 *p++ = tohex ((csum >> 4) & 0xf);
9141 *p++ = tohex (csum & 0xf);
9142
9143 /* Send it over and over until we get a positive ack. */
9144
9145 while (1)
9146 {
9147 int started_error_output = 0;
9148
9149 if (remote_debug)
9150 {
9151 *p = '\0';
b3ced9ba 9152
6f8976bf
YQ
9153 int len = (int) (p - buf2);
9154
9155 std::string str
9156 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9157
9158 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9159
567a3e54
SM
9160 if (len > REMOTE_DEBUG_MAX_CHAR)
9161 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9162 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9163
9164 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9165
0f71a2f6 9166 gdb_flush (gdb_stdlog);
c906108c 9167 }
c33e31fd 9168 remote_serial_write (buf2, p - buf2);
c906108c 9169
a6f3e723
SL
9170 /* If this is a no acks version of the remote protocol, send the
9171 packet and move on. */
9172 if (rs->noack_mode)
9173 break;
9174
74531fed
PA
9175 /* Read until either a timeout occurs (-2) or '+' is read.
9176 Handle any notification that arrives in the mean time. */
c906108c
SS
9177 while (1)
9178 {
9179 ch = readchar (remote_timeout);
9180
c5aa993b 9181 if (remote_debug)
c906108c
SS
9182 {
9183 switch (ch)
9184 {
9185 case '+':
1216fa2c 9186 case '-':
c906108c
SS
9187 case SERIAL_TIMEOUT:
9188 case '$':
74531fed 9189 case '%':
c906108c
SS
9190 if (started_error_output)
9191 {
9192 putchar_unfiltered ('\n');
9193 started_error_output = 0;
9194 }
9195 }
9196 }
9197
9198 switch (ch)
9199 {
9200 case '+':
9201 if (remote_debug)
0f71a2f6 9202 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9203 return 1;
1216fa2c
AC
9204 case '-':
9205 if (remote_debug)
9206 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9207 /* FALLTHROUGH */
c906108c 9208 case SERIAL_TIMEOUT:
c5aa993b 9209 tcount++;
c906108c 9210 if (tcount > 3)
b80406ac 9211 return 0;
23860348 9212 break; /* Retransmit buffer. */
c906108c
SS
9213 case '$':
9214 {
40e3f985 9215 if (remote_debug)
2bc416ba 9216 fprintf_unfiltered (gdb_stdlog,
23860348 9217 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9218 /* It's probably an old response sent because an ACK
9219 was lost. Gobble up the packet and ack it so it
9220 doesn't get retransmitted when we resend this
9221 packet. */
6d820c5c 9222 skip_frame ();
c33e31fd 9223 remote_serial_write ("+", 1);
23860348 9224 continue; /* Now, go look for +. */
c906108c 9225 }
74531fed
PA
9226
9227 case '%':
9228 {
9229 int val;
9230
9231 /* If we got a notification, handle it, and go back to looking
9232 for an ack. */
9233 /* We've found the start of a notification. Now
9234 collect the data. */
8d64371b 9235 val = read_frame (&rs->buf);
74531fed
PA
9236 if (val >= 0)
9237 {
9238 if (remote_debug)
9239 {
8d64371b 9240 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9241
6e5abd65
PA
9242 fprintf_unfiltered (gdb_stdlog,
9243 " Notification received: %s\n",
b3ced9ba 9244 str.c_str ());
74531fed 9245 }
8d64371b 9246 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9247 /* We're in sync now, rewait for the ack. */
9248 tcount = 0;
9249 }
9250 else
9251 {
9252 if (remote_debug)
9253 {
9254 if (!started_error_output)
9255 {
9256 started_error_output = 1;
9257 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9258 }
9259 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9260 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9261 }
9262 }
9263 continue;
9264 }
9265 /* fall-through */
c906108c
SS
9266 default:
9267 if (remote_debug)
9268 {
9269 if (!started_error_output)
9270 {
9271 started_error_output = 1;
0f71a2f6 9272 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9273 }
0f71a2f6 9274 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9275 }
9276 continue;
9277 }
23860348 9278 break; /* Here to retransmit. */
c906108c
SS
9279 }
9280
9281#if 0
9282 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9283 able to get out next time we call QUIT, without anything as
9284 violent as interrupt_query. If we want to provide a way out of
9285 here without getting to the next QUIT, it should be based on
9286 hitting ^C twice as in remote_wait. */
c906108c
SS
9287 if (quit_flag)
9288 {
9289 quit_flag = 0;
9290 interrupt_query ();
9291 }
9292#endif
9293 }
a5c0808e 9294
a6f3e723 9295 return 0;
c906108c
SS
9296}
9297
6d820c5c
DJ
9298/* Come here after finding the start of a frame when we expected an
9299 ack. Do our best to discard the rest of this packet. */
9300
6b8edb51
PA
9301void
9302remote_target::skip_frame ()
6d820c5c
DJ
9303{
9304 int c;
9305
9306 while (1)
9307 {
9308 c = readchar (remote_timeout);
9309 switch (c)
9310 {
9311 case SERIAL_TIMEOUT:
9312 /* Nothing we can do. */
9313 return;
9314 case '#':
9315 /* Discard the two bytes of checksum and stop. */
9316 c = readchar (remote_timeout);
9317 if (c >= 0)
9318 c = readchar (remote_timeout);
9319
9320 return;
9321 case '*': /* Run length encoding. */
9322 /* Discard the repeat count. */
9323 c = readchar (remote_timeout);
9324 if (c < 0)
9325 return;
9326 break;
9327 default:
9328 /* A regular character. */
9329 break;
9330 }
9331 }
9332}
9333
c906108c 9334/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9335 into *BUF, verifying the checksum, length, and handling run-length
9336 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9337 expand *BUF.
c906108c 9338
c2d11a7d
JM
9339 Returns -1 on error, number of characters in buffer (ignoring the
9340 trailing NULL) on success. (could be extended to return one of the
23860348 9341 SERIAL status indications). */
c2d11a7d 9342
6b8edb51 9343long
8d64371b 9344remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9345{
9346 unsigned char csum;
c2d11a7d 9347 long bc;
c906108c 9348 int c;
8d64371b 9349 char *buf = buf_p->data ();
a6f3e723 9350 struct remote_state *rs = get_remote_state ();
c906108c
SS
9351
9352 csum = 0;
c2d11a7d 9353 bc = 0;
c906108c
SS
9354
9355 while (1)
9356 {
9357 c = readchar (remote_timeout);
c906108c
SS
9358 switch (c)
9359 {
9360 case SERIAL_TIMEOUT:
9361 if (remote_debug)
0f71a2f6 9362 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9363 return -1;
c906108c
SS
9364 case '$':
9365 if (remote_debug)
0f71a2f6
JM
9366 fputs_filtered ("Saw new packet start in middle of old one\n",
9367 gdb_stdlog);
23860348 9368 return -1; /* Start a new packet, count retries. */
c906108c
SS
9369 case '#':
9370 {
9371 unsigned char pktcsum;
e1b09194
AC
9372 int check_0 = 0;
9373 int check_1 = 0;
c906108c 9374
c2d11a7d 9375 buf[bc] = '\0';
c906108c 9376
e1b09194
AC
9377 check_0 = readchar (remote_timeout);
9378 if (check_0 >= 0)
9379 check_1 = readchar (remote_timeout);
802188a7 9380
e1b09194
AC
9381 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9382 {
9383 if (remote_debug)
2bc416ba 9384 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9385 gdb_stdlog);
e1b09194
AC
9386 return -1;
9387 }
9388 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9389 {
9390 if (remote_debug)
2bc416ba 9391 fputs_filtered ("Communication error in checksum\n",
23860348 9392 gdb_stdlog);
40e3f985
FN
9393 return -1;
9394 }
c906108c 9395
a6f3e723
SL
9396 /* Don't recompute the checksum; with no ack packets we
9397 don't have any way to indicate a packet retransmission
9398 is necessary. */
9399 if (rs->noack_mode)
9400 return bc;
9401
e1b09194 9402 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9403 if (csum == pktcsum)
c2d11a7d 9404 return bc;
c906108c 9405
c5aa993b 9406 if (remote_debug)
c906108c 9407 {
b3ced9ba 9408 std::string str = escape_buffer (buf, bc);
6e5abd65 9409
6e5abd65 9410 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9411 "Bad checksum, sentsum=0x%x, "
9412 "csum=0x%x, buf=%s\n",
b3ced9ba 9413 pktcsum, csum, str.c_str ());
c906108c 9414 }
c2d11a7d 9415 /* Number of characters in buffer ignoring trailing
23860348 9416 NULL. */
c2d11a7d 9417 return -1;
c906108c 9418 }
23860348 9419 case '*': /* Run length encoding. */
c2c6d25f
JM
9420 {
9421 int repeat;
c906108c 9422
a744cf53 9423 csum += c;
b4501125
AC
9424 c = readchar (remote_timeout);
9425 csum += c;
23860348 9426 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9427
23860348 9428 /* The character before ``*'' is repeated. */
c2d11a7d 9429
6d820c5c 9430 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9431 {
8d64371b 9432 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9433 {
9434 /* Make some more room in the buffer. */
8d64371b
TT
9435 buf_p->resize (buf_p->size () + repeat);
9436 buf = buf_p->data ();
6d820c5c
DJ
9437 }
9438
c2d11a7d
JM
9439 memset (&buf[bc], buf[bc - 1], repeat);
9440 bc += repeat;
c2c6d25f
JM
9441 continue;
9442 }
9443
c2d11a7d 9444 buf[bc] = '\0';
6d820c5c 9445 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9446 return -1;
c2c6d25f 9447 }
c906108c 9448 default:
8d64371b 9449 if (bc >= buf_p->size () - 1)
c906108c 9450 {
6d820c5c 9451 /* Make some more room in the buffer. */
8d64371b
TT
9452 buf_p->resize (buf_p->size () * 2);
9453 buf = buf_p->data ();
c906108c
SS
9454 }
9455
6d820c5c
DJ
9456 buf[bc++] = c;
9457 csum += c;
9458 continue;
c906108c
SS
9459 }
9460 }
9461}
9462
9463/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9464 store it in *BUF. Resize *BUF if necessary to hold the result. If
9465 FOREVER, wait forever rather than timing out; this is used (in
9466 synchronous mode) to wait for a target that is is executing user
9467 code to stop. */
d9fcf2fb
JM
9468/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9469 don't have to change all the calls to getpkt to deal with the
9470 return value, because at the moment I don't know what the right
23860348 9471 thing to do it for those. */
6b8edb51 9472
c906108c 9473void
8d64371b 9474remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9475{
8d64371b 9476 getpkt_sane (buf, forever);
d9fcf2fb
JM
9477}
9478
9479
9480/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9481 store it in *BUF. Resize *BUF if necessary to hold the result. If
9482 FOREVER, wait forever rather than timing out; this is used (in
9483 synchronous mode) to wait for a target that is is executing user
9484 code to stop. If FOREVER == 0, this function is allowed to time
9485 out gracefully and return an indication of this to the caller.
9486 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9487 consider receiving a notification enough reason to return to the
9488 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9489 holds a notification or not (a regular packet). */
74531fed 9490
6b8edb51 9491int
8d64371b 9492remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9493 int forever, int expecting_notif,
9494 int *is_notif)
c906108c 9495{
2d717e4f 9496 struct remote_state *rs = get_remote_state ();
c906108c
SS
9497 int c;
9498 int tries;
9499 int timeout;
df4b58fe 9500 int val = -1;
c906108c 9501
2d717e4f
DJ
9502 /* We're reading a new response. Make sure we don't look at a
9503 previously cached response. */
9504 rs->cached_wait_status = 0;
9505
8d64371b 9506 strcpy (buf->data (), "timeout");
c906108c
SS
9507
9508 if (forever)
74531fed
PA
9509 timeout = watchdog > 0 ? watchdog : -1;
9510 else if (expecting_notif)
9511 timeout = 0; /* There should already be a char in the buffer. If
9512 not, bail out. */
c906108c
SS
9513 else
9514 timeout = remote_timeout;
9515
9516#define MAX_TRIES 3
9517
74531fed
PA
9518 /* Process any number of notifications, and then return when
9519 we get a packet. */
9520 for (;;)
c906108c 9521 {
d9c43928 9522 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9523 times. */
9524 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9525 {
74531fed
PA
9526 /* This can loop forever if the remote side sends us
9527 characters continuously, but if it pauses, we'll get
9528 SERIAL_TIMEOUT from readchar because of timeout. Then
9529 we'll count that as a retry.
9530
9531 Note that even when forever is set, we will only wait
9532 forever prior to the start of a packet. After that, we
9533 expect characters to arrive at a brisk pace. They should
9534 show up within remote_timeout intervals. */
9535 do
9536 c = readchar (timeout);
9537 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9538
9539 if (c == SERIAL_TIMEOUT)
9540 {
74531fed
PA
9541 if (expecting_notif)
9542 return -1; /* Don't complain, it's normal to not get
9543 anything in this case. */
9544
23860348 9545 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9546 {
78a095c3 9547 remote_unpush_target ();
598d3636
JK
9548 throw_error (TARGET_CLOSE_ERROR,
9549 _("Watchdog timeout has expired. "
9550 "Target detached."));
c906108c 9551 }
c906108c 9552 if (remote_debug)
0f71a2f6 9553 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9554 }
74531fed
PA
9555 else
9556 {
9557 /* We've found the start of a packet or notification.
9558 Now collect the data. */
8d64371b 9559 val = read_frame (buf);
74531fed
PA
9560 if (val >= 0)
9561 break;
9562 }
9563
c33e31fd 9564 remote_serial_write ("-", 1);
c906108c 9565 }
c906108c 9566
74531fed
PA
9567 if (tries > MAX_TRIES)
9568 {
9569 /* We have tried hard enough, and just can't receive the
9570 packet/notification. Give up. */
9571 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9572
74531fed
PA
9573 /* Skip the ack char if we're in no-ack mode. */
9574 if (!rs->noack_mode)
c33e31fd 9575 remote_serial_write ("+", 1);
74531fed
PA
9576 return -1;
9577 }
c906108c 9578
74531fed
PA
9579 /* If we got an ordinary packet, return that to our caller. */
9580 if (c == '$')
c906108c
SS
9581 {
9582 if (remote_debug)
43e526b9 9583 {
6f8976bf 9584 std::string str
8d64371b 9585 = escape_buffer (buf->data (),
6f8976bf
YQ
9586 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9587
9588 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9589 str.c_str ());
9590
567a3e54
SM
9591 if (val > REMOTE_DEBUG_MAX_CHAR)
9592 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9593 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9594
6f8976bf 9595 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9596 }
a6f3e723
SL
9597
9598 /* Skip the ack char if we're in no-ack mode. */
9599 if (!rs->noack_mode)
c33e31fd 9600 remote_serial_write ("+", 1);
fee9eda9
YQ
9601 if (is_notif != NULL)
9602 *is_notif = 0;
0876f84a 9603 return val;
c906108c
SS
9604 }
9605
74531fed
PA
9606 /* If we got a notification, handle it, and go back to looking
9607 for a packet. */
9608 else
9609 {
9610 gdb_assert (c == '%');
9611
9612 if (remote_debug)
9613 {
8d64371b 9614 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9615
6e5abd65
PA
9616 fprintf_unfiltered (gdb_stdlog,
9617 " Notification received: %s\n",
b3ced9ba 9618 str.c_str ());
74531fed 9619 }
fee9eda9
YQ
9620 if (is_notif != NULL)
9621 *is_notif = 1;
c906108c 9622
8d64371b 9623 handle_notification (rs->notif_state, buf->data ());
c906108c 9624
74531fed 9625 /* Notifications require no acknowledgement. */
a6f3e723 9626
74531fed 9627 if (expecting_notif)
fee9eda9 9628 return val;
74531fed
PA
9629 }
9630 }
9631}
9632
6b8edb51 9633int
8d64371b 9634remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9635{
8d64371b 9636 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9637}
9638
6b8edb51 9639int
8d64371b 9640remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9641 int *is_notif)
74531fed 9642{
8d64371b 9643 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9644}
74531fed 9645
cbb8991c
DB
9646/* Kill any new fork children of process PID that haven't been
9647 processed by follow_fork. */
9648
6b8edb51
PA
9649void
9650remote_target::kill_new_fork_children (int pid)
cbb8991c 9651{
6b8edb51 9652 remote_state *rs = get_remote_state ();
cbb8991c 9653 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9654
9655 /* Kill the fork child threads of any threads in process PID
9656 that are stopped at a fork event. */
08036331 9657 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9658 {
9659 struct target_waitstatus *ws = &thread->pending_follow;
9660
9661 if (is_pending_fork_parent (ws, pid, thread->ptid))
9662 {
953edf2b 9663 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9664 int res;
9665
6b8edb51 9666 res = remote_vkill (child_pid);
cbb8991c
DB
9667 if (res != 0)
9668 error (_("Can't kill fork child process %d"), child_pid);
9669 }
9670 }
9671
9672 /* Check for any pending fork events (not reported or processed yet)
9673 in process PID and kill those fork child threads as well. */
9674 remote_notif_get_pending_events (notif);
953edf2b
TT
9675 for (auto &event : rs->stop_reply_queue)
9676 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9677 {
9678 int child_pid = event->ws.value.related_pid.pid ();
9679 int res;
9680
9681 res = remote_vkill (child_pid);
9682 if (res != 0)
9683 error (_("Can't kill fork child process %d"), child_pid);
9684 }
cbb8991c
DB
9685}
9686
c906108c 9687\f
8020350c
DB
9688/* Target hook to kill the current inferior. */
9689
f6ac5f3d
PA
9690void
9691remote_target::kill ()
43ff13b4 9692{
8020350c 9693 int res = -1;
e99b03dc 9694 int pid = inferior_ptid.pid ();
8020350c 9695 struct remote_state *rs = get_remote_state ();
0fdf84ca 9696
8020350c 9697 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9698 {
8020350c
DB
9699 /* If we're stopped while forking and we haven't followed yet,
9700 kill the child task. We need to do this before killing the
9701 parent task because if this is a vfork then the parent will
9702 be sleeping. */
6b8edb51 9703 kill_new_fork_children (pid);
8020350c 9704
6b8edb51 9705 res = remote_vkill (pid);
8020350c 9706 if (res == 0)
0fdf84ca 9707 {
bc1e6c81 9708 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9709 return;
9710 }
8020350c 9711 }
0fdf84ca 9712
8020350c
DB
9713 /* If we are in 'target remote' mode and we are killing the only
9714 inferior, then we will tell gdbserver to exit and unpush the
9715 target. */
9716 if (res == -1 && !remote_multi_process_p (rs)
9717 && number_of_live_inferiors () == 1)
9718 {
9719 remote_kill_k ();
9720
9721 /* We've killed the remote end, we get to mourn it. If we are
9722 not in extended mode, mourning the inferior also unpushes
9723 remote_ops from the target stack, which closes the remote
9724 connection. */
bc1e6c81 9725 target_mourn_inferior (inferior_ptid);
8020350c
DB
9726
9727 return;
0fdf84ca 9728 }
43ff13b4 9729
8020350c 9730 error (_("Can't kill process"));
43ff13b4
JM
9731}
9732
8020350c
DB
9733/* Send a kill request to the target using the 'vKill' packet. */
9734
6b8edb51
PA
9735int
9736remote_target::remote_vkill (int pid)
82f73884 9737{
4082afcc 9738 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9739 return -1;
9740
6b8edb51
PA
9741 remote_state *rs = get_remote_state ();
9742
82f73884 9743 /* Tell the remote target to detach. */
8d64371b 9744 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9745 putpkt (rs->buf);
8d64371b 9746 getpkt (&rs->buf, 0);
82f73884 9747
4082afcc
PA
9748 switch (packet_ok (rs->buf,
9749 &remote_protocol_packets[PACKET_vKill]))
9750 {
9751 case PACKET_OK:
9752 return 0;
9753 case PACKET_ERROR:
9754 return 1;
9755 case PACKET_UNKNOWN:
9756 return -1;
9757 default:
9758 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9759 }
82f73884
PA
9760}
9761
8020350c
DB
9762/* Send a kill request to the target using the 'k' packet. */
9763
6b8edb51
PA
9764void
9765remote_target::remote_kill_k ()
82f73884 9766{
8020350c
DB
9767 /* Catch errors so the user can quit from gdb even when we
9768 aren't on speaking terms with the remote system. */
9769 TRY
82f73884 9770 {
82f73884 9771 putpkt ("k");
82f73884 9772 }
8020350c
DB
9773 CATCH (ex, RETURN_MASK_ERROR)
9774 {
9775 if (ex.error == TARGET_CLOSE_ERROR)
9776 {
9777 /* If we got an (EOF) error that caused the target
9778 to go away, then we're done, that's what we wanted.
9779 "k" is susceptible to cause a premature EOF, given
9780 that the remote server isn't actually required to
9781 reply to "k", and it can happen that it doesn't
9782 even get to reply ACK to the "k". */
9783 return;
9784 }
82f73884 9785
8020350c
DB
9786 /* Otherwise, something went wrong. We didn't actually kill
9787 the target. Just propagate the exception, and let the
9788 user or higher layers decide what to do. */
9789 throw_exception (ex);
9790 }
9791 END_CATCH
82f73884
PA
9792}
9793
f6ac5f3d
PA
9794void
9795remote_target::mourn_inferior ()
c906108c 9796{
8020350c 9797 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9798
9607784a
PA
9799 /* We're no longer interested in notification events of an inferior
9800 that exited or was killed/detached. */
9801 discard_pending_stop_replies (current_inferior ());
9802
8020350c
DB
9803 /* In 'target remote' mode with one inferior, we close the connection. */
9804 if (!rs->extended && number_of_live_inferiors () <= 1)
9805 {
f6ac5f3d 9806 unpush_target (this);
c906108c 9807
8020350c
DB
9808 /* remote_close takes care of doing most of the clean up. */
9809 generic_mourn_inferior ();
9810 return;
9811 }
c906108c 9812
e24a49d8
PA
9813 /* In case we got here due to an error, but we're going to stay
9814 connected. */
9815 rs->waiting_for_stop_reply = 0;
9816
dc1981d7
PA
9817 /* If the current general thread belonged to the process we just
9818 detached from or has exited, the remote side current general
9819 thread becomes undefined. Considering a case like this:
9820
9821 - We just got here due to a detach.
9822 - The process that we're detaching from happens to immediately
9823 report a global breakpoint being hit in non-stop mode, in the
9824 same thread we had selected before.
9825 - GDB attaches to this process again.
9826 - This event happens to be the next event we handle.
9827
9828 GDB would consider that the current general thread didn't need to
9829 be set on the stub side (with Hg), since for all it knew,
9830 GENERAL_THREAD hadn't changed.
9831
9832 Notice that although in all-stop mode, the remote server always
9833 sets the current thread to the thread reporting the stop event,
9834 that doesn't happen in non-stop mode; in non-stop, the stub *must
9835 not* change the current thread when reporting a breakpoint hit,
9836 due to the decoupling of event reporting and event handling.
9837
9838 To keep things simple, we always invalidate our notion of the
9839 current thread. */
47f8a51d 9840 record_currthread (rs, minus_one_ptid);
dc1981d7 9841
8020350c 9842 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9843 generic_mourn_inferior ();
9844
d729566a 9845 if (!have_inferiors ())
2d717e4f 9846 {
82f73884
PA
9847 if (!remote_multi_process_p (rs))
9848 {
9849 /* Check whether the target is running now - some remote stubs
9850 automatically restart after kill. */
9851 putpkt ("?");
8d64371b 9852 getpkt (&rs->buf, 0);
82f73884
PA
9853
9854 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9855 {
3e43a32a
MS
9856 /* Assume that the target has been restarted. Set
9857 inferior_ptid so that bits of core GDB realizes
9858 there's something here, e.g., so that the user can
9859 say "kill" again. */
82f73884
PA
9860 inferior_ptid = magic_null_ptid;
9861 }
82f73884 9862 }
2d717e4f
DJ
9863 }
9864}
c906108c 9865
57810aa7 9866bool
f6ac5f3d 9867extended_remote_target::supports_disable_randomization ()
03583c20 9868{
4082afcc 9869 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9870}
9871
6b8edb51
PA
9872void
9873remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9874{
9875 struct remote_state *rs = get_remote_state ();
9876 char *reply;
9877
8d64371b
TT
9878 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9879 "QDisableRandomization:%x", val);
03583c20 9880 putpkt (rs->buf);
b6bb3468 9881 reply = remote_get_noisy_reply ();
03583c20
UW
9882 if (*reply == '\0')
9883 error (_("Target does not support QDisableRandomization."));
9884 if (strcmp (reply, "OK") != 0)
9885 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9886}
9887
6b8edb51
PA
9888int
9889remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9890{
9891 struct remote_state *rs = get_remote_state ();
2d717e4f 9892 int len;
94585166 9893 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9894
2d717e4f
DJ
9895 /* If the user has disabled vRun support, or we have detected that
9896 support is not available, do not try it. */
4082afcc 9897 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9898 return -1;
424163ea 9899
8d64371b
TT
9900 strcpy (rs->buf.data (), "vRun;");
9901 len = strlen (rs->buf.data ());
c906108c 9902
2d717e4f
DJ
9903 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9904 error (_("Remote file name too long for run packet"));
8d64371b 9905 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9906 strlen (remote_exec_file));
2d717e4f 9907
7c5ded6a 9908 if (!args.empty ())
2d717e4f 9909 {
2d717e4f 9910 int i;
2d717e4f 9911
773a1edc 9912 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9913 for (i = 0; argv[i] != NULL; i++)
9914 {
9915 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9916 error (_("Argument list too long for run packet"));
9917 rs->buf[len++] = ';';
8d64371b 9918 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9919 strlen (argv[i]));
2d717e4f 9920 }
2d717e4f
DJ
9921 }
9922
9923 rs->buf[len++] = '\0';
9924
9925 putpkt (rs->buf);
8d64371b 9926 getpkt (&rs->buf, 0);
2d717e4f 9927
4082afcc 9928 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9929 {
4082afcc 9930 case PACKET_OK:
3405876a 9931 /* We have a wait response. All is well. */
2d717e4f 9932 return 0;
4082afcc
PA
9933 case PACKET_UNKNOWN:
9934 return -1;
9935 case PACKET_ERROR:
2d717e4f
DJ
9936 if (remote_exec_file[0] == '\0')
9937 error (_("Running the default executable on the remote target failed; "
9938 "try \"set remote exec-file\"?"));
9939 else
9940 error (_("Running \"%s\" on the remote target failed"),
9941 remote_exec_file);
4082afcc
PA
9942 default:
9943 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9944 }
c906108c
SS
9945}
9946
0a2dde4a
SDJ
9947/* Helper function to send set/unset environment packets. ACTION is
9948 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9949 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9950 sent. */
9951
6b8edb51
PA
9952void
9953remote_target::send_environment_packet (const char *action,
9954 const char *packet,
9955 const char *value)
0a2dde4a 9956{
6b8edb51
PA
9957 remote_state *rs = get_remote_state ();
9958
0a2dde4a
SDJ
9959 /* Convert the environment variable to an hex string, which
9960 is the best format to be transmitted over the wire. */
9961 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9962 strlen (value));
9963
8d64371b 9964 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
9965 "%s:%s", packet, encoded_value.c_str ());
9966
9967 putpkt (rs->buf);
8d64371b
TT
9968 getpkt (&rs->buf, 0);
9969 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9970 warning (_("Unable to %s environment variable '%s' on remote."),
9971 action, value);
9972}
9973
9974/* Helper function to handle the QEnvironment* packets. */
9975
6b8edb51
PA
9976void
9977remote_target::extended_remote_environment_support ()
0a2dde4a 9978{
6b8edb51
PA
9979 remote_state *rs = get_remote_state ();
9980
0a2dde4a
SDJ
9981 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9982 {
9983 putpkt ("QEnvironmentReset");
8d64371b
TT
9984 getpkt (&rs->buf, 0);
9985 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9986 warning (_("Unable to reset environment on remote."));
9987 }
9988
9989 gdb_environ *e = &current_inferior ()->environment;
9990
9991 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9992 for (const std::string &el : e->user_set_env ())
6b8edb51 9993 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
9994 el.c_str ());
9995
9996 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9997 for (const std::string &el : e->user_unset_env ())
6b8edb51 9998 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
9999}
10000
bc3b087d
SDJ
10001/* Helper function to set the current working directory for the
10002 inferior in the remote target. */
10003
6b8edb51
PA
10004void
10005remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10006{
10007 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10008 {
10009 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10010 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10011
10012 if (inferior_cwd != NULL)
10013 {
10014 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10015 strlen (inferior_cwd));
10016
8d64371b 10017 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10018 "QSetWorkingDir:%s", hexpath.c_str ());
10019 }
10020 else
10021 {
10022 /* An empty inferior_cwd means that the user wants us to
10023 reset the remote server's inferior's cwd. */
8d64371b 10024 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10025 "QSetWorkingDir:");
10026 }
10027
10028 putpkt (rs->buf);
8d64371b 10029 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10030 if (packet_ok (rs->buf,
10031 &remote_protocol_packets[PACKET_QSetWorkingDir])
10032 != PACKET_OK)
10033 error (_("\
10034Remote replied unexpectedly while setting the inferior's working\n\
10035directory: %s"),
8d64371b 10036 rs->buf.data ());
bc3b087d
SDJ
10037
10038 }
10039}
10040
2d717e4f
DJ
10041/* In the extended protocol we want to be able to do things like
10042 "run" and have them basically work as expected. So we need
10043 a special create_inferior function. We support changing the
10044 executable file and the command line arguments, but not the
10045 environment. */
10046
f6ac5f3d
PA
10047void
10048extended_remote_target::create_inferior (const char *exec_file,
10049 const std::string &args,
10050 char **env, int from_tty)
43ff13b4 10051{
3405876a
PA
10052 int run_worked;
10053 char *stop_reply;
10054 struct remote_state *rs = get_remote_state ();
94585166 10055 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10056
43ff13b4 10057 /* If running asynchronously, register the target file descriptor
23860348 10058 with the event loop. */
75c99385 10059 if (target_can_async_p ())
6a3753b3 10060 target_async (1);
43ff13b4 10061
03583c20 10062 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10063 if (supports_disable_randomization ())
03583c20
UW
10064 extended_remote_disable_randomization (disable_randomization);
10065
aefd8b33
SDJ
10066 /* If startup-with-shell is on, we inform gdbserver to start the
10067 remote inferior using a shell. */
10068 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10069 {
8d64371b 10070 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10071 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10072 putpkt (rs->buf);
8d64371b
TT
10073 getpkt (&rs->buf, 0);
10074 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10075 error (_("\
10076Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10077 rs->buf.data ());
aefd8b33
SDJ
10078 }
10079
6b8edb51 10080 extended_remote_environment_support ();
0a2dde4a 10081
6b8edb51 10082 extended_remote_set_inferior_cwd ();
bc3b087d 10083
43ff13b4 10084 /* Now restart the remote server. */
3405876a
PA
10085 run_worked = extended_remote_run (args) != -1;
10086 if (!run_worked)
2d717e4f
DJ
10087 {
10088 /* vRun was not supported. Fail if we need it to do what the
10089 user requested. */
10090 if (remote_exec_file[0])
10091 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10092 if (!args.empty ())
65e65158 10093 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10094
2d717e4f
DJ
10095 /* Fall back to "R". */
10096 extended_remote_restart ();
10097 }
424163ea 10098
3405876a 10099 /* vRun's success return is a stop reply. */
8d64371b 10100 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10101 add_current_inferior_and_thread (stop_reply);
c0a2216e 10102
2d717e4f
DJ
10103 /* Get updated offsets, if the stub uses qOffsets. */
10104 get_offsets ();
2d717e4f 10105}
c906108c 10106\f
c5aa993b 10107
b775012e
LM
10108/* Given a location's target info BP_TGT and the packet buffer BUF, output
10109 the list of conditions (in agent expression bytecode format), if any, the
10110 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10111 started from BUF and ended at BUF_END. */
b775012e
LM
10112
10113static int
10114remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10115 struct bp_target_info *bp_tgt, char *buf,
10116 char *buf_end)
b775012e 10117{
3cde5c42 10118 if (bp_tgt->conditions.empty ())
b775012e
LM
10119 return 0;
10120
10121 buf += strlen (buf);
bba74b36 10122 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10123 buf++;
10124
83621223 10125 /* Send conditions to the target. */
d538e36d 10126 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10127 {
bba74b36 10128 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10129 buf += strlen (buf);
3cde5c42 10130 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10131 buf = pack_hex_byte (buf, aexpr->buf[i]);
10132 *buf = '\0';
10133 }
b775012e
LM
10134 return 0;
10135}
10136
d3ce09f5
SS
10137static void
10138remote_add_target_side_commands (struct gdbarch *gdbarch,
10139 struct bp_target_info *bp_tgt, char *buf)
10140{
3cde5c42 10141 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10142 return;
10143
10144 buf += strlen (buf);
10145
10146 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10147 buf += strlen (buf);
10148
10149 /* Concatenate all the agent expressions that are commands into the
10150 cmds parameter. */
df97be55 10151 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10152 {
10153 sprintf (buf, "X%x,", aexpr->len);
10154 buf += strlen (buf);
3cde5c42 10155 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10156 buf = pack_hex_byte (buf, aexpr->buf[i]);
10157 *buf = '\0';
10158 }
d3ce09f5
SS
10159}
10160
8181d85f
DJ
10161/* Insert a breakpoint. On targets that have software breakpoint
10162 support, we ask the remote target to do the work; on targets
10163 which don't, we insert a traditional memory breakpoint. */
c906108c 10164
f6ac5f3d
PA
10165int
10166remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10167 struct bp_target_info *bp_tgt)
c906108c 10168{
d471ea57
AC
10169 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10170 If it succeeds, then set the support to PACKET_ENABLE. If it
10171 fails, and the user has explicitly requested the Z support then
23860348 10172 report an error, otherwise, mark it disabled and go on. */
802188a7 10173
4082afcc 10174 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10175 {
0d5ed153 10176 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10177 struct remote_state *rs;
bba74b36 10178 char *p, *endbuf;
4fff2411 10179
28439a30
PA
10180 /* Make sure the remote is pointing at the right process, if
10181 necessary. */
10182 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10183 set_general_process ();
10184
4fff2411 10185 rs = get_remote_state ();
8d64371b
TT
10186 p = rs->buf.data ();
10187 endbuf = p + get_remote_packet_size ();
802188a7 10188
96baa820
JM
10189 *(p++) = 'Z';
10190 *(p++) = '0';
10191 *(p++) = ',';
7c0f6dcc 10192 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10193 p += hexnumstr (p, addr);
579c6ad9 10194 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10195
f6ac5f3d 10196 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10197 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10198
f6ac5f3d 10199 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10200 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10201
6d820c5c 10202 putpkt (rs->buf);
8d64371b 10203 getpkt (&rs->buf, 0);
96baa820 10204
6d820c5c 10205 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10206 {
d471ea57
AC
10207 case PACKET_ERROR:
10208 return -1;
10209 case PACKET_OK:
10210 return 0;
10211 case PACKET_UNKNOWN:
10212 break;
96baa820
JM
10213 }
10214 }
c906108c 10215
0000e5cc
PA
10216 /* If this breakpoint has target-side commands but this stub doesn't
10217 support Z0 packets, throw error. */
3cde5c42 10218 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10219 throw_error (NOT_SUPPORTED_ERROR, _("\
10220Target doesn't support breakpoints that have target side commands."));
10221
f6ac5f3d 10222 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10223}
10224
f6ac5f3d
PA
10225int
10226remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10227 struct bp_target_info *bp_tgt,
10228 enum remove_bp_reason reason)
c906108c 10229{
8181d85f 10230 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10231 struct remote_state *rs = get_remote_state ();
96baa820 10232
4082afcc 10233 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10234 {
8d64371b
TT
10235 char *p = rs->buf.data ();
10236 char *endbuf = p + get_remote_packet_size ();
802188a7 10237
28439a30
PA
10238 /* Make sure the remote is pointing at the right process, if
10239 necessary. */
10240 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10241 set_general_process ();
10242
96baa820
JM
10243 *(p++) = 'z';
10244 *(p++) = '0';
10245 *(p++) = ',';
10246
8181d85f
DJ
10247 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10248 p += hexnumstr (p, addr);
579c6ad9 10249 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10250
6d820c5c 10251 putpkt (rs->buf);
8d64371b 10252 getpkt (&rs->buf, 0);
96baa820 10253
6d820c5c 10254 return (rs->buf[0] == 'E');
96baa820
JM
10255 }
10256
f6ac5f3d 10257 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10258}
10259
f486487f 10260static enum Z_packet_type
d471ea57
AC
10261watchpoint_to_Z_packet (int type)
10262{
10263 switch (type)
10264 {
10265 case hw_write:
bb858e6a 10266 return Z_PACKET_WRITE_WP;
d471ea57
AC
10267 break;
10268 case hw_read:
bb858e6a 10269 return Z_PACKET_READ_WP;
d471ea57
AC
10270 break;
10271 case hw_access:
bb858e6a 10272 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10273 break;
10274 default:
8e65ff28 10275 internal_error (__FILE__, __LINE__,
e2e0b3e5 10276 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10277 }
10278}
10279
f6ac5f3d
PA
10280int
10281remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10282 enum target_hw_bp_type type, struct expression *cond)
96baa820 10283{
d01949b6 10284 struct remote_state *rs = get_remote_state ();
8d64371b 10285 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10286 char *p;
d471ea57 10287 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10288
4082afcc 10289 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10290 return 1;
802188a7 10291
28439a30
PA
10292 /* Make sure the remote is pointing at the right process, if
10293 necessary. */
10294 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10295 set_general_process ();
10296
8d64371b
TT
10297 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10298 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10299 addr = remote_address_masked (addr);
10300 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10301 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10302
6d820c5c 10303 putpkt (rs->buf);
8d64371b 10304 getpkt (&rs->buf, 0);
96baa820 10305
6d820c5c 10306 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10307 {
10308 case PACKET_ERROR:
d471ea57 10309 return -1;
85d721b8
PA
10310 case PACKET_UNKNOWN:
10311 return 1;
d471ea57
AC
10312 case PACKET_OK:
10313 return 0;
10314 }
8e65ff28 10315 internal_error (__FILE__, __LINE__,
e2e0b3e5 10316 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10317}
10318
57810aa7 10319bool
f6ac5f3d
PA
10320remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10321 CORE_ADDR start, int length)
283002cf
MR
10322{
10323 CORE_ADDR diff = remote_address_masked (addr - start);
10324
10325 return diff < length;
10326}
10327
d471ea57 10328
f6ac5f3d
PA
10329int
10330remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10331 enum target_hw_bp_type type, struct expression *cond)
96baa820 10332{
d01949b6 10333 struct remote_state *rs = get_remote_state ();
8d64371b 10334 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10335 char *p;
d471ea57
AC
10336 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10337
4082afcc 10338 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10339 return -1;
802188a7 10340
28439a30
PA
10341 /* Make sure the remote is pointing at the right process, if
10342 necessary. */
10343 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10344 set_general_process ();
10345
8d64371b
TT
10346 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10347 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10348 addr = remote_address_masked (addr);
10349 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10350 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10351 putpkt (rs->buf);
8d64371b 10352 getpkt (&rs->buf, 0);
96baa820 10353
6d820c5c 10354 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10355 {
10356 case PACKET_ERROR:
10357 case PACKET_UNKNOWN:
10358 return -1;
10359 case PACKET_OK:
10360 return 0;
10361 }
8e65ff28 10362 internal_error (__FILE__, __LINE__,
e2e0b3e5 10363 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10364}
10365
3c3bea1c 10366
501eef12 10367int remote_hw_watchpoint_limit = -1;
480a3f21 10368int remote_hw_watchpoint_length_limit = -1;
501eef12 10369int remote_hw_breakpoint_limit = -1;
d471ea57 10370
f6ac5f3d
PA
10371int
10372remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10373{
10374 if (remote_hw_watchpoint_length_limit == 0)
10375 return 0;
10376 else if (remote_hw_watchpoint_length_limit < 0)
10377 return 1;
10378 else if (len <= remote_hw_watchpoint_length_limit)
10379 return 1;
10380 else
10381 return 0;
10382}
10383
f6ac5f3d
PA
10384int
10385remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10386{
3c3bea1c
GS
10387 if (type == bp_hardware_breakpoint)
10388 {
10389 if (remote_hw_breakpoint_limit == 0)
10390 return 0;
501eef12
AC
10391 else if (remote_hw_breakpoint_limit < 0)
10392 return 1;
3c3bea1c
GS
10393 else if (cnt <= remote_hw_breakpoint_limit)
10394 return 1;
10395 }
10396 else
10397 {
10398 if (remote_hw_watchpoint_limit == 0)
10399 return 0;
501eef12
AC
10400 else if (remote_hw_watchpoint_limit < 0)
10401 return 1;
3c3bea1c
GS
10402 else if (ot)
10403 return -1;
10404 else if (cnt <= remote_hw_watchpoint_limit)
10405 return 1;
10406 }
10407 return -1;
10408}
10409
f7e6eed5
PA
10410/* The to_stopped_by_sw_breakpoint method of target remote. */
10411
57810aa7 10412bool
f6ac5f3d 10413remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10414{
799a2abe 10415 struct thread_info *thread = inferior_thread ();
f7e6eed5 10416
799a2abe 10417 return (thread->priv != NULL
7aabaf9d
SM
10418 && (get_remote_thread_info (thread)->stop_reason
10419 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10420}
10421
10422/* The to_supports_stopped_by_sw_breakpoint method of target
10423 remote. */
10424
57810aa7 10425bool
f6ac5f3d 10426remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10427{
f7e6eed5
PA
10428 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10429}
10430
10431/* The to_stopped_by_hw_breakpoint method of target remote. */
10432
57810aa7 10433bool
f6ac5f3d 10434remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10435{
799a2abe 10436 struct thread_info *thread = inferior_thread ();
f7e6eed5 10437
799a2abe 10438 return (thread->priv != NULL
7aabaf9d
SM
10439 && (get_remote_thread_info (thread)->stop_reason
10440 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10441}
10442
10443/* The to_supports_stopped_by_hw_breakpoint method of target
10444 remote. */
10445
57810aa7 10446bool
f6ac5f3d 10447remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10448{
f7e6eed5
PA
10449 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10450}
10451
57810aa7 10452bool
f6ac5f3d 10453remote_target::stopped_by_watchpoint ()
3c3bea1c 10454{
799a2abe 10455 struct thread_info *thread = inferior_thread ();
ee154bee 10456
799a2abe 10457 return (thread->priv != NULL
7aabaf9d
SM
10458 && (get_remote_thread_info (thread)->stop_reason
10459 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10460}
10461
57810aa7 10462bool
f6ac5f3d 10463remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10464{
799a2abe 10465 struct thread_info *thread = inferior_thread ();
a744cf53 10466
799a2abe 10467 if (thread->priv != NULL
7aabaf9d
SM
10468 && (get_remote_thread_info (thread)->stop_reason
10469 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10470 {
7aabaf9d 10471 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10472 return true;
4aa7a7f5
JJ
10473 }
10474
57810aa7 10475 return false;
3c3bea1c
GS
10476}
10477
10478
f6ac5f3d
PA
10479int
10480remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10481 struct bp_target_info *bp_tgt)
3c3bea1c 10482{
0d5ed153 10483 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10484 struct remote_state *rs;
bba74b36 10485 char *p, *endbuf;
dd61ec5c 10486 char *message;
3c3bea1c 10487
4082afcc 10488 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10489 return -1;
2bc416ba 10490
28439a30
PA
10491 /* Make sure the remote is pointing at the right process, if
10492 necessary. */
10493 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10494 set_general_process ();
10495
4fff2411 10496 rs = get_remote_state ();
8d64371b
TT
10497 p = rs->buf.data ();
10498 endbuf = p + get_remote_packet_size ();
4fff2411 10499
96baa820
JM
10500 *(p++) = 'Z';
10501 *(p++) = '1';
10502 *(p++) = ',';
802188a7 10503
0d5ed153 10504 addr = remote_address_masked (addr);
96baa820 10505 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10506 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10507
f6ac5f3d 10508 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10509 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10510
f6ac5f3d 10511 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10512 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10513
6d820c5c 10514 putpkt (rs->buf);
8d64371b 10515 getpkt (&rs->buf, 0);
96baa820 10516
6d820c5c 10517 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10518 {
10519 case PACKET_ERROR:
dd61ec5c
MW
10520 if (rs->buf[1] == '.')
10521 {
8d64371b 10522 message = strchr (&rs->buf[2], '.');
dd61ec5c 10523 if (message)
0316657e 10524 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10525 }
10526 return -1;
d471ea57
AC
10527 case PACKET_UNKNOWN:
10528 return -1;
10529 case PACKET_OK:
10530 return 0;
10531 }
8e65ff28 10532 internal_error (__FILE__, __LINE__,
e2e0b3e5 10533 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10534}
10535
d471ea57 10536
f6ac5f3d
PA
10537int
10538remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10539 struct bp_target_info *bp_tgt)
96baa820 10540{
8181d85f 10541 CORE_ADDR addr;
d01949b6 10542 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10543 char *p = rs->buf.data ();
10544 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10545
4082afcc 10546 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10547 return -1;
802188a7 10548
28439a30
PA
10549 /* Make sure the remote is pointing at the right process, if
10550 necessary. */
10551 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10552 set_general_process ();
10553
96baa820
JM
10554 *(p++) = 'z';
10555 *(p++) = '1';
10556 *(p++) = ',';
802188a7 10557
8181d85f 10558 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10559 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10560 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10561
6d820c5c 10562 putpkt (rs->buf);
8d64371b 10563 getpkt (&rs->buf, 0);
802188a7 10564
6d820c5c 10565 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10566 {
10567 case PACKET_ERROR:
10568 case PACKET_UNKNOWN:
10569 return -1;
10570 case PACKET_OK:
10571 return 0;
10572 }
8e65ff28 10573 internal_error (__FILE__, __LINE__,
e2e0b3e5 10574 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10575}
96baa820 10576
4a5e7a5b
PA
10577/* Verify memory using the "qCRC:" request. */
10578
f6ac5f3d
PA
10579int
10580remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10581{
10582 struct remote_state *rs = get_remote_state ();
10583 unsigned long host_crc, target_crc;
10584 char *tmp;
10585
936d2992
PA
10586 /* It doesn't make sense to use qCRC if the remote target is
10587 connected but not running. */
10588 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10589 {
10590 enum packet_result result;
28439a30 10591
936d2992
PA
10592 /* Make sure the remote is pointing at the right process. */
10593 set_general_process ();
4a5e7a5b 10594
936d2992 10595 /* FIXME: assumes lma can fit into long. */
8d64371b 10596 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10597 (long) lma, (long) size);
10598 putpkt (rs->buf);
4a5e7a5b 10599
936d2992
PA
10600 /* Be clever; compute the host_crc before waiting for target
10601 reply. */
10602 host_crc = xcrc32 (data, size, 0xffffffff);
10603
8d64371b 10604 getpkt (&rs->buf, 0);
4a5e7a5b 10605
936d2992
PA
10606 result = packet_ok (rs->buf,
10607 &remote_protocol_packets[PACKET_qCRC]);
10608 if (result == PACKET_ERROR)
10609 return -1;
10610 else if (result == PACKET_OK)
10611 {
10612 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10613 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10614
936d2992
PA
10615 return (host_crc == target_crc);
10616 }
10617 }
4a5e7a5b 10618
f6ac5f3d 10619 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10620}
10621
c906108c
SS
10622/* compare-sections command
10623
10624 With no arguments, compares each loadable section in the exec bfd
10625 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10626 Useful for verifying the image on the target against the exec file. */
e514a9d6 10627
c906108c 10628static void
ac88e2de 10629compare_sections_command (const char *args, int from_tty)
c906108c
SS
10630{
10631 asection *s;
ce359b09 10632 const char *sectname;
c906108c
SS
10633 bfd_size_type size;
10634 bfd_vma lma;
10635 int matched = 0;
10636 int mismatched = 0;
4a5e7a5b 10637 int res;
95cf3b38 10638 int read_only = 0;
c906108c
SS
10639
10640 if (!exec_bfd)
8a3fe4f8 10641 error (_("command cannot be used without an exec file"));
c906108c 10642
95cf3b38
DT
10643 if (args != NULL && strcmp (args, "-r") == 0)
10644 {
10645 read_only = 1;
10646 args = NULL;
10647 }
10648
c5aa993b 10649 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10650 {
10651 if (!(s->flags & SEC_LOAD))
0df8b418 10652 continue; /* Skip non-loadable section. */
c906108c 10653
95cf3b38
DT
10654 if (read_only && (s->flags & SEC_READONLY) == 0)
10655 continue; /* Skip writeable sections */
10656
2c500098 10657 size = bfd_get_section_size (s);
c906108c 10658 if (size == 0)
0df8b418 10659 continue; /* Skip zero-length section. */
c906108c 10660
ce359b09 10661 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10662 if (args && strcmp (args, sectname) != 0)
0df8b418 10663 continue; /* Not the section selected by user. */
c906108c 10664
0df8b418 10665 matched = 1; /* Do this section. */
c906108c 10666 lma = s->lma;
c906108c 10667
b80406ac
TT
10668 gdb::byte_vector sectdata (size);
10669 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10670
b80406ac 10671 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10672
10673 if (res == -1)
5af949e3 10674 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10675 paddress (target_gdbarch (), lma),
10676 paddress (target_gdbarch (), lma + size));
c906108c 10677
5af949e3 10678 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10679 paddress (target_gdbarch (), lma),
10680 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10681 if (res)
c906108c
SS
10682 printf_filtered ("matched.\n");
10683 else
c5aa993b
JM
10684 {
10685 printf_filtered ("MIS-MATCHED!\n");
10686 mismatched++;
10687 }
c906108c
SS
10688 }
10689 if (mismatched > 0)
936d2992 10690 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10691the loaded file\n"));
c906108c 10692 if (args && !matched)
a3f17187 10693 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10694}
10695
0e7f50da
UW
10696/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10697 into remote target. The number of bytes written to the remote
10698 target is returned, or -1 for error. */
10699
6b8edb51
PA
10700target_xfer_status
10701remote_target::remote_write_qxfer (const char *object_name,
10702 const char *annex, const gdb_byte *writebuf,
10703 ULONGEST offset, LONGEST len,
10704 ULONGEST *xfered_len,
10705 struct packet_config *packet)
0e7f50da
UW
10706{
10707 int i, buf_len;
10708 ULONGEST n;
0e7f50da
UW
10709 struct remote_state *rs = get_remote_state ();
10710 int max_size = get_memory_write_packet_size ();
10711
7cc244de 10712 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10713 return TARGET_XFER_E_IO;
0e7f50da
UW
10714
10715 /* Insert header. */
8d64371b 10716 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10717 "qXfer:%s:write:%s:%s:",
10718 object_name, annex ? annex : "",
10719 phex_nz (offset, sizeof offset));
10720 max_size -= (i + 1);
10721
10722 /* Escape as much data as fits into rs->buf. */
10723 buf_len = remote_escape_output
8d64371b 10724 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10725
8d64371b
TT
10726 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10727 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10728 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10729 return TARGET_XFER_E_IO;
0e7f50da 10730
8d64371b 10731 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10732
10733 *xfered_len = n;
92ffd475 10734 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10735}
10736
0876f84a
DJ
10737/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10738 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10739 number of bytes read is returned, or 0 for EOF, or -1 for error.
10740 The number of bytes read may be less than LEN without indicating an
10741 EOF. PACKET is checked and updated to indicate whether the remote
10742 target supports this object. */
10743
6b8edb51
PA
10744target_xfer_status
10745remote_target::remote_read_qxfer (const char *object_name,
10746 const char *annex,
10747 gdb_byte *readbuf, ULONGEST offset,
10748 LONGEST len,
10749 ULONGEST *xfered_len,
10750 struct packet_config *packet)
0876f84a 10751{
0876f84a 10752 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10753 LONGEST i, n, packet_len;
10754
7cc244de 10755 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10756 return TARGET_XFER_E_IO;
0876f84a
DJ
10757
10758 /* Check whether we've cached an end-of-object packet that matches
10759 this request. */
8e88304f 10760 if (rs->finished_object)
0876f84a 10761 {
8e88304f
TT
10762 if (strcmp (object_name, rs->finished_object) == 0
10763 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10764 && offset == rs->finished_offset)
9b409511
YQ
10765 return TARGET_XFER_EOF;
10766
0876f84a
DJ
10767
10768 /* Otherwise, we're now reading something different. Discard
10769 the cache. */
8e88304f
TT
10770 xfree (rs->finished_object);
10771 xfree (rs->finished_annex);
10772 rs->finished_object = NULL;
10773 rs->finished_annex = NULL;
0876f84a
DJ
10774 }
10775
10776 /* Request only enough to fit in a single packet. The actual data
10777 may not, since we don't know how much of it will need to be escaped;
10778 the target is free to respond with slightly less data. We subtract
10779 five to account for the response type and the protocol frame. */
768adc05 10780 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10781 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10782 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10783 object_name, annex ? annex : "",
10784 phex_nz (offset, sizeof offset),
10785 phex_nz (n, sizeof n));
10786 i = putpkt (rs->buf);
10787 if (i < 0)
2ed4b548 10788 return TARGET_XFER_E_IO;
0876f84a
DJ
10789
10790 rs->buf[0] = '\0';
8d64371b 10791 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10792 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10793 return TARGET_XFER_E_IO;
0876f84a
DJ
10794
10795 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10796 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10797
10798 /* 'm' means there is (or at least might be) more data after this
10799 batch. That does not make sense unless there's at least one byte
10800 of data in this reply. */
10801 if (rs->buf[0] == 'm' && packet_len == 1)
10802 error (_("Remote qXfer reply contained no data."));
10803
10804 /* Got some data. */
8d64371b 10805 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10806 packet_len - 1, readbuf, n);
0876f84a
DJ
10807
10808 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10809 or possibly empty. If we have the final block of a non-empty
10810 object, record this fact to bypass a subsequent partial read. */
10811 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10812 {
8e88304f
TT
10813 rs->finished_object = xstrdup (object_name);
10814 rs->finished_annex = xstrdup (annex ? annex : "");
10815 rs->finished_offset = offset + i;
0876f84a
DJ
10816 }
10817
9b409511
YQ
10818 if (i == 0)
10819 return TARGET_XFER_EOF;
10820 else
10821 {
10822 *xfered_len = i;
10823 return TARGET_XFER_OK;
10824 }
0876f84a
DJ
10825}
10826
f6ac5f3d
PA
10827enum target_xfer_status
10828remote_target::xfer_partial (enum target_object object,
10829 const char *annex, gdb_byte *readbuf,
10830 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10831 ULONGEST *xfered_len)
c906108c 10832{
82f73884 10833 struct remote_state *rs;
c906108c 10834 int i;
6d820c5c 10835 char *p2;
1e3ff5ad 10836 char query_type;
124e13d9 10837 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10838
e6e4e701 10839 set_remote_traceframe ();
82f73884
PA
10840 set_general_thread (inferior_ptid);
10841
10842 rs = get_remote_state ();
10843
b2182ed2 10844 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10845 if (object == TARGET_OBJECT_MEMORY)
10846 {
2d717e4f
DJ
10847 /* If the remote target is connected but not running, we should
10848 pass this request down to a lower stratum (e.g. the executable
10849 file). */
10850 if (!target_has_execution)
9b409511 10851 return TARGET_XFER_EOF;
2d717e4f 10852
21e3b9b9 10853 if (writebuf != NULL)
124e13d9
SM
10854 return remote_write_bytes (offset, writebuf, len, unit_size,
10855 xfered_len);
21e3b9b9 10856 else
6b8edb51 10857 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10858 xfered_len);
21e3b9b9
DJ
10859 }
10860
0df8b418 10861 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10862 if (object == TARGET_OBJECT_SPU)
10863 {
10864 if (readbuf)
f6ac5f3d 10865 return remote_read_qxfer ("spu", annex, readbuf, offset, len,
9b409511
YQ
10866 xfered_len, &remote_protocol_packets
10867 [PACKET_qXfer_spu_read]);
0e7f50da 10868 else
f6ac5f3d 10869 return remote_write_qxfer ("spu", annex, writebuf, offset, len,
9b409511
YQ
10870 xfered_len, &remote_protocol_packets
10871 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10872 }
10873
4aa995e1
PA
10874 /* Handle extra signal info using qxfer packets. */
10875 if (object == TARGET_OBJECT_SIGNAL_INFO)
10876 {
10877 if (readbuf)
f6ac5f3d 10878 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10879 xfered_len, &remote_protocol_packets
4aa995e1
PA
10880 [PACKET_qXfer_siginfo_read]);
10881 else
f6ac5f3d 10882 return remote_write_qxfer ("siginfo", annex,
9b409511 10883 writebuf, offset, len, xfered_len,
4aa995e1
PA
10884 &remote_protocol_packets
10885 [PACKET_qXfer_siginfo_write]);
10886 }
10887
0fb4aa4b
PA
10888 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10889 {
10890 if (readbuf)
f6ac5f3d 10891 return remote_read_qxfer ("statictrace", annex,
9b409511 10892 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10893 &remote_protocol_packets
10894 [PACKET_qXfer_statictrace_read]);
10895 else
2ed4b548 10896 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10897 }
10898
a76d924d
DJ
10899 /* Only handle flash writes. */
10900 if (writebuf != NULL)
10901 {
a76d924d
DJ
10902 switch (object)
10903 {
10904 case TARGET_OBJECT_FLASH:
6b8edb51 10905 return remote_flash_write (offset, len, xfered_len,
9b409511 10906 writebuf);
a76d924d
DJ
10907
10908 default:
2ed4b548 10909 return TARGET_XFER_E_IO;
a76d924d
DJ
10910 }
10911 }
4b8a223f 10912
1e3ff5ad
AC
10913 /* Map pre-existing objects onto letters. DO NOT do this for new
10914 objects!!! Instead specify new query packets. */
10915 switch (object)
c906108c 10916 {
1e3ff5ad
AC
10917 case TARGET_OBJECT_AVR:
10918 query_type = 'R';
10919 break;
802188a7
RM
10920
10921 case TARGET_OBJECT_AUXV:
0876f84a 10922 gdb_assert (annex == NULL);
f6ac5f3d 10923 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10924 xfered_len,
0876f84a 10925 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10926
23181151
DJ
10927 case TARGET_OBJECT_AVAILABLE_FEATURES:
10928 return remote_read_qxfer
f6ac5f3d 10929 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10930 &remote_protocol_packets[PACKET_qXfer_features]);
10931
cfa9d6d9
DJ
10932 case TARGET_OBJECT_LIBRARIES:
10933 return remote_read_qxfer
f6ac5f3d 10934 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10935 &remote_protocol_packets[PACKET_qXfer_libraries]);
10936
2268b414
JK
10937 case TARGET_OBJECT_LIBRARIES_SVR4:
10938 return remote_read_qxfer
f6ac5f3d 10939 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10940 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10941
fd79ecee
DJ
10942 case TARGET_OBJECT_MEMORY_MAP:
10943 gdb_assert (annex == NULL);
f6ac5f3d 10944 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10945 xfered_len,
fd79ecee
DJ
10946 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10947
07e059b5
VP
10948 case TARGET_OBJECT_OSDATA:
10949 /* Should only get here if we're connected. */
5d93a237 10950 gdb_assert (rs->remote_desc);
07e059b5 10951 return remote_read_qxfer
f6ac5f3d 10952 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10953 &remote_protocol_packets[PACKET_qXfer_osdata]);
10954
dc146f7c
VP
10955 case TARGET_OBJECT_THREADS:
10956 gdb_assert (annex == NULL);
f6ac5f3d 10957 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10958 xfered_len,
dc146f7c
VP
10959 &remote_protocol_packets[PACKET_qXfer_threads]);
10960
b3b9301e
PA
10961 case TARGET_OBJECT_TRACEFRAME_INFO:
10962 gdb_assert (annex == NULL);
10963 return remote_read_qxfer
f6ac5f3d 10964 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10965 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10966
10967 case TARGET_OBJECT_FDPIC:
f6ac5f3d 10968 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 10969 xfered_len,
78d85199 10970 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10971
10972 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 10973 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 10974 xfered_len,
169081d0
TG
10975 &remote_protocol_packets[PACKET_qXfer_uib]);
10976
9accd112 10977 case TARGET_OBJECT_BTRACE:
f6ac5f3d 10978 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 10979 xfered_len,
9accd112
MM
10980 &remote_protocol_packets[PACKET_qXfer_btrace]);
10981
f4abbc16 10982 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 10983 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
10984 len, xfered_len,
10985 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10986
c78fa86a 10987 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 10988 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
10989 len, xfered_len,
10990 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10991
1e3ff5ad 10992 default:
2ed4b548 10993 return TARGET_XFER_E_IO;
c906108c
SS
10994 }
10995
0df8b418 10996 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10997 large enough let the caller deal with it. */
ea9c271d 10998 if (len < get_remote_packet_size ())
2ed4b548 10999 return TARGET_XFER_E_IO;
ea9c271d 11000 len = get_remote_packet_size ();
1e3ff5ad 11001
23860348 11002 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11003 if (!rs->remote_desc)
8a3fe4f8 11004 error (_("remote query is only available after target open"));
c906108c 11005
1e3ff5ad 11006 gdb_assert (annex != NULL);
4b8a223f 11007 gdb_assert (readbuf != NULL);
c906108c 11008
8d64371b 11009 p2 = rs->buf.data ();
c906108c
SS
11010 *p2++ = 'q';
11011 *p2++ = query_type;
11012
23860348
MS
11013 /* We used one buffer char for the remote protocol q command and
11014 another for the query type. As the remote protocol encapsulation
11015 uses 4 chars plus one extra in case we are debugging
11016 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11017 string. */
c906108c 11018 i = 0;
ea9c271d 11019 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11020 {
1e3ff5ad
AC
11021 /* Bad caller may have sent forbidden characters. */
11022 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11023 *p2++ = annex[i];
c906108c
SS
11024 i++;
11025 }
1e3ff5ad
AC
11026 *p2 = '\0';
11027 gdb_assert (annex[i] == '\0');
c906108c 11028
6d820c5c 11029 i = putpkt (rs->buf);
c5aa993b 11030 if (i < 0)
2ed4b548 11031 return TARGET_XFER_E_IO;
c906108c 11032
8d64371b
TT
11033 getpkt (&rs->buf, 0);
11034 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11035
9b409511 11036 *xfered_len = strlen ((char *) readbuf);
92ffd475 11037 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11038}
11039
09c98b44
DB
11040/* Implementation of to_get_memory_xfer_limit. */
11041
f6ac5f3d
PA
11042ULONGEST
11043remote_target::get_memory_xfer_limit ()
09c98b44
DB
11044{
11045 return get_memory_write_packet_size ();
11046}
11047
f6ac5f3d
PA
11048int
11049remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11050 const gdb_byte *pattern, ULONGEST pattern_len,
11051 CORE_ADDR *found_addrp)
08388c79 11052{
f5656ead 11053 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11054 struct remote_state *rs = get_remote_state ();
11055 int max_size = get_memory_write_packet_size ();
11056 struct packet_config *packet =
11057 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11058 /* Number of packet bytes used to encode the pattern;
11059 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11060 int escaped_pattern_len;
0df8b418 11061 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11062 int used_pattern_len;
11063 int i;
11064 int found;
11065 ULONGEST found_addr;
11066
7cc244de
PA
11067 /* Don't go to the target if we don't have to. This is done before
11068 checking packet_config_support to avoid the possibility that a
11069 success for this edge case means the facility works in
11070 general. */
08388c79
DE
11071 if (pattern_len > search_space_len)
11072 return 0;
11073 if (pattern_len == 0)
11074 {
11075 *found_addrp = start_addr;
11076 return 1;
11077 }
11078
11079 /* If we already know the packet isn't supported, fall back to the simple
11080 way of searching memory. */
11081
4082afcc 11082 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11083 {
11084 /* Target doesn't provided special support, fall back and use the
11085 standard support (copy memory and do the search here). */
f6ac5f3d 11086 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11087 pattern, pattern_len, found_addrp);
11088 }
11089
28439a30
PA
11090 /* Make sure the remote is pointing at the right process. */
11091 set_general_process ();
11092
08388c79 11093 /* Insert header. */
8d64371b 11094 i = snprintf (rs->buf.data (), max_size,
08388c79 11095 "qSearch:memory:%s;%s;",
5af949e3 11096 phex_nz (start_addr, addr_size),
08388c79
DE
11097 phex_nz (search_space_len, sizeof (search_space_len)));
11098 max_size -= (i + 1);
11099
11100 /* Escape as much data as fits into rs->buf. */
11101 escaped_pattern_len =
8d64371b
TT
11102 remote_escape_output (pattern, pattern_len, 1,
11103 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11104 &used_pattern_len, max_size);
11105
11106 /* Bail if the pattern is too large. */
11107 if (used_pattern_len != pattern_len)
9b20d036 11108 error (_("Pattern is too large to transmit to remote target."));
08388c79 11109
8d64371b
TT
11110 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11111 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11112 || packet_ok (rs->buf, packet) != PACKET_OK)
11113 {
11114 /* The request may not have worked because the command is not
11115 supported. If so, fall back to the simple way. */
7cc244de 11116 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11117 {
f6ac5f3d 11118 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11119 pattern, pattern_len, found_addrp);
11120 }
11121 return -1;
11122 }
11123
11124 if (rs->buf[0] == '0')
11125 found = 0;
11126 else if (rs->buf[0] == '1')
11127 {
11128 found = 1;
11129 if (rs->buf[1] != ',')
8d64371b
TT
11130 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11131 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11132 *found_addrp = found_addr;
11133 }
11134 else
8d64371b 11135 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11136
11137 return found;
11138}
11139
f6ac5f3d
PA
11140void
11141remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11142{
d01949b6 11143 struct remote_state *rs = get_remote_state ();
8d64371b 11144 char *p = rs->buf.data ();
96baa820 11145
5d93a237 11146 if (!rs->remote_desc)
8a3fe4f8 11147 error (_("remote rcmd is only available after target open"));
96baa820 11148
23860348 11149 /* Send a NULL command across as an empty command. */
7be570e7
JM
11150 if (command == NULL)
11151 command = "";
11152
23860348 11153 /* The query prefix. */
8d64371b
TT
11154 strcpy (rs->buf.data (), "qRcmd,");
11155 p = strchr (rs->buf.data (), '\0');
96baa820 11156
8d64371b 11157 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11158 > get_remote_packet_size ())
8a3fe4f8 11159 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11160
23860348 11161 /* Encode the actual command. */
a30bf1f1 11162 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11163
6d820c5c 11164 if (putpkt (rs->buf) < 0)
8a3fe4f8 11165 error (_("Communication problem with target."));
96baa820
JM
11166
11167 /* get/display the response */
11168 while (1)
11169 {
2e9f7625
DJ
11170 char *buf;
11171
00bf0b85 11172 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11173 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11174 rs->buf[0] = '\0';
8d64371b 11175 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11176 {
11177 /* Timeout. Continue to (try to) read responses.
11178 This is better than stopping with an error, assuming the stub
11179 is still executing the (long) monitor command.
11180 If needed, the user can interrupt gdb using C-c, obtaining
11181 an effect similar to stop on timeout. */
11182 continue;
11183 }
8d64371b 11184 buf = rs->buf.data ();
96baa820 11185 if (buf[0] == '\0')
8a3fe4f8 11186 error (_("Target does not support this command."));
96baa820
JM
11187 if (buf[0] == 'O' && buf[1] != 'K')
11188 {
23860348 11189 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11190 continue;
11191 }
11192 if (strcmp (buf, "OK") == 0)
11193 break;
7be570e7
JM
11194 if (strlen (buf) == 3 && buf[0] == 'E'
11195 && isdigit (buf[1]) && isdigit (buf[2]))
11196 {
8a3fe4f8 11197 error (_("Protocol error with Rcmd"));
7be570e7 11198 }
96baa820
JM
11199 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11200 {
11201 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11202
96baa820
JM
11203 fputc_unfiltered (c, outbuf);
11204 }
11205 break;
11206 }
11207}
11208
f6ac5f3d
PA
11209std::vector<mem_region>
11210remote_target::memory_map ()
fd79ecee 11211{
a664f67e 11212 std::vector<mem_region> result;
9018be22 11213 gdb::optional<gdb::char_vector> text
8b88a78e 11214 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11215
11216 if (text)
9018be22 11217 result = parse_memory_map (text->data ());
fd79ecee
DJ
11218
11219 return result;
11220}
11221
c906108c 11222static void
ac88e2de 11223packet_command (const char *args, int from_tty)
c906108c 11224{
6b8edb51 11225 remote_target *remote = get_current_remote_target ();
c906108c 11226
6b8edb51 11227 if (remote == nullptr)
8a3fe4f8 11228 error (_("command can only be used with remote target"));
c906108c 11229
6b8edb51
PA
11230 remote->packet_command (args, from_tty);
11231}
11232
11233void
11234remote_target::packet_command (const char *args, int from_tty)
11235{
c5aa993b 11236 if (!args)
8a3fe4f8 11237 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11238
11239 puts_filtered ("sending: ");
11240 print_packet (args);
11241 puts_filtered ("\n");
11242 putpkt (args);
11243
6b8edb51
PA
11244 remote_state *rs = get_remote_state ();
11245
8d64371b 11246 getpkt (&rs->buf, 0);
c906108c 11247 puts_filtered ("received: ");
8d64371b 11248 print_packet (rs->buf.data ());
c906108c
SS
11249 puts_filtered ("\n");
11250}
11251
11252#if 0
23860348 11253/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11254
a14ed312 11255static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11256
a14ed312 11257static void threadset_test_cmd (char *cmd, int tty);
c906108c 11258
a14ed312 11259static void threadalive_test (char *cmd, int tty);
c906108c 11260
a14ed312 11261static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11262
23860348 11263int get_and_display_threadinfo (threadref *ref);
c906108c 11264
a14ed312 11265static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11266
23860348 11267static int thread_display_step (threadref *ref, void *context);
c906108c 11268
a14ed312 11269static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11270
a14ed312 11271static void init_remote_threadtests (void);
c906108c 11272
23860348 11273#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11274
11275static void
0b39b52e 11276threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11277{
11278 int sample_thread = SAMPLE_THREAD;
11279
a3f17187 11280 printf_filtered (_("Remote threadset test\n"));
79d7f229 11281 set_general_thread (sample_thread);
c906108c
SS
11282}
11283
11284
11285static void
0b39b52e 11286threadalive_test (const char *cmd, int tty)
c906108c
SS
11287{
11288 int sample_thread = SAMPLE_THREAD;
e99b03dc 11289 int pid = inferior_ptid.pid ();
fd79271b 11290 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11291
79d7f229 11292 if (remote_thread_alive (ptid))
c906108c
SS
11293 printf_filtered ("PASS: Thread alive test\n");
11294 else
11295 printf_filtered ("FAIL: Thread alive test\n");
11296}
11297
23860348 11298void output_threadid (char *title, threadref *ref);
c906108c
SS
11299
11300void
fba45db2 11301output_threadid (char *title, threadref *ref)
c906108c
SS
11302{
11303 char hexid[20];
11304
23860348 11305 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
11306 hexid[16] = 0;
11307 printf_filtered ("%s %s\n", title, (&hexid[0]));
11308}
11309
11310static void
0b39b52e 11311threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11312{
11313 int startflag = 1;
11314 threadref nextthread;
11315 int done, result_count;
11316 threadref threadlist[3];
11317
11318 printf_filtered ("Remote Threadlist test\n");
11319 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11320 &result_count, &threadlist[0]))
11321 printf_filtered ("FAIL: threadlist test\n");
11322 else
11323 {
11324 threadref *scan = threadlist;
11325 threadref *limit = scan + result_count;
11326
11327 while (scan < limit)
11328 output_threadid (" thread ", scan++);
11329 }
11330}
11331
11332void
fba45db2 11333display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11334{
11335 output_threadid ("Threadid: ", &info->threadid);
11336 printf_filtered ("Name: %s\n ", info->shortname);
11337 printf_filtered ("State: %s\n", info->display);
11338 printf_filtered ("other: %s\n\n", info->more_display);
11339}
11340
11341int
fba45db2 11342get_and_display_threadinfo (threadref *ref)
c906108c
SS
11343{
11344 int result;
11345 int set;
11346 struct gdb_ext_thread_info threadinfo;
11347
11348 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11349 | TAG_MOREDISPLAY | TAG_DISPLAY;
11350 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11351 display_thread_info (&threadinfo);
11352 return result;
11353}
11354
11355static void
0b39b52e 11356threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11357{
11358 int athread = SAMPLE_THREAD;
11359 threadref thread;
11360 int set;
11361
11362 int_to_threadref (&thread, athread);
11363 printf_filtered ("Remote Threadinfo test\n");
11364 if (!get_and_display_threadinfo (&thread))
11365 printf_filtered ("FAIL cannot get thread info\n");
11366}
11367
11368static int
fba45db2 11369thread_display_step (threadref *ref, void *context)
c906108c
SS
11370{
11371 /* output_threadid(" threadstep ",ref); *//* simple test */
11372 return get_and_display_threadinfo (ref);
11373}
11374
11375static void
0b39b52e 11376threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11377{
11378 printf_filtered ("Remote Threadlist update test\n");
11379 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11380}
11381
11382static void
11383init_remote_threadtests (void)
11384{
3e43a32a
MS
11385 add_com ("tlist", class_obscure, threadlist_test_cmd,
11386 _("Fetch and print the remote list of "
11387 "thread identifiers, one pkt only"));
c906108c 11388 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 11389 _("Fetch and display info about one thread"));
c906108c 11390 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 11391 _("Test setting to a different thread"));
c906108c 11392 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 11393 _("Iterate through updating all remote thread info"));
c906108c 11394 add_com ("talive", class_obscure, threadalive_test,
1bedd215 11395 _(" Remote thread alive test "));
c906108c
SS
11396}
11397
11398#endif /* 0 */
11399
a068643d 11400/* Convert a thread ID to a string. */
f3fb8c85 11401
a068643d 11402std::string
f6ac5f3d 11403remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11404{
82f73884 11405 struct remote_state *rs = get_remote_state ();
f3fb8c85 11406
d7e15655 11407 if (ptid == null_ptid)
7cee1e54 11408 return normal_pid_to_str (ptid);
0e998d96 11409 else if (ptid.is_pid ())
ecd0ada5
PA
11410 {
11411 /* Printing an inferior target id. */
11412
11413 /* When multi-process extensions are off, there's no way in the
11414 remote protocol to know the remote process id, if there's any
11415 at all. There's one exception --- when we're connected with
11416 target extended-remote, and we manually attached to a process
11417 with "attach PID". We don't record anywhere a flag that
11418 allows us to distinguish that case from the case of
11419 connecting with extended-remote and the stub already being
11420 attached to a process, and reporting yes to qAttached, hence
11421 no smart special casing here. */
11422 if (!remote_multi_process_p (rs))
a068643d 11423 return "Remote target";
ecd0ada5
PA
11424
11425 return normal_pid_to_str (ptid);
82f73884 11426 }
ecd0ada5 11427 else
79d7f229 11428 {
d7e15655 11429 if (magic_null_ptid == ptid)
a068643d 11430 return "Thread <main>";
8020350c 11431 else if (remote_multi_process_p (rs))
e38504b3 11432 if (ptid.lwp () == 0)
de0d863e
DB
11433 return normal_pid_to_str (ptid);
11434 else
a068643d
TT
11435 return string_printf ("Thread %d.%ld",
11436 ptid.pid (), ptid.lwp ());
ecd0ada5 11437 else
a068643d 11438 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11439 }
f3fb8c85
MS
11440}
11441
38691318
KB
11442/* Get the address of the thread local variable in OBJFILE which is
11443 stored at OFFSET within the thread local storage for thread PTID. */
11444
f6ac5f3d
PA
11445CORE_ADDR
11446remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11447 CORE_ADDR offset)
38691318 11448{
4082afcc 11449 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11450 {
11451 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11452 char *p = rs->buf.data ();
11453 char *endp = p + get_remote_packet_size ();
571dd617 11454 enum packet_result result;
38691318
KB
11455
11456 strcpy (p, "qGetTLSAddr:");
11457 p += strlen (p);
82f73884 11458 p = write_ptid (p, endp, ptid);
38691318
KB
11459 *p++ = ',';
11460 p += hexnumstr (p, offset);
11461 *p++ = ',';
11462 p += hexnumstr (p, lm);
11463 *p++ = '\0';
11464
6d820c5c 11465 putpkt (rs->buf);
8d64371b 11466 getpkt (&rs->buf, 0);
3e43a32a
MS
11467 result = packet_ok (rs->buf,
11468 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11469 if (result == PACKET_OK)
38691318 11470 {
b926417a 11471 ULONGEST addr;
38691318 11472
8d64371b 11473 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11474 return addr;
38691318 11475 }
571dd617 11476 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11477 throw_error (TLS_GENERIC_ERROR,
11478 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11479 else
109c3e39
AC
11480 throw_error (TLS_GENERIC_ERROR,
11481 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11482 }
11483 else
109c3e39
AC
11484 throw_error (TLS_GENERIC_ERROR,
11485 _("TLS not supported or disabled on this target"));
38691318
KB
11486 /* Not reached. */
11487 return 0;
11488}
11489
711e434b
PM
11490/* Provide thread local base, i.e. Thread Information Block address.
11491 Returns 1 if ptid is found and thread_local_base is non zero. */
11492
57810aa7 11493bool
f6ac5f3d 11494remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11495{
4082afcc 11496 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11497 {
11498 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11499 char *p = rs->buf.data ();
11500 char *endp = p + get_remote_packet_size ();
711e434b
PM
11501 enum packet_result result;
11502
11503 strcpy (p, "qGetTIBAddr:");
11504 p += strlen (p);
11505 p = write_ptid (p, endp, ptid);
11506 *p++ = '\0';
11507
11508 putpkt (rs->buf);
8d64371b 11509 getpkt (&rs->buf, 0);
711e434b
PM
11510 result = packet_ok (rs->buf,
11511 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11512 if (result == PACKET_OK)
11513 {
b926417a 11514 ULONGEST val;
8d64371b 11515 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11516 if (addr)
b926417a 11517 *addr = (CORE_ADDR) val;
57810aa7 11518 return true;
711e434b
PM
11519 }
11520 else if (result == PACKET_UNKNOWN)
11521 error (_("Remote target doesn't support qGetTIBAddr packet"));
11522 else
11523 error (_("Remote target failed to process qGetTIBAddr request"));
11524 }
11525 else
11526 error (_("qGetTIBAddr not supported or disabled on this target"));
11527 /* Not reached. */
57810aa7 11528 return false;
711e434b
PM
11529}
11530
29709017
DJ
11531/* Support for inferring a target description based on the current
11532 architecture and the size of a 'g' packet. While the 'g' packet
11533 can have any size (since optional registers can be left off the
11534 end), some sizes are easily recognizable given knowledge of the
11535 approximate architecture. */
11536
11537struct remote_g_packet_guess
11538{
eefce37f
TT
11539 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11540 : bytes (bytes_),
11541 tdesc (tdesc_)
11542 {
11543 }
11544
29709017
DJ
11545 int bytes;
11546 const struct target_desc *tdesc;
11547};
29709017 11548
eefce37f 11549struct remote_g_packet_data : public allocate_on_obstack
29709017 11550{
eefce37f 11551 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11552};
11553
11554static struct gdbarch_data *remote_g_packet_data_handle;
11555
11556static void *
11557remote_g_packet_data_init (struct obstack *obstack)
11558{
eefce37f 11559 return new (obstack) remote_g_packet_data;
29709017
DJ
11560}
11561
11562void
11563register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11564 const struct target_desc *tdesc)
11565{
11566 struct remote_g_packet_data *data
19ba03f4
SM
11567 = ((struct remote_g_packet_data *)
11568 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11569
11570 gdb_assert (tdesc != NULL);
11571
eefce37f
TT
11572 for (const remote_g_packet_guess &guess : data->guesses)
11573 if (guess.bytes == bytes)
29709017 11574 internal_error (__FILE__, __LINE__,
9b20d036 11575 _("Duplicate g packet description added for size %d"),
29709017
DJ
11576 bytes);
11577
eefce37f 11578 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11579}
11580
eefce37f
TT
11581/* Return true if remote_read_description would do anything on this target
11582 and architecture, false otherwise. */
d962ef82 11583
eefce37f 11584static bool
d962ef82
DJ
11585remote_read_description_p (struct target_ops *target)
11586{
11587 struct remote_g_packet_data *data
19ba03f4
SM
11588 = ((struct remote_g_packet_data *)
11589 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11590
eefce37f 11591 return !data->guesses.empty ();
d962ef82
DJ
11592}
11593
f6ac5f3d
PA
11594const struct target_desc *
11595remote_target::read_description ()
29709017
DJ
11596{
11597 struct remote_g_packet_data *data
19ba03f4
SM
11598 = ((struct remote_g_packet_data *)
11599 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11600
d962ef82
DJ
11601 /* Do not try this during initial connection, when we do not know
11602 whether there is a running but stopped thread. */
d7e15655 11603 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11604 return beneath ()->read_description ();
d962ef82 11605
eefce37f 11606 if (!data->guesses.empty ())
29709017 11607 {
29709017
DJ
11608 int bytes = send_g_packet ();
11609
eefce37f
TT
11610 for (const remote_g_packet_guess &guess : data->guesses)
11611 if (guess.bytes == bytes)
11612 return guess.tdesc;
29709017
DJ
11613
11614 /* We discard the g packet. A minor optimization would be to
11615 hold on to it, and fill the register cache once we have selected
11616 an architecture, but it's too tricky to do safely. */
11617 }
11618
b6a8c27b 11619 return beneath ()->read_description ();
29709017
DJ
11620}
11621
a6b151f1
DJ
11622/* Remote file transfer support. This is host-initiated I/O, not
11623 target-initiated; for target-initiated, see remote-fileio.c. */
11624
11625/* If *LEFT is at least the length of STRING, copy STRING to
11626 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11627 decrease *LEFT. Otherwise raise an error. */
11628
11629static void
a121b7c1 11630remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11631{
11632 int len = strlen (string);
11633
11634 if (len > *left)
11635 error (_("Packet too long for target."));
11636
11637 memcpy (*buffer, string, len);
11638 *buffer += len;
11639 *left -= len;
11640
11641 /* NUL-terminate the buffer as a convenience, if there is
11642 room. */
11643 if (*left)
11644 **buffer = '\0';
11645}
11646
11647/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11648 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11649 decrease *LEFT. Otherwise raise an error. */
11650
11651static void
11652remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11653 int len)
11654{
11655 if (2 * len > *left)
11656 error (_("Packet too long for target."));
11657
11658 bin2hex (bytes, *buffer, len);
11659 *buffer += 2 * len;
11660 *left -= 2 * len;
11661
11662 /* NUL-terminate the buffer as a convenience, if there is
11663 room. */
11664 if (*left)
11665 **buffer = '\0';
11666}
11667
11668/* If *LEFT is large enough, convert VALUE to hex and add it to
11669 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11670 decrease *LEFT. Otherwise raise an error. */
11671
11672static void
11673remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11674{
11675 int len = hexnumlen (value);
11676
11677 if (len > *left)
11678 error (_("Packet too long for target."));
11679
11680 hexnumstr (*buffer, value);
11681 *buffer += len;
11682 *left -= len;
11683
11684 /* NUL-terminate the buffer as a convenience, if there is
11685 room. */
11686 if (*left)
11687 **buffer = '\0';
11688}
11689
11690/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11691 value, *REMOTE_ERRNO to the remote error number or zero if none
11692 was included, and *ATTACHMENT to point to the start of the annex
11693 if any. The length of the packet isn't needed here; there may
11694 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11695
11696 Return 0 if the packet could be parsed, -1 if it could not. If
11697 -1 is returned, the other variables may not be initialized. */
11698
11699static int
11700remote_hostio_parse_result (char *buffer, int *retcode,
11701 int *remote_errno, char **attachment)
11702{
11703 char *p, *p2;
11704
11705 *remote_errno = 0;
11706 *attachment = NULL;
11707
11708 if (buffer[0] != 'F')
11709 return -1;
11710
11711 errno = 0;
11712 *retcode = strtol (&buffer[1], &p, 16);
11713 if (errno != 0 || p == &buffer[1])
11714 return -1;
11715
11716 /* Check for ",errno". */
11717 if (*p == ',')
11718 {
11719 errno = 0;
11720 *remote_errno = strtol (p + 1, &p2, 16);
11721 if (errno != 0 || p + 1 == p2)
11722 return -1;
11723 p = p2;
11724 }
11725
11726 /* Check for ";attachment". If there is no attachment, the
11727 packet should end here. */
11728 if (*p == ';')
11729 {
11730 *attachment = p + 1;
11731 return 0;
11732 }
11733 else if (*p == '\0')
11734 return 0;
11735 else
11736 return -1;
11737}
11738
11739/* Send a prepared I/O packet to the target and read its response.
11740 The prepared packet is in the global RS->BUF before this function
11741 is called, and the answer is there when we return.
11742
11743 COMMAND_BYTES is the length of the request to send, which may include
11744 binary data. WHICH_PACKET is the packet configuration to check
11745 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11746 is set to the error number and -1 is returned. Otherwise the value
11747 returned by the function is returned.
11748
11749 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11750 attachment is expected; an error will be reported if there's a
11751 mismatch. If one is found, *ATTACHMENT will be set to point into
11752 the packet buffer and *ATTACHMENT_LEN will be set to the
11753 attachment's length. */
11754
6b8edb51
PA
11755int
11756remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11757 int *remote_errno, char **attachment,
11758 int *attachment_len)
a6b151f1
DJ
11759{
11760 struct remote_state *rs = get_remote_state ();
11761 int ret, bytes_read;
11762 char *attachment_tmp;
11763
20db9c52 11764 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11765 {
11766 *remote_errno = FILEIO_ENOSYS;
11767 return -1;
11768 }
11769
8d64371b
TT
11770 putpkt_binary (rs->buf.data (), command_bytes);
11771 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11772
11773 /* If it timed out, something is wrong. Don't try to parse the
11774 buffer. */
11775 if (bytes_read < 0)
11776 {
11777 *remote_errno = FILEIO_EINVAL;
11778 return -1;
11779 }
11780
11781 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11782 {
11783 case PACKET_ERROR:
11784 *remote_errno = FILEIO_EINVAL;
11785 return -1;
11786 case PACKET_UNKNOWN:
11787 *remote_errno = FILEIO_ENOSYS;
11788 return -1;
11789 case PACKET_OK:
11790 break;
11791 }
11792
8d64371b 11793 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11794 &attachment_tmp))
11795 {
11796 *remote_errno = FILEIO_EINVAL;
11797 return -1;
11798 }
11799
11800 /* Make sure we saw an attachment if and only if we expected one. */
11801 if ((attachment_tmp == NULL && attachment != NULL)
11802 || (attachment_tmp != NULL && attachment == NULL))
11803 {
11804 *remote_errno = FILEIO_EINVAL;
11805 return -1;
11806 }
11807
11808 /* If an attachment was found, it must point into the packet buffer;
11809 work out how many bytes there were. */
11810 if (attachment_tmp != NULL)
11811 {
11812 *attachment = attachment_tmp;
8d64371b 11813 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11814 }
11815
11816 return ret;
11817}
11818
dd194f6b 11819/* See declaration.h. */
80152258 11820
dd194f6b
PA
11821void
11822readahead_cache::invalidate ()
80152258 11823{
dd194f6b 11824 this->fd = -1;
80152258
PA
11825}
11826
dd194f6b 11827/* See declaration.h. */
80152258 11828
dd194f6b
PA
11829void
11830readahead_cache::invalidate_fd (int fd)
80152258 11831{
dd194f6b
PA
11832 if (this->fd == fd)
11833 this->fd = -1;
80152258
PA
11834}
11835
15a201c8
GB
11836/* Set the filesystem remote_hostio functions that take FILENAME
11837 arguments will use. Return 0 on success, or -1 if an error
11838 occurs (and set *REMOTE_ERRNO). */
11839
6b8edb51
PA
11840int
11841remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11842 int *remote_errno)
15a201c8
GB
11843{
11844 struct remote_state *rs = get_remote_state ();
11845 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11846 char *p = rs->buf.data ();
15a201c8
GB
11847 int left = get_remote_packet_size () - 1;
11848 char arg[9];
11849 int ret;
11850
11851 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11852 return 0;
11853
11854 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11855 return 0;
11856
11857 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11858
11859 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11860 remote_buffer_add_string (&p, &left, arg);
11861
8d64371b 11862 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11863 remote_errno, NULL, NULL);
11864
11865 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11866 return 0;
11867
11868 if (ret == 0)
11869 rs->fs_pid = required_pid;
11870
11871 return ret;
11872}
11873
12e2a5fd 11874/* Implementation of to_fileio_open. */
a6b151f1 11875
6b8edb51
PA
11876int
11877remote_target::remote_hostio_open (inferior *inf, const char *filename,
11878 int flags, int mode, int warn_if_slow,
11879 int *remote_errno)
a6b151f1
DJ
11880{
11881 struct remote_state *rs = get_remote_state ();
8d64371b 11882 char *p = rs->buf.data ();
a6b151f1
DJ
11883 int left = get_remote_packet_size () - 1;
11884
4313b8c0
GB
11885 if (warn_if_slow)
11886 {
11887 static int warning_issued = 0;
11888
11889 printf_unfiltered (_("Reading %s from remote target...\n"),
11890 filename);
11891
11892 if (!warning_issued)
11893 {
11894 warning (_("File transfers from remote targets can be slow."
11895 " Use \"set sysroot\" to access files locally"
11896 " instead."));
11897 warning_issued = 1;
11898 }
11899 }
11900
15a201c8
GB
11901 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11902 return -1;
11903
a6b151f1
DJ
11904 remote_buffer_add_string (&p, &left, "vFile:open:");
11905
11906 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11907 strlen (filename));
11908 remote_buffer_add_string (&p, &left, ",");
11909
11910 remote_buffer_add_int (&p, &left, flags);
11911 remote_buffer_add_string (&p, &left, ",");
11912
11913 remote_buffer_add_int (&p, &left, mode);
11914
8d64371b 11915 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11916 remote_errno, NULL, NULL);
11917}
11918
f6ac5f3d
PA
11919int
11920remote_target::fileio_open (struct inferior *inf, const char *filename,
11921 int flags, int mode, int warn_if_slow,
11922 int *remote_errno)
11923{
6b8edb51 11924 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11925 remote_errno);
11926}
11927
12e2a5fd 11928/* Implementation of to_fileio_pwrite. */
a6b151f1 11929
6b8edb51
PA
11930int
11931remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11932 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11933{
11934 struct remote_state *rs = get_remote_state ();
8d64371b 11935 char *p = rs->buf.data ();
a6b151f1
DJ
11936 int left = get_remote_packet_size ();
11937 int out_len;
11938
dd194f6b 11939 rs->readahead_cache.invalidate_fd (fd);
80152258 11940
a6b151f1
DJ
11941 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11942
11943 remote_buffer_add_int (&p, &left, fd);
11944 remote_buffer_add_string (&p, &left, ",");
11945
11946 remote_buffer_add_int (&p, &left, offset);
11947 remote_buffer_add_string (&p, &left, ",");
11948
124e13d9 11949 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11950 (get_remote_packet_size ()
11951 - (p - rs->buf.data ())));
a6b151f1 11952
8d64371b 11953 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11954 remote_errno, NULL, NULL);
11955}
11956
f6ac5f3d
PA
11957int
11958remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11959 ULONGEST offset, int *remote_errno)
11960{
6b8edb51 11961 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
11962}
11963
80152258
PA
11964/* Helper for the implementation of to_fileio_pread. Read the file
11965 from the remote side with vFile:pread. */
a6b151f1 11966
6b8edb51
PA
11967int
11968remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
11969 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11970{
11971 struct remote_state *rs = get_remote_state ();
8d64371b 11972 char *p = rs->buf.data ();
a6b151f1
DJ
11973 char *attachment;
11974 int left = get_remote_packet_size ();
11975 int ret, attachment_len;
11976 int read_len;
11977
11978 remote_buffer_add_string (&p, &left, "vFile:pread:");
11979
11980 remote_buffer_add_int (&p, &left, fd);
11981 remote_buffer_add_string (&p, &left, ",");
11982
11983 remote_buffer_add_int (&p, &left, len);
11984 remote_buffer_add_string (&p, &left, ",");
11985
11986 remote_buffer_add_int (&p, &left, offset);
11987
8d64371b 11988 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
11989 remote_errno, &attachment,
11990 &attachment_len);
11991
11992 if (ret < 0)
11993 return ret;
11994
bc20a4af 11995 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11996 read_buf, len);
11997 if (read_len != ret)
11998 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11999
12000 return ret;
12001}
12002
dd194f6b 12003/* See declaration.h. */
80152258 12004
dd194f6b
PA
12005int
12006readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12007 ULONGEST offset)
80152258 12008{
dd194f6b
PA
12009 if (this->fd == fd
12010 && this->offset <= offset
12011 && offset < this->offset + this->bufsize)
80152258 12012 {
dd194f6b 12013 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12014
12015 if (offset + len > max)
12016 len = max - offset;
12017
dd194f6b 12018 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12019 return len;
12020 }
12021
12022 return 0;
12023}
12024
12025/* Implementation of to_fileio_pread. */
12026
6b8edb51
PA
12027int
12028remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12029 ULONGEST offset, int *remote_errno)
80152258
PA
12030{
12031 int ret;
12032 struct remote_state *rs = get_remote_state ();
dd194f6b 12033 readahead_cache *cache = &rs->readahead_cache;
80152258 12034
dd194f6b 12035 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12036 if (ret > 0)
12037 {
12038 cache->hit_count++;
12039
12040 if (remote_debug)
12041 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12042 pulongest (cache->hit_count));
12043 return ret;
12044 }
12045
12046 cache->miss_count++;
12047 if (remote_debug)
12048 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12049 pulongest (cache->miss_count));
12050
12051 cache->fd = fd;
12052 cache->offset = offset;
12053 cache->bufsize = get_remote_packet_size ();
224c3ddb 12054 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12055
6b8edb51 12056 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12057 cache->offset, remote_errno);
12058 if (ret <= 0)
12059 {
dd194f6b 12060 cache->invalidate_fd (fd);
80152258
PA
12061 return ret;
12062 }
12063
12064 cache->bufsize = ret;
dd194f6b 12065 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12066}
12067
f6ac5f3d
PA
12068int
12069remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12070 ULONGEST offset, int *remote_errno)
12071{
6b8edb51 12072 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12073}
12074
12e2a5fd 12075/* Implementation of to_fileio_close. */
a6b151f1 12076
6b8edb51
PA
12077int
12078remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12079{
12080 struct remote_state *rs = get_remote_state ();
8d64371b 12081 char *p = rs->buf.data ();
a6b151f1
DJ
12082 int left = get_remote_packet_size () - 1;
12083
dd194f6b 12084 rs->readahead_cache.invalidate_fd (fd);
80152258 12085
a6b151f1
DJ
12086 remote_buffer_add_string (&p, &left, "vFile:close:");
12087
12088 remote_buffer_add_int (&p, &left, fd);
12089
8d64371b 12090 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12091 remote_errno, NULL, NULL);
12092}
12093
f6ac5f3d
PA
12094int
12095remote_target::fileio_close (int fd, int *remote_errno)
12096{
6b8edb51 12097 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12098}
12099
12e2a5fd 12100/* Implementation of to_fileio_unlink. */
a6b151f1 12101
6b8edb51
PA
12102int
12103remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12104 int *remote_errno)
a6b151f1
DJ
12105{
12106 struct remote_state *rs = get_remote_state ();
8d64371b 12107 char *p = rs->buf.data ();
a6b151f1
DJ
12108 int left = get_remote_packet_size () - 1;
12109
15a201c8
GB
12110 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12111 return -1;
12112
a6b151f1
DJ
12113 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12114
12115 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12116 strlen (filename));
12117
8d64371b 12118 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12119 remote_errno, NULL, NULL);
12120}
12121
f6ac5f3d
PA
12122int
12123remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12124 int *remote_errno)
12125{
6b8edb51 12126 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12127}
12128
12e2a5fd 12129/* Implementation of to_fileio_readlink. */
b9e7b9c3 12130
f6ac5f3d
PA
12131gdb::optional<std::string>
12132remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12133 int *remote_errno)
b9e7b9c3
UW
12134{
12135 struct remote_state *rs = get_remote_state ();
8d64371b 12136 char *p = rs->buf.data ();
b9e7b9c3
UW
12137 char *attachment;
12138 int left = get_remote_packet_size ();
12139 int len, attachment_len;
12140 int read_len;
b9e7b9c3 12141
15a201c8 12142 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12143 return {};
15a201c8 12144
b9e7b9c3
UW
12145 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12146
12147 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12148 strlen (filename));
12149
8d64371b 12150 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12151 remote_errno, &attachment,
12152 &attachment_len);
12153
12154 if (len < 0)
e0d3522b 12155 return {};
b9e7b9c3 12156
e0d3522b 12157 std::string ret (len, '\0');
b9e7b9c3 12158
bc20a4af 12159 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12160 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12161 if (read_len != len)
12162 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12163
b9e7b9c3
UW
12164 return ret;
12165}
12166
12e2a5fd 12167/* Implementation of to_fileio_fstat. */
0a93529c 12168
f6ac5f3d
PA
12169int
12170remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12171{
12172 struct remote_state *rs = get_remote_state ();
8d64371b 12173 char *p = rs->buf.data ();
0a93529c
GB
12174 int left = get_remote_packet_size ();
12175 int attachment_len, ret;
12176 char *attachment;
12177 struct fio_stat fst;
12178 int read_len;
12179
464b0089
GB
12180 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12181
12182 remote_buffer_add_int (&p, &left, fd);
12183
8d64371b 12184 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12185 remote_errno, &attachment,
12186 &attachment_len);
12187 if (ret < 0)
0a93529c 12188 {
464b0089
GB
12189 if (*remote_errno != FILEIO_ENOSYS)
12190 return ret;
12191
0a93529c
GB
12192 /* Strictly we should return -1, ENOSYS here, but when
12193 "set sysroot remote:" was implemented in August 2008
12194 BFD's need for a stat function was sidestepped with
12195 this hack. This was not remedied until March 2015
12196 so we retain the previous behavior to avoid breaking
12197 compatibility.
12198
12199 Note that the memset is a March 2015 addition; older
12200 GDBs set st_size *and nothing else* so the structure
12201 would have garbage in all other fields. This might
12202 break something but retaining the previous behavior
12203 here would be just too wrong. */
12204
12205 memset (st, 0, sizeof (struct stat));
12206 st->st_size = INT_MAX;
12207 return 0;
12208 }
12209
0a93529c
GB
12210 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12211 (gdb_byte *) &fst, sizeof (fst));
12212
12213 if (read_len != ret)
12214 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12215
12216 if (read_len != sizeof (fst))
12217 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12218 read_len, (int) sizeof (fst));
12219
12220 remote_fileio_to_host_stat (&fst, st);
12221
12222 return 0;
12223}
12224
12e2a5fd 12225/* Implementation of to_filesystem_is_local. */
e3dd7556 12226
57810aa7 12227bool
f6ac5f3d 12228remote_target::filesystem_is_local ()
e3dd7556
GB
12229{
12230 /* Valgrind GDB presents itself as a remote target but works
12231 on the local filesystem: it does not implement remote get
12232 and users are not expected to set a sysroot. To handle
12233 this case we treat the remote filesystem as local if the
12234 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12235 does not support vFile:open. */
a3be80c3 12236 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12237 {
12238 enum packet_support ps = packet_support (PACKET_vFile_open);
12239
12240 if (ps == PACKET_SUPPORT_UNKNOWN)
12241 {
12242 int fd, remote_errno;
12243
12244 /* Try opening a file to probe support. The supplied
12245 filename is irrelevant, we only care about whether
12246 the stub recognizes the packet or not. */
6b8edb51 12247 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12248 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12249 &remote_errno);
12250
12251 if (fd >= 0)
6b8edb51 12252 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12253
12254 ps = packet_support (PACKET_vFile_open);
12255 }
12256
12257 if (ps == PACKET_DISABLE)
12258 {
12259 static int warning_issued = 0;
12260
12261 if (!warning_issued)
12262 {
12263 warning (_("remote target does not support file"
12264 " transfer, attempting to access files"
12265 " from local filesystem."));
12266 warning_issued = 1;
12267 }
12268
57810aa7 12269 return true;
e3dd7556
GB
12270 }
12271 }
12272
57810aa7 12273 return false;
e3dd7556
GB
12274}
12275
a6b151f1
DJ
12276static int
12277remote_fileio_errno_to_host (int errnum)
12278{
12279 switch (errnum)
12280 {
12281 case FILEIO_EPERM:
12282 return EPERM;
12283 case FILEIO_ENOENT:
12284 return ENOENT;
12285 case FILEIO_EINTR:
12286 return EINTR;
12287 case FILEIO_EIO:
12288 return EIO;
12289 case FILEIO_EBADF:
12290 return EBADF;
12291 case FILEIO_EACCES:
12292 return EACCES;
12293 case FILEIO_EFAULT:
12294 return EFAULT;
12295 case FILEIO_EBUSY:
12296 return EBUSY;
12297 case FILEIO_EEXIST:
12298 return EEXIST;
12299 case FILEIO_ENODEV:
12300 return ENODEV;
12301 case FILEIO_ENOTDIR:
12302 return ENOTDIR;
12303 case FILEIO_EISDIR:
12304 return EISDIR;
12305 case FILEIO_EINVAL:
12306 return EINVAL;
12307 case FILEIO_ENFILE:
12308 return ENFILE;
12309 case FILEIO_EMFILE:
12310 return EMFILE;
12311 case FILEIO_EFBIG:
12312 return EFBIG;
12313 case FILEIO_ENOSPC:
12314 return ENOSPC;
12315 case FILEIO_ESPIPE:
12316 return ESPIPE;
12317 case FILEIO_EROFS:
12318 return EROFS;
12319 case FILEIO_ENOSYS:
12320 return ENOSYS;
12321 case FILEIO_ENAMETOOLONG:
12322 return ENAMETOOLONG;
12323 }
12324 return -1;
12325}
12326
12327static char *
12328remote_hostio_error (int errnum)
12329{
12330 int host_error = remote_fileio_errno_to_host (errnum);
12331
12332 if (host_error == -1)
12333 error (_("Unknown remote I/O error %d"), errnum);
12334 else
12335 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12336}
12337
440b7aec
PA
12338/* A RAII wrapper around a remote file descriptor. */
12339
12340class scoped_remote_fd
a6b151f1 12341{
440b7aec 12342public:
6b8edb51
PA
12343 scoped_remote_fd (remote_target *remote, int fd)
12344 : m_remote (remote), m_fd (fd)
440b7aec
PA
12345 {
12346 }
a6b151f1 12347
440b7aec
PA
12348 ~scoped_remote_fd ()
12349 {
12350 if (m_fd != -1)
12351 {
12352 try
12353 {
12354 int remote_errno;
6b8edb51 12355 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12356 }
12357 catch (...)
12358 {
12359 /* Swallow exception before it escapes the dtor. If
12360 something goes wrong, likely the connection is gone,
12361 and there's nothing else that can be done. */
12362 }
12363 }
12364 }
12365
12366 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12367
12368 /* Release ownership of the file descriptor, and return it. */
88a774b9 12369 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12370 {
12371 int fd = m_fd;
12372 m_fd = -1;
12373 return fd;
12374 }
12375
12376 /* Return the owned file descriptor. */
12377 int get () const noexcept
12378 {
12379 return m_fd;
12380 }
12381
12382private:
6b8edb51
PA
12383 /* The remote target. */
12384 remote_target *m_remote;
12385
440b7aec
PA
12386 /* The owned remote I/O file descriptor. */
12387 int m_fd;
12388};
a6b151f1
DJ
12389
12390void
12391remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12392{
12393 remote_target *remote = get_current_remote_target ();
12394
12395 if (remote == nullptr)
12396 error (_("command can only be used with remote target"));
12397
12398 remote->remote_file_put (local_file, remote_file, from_tty);
12399}
12400
12401void
12402remote_target::remote_file_put (const char *local_file, const char *remote_file,
12403 int from_tty)
a6b151f1 12404{
440b7aec 12405 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12406 int bytes_in_buffer;
12407 int saw_eof;
12408 ULONGEST offset;
a6b151f1 12409
d419f42d 12410 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12411 if (file == NULL)
12412 perror_with_name (local_file);
a6b151f1 12413
440b7aec 12414 scoped_remote_fd fd
6b8edb51
PA
12415 (this, remote_hostio_open (NULL,
12416 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12417 | FILEIO_O_TRUNC),
12418 0700, 0, &remote_errno));
440b7aec 12419 if (fd.get () == -1)
a6b151f1
DJ
12420 remote_hostio_error (remote_errno);
12421
12422 /* Send up to this many bytes at once. They won't all fit in the
12423 remote packet limit, so we'll transfer slightly fewer. */
12424 io_size = get_remote_packet_size ();
5ca3b260 12425 gdb::byte_vector buffer (io_size);
a6b151f1 12426
a6b151f1
DJ
12427 bytes_in_buffer = 0;
12428 saw_eof = 0;
12429 offset = 0;
12430 while (bytes_in_buffer || !saw_eof)
12431 {
12432 if (!saw_eof)
12433 {
5ca3b260 12434 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12435 io_size - bytes_in_buffer,
d419f42d 12436 file.get ());
a6b151f1
DJ
12437 if (bytes == 0)
12438 {
d419f42d 12439 if (ferror (file.get ()))
a6b151f1
DJ
12440 error (_("Error reading %s."), local_file);
12441 else
12442 {
12443 /* EOF. Unless there is something still in the
12444 buffer from the last iteration, we are done. */
12445 saw_eof = 1;
12446 if (bytes_in_buffer == 0)
12447 break;
12448 }
12449 }
12450 }
12451 else
12452 bytes = 0;
12453
12454 bytes += bytes_in_buffer;
12455 bytes_in_buffer = 0;
12456
5ca3b260 12457 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12458 offset, &remote_errno);
a6b151f1
DJ
12459
12460 if (retcode < 0)
12461 remote_hostio_error (remote_errno);
12462 else if (retcode == 0)
12463 error (_("Remote write of %d bytes returned 0!"), bytes);
12464 else if (retcode < bytes)
12465 {
12466 /* Short write. Save the rest of the read data for the next
12467 write. */
12468 bytes_in_buffer = bytes - retcode;
5ca3b260 12469 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12470 }
12471
12472 offset += retcode;
12473 }
12474
6b8edb51 12475 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12476 remote_hostio_error (remote_errno);
12477
12478 if (from_tty)
12479 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12480}
12481
12482void
12483remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12484{
12485 remote_target *remote = get_current_remote_target ();
12486
12487 if (remote == nullptr)
12488 error (_("command can only be used with remote target"));
12489
12490 remote->remote_file_get (remote_file, local_file, from_tty);
12491}
12492
12493void
12494remote_target::remote_file_get (const char *remote_file, const char *local_file,
12495 int from_tty)
a6b151f1 12496{
440b7aec 12497 int remote_errno, bytes, io_size;
a6b151f1 12498 ULONGEST offset;
a6b151f1 12499
440b7aec 12500 scoped_remote_fd fd
6b8edb51
PA
12501 (this, remote_hostio_open (NULL,
12502 remote_file, FILEIO_O_RDONLY, 0, 0,
12503 &remote_errno));
440b7aec 12504 if (fd.get () == -1)
a6b151f1
DJ
12505 remote_hostio_error (remote_errno);
12506
d419f42d 12507 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12508 if (file == NULL)
12509 perror_with_name (local_file);
a6b151f1
DJ
12510
12511 /* Send up to this many bytes at once. They won't all fit in the
12512 remote packet limit, so we'll transfer slightly fewer. */
12513 io_size = get_remote_packet_size ();
5ca3b260 12514 gdb::byte_vector buffer (io_size);
a6b151f1 12515
a6b151f1
DJ
12516 offset = 0;
12517 while (1)
12518 {
5ca3b260 12519 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12520 &remote_errno);
a6b151f1
DJ
12521 if (bytes == 0)
12522 /* Success, but no bytes, means end-of-file. */
12523 break;
12524 if (bytes == -1)
12525 remote_hostio_error (remote_errno);
12526
12527 offset += bytes;
12528
5ca3b260 12529 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12530 if (bytes == 0)
12531 perror_with_name (local_file);
12532 }
12533
6b8edb51 12534 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12535 remote_hostio_error (remote_errno);
12536
12537 if (from_tty)
12538 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12539}
12540
12541void
12542remote_file_delete (const char *remote_file, int from_tty)
12543{
6b8edb51 12544 remote_target *remote = get_current_remote_target ();
a6b151f1 12545
6b8edb51 12546 if (remote == nullptr)
a6b151f1
DJ
12547 error (_("command can only be used with remote target"));
12548
6b8edb51
PA
12549 remote->remote_file_delete (remote_file, from_tty);
12550}
12551
12552void
12553remote_target::remote_file_delete (const char *remote_file, int from_tty)
12554{
12555 int retcode, remote_errno;
12556
12557 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12558 if (retcode == -1)
12559 remote_hostio_error (remote_errno);
12560
12561 if (from_tty)
12562 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12563}
12564
12565static void
ac88e2de 12566remote_put_command (const char *args, int from_tty)
a6b151f1 12567{
d1a41061
PP
12568 if (args == NULL)
12569 error_no_arg (_("file to put"));
12570
773a1edc 12571 gdb_argv argv (args);
a6b151f1
DJ
12572 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12573 error (_("Invalid parameters to remote put"));
12574
12575 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12576}
12577
12578static void
ac88e2de 12579remote_get_command (const char *args, int from_tty)
a6b151f1 12580{
d1a41061
PP
12581 if (args == NULL)
12582 error_no_arg (_("file to get"));
12583
773a1edc 12584 gdb_argv argv (args);
a6b151f1
DJ
12585 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12586 error (_("Invalid parameters to remote get"));
12587
12588 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12589}
12590
12591static void
ac88e2de 12592remote_delete_command (const char *args, int from_tty)
a6b151f1 12593{
d1a41061
PP
12594 if (args == NULL)
12595 error_no_arg (_("file to delete"));
12596
773a1edc 12597 gdb_argv argv (args);
a6b151f1
DJ
12598 if (argv[0] == NULL || argv[1] != NULL)
12599 error (_("Invalid parameters to remote delete"));
12600
12601 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12602}
12603
12604static void
981a3fb3 12605remote_command (const char *args, int from_tty)
a6b151f1 12606{
635c7e8a 12607 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12608}
12609
57810aa7 12610bool
f6ac5f3d 12611remote_target::can_execute_reverse ()
b2175913 12612{
4082afcc
PA
12613 if (packet_support (PACKET_bs) == PACKET_ENABLE
12614 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12615 return true;
40ab02ce 12616 else
57810aa7 12617 return false;
b2175913
MS
12618}
12619
57810aa7 12620bool
f6ac5f3d 12621remote_target::supports_non_stop ()
74531fed 12622{
57810aa7 12623 return true;
74531fed
PA
12624}
12625
57810aa7 12626bool
f6ac5f3d 12627remote_target::supports_disable_randomization ()
03583c20
UW
12628{
12629 /* Only supported in extended mode. */
57810aa7 12630 return false;
03583c20
UW
12631}
12632
57810aa7 12633bool
f6ac5f3d 12634remote_target::supports_multi_process ()
8a305172
PA
12635{
12636 struct remote_state *rs = get_remote_state ();
a744cf53 12637
8020350c 12638 return remote_multi_process_p (rs);
8a305172
PA
12639}
12640
70221824 12641static int
f6ac5f3d 12642remote_supports_cond_tracepoints ()
782b2b07 12643{
4082afcc 12644 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12645}
12646
57810aa7 12647bool
f6ac5f3d 12648remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12649{
4082afcc 12650 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12651}
12652
70221824 12653static int
f6ac5f3d 12654remote_supports_fast_tracepoints ()
7a697b8d 12655{
4082afcc 12656 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12657}
12658
0fb4aa4b 12659static int
f6ac5f3d 12660remote_supports_static_tracepoints ()
0fb4aa4b 12661{
4082afcc 12662 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12663}
12664
1e4d1764 12665static int
f6ac5f3d 12666remote_supports_install_in_trace ()
1e4d1764 12667{
4082afcc 12668 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12669}
12670
57810aa7 12671bool
f6ac5f3d 12672remote_target::supports_enable_disable_tracepoint ()
d248b706 12673{
4082afcc
PA
12674 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12675 == PACKET_ENABLE);
d248b706
KY
12676}
12677
57810aa7 12678bool
f6ac5f3d 12679remote_target::supports_string_tracing ()
3065dfb6 12680{
4082afcc 12681 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12682}
12683
57810aa7 12684bool
f6ac5f3d 12685remote_target::can_run_breakpoint_commands ()
d3ce09f5 12686{
4082afcc 12687 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12688}
12689
f6ac5f3d
PA
12690void
12691remote_target::trace_init ()
35b1e5cc 12692{
b6bb3468
PA
12693 struct remote_state *rs = get_remote_state ();
12694
35b1e5cc 12695 putpkt ("QTinit");
b6bb3468 12696 remote_get_noisy_reply ();
8d64371b 12697 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12698 error (_("Target does not support this command."));
12699}
12700
409873ef
SS
12701/* Recursive routine to walk through command list including loops, and
12702 download packets for each command. */
12703
6b8edb51
PA
12704void
12705remote_target::remote_download_command_source (int num, ULONGEST addr,
12706 struct command_line *cmds)
409873ef
SS
12707{
12708 struct remote_state *rs = get_remote_state ();
12709 struct command_line *cmd;
12710
12711 for (cmd = cmds; cmd; cmd = cmd->next)
12712 {
0df8b418 12713 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12714 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12715 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12716 rs->buf.data () + strlen (rs->buf.data ()),
12717 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12718 putpkt (rs->buf);
b6bb3468 12719 remote_get_noisy_reply ();
8d64371b 12720 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12721 warning (_("Target does not support source download."));
12722
12723 if (cmd->control_type == while_control
12724 || cmd->control_type == while_stepping_control)
12725 {
12973681 12726 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12727
0df8b418 12728 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12729 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12730 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12731 rs->buf.data () + strlen (rs->buf.data ()),
12732 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12733 putpkt (rs->buf);
b6bb3468 12734 remote_get_noisy_reply ();
8d64371b 12735 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12736 warning (_("Target does not support source download."));
12737 }
12738 }
12739}
12740
f6ac5f3d
PA
12741void
12742remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12743{
12744 CORE_ADDR tpaddr;
409873ef 12745 char addrbuf[40];
b44ec619
SM
12746 std::vector<std::string> tdp_actions;
12747 std::vector<std::string> stepping_actions;
35b1e5cc 12748 char *pkt;
e8ba3115 12749 struct breakpoint *b = loc->owner;
d9b3f62e 12750 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12751 struct remote_state *rs = get_remote_state ();
3df3a985 12752 int ret;
ff36536c 12753 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12754 size_t size_left;
12755
12756 /* We use a buffer other than rs->buf because we'll build strings
12757 across multiple statements, and other statements in between could
12758 modify rs->buf. */
12759 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12760
dc673c81 12761 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12762
12763 tpaddr = loc->address;
12764 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12765 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12766 b->number, addrbuf, /* address */
12767 (b->enable_state == bp_enabled ? 'E' : 'D'),
12768 t->step_count, t->pass_count);
12769
12770 if (ret < 0 || ret >= buf.size ())
a7f25a84 12771 error ("%s", err_msg);
3df3a985 12772
e8ba3115
YQ
12773 /* Fast tracepoints are mostly handled by the target, but we can
12774 tell the target how big of an instruction block should be moved
12775 around. */
12776 if (b->type == bp_fast_tracepoint)
12777 {
12778 /* Only test for support at download time; we may not know
12779 target capabilities at definition time. */
12780 if (remote_supports_fast_tracepoints ())
35b1e5cc 12781 {
6b940e6a
PL
12782 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12783 NULL))
3df3a985
PFC
12784 {
12785 size_left = buf.size () - strlen (buf.data ());
12786 ret = snprintf (buf.data () + strlen (buf.data ()),
12787 size_left, ":F%x",
12788 gdb_insn_length (loc->gdbarch, tpaddr));
12789
12790 if (ret < 0 || ret >= size_left)
a7f25a84 12791 error ("%s", err_msg);
3df3a985 12792 }
35b1e5cc 12793 else
e8ba3115
YQ
12794 /* If it passed validation at definition but fails now,
12795 something is very wrong. */
12796 internal_error (__FILE__, __LINE__,
12797 _("Fast tracepoint not "
12798 "valid during download"));
35b1e5cc 12799 }
e8ba3115
YQ
12800 else
12801 /* Fast tracepoints are functionally identical to regular
12802 tracepoints, so don't take lack of support as a reason to
12803 give up on the trace run. */
12804 warning (_("Target does not support fast tracepoints, "
12805 "downloading %d as regular tracepoint"), b->number);
12806 }
12807 else if (b->type == bp_static_tracepoint)
12808 {
12809 /* Only test for support at download time; we may not know
12810 target capabilities at definition time. */
12811 if (remote_supports_static_tracepoints ())
0fb4aa4b 12812 {
e8ba3115 12813 struct static_tracepoint_marker marker;
0fb4aa4b 12814
e8ba3115 12815 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12816 {
12817 size_left = buf.size () - strlen (buf.data ());
12818 ret = snprintf (buf.data () + strlen (buf.data ()),
12819 size_left, ":S");
12820
12821 if (ret < 0 || ret >= size_left)
a7f25a84 12822 error ("%s", err_msg);
3df3a985 12823 }
0fb4aa4b 12824 else
e8ba3115 12825 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12826 }
e8ba3115
YQ
12827 else
12828 /* Fast tracepoints are functionally identical to regular
12829 tracepoints, so don't take lack of support as a reason
12830 to give up on the trace run. */
12831 error (_("Target does not support static tracepoints"));
12832 }
12833 /* If the tracepoint has a conditional, make it into an agent
12834 expression and append to the definition. */
12835 if (loc->cond)
12836 {
12837 /* Only test support at download time, we may not know target
12838 capabilities at definition time. */
12839 if (remote_supports_cond_tracepoints ())
35b1e5cc 12840 {
3df3a985
PFC
12841 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12842 loc->cond.get ());
12843
12844 size_left = buf.size () - strlen (buf.data ());
12845
12846 ret = snprintf (buf.data () + strlen (buf.data ()),
12847 size_left, ":X%x,", aexpr->len);
12848
12849 if (ret < 0 || ret >= size_left)
a7f25a84 12850 error ("%s", err_msg);
3df3a985
PFC
12851
12852 size_left = buf.size () - strlen (buf.data ());
12853
12854 /* Two bytes to encode each aexpr byte, plus the terminating
12855 null byte. */
12856 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12857 error ("%s", err_msg);
3df3a985
PFC
12858
12859 pkt = buf.data () + strlen (buf.data ());
12860
b44ec619 12861 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12862 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12863 *pkt = '\0';
35b1e5cc 12864 }
e8ba3115
YQ
12865 else
12866 warning (_("Target does not support conditional tracepoints, "
12867 "ignoring tp %d cond"), b->number);
12868 }
35b1e5cc 12869
d9b3f62e 12870 if (b->commands || *default_collect)
3df3a985
PFC
12871 {
12872 size_left = buf.size () - strlen (buf.data ());
12873
12874 ret = snprintf (buf.data () + strlen (buf.data ()),
12875 size_left, "-");
12876
12877 if (ret < 0 || ret >= size_left)
a7f25a84 12878 error ("%s", err_msg);
3df3a985
PFC
12879 }
12880
12881 putpkt (buf.data ());
b6bb3468 12882 remote_get_noisy_reply ();
8d64371b 12883 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12884 error (_("Target does not support tracepoints."));
35b1e5cc 12885
e8ba3115 12886 /* do_single_steps (t); */
b44ec619
SM
12887 for (auto action_it = tdp_actions.begin ();
12888 action_it != tdp_actions.end (); action_it++)
e8ba3115 12889 {
b44ec619
SM
12890 QUIT; /* Allow user to bail out with ^C. */
12891
aa6f3694 12892 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12893 || !stepping_actions.empty ());
12894
3df3a985
PFC
12895 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12896 b->number, addrbuf, /* address */
12897 action_it->c_str (),
12898 has_more ? '-' : 0);
12899
12900 if (ret < 0 || ret >= buf.size ())
a7f25a84 12901 error ("%s", err_msg);
3df3a985
PFC
12902
12903 putpkt (buf.data ());
b44ec619 12904 remote_get_noisy_reply ();
8d64371b 12905 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12906 error (_("Error on target while setting tracepoints."));
e8ba3115 12907 }
409873ef 12908
05abfc39
PFC
12909 for (auto action_it = stepping_actions.begin ();
12910 action_it != stepping_actions.end (); action_it++)
12911 {
12912 QUIT; /* Allow user to bail out with ^C. */
12913
12914 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12915 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12916
3df3a985
PFC
12917 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12918 b->number, addrbuf, /* address */
12919 is_first ? "S" : "",
12920 action_it->c_str (),
12921 has_more ? "-" : "");
12922
12923 if (ret < 0 || ret >= buf.size ())
a7f25a84 12924 error ("%s", err_msg);
3df3a985
PFC
12925
12926 putpkt (buf.data ());
05abfc39 12927 remote_get_noisy_reply ();
8d64371b 12928 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12929 error (_("Error on target while setting tracepoints."));
12930 }
b44ec619 12931
4082afcc 12932 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12933 {
f00aae0f 12934 if (b->location != NULL)
409873ef 12935 {
3df3a985
PFC
12936 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12937
12938 if (ret < 0 || ret >= buf.size ())
a7f25a84 12939 error ("%s", err_msg);
3df3a985 12940
f00aae0f 12941 encode_source_string (b->number, loc->address, "at",
d28cd78a 12942 event_location_to_string (b->location.get ()),
3df3a985
PFC
12943 buf.data () + strlen (buf.data ()),
12944 buf.size () - strlen (buf.data ()));
12945 putpkt (buf.data ());
b6bb3468 12946 remote_get_noisy_reply ();
8d64371b 12947 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12948 warning (_("Target does not support source download."));
409873ef 12949 }
e8ba3115
YQ
12950 if (b->cond_string)
12951 {
3df3a985
PFC
12952 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12953
12954 if (ret < 0 || ret >= buf.size ())
a7f25a84 12955 error ("%s", err_msg);
3df3a985 12956
e8ba3115 12957 encode_source_string (b->number, loc->address,
3df3a985
PFC
12958 "cond", b->cond_string,
12959 buf.data () + strlen (buf.data ()),
12960 buf.size () - strlen (buf.data ()));
12961 putpkt (buf.data ());
b6bb3468 12962 remote_get_noisy_reply ();
8d64371b 12963 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
12964 warning (_("Target does not support source download."));
12965 }
12966 remote_download_command_source (b->number, loc->address,
12967 breakpoint_commands (b));
35b1e5cc 12968 }
35b1e5cc
SS
12969}
12970
57810aa7 12971bool
f6ac5f3d 12972remote_target::can_download_tracepoint ()
1e4d1764 12973{
1e51243a
PA
12974 struct remote_state *rs = get_remote_state ();
12975 struct trace_status *ts;
12976 int status;
12977
12978 /* Don't try to install tracepoints until we've relocated our
12979 symbols, and fetched and merged the target's tracepoint list with
12980 ours. */
12981 if (rs->starting_up)
57810aa7 12982 return false;
1e51243a
PA
12983
12984 ts = current_trace_status ();
f6ac5f3d 12985 status = get_trace_status (ts);
1e4d1764
YQ
12986
12987 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 12988 return false;
1e4d1764
YQ
12989
12990 /* If we are in a tracing experiment, but remote stub doesn't support
12991 installing tracepoint in trace, we have to return. */
12992 if (!remote_supports_install_in_trace ())
57810aa7 12993 return false;
1e4d1764 12994
57810aa7 12995 return true;
1e4d1764
YQ
12996}
12997
12998
f6ac5f3d
PA
12999void
13000remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13001{
13002 struct remote_state *rs = get_remote_state ();
00bf0b85 13003 char *p;
35b1e5cc 13004
8d64371b 13005 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13006 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13007 tsv.builtin);
8d64371b
TT
13008 p = rs->buf.data () + strlen (rs->buf.data ());
13009 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13010 >= get_remote_packet_size ())
00bf0b85 13011 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13012 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13013 *p++ = '\0';
35b1e5cc 13014 putpkt (rs->buf);
b6bb3468 13015 remote_get_noisy_reply ();
8d64371b 13016 if (rs->buf[0] == '\0')
ad91cd99 13017 error (_("Target does not support this command."));
8d64371b 13018 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13019 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13020}
13021
f6ac5f3d
PA
13022void
13023remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13024{
13025 struct remote_state *rs = get_remote_state ();
13026 char addr_buf[40];
13027
13028 sprintf_vma (addr_buf, location->address);
8d64371b 13029 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 13030 location->owner->number, addr_buf);
d248b706 13031 putpkt (rs->buf);
b6bb3468 13032 remote_get_noisy_reply ();
8d64371b 13033 if (rs->buf[0] == '\0')
d248b706 13034 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13035 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13036 error (_("Error on target while enabling tracepoint."));
13037}
13038
f6ac5f3d
PA
13039void
13040remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13041{
13042 struct remote_state *rs = get_remote_state ();
13043 char addr_buf[40];
13044
13045 sprintf_vma (addr_buf, location->address);
8d64371b 13046 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13047 location->owner->number, addr_buf);
d248b706 13048 putpkt (rs->buf);
b6bb3468 13049 remote_get_noisy_reply ();
8d64371b 13050 if (rs->buf[0] == '\0')
d248b706 13051 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13052 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13053 error (_("Error on target while disabling tracepoint."));
13054}
13055
f6ac5f3d
PA
13056void
13057remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13058{
13059 asection *s;
81b9b86e 13060 bfd *abfd = NULL;
35b1e5cc 13061 bfd_size_type size;
608bcef2 13062 bfd_vma vma;
35b1e5cc 13063 int anysecs = 0;
c2fa21f1 13064 int offset = 0;
35b1e5cc
SS
13065
13066 if (!exec_bfd)
13067 return; /* No information to give. */
13068
b6bb3468
PA
13069 struct remote_state *rs = get_remote_state ();
13070
8d64371b
TT
13071 strcpy (rs->buf.data (), "QTro");
13072 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13073 for (s = exec_bfd->sections; s; s = s->next)
13074 {
13075 char tmp1[40], tmp2[40];
c2fa21f1 13076 int sec_length;
35b1e5cc
SS
13077
13078 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13079 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13080 (s->flags & SEC_READONLY) == 0)
13081 continue;
13082
13083 anysecs = 1;
81b9b86e 13084 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 13085 size = bfd_get_section_size (s);
608bcef2
HZ
13086 sprintf_vma (tmp1, vma);
13087 sprintf_vma (tmp2, vma + size);
c2fa21f1 13088 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13089 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13090 {
4082afcc 13091 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13092 warning (_("\
c2fa21f1
HZ
13093Too many sections for read-only sections definition packet."));
13094 break;
13095 }
8d64371b 13096 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13097 tmp1, tmp2);
c2fa21f1 13098 offset += sec_length;
35b1e5cc
SS
13099 }
13100 if (anysecs)
13101 {
b6bb3468 13102 putpkt (rs->buf);
8d64371b 13103 getpkt (&rs->buf, 0);
35b1e5cc
SS
13104 }
13105}
13106
f6ac5f3d
PA
13107void
13108remote_target::trace_start ()
35b1e5cc 13109{
b6bb3468
PA
13110 struct remote_state *rs = get_remote_state ();
13111
35b1e5cc 13112 putpkt ("QTStart");
b6bb3468 13113 remote_get_noisy_reply ();
8d64371b 13114 if (rs->buf[0] == '\0')
ad91cd99 13115 error (_("Target does not support this command."));
8d64371b
TT
13116 if (strcmp (rs->buf.data (), "OK") != 0)
13117 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13118}
13119
f6ac5f3d
PA
13120int
13121remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13122{
953b98d1 13123 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13124 char *p = NULL;
0df8b418 13125 /* FIXME we need to get register block size some other way. */
00bf0b85 13126 extern int trace_regblock_size;
bd3eecc3 13127 enum packet_result result;
b6bb3468 13128 struct remote_state *rs = get_remote_state ();
bd3eecc3 13129
4082afcc 13130 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13131 return -1;
a744cf53 13132
5cd63fda 13133 trace_regblock_size
9d6eea31 13134 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13135
049dc89b
JK
13136 putpkt ("qTStatus");
13137
492d29ea 13138 TRY
67f41397 13139 {
b6bb3468 13140 p = remote_get_noisy_reply ();
67f41397 13141 }
492d29ea 13142 CATCH (ex, RETURN_MASK_ERROR)
67f41397 13143 {
598d3636
JK
13144 if (ex.error != TARGET_CLOSE_ERROR)
13145 {
13146 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13147 return -1;
13148 }
13149 throw_exception (ex);
67f41397 13150 }
492d29ea 13151 END_CATCH
00bf0b85 13152
bd3eecc3
PA
13153 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13154
00bf0b85 13155 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13156 if (result == PACKET_UNKNOWN)
00bf0b85 13157 return -1;
35b1e5cc 13158
00bf0b85 13159 /* We're working with a live target. */
f5911ea1 13160 ts->filename = NULL;
00bf0b85 13161
00bf0b85 13162 if (*p++ != 'T')
8d64371b 13163 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13164
84cebc4a
YQ
13165 /* Function 'parse_trace_status' sets default value of each field of
13166 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13167 parse_trace_status (p, ts);
13168
13169 return ts->running;
35b1e5cc
SS
13170}
13171
f6ac5f3d
PA
13172void
13173remote_target::get_tracepoint_status (struct breakpoint *bp,
13174 struct uploaded_tp *utp)
f196051f
SS
13175{
13176 struct remote_state *rs = get_remote_state ();
f196051f
SS
13177 char *reply;
13178 struct bp_location *loc;
13179 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13180 size_t size = get_remote_packet_size ();
f196051f
SS
13181
13182 if (tp)
13183 {
c1fc2657 13184 tp->hit_count = 0;
f196051f 13185 tp->traceframe_usage = 0;
c1fc2657 13186 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13187 {
13188 /* If the tracepoint was never downloaded, don't go asking for
13189 any status. */
13190 if (tp->number_on_target == 0)
13191 continue;
8d64371b 13192 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13193 phex_nz (loc->address, 0));
f196051f 13194 putpkt (rs->buf);
b6bb3468 13195 reply = remote_get_noisy_reply ();
f196051f
SS
13196 if (reply && *reply)
13197 {
13198 if (*reply == 'V')
13199 parse_tracepoint_status (reply + 1, bp, utp);
13200 }
13201 }
13202 }
13203 else if (utp)
13204 {
13205 utp->hit_count = 0;
13206 utp->traceframe_usage = 0;
8d64371b 13207 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13208 phex_nz (utp->addr, 0));
f196051f 13209 putpkt (rs->buf);
b6bb3468 13210 reply = remote_get_noisy_reply ();
f196051f
SS
13211 if (reply && *reply)
13212 {
13213 if (*reply == 'V')
13214 parse_tracepoint_status (reply + 1, bp, utp);
13215 }
13216 }
13217}
13218
f6ac5f3d
PA
13219void
13220remote_target::trace_stop ()
35b1e5cc 13221{
b6bb3468
PA
13222 struct remote_state *rs = get_remote_state ();
13223
35b1e5cc 13224 putpkt ("QTStop");
b6bb3468 13225 remote_get_noisy_reply ();
8d64371b 13226 if (rs->buf[0] == '\0')
ad91cd99 13227 error (_("Target does not support this command."));
8d64371b
TT
13228 if (strcmp (rs->buf.data (), "OK") != 0)
13229 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13230}
13231
f6ac5f3d
PA
13232int
13233remote_target::trace_find (enum trace_find_type type, int num,
13234 CORE_ADDR addr1, CORE_ADDR addr2,
13235 int *tpp)
35b1e5cc
SS
13236{
13237 struct remote_state *rs = get_remote_state ();
8d64371b 13238 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13239 char *p, *reply;
13240 int target_frameno = -1, target_tracept = -1;
13241
e6e4e701
PA
13242 /* Lookups other than by absolute frame number depend on the current
13243 trace selected, so make sure it is correct on the remote end
13244 first. */
13245 if (type != tfind_number)
13246 set_remote_traceframe ();
13247
8d64371b 13248 p = rs->buf.data ();
35b1e5cc
SS
13249 strcpy (p, "QTFrame:");
13250 p = strchr (p, '\0');
13251 switch (type)
13252 {
13253 case tfind_number:
bba74b36 13254 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13255 break;
13256 case tfind_pc:
bba74b36 13257 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13258 break;
13259 case tfind_tp:
bba74b36 13260 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13261 break;
13262 case tfind_range:
bba74b36
YQ
13263 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13264 phex_nz (addr2, 0));
35b1e5cc
SS
13265 break;
13266 case tfind_outside:
bba74b36
YQ
13267 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13268 phex_nz (addr2, 0));
35b1e5cc
SS
13269 break;
13270 default:
9b20d036 13271 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13272 }
13273
13274 putpkt (rs->buf);
b6bb3468 13275 reply = remote_get_noisy_reply ();
ad91cd99
PA
13276 if (*reply == '\0')
13277 error (_("Target does not support this command."));
35b1e5cc
SS
13278
13279 while (reply && *reply)
13280 switch (*reply)
13281 {
13282 case 'F':
f197e0f1
VP
13283 p = ++reply;
13284 target_frameno = (int) strtol (p, &reply, 16);
13285 if (reply == p)
13286 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13287 /* Don't update our remote traceframe number cache on failure
13288 to select a remote traceframe. */
f197e0f1
VP
13289 if (target_frameno == -1)
13290 return -1;
35b1e5cc
SS
13291 break;
13292 case 'T':
f197e0f1
VP
13293 p = ++reply;
13294 target_tracept = (int) strtol (p, &reply, 16);
13295 if (reply == p)
13296 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13297 break;
13298 case 'O': /* "OK"? */
13299 if (reply[1] == 'K' && reply[2] == '\0')
13300 reply += 2;
13301 else
13302 error (_("Bogus reply from target: %s"), reply);
13303 break;
13304 default:
13305 error (_("Bogus reply from target: %s"), reply);
13306 }
13307 if (tpp)
13308 *tpp = target_tracept;
e6e4e701 13309
262e1174 13310 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13311 return target_frameno;
13312}
13313
57810aa7 13314bool
f6ac5f3d 13315remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13316{
13317 struct remote_state *rs = get_remote_state ();
13318 char *reply;
13319 ULONGEST uval;
13320
e6e4e701
PA
13321 set_remote_traceframe ();
13322
8d64371b 13323 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13324 putpkt (rs->buf);
b6bb3468 13325 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13326 if (reply && *reply)
13327 {
13328 if (*reply == 'V')
13329 {
13330 unpack_varlen_hex (reply + 1, &uval);
13331 *val = (LONGEST) uval;
57810aa7 13332 return true;
35b1e5cc
SS
13333 }
13334 }
57810aa7 13335 return false;
35b1e5cc
SS
13336}
13337
f6ac5f3d
PA
13338int
13339remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13340{
13341 struct remote_state *rs = get_remote_state ();
13342 char *p, *reply;
13343
8d64371b 13344 p = rs->buf.data ();
00bf0b85
SS
13345 strcpy (p, "QTSave:");
13346 p += strlen (p);
8d64371b
TT
13347 if ((p - rs->buf.data ()) + strlen (filename) * 2
13348 >= get_remote_packet_size ())
00bf0b85 13349 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13350 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13351 *p++ = '\0';
13352 putpkt (rs->buf);
b6bb3468 13353 reply = remote_get_noisy_reply ();
d6c5869f 13354 if (*reply == '\0')
ad91cd99
PA
13355 error (_("Target does not support this command."));
13356 if (strcmp (reply, "OK") != 0)
13357 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13358 return 0;
13359}
13360
13361/* This is basically a memory transfer, but needs to be its own packet
13362 because we don't know how the target actually organizes its trace
13363 memory, plus we want to be able to ask for as much as possible, but
13364 not be unhappy if we don't get as much as we ask for. */
13365
f6ac5f3d
PA
13366LONGEST
13367remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13368{
13369 struct remote_state *rs = get_remote_state ();
13370 char *reply;
13371 char *p;
13372 int rslt;
13373
8d64371b 13374 p = rs->buf.data ();
00bf0b85
SS
13375 strcpy (p, "qTBuffer:");
13376 p += strlen (p);
13377 p += hexnumstr (p, offset);
13378 *p++ = ',';
13379 p += hexnumstr (p, len);
13380 *p++ = '\0';
13381
13382 putpkt (rs->buf);
b6bb3468 13383 reply = remote_get_noisy_reply ();
00bf0b85
SS
13384 if (reply && *reply)
13385 {
13386 /* 'l' by itself means we're at the end of the buffer and
13387 there is nothing more to get. */
13388 if (*reply == 'l')
13389 return 0;
13390
13391 /* Convert the reply into binary. Limit the number of bytes to
13392 convert according to our passed-in buffer size, rather than
13393 what was returned in the packet; if the target is
13394 unexpectedly generous and gives us a bigger reply than we
13395 asked for, we don't want to crash. */
b6bb3468 13396 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13397 return rslt;
13398 }
13399
13400 /* Something went wrong, flag as an error. */
13401 return -1;
13402}
13403
f6ac5f3d
PA
13404void
13405remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13406{
13407 struct remote_state *rs = get_remote_state ();
13408
4082afcc 13409 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13410 {
ad91cd99
PA
13411 char *reply;
13412
8d64371b
TT
13413 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13414 "QTDisconnected:%x", val);
33da3f1c 13415 putpkt (rs->buf);
b6bb3468 13416 reply = remote_get_noisy_reply ();
ad91cd99 13417 if (*reply == '\0')
33da3f1c 13418 error (_("Target does not support this command."));
ad91cd99
PA
13419 if (strcmp (reply, "OK") != 0)
13420 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13421 }
13422 else if (val)
13423 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13424}
13425
f6ac5f3d
PA
13426int
13427remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13428{
13429 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13430
7aabaf9d
SM
13431 if (info != NULL && info->priv != NULL)
13432 return get_remote_thread_info (info)->core;
13433
dc146f7c
VP
13434 return -1;
13435}
13436
f6ac5f3d
PA
13437void
13438remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13439{
13440 struct remote_state *rs = get_remote_state ();
ad91cd99 13441 char *reply;
4daf5ac0 13442
8d64371b
TT
13443 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13444 "QTBuffer:circular:%x", val);
4daf5ac0 13445 putpkt (rs->buf);
b6bb3468 13446 reply = remote_get_noisy_reply ();
ad91cd99 13447 if (*reply == '\0')
4daf5ac0 13448 error (_("Target does not support this command."));
ad91cd99
PA
13449 if (strcmp (reply, "OK") != 0)
13450 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13451}
13452
f6ac5f3d
PA
13453traceframe_info_up
13454remote_target::traceframe_info ()
b3b9301e 13455{
9018be22 13456 gdb::optional<gdb::char_vector> text
8b88a78e 13457 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13458 NULL);
9018be22
SM
13459 if (text)
13460 return parse_traceframe_info (text->data ());
b3b9301e
PA
13461
13462 return NULL;
13463}
13464
405f8e94
SS
13465/* Handle the qTMinFTPILen packet. Returns the minimum length of
13466 instruction on which a fast tracepoint may be placed. Returns -1
13467 if the packet is not supported, and 0 if the minimum instruction
13468 length is unknown. */
13469
f6ac5f3d
PA
13470int
13471remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13472{
13473 struct remote_state *rs = get_remote_state ();
13474 char *reply;
13475
e886a173
PA
13476 /* If we're not debugging a process yet, the IPA can't be
13477 loaded. */
13478 if (!target_has_execution)
13479 return 0;
13480
13481 /* Make sure the remote is pointing at the right process. */
13482 set_general_process ();
13483
8d64371b 13484 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13485 putpkt (rs->buf);
b6bb3468 13486 reply = remote_get_noisy_reply ();
405f8e94
SS
13487 if (*reply == '\0')
13488 return -1;
13489 else
13490 {
13491 ULONGEST min_insn_len;
13492
13493 unpack_varlen_hex (reply, &min_insn_len);
13494
13495 return (int) min_insn_len;
13496 }
13497}
13498
f6ac5f3d
PA
13499void
13500remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13501{
4082afcc 13502 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13503 {
13504 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13505 char *buf = rs->buf.data ();
13506 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13507 enum packet_result result;
13508
13509 gdb_assert (val >= 0 || val == -1);
13510 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13511 /* Send -1 as literal "-1" to avoid host size dependency. */
13512 if (val < 0)
13513 {
13514 *buf++ = '-';
13515 buf += hexnumstr (buf, (ULONGEST) -val);
13516 }
13517 else
13518 buf += hexnumstr (buf, (ULONGEST) val);
13519
13520 putpkt (rs->buf);
b6bb3468 13521 remote_get_noisy_reply ();
f6f899bf
HAQ
13522 result = packet_ok (rs->buf,
13523 &remote_protocol_packets[PACKET_QTBuffer_size]);
13524
13525 if (result != PACKET_OK)
8d64371b 13526 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13527 }
13528}
13529
57810aa7 13530bool
f6ac5f3d
PA
13531remote_target::set_trace_notes (const char *user, const char *notes,
13532 const char *stop_notes)
f196051f
SS
13533{
13534 struct remote_state *rs = get_remote_state ();
13535 char *reply;
8d64371b
TT
13536 char *buf = rs->buf.data ();
13537 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13538 int nbytes;
13539
13540 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13541 if (user)
13542 {
13543 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13544 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13545 buf += 2 * nbytes;
13546 *buf++ = ';';
13547 }
13548 if (notes)
13549 {
13550 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13551 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13552 buf += 2 * nbytes;
13553 *buf++ = ';';
13554 }
13555 if (stop_notes)
13556 {
13557 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13558 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13559 buf += 2 * nbytes;
13560 *buf++ = ';';
13561 }
13562 /* Ensure the buffer is terminated. */
13563 *buf = '\0';
13564
13565 putpkt (rs->buf);
b6bb3468 13566 reply = remote_get_noisy_reply ();
f196051f 13567 if (*reply == '\0')
57810aa7 13568 return false;
f196051f
SS
13569
13570 if (strcmp (reply, "OK") != 0)
13571 error (_("Bogus reply from target: %s"), reply);
13572
57810aa7 13573 return true;
f196051f
SS
13574}
13575
57810aa7
PA
13576bool
13577remote_target::use_agent (bool use)
d1feda86 13578{
4082afcc 13579 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13580 {
13581 struct remote_state *rs = get_remote_state ();
13582
13583 /* If the stub supports QAgent. */
8d64371b 13584 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13585 putpkt (rs->buf);
8d64371b 13586 getpkt (&rs->buf, 0);
d1feda86 13587
8d64371b 13588 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13589 {
f6ac5f3d 13590 ::use_agent = use;
57810aa7 13591 return true;
d1feda86
YQ
13592 }
13593 }
13594
57810aa7 13595 return false;
d1feda86
YQ
13596}
13597
57810aa7 13598bool
f6ac5f3d 13599remote_target::can_use_agent ()
d1feda86 13600{
4082afcc 13601 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13602}
13603
9accd112
MM
13604struct btrace_target_info
13605{
13606 /* The ptid of the traced thread. */
13607 ptid_t ptid;
f4abbc16
MM
13608
13609 /* The obtained branch trace configuration. */
13610 struct btrace_config conf;
9accd112
MM
13611};
13612
f4abbc16
MM
13613/* Reset our idea of our target's btrace configuration. */
13614
13615static void
6b8edb51 13616remote_btrace_reset (remote_state *rs)
f4abbc16 13617{
f4abbc16
MM
13618 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13619}
13620
f4abbc16
MM
13621/* Synchronize the configuration with the target. */
13622
6b8edb51
PA
13623void
13624remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13625{
d33501a5
MM
13626 struct packet_config *packet;
13627 struct remote_state *rs;
13628 char *buf, *pos, *endbuf;
13629
13630 rs = get_remote_state ();
8d64371b 13631 buf = rs->buf.data ();
d33501a5
MM
13632 endbuf = buf + get_remote_packet_size ();
13633
13634 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13635 if (packet_config_support (packet) == PACKET_ENABLE
13636 && conf->bts.size != rs->btrace_config.bts.size)
13637 {
13638 pos = buf;
13639 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13640 conf->bts.size);
13641
13642 putpkt (buf);
8d64371b 13643 getpkt (&rs->buf, 0);
d33501a5
MM
13644
13645 if (packet_ok (buf, packet) == PACKET_ERROR)
13646 {
13647 if (buf[0] == 'E' && buf[1] == '.')
13648 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13649 else
13650 error (_("Failed to configure the BTS buffer size."));
13651 }
13652
13653 rs->btrace_config.bts.size = conf->bts.size;
13654 }
b20a6524
MM
13655
13656 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13657 if (packet_config_support (packet) == PACKET_ENABLE
13658 && conf->pt.size != rs->btrace_config.pt.size)
13659 {
13660 pos = buf;
13661 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13662 conf->pt.size);
13663
13664 putpkt (buf);
8d64371b 13665 getpkt (&rs->buf, 0);
b20a6524
MM
13666
13667 if (packet_ok (buf, packet) == PACKET_ERROR)
13668 {
13669 if (buf[0] == 'E' && buf[1] == '.')
13670 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13671 else
13672 error (_("Failed to configure the trace buffer size."));
13673 }
13674
13675 rs->btrace_config.pt.size = conf->pt.size;
13676 }
f4abbc16
MM
13677}
13678
13679/* Read the current thread's btrace configuration from the target and
13680 store it into CONF. */
13681
13682static void
13683btrace_read_config (struct btrace_config *conf)
13684{
9018be22 13685 gdb::optional<gdb::char_vector> xml
8b88a78e 13686 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13687 if (xml)
13688 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13689}
13690
c0272db5
TW
13691/* Maybe reopen target btrace. */
13692
6b8edb51
PA
13693void
13694remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13695{
13696 struct remote_state *rs = get_remote_state ();
c0272db5 13697 int btrace_target_pushed = 0;
15766370 13698#if !defined (HAVE_LIBIPT)
c0272db5 13699 int warned = 0;
15766370 13700#endif
c0272db5 13701
5ed8105e
PA
13702 scoped_restore_current_thread restore_thread;
13703
08036331 13704 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13705 {
13706 set_general_thread (tp->ptid);
13707
13708 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13709 btrace_read_config (&rs->btrace_config);
13710
13711 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13712 continue;
13713
13714#if !defined (HAVE_LIBIPT)
13715 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13716 {
13717 if (!warned)
13718 {
13719 warned = 1;
c4e12631
MM
13720 warning (_("Target is recording using Intel Processor Trace "
13721 "but support was disabled at compile time."));
c0272db5
TW
13722 }
13723
13724 continue;
13725 }
13726#endif /* !defined (HAVE_LIBIPT) */
13727
13728 /* Push target, once, but before anything else happens. This way our
13729 changes to the threads will be cleaned up by unpushing the target
13730 in case btrace_read_config () throws. */
13731 if (!btrace_target_pushed)
13732 {
13733 btrace_target_pushed = 1;
13734 record_btrace_push_target ();
13735 printf_filtered (_("Target is recording using %s.\n"),
13736 btrace_format_string (rs->btrace_config.format));
13737 }
13738
13739 tp->btrace.target = XCNEW (struct btrace_target_info);
13740 tp->btrace.target->ptid = tp->ptid;
13741 tp->btrace.target->conf = rs->btrace_config;
13742 }
c0272db5
TW
13743}
13744
9accd112
MM
13745/* Enable branch tracing. */
13746
f6ac5f3d
PA
13747struct btrace_target_info *
13748remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13749{
13750 struct btrace_target_info *tinfo = NULL;
b20a6524 13751 struct packet_config *packet = NULL;
9accd112 13752 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13753 char *buf = rs->buf.data ();
13754 char *endbuf = buf + get_remote_packet_size ();
9accd112 13755
b20a6524
MM
13756 switch (conf->format)
13757 {
13758 case BTRACE_FORMAT_BTS:
13759 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13760 break;
13761
13762 case BTRACE_FORMAT_PT:
13763 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13764 break;
13765 }
13766
13767 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13768 error (_("Target does not support branch tracing."));
13769
f4abbc16
MM
13770 btrace_sync_conf (conf);
13771
9accd112
MM
13772 set_general_thread (ptid);
13773
13774 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13775 putpkt (rs->buf);
8d64371b 13776 getpkt (&rs->buf, 0);
9accd112
MM
13777
13778 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13779 {
13780 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13781 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13782 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13783 else
13784 error (_("Could not enable branch tracing for %s."),
a068643d 13785 target_pid_to_str (ptid).c_str ());
9accd112
MM
13786 }
13787
8d749320 13788 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13789 tinfo->ptid = ptid;
13790
f4abbc16
MM
13791 /* If we fail to read the configuration, we lose some information, but the
13792 tracing itself is not impacted. */
492d29ea
PA
13793 TRY
13794 {
13795 btrace_read_config (&tinfo->conf);
13796 }
13797 CATCH (err, RETURN_MASK_ERROR)
13798 {
13799 if (err.message != NULL)
13800 warning ("%s", err.message);
13801 }
13802 END_CATCH
f4abbc16 13803
9accd112
MM
13804 return tinfo;
13805}
13806
13807/* Disable branch tracing. */
13808
f6ac5f3d
PA
13809void
13810remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13811{
13812 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13813 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13814 char *buf = rs->buf.data ();
13815 char *endbuf = buf + get_remote_packet_size ();
9accd112 13816
4082afcc 13817 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13818 error (_("Target does not support branch tracing."));
13819
13820 set_general_thread (tinfo->ptid);
13821
13822 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13823 putpkt (rs->buf);
8d64371b 13824 getpkt (&rs->buf, 0);
9accd112
MM
13825
13826 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13827 {
13828 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13829 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13830 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13831 else
13832 error (_("Could not disable branch tracing for %s."),
a068643d 13833 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13834 }
13835
13836 xfree (tinfo);
13837}
13838
13839/* Teardown branch tracing. */
13840
f6ac5f3d
PA
13841void
13842remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13843{
13844 /* We must not talk to the target during teardown. */
13845 xfree (tinfo);
13846}
13847
13848/* Read the branch trace. */
13849
f6ac5f3d
PA
13850enum btrace_error
13851remote_target::read_btrace (struct btrace_data *btrace,
13852 struct btrace_target_info *tinfo,
13853 enum btrace_read_type type)
9accd112
MM
13854{
13855 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13856 const char *annex;
9accd112 13857
4082afcc 13858 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13859 error (_("Target does not support branch tracing."));
13860
13861#if !defined(HAVE_LIBEXPAT)
13862 error (_("Cannot process branch tracing result. XML parsing not supported."));
13863#endif
13864
13865 switch (type)
13866 {
864089d2 13867 case BTRACE_READ_ALL:
9accd112
MM
13868 annex = "all";
13869 break;
864089d2 13870 case BTRACE_READ_NEW:
9accd112
MM
13871 annex = "new";
13872 break;
969c39fb
MM
13873 case BTRACE_READ_DELTA:
13874 annex = "delta";
13875 break;
9accd112
MM
13876 default:
13877 internal_error (__FILE__, __LINE__,
13878 _("Bad branch tracing read type: %u."),
13879 (unsigned int) type);
13880 }
13881
9018be22 13882 gdb::optional<gdb::char_vector> xml
8b88a78e 13883 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13884 if (!xml)
969c39fb 13885 return BTRACE_ERR_UNKNOWN;
9accd112 13886
9018be22 13887 parse_xml_btrace (btrace, xml->data ());
9accd112 13888
969c39fb 13889 return BTRACE_ERR_NONE;
9accd112
MM
13890}
13891
f6ac5f3d
PA
13892const struct btrace_config *
13893remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13894{
13895 return &tinfo->conf;
13896}
13897
57810aa7 13898bool
f6ac5f3d 13899remote_target::augmented_libraries_svr4_read ()
ced63ec0 13900{
4082afcc
PA
13901 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13902 == PACKET_ENABLE);
ced63ec0
GB
13903}
13904
9dd130a0
TT
13905/* Implementation of to_load. */
13906
f6ac5f3d
PA
13907void
13908remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13909{
13910 generic_load (name, from_tty);
13911}
13912
c78fa86a
GB
13913/* Accepts an integer PID; returns a string representing a file that
13914 can be opened on the remote side to get the symbols for the child
13915 process. Returns NULL if the operation is not supported. */
13916
f6ac5f3d
PA
13917char *
13918remote_target::pid_to_exec_file (int pid)
c78fa86a 13919{
9018be22 13920 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13921 struct inferior *inf;
13922 char *annex = NULL;
c78fa86a
GB
13923
13924 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13925 return NULL;
13926
835205d0
GB
13927 inf = find_inferior_pid (pid);
13928 if (inf == NULL)
13929 internal_error (__FILE__, __LINE__,
13930 _("not currently attached to process %d"), pid);
13931
13932 if (!inf->fake_pid_p)
13933 {
13934 const int annex_size = 9;
13935
224c3ddb 13936 annex = (char *) alloca (annex_size);
835205d0
GB
13937 xsnprintf (annex, annex_size, "%x", pid);
13938 }
13939
8b88a78e 13940 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13941 TARGET_OBJECT_EXEC_FILE, annex);
13942
9018be22 13943 return filename ? filename->data () : nullptr;
c78fa86a
GB
13944}
13945
750ce8d1
YQ
13946/* Implement the to_can_do_single_step target_ops method. */
13947
f6ac5f3d
PA
13948int
13949remote_target::can_do_single_step ()
750ce8d1
YQ
13950{
13951 /* We can only tell whether target supports single step or not by
13952 supported s and S vCont actions if the stub supports vContSupported
13953 feature. If the stub doesn't support vContSupported feature,
13954 we have conservatively to think target doesn't supports single
13955 step. */
13956 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13957 {
13958 struct remote_state *rs = get_remote_state ();
13959
13960 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 13961 remote_vcont_probe ();
750ce8d1
YQ
13962
13963 return rs->supports_vCont.s && rs->supports_vCont.S;
13964 }
13965 else
13966 return 0;
13967}
13968
3a00c802
PA
13969/* Implementation of the to_execution_direction method for the remote
13970 target. */
13971
f6ac5f3d
PA
13972enum exec_direction_kind
13973remote_target::execution_direction ()
3a00c802
PA
13974{
13975 struct remote_state *rs = get_remote_state ();
13976
13977 return rs->last_resume_exec_dir;
13978}
13979
f6327dcb
KB
13980/* Return pointer to the thread_info struct which corresponds to
13981 THREAD_HANDLE (having length HANDLE_LEN). */
13982
f6ac5f3d
PA
13983thread_info *
13984remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
13985 int handle_len,
13986 inferior *inf)
f6327dcb 13987{
08036331 13988 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 13989 {
7aabaf9d 13990 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
13991
13992 if (tp->inf == inf && priv != NULL)
13993 {
7aabaf9d 13994 if (handle_len != priv->thread_handle.size ())
f6327dcb 13995 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
13996 handle_len, priv->thread_handle.size ());
13997 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
13998 handle_len) == 0)
13999 return tp;
14000 }
14001 }
14002
14003 return NULL;
14004}
14005
57810aa7 14006bool
f6ac5f3d 14007remote_target::can_async_p ()
6426a772 14008{
5d93a237
TT
14009 struct remote_state *rs = get_remote_state ();
14010
3015c064
SM
14011 /* We don't go async if the user has explicitly prevented it with the
14012 "maint set target-async" command. */
c6ebd6cf 14013 if (!target_async_permitted)
57810aa7 14014 return false;
75c99385 14015
23860348 14016 /* We're async whenever the serial device is. */
5d93a237 14017 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14018}
14019
57810aa7 14020bool
f6ac5f3d 14021remote_target::is_async_p ()
6426a772 14022{
5d93a237
TT
14023 struct remote_state *rs = get_remote_state ();
14024
c6ebd6cf 14025 if (!target_async_permitted)
75c99385 14026 /* We only enable async when the user specifically asks for it. */
57810aa7 14027 return false;
75c99385 14028
23860348 14029 /* We're async whenever the serial device is. */
5d93a237 14030 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14031}
14032
2acceee2
JM
14033/* Pass the SERIAL event on and up to the client. One day this code
14034 will be able to delay notifying the client of an event until the
23860348 14035 point where an entire packet has been received. */
2acceee2 14036
2acceee2
JM
14037static serial_event_ftype remote_async_serial_handler;
14038
6426a772 14039static void
819cc324 14040remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14041{
2acceee2
JM
14042 /* Don't propogate error information up to the client. Instead let
14043 the client find out about the error by querying the target. */
6a3753b3 14044 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14045}
14046
74531fed
PA
14047static void
14048remote_async_inferior_event_handler (gdb_client_data data)
14049{
6b8edb51 14050 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14051}
14052
f6ac5f3d
PA
14053void
14054remote_target::async (int enable)
2acceee2 14055{
5d93a237
TT
14056 struct remote_state *rs = get_remote_state ();
14057
6a3753b3 14058 if (enable)
2acceee2 14059 {
88b496c3 14060 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14061
14062 /* If there are pending events in the stop reply queue tell the
14063 event loop to process them. */
953edf2b 14064 if (!rs->stop_reply_queue.empty ())
6b8edb51 14065 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14066 /* For simplicity, below we clear the pending events token
14067 without remembering whether it is marked, so here we always
14068 mark it. If there's actually no pending notification to
14069 process, this ends up being a no-op (other than a spurious
14070 event-loop wakeup). */
14071 if (target_is_non_stop_p ())
14072 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14073 }
14074 else
b7d2e916
PA
14075 {
14076 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14077 /* If the core is disabling async, it doesn't want to be
14078 disturbed with target events. Clear all async event sources
14079 too. */
6b8edb51 14080 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14081 if (target_is_non_stop_p ())
14082 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14083 }
6426a772
JM
14084}
14085
65706a29
PA
14086/* Implementation of the to_thread_events method. */
14087
f6ac5f3d
PA
14088void
14089remote_target::thread_events (int enable)
65706a29
PA
14090{
14091 struct remote_state *rs = get_remote_state ();
14092 size_t size = get_remote_packet_size ();
65706a29
PA
14093
14094 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14095 return;
14096
8d64371b 14097 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14098 putpkt (rs->buf);
8d64371b 14099 getpkt (&rs->buf, 0);
65706a29
PA
14100
14101 switch (packet_ok (rs->buf,
14102 &remote_protocol_packets[PACKET_QThreadEvents]))
14103 {
14104 case PACKET_OK:
8d64371b
TT
14105 if (strcmp (rs->buf.data (), "OK") != 0)
14106 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14107 break;
14108 case PACKET_ERROR:
8d64371b 14109 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14110 break;
14111 case PACKET_UNKNOWN:
14112 break;
14113 }
14114}
14115
5a2468f5 14116static void
981a3fb3 14117set_remote_cmd (const char *args, int from_tty)
5a2468f5 14118{
635c7e8a 14119 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14120}
14121
d471ea57 14122static void
981a3fb3 14123show_remote_cmd (const char *args, int from_tty)
d471ea57 14124{
37a105a1 14125 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14126 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14127 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14128 struct ui_out *uiout = current_uiout;
37a105a1 14129
2e783024 14130 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14131 for (; list != NULL; list = list->next)
14132 if (strcmp (list->name, "Z-packet") == 0)
14133 continue;
427c3a89
DJ
14134 else if (list->type == not_set_cmd)
14135 /* Alias commands are exactly like the original, except they
14136 don't have the normal type. */
14137 continue;
14138 else
37a105a1 14139 {
2e783024 14140 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14141
112e8700
SM
14142 uiout->field_string ("name", list->name);
14143 uiout->text (": ");
427c3a89 14144 if (list->type == show_cmd)
f5c4fcd9 14145 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14146 else
14147 cmd_func (list, NULL, from_tty);
37a105a1 14148 }
d471ea57 14149}
5a2468f5 14150
0f71a2f6 14151
23860348 14152/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14153static void
14154remote_new_objfile (struct objfile *objfile)
14155{
6b8edb51 14156 remote_target *remote = get_current_remote_target ();
5d93a237 14157
6b8edb51
PA
14158 if (remote != NULL) /* Have a remote connection. */
14159 remote->remote_check_symbols ();
dc8acb97
MS
14160}
14161
00bf0b85
SS
14162/* Pull all the tracepoints defined on the target and create local
14163 data structures representing them. We don't want to create real
14164 tracepoints yet, we don't want to mess up the user's existing
14165 collection. */
14166
f6ac5f3d
PA
14167int
14168remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14169{
00bf0b85
SS
14170 struct remote_state *rs = get_remote_state ();
14171 char *p;
d5551862 14172
00bf0b85
SS
14173 /* Ask for a first packet of tracepoint definition. */
14174 putpkt ("qTfP");
8d64371b
TT
14175 getpkt (&rs->buf, 0);
14176 p = rs->buf.data ();
00bf0b85 14177 while (*p && *p != 'l')
d5551862 14178 {
00bf0b85
SS
14179 parse_tracepoint_definition (p, utpp);
14180 /* Ask for another packet of tracepoint definition. */
14181 putpkt ("qTsP");
8d64371b
TT
14182 getpkt (&rs->buf, 0);
14183 p = rs->buf.data ();
d5551862 14184 }
00bf0b85 14185 return 0;
d5551862
SS
14186}
14187
f6ac5f3d
PA
14188int
14189remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14190{
00bf0b85 14191 struct remote_state *rs = get_remote_state ();
d5551862 14192 char *p;
d5551862 14193
00bf0b85
SS
14194 /* Ask for a first packet of variable definition. */
14195 putpkt ("qTfV");
8d64371b
TT
14196 getpkt (&rs->buf, 0);
14197 p = rs->buf.data ();
00bf0b85 14198 while (*p && *p != 'l')
d5551862 14199 {
00bf0b85
SS
14200 parse_tsv_definition (p, utsvp);
14201 /* Ask for another packet of variable definition. */
14202 putpkt ("qTsV");
8d64371b
TT
14203 getpkt (&rs->buf, 0);
14204 p = rs->buf.data ();
d5551862 14205 }
00bf0b85 14206 return 0;
d5551862
SS
14207}
14208
c1e36e3e
PA
14209/* The "set/show range-stepping" show hook. */
14210
14211static void
14212show_range_stepping (struct ui_file *file, int from_tty,
14213 struct cmd_list_element *c,
14214 const char *value)
14215{
14216 fprintf_filtered (file,
14217 _("Debugger's willingness to use range stepping "
14218 "is %s.\n"), value);
14219}
14220
6b8edb51
PA
14221/* Return true if the vCont;r action is supported by the remote
14222 stub. */
14223
14224bool
14225remote_target::vcont_r_supported ()
14226{
14227 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14228 remote_vcont_probe ();
14229
14230 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14231 && get_remote_state ()->supports_vCont.r);
14232}
14233
c1e36e3e
PA
14234/* The "set/show range-stepping" set hook. */
14235
14236static void
eb4c3f4a 14237set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14238 struct cmd_list_element *c)
14239{
6b8edb51
PA
14240 /* When enabling, check whether range stepping is actually supported
14241 by the target, and warn if not. */
c1e36e3e
PA
14242 if (use_range_stepping)
14243 {
6b8edb51
PA
14244 remote_target *remote = get_current_remote_target ();
14245 if (remote == NULL
14246 || !remote->vcont_r_supported ())
14247 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14248 }
14249}
14250
c906108c 14251void
fba45db2 14252_initialize_remote (void)
c906108c 14253{
9a7071a8 14254 struct cmd_list_element *cmd;
6f937416 14255 const char *cmd_name;
ea9c271d 14256
0f71a2f6 14257 /* architecture specific data */
29709017
DJ
14258 remote_g_packet_data_handle =
14259 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14260
94585166
DB
14261 remote_pspace_data
14262 = register_program_space_data_with_cleanup (NULL,
14263 remote_pspace_data_cleanup);
14264
d9f719f1
PA
14265 add_target (remote_target_info, remote_target::open);
14266 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14267
dc8acb97 14268 /* Hook into new objfile notification. */
76727919 14269 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14270
c906108c
SS
14271#if 0
14272 init_remote_threadtests ();
14273#endif
14274
23860348 14275 /* set/show remote ... */
d471ea57 14276
1bedd215 14277 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
14278Remote protocol specific variables\n\
14279Configure various remote-protocol specific variables such as\n\
1bedd215 14280the packets being used"),
cff3e48b 14281 &remote_set_cmdlist, "set remote ",
23860348 14282 0 /* allow-unknown */, &setlist);
1bedd215 14283 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
14284Remote protocol specific variables\n\
14285Configure various remote-protocol specific variables such as\n\
1bedd215 14286the packets being used"),
cff3e48b 14287 &remote_show_cmdlist, "show remote ",
23860348 14288 0 /* allow-unknown */, &showlist);
5a2468f5 14289
1a966eab
AC
14290 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14291Compare section data on target to the exec file.\n\
95cf3b38
DT
14292Argument is a single section name (default: all loaded sections).\n\
14293To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14294 &cmdlist);
14295
1a966eab
AC
14296 add_cmd ("packet", class_maintenance, packet_command, _("\
14297Send an arbitrary packet to a remote target.\n\
c906108c
SS
14298 maintenance packet TEXT\n\
14299If GDB is talking to an inferior via the GDB serial protocol, then\n\
14300this command sends the string TEXT to the inferior, and displays the\n\
14301response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14302terminating `#' character and checksum."),
c906108c
SS
14303 &maintenancelist);
14304
7915a72c
AC
14305 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14306Set whether to send break if interrupted."), _("\
14307Show whether to send break if interrupted."), _("\
14308If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14309 set_remotebreak, show_remotebreak,
e707bbc2 14310 &setlist, &showlist);
9a7071a8
JB
14311 cmd_name = "remotebreak";
14312 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14313 deprecate_cmd (cmd, "set remote interrupt-sequence");
14314 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14315 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14316 deprecate_cmd (cmd, "show remote interrupt-sequence");
14317
14318 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14319 interrupt_sequence_modes, &interrupt_sequence_mode,
14320 _("\
9a7071a8
JB
14321Set interrupt sequence to remote target."), _("\
14322Show interrupt sequence to remote target."), _("\
14323Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14324 NULL, show_interrupt_sequence,
14325 &remote_set_cmdlist,
14326 &remote_show_cmdlist);
14327
14328 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14329 &interrupt_on_connect, _("\
14330Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14331Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14332If set, interrupt sequence is sent to remote target."),
14333 NULL, NULL,
14334 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14335
23860348 14336 /* Install commands for configuring memory read/write packets. */
11cf8741 14337
1a966eab
AC
14338 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14339Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14340 &setlist);
1a966eab
AC
14341 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14342Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14343 &showlist);
14344 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14345 set_memory_write_packet_size, _("\
14346Set the maximum number of bytes per memory-write packet.\n\
14347Specify the number of bytes in a packet or 0 (zero) for the\n\
14348default packet size. The actual limit is further reduced\n\
14349dependent on the target. Specify ``fixed'' to disable the\n\
14350further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14351 &remote_set_cmdlist);
14352 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14353 set_memory_read_packet_size, _("\
14354Set the maximum number of bytes per memory-read packet.\n\
14355Specify the number of bytes in a packet or 0 (zero) for the\n\
14356default packet size. The actual limit is further reduced\n\
14357dependent on the target. Specify ``fixed'' to disable the\n\
14358further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14359 &remote_set_cmdlist);
14360 add_cmd ("memory-write-packet-size", no_class,
14361 show_memory_write_packet_size,
1a966eab 14362 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14363 &remote_show_cmdlist);
14364 add_cmd ("memory-read-packet-size", no_class,
14365 show_memory_read_packet_size,
1a966eab 14366 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14367 &remote_show_cmdlist);
c906108c 14368
055303e2 14369 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14370 &remote_hw_watchpoint_limit, _("\
14371Set the maximum number of target hardware watchpoints."), _("\
14372Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14373Specify \"unlimited\" for unlimited hardware watchpoints."),
14374 NULL, show_hardware_watchpoint_limit,
14375 &remote_set_cmdlist,
14376 &remote_show_cmdlist);
14377 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14378 no_class,
480a3f21
PW
14379 &remote_hw_watchpoint_length_limit, _("\
14380Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14381Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14382Specify \"unlimited\" to allow watchpoints of unlimited size."),
14383 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14384 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14385 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14386 &remote_hw_breakpoint_limit, _("\
14387Set the maximum number of target hardware breakpoints."), _("\
14388Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14389Specify \"unlimited\" for unlimited hardware breakpoints."),
14390 NULL, show_hardware_breakpoint_limit,
b3f42336 14391 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14392
1b493192
PA
14393 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14394 &remote_address_size, _("\
4d28ad1e
AC
14395Set the maximum size of the address (in bits) in a memory packet."), _("\
14396Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14397 NULL,
14398 NULL, /* FIXME: i18n: */
14399 &setlist, &showlist);
c906108c 14400
ca4f7f8b
PA
14401 init_all_packet_configs ();
14402
444abaca 14403 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14404 "X", "binary-download", 1);
0f71a2f6 14405
444abaca 14406 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14407 "vCont", "verbose-resume", 0);
506fb367 14408
89be2091
DJ
14409 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14410 "QPassSignals", "pass-signals", 0);
14411
82075af2
JS
14412 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14413 "QCatchSyscalls", "catch-syscalls", 0);
14414
9b224c5e
PA
14415 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14416 "QProgramSignals", "program-signals", 0);
14417
bc3b087d
SDJ
14418 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14419 "QSetWorkingDir", "set-working-dir", 0);
14420
aefd8b33
SDJ
14421 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14422 "QStartupWithShell", "startup-with-shell", 0);
14423
0a2dde4a
SDJ
14424 add_packet_config_cmd (&remote_protocol_packets
14425 [PACKET_QEnvironmentHexEncoded],
14426 "QEnvironmentHexEncoded", "environment-hex-encoded",
14427 0);
14428
14429 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14430 "QEnvironmentReset", "environment-reset",
14431 0);
14432
14433 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14434 "QEnvironmentUnset", "environment-unset",
14435 0);
14436
444abaca 14437 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14438 "qSymbol", "symbol-lookup", 0);
dc8acb97 14439
444abaca 14440 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14441 "P", "set-register", 1);
d471ea57 14442
444abaca 14443 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14444 "p", "fetch-register", 1);
b96ec7ac 14445
444abaca 14446 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14447 "Z0", "software-breakpoint", 0);
d471ea57 14448
444abaca 14449 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14450 "Z1", "hardware-breakpoint", 0);
d471ea57 14451
444abaca 14452 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14453 "Z2", "write-watchpoint", 0);
d471ea57 14454
444abaca 14455 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14456 "Z3", "read-watchpoint", 0);
d471ea57 14457
444abaca 14458 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14459 "Z4", "access-watchpoint", 0);
d471ea57 14460
0876f84a
DJ
14461 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14462 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14463
c78fa86a
GB
14464 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14465 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14466
23181151
DJ
14467 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14468 "qXfer:features:read", "target-features", 0);
14469
cfa9d6d9
DJ
14470 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14471 "qXfer:libraries:read", "library-info", 0);
14472
2268b414
JK
14473 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14474 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14475
fd79ecee
DJ
14476 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14477 "qXfer:memory-map:read", "memory-map", 0);
14478
0e7f50da
UW
14479 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14480 "qXfer:spu:read", "read-spu-object", 0);
14481
14482 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14483 "qXfer:spu:write", "write-spu-object", 0);
14484
07e059b5
VP
14485 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14486 "qXfer:osdata:read", "osdata", 0);
14487
dc146f7c
VP
14488 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14489 "qXfer:threads:read", "threads", 0);
14490
4aa995e1
PA
14491 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14492 "qXfer:siginfo:read", "read-siginfo-object", 0);
14493
14494 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14495 "qXfer:siginfo:write", "write-siginfo-object", 0);
14496
b3b9301e
PA
14497 add_packet_config_cmd
14498 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14499 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14500
169081d0
TG
14501 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14502 "qXfer:uib:read", "unwind-info-block", 0);
14503
444abaca 14504 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14505 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14506 0);
14507
711e434b
PM
14508 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14509 "qGetTIBAddr", "get-thread-information-block-address",
14510 0);
14511
40ab02ce
MS
14512 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14513 "bc", "reverse-continue", 0);
14514
14515 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14516 "bs", "reverse-step", 0);
14517
be2a5f71
DJ
14518 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14519 "qSupported", "supported-packets", 0);
14520
08388c79
DE
14521 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14522 "qSearch:memory", "search-memory", 0);
14523
bd3eecc3
PA
14524 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14525 "qTStatus", "trace-status", 0);
14526
15a201c8
GB
14527 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14528 "vFile:setfs", "hostio-setfs", 0);
14529
a6b151f1
DJ
14530 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14531 "vFile:open", "hostio-open", 0);
14532
14533 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14534 "vFile:pread", "hostio-pread", 0);
14535
14536 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14537 "vFile:pwrite", "hostio-pwrite", 0);
14538
14539 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14540 "vFile:close", "hostio-close", 0);
14541
14542 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14543 "vFile:unlink", "hostio-unlink", 0);
14544
b9e7b9c3
UW
14545 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14546 "vFile:readlink", "hostio-readlink", 0);
14547
0a93529c
GB
14548 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14549 "vFile:fstat", "hostio-fstat", 0);
14550
2d717e4f
DJ
14551 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14552 "vAttach", "attach", 0);
14553
14554 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14555 "vRun", "run", 0);
14556
a6f3e723
SL
14557 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14558 "QStartNoAckMode", "noack", 0);
14559
82f73884
PA
14560 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14561 "vKill", "kill", 0);
14562
0b16c5cf
PA
14563 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14564 "qAttached", "query-attached", 0);
14565
782b2b07 14566 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14567 "ConditionalTracepoints",
14568 "conditional-tracepoints", 0);
3788aec7
LM
14569
14570 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14571 "ConditionalBreakpoints",
14572 "conditional-breakpoints", 0);
14573
d3ce09f5
SS
14574 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14575 "BreakpointCommands",
14576 "breakpoint-commands", 0);
14577
7a697b8d
SS
14578 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14579 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14580
409873ef
SS
14581 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14582 "TracepointSource", "TracepointSource", 0);
14583
d914c394
SS
14584 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14585 "QAllow", "allow", 0);
14586
0fb4aa4b
PA
14587 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14588 "StaticTracepoints", "static-tracepoints", 0);
14589
1e4d1764
YQ
14590 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14591 "InstallInTrace", "install-in-trace", 0);
14592
0fb4aa4b
PA
14593 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14594 "qXfer:statictrace:read", "read-sdata-object", 0);
14595
78d85199
YQ
14596 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14597 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14598
03583c20
UW
14599 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14600 "QDisableRandomization", "disable-randomization", 0);
14601
d1feda86
YQ
14602 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14603 "QAgent", "agent", 0);
14604
f6f899bf
HAQ
14605 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14606 "QTBuffer:size", "trace-buffer-size", 0);
14607
9accd112
MM
14608 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14609 "Qbtrace:off", "disable-btrace", 0);
14610
14611 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14612 "Qbtrace:bts", "enable-btrace-bts", 0);
14613
14614 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14615 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14616
14617 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14618 "qXfer:btrace", "read-btrace", 0);
14619
f4abbc16
MM
14620 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14621 "qXfer:btrace-conf", "read-btrace-conf", 0);
14622
d33501a5
MM
14623 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14624 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14625
73b8c1fd
PA
14626 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14627 "multiprocess-feature", "multiprocess-feature", 0);
14628
f7e6eed5
PA
14629 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14630 "swbreak-feature", "swbreak-feature", 0);
14631
14632 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14633 "hwbreak-feature", "hwbreak-feature", 0);
14634
89245bc0
DB
14635 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14636 "fork-event-feature", "fork-event-feature", 0);
14637
14638 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14639 "vfork-event-feature", "vfork-event-feature", 0);
14640
b20a6524
MM
14641 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14642 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14643
750ce8d1
YQ
14644 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14645 "vContSupported", "verbose-resume-supported", 0);
14646
94585166
DB
14647 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14648 "exec-event-feature", "exec-event-feature", 0);
14649
de979965
PA
14650 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14651 "vCtrlC", "ctrl-c", 0);
14652
65706a29
PA
14653 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14654 "QThreadEvents", "thread-events", 0);
14655
f2faf941
PA
14656 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14657 "N stop reply", "no-resumed-stop-reply", 0);
14658
0b736949
DB
14659 /* Assert that we've registered "set remote foo-packet" commands
14660 for all packet configs. */
ca4f7f8b
PA
14661 {
14662 int i;
14663
14664 for (i = 0; i < PACKET_MAX; i++)
14665 {
14666 /* Ideally all configs would have a command associated. Some
14667 still don't though. */
14668 int excepted;
14669
14670 switch (i)
14671 {
14672 case PACKET_QNonStop:
ca4f7f8b
PA
14673 case PACKET_EnableDisableTracepoints_feature:
14674 case PACKET_tracenz_feature:
14675 case PACKET_DisconnectedTracing_feature:
14676 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14677 case PACKET_qCRC:
14678 /* Additions to this list need to be well justified:
14679 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14680 excepted = 1;
14681 break;
14682 default:
14683 excepted = 0;
14684 break;
14685 }
14686
14687 /* This catches both forgetting to add a config command, and
14688 forgetting to remove a packet from the exception list. */
14689 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14690 }
14691 }
14692
37a105a1
DJ
14693 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14694 Z sub-packet has its own set and show commands, but users may
14695 have sets to this variable in their .gdbinit files (or in their
14696 documentation). */
e9e68a56 14697 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14698 &remote_Z_packet_detect, _("\
14699Set use of remote protocol `Z' packets"), _("\
14700Show use of remote protocol `Z' packets "), _("\
3b64bf98 14701When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14702packets."),
e9e68a56 14703 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14704 show_remote_protocol_Z_packet_cmd,
14705 /* FIXME: i18n: Use of remote protocol
14706 `Z' packets is %s. */
e9e68a56 14707 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14708
a6b151f1
DJ
14709 add_prefix_cmd ("remote", class_files, remote_command, _("\
14710Manipulate files on the remote system\n\
14711Transfer files to and from the remote target system."),
14712 &remote_cmdlist, "remote ",
14713 0 /* allow-unknown */, &cmdlist);
14714
14715 add_cmd ("put", class_files, remote_put_command,
14716 _("Copy a local file to the remote system."),
14717 &remote_cmdlist);
14718
14719 add_cmd ("get", class_files, remote_get_command,
14720 _("Copy a remote file to the local system."),
14721 &remote_cmdlist);
14722
14723 add_cmd ("delete", class_files, remote_delete_command,
14724 _("Delete a remote file."),
14725 &remote_cmdlist);
14726
2d717e4f 14727 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14728 &remote_exec_file_var, _("\
2d717e4f 14729Set the remote pathname for \"run\""), _("\
94585166
DB
14730Show the remote pathname for \"run\""), NULL,
14731 set_remote_exec_file,
14732 show_remote_exec_file,
14733 &remote_set_cmdlist,
14734 &remote_show_cmdlist);
2d717e4f 14735
c1e36e3e
PA
14736 add_setshow_boolean_cmd ("range-stepping", class_run,
14737 &use_range_stepping, _("\
14738Enable or disable range stepping."), _("\
14739Show whether target-assisted range stepping is enabled."), _("\
14740If on, and the target supports it, when stepping a source line, GDB\n\
14741tells the target to step the corresponding range of addresses itself instead\n\
14742of issuing multiple single-steps. This speeds up source level\n\
14743stepping. If off, GDB always issues single-steps, even if range\n\
14744stepping is supported by the target. The default is on."),
14745 set_range_stepping,
14746 show_range_stepping,
14747 &setlist,
14748 &showlist);
14749
449092f6
CV
14750 /* Eventually initialize fileio. See fileio.c */
14751 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 14752}
This page took 3.632564 seconds and 4 git commands to generate.